@charset "UTF-8";
html {
  font-size: 1px;
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  max-width: 100vw;
  min-height: 100vh;
  color: #222;
  font-size: 16rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

select,
input,
textarea,
button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #222;
  text-decoration: none;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: 0.3s linear;
  backface-visibility: hidden;
}
a.tel_link {
  pointer-events: none;
}
a:hover {
  opacity: 0.7;
}

main {
  display: block;
}
main > * {
  background: #fff;
  z-index: 2;
  position: relative;
}

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

* {
  box-sizing: border-box;
}

.inner {
  width: 1000rem;
  margin-left: auto;
  margin-right: auto;
}

.s_inner {
  width: 820rem;
  margin-left: auto;
  margin-right: auto;
}

.mt_l {
  margin-top: 100rem;
}

.mt_m {
  margin-top: 60rem;
}

.mt_s {
  margin-top: 20rem;
}

.fz_l {
  font-size: 1.2em;
}

.fz_s {
  font-size: 0.8em;
}

.ta_center {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.font_co {
  font-family: "Cormorant Infant", serif;
  font-weight: bold;
}

.font_san {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "メイリオ", Meiryo, "sans-serif", sans-serif;
}

.c_red {
  color: #df1616;
}

.font_ten {
  font-family: "ten-mincho", serif;
}

.t_vertical {
  writing-mode: vertical-rl;
}

.flex_center {
  display: flex;
  justify-content: center;
}

.fadein {
  opacity: 0;
  transform: translateY(50rem);
  transition: 2s;
}
.fadein.in {
  opacity: 1;
  transform: translateY(0);
}
.fadein.delay01 {
  transition-delay: 0.3s;
}
.fadein.delay02 {
  transition-delay: 0.6s;
}
.fadein.delay03 {
  transition-delay: 0.9s;
}

.btn_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 410rem;
  height: 50rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #222222;
  transition: 0.3s;
  font-weight: 500;
}
.btn_more a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 28rem;
  transform: translateY(-50%);
  border-left: 10rem solid #222222;
  border-top: 6rem solid transparent;
  border-bottom: 6rem solid transparent;
  transition: 0.3s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
header .float_nav,
header .mv_nav {
  width: 100%;
  height: 90rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 18rem;
  color: #fff;
  font-weight: 500;
  padding-left: 250rem;
}
header .logo_wrap {
  position: absolute;
  left: 30rem;
  top: 50%;
  transform: translateY(-50%);
}
header .logo_wrap img {
  height: 60rem;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header_wrap {
  display: flex;
  align-items: center;
}
header .header_wrap .nav_wrap ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6rem 0;
}
header .header_wrap .nav_wrap ul li {
  padding-left: 24rem;
  padding-right: 24rem;
}
header .header_wrap .nav_wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-bottom: 1px solid transparent;
  font-size: 16rem;
}
header .header_wrap .h_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.float_nav {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  background-color: #fff;
  box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.1);
  padding-right: 20rem;
}
.float_nav.in {
  opacity: 1;
  pointer-events: auto;
}
.float_nav .header_wrap .nav_wrap ul li a {
  color: #222;
}
.float_nav .header_wrap .h_contact a {
  margin-left: 24rem;
  width: 220rem;
  height: 60rem;
  background: #C9BD67;
  color: #fff;
}

.mv_nav {
  padding-right: 265rem;
}
.mv_nav .header_wrap .nav_wrap ul li a:hover {
  opacity: 0.8;
}
.mv_nav .header_wrap .h_contact {
  position: absolute;
  right: 0;
  top: 0;
}
.mv_nav .header_wrap .h_contact a {
  width: 240rem;
  height: 75rem;
  background-color: #C9BD67;
  color: #fff;
}

.under_mv,
.top_mv {
  position: relative;
  z-index: 1;
}
.under_mv::before,
.top_mv::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.5;
  z-index: 2;
}
.under_mv .tit_wrap,
.top_mv .tit_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  width: 50%;
  display: flex;
  justify-content: center;
  color: #fff;
  z-index: 3;
}
.under_mv .tit_wrap .sub,
.top_mv .tit_wrap .sub {
  font-size: 26rem;
  writing-mode: vertical-rl;
}
.under_mv .tit_wrap h1,
.top_mv .tit_wrap h1 {
  font-size: 60rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  margin: 0 0 0 40rem;
}
.under_mv .tit_wrap .en,
.top_mv .tit_wrap .en {
  position: absolute;
  left: 50%;
  bottom: -35rem;
  transform: translateX(-50%);
  letter-spacing: 0.2em;
}
.under_mv .swiper_wrap,
.top_mv .swiper_wrap {
  position: relative;
}
.under_mv .swiper_wrap .img_wrap,
.top_mv .swiper_wrap .img_wrap {
  transform: scale(1.25);
  position: relative;
}
.under_mv .swiper_wrap .img_wrap img,
.top_mv .swiper_wrap .img_wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}
.under_mv .swiper_wrap .swiper-slide-active .img_wrap,
.under_mv .swiper_wrap .swiper-slide-prev .img_wrap,
.under_mv .swiper_wrap .swiper-slide-duplicate-active .img_wrap,
.top_mv .swiper_wrap .swiper-slide-active .img_wrap,
.top_mv .swiper_wrap .swiper-slide-prev .img_wrap,
.top_mv .swiper_wrap .swiper-slide-duplicate-active .img_wrap {
  animation: zoom_out 12s linear 0s normal both;
}
.under_mv .swiper_wrap .swiper-slide-active .img_wrap.on,
.under_mv .swiper_wrap .swiper-slide-prev .img_wrap.on,
.under_mv .swiper_wrap .swiper-slide-duplicate-active .img_wrap.on,
.top_mv .swiper_wrap .swiper-slide-active .img_wrap.on,
.top_mv .swiper_wrap .swiper-slide-prev .img_wrap.on,
.top_mv .swiper_wrap .swiper-slide-duplicate-active .img_wrap.on {
  animation-play-state: paused;
}
.under_mv .swiper_wrap .swiper_item,
.top_mv .swiper_wrap .swiper_item {
  width: auto;
  position: absolute;
  left: auto;
  right: 20rem;
  bottom: 20rem;
  line-height: 1;
  display: flex;
  align-items: center;
  padding-right: 24rem;
  z-index: 2;
}
.under_mv .swiper_wrap .swiper-pagination,
.top_mv .swiper_wrap .swiper-pagination {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  top: -3rem;
  bottom: auto;
  left: auto;
}
.under_mv .swiper_wrap .swiper-pagination .swiper-pagination-bullet,
.top_mv .swiper_wrap .swiper-pagination .swiper-pagination-bullet {
  width: 8rem;
  margin: 0 6rem;
  opacity: 1;
  background: #C2C2C2;
}
.under_mv .swiper_wrap .swiper-pagination .swiper-pagination-bullet-active,
.top_mv .swiper_wrap .swiper-pagination .swiper-pagination-bullet-active {
  background: #C9BD67;
}
.under_mv .swiper_wrap .swiper_pause,
.under_mv .swiper_wrap .swiper_start,
.top_mv .swiper_wrap .swiper_pause,
.top_mv .swiper_wrap .swiper_start {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  line-height: 0;
}
.under_mv .swiper_wrap .swiper_pause img,
.under_mv .swiper_wrap .swiper_start img,
.top_mv .swiper_wrap .swiper_pause img,
.top_mv .swiper_wrap .swiper_start img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 14rem;
}
.under_mv .swiper_wrap .swiper_start,
.top_mv .swiper_wrap .swiper_start {
  display: none;
}
.under_mv .ico_wrap,
.top_mv .ico_wrap {
  width: 19rem;
  position: absolute;
  left: 36rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.under_mv .ico_wrap .ico,
.top_mv .ico_wrap .ico {
  line-height: 0;
}
.under_mv .ico_wrap .ico img,
.top_mv .ico_wrap .ico img {
  width: 100%;
}
.under_mv .ico_wrap .ico + .ico,
.top_mv .ico_wrap .ico + .ico {
  margin-top: 38rem;
}

.under_mv {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 740rem;
}
.under_mv.mv_in {
  position: relative;
}
.under_mv .tit_wrap h1 {
  font-size: 32rem;
  margin: auto;
}
.under_mv .ico_wrap {
  display: none;
}
.under_mv .ud_main img {
  height: 740rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.under_mv .breadcrumb {
  position: absolute;
  right: 10rem;
  bottom: 10rem;
  display: flex;
  color: #fff;
  z-index: 5;
  font-size: 12rem;
}
.under_mv .breadcrumb li {
  display: flex;
  align-items: center;
}
.under_mv .breadcrumb li + li {
  margin: 0 0 0 1em;
}
.under_mv .breadcrumb li + li:before {
  content: ">";
  display: block;
  font-size: 14rem;
  margin: 0 1em 0 0;
}
.under_mv .breadcrumb li a {
  color: #fff;
}

.common_tit {
  font-size: 28rem;
  writing-mode: vertical-rl;
  position: relative;
}
.common_tit::before {
  position: absolute;
  content: "";
  display: block;
  top: -35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  height: 20rem;
  background: url(../img/ico_tit.svg) no-repeat center top/contain;
}

.common_lead {
  padding-top: 150rem;
  padding-bottom: 160rem;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.common_lead .text_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  line-height: 2.1;
}
.common_lead .text_wrap h2 {
  font-size: 28rem;
  margin-left: 85rem;
  letter-spacing: 5rem;
}
.common_lead .btn_more {
  margin-top: 112rem;
}

.top_news {
  padding-top: 130rem;
  padding-bottom: 100rem;
  background-color: #F4F3F0;
}
.top_news .news_area {
  max-width: 1772rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 70rem;
  padding-right: 70rem;
}
.top_news .news_area .news_wrap {
  max-width: 1316rem;
  margin-top: 65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_news .news_area .news_wrap .img_wrap {
  width: 445rem;
  position: relative;
}
.top_news .news_area .news_wrap .img_wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.1;
}
.top_news .news_area .news_wrap .news_list {
  width: calc(100% - 545rem);
}
.top_news .news_area .news_wrap .news_list li {
  padding-bottom: 28rem;
  margin-bottom: 30rem;
  border-bottom: 1px solid #C2C2C2;
}
.top_news .news_area .news_wrap .news_list li a {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  letter-spacing: 0.05em;
  position: relative;
}
.top_news .news_area .news_wrap .news_list li a .time {
  width: 15%;
  border-right: 1px solid #C2C2C2;
}
.top_news .news_area .news_wrap .news_list li a h3 {
  width: 78%;
}
.top_news .news_area .news_wrap .news_list li a p {
  display: none;
}
.top_news .news_area .news_wrap .news_list li a:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 18rem;
  width: 8rem;
  height: 8rem;
  border-top: 1px solid #222222;
  border-right: 1px solid #222222;
}
.top_news .btn_more {
  margin-top: 85rem;
}

.top_content {
  padding-top: 200rem;
  position: relative;
  z-index: 1;
}
.top_content .content_area {
  max-width: 1772rem;
  padding-left: 70rem;
  padding-right: 140rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.top_content .content_area .content_wrap {
  max-width: 1190rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.top_content .content_area .content_wrap::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  right: -130rem;
  width: 389rem;
  height: 382rem;
  background: url(../img/ico_content.svg) no-repeat center top/contain;
  z-index: -1;
}
.top_content .content_area .content_wrap .img_wrap {
  max-width: 675rem;
  width: 100%;
  position: relative;
}
.top_content .content_area .content_wrap .img_wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.1;
}
.top_content .content_area .content_wrap .text_area {
  min-width: 450rem;
  padding-left: 20rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.top_content .content_area .content_wrap .text_area .text_wrap {
  max-height: 500rem;
  padding-right: 50rem;
}
.top_content .content_area .content_wrap .text_area .text_wrap h2 {
  font-size: 28rem;
  margin-left: 55rem;
  position: relative;
}
.top_content .content_area .content_wrap .text_area .text_wrap h2::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: -48rem;
  width: 20rem;
  height: 20rem;
  background: url(../img/ico_tit.svg) no-repeat center top/contain;
}
.top_content .content_area .content_wrap .text_area .text_wrap .text {
  line-height: 2;
}
.top_content .content_area .content_wrap .text_area .btn_more {
  margin-top: 110rem;
}
.top_content .content_area .content_wrap .text_area .btn_more + .btn_more {
  margin-top: 25rem;
}
.top_content .content_area .content_wrap .text_area .btn_more a {
  width: 320rem;
  margin-right: 0;
  background-color: transparent;
}
.top_content + .top_content {
  padding-top: 160rem;
}
.top_content.reverse::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  right: auto;
  width: 389rem;
  height: 382rem;
  left: -50rem;
  background: url(../img/ico_content.svg) no-repeat center top/contain;
  z-index: -1;
}
.top_content.reverse .content_area {
  padding-left: 140rem;
  padding-right: 70rem;
}
.top_content.reverse .content_area .content_wrap {
  flex-direction: row-reverse;
  margin-left: auto;
  margin-right: 0;
}
.top_content.reverse .content_area .content_wrap::before {
  display: none;
}
.top_content.reverse .content_area .content_wrap .text_area {
  padding-left: 0;
  padding-right: 20rem;
  align-items: flex-start;
}
.top_content.reverse .content_area .content_wrap .text_area .btn_more a {
  margin-left: 0;
  margin-right: auto;
}

.top_access {
  margin-top: 565rem;
  position: relative;
  padding-top: 285rem;
  padding-bottom: 165rem;
  background: url(../img/bg_access.jpg) no-repeat center top/cover;
}
.top_access .ph_decorate {
  position: absolute;
  left: 50%;
  top: -378rem;
  transform: translateX(-50%);
  max-width: 1672rem;
  width: 100%;
  padding-left: 20rem;
  padding-right: 20rem;
}
.top_access .ph_decorate img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 490rem;
  position: relative;
}
.top_access .ph_decorate img::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  opacity: 0.1;
}
.top_access .flex_area {
  max-width: 1772rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 70rem;
  padding-right: 70rem;
}
.top_access .flex_area .flex_wrap {
  margin-top: 105rem;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.top_access .flex_area .map_wrap {
  width: 50%;
}
.top_access .flex_area .map_wrap iframe {
  width: 100%;
  height: 575rem;
}
.top_access .flex_area .text_area {
  width: 500rem;
  padding-left: 6.25vw;
}
.top_access .flex_area .text_area .text_wrap {
  max-width: 500rem;
  letter-spacing: 0.15em;
}
.top_access .flex_area .text_area .ico_pin,
.top_access .flex_area .text_area .ico_tel,
.top_access .flex_area .text_area .ico_fax,
.top_access .flex_area .text_area .ico_time {
  padding-left: 25rem;
  position: relative;
}
.top_access .flex_area .text_area .ico_pin::before,
.top_access .flex_area .text_area .ico_tel::before,
.top_access .flex_area .text_area .ico_fax::before,
.top_access .flex_area .text_area .ico_time::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.top_access .flex_area .text_area .ico_pin.ico_pin::before,
.top_access .flex_area .text_area .ico_tel.ico_pin::before,
.top_access .flex_area .text_area .ico_fax.ico_pin::before,
.top_access .flex_area .text_area .ico_time.ico_pin::before {
  width: 15rem;
  height: 19rem;
  background: url(../img/ico_pin.svg) no-repeat center top/contain;
}
.top_access .flex_area .text_area .ico_pin.ico_tel::before,
.top_access .flex_area .text_area .ico_tel.ico_tel::before,
.top_access .flex_area .text_area .ico_fax.ico_tel::before,
.top_access .flex_area .text_area .ico_time.ico_tel::before {
  width: 15rem;
  height: 15rem;
  background: url(../img/ico_tel.svg) no-repeat center top/contain;
}
.top_access .flex_area .text_area .ico_pin.ico_fax::before,
.top_access .flex_area .text_area .ico_tel.ico_fax::before,
.top_access .flex_area .text_area .ico_fax.ico_fax::before,
.top_access .flex_area .text_area .ico_time.ico_fax::before {
  width: 14rem;
  height: 16rem;
  background: url(../img/ico_fax.svg) no-repeat center top/contain;
}
.top_access .flex_area .text_area .ico_pin.ico_time::before,
.top_access .flex_area .text_area .ico_tel.ico_time::before,
.top_access .flex_area .text_area .ico_fax.ico_time::before,
.top_access .flex_area .text_area .ico_time.ico_time::before {
  width: 15rem;
  height: 15rem;
  background: url(../img/ico_time.svg) no-repeat center top/contain;
}
.top_access .flex_area .text_area .on_foot {
  margin-top: 20rem;
}
.top_access .flex_area .text_area .tel {
  margin-top: 45rem;
}
.top_access .flex_area .text_area .fax {
  margin-top: 10rem;
}
.top_access .flex_area .text_area .time_wrap {
  margin-top: 40rem;
  padding-top: 40rem;
  border-top: 1px solid #C2C2C2;
}
.top_access .flex_area .text_area .time_wrap .time {
  font-size: 24rem;
  margin-top: 10rem;
}
.top_access .flex_area .text_area .btn_more {
  margin-top: 50rem;
}
.top_access .flex_area .text_area .btn_more a {
  width: 320rem;
  margin-left: 0;
}

.top_btn {
  position: absolute;
  bottom: 90rem;
  right: 5%;
  cursor: pointer;
}
.top_btn img {
  width: 30rem;
}

footer {
  background-color: #F4F3F0;
  padding-top: 90rem;
  padding-bottom: 85rem;
  position: relative;
}
footer .footer_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
}
footer .footer_wrap .flex_wrap .logo_wrap img {
  height: 112rem;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .footer_wrap .flex_wrap .footer_nav {
  letter-spacing: 0.2em;
}
footer .footer_wrap .flex_wrap .footer_nav ul li {
  margin-left: 32rem;
}
footer .footer_wrap .flex_wrap .footer_nav ul li:last-child {
  margin-left: 0;
}
footer .footer_wrap .flex_wrap .footer_nav ul li a {
  display: inline-block;
  border-right: 1px solid transparent;
}
footer .footer_wrap .flex_wrap .ico_wrap {
  display: flex;
  align-items: center;
  gap: 20rem;
}
footer .footer_wrap .flex_wrap .ico_wrap .ico {
  line-height: 0;
}
footer .footer_wrap .flex_wrap .ico_wrap .ico img {
  width: 19rem;
}
footer .footer_wrap .flex_wrap .copy {
  font-size: 12rem;
  margin-top: 40rem;
}
footer .footer_wrap .flex_wrap .footer_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320rem;
  height: 80rem;
  background-color: #C9BD67;
  color: #fff;
  font-size: 18rem;
}
footer .footer_wrap .flex_wrap .footer_contact a:hover {
  /*
              color: #222;
              background-color: #fff;
  */
}
footer .footer_wrap .flex_wrap.bottom {
  margin-top: 85rem;
}

#page_top header {
  position: absolute;
}
#page_top .common_lead {
  margin-top: 0;
}

#page_top header .header_wrap .nav_wrap ul li.nav_top a,
#page_about header .header_wrap .nav_wrap ul li.nav_about a,
#page_infomation header .header_wrap .nav_wrap ul li.nav_infomation a,
#page_schedule header .header_wrap .nav_wrap ul li.nav_schedule a,
#page_funeral header .header_wrap .nav_wrap ul li.nav_funeral a,
#page_service header .header_wrap .nav_wrap ul li.nav_service a,
#page_access header .header_wrap .nav_wrap ul li.nav_access a {
  border-bottom: 1px solid #fff;
}

#page_top header .float_nav .header_wrap .nav_wrap ul li.nav_top a,
#page_about header .float_nav .header_wrap .nav_wrap ul li.nav_about a,
#page_infomation header .float_nav .header_wrap .nav_wrap ul li.nav_infomation a,
#page_schedule header .float_nav .header_wrap .nav_wrap ul li.nav_schedule a,
#page_funeral header .float_nav .header_wrap .nav_wrap ul li.nav_funeral a,
#page_service header .float_nav .header_wrap .nav_wrap ul li.nav_service a,
#page_access header .float_nav .header_wrap .nav_wrap ul li.nav_access a {
  border-bottom: 1px solid #222;
}

@media screen and (min-width: 681px) {
  .sp_block {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 0.0781860829vw;
  }
}
@media screen and (max-width: 680px) {
  .sp_none {
    display: none !important;
  }
  html {
    font-size: 0.2666666667vw;
  }
  body {
    line-height: 1.6;
    font-size: 14rem;
  }
  img {
    width: 100%;
  }
  .inner {
    width: 310rem;
  }
  .s_inner {
    width: 310rem;
  }
  .mt_l {
    margin-top: 80rem;
  }
  .mt_m {
    margin-top: 40rem;
  }
  .mt_s {
    margin-top: 16rem;
  }
  .fadein {
    transform: translateY(30rem);
  }
  .fadein.delay01, .fadein.delay02, .fadein.delay03 {
    transition-delay: 0s;
  }
  .btn_more a {
    width: 225rem;
    height: 45rem;
  }
  .btn_more a::before {
    right: 15rem;
    border-left: 7rem solid #222222;
    border-top: 6rem solid transparent;
    border-bottom: 6rem solid transparent;
  }
  header {
    position: fixed;
  }
  header .hm_btn_wrap {
    position: fixed;
    background-color: transparent;
    width: 100%;
    height: 60rem;
    top: 0;
    left: 0;
    z-index: 101;
    transition: 0.3s;
  }
  header .hm_btn_wrap.bg_active {
    background-color: #fff;
  }
  header .hm_btn_wrap.bg_active .logo_wrap {
    display: block;
    left: 20rem;
    top: 10rem;
  }
  header .hm_btn_wrap.bg_active .hm_btn span {
    background-color: #222;
  }
  header .hm_btn {
    position: absolute;
    top: 20rem;
    right: 20rem;
    width: 16rem;
    height: 10rem;
  }
  header .hm_btn span {
    display: block;
    width: 100%;
    height: 2rem;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: 0.5s;
  }
  header .hm_btn span:nth-child(1) {
    top: 0;
  }
  header .hm_btn span:nth-child(2) {
    bottom: 0;
  }
  header .hm_btn.active span {
    background-color: #222;
  }
  header .hm_btn.active span:nth-child(1) {
    top: 4rem;
    transform: rotate(45deg);
  }
  header .hm_btn.active span:nth-child(2) {
    bottom: 4rem;
    transform: rotate(-45deg);
  }
  header .float_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size: 18rem;
    color: #222;
    font-weight: 500;
    padding: 0;
    background-color: #fff;
    box-shadow: none;
  }
  header .float_nav .ico_wrap {
    position: absolute;
    left: 15rem;
    width: 19rem;
  }
  header .float_nav .ico_wrap .ico {
    line-height: 1;
  }
  header .float_nav .ico_wrap .ico + .ico {
    margin-top: 30rem;
  }
  header .float_nav .ico_wrap .ico img {
    width: 100%;
  }
  header .float_nav .header_wrap .h_contact {
    margin-top: 20rem;
  }
  header .float_nav .header_wrap .h_contact a {
    background-color: #C9BD67;
    color: #fff;
    margin-left: auto;
    border: 0;
  }
  header .float_nav.in {
    opacity: 1;
    pointer-events: auto;
  }
  header .logo_wrap {
    position: absolute;
    left: 30rem;
    top: 20rem;
    transform: translateY(0);
    display: none;
  }
  header .logo_wrap img {
    height: 40rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  header .header_wrap {
    display: block;
  }
  header .header_wrap .nav_wrap ul li a:hover {
    border: none !important;
  }
  header .header_wrap .nav_wrap ul {
    display: block;
  }
  header .header_wrap .nav_wrap ul li {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  header .header_wrap .nav_wrap ul li + li {
    margin-top: 20rem;
  }
  header .header_wrap .nav_wrap ul li a {
    display: inline-block;
  }
  .under_mv {
    height: 550rem;
  }
  .under_mv .tit_wrap {
    left: 0;
    right: 0;
    transform: translate(0, -50%);
    display: flex;
    justify-content: center;
  }
  .under_mv .tit_wrap h1 {
    font-size: 24rem;
  }
  .under_mv .ud_main img {
    height: 550rem;
  }
  .top_mv {
    position: relative;
    z-index: 1;
  }
  .top_mv .tit_wrap .sub {
    right: 90rem;
    font-size: 16rem;
  }
  .top_mv .tit_wrap h1 {
    font-size: 40rem;
    margin: 0 0 0 20rem;
  }
  .top_mv .tit_wrap .en {
    bottom: -30rem;
  }
  .top_mv .tit_wrap .mv_logo {
    width: 95rem;
    margin: 0;
  }
  .top_mv .swiper_wrap {
    position: relative;
  }
  .top_mv .swiper_wrap .swiper_item {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20rem;
    padding-right: 18rem;
  }
  .top_mv .swiper_wrap .swiper-pagination {
    top: -4rem;
  }
  .top_mv .swiper_wrap .swiper-pagination .swiper-pagination-bullet {
    width: 6rem;
    height: 6rem;
    margin: 0 4rem;
  }
  .top_mv .swiper_wrap .swiper_pause img,
  .top_mv .swiper_wrap .swiper_start img {
    height: 10rem;
  }
  .top_mv .ico_wrap {
    width: 19rem;
    position: absolute;
    left: 36rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
  }
  .top_mv .ico_wrap .ico {
    line-height: 0;
  }
  .top_mv .ico_wrap .ico img {
    width: 100%;
  }
  .top_mv .ico_wrap .ico + .ico {
    margin-top: 38rem;
  }
  .common_tit {
    writing-mode: horizontal-tb;
    text-align: center;
    margin: 0;
    letter-spacing: 2rem;
  }
  .common_tit::before {
    width: 18rem;
    height: 18rem;
    top: -20rem;
  }
  .common_lead {
    padding-top: 80rem;
    padding-bottom: 90rem;
  }
  .common_lead .text_wrap {
    writing-mode: horizontal-tb;
    width: 310rem;
  }
  .common_lead .text_wrap h2 {
    font-size: 26rem;
    margin-left: 0;
    letter-spacing: 3rem;
  }
  .common_lead .text {
    text-align: left;
    margin-top: 20rem;
  }
  .common_lead .btn_more {
    margin-top: 55rem;
  }
  .top_news {
    padding-top: 0;
    padding-bottom: 50rem;
  }
  .top_news h2 {
    margin-top: 65rem;
  }
  .top_news .img_wrap {
    width: 100%;
  }
  .top_news .news_area {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    width: 310rem;
  }
  .top_news .news_area .news_wrap {
    max-width: 100%;
    margin-top: 0;
    display: block;
  }
  .top_news .news_area .news_wrap .news_list {
    margin: 50rem auto;
    width: auto;
  }
  .top_news .news_area .news_wrap .news_list li a {
    display: block;
  }
  .top_news .news_area .news_wrap .news_list li a .time {
    width: 50%;
    border: none;
  }
  .top_news .news_area .news_wrap .news_list li a p {
    width: 100%;
  }
  .top_news .btn_more {
    margin-top: 50rem;
  }
  .top_content {
    padding-top: 0;
    padding-bottom: 50rem;
    position: relative;
    z-index: 1;
  }
  .top_content .content_area {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .top_content .content_area .content_wrap {
    max-width: 100%;
    display: block;
    position: relative;
  }
  .top_content .content_area .content_wrap::before {
    position: absolute;
    content: "";
    display: block;
    bottom: 80rem;
    right: auto;
    left: -65rem;
    width: 190rem;
    height: 190rem;
  }
  .top_content .content_area .content_wrap .img_wrap {
    max-width: 100%;
  }
  .top_content .content_area .content_wrap .text_area {
    min-width: 0;
    padding-left: 0;
    width: 310rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50rem;
    align-items: center;
  }
  .top_content .content_area .content_wrap .text_area .text_wrap {
    max-height: 250rem;
    padding-right: 0;
  }
  .top_content .content_area .content_wrap .text_area .text_wrap h2 {
    font-size: 20rem;
    margin-left: 22rem;
    padding-right: 36rem;
  }
  .top_content .content_area .content_wrap .text_area .text_wrap h2::before {
    top: 0;
    right: 0;
    width: 18rem;
    height: 18rem;
  }
  .top_content .content_area .content_wrap .text_area .text_wrap .text {
    line-height: 2.3;
  }
  .top_content .content_area .content_wrap .text_area .btn_more {
    margin-top: 45rem;
  }
  .top_content .content_area .content_wrap .text_area .btn_more + .btn_more {
    margin-top: 20rem;
  }
  .top_content .content_area .content_wrap .text_area .btn_more a {
    width: 225rem;
    margin-right: auto;
  }
  .top_content + .top_content {
    padding-top: 0;
    overflow: hidden;
  }
  .top_content.reverse::before {
    display: none;
  }
  .top_content.reverse .content_area {
    padding-left: 0;
    padding-right: 0;
  }
  .top_content.reverse .content_area .content_wrap {
    margin-right: auto;
  }
  .top_content.reverse .content_area .content_wrap::before {
    display: block;
    left: auto;
    right: -50rem;
  }
  .top_content.reverse .content_area .content_wrap .text_area {
    padding-right: 0;
    align-items: center;
  }
  .top_content.reverse .content_area .content_wrap .text_area .btn_more a {
    margin-left: auto;
  }
  .top_access {
    margin-top: 185rem;
    padding-top: 170rem;
    padding-bottom: 52rem;
    background: url(../img/bg_access.jpg) no-repeat center top/cover;
  }
  .top_access .ph_decorate {
    top: -135rem;
    max-width: 100%;
    width: 310rem;
    padding-left: 0;
    padding-right: 0;
  }
  .top_access .ph_decorate img {
    height: 225rem;
  }
  .top_access .flex_area {
    max-width: 100%;
    width: 310rem;
    padding-left: 0;
    padding-right: 0;
  }
  .top_access .flex_area .flex_wrap {
    margin-top: 30rem;
    display: block;
  }
  .top_access .flex_area .map_wrap {
    width: 100%;
    margin-top: 50rem;
  }
  .top_access .flex_area .map_wrap iframe {
    height: 313rem;
  }
  .top_access .flex_area .text_area {
    width: 100%;
    padding-left: 0;
  }
  .top_access .flex_area .text_area .text_wrap {
    max-width: 100%;
    letter-spacing: 0;
  }
  .top_access .flex_area .text_area .ico_pin,
  .top_access .flex_area .text_area .ico_tel,
  .top_access .flex_area .text_area .ico_fax,
  .top_access .flex_area .text_area .ico_time {
    padding-left: 25rem;
    position: relative;
  }
  .top_access .flex_area .text_area .ico_pin::before,
  .top_access .flex_area .text_area .ico_tel::before,
  .top_access .flex_area .text_area .ico_fax::before,
  .top_access .flex_area .text_area .ico_time::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .top_access .flex_area .text_area .ico_pin.ico_pin::before,
  .top_access .flex_area .text_area .ico_tel.ico_pin::before,
  .top_access .flex_area .text_area .ico_fax.ico_pin::before,
  .top_access .flex_area .text_area .ico_time.ico_pin::before {
    width: 15rem;
    height: 19rem;
    background: url(../img/ico_pin.svg) no-repeat center top/contain;
  }
  .top_access .flex_area .text_area .ico_pin.ico_tel::before,
  .top_access .flex_area .text_area .ico_tel.ico_tel::before,
  .top_access .flex_area .text_area .ico_fax.ico_tel::before,
  .top_access .flex_area .text_area .ico_time.ico_tel::before {
    width: 15rem;
    height: 15rem;
    background: url(../img/ico_tel.svg) no-repeat center top/contain;
  }
  .top_access .flex_area .text_area .ico_pin.ico_fax::before,
  .top_access .flex_area .text_area .ico_tel.ico_fax::before,
  .top_access .flex_area .text_area .ico_fax.ico_fax::before,
  .top_access .flex_area .text_area .ico_time.ico_fax::before {
    width: 14rem;
    height: 16rem;
    background: url(../img/ico_fax.svg) no-repeat center top/contain;
  }
  .top_access .flex_area .text_area .ico_pin.ico_time,
  .top_access .flex_area .text_area .ico_tel.ico_time,
  .top_access .flex_area .text_area .ico_fax.ico_time,
  .top_access .flex_area .text_area .ico_time.ico_time {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .top_access .flex_area .text_area .ico_pin.ico_time::before,
  .top_access .flex_area .text_area .ico_tel.ico_time::before,
  .top_access .flex_area .text_area .ico_fax.ico_time::before,
  .top_access .flex_area .text_area .ico_time.ico_time::before {
    width: 15rem;
    height: 15rem;
    background: url(../img/ico_time.svg) no-repeat center top/contain;
  }
  .top_access .flex_area .text_area .on_foot {
    margin-top: 20rem;
  }
  .top_access .flex_area .text_area .tel {
    margin-top: 30rem;
  }
  .top_access .flex_area .text_area .fax {
    margin-top: 8rem;
  }
  .top_access .flex_area .text_area .time_wrap {
    margin-top: 30rem;
    padding-top: 30rem;
    text-align: center;
  }
  .top_access .flex_area .text_area .time_wrap .time {
    font-size: 21rem;
    margin-top: 10rem;
  }
  .top_access .flex_area .btn_more {
    margin-top: 40rem;
  }
  .top_access .flex_area .btn_more a {
    width: 225rem;
    margin-left: auto;
  }
  .top_btn {
    position: absolute;
    bottom: 60rem;
    right: 2%;
  }
  .top_btn img {
    width: 26rem;
  }
  .floating_contact {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
  }
  .floating_contact a {
    width: 100%;
    height: 55rem;
    background-color: #C9BD67;
    color: #fff;
    font-size: 12rem;
    letter-spacing: 0.2em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer {
    padding-top: 39rem;
    padding-bottom: 110rem;
  }
  footer .footer_wrap .flex_wrap {
    display: block;
  }
  footer .footer_wrap .flex_wrap .logo_wrap {
    text-align: center;
  }
  footer .footer_wrap .flex_wrap .logo_wrap img {
    width: auto;
    height: 78rem;
  }
  footer .footer_wrap .flex_wrap .ico_wrap {
    justify-content: center;
    gap: 20rem;
    margin-top: 52rem;
  }
  footer .footer_wrap .flex_wrap .copy {
    font-size: 10rem;
    margin-top: 25rem;
    text-align: center;
  }
  footer .footer_wrap .flex_wrap .footer_contact {
    margin-top: 36rem;
  }
  footer .footer_wrap .flex_wrap .footer_contact a {
    width: 225rem;
    height: 55rem;
    font-size: 14rem;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer_wrap .flex_wrap.bottom {
    margin-top: 0;
  }
}
#page_top .common_lead {
  margin-top: 0;
}

@keyframes zoom_out {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */