@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.scssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

.w_base {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** font-size
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
}
.hd_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(78, 100, 124, 0.51);
}
.hd_bg.js_active {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.6041666667vw 1.0416666667vw;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 1025px) / 895, 30px) !important;
  letter-spacing: 0.08em;
}
.hd_bg .hd .hd_logo a::before {
  content: "";
  display: block;
  width: clamp(36px, 36px + (46 - 36) * (100vw - 1025px) / 895, 46px) !important;
  height: 4.7rem;
  background: url(../images/logo.svg) no-repeat center center;
  background-size: contain;
}
.hd_bg .hd .hd_logo a span::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(8px, 8px + (10 - 8) * (100vw - 1025px) / 895, 10px) !important;
  letter-spacing: 0.4em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 2.6041666667vw 1.0416666667vw;
  overflow: visible;
}
.nav .nav_list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.nav .nav_list li {
  position: relative;
  z-index: 1000;
}
.nav .nav_list li > a {
  position: relative;
  display: block;
  color: #fff;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 1025px) / 895, 20px) !important;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.5s ease;
}
.nav .nav_list li > a::before {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.nav .nav_list li > a::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 1025px) / 895, 12px) !important;
}
.nav .nav_list li > a:hover::before, .nav .nav_list li > a.current::before {
  transform: scale(1, 1);
}
.nav .nav_list li:hover .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav .nav_list li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: all 0.5s ease;
}
.nav .nav_list li .sub-menu li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.nav .nav_list li .sub-menu li > a {
  display: block;
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.5s ease;
}
.nav .nav_list li .sub-menu li > a:hover, .nav .nav_list li .sub-menu li > a.current {
  opacity: 0.8;
}
.nav .nav_list li .sub-menu li:hover .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav .nav_list li .sub-menu li .sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav .nav_list li .sub-menu li .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.nav .nav_list li .sub-menu li .sub-menu li > a {
  display: block;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
.nav .nav_list li .sub-menu li .sub-menu li > a:hover, .nav .nav_list li .sub-menu li .sub-menu li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

/* Keyframes for nav animation */
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con .main {
  background: url(../images/page_bg.jpg);
  background-size: auto;
  overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
  padding: 10.4166666667vw 0 0;
  background: url(../images/footer_bg.jpg) no-repeat center center;
  background-size: cover;
}
.ft_bg .ft_img {
  display: flex;
}
.ft_bg .ft_img img {
  width: 33.3333333333%;
  height: auto;
}
.ft_bg .ft_con {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding-top: 5.2083333333vw;
  padding-bottom: 5.2083333333vw;
}
.ft_bg .ft_con .ft_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5.2083333333vw;
}
.ft_bg .ft_con .ft_nav_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ft_bg .ft_con .ft_nav_list a {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 1025px) / 895, 24px) !important;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_nav_list a::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.ft_bg .ft_con .ft_nav_list a::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 1025px) / 895, 12px) !important;
}
.ft_bg .ft_con .ft_nav_list a:hover::before {
  transform: scale(1, 1);
}
.ft_bg .ft_con .ft_contact p {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 1025px) / 895, 24px) !important;
  gap: 2rem;
  margin-bottom: 1rem;
}
.ft_bg .ft_con .ft_contact_address {
  display: flex;
  align-items: flex-end;
  gap: 3.125vw;
  margin-bottom: 1rem;
}
.ft_bg .ft_con .ft_contact_address address {
  font-style: normal;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 1025px) / 895, 24px) !important;
}
.ft_bg .ft_con .ft_contact_address p {
  margin-bottom: 0;
}
.ft_bg .ft_con .ft_contact_sns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.ft_bg .ft_con .ft_contact_sns > div {
  width: 3.5rem;
  height: auto;
}
.ft_bg .ft_con .ft_contact_sns > div img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.ft_bg .ft_con .ft_contact_sns > div img:hover {
  opacity: 0.8;
}
.ft_bg .ft_con .ft_contact_btn {
  width: -moz-max-content;
  width: max-content;
  margin: 3rem 0 0; /* 左寄せ */
}

.ft_bg .ft_con .ft_contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: #fff;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 1025px) / 895, 20px) !important;
  border: 1px solid #ddd;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_contact_btn a::before {
  content: "";
  display: block;
  width: 29px;
  height: 20px;
  background: url(../images/icon_contact.svg) no-repeat;
}
.ft_bg .ft_con .ft_contact_btn a:hover {
  background: #50667F;
  color: #fff;
  border: 1px solid #50667F;
}
.ft_bg .ft_copy {
  display: block;
  padding: 2.0833333333vw 0;
  background: url(../images/footer_copy_bg.jpg);
  background-size: cover;
  font-size: clamp(18px, 18px + (26 - 18) * (100vw - 1025px) / 895, 26px) !important;
  text-align: center;
}

.banner img {
  padding: 2em 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.pt_btn {
  position: relative;
  font-size: clamp(18px, 18px + (32 - 18) * (100vw - 1025px) / 895, 32px) !important;
  transition: all 0.5s ease;
}
.pt_btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 1.71875vw;
  height: 12.34375vw;
  background: url(../images/icon_pagetop.svg) no-repeat;
  background-size: contain;
  transition: all 0.5s ease;
}
.pt_btn:hover::before {
  bottom: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  margin: 0 !important;
}
.index_slider_bg .index_slider_ttl {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: clamp(310px, 310px + (430 - 310) * (100vw - 1025px) / 895, 430px) !important;
  padding: 2.34375vw 2.0833333333vw 2.0833333333vw 2.8645833333vw;
  background: rgba(17, 17, 17, 0.51);
  color: #fff;
}
.index_slider_bg .index_slider_ttl::before {
  position: absolute;
  top: 1.0416666667vw;
  left: 2.8645833333vw;
  content: "";
  width: 100%;
  max-width: 160px;
  height: 6px;
  background: url(../images/slider_title_bg.svg);
  background-size: contain;
}
.index_slider_bg .index_slider_ttl::after {
  position: absolute;
  right: 2.34375vw;
  bottom: 1.0416666667vw;
  content: "";
  width: 100%;
  max-width: 160px;
  height: 6px;
  background: url(../images/slider_title_bg.svg);
  background-size: contain;
}
.index_slider_bg .index_slider_ttl h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(36px, 36px + (56 - 36) * (100vw - 1025px) / 895, 56px) !important;
  letter-spacing: 0.08em;
  line-height: 1;
}
.index_slider_bg .index_slider_ttl p {
  font-size: clamp(18px, 18px + (28 - 18) * (100vw - 1025px) / 895, 28px) !important;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: right;
}
.index_slider_bg img {
  width: 100%;
  height: 100vh;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.index_slider_bg .swiper-slide-active img {
  animation: scale 6s ease-out;
}
@keyframes scale {
  0% {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.index_info {
  display: flex;
  flex-direction: column;
  background: url(../images/i_info_bg.png) repeat-y center;
  background-size: cover;
}
.index_info_ttl_bg {
  padding: 5rem 2rem;
  background: rgba(0, 37, 80, 0.67);
}
.index_info_ttl_bg .index_info_ttl {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.index_info_ttl_bg .index_info_ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.index_info_ttl_bg .index_info_ttl h2 {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.index_info_ttl_bg .index_info_ttl h2 span {
  position: relative;
  display: block;
  padding: 0 20px;
}
.index_info_ttl_bg .index_info_ttl h2 span:first-of-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 1.5rem;
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.index_info_ttl_bg .index_info_ttl h2 span:first-of-type::before {
  content: "";
  display: block;
  width: 35px;
  height: 66px;
  background: url(../images/icon_info_ttl_left.svg) no-repeat center;
}
.index_info_ttl_bg .index_info_ttl h2 span:first-of-type::after {
  content: "";
  display: block;
  width: 35px;
  height: 66px;
  background: url(../images/icon_info_ttl_right.svg) no-repeat center;
}
.index_info_ttl_bg .index_info_ttl h2 span:last-of-type {
  font-size: 2rem;
  letter-spacing: 0.5em;
}
.index_info_ttl_bg .index_info_ttl h2 span:last-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
}
.index_info_scrl_bg {
  width: 100%;
  max-width: 1200px;
  margin: 7rem auto 5rem;
  padding: 3rem;
  background: #fff;
}
.index_info_scrl_bg .index_info_scrl {
  max-height: 300px;
  overflow: auto;
}
.index_info_scrl_bg .index_info_item {
  display: flex;
  align-content: space-between;
  gap: 4rem;
  width: 100%;
  padding: 1rem 0;
}
.index_info_scrl_bg .date {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.index_info_scrl_bg .date .cate {
  display: block;
  width: 20rem;
  padding: 0.3rem;
  background: #717171;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
.index_info_scrl_bg .date time {
  color: #666;
  white-space: nowrap;
}
.index_info_scrl_bg .title {
  width: 100%;
  border-bottom: 1px solid #999;
}
.index_info_scrl_bg .title a {
  display: inline-block;
  transition: all 0.3s ease;
}
.index_info_scrl_bg .title a:hover {
  color: #50667F;
}
.index_info_scrl_bg .title .index_info_item_icon_new {
  display: inline-block;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_info_scrl_bg .title .index_info_item_icon_new::before {
  content: "NEW";
}
.index_info .more {
  display: flex;
  justify-content: center;
  margin-bottom: 7rem;
}
.index_info .more a {
  position: relative;
  display: inline-block;
  color: #50667F;
  font-size: 3rem;
  font-weight: 500;
  transition: all 0.5s ease;
}
.index_info .more a::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #50667F;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.index_info .more a:hover::before {
  transform: scale(1, 1);
}

.index_greet {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.index_greet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: url(../images/i_greet_img.jpg) no-repeat center center;
  background-size: cover;
}
.index_greet_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  background: #50667F;
  padding: 10.4166666667vw 6.7708333333vw;
  color: #fff;
}
.index_greet_txt h2 {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 2rem;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 1025px) / 895, 50px) !important;
  line-height: 1;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #fff;
}
.index_greet_txt h2::after {
  content: attr(data-enttl);
  display: inline-block;
  font-size: clamp(12px, 12px + (16 - 12) * (100vw - 1025px) / 895, 16px) !important;
}
.index_greet_txt p {
  margin-bottom: 1.5rem;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 1025px) / 895, 18px) !important;
}
.index_greet_txt .more a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.index_greet_txt .more a::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.index_greet_txt .more a:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_elink_white.svg) no-repeat center center;
}
.index_greet_txt .more a:hover::before {
  transform: scale(1, 1);
}
.index_greet_img {
  display: none;
}
.index_greet_img img {
  width: 100%;
  height: auto;
}

.index_guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  max-height: 400px;
  background: url(../images/i_guide_bg.jpg) no-repeat center center;
  background-size: cover;
}
.index_guide h2 {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
.index_guide h2 span.block {
  display: block;
  padding: 0.78125vw;
}
.index_guide h2 span.block:nth-of-type(odd) {
  background: #6A6A6A;
}
.index_guide h2 span.block:nth-of-type(even) {
  background: #757575;
}
.index_guide h2 span.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border-width: 0;
  white-space: nowrap;
}
.index_guide .more a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.8rem;
}
.index_guide .more a::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease;
  transform: scale(0, 1);
  transform-origin: left top;
}
.index_guide .more a:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_elink_white.svg) no-repeat center center;
}
.index_guide .more a:hover::before {
  transform: scale(1, 1);
}

.index_apply {
  padding: 15rem 2rem;
  background: url(../images/i_apply_bg.jpg) no-repeat center center;
  background-size: cover;
}
.index_apply_con {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.index_apply_con .index_apply_item {
  width: calc((100% - 5rem) / 2);
}
.index_apply_con .index_apply_item h2 {
  margin-bottom: 4.6875vw;
  font-size: clamp(36px, 36px + (46 - 36) * (100vw - 1025px) / 895, 46px) !important;
}
.index_apply_con .index_apply_item h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 1025px) / 895, 18px) !important;
  letter-spacing: 0.2em;
}
.index_apply_con .index_apply_item .link {
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.16);
}
.index_apply_con .index_apply_item .link a {
  display: block;
  background: #f1f1f1;
}
.index_apply_con .index_apply_item .link a .img {
  position: relative;
  overflow: hidden;
}
.index_apply_con .index_apply_item .link a .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.index_apply_con .index_apply_item .link a .img img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
.index_apply_con .index_apply_item .link a span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.6041666667vw 2rem;
  color: #5A4545;
  font-size: clamp(26px, 26px + (36 - 26) * (100vw - 1025px) / 895, 36px) !important;
  font-weight: 600;
}
.index_apply_con .index_apply_item .link a span::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 1025px) / 895, 14px) !important;
  letter-spacing: 0.2em;
}
.index_apply_con .index_apply_item .link a:hover .img::before {
  opacity: 0.4;
}
.index_apply_con .index_apply_item .link a:hover .img img {
  transform: scale(1.3);
}

.index_access {
  position: relative;
  padding: 25rem 2rem 20rem;
  background: url(../images/i_access_bg.jpg) no-repeat center center;
  background-size: cover;
}
.index_access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
}
.index_access_con {
  position: relative;
  z-index: 10;
}
.index_access_con h2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.0833333333vw;
}
.index_access_con h2 span {
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 1025px) / 895, 30px) !important;
}
.index_access_con address {
  display: inline-block;
  margin-bottom: 2.0833333333vw;
  padding: 0.5rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  font-style: normal;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 1025px) / 895, 24px) !important;
}
.index_access_con iframe {
  width: 100%;
  max-width: 860px;
  height: auto;
  max-height: 360px;
  aspect-ratio: 16/9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.mcon.about h2 {
  margin-top: 9.375vw;
  margin-bottom: 3.125vw;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 1025px) / 895, 50px) !important;
  text-align: center;
}
.mcon.about h2:first-of-type {
  margin-top: 0;
}
.mcon.about h2::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 30px;
  background: url(../images/logo_black.svg) no-repeat center;
  background-size: contain;
}
.mcon.about h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 1025px) / 895, 20px) !important;
}
.mcon.about h3 {
  margin-bottom: 2.6041666667vw;
  font-size: clamp(26px, 26px + (30 - 26) * (100vw - 1025px) / 895, 30px) !important;
}
.mcon.about > p {
  font-size: 1.8rem;
  line-height: 3.2;
}
.mcon.about .event_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.mcon.about .event_wrap .event_list {
  width: calc((100% - 2.5rem) / 2);
  height: 100%;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(112, 112, 112, 0.46);
  border-bottom: none;
}
.mcon.about .event_wrap .event_list h4 {
  margin: 0;
  padding: 2.6041666667vw;
  font-size: clamp(20px, 20px + (25 - 20) * (100vw - 1025px) / 895, 25px) !important;
  border-bottom: 1px solid rgba(112, 112, 112, 0.46);
}
.mcon.about .event_wrap .event_list h4::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(18px, 18px + (20 - 18) * (100vw - 1025px) / 895, 20px) !important;
}
.mcon.about .event_wrap .event_list .list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
  margin: 0;
  padding: 2.6041666667vw;
  background: rgba(255, 255, 255, 0.46);
  border-bottom: 1px solid rgba(112, 112, 112, 0.46);
}
.mcon.about .event_wrap .event_list .list dl {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  font-size: clamp(16px, 16px + (22 - 16) * (100vw - 1025px) / 895, 22px) !important;
  border-bottom: 1px dotted rgba(112, 112, 112, 0.26);
}
.mcon.about .event_wrap .event_list .list dl:first-of-type {
  border-top: 1px dotted rgba(112, 112, 112, 0.26);
}
.mcon.about .event_wrap .event_list .list dl dt {
  width: 8em;
}

.mcon.guide .guide_nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 7.8125vw;
  margin: 0;
  padding-bottom: 4.1666666667vw;
}
.mcon.guide .guide_nav::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #707070 2px, transparent 2px);
  background-position: left -4px bottom;
  background-repeat: repeat-x;
  background-size: 16px 4px;
}
.mcon.guide .guide_nav li {
  margin: 0;
  list-style-type: none;
}
.mcon.guide .guide_nav li a {
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 1025px) / 895, 30px) !important;
  font-weight: 500;
}
.mcon.guide .guide_nav li a span {
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all 0.5s;
}
.mcon.guide .guide_nav li a span::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #030303;
  transition: all 0.5s;
}
.mcon.guide .guide_nav li a span::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 1025px) / 895, 18px) !important;
}
.mcon.guide .guide_nav li a:hover span {
  color: #50667F;
}
.mcon.guide .guide_nav li a:hover span::before {
  background: #50667F;
}
.mcon.guide .guide_con {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
  align-items: center;
  gap: 7.8125vw;
  padding: 3.6458333333vw 0;
}
.mcon.guide .guide_con::after {
  position: absolute;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle, #707070 2px, transparent 2px);
  background-position: left -4px bottom;
  background-repeat: repeat-x;
  background-size: 16px 4px;
}
.mcon.guide .guide_con .guide_con_txt h2 {
  margin: 0 0 1.0416666667vw;
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 1025px) / 895, 30px) !important;
  font-weight: 500;
}
.mcon.guide .guide_con .guide_con_txt h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 1025px) / 895, 18px) !important;
}
.mcon.guide .guide_con .guide_con_txt p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 1025px) / 895, 18px) !important;
  line-height: 2;
}
.mcon.guide .guide_con .guide_con_img {
  flex-shrink: 0;
  width: clamp(360px, 360px + (560 - 360) * (100vw - 1025px) / 895, 560px) !important;
}
.mcon.guide .guide_con .guide_con_img img {
  width: 100%;
  height: auto;
}

.mcon.prayers h2 {
  margin-bottom: 3.6458333333vw;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 1025px) / 895, 50px) !important;
}
.mcon.prayers h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 1025px) / 895, 20px) !important;
}
.mcon.prayers h3 {
  margin-bottom: 1.5625vw;
  font-size: clamp(26px, 26px + (30 - 26) * (100vw - 1025px) / 895, 30px) !important;
}
.mcon.prayers table {
  width: 100%;
  margin-bottom: 5rem;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(112, 112, 112, 0.46);
}
.mcon.prayers table th {
  padding: 1.0416666667vw;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 1025px) / 895, 18px) !important;
  text-align: center;
  border: 1px solid rgba(112, 112, 112, 0.46);
  white-space: nowrap;
}
.mcon.prayers table td {
  padding: 1.0416666667vw;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(112, 112, 112, 0.46);
}
.mcon.prayers .prayers_tbl_01 th:first-of-type {
  width: 25%;
}
.mcon.prayers .prayers_tbl_01 th:nth-of-type(2) {
  width: 15%;
}
.mcon.prayers .prayers_tbl_01 th:nth-of-type(3) {
  width: 30%;
}
.mcon.prayers .prayers_tbl_01 th:nth-of-type(4) {
  width: 30%;
}
.mcon.prayers .prayers_tbl_01 td:nth-of-type(2) {
  text-align: right;
}
.mcon.prayers .prayers_tbl_02 th:first-of-type {
  width: 25%;
}
.mcon.prayers .prayers_tbl_03 th:first-of-type {
  width: 25%;
}
.mcon.prayers .prayers_tbl_03 th:nth-of-type(2) {
  width: 15%;
}
.mcon.prayers .prayers_tbl_03 th:nth-of-type(3) {
  width: 60%;
}
.mcon.prayers .prayers_tbl_03 td:nth-of-type(2) {
  text-align: right;
}
.mcon.prayers .list_ctn {
  margin: 0 0 2.6041666667vw;
}
.mcon.prayers .prayers_btn {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-inline: auto;
}
.mcon.prayers .prayers_btn .prayers_btn_item {
  width: -moz-max-content;
  width: max-content;
}
.mcon.prayers .prayers_btn .prayers_btn_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: #50667F;
  color: #fff;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 1025px) / 895, 22px) !important;
  border: 1px solid #50667F;
  transition: all 0.5s ease;
}
.mcon.prayers .prayers_btn .prayers_btn_item a::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  transition: all 0.5s ease;
}
.mcon.prayers .prayers_btn .prayers_btn_item a:hover {
  background: #fff;
  color: #50667F;
}
.mcon.prayers .prayers_btn .prayers_btn_item a.pdf::before {
  background: url(../images/icon_pdf_white.svg) no-repeat;
}
.mcon.prayers .prayers_btn .prayers_btn_item a.pdf:hover::before {
  background: url(../images/icon_pdf_blue.svg) no-repeat;
}
.mcon.prayers .prayers_btn .prayers_btn_item a.word::before {
  background: url(../images/icon_word_white.svg) no-repeat;
}
.mcon.prayers .prayers_btn .prayers_btn_item a.word:hover::before {
  background: url(../images/icon_word_blue.svg) no-repeat;
}

.mcon.amulets h2 {
  margin-bottom: 3.6458333333vw;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 1025px) / 895, 50px) !important;
}
.mcon.amulets h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 1025px) / 895, 20px) !important;
}
.mcon.amulets .amulets_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625vw;
  margin-bottom: 2.6041666667vw;
}
.mcon.amulets .amulets_list:last-of-type {
  margin-bottom: 0;
}
.mcon.amulets .amulets_list .amulets_list_item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 6.25vw) / 5);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .mcon.amulets .amulets_list .amulets_list_item {
    width: calc((100% - 4.6875vw) / 4);
  }
}
.mcon.amulets .amulets_list .amulets_list_item .img {
  background: #fff;
  padding: 1rem;
}
.mcon.amulets .amulets_list .amulets_list_item .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}
.mcon.amulets .amulets_list .amulets_list_item .txt {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0.78125vw 1.0416666667vw 1.5625vw;
}
.mcon.amulets .amulets_list .amulets_list_item .txt h3 {
  margin: 0 0 10px;
  font-family: "Yuji Syuku", serif;
  font-size: clamp(20px, 20px + (25 - 20) * (100vw - 1025px) / 895, 25px) !important;
  line-height: 1.2em;
}
.mcon.amulets .amulets_list .amulets_list_item .txt .size, .mcon.amulets .amulets_list .amulets_list_item .txt .price {
  display: flex;
  margin-top: auto;
  font-family: "Yuji Syuku", serif;
}
.mcon.amulets .amulets_list .amulets_list_item .txt .size dt, .mcon.amulets .amulets_list .amulets_list_item .txt .price dt {
  font-size: clamp(20px, 20px + (22 - 20) * (100vw - 1025px) / 895, 22px) !important;
}
.mcon.amulets .amulets_list .amulets_list_item .txt .size dd, .mcon.amulets .amulets_list .amulets_list_item .txt .price dd {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 1025px) / 895, 18px) !important;
}
.mcon.amulets .amulets_list .amulets_list_item .txt .size > dl {
  width: 100%;
}
.mcon.amulets .amulets_list .amulets_list_item .txt .price > dl {
  width: 50%;
}
.mcon.amulets .amulets_btn {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-inline: auto;
  margin-bottom: 7.8125vw;
}
.mcon.amulets .amulets_btn:last-of-type {
  margin-bottom: 0;
}
.mcon.amulets .amulets_btn .amulets_btn_item {
  width: -moz-max-content;
  width: max-content;
}
.mcon.amulets .amulets_btn .amulets_btn_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 3rem;
  background: #50667F;
  color: #fff;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 1025px) / 895, 22px) !important;
  border: 1px solid #50667F;
  transition: all 0.5s ease;
}
.mcon.amulets .amulets_btn .amulets_btn_item a::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  transition: all 0.5s ease;
}
.mcon.amulets .amulets_btn .amulets_btn_item a:hover {
  background: #fff;
  color: #50667F;
}
.mcon.amulets .amulets_btn .amulets_btn_item a.pdf::before {
  background: url(../images/icon_pdf_white.svg) no-repeat;
}
.mcon.amulets .amulets_btn .amulets_btn_item a.pdf:hover::before {
  background: url(../images/icon_pdf_blue.svg) no-repeat;
}
.mcon.amulets .amulets_btn .amulets_btn_item a.word::before {
  background: url(../images/icon_word_white.svg) no-repeat;
}
.mcon.amulets .amulets_btn .amulets_btn_item a.word:hover::before {
  background: url(../images/icon_word_blue.svg) no-repeat;
}

.mcon.contact {
  max-width: 1070px !important;
}
.mcon.contact > p {
  margin-bottom: 4.6875vw;
  color: #303030;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 1025px) / 895, 24px) !important;
}
.mcon.contact dl.mailform dt {
  display: flex;
  align-items: center;
  float: none !important;
  width: 100% !important;
  text-align: left !important;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 1025px) / 895, 22px) !important;
  border: none !important;
}
.mcon.contact dl.mailform dt::after {
  content: attr(data-enttl);
  display: inline-block;
  margin-left: 0.78125vw;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 1025px) / 895, 18px) !important;
}
.mcon.contact dl.mailform dt .must {
  background-image: none;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 1025px) / 895, 14px) !important;
  text-shadow: none !important;
}
.mcon.contact dl.mailform dd {
  width: 100% !important;
  margin-bottom: 2.0833333333vw !important;
  padding: 0 !important;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 1025px) / 895, 22px) !important;
  border: none !important;
}
.mcon.contact dl.mailform dd input, .mcon.contact dl.mailform dd textarea {
  width: 100% !important;
  padding: 10px !important;
  background: #fff;
  box-shadow: none !important;
}
.mcon.contact dl.mailform dd input[type=checkbox], .mcon.contact dl.mailform dd textarea[type=checkbox] {
  width: -moz-max-content !important;
  width: max-content !important;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 1025px) / 895, 22px) !important;
  transform: scale(1.8);
}
.mcon.contact dl.mailform dd label {
  width: -moz-max-content !important;
  width: max-content !important;
}
.mcon.contact dl.mailform dd label input[type=checkbox] {
  margin: -6px 6px 0 2px !important;
}
.mcon.contact dl.mailform dd label.mfp_checked {
  padding: 5px 10px !important;
}
.mcon.contact dl.mailform dd label.mfp_not_checked {
  border: none !important;
}
.mcon.contact dl.mailform .mfp_achroma, .mcon.contact dl.mailform .mfp_colored {
  background: none !important;
}
.mcon.contact dl.mailform div.mfp_err {
  font-size: 14px !important;
  background-position: 0px 6px !important;
}
.mcon.contact .mfp_element_submit {
  width: 100%;
  max-width: 365px;
  padding: 1.3020833333vw 1.5625vw;
  background: #444 !important;
  color: #fff;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 1025px) / 895, 24px) !important;
  border: 1px solid #707070 !important;
  border-radius: 50vh !important;
  text-shadow: none !important;
}

div#mfp_overlay_inner {
  width: 960px !important;
}

div#mfp_overlay_inner h4 {
  margin-bottom: 10px;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 1025px) / 895, 18px) !important;
  font-weight: 500;
}

table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
  padding: 15px 10px !important;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 1025px) / 895, 18px) !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mttl {
  position: relative;
  width: 100vw;
  height: 100vh;
  max-height: 700px;
}
.mttl::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  max-height: 700px;
  margin: 0 calc(50% - 50vw);
}
.mttl h1 {
  position: absolute;
  right: 9.375vw;
  bottom: 4.1666666667vw;
  z-index: 1;
  color: #fff;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 1025px) / 895, 50px) !important;
  text-align: center;
  letter-spacing: 0.08em;
}
.mttl h1::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 1025px) / 895, 20px) !important;
}
.mttl.about::before {
  background: url(../images/title_bg_about.jpg) no-repeat center center;
  background-size: cover;
}
.mttl.guide::before {
  background: url(../images/title_bg_guide.jpg) no-repeat center center;
  background-size: cover;
}
.mttl.prayers::before {
  background: url(../images/title_bg_prayers.jpg) no-repeat center center;
  background-size: cover;
}
.mttl.amulets::before {
  background: url(../images/title_bg_amulets.jpg) no-repeat center center;
  background-size: cover;
}
.mttl.contact::before {
  background: url(../images/title_bg_contact.jpg) no-repeat center center;
  background-size: cover;
}

.mcon {
  padding-top: 9.375vw;
  padding-bottom: 9.375vw;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=style.css.map */