/*==================================================
　カスタムプロパティ
===================================*/
:root {
  --accent-color: #eec362;
  --accent-color-for-shadow: rgba(233, 188, 100, 1);
  --main-color: #fff;
  --base-color: #253364;
  --link-color: #8aa3fc;
  --content-color: rgba(0, 0, 0, 0.5);
  --footer-color: #222;
}

/*==================================================
　ナビゲーションメニュー
===================================*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: var(--base-color);
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 0.9;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
  width: 80%;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
  width: 100%;
  border-bottom: #fff 1px solid;
}

#g-nav li:first-child {
  border-top: #fff 1px solid;
}

#g-nav li a {
  color: var(--main-color);
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  text-decoration: none;
  padding: 25px 16px;
  display: block;
  letter-spacing: 0.1em;
}

.g-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.g-nav-item-en {
  font-size: 18px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

@media screen and (min-width: 930px) {
  .openbtn1 {
    display: none;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*==================================================
　ヘッダメニュー
===================================*/
.hd-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 30px #fff;
  /* background-color: #ffffff;
  border: var(--main-color) solid;
  border-radius: 0px 0px 8px 8px;
  border-width: 0px 2px 2px 2px;
  -webkit-border-radius: 0px 0px 8px 8px;
  -moz-border-radius: 0px 0px 8px 8px; */
}

@media screen and (max-width: 930px) {
  .hd-main {
    border: none;
  }
  header #gnavi {
    display: none;
  }
}

header.child {
  position: relative;
}

header #gnavi > ul {
  display: flex;
  justify-content: start;
  margin: auto;
  padding: 0 20px 0 20px;
  height: 100%;
}

header #gnavi > ul > li {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 15px 15px 15px;
  position: relative;
}

@media screen and (max-width: 930px) {
  header.child {
    position: absolute;
  }
}

/*==================================================
　ヘッダメニューのアンダーライン
===================================*/
header #gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: var(--main-color);
  /* text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.5); */
  font-family: "Kumbh Sans", sans-serif;
  font-size: 15px;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}

header #gnavi li.current a,
header #gnavi li a:hover {
  color: var(--main-color);
  /* text-shadow: 0px 0px 20px var(--accent-color-for-shadow); */
}

header #gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: var(--main-color);
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}

/*現在地とhoverの設定*/
header #gnavi li.current a::after,
header #gnavi li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}

.fa,
.fas {
  font-weight: 900;
}
.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}
.fa,
.fab,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

/*-------------------------------------------
Mainvisual
-------------------------------------------*/
#mainvisual {
  position: relative;
  z-index: -2;
}
#mainvisual img {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* 横幅は画面サイズにあわせて伸縮します */
}

img.minlab-logo {
  width: 200px !important;
  height: 50px !important;
  object-fit: fill !important;
}

#maintitle {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

#mainvisual p {
  font-family: "Kaisei Decol", serif;
  text-align: center;
  font-size: 20px;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

#mainvisual h1 {
  font-family: "Kaisei Decol", serif;
  font-size: 65px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-shadow: 0 0 30px #fff;
}

#mainvisual h2 {
  font-family: "Kaisei Decol", serif;
  font-size: 25px;
  letter-spacing: 0.1em;
  text-shadow: 0 0 30px #fff;
}

.sub-theme {
  width: 400px;
}

@media screen and (max-width: 930px) {
  #maintitle {
    padding-right: 0;
  }
  #mainvisual img {
    width: 100%;
  }
  #mainvisual p {
    margin-top: 1rem;
    font-size: 18px;
  }
  #mainvisual h1 {
    font-size: 45px;
    letter-spacing: 0.05em;
  }
  #mainvisual h2 {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
  img.minlab-logo {
    width: 150px !important;
    height: 50px !important;
  }
  .sub-theme {
    width: 300px;
  }
}

@media screen and (max-width: 470px) {
  #mainvisual h1 {
    font-size: 35px;
    letter-spacing: 0.01em;
  }
  #mainvisual h2 {
    font-size: 15px;
    letter-spacing: 0.01em;
  }
  #mainvisual p {
    font-size: 16px;
  }
  .sub-theme {
    width: 250px;
  }
}

.main-title {
  max-height: 200px;
  padding-right: 10px;
  margin-bottom: 20px;
}

a.bnr_now {
  position: absolute;
  left: 7vw;
  bottom: 25%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  z-index: 1;
}

a.bnr_now {
  border-radius: 50%;
  transition: 0.3s;
}

a.bnr_now img {
  max-width: 100%;
  height: auto !important;
}

#mainvisual .spring-announce {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px;
  text-align: center;
  width: 100%;
  bottom: 0;
  display: block;
  z-index: 0;
}

#mainvisual .spring-announce h3 {
  font-size: 28px;
  font-family: "Kaisei Decol", serif;
  color: var(--accent-color);
  font-weight: bold;
  margin: 15px 10px;
  letter-spacing: 0.2em;
}

#mainvisual .spring-announce h3 span {
  display: inline-block;
}

#mainvisual .spring-announce p {
  font-size: 16px;
  font-family: "Yu Gothic", "YuGothic", "Roboto", "Helvetica Neue",
    "Hiragino Kaku Gothic Pro", "Meiryo", "Arial", "sans-serif";
  line-height: 2;
  letter-spacing: 0.2em;
  margin: 0;
}

#mainvisual .spring-announce span {
  display: inline-block;
}

@media screen and (max-width: 930px) {
  a.bnr_now {
    width: 130px;
    height: 130px;
    top: auto;
    bottom: 10vh;
    left: 10vw;
  }

  #mainvisual .spring-announce {
    right: auto;
    width: 100%;
  }

  #mainvisual .spring-announce h3 {
    font-size: 20px;
    line-height: 1.5;
  }

  #mainvisual .spring-announce p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*==================================================
event-theme
===================================*/

.event-theme {
  width: 100%;
  padding: 40px;
  letter-spacing: 0.08;
  line-height: 2.7;
  text-align: center;
}

.event-theme p {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 2.7;
}

@media screen and (max-width: 930px) {
  .event-theme {
    padding: 30px;
  }
  .event-theme p {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}

/*==================================================
common
===================================*/

.content-wrap {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  margin: 20px auto;
}

.section-title img {
  height: 40px;
}

.section-title h2 {
  font-size: 24px;
  font-family: "Kumbh Sans", sans-serif;
  letter-spacing: 0.2em;
}

.section-content {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  padding: 30px;
}

.section-content p,
.black-content p {
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ボタンのスタイル */
.buttonOutlineGradient {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  height: 45px;
  padding: 2px;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
  overflow-wrap: anywhere;
  background: linear-gradient(135deg, #fff, #15a1cc);
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

.buttonOutlineGradient::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, #fff, #15a1cc);
  filter: blur(8px);
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
  opacity: 0;
}

.buttonOutlineGradient_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #000;
  border-radius: 32px; /* (buttonの高さ / 2) の値 */
}

@media (any-hover: hover) {
  .buttonOutlineGradient::before {
    transition: opacity 0.2s;
    will-change: filter;
  }

  .buttonOutlineGradient:hover::before {
    opacity: 1;
  }
}

.black-content {
  width: 80%;
  background-color: var(--content-color);
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
}

a {
  color: var(--link-color);
  cursor: pointer;
}

@media screen and (max-width: 930px) {
  .section-content {
    width: 90%;
    padding: 0px;
    padding-bottom: 30px;
  }
  .black-content {
    width: 90%;
    padding-bottom: 30px;
  }
}

/*==================================================
news
===================================*/

.news-list {
  list-style: none outside;
}

.news-list .item {
  border-bottom: #fff 1px solid;
}

.news-list .item a {
  display: flex;
  flex-wrap: nowrap;
  text-decoration: none;
  color: var(--main-color);
  padding: 30px 10px;
  align-items: center;
}

.news-list .item .date {
  margin: 0;
  min-width: 100px;
  font-family: "Kumbh Sans", sans-serif;
  letter-spacing: 0.05em;
  padding: 0 10px 0 0;
}

.title {
  line-height: 1.5;
}

.news-list .item .date {
  flex: 0 0 20%;
}

.news-list .item .title {
  margin: 0;
}

.news-list .item a:hover .title {
  opacity: 0.8;
}

@media screen and (max-width: 930px) {
  .news-list .item a {
    flex-wrap: wrap;
  }
  .news-list .item .date {
    flex: 0 0 100%;
  }
  .news-list .item .title {
    flex: 0 0 100%;
  }
}
/*==================================================
カレンダー
===================================*/
.calendar-wrap h3 {
  font-family: "Kumbh Sans", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.calendar-wrap table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  font-family: "Kumbh Sans", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 20px;
  table-layout: fixed;
}

td.on {
  background-image: url(../img/star-gold.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #333;
}

td.special {
  background-image: url(../img/star-lightcoral.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  color: #333;
}

.star-color-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.star-item {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 10px;
  font-size: 13px;
}

.star-item img {
  width: 20px;
  height: 20px;
}

.calendar-wrap tr {
  border-top: #fff solid 1px;
}

.calendar-wrap tr:first-child {
  border-top: 0;
}

.calendar-wrap th:first-child {
  border-left: 0;
}

.calendar-wrap td:first-child {
  border-left: 0;
}

.calendar-wrap td,
.calendar-wrap th {
  font-weight: normal;
  border-left: #fff solid 1px;
}

.calendar-wrap th {
  padding: 0.5em 1em;
}

.calendar-wrap td {
  padding: 1.3em 1em 0.9em 1em;
}

@media screen and (max-width: 930px) {
  .calendar-wrap table {
    font-size: 13px;
    letter-spacing: 0;
  }
  .calendar-wrap th {
    padding: 0;
    font-size: 10px;
  }
  .calendar-wrap td {
    padding: 1.3em 0 0.9em 0;
  }
}

/*==================================================
プラン
===================================*/
.plan-info p {
  margin-bottom: 20px;
}

.plan-info dl {
  line-height: 2;
}

.plan-info dd {
  margin-left: 2em;
}

.plan-info dt {
  display: flex;
  align-items: center; /* 垂直中心 */
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}

.plan-info dt:before {
  border-top: 1px solid;
  content: "";
  width: 1em; /* 線の長さ */
}
.plan-info dt:before {
  margin-right: 0.5em; /* 文字の右隣 */
}

.high-quality-plan-wrap {
  text-align: center;
}

.high-quality-plan-wrap h3 {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 40px;
}

.special-plan-title h2 {
  color: #fff100;
}

.compare-img {
  margin-top: 20px;
  width: 100%;
}

/*==================================================
infomation
===================================*/

.info-table-wrap table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.info-table-wrap tr {
  border-top: #fff solid 1px;
}

.info-table-wrap tr:first-child {
  border-top: 0;
}

.info-table-wrap th {
  font-weight: normal;
  border-right: #fff solid 1px;
  width: 20%;
  min-width: 125px;
}

.info-table-wrap td {
  text-align: left;
}

.info-table-wrap td,
.info-table-wrap th {
  padding: 3em 2em;
}

.info-table-wrap span {
  font-size: 12px;
  line-height: 1.2;
}

@media screen and (max-width: 930px) {
  .info-table-wrap th {
    width: 15%;
    min-width: 100px;
  }

  .info-table-wrap td,
  .info-table-wrap th {
    padding: 3em 1em;
  }
}
/*==================================================
Access
===================================*/

.googleMap {
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

.googleMap iframe {
  filter: invert(100%) hue-rotate(-180deg);
  -webkit-filter: invert(100%) hue-rotate(-180deg);
}

.guide-map img {
  width: 100%;
  margin-bottom: 40px;
}

/*==================================================
SNS-Share
===================================*/
.sns-share {
  margin-top: 40px;
}
.sns-share h2 {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.sns-btn-area {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  justify-content: space-between;
}

@media screen and (max-width: 930px) {
  .sns-btn-area {
    width: 80%;
  }
}

.sns-share a {
  display: flex;
  color: #333;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

/*==================================================
cooperation
===================================*/

.cooperation-list {
  text-align: center;
  padding: 0;
}

.cooperation-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
}

.cooperation-list li {
  flex: 0 0 50%;
  margin-top: 20px;
}

.cooperation-list a {
  color: #fff;
}

.company-logo {
  display: flex;
  height: 100px;
  justify-content: center;
  background-color: #fff;
  margin: 20px;
  padding: 10px 0;
}
.company-logo_yamaboshi{
object-fit: contain;
}

@media screen and (max-width: 930px) {
  .cooperation-list li {
    flex: 0 0 100%;
    margin-top: 20px;
  }
}

.cooperation-list img {
  width: 70%;
  background-color: #fff;
}

.cooperation-list p {
  margin-top: 20px;
}

/*==================================================
スライダーのためのcss
===================================*/

.slider {
  width: 100%;
  margin: 20px auto;
  z-index: 1;
}

.slider img {
  width: 40vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}
@media screen and (max-width: 930px) {
  .slider img {
    width: 60vw;
  }
}

.slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin: 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff; /*矢印の色*/
  border-right: 2px solid #fff; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  border: none;
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  padding: 0;
  display: block;
  border-radius: 50%;
  background: #aaa; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #fff; /*ドットボタンの現在地表示の色*/
}

/*==================================================
　footer
===================================*/
footer {
  background-color: var(--footer-color);
  color: var(--main-color);
  opacity: 0.8;
  clear: both;
  width: 100%;
  display: block;
  margin-top: 60px;
  padding-top: 40px;
}

.footer-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer-wrap {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.f-logo,
.f-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 930px) {
  .f-logo {
    text-align: center;
    height: 100px;
    flex: 0 0 100%;
  }

  .f-nav {
    display: none;
  }
}

.f-nav li,
.f-nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 15px 15px 15px 15px;
  position: relative;
}

.f-nav li a {
  position: relative;
  color: var(--main-color);
  /* text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.5); */
  font-family: "Kumbh Sans", sans-serif;
  font-size: 13px;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.2em;
  transition: all 0.3s;
}

address {
  clear: both;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  padding-top: 60px;
  padding-bottom: 50px;
  text-align: center;
  letter-spacing: 1px;
}

#footer-title {
  margin-left: auto;
  margin-right: auto;
}

#footer-title img {
  height: 50px;
}

#footer-title h1 {
  font-family: "Kaisei Decol", serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

#footer-title h2 {
  font-family: "Kaisei Decol", serif;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.f-btn {
  height: 50px;
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.f-btn a {
  border-radius: 4px;
  padding: 10px 40px 10px 40px;
}

.f-btn a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 930px) {
  .f-btn {
    display: none;
  }
}

/*==================================================
　title
===================================*/
.child-title {
  display: flex;
  height: 100px;
  text-align: center;
  align-items: center;
}

.child-title-wrap {
  margin-left: auto;
  margin-right: auto;
}

.child-title-wrap h1 {
  font-size: 60px;
  font-family: "Kumbh Sans", sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.child-title-wrap h2 {
  font-size: 15px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 930px) {
  .child-title {
    height: 140px;
    padding-top: 40px;
  }
}
