@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;
}
a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

a:hover {
  opacity: 0.7;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  font-size: 0.8333333333vw;
}
@media screen and (min-width: 1004px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 756px) {
  html {
    font-size: 2.6666666667vw;
  }
}

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

.sp {
  display: none !important;
}

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

.Inner {
  max-width: 1004px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1980px) {
  .Inner {
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 756px) {
  .Inner {
    padding: 0 2rem;
  }
}
.Inner--min {
  max-width: 980px;
}
@media screen and (max-width: 756px) {
  .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: #999; /* 背景色 */
  /*動き*/
  transition: all 0.3s;
  background: rgb(25, 117, 195);
  background: linear-gradient(270deg, rgb(25, 117, 195) 1%, rgb(94, 180, 232) 100%);
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#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: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
#g-nav ul .Header__container__right__btn {
  background-color: #fcf065;
  margin: 0 auto;
  margin-top: 2rem;
}
#g-nav ul .Header__container__right__btn span {
  color: #06386d !important;
}

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

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

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff !important;
  padding: 2rem 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1.8rem;
  right: 1rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}
@media (max-width: 768px) {
  .openbtn {
    display: block;
  }
}

/*×に変化*/
.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%;
  background-color: #fff;
}

.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%;
  background-color: #fff;
}

/*-----スライダーのためのcss------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  padding: 0;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

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

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

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

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

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

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

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

.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
}
.Header__container {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .Header__container {
    padding: 1rem;
  }
}
.Header__container__logo {
  width: 30rem;
}
.Header__container__logo img {
  width: 100%;
}
.Header__container__right {
  display: flex;
  align-items: center;
}
.Header__container__right__menu {
  display: flex;
  align-items: center;
}
.Header__container__right__menu li a {
  text-decoration: none;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 500;
  height: auto;
  line-height: 1.4;
  padding: 1rem 1.5rem;
  text-align: center;
  width: auto;
  max-width: 100%;
  justify-content: center;
}
@media screen and (max-width: 1220px) {
  .Header__container__right__menu li a {
    font-size: 1.4rem;
    padding: 1rem 0.8rem;
  }
}
@media screen and (max-width: 1100px) {
  .Header__container__right__menu li a {
    font-size: 1.2rem;
    padding: 1rem 0.5rem;
  }
}
.Header__container__right__btn {
  height: 5rem;
  width: 23.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #0E60BC;
  border-radius: 2.5rem;
  margin-left: 2rem;
}
@media screen and (max-width: 1220px) {
  .Header__container__right__btn {
    margin-left: 1rem;
  }
}
.Header__container__right__btn span {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
  color: #fff;
}
.Header__container__right__btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url(../images/allow_white.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Header__container__right__btn span::before {
    background: url(../images/allow_blue.webp) no-repeat center/contain;
  }
}

.Fv {
  margin-top: 10rem;
  padding: 0 0;
  width: 100%;
  height: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  max-width: 100%;
}
@media (max-width: 768px) {
  .Fv {
    margin-top: 8rem;
  }
}
.Fv img {
  width: 100%;
}

.Fv__food {
  background-color: #06386d;
}
@media (max-width: 768px) {
  .Fv__food .Inner {
    padding: 0;
  }
}
.Fv__food__container {
  padding: 3.5rem 0;
}
.Fv__food__container__head {
  display: flex;
  margin-bottom: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .Fv__food__container__head {
    justify-content: space-between;
    padding: 0 1rem;
  }
}
.Fv__food__container__head li {
  font-size: 2rem;
  font-weight: 500;
  padding: 0 3.2rem;
  color: #fff;
}
@media (max-width: 768px) {
  .Fv__food__container__head li {
    font-size: 1.4rem;
    padding: 0;
  }
}
.Fv__food__container__kanou img {
  width: 100%;
}
@media (max-width: 768px) {
  .Fv__food__container__kanou img {
    transform: scale(1.7);
    margin: 1rem 0;
  }
}
.Fv__food__container__btn {
  background-color: #fcf065;
  align-content: center;
  align-items: center;
  border-radius: 1.2rem;
  box-shadow: 0.1rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  margin: 0rem 0rem 0rem 0rem;
  padding: 1.5rem 10rem 1.5rem 7rem;
  transition-duration: 300ms;
  width: auto;
  width: fit-content;
  margin: 0 auto;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .Fv__food__container__btn {
    margin-top: 2rem;
    padding: 1rem 6rem 1rem 4em;
  }
}
.Fv__food__container__btn span {
  border-radius: 1.5rem;
  color: #06386d;
  font-size: 2.4rem;
  font-weight: 700;
  height: auto;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  padding: 0rem;
  text-align: center;
  width: auto;
  max-width: 100%;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .Fv__food__container__btn span {
    font-size: 1.4rem;
  }
}
.Fv__food__container__btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -6rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/allow_blue.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Fv__food__container__btn span::before {
    width: 1.5rem;
    height: 1.5rem;
    right: -2rem;
  }
}

.Kitanai {
  background-color: #d7ddde;
}
@media (max-width: 768px) {
  .Kitanai .Inner {
    padding: 0;
  }
}
.Kitanai__container {
  padding: 18rem 0;
}
@media (max-width: 768px) {
  .Kitanai__container {
    padding: 0;
  }
}
.Kitanai__container img {
  transform: scale(1.2);
  width: 100%;
}
@media (max-width: 768px) {
  .Kitanai__container img {
    transform: scale(1);
  }
}

.Recommend {
  background: url(../images/recommend_bg.webp) no-repeat center top;
  background-size: 100% 39rem;
}
.Recommend__container {
  padding: 22rem 0 12rem 0;
}
@media (max-width: 768px) {
  .Recommend__container {
    padding: 9rem 0 4rem 0;
  }
}
.Recommend__container__title {
  border-bottom: 0.1rem solid #0e60bc;
  font-size: 6rem;
  font-weight: bold;
  color: #0e60bc;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 1rem;
  margin-bottom: 9rem;
  position: relative;
}
@media (max-width: 768px) {
  .Recommend__container__title {
    font-size: 2.4rem;
    text-align: center;
    display: inline-block;
    border: none;
    padding-bottom: 0.3rem;
    margin-bottom: 4rem;
  }
}
.Recommend__container__title span {
  font-size: 4rem;
  font-weight: bold;
  color: #0e60bc;
}
@media (max-width: 768px) {
  .Recommend__container__title span.line {
    font-size: 2.8rem;
    border-bottom: 0.1rem solid #0e60bc;
    line-height: 4rem;
  }
}
@media (max-width: 768px) {
  .Recommend__container__title span span {
    font-size: 2rem;
  }
}
.Recommend__container__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -8rem;
  transform: translateY(-120%);
  width: 30rem;
  height: 11rem;
  background: url(../images/dakarakoso.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Recommend__container__title::before {
    left: -4rem;
    transform: translateY(-100%);
    width: 12rem;
    height: 4rem;
  }
}
.Recommend__container .Title {
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .Recommend__container .Title {
    margin-bottom: 4rem;
  }
}
.Recommend__container__flex {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .Recommend__container__flex {
    flex-direction: column;
  }
}
.Recommend__container__flex__img {
  width: 37%;
}
@media (max-width: 768px) {
  .Recommend__container__flex__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.Recommend__container__flex__img img {
  width: 100%;
}
.Recommend__container__flex__text {
  width: 62%;
  padding-left: 4.3rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .Recommend__container__flex__text {
    width: 100%;
    padding-left: 0;
  }
}
.Recommend__container__flex__text p {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .Recommend__container__flex__text p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

.Title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: #06386d;
}
@media (max-width: 768px) {
  .Title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.Title span {
  font-weight: bold;
  font-size: 3.2rem;
  color: #06386d;
}
@media (max-width: 768px) {
  .Title span {
    font-size: 1.8rem;
  }
}

.Flow__container {
  padding-bottom: 14.5rem;
}
@media (max-width: 768px) {
  .Flow__container {
    padding-bottom: 6.5rem;
  }
}
.Flow__container .Title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Flow__container .Title {
    margin-bottom: 3rem;
  }
}
.Flow__container__content img {
  width: 100%;
}

.Merit__container {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .Merit__container {
    padding-bottom: 5rem;
  }
}
.Merit__container .Title {
  margin-bottom: 7.7rem;
}
@media (max-width: 768px) {
  .Merit__container .Title {
    margin-bottom: 3rem;
  }
}
.Merit__container__content .Item {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Merit__container__content .Item {
    margin-bottom: 2rem;
  }
}
.Merit__container__content .Item:last-of-type {
  margin-bottom: 0;
}

.Item {
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 3rem;
  background-origin: border-box;
  align-items: center;
  background-color: #fff;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Item {
    flex-direction: column;
    padding: 2rem;
  }
}
.Item__flex {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .Item__flex {
    flex-direction: column;
  }
}
.Item__img {
  width: 30%;
}
@media (max-width: 768px) {
  .Item__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.Item__img img {
  width: 100%;
}
.Item__text {
  width: 65%;
}
@media (max-width: 768px) {
  .Item__text {
    width: 100%;
  }
}
.Item__text h3 {
  color: #0e60bc;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Item__text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.Item__text p {
  font-size: 2rem;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .Item__text p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

.Table__container {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .Table__container {
    padding-bottom: 5rem;
  }
}
.Table__container .Title {
  margin-bottom: 6.6rem;
}
@media (max-width: 768px) {
  .Table__container .Title {
    margin-bottom: 3rem;
  }
}
.Table__container__content img {
  width: 100%;
}

.Shikamo {
  background: url(../images/shikamo_bg.webp) no-repeat center/cover;
}
.Shikamo__container {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .Shikamo__container {
    padding: 4rem 0;
  }
}
.Shikamo__container__head {
  max-width: 70rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Shikamo__container__head {
    width: 80%;
    margin-bottom: 1.5rem;
  }
}
.Shikamo__container__head img {
  width: 100%;
}
.Shikamo__container__text p {
  font-size: 2rem;
  line-height: 3rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .Shikamo__container__text p {
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: left;
  }
}

.Cv {
  background-color: #06386d;
}
.Cv__container {
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .Cv__container {
    padding: 4rem 0;
  }
}
.Cv__container__title {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Cv__container__title {
    margin-bottom: 1.5rem;
  }
}
.Cv__container__title img {
  width: 100%;
}
@media (max-width: 768px) {
  .Cv__container__title img {
    transform: scale(1.7);
    margin: 1rem 0;
  }
}
.Cv__container__h3 {
  font-weight: bold;
  font-size: 6.4rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  color: #fcf065;
  line-height: 7rem;
}
@media (max-width: 768px) {
  .Cv__container__h3 {
    font-size: 3rem;
    letter-spacing: 0;
    line-height: 3.8rem;
  }
}
.Cv__container__h3 span {
  font-size: 2.8rem;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.2rem;
}
@media (max-width: 768px) {
  .Cv__container__h3 span {
    font-size: 1.8rem;
    line-height: 2.7rem;
    font-weight: bold;
    letter-spacing: 0;
  }
}
.Cv__container__flex {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 75.3rem;
  margin: 0 auto;
}
.Cv__container__flex__img {
  width: 26.8rem;
}
.Cv__container__flex__img img {
  width: 100%;
}
.Cv__container__flex__btn {
  background-color: #fcf065;
  align-content: center;
  align-items: center;
  display: block;
  border-radius: 1.2rem;
  box-shadow: 0.1rem 0.3rem 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  margin: 0rem 0rem 0rem 0rem;
  padding: 1.5rem 5rem 1.5rem 3rem;
  transition-duration: 300ms;
  width: auto;
  margin-left: auto;
  margin-top: 3rem;
  width: 44.4rem;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .Cv__container__flex__btn {
    width: calc(100% - 4rem);
    margin: 0 auto;
    box-sizing: border-box;
    padding: 1rem 3rem 1rem 2rem;
    margin-top: 3rem;
  }
}
.Cv__container__flex__btn p {
  position: absolute;
  transform: translateY(-80%);
  background-color: #fff;
  font-size: 1.5rem;
  color: #000;
  padding: 1rem 1rem;
  border-radius: 2rem;
}
.Cv__container__flex__btn p span {
  color: #0e60bc;
  font-size: 1.5rem;
}
.Cv__container__flex__btn p span::before {
  display: none;
}
.Cv__container__flex__btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4rem;
  transform: translate(-100%, -50%);
  width: 28.9rem;
  height: 12.8rem;
  background: url(../images/hukidasi.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Cv__container__flex__btn::after {
    display: none;
  }
}
.Cv__container__flex__btn span {
  border-radius: 1.5rem;
  color: #06386d;
  font-size: 2.4rem;
  font-weight: 700;
  height: auto;
  line-height: 1.4;
  padding: 0rem;
  text-align: center;
  width: auto;
  max-width: 100%;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .Cv__container__flex__btn span {
    font-size: 1.8rem;
  }
}
.Cv__container__flex__btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -7rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/allow_blue.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Cv__container__flex__btn span::before {
    right: -2rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.Dounyuu {
  background: url(../images/dounyuu.webp) no-repeat center top/cover;
  position: relative;
}
.Dounyuu__container {
  padding: 15rem 0;
}
.Dounyuu__container__head {
  margin-bottom: 17rem;
}
.Dounyuu__container__head img {
  width: 100%;
}
.Dounyuu__container__food {
  position: relative;
}
.Dounyuu__container__food__btn {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  align-items: center;
  background: #0e60bc;
  border-radius: 3.5rem;
  box-shadow: 1px 3px 1rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  height: auto;
  justify-content: center;
  padding: 1.5rem 4rem 1.5rem;
  transition-duration: 300ms;
}
.Dounyuu__container__food__btn:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .Dounyuu__container__food__btn {
    padding: 1rem 3rem 1rem;
    bottom: 9rem;
    width: fit-content;
    box-sizing: border-box;
  }
}
.Dounyuu__container__food__btn span {
  color: #fff;
  font-size: 2.4rem;
  position: relative;
}
@media (max-width: 768px) {
  .Dounyuu__container__food__btn span {
    font-size: 1.6rem;
  }
}
.Dounyuu__container__food__btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/allow_white.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Dounyuu__container__food__btn span::before {
    width: 1rem;
    height: 1rem;
  }
}
.Dounyuu__container__food img {
  width: 100%;
}
@media (max-width: 768px) {
  .Dounyuu img {
    width: 100%;
  }
}

.Voice {
  background: url(../images/voice_bg.webp) no-repeat center top;
  background-size: 100% 31rem;
}
.Voice__container {
  padding: 11rem 0 14rem 0;
}
@media (max-width: 768px) {
  .Voice__container {
    padding: 7rem 0 7rem 0;
  }
}
.Voice__container .Title {
  margin-bottom: 13rem;
}
@media (max-width: 768px) {
  .Voice__container .Title {
    margin-bottom: 5rem;
  }
}
.Voice__container__content .Item {
  margin-bottom: 7rem;
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .Voice__container__content .Item {
    margin-bottom: 5rem;
    padding-top: 3rem;
  }
}
.Voice__container__content .Item:last-of-type {
  margin-bottom: 0;
}
.Voice__container__content .Item__01, .Voice__container__content .Item__02, .Voice__container__content .Item__03 {
  position: relative;
}
.Voice__container__content .Item__01::before, .Voice__container__content .Item__02::before, .Voice__container__content .Item__03::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  height: 6rem;
  width: fit-content;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .Voice__container__content .Item__01::before, .Voice__container__content .Item__02::before, .Voice__container__content .Item__03::before {
    height: 4.2rem;
    left: -1rem;
  }
}
.Voice__container__content .Item__01::before {
  width: 38.5rem;
  background: url(../images/voice_title_01.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Voice__container__content .Item__01::before {
    width: 21.2rem;
  }
}
.Voice__container__content .Item__02::before {
  width: 33.8rem;
  background: url(../images/voice_title_02.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Voice__container__content .Item__02::before {
    width: 18rem;
  }
}
.Voice__container__content .Item__03::before {
  width: 53.2rem;
  background: url(../images/voice_title_03.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Voice__container__content .Item__03::before {
    width: 29.2rem;
  }
}

.Support {
  background: url(../images/support_bg.webp) no-repeat center top/cover;
}
.Support__container {
  padding: 10rem 0;
}
.Support__container__title {
  margin-bottom: 6.3rem;
}
.Support__container__title img {
  width: 100%;
}
.Support__container__content img {
  width: 100%;
}
@media (max-width: 768px) {
  .Support img {
    width: 100%;
  }
}

.Yasashii {
  background: url(../images/yasasii.webp) no-repeat center right/contain;
}
@media (max-width: 768px) {
  .Yasashii {
    background: url(../images/yasasii_sp.webp) no-repeat center/cover;
  }
}
.Yasashii__container {
  padding: 7.5rem 0;
}
@media (max-width: 768px) {
  .Yasashii__container {
    padding: 4rem 0;
  }
}
.Yasashii__container__title {
  font-size: 4rem;
  line-height: 6rem;
  font-weight: bold;
  color: #06386d;
  margin-bottom: 5.3rem;
}
@media (max-width: 768px) {
  .Yasashii__container__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.Yasashii__container__dis {
  font-size: 2rem;
  line-height: 3rem;
  color: #111111;
}
@media (max-width: 768px) {
  .Yasashii__container__dis {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}

.Flow__2__container {
  padding: 9rem 0 15rem 0;
}
@media (max-width: 768px) {
  .Flow__2__container {
    padding: 4rem 0 7rem 0;
  }
}
.Flow__2__container .Title {
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .Flow__2__container .Title {
    margin-bottom: 3rem;
  }
}
.Flow__2__container__content {
  margin-bottom: 5rem;
}
.Flow__2__container__content img {
  width: 100%;
}
.Faq__container {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .Faq__container {
    padding-bottom: 5rem;
  }
}
.Faq__container .Title {
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .Faq__container .Title {
    margin-bottom: 4rem;
  }
}
.Faq__container__content .Accordion {
  background-color: #E5F1FC;
  padding: 2rem 3rem;
  border-radius: 1.2rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Faq__container__content .Accordion {
    padding: 1rem 2rem;
    margin-bottom: 2rem;
  }
}
.Faq__container__content .Accordion .Open {
  font-size: 2.4rem;
  font-weight: bold;
  color: #06386D;
  position: relative;
  line-height: 5rem;
}
@media (max-width: 768px) {
  .Faq__container__content .Accordion .Open {
    font-size: 1.4rem;
    line-height: 2.5rem;
    padding-right: 6rem;
  }
}
.Faq__container__content .Accordion .Open:after {
  content: "";
  position: absolute;
  top: 0%;
  right: 20px;
  width: 5rem;
  height: 5rem;
  transform: rotate(180deg);
  transition: all 0.5s;
  background: url(../images/faq_allow.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Faq__container__content .Accordion .Open:after {
    width: 2.5rem;
    height: 2.5rem;
    top: 0rem;
    transform: rotate(180deg);
  }
}
.Faq__container__content .Accordion .Open.close::after {
  transform: rotate(0deg) translateY(0%);
  transform-origin: center;
  transition: all 0.5s;
}
.Faq__container__content .Accordion .Open span {
  color: #284077;
  font-size: 5.7rem;
  font-family: "Concert One", sans-serif;
  line-height: 4.7rem;
  margin-right: 3rem;
  padding-bottom: 1rem;
  font-weight: 400;
}
.Faq__container__content .Accordion .Box {
  display: none; /*はじめは非表示*/
  /* padding: 3% 6% 3% 10%; */
  margin-top: 2rem;
}
.Faq__container__content .Accordion .Box p {
  /* font-size: 2.7rem; */
  /* position: relative; */
  /* line-height: 36px; */
  font-size: 2rem;
  color: #000000;
  line-height: 2.3rem;
  margin-top: 0rem;
}
@media (max-width: 768px) {
  .Faq__container__content .Accordion .Box p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}

.Form {
  background-color: #E5F1FC;
}
.Form__container {
  padding: 10rem 0;
  max-width: 80rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .Form__container {
    padding: 5rem 0;
  }
}
.Form__container .Title {
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .Form__container .Title {
    margin-bottom: 2.5rem;
  }
}
.Form__container form .Form__item {
  margin-bottom: 2rem;
}
.Form__container form .Form__item label {
  font-size: 2rem;
  line-height: 5rem;
  font-weight: 500;
  color: #06386D;
}
@media (max-width: 768px) {
  .Form__container form .Form__item label {
    font-size: 1.7rem;
    line-height: 3rem;
  }
}
.Form__container form .Form__item label span {
  color: #F84839;
  font-size: 1.6rem;
}
.Form__container form .Form__item input {
  width: 100%;
  border: 0.2rem solid #06386D;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
  padding: 1.4rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .Form__container form .Form__item input {
    font-size: 1.4rem;
    line-height: 1.8rem;
    padding: 1rem 1rem;
  }
}
.Form__container form .Form__item input::placeholder {
  color: #CDD6DD;
}
.Form__container form .Form__item textarea {
  width: 100%;
  border: 0.2rem solid #06386D;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
  height: 25rem;
  box-sizing: border-box;
  padding: 1.4rem 2rem;
  resize: none;
}
@media (max-width: 768px) {
  .Form__container form .Form__item textarea {
    height: 15rem;
  }
}
.Form__container form .Form__item textarea::placeholder {
  color: #CDD6DD;
}
.Form__container form .Form__file {
  margin-bottom: 2rem;
}
.Form__container form .Form__file__title {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
  color: #06386D;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .Form__container form .Form__file__title {
    font-size: 1.4rem;
  }
}
.Form__container form .Form__file__title span {
  font-size: 1.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .Form__container form .Form__file__title span {
    font-size: 1rem;
  }
}
.Form__container form .Form__file__dis {
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: 500;
  color: #06386D;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .Form__container form .Form__file__dis {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
.Form__container form .Form__file__img {
  width: 20rem;
  margin-bottom: 1rem;
}
.Form__container form .Form__file__img img {
  width: 100%;
}
.Form__container form .Form__file button {
  background-color: #CDD6DD;
  border: 0.2rem solid #06386D;
  border-radius: 0.5rem;
  height: 5rem;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  padding-left: 1rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .Form__container form .Form__file button {
    height: 3rem;
  }
}
.Form__container form button:disabled {
  background-color: #B0B0B0 !important; /* 薄いグレー */
  border-color: #A0A0A0;
  cursor: default !important;
  opacity: 0.6;
  transform: none;
}
.Form__container form button:disabled:hover {
  opacity: 0.6 !important;
}
.Form__container form .Form__plaivacy {
  margin-top: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Form__container form .Form__plaivacy {
    margin-bottom: 2rem;
  }
}
.Form__container form .Form__plaivacy label {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Form__container form .Form__plaivacy label input {
  appearance: auto;
  width: 2rem;
  height: 2rem;
  margin-right: 1.5rem;
}
@media (max-width: 768px) {
  .Form__container form .Form__plaivacy label input {
    margin-right: 1rem;
  }
}
.Form__container form .Form__submit__btn {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.Form__container form .Form__submit__btn button {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  color: #333333;
  display: block;
  border: none;
  padding: 1.5rem 9rem 1.5rem 6rem;
  text-align: center;
  width: auto;
  background-color: #FCF065;
  border-radius: 1.5rem;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 768px) {
  .Form__container form .Form__submit__btn button {
    font-size: 1.8rem;
  }
}
.Form__container form .Form__submit__btn button:hover {
  opacity: 0.7;
}
.Form__container form .Form__submit__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/allow_blue.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Form__container form .Form__submit__btn::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.Company {
  background-color: #06386D;
}
.Company__container {
  padding: 10rem 0 1.4rem 0;
}
@media (max-width: 768px) {
  .Company__container {
    padding: 5rem 0 1.2rem 0;
  }
}
.Company__container__logo {
  margin-bottom: 7rem;
  max-width: 39.7rem;
  margin: 0 auto;
  margin-bottom: 7rem;
}
@media (max-width: 768px) {
  .Company__container__logo {
    width: 80%;
    margin-bottom: 3.5rem;
  }
}
.Company__container__logo img {
  width: 100%;
}
.Company__container__content {
  max-width: 61.7rem;
  margin: 0 auto;
}
.Company__container__content__item {
  display: flex;
  border-bottom: 0.1rem solid #fff;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .Company__container__content__item {
    padding: 0.4rem 0;
  }
}
.Company__container__content__item__left {
  width: 25%;
}
.Company__container__content__item__left p {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #fff;
}
@media (max-width: 768px) {
  .Company__container__content__item__left p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
.Company__container__content__item__right {
  width: 75%;
}
.Company__container__content__item__right p {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #fff;
}
@media (max-width: 768px) {
  .Company__container__content__item__right p {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

.Footer {
  background-color: #06386D;
}
.Footer__container {
  padding-bottom: 9rem;
  padding-top: 3rem;
}
@media (max-width: 768px) {
  .Footer__container {
    padding-bottom: 4.5rem;
    display: flex;
    flex-direction: column-reverse;
  }
}
.Footer__container .copy {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .Footer__container .copy {
    font-size: 1.2rem;
    margin-bottom: 0;
    margin-top: 1rem;
  }
}
.Footer__container__flex {
  display: flex;
  justify-content: center;
}
.Footer__container__flex a {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .Footer__container__flex a {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
.Thanks {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .Thanks {
    margin-top: 4rem;
  }
}
.Thanks__container {
  padding: 15rem 0;
}
@media (max-width: 768px) {
  .Thanks__container {
    padding: 10rem 0;
  }
}
.Thanks__container h1 {
  font-size: 2.8rem;
  text-align: center;
  line-height: 3.6rem;
  margin-bottom: 4rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .Thanks__container h1 {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}
.Thanks__container p {
  font-size: 1.8rem;
  text-align: center;
  line-height: 3.2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Thanks__container p {
    font-size: 1.4rem;
    line-height: 2.8rem;
    margin-bottom: 3rem;
  }
}
.Thanks__container a {
  width: 30rem;
  height: 7rem;
  background-color: #0e60bc;
  color: #fff;
  text-align: center;
  line-height: 7rem;
  border-radius: 4rem;
  display: block;
  margin: 0 auto;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .Thanks__container a {
    width: 20rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.8rem;
  }
}