@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background: #fff;
  font-family: "PT Serif", "Noto Serif JP", serif;
}

p {
  font-size: 14px;
}

a {
  color: #000;
  text-decoration: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 位置を右上に固定 */
.toggle {
  position: fixed;
  top: 25px;
  right: 25px;
  /* 重なり順指定 */
  z-index: 1000;
  /* ハンバーガーメニューの大きさ指定 */
}
.toggle_box {
  position: relative;
  width: 50px;
  height: 32px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .toggle_box {
    width: 40px;
    height: 28px;
  }
}
@media screen and (max-width: 500px) {
  .toggle_box {
    width: 30px;
    height: 22px;
  }
}
.toggle_box span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #ccc;
  position: absolute;
  transition: transform 0.6s ease-in-out;
}
.toggle_box span:nth-child(1) {
  top: 0;
}
.toggle_box span:nth-child(2) {
  top: 50%;
}
.toggle_box span:nth-child(3) {
  bottom: 0;
}

/* ハンバーガーメニュークリックで、「×」マークにアニメーション */
.is_open .toggle_box span {
  background: #fff;
}
.is_open .toggle_box span:nth-child(1) {
  top: 50%;
  transform: rotate(35deg) translatey(-50%);
}
.is_open .toggle_box span:nth-child(2) {
  width: 0;
}
.is_open .toggle_box span:nth-child(3) {
  top: 50%;
  transform: rotate(-35deg) translatey(-50%);
}

/* 中身メニュー、初期は非表示 */
.nav_content {
  z-index: 900;
  overflow: auto;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.nav_content ul {
  list-style: none;
}
.nav_content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 30px 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.nav_content a:hover {
  opacity: 0.6;
}

/* is-openクラスが追加されると、メニューが表示される */
.is_open {
  overflow: hidden;
}
.is_open .nav_content {
  z-index: 999;
  visibility: visible;
  opacity: 1;
}
.is_open .nav_content a {
  pointer-events: auto;
}

.wrapper {
  position: relative;
  z-index: 990;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header_area {
  display: block;
  margin-left: 100px;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .header_area {
    margin-left: 90px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 500px) {
  .header_area {
    margin-left: 70px;
    width: 70px;
    height: 70px;
  }
}
.header_area img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}
.header_area img:hover {
  opacity: 0.6;
}

.top {
  display: flex;
}
.top_heading {
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .top_heading {
    width: 80px;
  }
}
@media screen and (max-width: 500px) {
  .top_heading {
    width: 60px;
  }
}
.top_heading h1 {
  font-size: 60px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top_heading h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) {
  .top_heading h1 {
    font-size: 35px;
  }
}
.top_visual {
  width: 100%;
}
.top_visual .top_slide {
  height: 1000px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .top_visual .top_slide {
    height: 800px;
  }
}
@media screen and (max-width: 500px) {
  .top_visual .top_slide {
    height: 700px;
  }
}

.news {
  padding: 160px 0 80px 0;
}
.news .container {
  display: flex;
}
@media screen and (max-width: 500px) {
  .news .container {
    flex-direction: column;
  }
}
.news .container .label {
  width: 30%;
}
.news .container .label h2 {
  position: relative;
  font-size: 30px;
  letter-spacing: 0.05em;
  padding-top: 30px;
}
.news .container .label h2::before {
  position: absolute;
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background-color: #000;
  top: 0;
  left: 0;
}
.news .container .label p {
  padding-top: 8px;
}
.news .container .newslist {
  width: 70%;
}
@media screen and (max-width: 500px) {
  .news .container .newslist {
    width: 100%;
  }
}
.news .container .newslist li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .news .container .newslist li {
    flex-direction: column;
  }
}
.news .container .newslist_box {
  display: flex;
  align-items: center;
}
.news .container .newslist_box p {
  padding: 7px 16px;
  background-color: #ccc;
  color: #000;
  margin: 0 20px;
  white-space: nowrap;
}
.news .container .newslist_text {
  text-align: left;
  line-height: 1.5;
}
.news .container .newslist_text a {
  text-decoration: none;
  color: #000;
}
.news .container .newslist_text a:hover {
  opacity: 0.5;
}

.life {
  padding: 250px 0;
  background: #F7F5F5;
}
.life .container .label h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
  position: relative;
}
.life .container .label h2::after {
  position: absolute;
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background-color: #000;
  top: 14px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .life .container .label h2::after {
    width: 40vw;
  }
}
@media screen and (max-width: 500px) {
  .life .container .label h2::after {
    width: 20vw;
  }
}
.life .container .label p {
  padding-top: 8px;
}
.life .container .life_contents {
  width: 70%;
  padding-top: 100px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 500px) {
  .life .container .life_contents {
    width: 100%;
  }
}
.life .container .life_contents p {
  color: #000;
  line-height: 1.5;
}
.life .container .life_contents p + p {
  margin-top: 1.5em;
}
.life .life_slide {
  display: flex;
  padding: 350px 0 100px 0;
  overflow: hidden;
}
.life .life_slide_box {
  padding: 0 17.5px;
}
.life .life_slide_box:hover {
  opacity: 0.8;
}
.life .life_slide_box a .slide_box_img img {
  width: 100%;
}
.life .life_slide_box a .slide_box_text {
  padding-top: 20px;
}
.life .life_slide_box a .slide_box_text:hover {
  opacity: 0.8;
}
.life .life_slide_box a .slide_box_text .life_info {
  display: flex;
}
.life .life_slide_box a .slide_box_text .life_info span {
  font-size: 14px;
}
.life .life_slide_box a .slide_box_text .life_info p {
  position: relative;
  font-size: 14px;
  padding-left: 34px;
}
.life .life_slide_box a .slide_box_text .life_info p::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background-color: #000;
  top: 0;
  left: 17px;
}
.life .life_slide_box a .slide_box_text .life_head {
  font-size: 16px;
  padding-top: 20px;
}
.life .life_slide_box a .slide_box_text .life_head p {
  font-weight: 700;
  line-height: 1.5;
}

.about {
  padding: 100px 0;
  background-image: url(../img/about_bg.jpg);
  background-size: cover;
  background-position: center center;
}
.about .container .label {
  width: 30%;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .about .container .label {
    width: 100%;
  }
}
.about .container .label h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
}
.about .container p {
  padding-top: 8px;
}
.about .container .about_contents {
  width: 60%;
}
@media screen and (max-width: 500px) {
  .about .container .about_contents {
    width: 100%;
  }
}
.about .container .about_contents .about_contents_box {
  padding-top: 100px;
}
.about .container .about_contents .about_contents_box p {
  color: #fff;
  padding: 0;
  line-height: 1.5;
}
.about .container .about_contents .about_contents_box p + p {
  margin-top: 1.5em;
}

.service {
  padding: 200px 0;
}
.service .container .label {
  width: 30%;
}
.service .container .label h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
}
.service .container .label p {
  padding-top: 8px;
}
.service .container .service_contents {
  padding-top: 100px;
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 768px) {
  .service .container .service_contents {
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .service .container .service_contents {
    gap: 2px;
  }
}
.service .container .service_contents_box {
  width: 33.3333333333%;
}
.service .container .service_contents_box .service_img {
  position: relative;
}
.service .container .service_contents_box .service_img img {
  width: 100%;
}
.service .container .service_contents_box .service_img h3 {
  color: #fff;
  font-size: 2vw;
  position: absolute;
  left: 5%;
  bottom: 5%;
}
.service .container .service_contents_box .service_description {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 50px;
  padding: 20px;
}
.service .container .service_contents_box .service_description p {
  color: #000;
  line-height: 1.5;
}

.link {
  padding: 100px 0;
  display: flex;
}
@media screen and (max-width: 500px) {
  .link {
    flex-direction: column;
  }
}
.link_box {
  width: 50%;
  border: 1px solid #fff;
}
@media screen and (max-width: 500px) {
  .link_box {
    width: 100%;
  }
}
.link_box:hover {
  opacity: 0.8;
}
.link_box_onlinestore {
  background-image: url(../img/link_onlinestore_bg.jpg);
  background-size: cover;
  background-position: center center;
}
.link_box_contact {
  background-image: url(../img/link_contact_bg.jpg);
  background-size: cover;
  background-position: center center;
}
.link_box .label {
  width: 100%;
  padding-top: 45px;
  padding-bottom: 160px;
}
.link_box .label h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
}
.link_box .label p {
  padding-top: 8px;
  text-align: center;
}

.access {
  padding: 100px 0 150px 0;
  background: #F7F5F5;
}
.access .container .access_contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .access .container .access_contents {
    flex-direction: column;
  }
}
.access .container .access_contents .access_contents_left .label h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
}
.access .container .access_contents .access_contents_left .label p {
  padding-top: 8px;
}
.access .container .access_contents .access_contents_left .access_box {
  padding-top: 100px;
}
.access .container .access_contents .access_contents_left .access_box p {
  line-height: 1.5;
}
.access .container .access_contents .access_contents_left .access_box p + p {
  margin-top: 1.5em;
}
.access .container .access_contents .access_contents_right {
  padding-top: 50px;
}
.access .container .access_contents .access_contents_right .map iframe {
  width: 50vw;
  height: 300px;
}
@media screen and (max-width: 500px) {
  .access .container .access_contents .access_contents_right .map iframe {
    width: 100%;
  }
}

.footer {
  width: 100%;
  background: #000;
}
.footer_back {
  display: block;
  color: #fff;
  font-size: 14px;
  background-color: #1d1d1d;
  width: 100%;
  padding: 30px 0;
  text-align: center;
}
.footer_back:hover {
  opacity: 0.8;
}
.footer .container {
  margin: 0 auto;
}
.footer .container .footer_contents {
  display: flex;
  justify-content: space-between;
  padding: 70px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .footer .container .footer_contents {
    flex-direction: column;
  }
}
.footer .container .footer_contents .footer_list {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer .container .footer_contents .footer_list {
    justify-content: center;
  }
}
.footer .container .footer_contents .footer_list_left li, .footer .container .footer_contents .footer_list_right li {
  font-size: 14px;
}
.footer .container .footer_contents .footer_list_left li a, .footer .container .footer_contents .footer_list_right li a {
  color: #fff;
}
.footer .container .footer_contents .footer_list_left li a:hover, .footer .container .footer_contents .footer_list_right li a:hover {
  opacity: 0.8;
}
.footer .container .footer_contents .footer_list_left li:not(:first-child), .footer .container .footer_contents .footer_list_right li:not(:first-child) {
  padding-top: 30px;
}
.footer .container .footer_contents .footer_list_right {
  margin-left: 80px;
}
@media screen and (max-width: 768px) {
  .footer .container .footer_contents .footer_link {
    text-align: center;
    padding-top: 80px;
  }
}
.footer .container .footer_contents .footer_link_button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  width: 250px;
  height: 65px;
  margin-bottom: 30px;
  background-color: #1d1d1d;
}
.footer .container .footer_contents .footer_link_button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .footer .container .footer_contents .footer_link_button {
    margin: 0 auto 30px auto;
  }
}
.footer .container .footer_contents .footer_link_sns {
  display: inline-block;
  vertical-align: middle;
}
.footer .container .footer_contents .footer_link_sns a {
  display: inline-block;
  padding: 5px;
}
.footer .container .footer_contents .footer_link_sns a:hover {
  opacity: 0.8;
}
.footer .container .footer_contents .footer_link_sns a .footer_link_sns_twitter, .footer .container .footer_contents .footer_link_sns a .footer_link_sns_instagram {
  vertical-align: bottom;
  width: 30px;
  height: 30px;
}
.footer .container .footer_bottom {
  display: flex;
  align-items: center;
  padding: 30px 0;
}
@media screen and (max-width: 500px) {
  .footer .container .footer_bottom {
    flex-direction: column;
  }
}
.footer .container .footer_bottom .footer_bottom_logo {
  width: 80px;
  height: 80px;
}
.footer .container .footer_bottom .footer_bottom_logo img {
  vertical-align: bottom;
  max-width: 100%;
  max-height: 100%;
}
.footer .container .footer_bottom .footer_bottom_logo img:hover {
  opacity: 0.6;
}
.footer .container .footer_bottom small {
  color: #fff;
  font-size: 11px;
  margin-left: auto;
}
@media screen and (max-width: 500px) {
  .footer .container .footer_bottom small {
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */