@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  font-weight: 400;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  font-size: 10px;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  appearance: none;
}

@font-face {
  font-family: "EB Garamond";
  src: url("EBGaramond-Bold.ttf") format("truetype");
  src: url("EBGaramond-BoldItalic.ttf") format("truetype"), url("EBGaramond-ExtraBold.ttf") format("truetype"), url("EBGaramond-ExtraBoldItalic.ttf") format("truetype"), url("EBGaramond-Italic.ttf") format("truetype"), url("EBGaramond-Medium.ttf") format("truetype"), url("EBGaramond-MediumItalic.ttf") format("truetype"), url("EBGaramond-Regular.ttf") format("truetype"), url("EBGaramond-SemiBold.ttf") format("truetype"), url("EBGaramond-SemiBoldItalic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Noto Sans JP", sans-serif, "游ゴシック", "Yu Gothic" !important;
  font-size: 0.8333333333vw;
}
@media screen and (min-width: 1120px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 480px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
body {
  max-width: 1980px;
  min-width: auto;
  margin: 0 auto;
  font-size: 1.6rem;
}

.Inner {
  max-width: 1120px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1980px) {
  .Inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
  }
}
.Inner--min {
  max-width: 980px;
}
@media screen and (max-width: 480px) {
  .Inner--min {
    max-width: 100%;
    padding: 0;
  }
}

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

#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  display: block;
}

/*ナビゲーションの縦スクロール*/
#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%; /* menuの範囲 */
  left: 50%;
  transform: translate(-50%, -50%);
}

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

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #212121;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-bottom: 2.5rem;
  display: block;
  text-align: center;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #F5D96B;
  border-radius: 50%;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px; /*  線の位置*/
  height: 3px; /*  線の太さ*/
  border-radius: 2px;
  background-color: #666; /* ボタンの色*/
  width: 45%; /*  ボタンに対する線の長さ*/
}

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

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

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

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

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

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

.Header__blank {
  height: 8.5rem;
}
@media (max-width: 768px) {
  .Header__blank {
    height: 6rem;
  }
}

body, html {
  overflow-x: hidden;
}

.Header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.Header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  max-width: 190rem;
}
@media (max-width: 768px) {
  .Header__container {
    padding: 1.5rem 2rem;
  }
}
.Header__container__logo {
  width: 15.9rem;
  position: relative;
  z-index: 10000;
}
.Header__container__logo img {
  width: 100%;
}
.Header__container__menu {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .Header__container__menu {
    display: none;
  }
}
.Header__container__menu li {
  padding: 0 1rem;
  list-style: none;
}
.Header__container__menu li a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.Header__btn {
  display: block;
  background-color: #F5D96B;
  display: inline-block;
  text-decoration: none;
  background: #F5D96B; /*ボタン色*/
  border-bottom: solid 4px #C29A00;
  border-radius: 3px;
  position: relative;
  width: 20rem;
  height: 4rem;
  display: block;
  text-align: center;
  border-radius: 2rem;
  padding-right: 1rem;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .Header__btn {
    margin-left: 0;
  }
}
.Header__btn:hover {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2); /*影を小さく*/
  border-bottom: none;
  padding-bottom: 0.4rem;
}
.Header__btn span {
  color: #212121;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 4rem;
}
.Header__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/btn_allow.png) no-repeat center/contain;
}

.Footer {
  background-color: #1C2541;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .Footer {
    padding: 0.5rem 0;
  }
}
.Footer p {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .Footer p {
    font-size: 0.8rem;
  }
}

.Fix {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 100%;
  padding: 1rem 0;
  z-index: 1000;
}
.Fix .Fv__btn {
  width: 80%;
}

.Fv {
  background: url(../images/fv_bg.png) no-repeat top center/cover;
}
@media (max-width: 768px) {
  .Fv {
    height: 62rem;
    background: none;
  }
}
.Fv__img {
  display: none;
}
@media (max-width: 768px) {
  .Fv__img {
    display: block;
    width: 100%;
  }
}
.Fv__img img {
  width: 100%;
}
@media (max-width: 768px) {
  .Fv {
    position: relative;
  }
}
.Fv__container {
  width: 100%;
  padding: 4rem 0;
  padding-left: 7rem;
  display: flex;
  box-sizing: border-box;
  padding-right: 3rem;
  max-width: 170rem;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Fv__container {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.Fv__container__content {
  width: 65.7rem;
}
@media (max-width: 768px) {
  .Fv__container__content {
    width: 100%;
  }
}
.Fv__container__content__img {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Fv__container__content__img {
    display: none;
  }
}
.Fv__container__content__img img {
  width: 100%;
}
.Fv__container__content__wrap {
  display: flex;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Fv__container__content__wrap {
    display: none;
  }
}
.Fv__container__content__wrap__item {
  margin: 0 1rem;
  border-top: 0.1rem solid #fff;
  border-bottom: 0.1rem solid #fff;
  padding: 1rem 0;
  width: 33.333%;
}
@media (max-width: 768px) {
  .Fv__container__content__wrap__item {
    display: none;
  }
}
.Fv__container__content__wrap__item__img {
  width: 5.6rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Fv__container__content__wrap__item__img {
    display: none;
  }
}
.Fv__container__content__wrap__item__img img {
  width: 100%;
}
.Fv__container__content__wrap__item__text {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .Fv__container__content__wrap__item__text {
    display: none;
  }
}
.Fv__container__content__wrap__item__text span {
  font-size: 2.4rem;
  font-weight: bold;
  color: #F5D96B;
  line-height: 1.5;
}
.Fv__container__right {
  width: 18rem;
}
@media (max-width: 768px) {
  .Fv__container__right {
    display: none;
  }
}
.Fv__container__right img {
  width: 100%;
}

.Fv__btn {
  display: block;
  background-color: #F5D96B;
  display: inline-block;
  text-decoration: none;
  background: #F5D96B; /*ボタン色*/
  border-bottom: solid 4px #C29A00;
  border-radius: 3px;
  position: relative;
  width: 44.7rem;
  height: 7.7rem;
  display: block;
  text-align: center;
  border-radius: 0.8rem;
  padding-right: 1rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .Fv__btn {
    width: 90%;
    height: 5rem;
  }
}
.Fv__btn:hover {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2); /*影を小さく*/
  border-bottom: none;
  padding-bottom: 0.4rem;
}
.Fv__btn span {
  color: #212121;
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 7.7rem;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .Fv__btn span {
    line-height: 5rem;
    font-size: 1.7rem;
  }
}
.Fv__btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -4rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/icon_shiryou.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Fv__btn span::before {
    width: 1.5rem;
    height: 1.5rem;
    left: -2rem;
  }
}
.Fv__btn span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -4rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/btn_allow.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Fv__btn span::after {
    width: 1.5rem;
    height: 1.5rem;
    right: -2rem;
  }
}

.Youtube {
  background: url(../images/slick_bg.png) no-repeat center/cover;
}
.Youtube__container {
  padding: 4rem 0;
  width: 100%;
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  /*ドットナビゲーションの設定*/
}
@media (max-width: 768px) {
  .Youtube__container {
    width: 85%;
    margin: 0 auto;
  }
}
.Youtube__container .youtube__item {
  padding: 10px;
}
.Youtube__container .youtube__item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .Youtube__container .youtube__item {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.Youtube__container .youtube__item iframe {
  height: auto;
  width: 100%;
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
}
@media (max-width: 768px) {
  .Youtube__container .youtube__item iframe {
    opacity: 1;
    transform: scale(1);
  }
}
.Youtube__container .slick-center iframe {
  opacity: 1;
  transform: scale(1);
}
.Youtube__container .slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  padding: 0;
}
.Youtube__container .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.Youtube__container .slick-prev,
.Youtube__container .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  height: 4.8rem;
  width: 4.8rem;
}
.Youtube__container .slick-prev:before,
.Youtube__container .slick-next:before {
  display: none; /* デフォルトの矢印を非表示 */
}
@media (max-width: 768px) {
  .Youtube__container .slick-prev,
  .Youtube__container .slick-next {
    top: 38%;
    width: 4rem;
    height: 4rem;
  }
}
.Youtube__container .slick-prev { /*戻る矢印の位置と形状*/
  left: 16%;
  transform: rotate(0deg);
  background: url(../images/prve.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Youtube__container .slick-prev {
    left: -2rem;
  }
}
.Youtube__container .slick-next { /*次へ矢印の位置と形状*/
  right: 16%;
  transform: rotate(0deg);
  background: url(../images/next.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Youtube__container .slick-next {
    right: -2rem;
  }
}
.Youtube__container .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -20px 0 0 0;
}
.Youtube__container .slick-dots li {
  display: inline-block;
  margin: 0 1rem;
}
.Youtube__container .slick-dots button {
  color: transparent;
  outline: none;
  width: 1.3rem; /*ドットボタンのサイズ*/
  height: 1.3rem; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #AFAFAF; /*ドットボタンの色*/
}
.Youtube__container .slick-dots .slick-active button {
  background: #1C2541; /*ドットボタンの現在地表示の色*/
}

.Media {
  background-color: #1C2541;
}
.Media__container {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .Media__container {
    padding: 3rem 0;
  }
}
.Media__container .Title {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .Media__container .Title {
    margin-bottom: 3rem;
  }
}
.Media__container .media-slider li {
  padding: 0 1.3rem;
}
@media (max-width: 768px) {
  .Media__container .media-slider li {
    padding: 0 0.5rem;
  }
}

.Title h2 {
  font-size: 3.6rem;
  font-weight: bold;
  color: #FFFFFF;
  border-bottom: 0.4rem solid #fff;
  text-align: center;
  display: block;
  margin: 0 auto;
  width: fit-content;
  padding-bottom: 1rem;
  position: relative;
}
@media (max-width: 768px) {
  .Title h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
  }
}
.Title h2 .en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.05em;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 11.6rem;
  letter-spacing: 0.05em;
  width: max-content;
}
@media (max-width: 768px) {
  .Title h2 .en {
    font-size: 4.8rem;
    font-weight: bold;
  }
}
.Title h2 .min {
  font-size: 1.8rem !important;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.Title__blue h2 {
  border-bottom: 0.4rem solid #1C2541;
  color: #1C2541;
}
.Title__blue h2 .en {
  color: rgba(28, 37, 65, 0.06);
}

.About {
  position: relative;
}
.About::before {
  content: "";
  display: block;
  position: absolute;
  top: 60%;
  left: 0px;
  transform: translateY(-50%);
  width: 100%;
  height: 90rem;
  background: url(../images/about_02_bg.png) no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .About::before {
    top: 36%;
  }
}
.About__container {
  padding: 6rem 0;
}
.About__container .Title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .About__container .Title {
    margin-bottom: 2rem;
  }
}
.About__container .Title h2 .min {
  font-size: 3.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .About__container .Title h2 .min {
    font-size: 1.4rem;
  }
}
.About__container__wrap__item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .About__container__wrap__item {
    flex-direction: column;
    padding: 0 2rem;
    margin-bottom: 4rem;
  }
}
.About__container__wrap__item:last-child {
  margin-bottom: 0;
}
.About__container__wrap__item__img {
  width: 44%;
}
@media (max-width: 768px) {
  .About__container__wrap__item__img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.About__container__wrap__item__img img {
  width: 100%;
  transform: scale(1.05);
}
.About__container__wrap__item__text {
  width: 56%;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .About__container__wrap__item__text {
    width: 100%;
    padding-left: 0;
  }
}
.About__container__wrap__item__text h3 {
  border-left: 0.4rem solid #1C2541;
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .About__container__wrap__item__text h3 {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin-bottom: 1rem;
  }
}
.About__container__wrap__item__text p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .About__container__wrap__item__text p {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.About__container__wrap__item__text p .blue {
  font-size: 1.8rem;
  color: #fff;
  background: #1C2541;
  padding: 0.5rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .About__container__wrap__item__text p .blue {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.5rem;
    margin-left: 0.5rem;
  }
}
.About__container__wrap__item__text p .blue .yellow {
  color: #F5D96B;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .About__container__wrap__item__text p .blue .yellow {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 768px) {
  .About__container__wrap__item:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.About__container__wrap__item:nth-child(even) .About__container__wrap__item__text {
  padding-left: 0;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .About__container__wrap__item:nth-child(even) .About__container__wrap__item__text {
    padding-right: 0;
  }
}

.Photo__container .Title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Photo__container .Title {
    margin-bottom: 2rem;
  }
}
.Photo__container__slick li img {
  width: 100%;
  height: auto;
}

.Forte {
  background: url(../images/forte_bg.png) no-repeat center/cover;
}
.Forte__container {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .Forte__container {
    padding: 3rem 2rem;
  }
}
.Forte__container .Title {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .Forte__container .Title {
    margin-bottom: 2rem;
  }
}
.Forte__container__wrap {
  display: flex;
}
@media (max-width: 768px) {
  .Forte__container__wrap {
    flex-direction: column;
  }
}
.Forte__container__wrap .batu {
  width: 5rem;
  height: 5rem;
  margin-top: 24rem;
}
@media (max-width: 768px) {
  .Forte__container__wrap .batu {
    margin-top: 0;
    margin: 2rem auto;
  }
}
.Forte__container__wrap__item {
  width: 33.333%;
}
@media (max-width: 768px) {
  .Forte__container__wrap__item {
    width: 100%;
  }
}
.Forte__container__wrap__item__img {
  width: 100%;
  margin-bottom: 1rem;
}
.Forte__container__wrap__item__img img {
  width: 100%;
  height: auto;
}
.Forte__container__wrap__item__text h3 {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .Forte__container__wrap__item__text h3 {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    font-weight: bold;
  }
}
.Forte__container__wrap__item__text p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #fff;
}
@media (max-width: 768px) {
  .Forte__container__wrap__item__text p {
    font-size: 1.8rem;
  }
}
.Forte__container__wrap__item__text p span {
  color: #F5D96B;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .Forte__container__wrap__item__text p span {
    font-size: 1.8rem;
  }
}

.Box {
  position: relative;
  z-index: -1;
}
.Box__container {
  padding: 4rem 0;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .Box__container {
    padding: 4rem 2rem;
  }
}
.Box__container__item {
  box-shadow: 4px 4px 17px rgba(0, 0, 0, 0.25);
  display: flex;
  padding: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Box__container__item {
    padding: 1rem;
    margin-bottom: 2rem;
    flex-direction: column-reverse;
  }
}
.Box__container__item__text {
  width: 60%;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .Box__container__item__text {
    padding-right: 0rem;
    width: 100%;
  }
}
.Box__container__item__text h3 {
  border-left: 0.4rem solid #1C2541;
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Box__container__item__text h3 {
    font-size: 2.4rem;
    padding-left: 1rem;
  }
}
.Box__container__item__text p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .Box__container__item__text p {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Box__container__item__text p .blue {
  font-size: 1.8rem;
  color: #fff;
  background: #1C2541;
  padding: 0.5rem 0.5rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .Box__container__item__text p .blue {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.5rem;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
}
.Box__container__item__text p .blue .yellow {
  color: #F5D96B;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .Box__container__item__text p .blue .yellow {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Box__container__item__img {
  width: 40%;
}
@media (max-width: 768px) {
  .Box__container__item__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.Box__container__item__img img {
  width: 100%;
}

body {
  overflow-x: hidden;
}

.First {
  background: url(../images/first_bg.png) no-repeat center bottom/cover;
}
.First__container {
  padding: 5rem 0 10rem 0;
}
@media (max-width: 768px) {
  .First__container {
    padding: 3rem 2rem 5rem 2rem;
  }
}
.First__container .Title {
  margin-bottom: 3rem;
}
.First__container__ttl {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  padding-left: 2rem;
  border-left: 0.4rem solid #fff;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .First__container__ttl {
    font-size: 2.4rem;
    padding-left: 1rem;
  }
}
.First__container__content {
  margin-bottom: 3rem;
}
.First__container__content span {
  font-size: 2rem;
  color: red;
  margin-top: 2rem;
  display: block;
}
@media (max-width: 768px) {
  .First__container__content span {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.First__container__content__inner__item {
  display: flex;
}
.First__container__content__inner__item__img img {
  width: 100%;
}
.First__container__content__inner__item__number {
  border: 4px solid;
  border-image: linear-gradient(140deg, rgb(28, 37, 65) 0%, rgb(72, 95, 167) 100%) 1;
  display: flex;
  flex-direction: column;
}
.First__container__content__inner__item__number__box {
  background-color: #fff;
  border-bottom: 0.3rem solid #FAFAFA;
  padding: 0 1rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
  box-sizing: border-box;
}
.First__container__content__inner__item__number__box.logo {
  background: #1C2541;
  background: linear-gradient(140deg, rgb(28, 37, 65) 0%, rgb(72, 95, 167) 100%);
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: auto; /* 初期値: auto */
}
@media (max-width: 768px) {
  .First__container__content__inner__item__number__box.logo {
    height: 1.8rem;
  }
}
.First__container__content__inner__item__number__box.logo img {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.First__container__content__inner__item__number__box p {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .First__container__content__inner__item__number__box p {
    font-size: 1.6rem;
  }
}
.First__container__content__inner__item__number__box.big {
  background: #1C2541;
  background: linear-gradient(140deg, rgb(28, 37, 65) 0%, rgb(72, 95, 167) 100%);
  height: 3.5rem;
  flex-basis: auto; /* 初期値: auto */
}
@media (max-width: 768px) {
  .First__container__content__inner__item__number__box.big {
    height: 3rem;
  }
}
.First__container__content__inner__item__number__box.big p {
  color: #F5D96B;
  font-style: italic;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .First__container__content__inner__item__number__box.big p {
    font-size: 2rem;
  }
}
.First__container__content__inner__item__number__box:last-of-type {
  flex-basis: auto; /* 初期値: auto */
  height: 3.5rem;
}
@media (max-width: 768px) {
  .First__container__content__inner__item__number__box:last-of-type {
    height: 1.6rem;
  }
}
.First__container__content img {
  width: 100%;
}
.First__container__content__scroll {
  overflow-y: hidden !important;
}
@media (max-width: 768px) {
  .First__container__content__scroll {
    overflow-x: scroll;
    margin-right: -2rem;
  }
}
@media (max-width: 768px) {
  .First__container__content__scroll .First__container__content__inner {
    width: 68rem;
  }
}
.First__container__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .First__container__flex {
    flex-direction: column;
  }
}
.First__container__flex__item {
  background-color: #fff;
  width: 32.333%;
  padding: 2.4rem 0;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 768px) {
  .First__container__flex__item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.First__container__flex__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  background: url(../images/purasu.png) no-repeat center/contain;
  z-index: 10;
}
@media (max-width: 768px) {
  .First__container__flex__item::before {
    top: auto;
    transform: translateX(-50%);
    bottom: -3.5rem;
    left: 50%;
    right: auto;
  }
}
.First__container__flex__item:last-of-type::before {
  display: none;
}
.First__container__flex__item__img {
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  margin-bottom: 1rem;
}
.First__container__flex__item__img img {
  width: 100%;
}
.First__container__flex__item__text__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1C2541;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .First__container__flex__item__text__ttl {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
}
.First__container__flex__item__text__ttl .big {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  background-color: #F5D96B;
}
@media (max-width: 768px) {
  .First__container__flex__item__text__ttl .big {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
}
.First__container__flex__item__text p {
  color: #212121;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .First__container__flex__item__text p {
    font-size: 1.4rem;
  }
}
.First__container__flex__item__text p span {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  background-color: #F5D96B;
  font-weight: bold;
  line-height: 3rem;
}
.First__container__flex__item__text p .big {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  font-weight: bold;
}

.Comparison {
  background-color: #FAFAFA;
}
.Comparison__container {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .Comparison__container {
    padding: 4rem 0rem 4rem 2rem;
  }
}
.Comparison__container .Title {
  margin-bottom: 4rem;
}
.Comparison__container__img img {
  width: 100%;
}
@media (max-width: 768px) {
  .Comparison__container__img {
    overflow-x: scroll;
  }
}
.Comparison__container__img__inner {
  position: relative;
}
@media (max-width: 768px) {
  .Comparison__container__img__inner {
    width: 60rem;
  }
}
.Comparison__container__img__inner img {
  width: 100%;
}
.Comparison__container__img__inner__number {
  position: absolute;
  left: 16rem;
  bottom: 5rem;
}
@media (max-width: 768px) {
  .Comparison__container__img__inner__number {
    left: 8.5rem;
    bottom: 2.5rem;
  }
}
.Comparison__container__img__inner__number__text {
  font-size: 2.4rem;
  line-height: 2rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 768px) {
  .Comparison__container__img__inner__number__text {
    font-size: 1.2rem;
  }
}
.Comparison__container__img__inner__number__text span {
  background: #1C2541;
  background: linear-gradient(90deg, rgb(28, 37, 65) 0%, rgb(0, 122, 235) 100%);
  color: #fff;
  font-size: 2.4rem;
  line-height: 2rem;
  font-weight: bold;
  padding: 0 1rem;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .Comparison__container__img__inner__number__text span {
    font-size: 1.2rem;
  }
}

.Model {
  background: url(../images/model_bg.png) no-repeat top center/cover;
}
.Model__container {
  padding: 12rem 0;
}
@media (max-width: 768px) {
  .Model__container {
    padding: 8rem 2rem;
  }
}
.Model__container .Title {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .Model__container .Title {
    margin-bottom: 3rem;
  }
}
.Model__container__item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Model__container__item {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.Model__container__item__img {
  width: 45%;
}
@media (max-width: 768px) {
  .Model__container__item__img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.Model__container__item__img img {
  width: 100%;
}
.Model__container__item__text {
  width: 55%;
  padding-left: 5rem;
}
@media (max-width: 768px) {
  .Model__container__item__text {
    width: 100%;
    padding-left: 0;
  }
}
.Model__container__item__text h3 {
  color: #FFFFFF;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  line-height: 4rem;
}
@media (max-width: 768px) {
  .Model__container__item__text h3 {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}
.Model__container__item__text h3 span {
  color: #F5D96B;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Model__container__item__text h3 span {
    font-size: 2.4rem;
  }
}
.Model__container__item__text p {
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .Model__container__item__text p {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Model__container__ttl {
  border-left: 0.4rem solid #FFFFFF;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.Model__container__content {
  background-color: #fff;
}
.Model__container__content__title {
  background-color: #1C2541;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .Model__container__content__title {
    font-size: 2.4rem;
  }
}
.Model__container__content__table {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .Model__container__content__table {
    overflow-x: scroll;
    padding: 2rem 2rem;
  }
}
.Model__container__content__table__inner {
  width: 86.1rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .Model__container__content__table__inner {
    width: 52rem;
  }
}
.Model__container__content__table__inner__flex {
  display: flex;
}
.Model__container__content__table__inner__flex:nth-child(odd) {
  background-color: #FAFAFA;
}
.Model__container__content__table__inner__flex__head .Model__container__content__table__inner__flex__item:first-of-type p {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.6;
  color: #212121;
  line-height: 10rem;
}
@media (max-width: 768px) {
  .Model__container__content__table__inner__flex__head .Model__container__content__table__inner__flex__item:first-of-type p {
    font-size: 1.3rem;
    line-height: 5rem;
  }
}
.Model__container__content__table__inner__flex__item {
  flex: 1;
  height: 10rem;
}
@media (max-width: 768px) {
  .Model__container__content__table__inner__flex__item {
    height: 5rem;
  }
}
.Model__container__content__table__inner__flex__item p {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  line-height: 10rem;
}
@media (max-width: 768px) {
  .Model__container__content__table__inner__flex__item p {
    font-size: 1.3rem;
    line-height: 5rem;
  }
}
.Model__container__content__table__inner__flex__item p span {
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .Model__container__content__table__inner__flex__item p span {
    font-size: 1.7rem;
  }
}
.Model__container__content__table__inner__flex__item:last-of-type {
  border-left: 0.2rem solid #1C2541;
  border-right: 0.2rem solid #1C2541;
  box-sizing: border-box;
}
.Model__container__content__table__inner__flex__item.white {
  background-color: #1C2541;
  box-sizing: border-box;
}
.Model__container__content__table__inner__flex__item.white p {
  color: #fff;
}
.Model__container__content__table__inner__flex__item.total p {
  font-style: italic;
}
.Model__container__content__table__inner__flex__item.min p {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .Model__container__content__table__inner__flex__item.min p {
    font-size: 1rem;
  }
}
.Model__container__content__table__inner__flex.last {
  border: 0.2rem solid #1C2541;
}
.Model__container__content__sp {
  display: none;
}
@media (max-width: 768px) {
  .Model__container__content__sp {
    display: block;
  }
}
.Model__container__content__sp h3 {
  background-color: #1C2541;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 2rem 0;
}
.Model__container__content__sp__box {
  overflow-x: scroll;
  padding: 1rem 0rem 1rem 1rem;
  background-color: #fff;
}
.Model__container__content__sp__box__inner {
  width: 60rem;
}
.Model__container__content__sp__box__inner img {
  width: 100%;
}

.Voice {
  background: url(../images/voice_bg.png) no-repeat bottom center/cover;
}
.Voice__container {
  padding: 6rem 0 15rem 0;
}
@media (max-width: 768px) {
  .Voice__container {
    padding: 4rem 3rem;
  }
}
.Voice__container .Title {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .Voice__container .Title {
    margin-bottom: 3rem;
  }
}
.Voice__container__slider {
  margin-bottom: 2rem;
  /*矢印の設定*/
  /*戻る、次へ矢印の位置*/
  /*ドットナビゲーションの設定*/
}
@media (max-width: 768px) {
  .Voice__container__slider {
    height: fit-content;
  }
}
.Voice__container__slider__item {
  display: flex !important;
  align-items: center;
  background-color: #fff;
  padding: 2.6rem;
  box-sizing: border-box;
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .Voice__container__slider__item {
    flex-direction: column;
    padding: 1rem;
  }
}
.Voice__container__slider__item__img {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.Voice__container__slider__item__img img {
  width: 100%;
}
.Voice__container__slider__item__img__text {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #1C2541;
  padding: 1rem 1.6rem;
}
.Voice__container__slider__item__img__text__dis {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__img__text__dis {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.Voice__container__slider__item__img__text__name {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__img__text__name {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.Voice__container__slider__item__text {
  width: 50%;
  padding-left: 4rem;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__text {
    width: 100%;
    padding-left: 0;
  }
}
.Voice__container__slider__item__text__ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.23;
  color: #1C2541;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__text__ttl {
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
.Voice__container__slider__item__text__dis {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #212121;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__text__dis {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Voice__container__slider__item__text__dis span {
  color: #212121;
  background-color: #F5D96B;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.7;
  padding: 0 0.5rem;
}
@media (max-width: 768px) {
  .Voice__container__slider__item__text__dis span {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Voice__container__slider .slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  padding: 0;
}
.Voice__container__slider .slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.Voice__container__slider .slick-prev,
.Voice__container__slider .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  height: 4.8rem;
  width: 4.8rem;
}
@media (max-width: 768px) {
  .Voice__container__slider .slick-prev,
  .Voice__container__slider .slick-next {
    width: 3rem;
    height: 3rem;
  }
}
.Voice__container__slider .slick-prev:before,
.Voice__container__slider .slick-next:before {
  display: none; /* デフォルトの矢印を非表示 */
}
.Voice__container__slider .slick-prev { /*戻る矢印の位置と形状*/
  left: -7%;
  transform: rotate(0deg);
  background: url(../images/prve.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Voice__container__slider .slick-prev {
    left: -8%;
  }
}
.Voice__container__slider .slick-next { /*次へ矢印の位置と形状*/
  right: -7%;
  transform: rotate(0deg);
  background: url(../images/next.png) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Voice__container__slider .slick-next {
    right: -8%;
  }
}
.Voice__container__slider .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0px 0 0 0;
}
.Voice__container__slider .slick-dots li {
  display: inline-block;
  margin: 0 1rem;
}
.Voice__container__slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 1.3rem; /*ドットボタンのサイズ*/
  height: 1.3rem; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #AFAFAF; /*ドットボタンの色*/
}
@media (max-width: 768px) {
  .Voice__container__slider .slick-dots button {
    width: 1rem;
    height: 1rem;
  }
}
.Voice__container__slider .slick-dots .slick-active button {
  background: #1C2541; /*ドットボタンの現在地表示の色*/
}

.Company__container {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .Company__container {
    padding: 3rem 2rem;
  }
}
.Company__container .Title {
  margin-bottom: 2rem;
}
.Company__container__flex {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .Company__container__flex {
    flex-direction: column;
  }
}
.Company__container__flex__img {
  width: 40%;
}
@media (max-width: 768px) {
  .Company__container__flex__img {
    width: 100%;
  }
}
.Company__container__flex__img img {
  width: 100%;
  margin-bottom: 1rem;
}
.Company__container__flex__img p {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .Company__container__flex__img p {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.Company__container__flex__text {
  width: 60%;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .Company__container__flex__text {
    width: 100%;
    padding-left: 0;
  }
}
.Company__container__flex__text h3 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-left: 0.5rem solid #1C2541;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .Company__container__flex__text h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}
.Company__container__flex__text p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .Company__container__flex__text p {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Company__container__flex__text p span {
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 0.5rem;
  line-height: 2;
  background-color: #1C2541;
}
@media (max-width: 768px) {
  .Company__container__flex__text p span {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.5rem;
  }
}

.Mind__container {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .Mind__container {
    padding: 3rem 2rem;
  }
}
.Mind__container .Title {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .Mind__container .Title {
    margin-bottom: 3rem;
  }
}
.Mind__container__item {
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .Mind__container__item {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.Mind__container__item__img {
  width: 40%;
}
@media (max-width: 768px) {
  .Mind__container__item__img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.Mind__container__item__img img {
  width: 100%;
}
.Mind__container__item__text {
  width: 60%;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .Mind__container__item__text {
    width: 100%;
    padding-left: 0;
  }
}
.Mind__container__item__text .ttl {
  color: #1C2541;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Mind__container__item__text .ttl {
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
}
.Mind__container__item__text p {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #212121;
}
@media (max-width: 768px) {
  .Mind__container__item__text p {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Mind__container__item__text p span {
  color: #C1272D;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 768px) {
  .Mind__container__item__text p span {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.Mind__container__item:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .Mind__container__item:nth-child(odd) {
    flex-direction: column;
  }
}
.Mind__container__item:nth-child(odd) .Mind__container__item__text {
  padding-left: 0;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  .Mind__container__item:nth-child(odd) .Mind__container__item__text {
    padding-right: 0;
  }
}

.Info__container {
  padding: 4rem 0 8rem 0;
}
@media (max-width: 768px) {
  .Info__container {
    padding: 2rem 2rem 4rem 2rem;
  }
}
.Info__container .Title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Info__container .Title {
    margin-bottom: 2rem;
  }
}
.Info__container__flex {
  display: flex;
}
@media (max-width: 768px) {
  .Info__container__flex {
    flex-direction: column;
  }
}
.Info__container__flex__img {
  width: 45%;
}
@media (max-width: 768px) {
  .Info__container__flex__img {
    width: 100%;
  }
}
.Info__container__flex__img iframe {
  height: 100%;
  width: 100%;
}
.Info__container__flex__text {
  width: 55%;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .Info__container__flex__text {
    width: 100%;
    padding-left: 0;
  }
}
.Info__container__flex__text__item {
  border-bottom: 0.1rem solid #212121;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 1rem 0;
}
@media (max-width: 768px) {
  .Info__container__flex__text__item {
    flex-direction: column;
    padding: 1.5rem 0 0.5rem 0;
  }
}
.Info__container__flex__text__item:nth-child(1) .Info__container__flex__text__item__left p::before, .Info__container__flex__text__item:nth-child(2) .Info__container__flex__text__item__left p::before, .Info__container__flex__text__item:nth-child(3) .Info__container__flex__text__item__left p::before, .Info__container__flex__text__item:nth-child(4) .Info__container__flex__text__item__left p::before, .Info__container__flex__text__item:nth-child(5) .Info__container__flex__text__item__left p::before, .Info__container__flex__text__item:nth-child(6) .Info__container__flex__text__item__left p::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  vertical-align: middle;
  background-size: cover;
  background-repeat: no-repeat;
}
.Info__container__flex__text__item:nth-child(1) .Info__container__flex__text__item__left p::before {
  background-image: url("../images/info_01.png");
}
.Info__container__flex__text__item:nth-child(2) .Info__container__flex__text__item__left p::before {
  background-image: url("../images/info_02.png");
}
.Info__container__flex__text__item:nth-child(3) .Info__container__flex__text__item__left p::before {
  background-image: url("../images/info_03.png");
}
.Info__container__flex__text__item:nth-child(4) .Info__container__flex__text__item__left p::before {
  background-image: url("../images/info_04.png");
}
.Info__container__flex__text__item:nth-child(5) .Info__container__flex__text__item__left p::before {
  background-image: url("../images/info_05.png");
}
.Info__container__flex__text__item:nth-child(6) .Info__container__flex__text__item__left p::before {
  background-image: url("../images/info_06.png");
}
@media (max-width: 768px) {
  .Info__container__flex__text__item__left {
    margin-bottom: 1rem;
  }
}
.Info__container__flex__text__item__text p {
  color: #212121;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2.4rem;
}

.Support {
  background: url(../images/support_bg.png) no-repeat center/cover;
}
.Support__container {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .Support__container {
    padding: 3rem 2rem;
  }
}
.Support__container .Title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Support__container .Title {
    margin-bottom: 2rem;
  }
}
.Support__container__wrap {
  display: flex;
}
@media (max-width: 768px) {
  .Support__container__wrap {
    flex-direction: column;
  }
}
.Support__container__wrap__item {
  width: 33%;
}
@media (max-width: 768px) {
  .Support__container__wrap__item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.Support__container__wrap__item img {
  width: 100%;
}

.Faq__container {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .Faq__container {
    padding: 3rem 2rem;
  }
}
.Faq__container .Title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Faq__container .Title {
    margin-bottom: 2rem;
  }
}
.Faq__container__wrap .Accordion {
  border-radius: 1rem;
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 4px 4px 17px rgba(0, 0, 0, 0.25);
}
.Faq__container__wrap .Accordion .Title__open {
  background-color: #1C2541;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1rem;
  position: relative;
  text-align: left;
  cursor: pointer;
  display: flex;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .Faq__container__wrap .Accordion .Title__open {
    padding-right: 4rem;
    box-sizing: border-box;
  }
}
.Faq__container__wrap .Accordion .Title__open .text {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1rem;
  align-items: center;
  font-weight: bold;
  line-height: 3.6rem;
  width: calc(100% - 3.6rem);
}
@media (max-width: 768px) {
  .Faq__container__wrap .Accordion .Title__open .text {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.Faq__container__wrap .Accordion .Title__open::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 20px;
  width: 2rem;
  height: 2rem;
  transform: rotate(0deg);
  transition: all 0.5s;
  background: url(../images/allow.png) no-repeat center/contain;
}
.Faq__container__wrap .Accordion .Title__open.close::after {
  transform: rotate(180deg);
  transform-origin: center;
  transition: all 0.5s;
}
.Faq__container__wrap .Accordion .Box__close {
  display: none;
  background-color: #fff;
  padding: 1rem;
  box-shadow: 4px 4px 17px rgba(0, 0, 0, 0.25);
}
.Faq__container__wrap .Accordion .Box__close__inner {
  display: flex;
  justify-content: flex-start;
}
.Faq__container__wrap .Accordion .Box__close__inner p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1C2541;
  margin-top: 0;
  line-height: 3.2rem;
  padding-left: 1rem;
  width: calc(100% - 3.6rem);
}
@media (max-width: 768px) {
  .Faq__container__wrap .Accordion .Box__close__inner p {
    padding-left: 0;
  }
}

.cekru {
  color: #1C2541;
  width: 3.6rem;
  height: 3.6rem;
  text-align: center;
  line-height: 3.6rem;
  font-size: 1.6rem;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 1rem;
  border: 0.1rem solid #1C2541;
  display: block;
}

.Cv {
  background: url(../images/cv_bg.png) no-repeat center/cover;
}
.Cv__container {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .Cv__container {
    padding: 4rem 2rem;
  }
}
.Cv__container__content {
  background: #fff;
  padding: 4rem;
}
@media (max-width: 768px) {
  .Cv__container__content {
    padding: 2rem;
  }
}
.Cv__container__content__ttl {
  background: linear-gradient(169deg, #1c2541 0%, #007aeb 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  border-bottom: 0.8rem solid #1c2541;
  padding-bottom: 1rem;
  font-weight: bold;
  text-align: center;
  line-height: 5rem;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Cv__container__content__ttl {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.Cv__container__content__text {
  color: #212121;
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Cv__container__content__text {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: left;
  }
}
.Cv__container__content__text span {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 4rem;
  font-weight: bold;
  color: #fff;
  background: #1C2541;
  padding-inline-start: 0.5rem;
  background: linear-gradient(125deg, rgb(28, 37, 65) 0%, rgb(0, 122, 235) 100%);
}
@media (max-width: 768px) {
  .Cv__container__content__text span {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}