@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( 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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** tablet size
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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: 2rem;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 320px) / 704, 30px) !important;
  letter-spacing: 0.08em;
}
.hd_bg .hd .hd_logo a::before {
  content: "";
  display: block;
  width: clamp(36px, 36px + (46 - 36) * (100vw - 320px) / 704, 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 - 320px) / 704, 10px) !important;
  letter-spacing: 0.4em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: 0;
  z-index: -1;
  overflow-x: none;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #50667F;
  color: #fff;
  transition: All 0.5s ease;
  opacity: 0;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 2rem;
  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: 1.2rem;
}
.nav .nav_list > li > a:hover::before, .nav .nav_list > li > a.current::before {
  transform: scale(1, 1);
}
.nav .nav_list > li > .sub-menu > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}
.nav .nav_list > li > .sub-menu > li > a:hover, .nav .nav_list > li > .sub-menu > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.nav .nav_list > li > .sub-menu > li > .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}
.nav .nav_list > li > .sub-menu > li > .nav_glist > li > a:hover, .nav .nav_list > li > .sub-menu > li > .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.sp_nav_open {
  opacity: 1;
  z-index: 999;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 11px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #fff;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
  color: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  bottom: 2px;
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  overflow-x: hidden;
}
.con_bg .con .main {
  background: url(../images/page_bg.jpg);
  background-size: auto;
  overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
  padding: 19.53125vw 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 {
  width: 90%;
  margin: 0 auto;
  padding-top: 9.765625vw;
  padding-bottom: 9.765625vw;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .ft_bg .ft_con {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_con {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.ft_bg .ft_con .ft_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 9.765625vw;
}
.ft_bg .ft_con .ft_nav_list {
  display: none;
}
.ft_bg .ft_con .ft_contact p {
  display: flex;
  align-items: center;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / 704, 24px) !important;
  gap: 2rem;
  margin-bottom: 1rem;
}
.ft_bg .ft_con .ft_contact_address {
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .ft_bg .ft_con .ft_contact_address {
    display: flex;
    align-items: flex-end;
    gap: 5.859375vw;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_con .ft_contact_address {
    display: flex;
    align-items: flex-end;
    gap: 5.859375vw;
  }
}
.ft_bg .ft_con .ft_contact_address address {
  font-style: normal;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / 704, 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: 2.5rem;
}
@media screen and (max-width: 520px) {
  .ft_bg .ft_con .ft_contact_sns {
    justify-content: center;
  }
}
.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: 100%;
  max-width: 300px;          
  margin: 3rem 0 0;      
  box-sizing: border-box;
  transition: all 0.5s ease;
}

@media screen and (max-width: 520px) {
  .ft_bg .ft_con .ft_contact_btn {
    margin: 3rem auto 0; /* 中央揃え */
  }
}

.ft_bg .ft_con .ft_contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 100%;               
  padding: 1.2rem 1.5rem;
  background: #fff;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 704, 20px) !important;
  border: 1px solid #ddd;
  transition: all 0.5s ease;
  box-sizing: border-box;
}

.ft_bg .ft_con .ft_contact_btn a::before {
  content: "";
  display: block;
  width: 24px;
  height: 18px;
  background: url(../images/icon_contact.svg) no-repeat center/contain;
}

.ft_bg .ft_con .ft_contact_btn a:hover {
  background: #50667F;
  color: #fff;
  border: 1px solid #50667F;
}
.ft_bg .ft_copy {
  display: block;
  padding: 3.90625vw 0;
  background: url(../images/footer_copy_bg.jpg);
  background-size: cover;
  font-size: clamp(16px, 16px + (26 - 16) * (100vw - 320px) / 704, 26px) !important;
  text-align: center;
}

.banner {
  display: block;
  text-align: center;
}
.banner img {
  padding: 2em 0;
  width: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  height: auto;
  display: inline-block;
}

@media (max-width: 520px) {
  picture.banner {
    display: flex;
    justify-content: center;
  }
  picture.banner img {
    width: auto;
    max-width: -moz-max-content;
    max-width: max-content;
    height: auto;
    display: inline-block;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  cursor: pointer;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.pt_btn {
  position: relative;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 320px) / 704, 18px) !important;
  transition: all 0.5s ease;
}
.pt_btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 100%;
  height: 100%;
  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;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  max-width: 430px;
  min-height: 160px;
  padding: 4.39453125vw 3.90625vw 3.90625vw 5.37109375vw;
  background: rgba(17, 17, 17, 0.51);
  color: #fff;
}
.index_slider_bg .index_slider_ttl::before {
  position: absolute;
  top: 1.953125vw;
  left: 5.37109375vw;
  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: 4.39453125vw;
  bottom: 1.953125vw;
  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 + (46 - 36) * (100vw - 320px) / 704, 46px) !important;
  letter-spacing: 0.08em;
  line-height: 1;
}
.index_slider_bg .index_slider_ttl p {
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / 704, 24px) !important;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: right;
}
.index_slider_bg img {
  width: 100%;
  height: 80vh;
  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: clamp(30px, 30px + (40 - 30) * (100vw - 320px) / 704, 40px) !important;
  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;
  font-size: clamp(14px, 14px + (20 - 14) * (100vw - 320px) / 704, 20px) !important;
  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 {
  margin: 7rem 2rem 5rem;
  padding: 3rem;
  background: #fff;
}
.index_info_scrl_bg .index_info_scrl {
  max-height: 300px;
  overflow: auto;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .index_info_scrl_bg .index_info_item {
    display: flex;
    align-content: space-between;
    gap: 4rem;
    width: 100%;
    padding: 1rem 0;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_info_scrl_bg .index_info_item {
    display: flex;
    align-content: space-between;
    gap: 4rem;
    width: 100%;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 520px) {
  .index_info_scrl_bg .index_info_item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
  }
}
.index_info_scrl_bg .date {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 320px) / 704, 16px) !important;
}
.index_info_scrl_bg .date .cate {
  display: block;
  width: clamp(80px, 80px + (150 - 80) * (100vw - 320px) / 704, 150px) !important;
  padding: 0.3rem;
  background: #717171;
  color: #fff;
  font-size: clamp(11px, 11px + (16 - 11) * (100vw - 320px) / 704, 16px) !important;
  text-align: center;
  white-space: nowrap;
}
.index_info_scrl_bg .date time {
  color: #666;
  white-space: nowrap;
}
.index_info_scrl_bg .title {
  width: 100%;
  padding-bottom: 1rem;
  font-size: clamp(13px, 13px + (16 - 13) * (100vw - 320px) / 704, 16px) !important;
  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: clamp(20px, 20px + (30 - 20) * (100vw - 320px) / 704, 30px) !important;
  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;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .index_greet {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_greet {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 520px) {
  .index_greet {
    display: flex;
    flex-direction: column-reverse;
  }
}
.index_greet::before {
  content: "";
  display: block;
  width: 100%;
  height: 50vh;
  background: url(../images/i_greet_img.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .index_greet::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
  }
}
.index_greet_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: #50667F;
  padding: 10.7421875vw 3.90625vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .index_greet_txt {
    width: 50%;
  }
}
.index_greet_txt h2 {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 2rem;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 320px) / 704, 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 - 320px) / 704, 16px) !important;
}
.index_greet_txt p {
  margin-bottom: 1.5rem;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 320px) / 704, 18px) !important;
}
.index_greet_txt .more a {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.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_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: 1.46484375vw;
}
.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 {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.8rem;
}
.index_guide .more a:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_elink_white.svg) no-repeat center center;
}

.index_apply {
  padding: 14.6484375vw 1.953125vw;
  background: url(../images/i_apply_bg.jpg) no-repeat center center;
  background-size: cover;
}
.index_apply_con {
  display: flex;
  gap: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .index_apply_con {
    align-items: center;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_apply_con {
    align-items: center;
  }
}
@media screen and (max-width: 520px) {
  .index_apply_con {
    flex-direction: column;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .index_apply_con .index_apply_item {
    width: calc((100% - 5rem) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_apply_con .index_apply_item {
    width: calc((100% - 5rem) / 2);
  }
}
@media screen and (max-width: 520px) {
  .index_apply_con .index_apply_item {
    width: 100%;
  }
}
.index_apply_con .index_apply_item h2 {
  margin-bottom: 8.7890625vw;
  font-size: clamp(36px, 36px + (46 - 36) * (100vw - 320px) / 704, 46px) !important;
}
.index_apply_con .index_apply_item h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 320px) / 704, 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: 4.8828125vw 2rem;
  color: #5A4545;
  font-size: clamp(26px, 26px + (36 - 26) * (100vw - 320px) / 704, 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 - 320px) / 704, 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: 24.4140625vw 2rem 19.53125vw;
  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: 3.90625vw;
}
.index_access_con h2 span {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.5rem 2rem;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: clamp(24px, 24px + (30 - 24) * (100vw - 320px) / 704, 30px) !important;
}
.index_access_con address {
  display: inline-block;
  margin-bottom: 3.90625vw;
  padding: 0.5rem 2rem;
  background: rgba(255, 255, 255, 0.4);
  font-style: normal;
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / 704, 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: 17.578125vw;
  margin-bottom: 5.859375vw;
  font-size: clamp(28px, 28px + (50 - 28) * (100vw - 320px) / 704, 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(13px, 13px + (20 - 13) * (100vw - 320px) / 704, 20px) !important;
}
.mcon.about h3 {
  margin-bottom: 2.9296875vw;
  font-size: clamp(26px, 26px + (30 - 26) * (100vw - 320px) / 704, 30px) !important;
}
@media screen and (max-width: 520px) {
  .mcon.about h3 {
    margin-bottom: 5.7692307692vw;
  }
}
.mcon.about > p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / 704, 18px) !important;
  line-height: 3.2;
}
.mcon.about .event_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.mcon.about .event_wrap .event_list {
  height: 100%;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(112, 112, 112, 0.46);
  border-bottom: none;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.about .event_wrap .event_list {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.about .event_wrap .event_list {
    width: calc((100% - 2.5rem) / 2);
  }
}
@media screen and (max-width: 520px) {
  .mcon.about .event_wrap .event_list {
    width: 100%;
  }
}
.mcon.about .event_wrap .event_list h4 {
  margin: 0;
  padding: 4.8828125vw;
  font-size: clamp(20px, 20px + (25 - 20) * (100vw - 320px) / 704, 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 - 320px) / 704, 20px) !important;
}
.mcon.about .event_wrap .event_list .list {
  margin: 0;
  padding: 4.8828125vw;
  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: 1rem 0;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 704, 20px) !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;
  margin: 0;
  padding-bottom: 7.8125vw;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.guide .guide_nav {
    flex-wrap: wrap;
    gap: 2.9296875vw 5.859375vw;
    text-align: center;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.guide .guide_nav {
    flex-wrap: wrap;
    gap: 2.9296875vw 5.859375vw;
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .mcon.guide .guide_nav {
    flex-wrap: wrap;
    gap: 5.859375vw 7.8125vw;
    text-align: center;
  }
}
.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(18px, 18px + (26 - 18) * (100vw - 320px) / 704, 26px) !important;
  font-weight: 500;
}
.mcon.guide .guide_nav li a span {
  position: relative;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.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 - 320px) / 704, 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: space-between;
  align-items: center;
  gap: 14.6484375vw;
  padding: 6.8359375vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.guide .guide_con {
    flex-direction: column-reverse;
    gap: 5.859375vw;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.guide .guide_con {
    flex-direction: column-reverse;
    gap: 5.859375vw;
  }
}
@media screen and (max-width: 520px) {
  .mcon.guide .guide_con {
    flex-direction: column-reverse;
    gap: 5.859375vw;
  }
}
.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.953125vw;
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 320px) / 704, 30px) !important;
  font-weight: 500;
  text-align: center;
}
.mcon.guide .guide_con .guide_con_txt h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / 704, 18px) !important;
}
.mcon.guide .guide_con .guide_con_txt p {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / 704, 18px) !important;
  line-height: 2;
}
.mcon.guide .guide_con .guide_con_img {
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.guide .guide_con .guide_con_img {
    width: clamp(360px, 360px + (560 - 360) * (100vw - 320px) / 704, 560px) !important;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.guide .guide_con .guide_con_img {
    width: 100%;
    max-width: 480px;
  }
}
@media screen and (max-width: 520px) {
  .mcon.guide .guide_con .guide_con_img {
    width: 100%;
  }
}
.mcon.guide .guide_con .guide_con_img img {
  width: 100%;
  height: auto;
}

.mcon.prayers h2 {
  margin-bottom: 6.8359375vw;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 320px) / 704, 50px) !important;
}
.mcon.prayers h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 704, 20px) !important;
}
.mcon.prayers h3 {
  margin-bottom: 2.9296875vw;
  font-size: clamp(26px, 26px + (30 - 26) * (100vw - 320px) / 704, 30px) !important;
}
@media screen and (max-width: 520px) {
  .mcon.prayers h3 {
    margin-bottom: 5.7692307692vw;
  }
}
.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.953125vw;
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / 704, 18px) !important;
  text-align: center;
  border: 1px solid rgba(112, 112, 112, 0.46);
  white-space: nowrap;
}
.mcon.prayers table td {
  padding: 1.953125vw;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(112, 112, 112, 0.46);
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .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;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .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;
  }
}
@media screen and (max-width: 520px) {
  .mcon.prayers .prayers_tbl_01 {
    border-bottom: none;
  }
  .mcon.prayers .prayers_tbl_01 tr th {
    display: none;
  }
  .mcon.prayers .prayers_tbl_01 tr td {
    display: block;
    padding: 3.8461538462vw;
    background: none;
    border: none;
  }
  .mcon.prayers .prayers_tbl_01 tr td:first-of-type {
    background: rgba(255, 255, 255, 0.46);
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgba(112, 112, 112, 0.46);
  }
  .mcon.prayers .prayers_tbl_01 tr td:nth-of-type(2)::before {
    content: "祈願料";
    display: block;
    font-weight: 700;
  }
  .mcon.prayers .prayers_tbl_01 tr td:nth-of-type(3)::before {
    content: "拝 受";
    display: block;
    font-weight: 700;
  }
  .mcon.prayers .prayers_tbl_01 tr td:last-of-type {
    border-bottom: 1px solid rgba(112, 112, 112, 0.46);
  }
  .mcon.prayers .prayers_tbl_01 tr td:last-of-type::before {
    content: "拝受御札等の扱い、他";
    display: block;
    font-weight: 700;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.prayers .prayers_tbl_02 th:first-of-type {
    width: 25%;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.prayers .prayers_tbl_02 th:first-of-type {
    width: 25%;
  }
}
@media screen and (max-width: 520px) {
  .mcon.prayers .prayers_tbl_02 {
    border-top: none;
  }
  .mcon.prayers .prayers_tbl_02 th, .mcon.prayers .prayers_tbl_02 td {
    display: block;
    padding: 3.8461538462vw;
    border: none;
  }
  .mcon.prayers .prayers_tbl_02 th {
    border-top: 1px solid rgba(112, 112, 112, 0.46);
    border-bottom: 1px solid rgba(112, 112, 112, 0.46);
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .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;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .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;
  }
}
@media screen and (max-width: 520px) {
  .mcon.prayers .prayers_tbl_03 {
    border-bottom: none;
  }
  .mcon.prayers .prayers_tbl_03 tr th {
    display: none;
  }
  .mcon.prayers .prayers_tbl_03 tr td {
    display: block;
    padding: 3.8461538462vw;
    background: none;
    border: none;
  }
  .mcon.prayers .prayers_tbl_03 tr td:first-of-type {
    background: rgba(255, 255, 255, 0.46);
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid rgba(112, 112, 112, 0.46);
  }
  .mcon.prayers .prayers_tbl_03 tr td:nth-of-type(2)::before {
    content: "供養料";
    display: block;
    font-weight: 700;
  }
  .mcon.prayers .prayers_tbl_03 tr td:nth-of-type(3)::before {
    content: "供養内容";
    display: block;
    font-weight: 700;
  }
  .mcon.prayers .prayers_tbl_03 tr td:last-of-type {
    border-bottom: 1px solid rgba(112, 112, 112, 0.46);
  }
  .mcon.prayers .prayers_tbl_03 tr td:last-of-type::before {
    content: "拝受御札等の扱い、他";
    display: block;
    font-weight: 700;
  }
}
.mcon.prayers .list_ctn {
  margin: 0 0 4.8828125vw;
}
@media screen and (max-width: 520px) {
  .mcon.prayers .list_ctn {
    margin: 0 0 9.6153846154vw;
  }
}
.mcon.prayers .prayers_btn {
  margin-top: 3rem;
  margin-inline: auto;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.prayers .prayers_btn {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.prayers .prayers_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .mcon.prayers .prayers_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.mcon.prayers .prayers_btn .prayers_btn_item {
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.prayers .prayers_btn .prayers_btn_item {
    width: 100%;
    max-width: 35.5rem;
  }
}
@media screen and (max-width: 520px) {
  .mcon.prayers .prayers_btn .prayers_btn_item {
    width: 100%;
    max-width: 35.5rem;
  }
}
.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(16px, 16px + (22 - 16) * (100vw - 320px) / 704, 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: 6.8359375vw;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 320px) / 704, 50px) !important;
}
.mcon.amulets h2::after {
  content: attr(data-enttl);
  display: block;
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 704, 20px) !important;
}
.mcon.amulets .amulets_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.9296875vw;
  margin-bottom: 4.8828125vw;
}
.mcon.amulets .amulets_list:last-of-type {
  margin-bottom: 0;
}
.mcon.amulets .amulets_list .amulets_list_item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.amulets .amulets_list .amulets_list_item {
    width: calc((100% - 8.7890625vw) / 4);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.amulets .amulets_list .amulets_list_item {
    width: calc((100% - 5.859375vw) / 3);
  }
}
@media screen and (max-width: 520px) {
  .mcon.amulets .amulets_list .amulets_list_item {
    width: calc((100% - 2.9296875vw) / 2);
  }
}
.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 {
  padding: 1.46484375vw 1.953125vw 2.9296875vw;
}
.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 - 320px) / 704, 25px) !important;
}
.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(18px, 18px + (22 - 18) * (100vw - 320px) / 704, 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 - 320px) / 704, 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 {
  margin-top: 3rem;
  margin-inline: auto;
  margin-bottom: 14.6484375vw;
}
.mcon.amulets .amulets_btn:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .mcon.amulets .amulets_btn {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.amulets .amulets_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .mcon.amulets .amulets_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.mcon.amulets .amulets_btn .amulets_btn_item {
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon.amulets .amulets_btn .amulets_btn_item {
    width: 100%;
    max-width: 35.5rem;
  }
}
@media screen and (max-width: 520px) {
  .mcon.amulets .amulets_btn .amulets_btn_item {
    width: 100%;
    max-width: 35.5rem;
  }
}
.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(16px, 16px + (22 - 16) * (100vw - 320px) / 704, 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 > p {
  margin-bottom: 8.7890625vw;
  color: #303030;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 320px) / 704, 24px) !important;
}
.mcon.contact dl.mailform dt {
  display: flex;
  align-items: center;
  float: none !important;
  width: 100% !important;
  padding: 0 0 1rem !important;
  text-align: left !important;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 704, 22px) !important;
  border: none !important;
}
.mcon.contact dl.mailform dt::after {
  content: attr(data-enttl);
  display: inline-block;
  margin-left: 1.46484375vw;
  font-size: clamp(14px, 14px + (18 - 14) * (100vw - 320px) / 704, 18px) !important;
}
.mcon.contact dl.mailform dt .must {
  background-image: none;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 704, 14px) !important;
  text-shadow: none !important;
}
.mcon.contact dl.mailform dd {
  width: 100% !important;
  margin-bottom: 3.90625vw !important;
  padding: 0 0 2rem !important;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 704, 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 - 320px) / 704, 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: 2.44140625vw 2.9296875vw;
  background: #444 !important;
  color: #fff;
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 320px) / 704, 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 - 320px) / 704, 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 - 320px) / 704, 18px) !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mttl {
  position: relative;
  width: 100vw;
  height: 80vh;
  max-height: 700px;
}
.mttl::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100vw;
  height: 80vh;
  max-height: 700px;
  margin: 0 calc(50% - 50vw);
}
.mttl h1 {
  position: absolute;
  right: 4.8828125vw;
  bottom: 7.8125vw;
  z-index: 1;
  color: #fff;
  font-size: clamp(40px, 40px + (50 - 40) * (100vw - 320px) / 704, 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 - 320px) / 704, 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: 11.71875vw 2rem;
  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=sp.css.map */