@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: "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;
}

#header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgb(255 255 255);
  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;
}



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

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

.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;
  }

}




/*----------------------------------------------------------------------------------------------
	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;
}

.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;
  }
}

/* ===================================================================
//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;
  }
}



/* ----------------------------------------------------------------------------------------------
	SP base
----------------------------------------------------------------------------------------------*/
@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;
  }

  /* ----------------------------------------------------------------------------------------------
   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 link
----------------------------------------------------------------------------------------------*/

  #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
----------------------------------------------------------------------------------------------*/
  .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;
  }
}


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

.mv_t01 {
  position: absolute;
  top: 6.5%;
  left: 6.9%;
  width: 50.1%;
  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);
}
.mv_t02 {
  position: absolute;
  top: 40.1%;
  left: 2.1%;
  width: 28.75%;
  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);
}
.mv_t03 {
  position: absolute;
  top: 59.96%;
  left: 1.45%;
  width: 24.5%;
  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);
}

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

.is_view .mv_t02 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .2s !important;
  transition-delay: .2s !important;
}

.is_view .mv_t03 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: .3s !important;
  transition-delay: .3s !important;
}


/* sec-message */
.sec-message {
  position: relative;
  padding: 66px 0 0;
  text-align: center;
}

.section-message_t01 {
  position: relative;
}

.section-message_t01::before {
  content: '';
  display: block;
  width: 1px;
  height: 100px;
  background: var(--color-primary);
  margin-inline: auto;
  margin-bottom: 66px;
}

/* good point */
.sec-good_point {
  position: relative;
  background: #a2afc0;
  padding: 110px 0;
  margin-top: 230px;
  text-align: center;
}

.good_point_list {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 90px;
}

.top-banner01 {
  max-width: 960px;
  margin-inline: auto;
  margin-top: 125px;
}

a.top-cta_btn {
  width: 710px;
  margin-inline: auto;
  margin-top: 80px;
  display: flex;
  gap: .4em;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 39px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 2.7;
  letter-spacing: 0.05em;
  background: #a40818;
  background: linear-gradient(90deg, rgb(158 9 22) 0%, rgb(128 14 20) 100%);
  box-shadow: 5px 5px 25px -7px rgba(0,0,0,0.5);
  transition: all .5s ease;
  justify-content: center;
  align-items: center;
}

a.top-cta_btn::after {
  content: '';
  position: absolute;
  top: 34%;
  right: 20px;
  width: 1em;
  height: 1em;
  background: url(../img/arrow_maru_white.svg) no-repeat;
  background-size: 100%;
  transition: all .5s ease;
}
a:hover.top-cta_btn::after  {
  right: 10px;
}

a:hover.top-cta_btn {
  padding-left: .5em;
}

a.top-cta_btn.u-cta_btn2 {
  background: #716126;
  background: linear-gradient(90deg, rgb(107 94 48) 0%, rgb(88 78 39) 100%);
  box-shadow: 5px 5px 25px -7px rgba(0,0,0,0.5);
}  


/* sec-access */
.sec-access {
  position: relative;
  padding: 210px 0 0;
  text-align: center;
}

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

.access-01_map {
  width: 100%;
  margin-inline: auto;
  margin-top: 60px;
}

.access_t01 {
  margin-top: 30px;
}

.access-ttl02 {
  width: clamp(300px, 90%, 1310px);
  margin-inline: auto;
  font-size: 33px;
  font-family: "Noto Serif JP", serif;
  border-bottom: .5px solid var(--color-primary);
  padding-bottom: 0.5em;
  margin-top: 1em;
  text-align: center;
}

.access-lead02 {
  line-height: 1.8;
  margin-top: 3em;
}

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

.access-point-list-item {
  width: calc(50% - 2.5%);
}

.access-point-list-item-ttl {
  margin-top: 25px;
}

/* sec-access-car */
.sec-access-car {
  position: relative;
  padding: 170px 0 0;
  text-align: center;
}


.access-car-ttl01 {
  font-size: 41px;
  font-family: "Noto Serif JP", serif;
}

.access-car_map {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  position: relative;
  margin-top: 70px;
}

.access-car_map picture {
  display: block;
  width: 102%;
}

.access-car_map img {
  width: 100%;
}

.car-point {
  width: clamp(300px, 90%, 1400px);
  margin-inline: auto;
  position: relative;
  margin-top: 70px;
}

.car-point-list {
    position: relative;
    display: flex;
    gap: 3%;
    margin-top: 80px;
}
.car-point-list-item {
  width: calc((100% - 6%) / 3);
}

.car-point-list-item-ttl {
  margin-top: 25px;
}

.car_notes {
  /* color: #c6bab6; */
  font-size: 15px;
  text-align: justify;
  margin-top: 1em;
}

/* sec-plan-01 */
.sec-plan-01 {
  position: relative;
  padding: 170px 0 0;
  text-align: center;
}

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

.plan-01-img01 {
  margin-top: 110px;
}

/* sec-plan-02 */
.sec-plan-02 {
  position: relative;
  padding: 180px 0 270px;
  text-align: center;
  background: #f8f6f3;
}


/* sec-plan-link */
.sec-plan-link {
  position: relative;
  padding: 190px 0 270px;
  text-align: center;
  background: #000016;
  color: #fff;
}

.plan-list {
  width: clamp(300px, 90%, 964px);
  margin-inline: auto;
  display: flex;
  gap: 60px 5%;
  justify-content: center;
  flex-wrap: wrap;
}
.plan-list li {
  width: calc((100% - 5%) / 2);
}

.plan-list li a:hover {
  filter: brightness(1.3);
}

.plan-list-t01 {
  margin-top: 180px;
}

.plan-list-t02 {
  margin-top: 50px;
  line-height: 2;
}

.plan-chouki {
  font-size: 41px;
  font-family: "Noto Serif JP", serif;
  margin-top: 130px;
}

.banner_note {
  width: clamp(300px, 90%, 956px);
  margin-inline: auto;
  margin-top: 130px;
}

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

.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-cta {
  position: relative;
  padding: 180px 0 180px;
  background: #000016;
  text-align: center;
  color: #fff;
}

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

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

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

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

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

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

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

@media (max-width: 800px) {
  .mv {
    position: relative;
    width: 100%;
  }

  .mv_t01 {
    position: absolute;
    top: 3.5%;
    left: 4.9%;
    width: 62.8%;
    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);
  }
  .mv_t02 {
    position: absolute;
    top: 17.1%;
    left: 4.1%;
    width: 66.56%;
    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);
  }
  .mv_t03 {
    position: absolute;
    top: 69.96%;
    left: 3.45%;
    width: 55.9%;
    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);
  }

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

  .is_view .mv_t02 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .2s !important;
    transition-delay: .2s !important;
  }

  .is_view .mv_t03 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: .3s !important;
    transition-delay: .3s !important;
  }


  /* sec-message */
  .sec-message {
    position: relative;
    padding: 40px 5% 0;
    text-align: center;
  }

  .section-message_t01 {
    position: relative;
  }

  .section-message_t01::before {
    display: none;
  }

  /* good point */
  .sec-good_point {
    position: relative;
    background: #a2afc0;
    padding: 60px 0;
    margin-top: 60px;
    text-align: center;
  }

  .good_point_ttl {
    padding: 0 28%;
  }

  .good_point_list {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .top-banner01 {
    max-width: 90%;
    margin-inline: auto;
    margin-top: 60px;
  }


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

  .access-ttl01 {
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
  }
  .access-01_map {
    margin-top: 30px;
  }


  .access-lead02 {
    line-height: 1.8;
    margin-top: 2em;
    padding: 0 5%;
  }

  .access-t01_sp_map {
    padding: 0 5%;
    margin-top: 30px;
  }

  .access_t01 {
    padding: 0 5%;
    margin-top: 10px;
  }

  .access-ttl02 {
    width: clamp(100px, 70%, 1310px);
    margin-inline: auto;
    font-size: 22px;
    padding-bottom: 0.5em;
    margin-top: 2em;
    text-align: center;
  }

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

  .access-point-list-item {
    width: calc(50% - 2.5%);
  }

  .access-point-list-item-ttl {
    margin-top: 13px;
  }

  /* sec-access-car */
  .sec-access-car {
    position: relative;
    text-align: center;
  }

  .access-car-ttl01 {
    font-size: 27px;
    font-family: "Noto Serif JP", serif;
  }

  .access-car_map {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    position: relative;
    margin-top: 30px;
  }

  .access-car_map picture {
    display: block;
    width: 100%;
  }

  .access-car_map img {
    width: 100%;
  }

  .car-point {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    position: relative;
    margin-top: 40px;
  }

  .car-point-list {
      position: relative;
      display: flex;
      flex-wrap: wrap;
      gap: 30px 5%;
      margin-top: 30px;
  }
  .car-point-list-item {
    width: calc((100% - 5%) / 2);
  }

  .car-point-list-item-ttl {
    margin-top: 25px;
  }
  .car_notes {
    /* color: #c6bab6; */
    font-size: 10px;
    text-align: justify;
    margin-top: 1em;
  }

  /* sec-plan-01 */
  .sec-plan-01 {
    position: relative;
    padding: 60px 0 0;
    text-align: center;
  }

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

  .plan-01-img01 {
    margin-top: 30px;
  }

  /* sec-plan-02 */
  .sec-plan-02 {
    position: relative;
    padding: 60px 0 60px;
    text-align: center;
    background: #f8f6f3;
  }

  .plan-ttl02  {
    padding: 0 5%;
  }

  /* sec-plan-link */
  .sec-plan-link {
    position: relative;
    padding: 30px 0 60px;
    text-align: center;
    background: #000016;
    color: #fff;
  }

  .plan-list {
    width: clamp(300px, 90%, 1400px);
    margin-inline: auto;
    display: flex;
    gap: 15px 5%;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .plan-list li {
    width: 100%;
  }

  .plan-list li a:hover {
    filter: brightness(1.3);
  }

  .plan-chouki {
    font-size: 21px;
    font-family: "Noto Serif JP", serif;
    margin-top: 60px;
  }

  .plan-list-t01 {
    margin-top: 50px;
    padding: 0 10%;
  }

  .plan-list-t02 {
    font-size: 10px;
    margin-top: 10px;
    line-height: 2;
  }

  .banner_note {
    width: 100%;
    margin-inline: auto;
    margin-top: 40px;
  }

  /* 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;
  }


  a.top-cta_btn {
    width: 80%;
    display: flex;
    gap: .4em;
    position: relative;
    text-align: center;
    font-size: 17px;
    line-height: 3.5;
    letter-spacing: 0.2em;
    transition: all .5s ease;
    justify-content: center;
    align-items: center;
	  margin-top: 30px;
  }

  a.top-cta_btn::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 15px;
    width: 1.5em;
    height: 1.5em;
    background: url(../img/arrow_maru_white.svg) no-repeat;
    background-size: 100%;
    transition: all .5s ease;
  }
  a:hover.top-cta_btn::after  {
    right: 15px;
  }

  a:hover.top-cta_btn {
    padding-left: .5em;
  }

}

.banner_mov {
  width: clamp(200px, 90%, 400px);
  margin-inline: auto;
  margin-top: 80px;
}

.banner_mov video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .banner_mov {
    width: clamp(200px, 80%, 400px);
    margin-inline: auto;
    margin-top: 40px;
  }
}


/*チャットボットのデザイン*/ 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; }