@charset "utf-8";
:root {
  /* カラーパレット */
  --color-primary: #1a1311;
  --color-secondary: #ffffff;
  --color-accent: #ff0000;

  /* フォントサイズ */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;

  /* スペーシング */
  --spacing-unit: 8px;
  --spacing-small: calc(var(--spacing-unit) * 1);
  --spacing-medium: calc(var(--spacing-unit) * 2);
  --spacing-large: calc(var(--spacing-unit) * 3);

  /* ブレークポイント */
  --breakpoint-mobile: 767px;
  --breakpoint-tablet: 1024px;
  --breakpoint-desktop: 1280px;

  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .5s var(--easing);
}

/*----------------------------------------------------------------------------------------------
	base
----------------------------------------------------------------------------------------------*/

html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

body {
  position: relative;
  font-family: serif;
/*  font-family: "Noto Sans JP", sans-serif;*/
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  color: var(--color-primary);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  width: 100%;
  height: 100%;
  margin: auto;
}

#page_wrap {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  z-index: 1;
}

a {
  -webkit-transition: .4s;
  transition: .4s;
}

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

a:hover,
a:active {
  color: #666;
  text-decoration: none;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}
/*PCで表示させないセレクタ*/
#sp_header,
.tel-btn_sp {
  display: none;
}

.pc_hidden {
  display: none;
}

@media screen and (max-width:800px) {
  html {
    -webkit-text-size-adjust: none;
  }

  body {
    min-width: 320px;
    font-feature-settings: "palt";
    font-size: 13px;
  }

  #page_wrap {
    /* padding-top: 60px; */
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /*スマホのみのオプション*/
  .sp_pic {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
  }

  .sp_center {
    display: block;
    margin: 0px auto;
  }

  .sp_br {
    display: block;
    margin-top: 5px;
  }

  .sp_50 {
    width: 50%;
    margin: 0px auto 5px;
    display: block;
  }

  .sp_80 {
    width: 80%;
    margin: 0px auto 5px;
    display: block;
  }

  .FRight,
  .FLeft {
    float: none;
  }

  .sp_right {
    float: right;
  }

  .sp_left {
    float: left;
  }

  .sp_centering {
    text-align: center
  }

  /*スマホで表示させないセレクタ*/
  .h_nav_pc,
  #gnavi_wrap {
    display: none;
  }

  .pc_hidden {
    display: block;
  }

  .sp_hidden {
    display: none;
  }

  .pc_hidden.inlineb {
    display: inline-block;
  }

  .hidden-md {
    display: none;
  }

  .visible-md {
    display: block;
  }

  .xs-justify {
    text-align: justify;
  }

  .box_w900 {
    margin-left: 15px;
    margin-right: 15px;
  }
}

  /* ----------------------------------------------------------------------------------------------
   header
---------------------------------------------------------------------------------------------- */

#header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(11, 20, 43, 1);
  z-index: 3;
  -webkit-transition: .4s;
  transition: .4s;
}

.is_scroll #header {
  background-color: rgba(11, 20, 43, 1);
}

.header__inner {
  position: relative;
  margin: 0 auto;
  padding: 0 30px 0;
  height: 90px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h__id {
  display: inline-block;
  margin-bottom: 5px;
}

.h__id img {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

@media screen and (max-width:800px) {

  /* ----------------------------------------------------------------------------------------------
   sp_header ※スマホのみ表示のセレクタ
---------------------------------------------------------------------------------------------- */
  #header{
    /* background:#fff; */
   }
  .is_scroll #header {
    background:#fff;
  }
  .is_page #header{
    background:#3d4f4e;
  }
  .is_page .is_scroll #header {
    background:#3d4f4e;
  }
  .header__inner {
    position: relative;
    margin: 0 auto;
    padding: 5px 15px 0;
    height: 60px;
  }

  .h__id {
    padding-top: 0px;
    /* margin-bottom: 15px; */
  }

  .h__id img {
    height: 35px;
    width: auto;
  }

  .sp_img {
    width: 100%;
    height: auto;
  }

  .sp_img95 {
    width: 95%;
    height: auto;
  }

  .sp_img90 {
    width: 90%;
    height: auto;
  }

  .sp_img80 {
    width: 80%;
    height: auto;
  }

  .box_w960 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .sp-nav__list__item.new a::before {
    content: "NEW";
    text-align: center;
    vertical-align: middle;
    width: 32px;
    height: 14px;
    font-size: 10px;
    color: #fff;
    background-color: #B79A00;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 14px;
  }

  .sp_menu_bnr {
    width: 80%;
    margin: 20px auto 0;
  }
}


/*----------------------------------------------------------------------------------------------
	footer area
----------------------------------------------------------------------------------------------*/

.footer {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  background: #fff;
}

.footer_notes {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  text-align: justify;
  font-size: 14px;
}

.spFtrFloat {
  display: none;
}

.footer_inner {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  display: flex;
  margin-top: 70px;
  /* flex-direction: column; */
  padding: 40px 0 0;
}

.f__id01_set {
  text-align: justify;
  margin-right: 9%;
}

.f__txt {
  font-size: 17px;
  line-height: 1.8;
  margin-top: 20px;
}

.f__sns_set {
  text-align: justify;
}

.f__sns_set_ttl {
  font-size: 21px;
  margin-top: 60px;
}

.f__sns {
  display: flex;
  gap: 25px;
  margin-top: 30px;
}

.f__sns a:hover {
  opacity: .7;
}

.f_copyright {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 6em;
  padding-top: 2em;
  display: block;
  border-top: 1px solid #0b142b;
}


.side_Float {
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 0;
  top: 50px;
  right: 0;
  width: clamp(40px, 5vw, 90px);
  z-index: 9999;
}

.side_Float a {
  display: block;
  background: #fff;
}

.side_Float a img {
  -webkit-transition: .4s;
  transition: .4s;
}

.side_Float a:hover img {
  opacity: 0.7;
}

@media screen and (max-width:800px) {
  .footer_notes {
    margin-top: 0;
    padding: 0;
    font-size: 10px;
  }

  .top_data_notes {
    margin: 10px 10px 0;
    font-size: 10px;
    line-height: 1.6;
    text-align: justify;
  }

  .footer_inner {
    width: 100%;
    margin-inline: auto;
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    padding: 20px 5% 0;
    border-top: 1px solid #0b142b;
  }

  .footer {
    padding-bottom: 110px;
  }

  .f__id01_set {
    margin-top: 20px;
    width: 95%;
    gap: 40px 5%;
  }

  .f__id01 {
    width: 65%;
  }

  .f__txt {
    font-size: 11px;
    line-height: 1.8;
    margin-top: 20px;
  }

  .f__sns_set_ttl {
    font-size: 16px;
    margin-top: 30px;
  }
  
  .f__sns {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }

  .f_copyright {
    font-size: 10px;
    margin-top: 4em;
    display: block;
  }

  .side_Float {
    display: none;
  }

}


/* ----------------------------------------------------------------------------------------------
  footer link
----------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
  #nav-dock {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 50px;
    right: 5px;
  }

  #nav-dock a {
    width: 40px;
    height: 40px;
    display: block;
    text-indent: -9999px;
    background-image: url("../img/btn_pagetop.svg");
    background-repeat: no-repeat;
    background-position: 0px 0px;
    background-size: cover;
  }

  #nav-top {
    width: 112px;
    height: 31px;
    position: fixed;
    bottom: 0%;
    left: 50%;
    transform: translateX(-56px);
  }

  .spFtrFloat {
    display: flex;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 123456789;
  }

  .spFtrFloat p {
    width: calc(100% / 3);
  }

  .spFtrFloat a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #fff;
  }

  a.spFtrFloat__btn {
    display: block;
  }
}



/*----------------------------------------------------------------------------------------------
	COMMON
----------------------------------------------------------------------------------------------*/
.row:after,
.col:after {
  content: "";
  display: block;
  clear: both;
}

.col {
  display: block;
  float: left;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

.mt05 {  margin-top: 5px;}
.mt10 {  margin-top: 10px;}
.mt15 {  margin-top: 15px;}
.mt20 {  margin-top: 20px;}
.mt30 {  margin-top: 30px;}
.mt40 {  margin-top: 40px;}
.mt50 {  margin-top: 50px;}
.mt60 {  margin-top: 60px;}
.mb05 {  margin-bottom: 5px;}
.mb10 {  margin-bottom: 10px;}
.mb15 {  margin-bottom: 15px;}
.mb20 {  margin-bottom: 20px;}
.mb25 {  margin-bottom: 25px;}
.mb30 {  margin-bottom: 30px;}
.mb35 {  margin-bottom: 35px;}
.mb40 {  margin-bottom: 40px;}
.mb45 {  margin-bottom: 45px;}
.mb50 {  margin-bottom: 50px;}
.mb55 {  margin-bottom: 55px;}
.mb60 {  margin-bottom: 60px;}
.mb65 {  margin-bottom: 65px;}
.mb70 {  margin-bottom: 70px;}
.mb75 {  margin-bottom: 75px;}
.mb80 {  margin-bottom: 80px;}
.mb85 {  margin-bottom: 85px;}

@media screen and (max-width:800px) {
  .mt05 {    margin-top: 5px;  }
  .mt10 {    margin-top: 10px;  }
  .mt15 {    margin-top: 15px;  }
  .mt20 {    margin-top: 10px;  }
  .mt30 {    margin-top: 15px;  }
  .mt40 {    margin-top: 20px;  }
  .mt45 {    margin-top: 22px;  }
  .mt60 {    margin-top: 30px;  }
  .mb05 {    margin-bottom: 5px;  }
  .mb10 {    margin-bottom: 10px;  }
  .mb15 {    margin-bottom: 15px;  }
  .mb20 {    margin-bottom: 10px;  }
  .mb25 {    margin-bottom: 14px;  }
  .mb30 {    margin-bottom: 15px;  }
  .mb35 {    margin-bottom: 17px;  }
  .mb40 {    margin-bottom: 20px;  }
  .mb45 {    margin-bottom: 22px;  }
  .mb50 {    margin-bottom: 25px;  }
  .mb55 {    margin-bottom: 27px;  }
  .mb60 {    margin-bottom: 30px;  }
  .mb65 {    margin-bottom: 32px;  }
  .mb70 {    margin-bottom: 35px;  }
  .mb75 {    margin-bottom: 37px;  }
  .mb80 {    margin-bottom: 40px;  }
  .mb85 {    margin-bottom: 47px;  }
  .xs-mt10 {    margin-top: 10px;  }
  .xs-mt15 {    margin-top: 15px;  }
  .xs-mt20 {    margin-top: 20px;  }
  .xs-mt25 {    margin-top: 25px;  }
  .xs-mt30 {    margin-top: 30px;  }
  .xs-mt35 {    margin-top: 35px;  }
  .xs-mt40 {    margin-top: 40px;  }
}

.ctb {
  text-align: center;
}

.ac {
  text-align: center;
}

.al {
  text-align: left;
}

.ar {
  text-align: right;
}

a.hover img {
  -webkit-transition: .4s;
  transition: .4s;
}

a.hover:hover img {
  opacity: 0.7;
}

.soon_bana {
  background: #333;
}

.soon_bana img {
  opacity: 0.5;
}

#nav-dock {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 15px;
  right: 15px;
}

#nav-dock a {
  width: 40px;
  height: 40px;
  display: block;
  text-indent: -9999px;
  background-image: url("../img/btn_pagetop.svg");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: cover;
}

#nav-dock a:hover {
  opacity: 0.7;
}

.scroll_down {
  position: fixed;
  top: 50%;
  left: 22px;
  z-index: 1000;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.page_sec_ttl {
  text-align: center;
  margin-bottom: 20px;
}

.yellow {
  color: #EABA2A;
}

.c-ts-color {
  color: #c0512f;
}

img {
  max-width: 100%;
  height: auto;
}

.full_w_img img,
img.full_w_img {
  width: 100%;
  height: auto;
}

.fs_s {
  font-size: .8em;
}

.fs_ss {
  font-size: .6em;
}

sup {
  font-size: 70%;
  vertical-align: super;
}

.img_base {
  position: relative;
}

#nav-top {
  width: 150px;
  height: 44px;
  position: fixed;
  bottom: 120px;
  right: 50px;
}

.uline_red {
  color: #C8161D;
  text-decoration: underline;
}

.text-s {
  font-size: 12px !important;
}

.text-ss {
  font-size: 10px !important;
}

.fx {
  display: -webkit-box;
  /*Android4.3*/
  display: -moz-box;
  /*Firefox21*/
  display: -ms-flexbox;
  /*IE10*/
  display: -webkit-flex;
  /*PC-Safari,iOS8.4*/
  display: flex;
}

.fx-al-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.fx-al-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.fx-al-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.fx-js-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.fx-js-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.fx-js-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.fx-js-around {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.fx-js-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

@media screen and (max-width:800px) {
  .fx-xs-column {
    flex-direction: column;
  }
}



.w700{
  max-width:700px !important;
  margin-left:auto;
  margin-right:auto;
}
.w800{
  max-width:800px !important;
  margin-left:auto;
  margin-right:auto;
}
.w1000{
  max-width:1000px !important;
  margin-left:auto;
  margin-right:auto;
}
.w1400{
  max-width:1400px !important;
  margin-left:auto;
  margin-right:auto;
}
.w90{
  width:90% !important;
  margin-left:auto;
  margin-right:auto;
}
.w100{
  width:100% !important;
}
.fMin{
  font-family: serif;
}
.fGo{
  font-family: sans-serif;
}

.sec100{
  padding-top:min(10vw,100px);
  padding-bottom:min(10vw,100px);
}

.cBg01{background: #ede9e1;}
.cBg02{background: #222;}
.cBgWh{background: #fff;}

.cTtl01{
  font-size:clamp(25px,3.5vw,35px);
  color:#907e33;
  text-align: center;
}
.cTxt01{
  font-size:clamp(30px,5.5vw,55px);
  text-align: center;
  font-weight: bold;
}
.txt18r{font-size:clamp(15px,1.8vw,18px);}
.txt28r{font-size:clamp(20px,2.8vw,28px);}
.txt35r{font-size:clamp(25px,3vw,35px);}
.txt40r{font-size:clamp(30px,3.5vw,40px);}

.center{text-align: center;}

/* ===================================================================
//animation
=================================================================== */
.pageHddAnim {
  opacity: 0 !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.pageHddAnim.is_view {
  opacity: 1 !important;
}

.fadeAnim {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnim.is_view {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeAnimB {
  opacity: 0;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimB.is_view {
  opacity: 1;
}

.fadeAnimC {
  opacity: 1;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimC.is_hide {
  opacity: 0;
}

.fadeAnimRightIn {
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimRightIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeAnimLeftIn {
  opacity: 0;
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.fadeAnimLeftIn.is_view {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.delay01 {
  -webkit-transition-delay: .1s !important;
  transition-delay: .1s !important;
}

.delay02 {
  -webkit-transition-delay: .2s !important;
  transition-delay: .2s !important;
}

.delay03 {
  -webkit-transition-delay: .3s !important;
  transition-delay: .3s !important;
}

.delay04 {
  -webkit-transition-delay: .4s !important;
  transition-delay: .4s !important;
}

.delay05 {
  -webkit-transition-delay: .5s !important;
  transition-delay: .5s !important;
}

.delay06 {
  -webkit-transition-delay: .6s !important;
  transition-delay: .6s !important;
}

.delay07 {
  -webkit-transition-delay: .7s !important;
  transition-delay: .7s !important;
}

.delay08 {
  -webkit-transition-delay: .8s !important;
  transition-delay: .8s !important;
}

.delay09 {
  -webkit-transition-delay: .9s !important;
  transition-delay: .9s !important;
}

.delay015 {
  -webkit-transition-delay: .15s !important;
  transition-delay: .15s !important;
}

.delay025 {
  -webkit-transition-delay: .25s !important;
  transition-delay: .25s !important;
}

.delay035 {
  -webkit-transition-delay: .35s !important;
  transition-delay: .35s !important;
}

.delay075 {
  -webkit-transition-delay: .75s !important;
  transition-delay: .75s !important;
}

.delay1 {
  -webkit-transition-delay: 1s !important;
  transition-delay: 1s !important;
}

.delay15 {
  -webkit-transition-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.animImg {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg * {
  -webkit-transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: #000;
}

.animImg.is_view::before {
  -webkit-animation: animImgMask 1s ease;
  -moz-animation: animImgMask 1s ease;
  animation: animImgMask 1s ease;
}

@-webkit-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@-moz-keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

@keyframes animImgMask {
  0% {
    top: 100%;
  }

  25% {
    top: 0;
  }

  75% {
    top: 0;
  }

  100% {
    bottom: 100%;
  }
}

.animImg img {
  opacity: 0;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.animImg.is_view img {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* 光らせるためのstyle */
.shine {
  position: relative;
  overflow: hidden;
  display: block;
}

/* 光の疑似要素 */
.shine::before {
  content: "";
  animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
  background-color: #afbec5;
  width: 140%;
  height: 100%;
  transform: skewX(-45deg);
  top: 0;
  left: -160%;
  opacity: 0.5;
  position: absolute;
}

/* 光の動き */
@keyframes shine {
  0% {
    left: -160%;
    opacity: 0;
  }

  70% {
    left: -160%;
    opacity: 0.5;
  }

  71% {
    left: -160%;
    opacity: 1;
  }

  100% {
    left: -20%;
    opacity: 0;
  }
}

/**********
//fadeText
**********/
.fadeText>span {
  opacity: 0;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

.fadeText>span.is_view {
  opacity: 1;
}

.fadeText>span:nth-child(3n+1) {
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}

.fadeText>span:nth-child(2n) {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}


/* ===================================================================
//btns
=================================================================== */
.btns {
  display: block;
  background: #000;
  font-size: 15px;
  text-align: center;
  color: #fff !important;
  padding: 15px;
  width: 100%;
  max-width: 170px;
  -webkit-transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

a:hover.btns {
  opacity: 0.7;
}

.btns i {
  margin-right: 5px;
}

.btns.gmapBtn {
  max-width: 350px;
}

.btns.noMobile {
  display: inline-block !important;
}

.mobile .btns.noMobile {
  display: none !important;
}


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

.c-buttons-shin {
  position: relative;
  overflow: hidden;
}

.c-buttons-shin:hover:after {
  display: block;
}

.c-buttons-shin:after {
  content: "";
  position: absolute;
  display: none;
  top: -100%;
  left: -40px;
  width: 40px;
  height: 300%;
  transform: rotate(30deg);
  background: white;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 20%, rgba(255, 255, 255, 0.7) 80%, rgba(255, 255, 255, 0) 100%);
  animation: 3s btbr infinite;
  opacity: .7;
}

@keyframes btbr {
  0% {
    left: -40px;
  }

  20% {
    left: 390px;
  }

  100% {
    left: 390px;
  }
}




/*----------------------------------------------------------------------------------------------
	top
----------------------------------------------------------------------------------------------*/
.mv {
  position: relative;
  width: 100%;
}


.merit{
  background-color:#2c2c2c;
}
.merit .unit01{
  width:90%;
  margin:0 auto;
  padding:30px 0;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,0.5);
  font-family: "Noto Serif JP", serif;
}
.merit .unit01:last-of-type{
  border-bottom:0;
}
.merit .unit01 .txt01{
  color:#cbba8b;
  font-size:clamp(28px,2.8vw,35px);
}
.merit .unit01 .txt02{
  color:#fff;
  font-size:clamp(16px,1.6vw,20px);
}
.merit .unit01 .txt02 span{
  font-size:150%;
}
@media(min-width:800px){
  .merit{
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .merit .unit01{
    max-width:420px;
    width:33%;
    margin:0;
    padding:40px 1%;
    border-bottom:0;
    position: relative;
  }
  .merit .unit01::before{
    content:"";
    display: block;
    width:1px;
    height:70%;
    position: absolute;
    right:0;
    top:15%;
    border-right:1px solid rgba(255,255,255,0.5);
    transform:skewX(-10deg);
  }
  .merit .unit01:last-of-type::before{
    content:none;
  }
}

.topMessage{
  text-align: center;
  padding:100px 5%;
}
.topMessage .txt01{
  font-size:min(4.5vw,28px);
}
.topMessage .txt02{
  font-size:min(8vw,55px);
  color:#a5893f;
}
.topMessage .txt02 span{
  font-size:150%;
}


/*location*/
.locWrap{
  padding:100px 0;
}
.loc01{}
.loc01 .unit01{
  margin-bottom:20px;
}
.loc01 .unit01 figcaption{
  text-align: left;
  font-size:15px;
  margin-top:10px;
}
@media(min-width: 800px){
  .loc01{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .loc01 .unit01{
    width:48%;
    margin-bottom:40px;
  }
}


/*access*/
.car01{
  margin-bottom:50px;
}
.car01.border{
  border-top:1px solid #333;
  padding-top:50px;
}
.car01 .txtwrap01{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom:50px;
  padding:30px 5%;
  aspect-ratio: 1;
}
.car01 .txtwrap01 .ttl01{
  font-size:min(7vw,38px);
  color:#8b793f;
  margin-bottom:2em;
  position: relative;
}
.car01 .txtwrap01 .ttl01::before{
  content:"";
  display: block;
  position: absolute;
  width:2em;
  height:1px;
  background: #000;
  bottom:-0.5em;
  left:calc(50% - 1em);
}
.car01 .txtwrap01 .txt01{
  font-size:min(6vw,38px);
}
.car01 .img01{
  width:100%;
}
@media(min-width:800px){
  .car01{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom:80px;
  }
  .car01.border{
    padding-top:80px;
  }
  .car01 .txtwrap01{
    aspect-ratio: auto;
    width:46%;
    margin-bottom:0;
  }
  .car01 .img01{
    width:50%;
    max-width: 679px;
  }
}
.car02{
  margin-bottom:50px;
  max-width:1201px;
  margin:0 auto 50px;
}
.train01{
  margin-bottom:50px;
  max-width:644px;
  margin:0 auto 50px;
}


/*tateuri*/
.tateuri01{
}
.tateuri01 .img01{
  width:90%;
  margin:0 auto 20px;
}
.tateuri01 .pointWrap{
  width:90%;
  margin:0 auto 20px;
}
.tateuri01 .pointWrap figure{
  margin-bottom:20px;
}
@media(min-width:800px){
  .tateuri01{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
  .tateuri01 .img01{
    width:57%;
    margin:0;
    margin-right:3%;
  }
  .tateuri01 .pointWrap{
    width:33%;
    margin:0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .tateuri01 .pointWrap figure{
    margin-bottom:0;
  }
}

.tateuri02{}

.movie{
  position: relative;
  width: 100%;
  margin:0 auto;
}
.movie video{
  width: 100%;
}
.movie .play-btn{
  display: block;
  width: 20%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  cursor: pointer;
}
.movie .play-btn.playActive{display:none;}



.planTtl01{
  width:40%;
  max-width:256px;
  margin:0 auto 50px;
}

/*slide*/
.planSlide{
  width:100%;
  margin-bottom:40px !important;
}
/*dots*/
.planSlide .slick-dots {
    position: absolute;
    bottom: 10px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.planSlide .slick-dots li button:before {
    opacity: .75;
    font-size: 10px;
    color: #fff;
}
.planSlide .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #bd9f77;
}
/**/


.noteWrap{
  color:#fff;
}








a.top-cta_btn {
  width:90%;
  max-width: 700px;
  margin-inline: auto;
  margin-top: 80px;
  display: flex;
  gap: .4em;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: clamp(20px,3vw,30px);
  font-weight: 500;
  line-height: 3;
  letter-spacing: 0.05em;
  background: #cb474e;
  background: linear-gradient(180deg, #cb474e 0%, #a2393e 100%);
  transition: all .5s ease;
  justify-content: center;
  align-items: center;
}

a.top-cta_btn::after {
  content: '';
  position: absolute;
  right:20px;
  top:calc(50% - 0.25em);
  width:0.5em;
  height:0.5em;
  border-top:1px solid #fff;
  border-right:1px solid #fff;
  transform: rotate(45deg);
}


a.top-cta_btn.u-cta_btn2 {
  background: #c5ab72;
  background: linear-gradient(180deg, #c5ab72 0%, #927941 100%);
}








/* sec-resilience */
.sec-resilience {
  position: relative;
  padding: 210px 0 170px;
  text-align: center;
  background: #f9fcf4;
  font-family: sans-serif;
}

.resilience-t01 {
  font-size: 41px;
  font-family: "Noto Serif JP", serif;
}

.resilience-t02 {
  margin-top: 30px;
}

.resilience-t03 {
  margin-top: 30px;
}

.resilience-list {
  width: clamp(300px, 90%, 1310px);
  margin-inline: auto;
  margin-top: 90px;
  display: flex;
  gap: 5%;
}

.resilience-list li {
  box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.4);
}

.resilience-t04 {
  margin-top: 100px;
  line-height: 2;
}

.resilience-t05 {
  position: relative;
  display: inline-block;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  margin-top: 3em;
}

.resilience-t05::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2.5em;
  width: 2.1em;
  height: 1px;
  background: var(--color-primary);
}

.resilience-t06 {
  margin-top: 2em;
  line-height: 2;
}

.resilience-img01 {
  width: clamp(300px, 90%, 816px);
  margin-inline: auto;
  margin-top: 30px;
}

.resilience-logo {
  width: clamp(300px, 90%, 816px);
  margin-inline: auto;
  margin-top: 30px;
}

.resilience-item-list {
  width: clamp(300px, 90%, 1310px);
  margin-inline: auto;
  margin-top: 60px;
  display: flex;
  gap: 5%;
  text-align: justify;
  justify-content: center;
}
.resilience-item-list li {
  width: calc((100% - 10%) / 3);
}

.resilience-item-list p {
  font-size: 27px;
  font-weight: 500;
  margin-top: .5em;
}

.resilience-notes {
  font-size: 19px;
  margin-top: 5em;
}

.sec-map {
  position: relative;
  padding: 180px 0 100px;
}

.sec-map-ttl {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 41px;
  font-weight: 400;
  margin-bottom:1.5em;
}

#mapscroll01{
  width: 100%;
  height:calc(130vw + 15px);
  overflow-y:hidden;
  overflow-x:scroll;
  margin: 0 auto 60px;
}
#mapscroll01 img{
  height:130vw;
  width:119vw;
  max-width:none;
}
@media (min-width:768px) {
  #mapscroll01{
    width: 100%;
    max-width: 1800px;
    height:auto;
    overflow:hidden;
  }
  #mapscroll01 img{
    width:100%;
    height:auto;
    max-width:100%;
  }
}

.gmapbtn{}
.gmapbtn span{
  color:#756638;
  font-size:80%;
}


.carnavi{
  width:90%;
  max-width:1000px;
  margin:60px auto;
  background: #9c927d;
  padding:30px;
  color:#fff;
}
.carnavi .txt01{
  font-size:min(4vw,25px);
}
.carnavi .txt02{
  font-size:min(6vw,40px);
  background: #fff;
  padding:5px;
  margin:20px 0;
  color:#222;
}
.carnavi .txt03{
  font-size:14px;
}





@media (max-width: 800px) {
  /* sec-resilience */
  .sec-resilience {
    position: relative;
    padding: 60px 5% 60px;
    text-align: center;
    background: #f9fcf4;
  }

  .resilience-t01 {
    font-size: 21px;
    font-family: "Noto Serif JP", serif;
  }

  .resilience-t02 {
    margin-top: 30px;
  }

  .resilience-t03 {
    margin-top: 20px;
  }

  .resilience-list {
    width: clamp(300px, 100%, 1310px);
    margin-inline: auto;
    margin-top: 40px;
    display: flex;
    gap: 15px 5%;
    flex-direction: column;
  }

  .resilience-list li {
    box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.3);
  }

  .resilience-t04 {
    margin-top: 40px;
    line-height: 2;
    text-align: justify;
  }

  .resilience-t05 {
    position: relative;
    display: inline-block;
    font-size: 27px;
    font-weight: 500;
    line-height: 1;
    margin-top: 2em;
  }

  .resilience-t05::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2.0em;
    width: 1.5em;
    height: 1px;
    background: var(--color-primary);
  }

  .resilience-t06 {
    margin-top: 1.5em;
    line-height: 2;
    text-align: justify;
  }

  .resilience-img01 {
    width: clamp(300px, 100%, 816px);
    margin-inline: auto;
    margin-top: 30px;
  }

  .resilience-logo {
    width: clamp(300px, 100%, 816px);
    margin-inline: auto;
    margin-top: 20px;
  }

  .resilience-item-list {
    width: clamp(300px, 100%, 1310px);
    margin-inline: auto;
    margin-top: 30px;
    display: flex;
    gap: 30px 5%;
    text-align: justify;
    justify-content: center;
    flex-direction: column;
  }
  .resilience-item-list li {
    width: 100%;
  }

  .resilience-item-list p {
    font-size: 18px;
    font-weight: 500;
    margin-top: .5em;
  }

  .resilience-notes {
    font-size: 10px;
    margin-top: 2em;
    text-align: justify;
  }

  .sec-cta {
    position: relative;
    padding: 60px 0 60px;
    background: #000016;
    text-align: center;
    color: #fff;
  }

  .sec-cta-ttl {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 21px;
    font-weight: 400;
  }

  .sec-map {
    position: relative;
    padding: 60px 0 0;
    text-align: center;
  }

  .sec-map-ttl {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 21px;
    font-weight: 400;
  }

  .map {
    width: clamp(300px, 100%, 1400px);
    margin-inline: auto;
    margin-top: 20px;
  }

  .map iframe {
    width: 100%;
    height: 220px;
    border: none;
  }

  .map-address {
    font-size: 16px;
    display: flex;
    margin-top: 1em;
    justify-content: center;
    align-items: center;
  }

  .map-address span {
    font-size: .8em;
  }


}


/*チャットボットのデザイン*/ iframe#dify-chatbot-bubble-window{position: fixed !important;width: 36rem !important;height: 60rem !important;right: 99px !important;} @media screen and (max-width: 768px){ iframe#dify-chatbot-bubble-window{width: calc(100% - 40px) !important;max-width: 400px !important;right: 19px !important;bottom: 80px !important;} } #dify-chatbot-bubble-button{ position: relative !important; bottom: auto !important; top: auto !important; left: auto !important; right: auto !important; width: auto !important; height: auto !important; cursor: pointer; } #dify-chatbot-bubble-button img{ position: absolute; width: 100%; height: auto; top: 0; left: auto; transition: 0.3s; } #dify-chatbot-bubble-button .chatbot01{ opacity: 1; } #dify-chatbot-bubble-button .chatbot02{ opacity: 0; } #dify-chatbot-bubble-button.active .chatbot01{ opacity: 0; } #dify-chatbot-bubble-button.active .chatbot02{ opacity: 1; } .fixNavi{ top: min(140px,14vh); } .fixNavi a img{ max-height: 20vh; margin-bottom: 5px; } @media screen and (max-width: 768px){ #dify-chatbot-bubble-button{ width: 35px !important; } .fixNavi{ top: 70px; } }

#dify-chatbot-bubble-button {
  height: 100%;
  aspect-ratio: 28 / 61;
}
#dify-chatbot-bubble-button img {
  -webkit-transition: .4s;
  transition: .4s;
}

#dify-chatbot-bubble-button:hover img {
  filter: brightness(1.5);
}

#chatbot-sp {
  position: relative;
}
#chatbot-sp img{
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  transition: 0.3s;
  -webkit-transition: .4s;
  transition: .4s;
}
#chatbot-sp .chatbot01{ opacity: 1; }
#chatbot-sp .chatbot02{ opacity: 0; }
#chatbot-sp.active .chatbot01{ opacity: 0; }
#chatbot-sp.active .chatbot02{ opacity: 1; }