@charset "UTF-8";
/*------------------------
全体基本設定
------------------------*/
/*html {
  scroll-behavior: smooth;
}*/

h1 a {
  display: block;
  width: 100%;
  height: 100%;
  transition: all .3s;
}

@media screen and (min-width: 768px) {
  h1 a:hover {
    transition: all .3s;
    opacity: .5;
  }
}

i {
  transition: all .3s;
}

@media screen and (min-width: 768px) {
  i:hover {
    transition: all .3s;
    opacity: .5;
  }
}

body {
  font-size: clamp(16px, 0.93vw, 18px);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  /*color: #000000;*/
  line-height: 1.8;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin: 0;
}

li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

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

/*--------- サイズ位置調整 --------*/

.inner-w {
  max-width: 1500px;
  width: calc(100% - 200px);
  margin: 0 auto;
}

.inner-n {
  max-width: 1050px;
  width: 62.5%;
  margin: 0 auto;
}

.margin-auto {
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bold {
  font-weight: 600;
}

/*------- fv内tel・アイコン ------*/
.fvheader-flexWraps {
  position: absolute;
  top: 100px;
  right: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  transition: all 0.3s;
  z-index: 9999;
}

.fvheader-flexWraps.is-disappear {
  position: fixed;
  color: #000000;
/*  transition: all 1s;*/
  transition: all 0s;
  z-index: 9999;
  opacity: 0;
}

.fvheader-flexWraps__tel {
  font-size: clamp(15px, 0.93vw, 18px);
}

.tel-no {
  font-size: clamp(19px, 1.354vw, 26px);
}

.fvIcon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 15px;
}

.fvIcon .fvIcon__item {
  margin-right: 20px;
}

.fvIcon .fvIcon__item:last-of-type {
  margin-right: 0;
}

.fvAddress {
  position: absolute;
  top: 100px;
  right: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  transition: all 0.3s;
  z-index: 8;
}

.fvAddress.is-disappear {
  position: fixed;
  color: #000000;
 /* transition: all 1s;*/
  transition: all 0s;
  z-index: 9999;
  opacity: 0;
}

.fvAddress__tel {
  font-size: clamp(15px, 0.93vw, 18px);
}

/*ページトップボタン*/
.for-page-top {
  background-color: rgba(0, 0, 0, 0.75);
  width: 50px;
  height: 50px;
  right: 25px;
  bottom: 25px;
  position: fixed;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

.for-page-top::after {
  content: "↑";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  color: #fff;
}

.for-page-top.appear {
  opacity: 1;
  pointer-events: visible;
  cursor: pointer;
  transition: all 0.5s;
}


/*--------- 見出し ----------*/
.bl-largeTitle-ja {
  font-size: clamp(30px, 2.08vw, 40px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 13px;
}

.bl-largeTitle-en {
  text-align: center;
  color: #045591;
  margin-bottom: 60px;
}

.bl-middleTitle-ja {
  font-size: clamp(22.5px, 1.56vw, 30px);
  font-weight: 500;
  line-height: 1;
  padding-left: 58px;
  padding-right: 58px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 92%;
  width: fit-content;
  position: relative;
  color: #045591;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
}

.bl-middleTitle-ja::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 50px;
  /*  background-color: #045591;*/
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(35deg);
}

.bl-middleTitle-ja::after {
  content: "";
  position: absolute;
  height: 50px;
  width: 2px;
  /*  background-color: #045591;*/
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(35deg);
}

.bl-smallTitle-ja {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.75;
}

/*--------- ボタン ----------*/
.bl-btn {
  /*background-color: #999329;*/
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .bl-btn:hover {
    filter: brightness(1.1);
    transition: all 0.3s;
  }
}

.bl-btn a {
  display: block;
  width: clamp(230px, 20.8333vw, 300px);
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  line-height: 1;
}

.bl-btn__page-top {
  padding-left: 30px;
  margin-bottom: 10px;
  position: relative;
}

.bl-btn__page-top::after {
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f30b";
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #ffffff;
  transition: all 0.3s;
}

@media screen and (min-width: 768px) {
  .bl-btn__page-top:hover::after {
    right: 10px;
    transition: all 0.3s;
  }
}

.bl-btn__under {
  margin: 0 auto;
  text-align: center;
}

/*----- 画像サイズ調整 -----*/
.img-size-adjust {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.img-size-adjust img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

section {
  /* margin-top: 100px;*/
}

/*------ トップロゴ ------*/
.fvLogo {
  position: absolute;
  font-size: clamp(28px, 1.875vw, 36px);
  font-weight: 700;
  top: 40px;
  left: 50px;
  line-height: 1.26;
  z-index: 9;
  color: #fff;
}

.fvLogo.is-disappear {
  opacity: 1;
}

.logo__size-s {
  font-size: clamp(13px, 0.88vw, 17px);
  font-weight: 700;
  padding-left: 5px;
  vertical-align: middle;
}

/*------------------------
js
-------------------------*/

.is-filter {
  position: relative;
  transition: all .3s;
}

.is-filter::after {
  transition: all .3s;
  content: '';
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  /*background-color: rgba(0 , 0 , 0 , .5);*/
  z-index: 1;
}

.is-disappear {
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}

/*-------------------------
動き
--------------------------*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInTrigger,
.fadeUpTrigger {
  opacity: 0;
}

.under-fv {
  margin-top: 0;
}


.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

/*-------------------------
下層ページ共通
--------------------------*/
/*下層メイン画像*/
.under-fvImg {
  width: 100%;
  padding-top: 26%;
  position: relative;
  /*margin-bottom: 100px;*/
}

/*下層ページ内リンク*/

.under-pageLink {
  margin-top: 60px;
}

.under-pageLink-list {
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}

.under-pageLink-list__item {
  width: calc(25% - 15px);
  margin-right: clamp(15px, 1.04vw, 20px);
  border: 1px solid #000;
  margin-bottom: clamp(15px, 1.04vw, 20px);
  transition: all .3s;
}

@media screen and (min-width: 768px) {
  .under-pageLink-list__item:hover {
    transition: all .3s;
    opacity: .5;
  }
}

.under-pageLink-list__item a {
  position: relative;
  width: 100%;
  height: 100%;
  padding: clamp(15px, 1.04vw, 20px) clamp(15px, 1.04vw, 20px) clamp(15px, 1.04vw, 20px) 10px;
  display: block;
  line-height: 1;
  font-size: max(.9vw, 15px);
  transition: all .3s;
}

.under-pageLink-list__item a::after {
  position: absolute;
  content: '';
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f107";
  font-size: max(.9vw, 14px);
  top: 50%;
  right: min(3.125vw, 27px);
  transform: translate(100%, -50%);
}

.under-pageLink .under-pageLink-list__item:nth-child(4n) {
  margin-right: 0;
}

/*------------------------
レスポンシブ
-------------------------*/
/* 768px~ */
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  .none-tab {
    display: block;
  }

  .tab {
    display: none;
  }
}

@media screen and (max-width: 1279px) {
  .tab {
    display: block;
  }

  .none-tab {
    display: none;
  }


  .under-pageLink-list__item {
    width: calc(33% - 7px);
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .under-pageLink-list .under-pageLink-list__item:nth-of-type(4n) {
    margin-right: 10px;
  }

  .under-pageLink-list .under-pageLink-list__item:nth-of-type(3n) {
    margin-right: 0;
  }


  .under-pageLink-list__item a::after {
    right: 20px;
  }
}

@media screen and (max-width: 767.9px) {
  body {
    font-size: clamp(14px, 3.46vw, 26px);
    letter-spacing: 0.05em;
  }

  .inner-content {}

  .inner-w {
    width: 89.3333%;
  }

  .inner-n {
    width: 89.3333%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  /*--------- 見出し ----------*/

  .bl-largeTitle-ja {
    font-size: clamp(20px, 5.333vw, 40px);
  }

  .bl-largeTitle-en {
    font-size: clamp(17px, 3.066vw, 23px);
  }

  .bl-middleTitle-ja {
    font-size: clamp(21px, 4.8vw, 36px);
    padding-left: max(8.93vw, 33px);
    padding-right: max(8.93vw, 33px);
    margin: max(6.66vw, 25px) auto;
  }

  .bl-middleTitle-ja::before {
    width: 1px;
    height: max(8vw, 30px);
  }

  .bl-middleTitle-ja::after {
    width: 1px;
    height: max(8vw, 30px);
    left: unset;
    transform: translateY(-50%) rotate(35deg);
    right: 0;
  }

  .bl-smallTitle-ja {
    font-size: clamp(18px, 4vw, 30px);
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }

  /*--------- ボタン ----------*/

  .bl-btn a {
    padding-top: max(3.33vw, 16px);
    padding-bottom: max(3.333vw, 16px);
    /*width: 66vw;*/
  }

  .bl-btn__page-top {
    padding-left: 38px;
    margin: 0 auto;
  }

  .bl-btn__page-top {
    padding-left: 38px;
  }


  .fvAddress {
    display: none;
  }

  .fvLogo {
    font-size: max(5vw, 15px);
    top: 40px;
    left: 5.3333%;
    font-weight: 700;
  }

  .fvLogo.is-disappear {
    opacity: 0;
  }

  .logo__size-s {
    font-size: clamp(10px, 0.88vw, 17px);
  }

  /*下層ページ内リンク*/

  .under-pageLink {
    margin-top: 60px;
  }

  .under-pageLink-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    margin: 0 auto;
  }

  .under-pageLink-list__item {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 10px;
  }


  .under-pageLink-list__item a {
    padding: 15px 15px 15px 10px;
    font-size: clamp(13px, 2.67vw, 20px);
  }

  .under-pageLink-list .under-pageLink-list__item:nth-of-type(3n) {
    margin-right: 10px;
  }

  .under-pageLink-list .under-pageLink-list__item:nth-of-type(2n) {
    margin-right: 0;
  }

  .under-pageLink .under-pageLink-list__item:nth-child(4n) {
    margin-right: 0;
  }

  .under-pageLink-list__item a::after {
    right: 20px;
  }

}



@media screen and (max-width: 1024px) {
  .under-fvImg {
    padding-top: 50%;
    height: 40vh;
  /*  margin-bottom: 50px;*/
  }


  section {
    margin-top: 50px;
  }

  /*ページトップボタン*/
  .for-page-top {
    width: 40px;
    height: 40px;
    right: 4.333vw;
    bottom: 18.933vw;
  }

  .for-page-top::after {
    font-size: 20px;
  }
}
.thanks__txt {
  width: calc(70% - 10.41vw);
  margin:30px auto 60px auto;
}
@media screen and (max-width: 767.9px){
  .thanks__txt {
    width: 89.333%;
    margin: max(6.66vw, 25px) auto max(6.66vw, 25px);
    text-align: left;
  }
  }