@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: "HannariMincho";
  src: url("/css/fonts/HannariMincho-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-family: "Noto Sans JP", serif;
  font-size: 0.8333333333vw;
}
@media screen and (min-width: 1050px) {
  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: 1050px;
  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 0.6rem;
  }
}
.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;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #999; /* 背景色 */
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  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%; /* 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: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

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

/*×に変化*/
.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%;
}

/*-----スライダーのための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 {
  padding: 2.2rem 0;
  background-color: #fff;
}
@media (max-width: 768px) {
  .Header {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.Header__container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .Header__container {
    padding: 0 1rem;
    box-sizing: border-box;
    max-width: 100%;
  }
}
.Header__container__logo {
  width: 36rem;
  text-decoration: none;
  display: block;
}
@media (max-width: 768px) {
  .Header__container__logo {
    width: 12.1rem;
  }
}
.Header__container__logo img {
  width: 100%;
}
.Header__container__btn {
  display: flex;
}
.Header__container__btn .Btn {
  margin-right: 4rem;
}
@media (max-width: 768px) {
  .Header__container__btn .Btn {
    margin-right: 1rem;
  }
}
.Header__container__btn .Btn:last-of-type {
  margin-right: 0;
}

.Btn {
  background-color: #61B6BA;
  display: block;
  width: 25rem;
  height: 7.6rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  position: relative;
}
@media (max-width: 768px) {
  .Btn {
    width: 10.7rem;
    height: 4.5rem;
  }
}
.Btn:last-of-type {
  margin-right: 0;
}
.Btn:hover {
  opacity: 0.7;
}
.Btn .big {
  color: #fff;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 2.8rem;
}
@media (max-width: 768px) {
  .Btn .big {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.Btn .min {
  color: #fff;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
}
@media (max-width: 768px) {
  .Btn .min {
    font-size: 0.9rem;
    line-height: 1.2rem;
  }
}
.Btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 2rem;
  background: url(../images/allow.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Btn::before {
    width: 0.7rem;
    height: 1.2rem;
    right: 0.5rem;
  }
}

.Title {
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 7rem;
  letter-spacing: 0.2rem;
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.17);
  margin-bottom: 4.5rem;
}
@media (max-width: 768px) {
  .Title {
    font-size: 3rem;
    line-height: 4.2rem;
    margin-bottom: 2.5rem;
  }
}
.Title span {
  font-size: 4rem;
  line-height: 3rem;
}
@media (max-width: 768px) {
  .Title span {
    font-size: 1.8rem;
    line-height: 2.6rem;
    font-weight: 600;
  }
}
.Title .min {
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 7rem;
}
@media (max-width: 768px) {
  .Title .min {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
}
.Title.Blue {
  color: #61B6BA;
}

.Fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  display: none;
}
.Fixed__container {
  display: flex;
  padding: 2rem 0;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .Fixed__container {
    padding: 1rem 0;
  }
}
.Fixed__container .Btn {
  width: 49%;
  flex-direction: row;
}
@media (max-width: 768px) {
  .Fixed__container .Btn {
    flex-direction: column;
    width: 49%;
  }
}
.Fixed__container .Btn .big {
  font-size: 3.3rem;
}
@media (max-width: 768px) {
  .Fixed__container .Btn .big {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.Fixed__container .Btn .min {
  font-size: 2.3rem;
}
@media (max-width: 768px) {
  .Fixed__container .Btn .min {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
}

.Fv {
  background: url(../images/fv_bg.webp) no-repeat center/cover;
}
@media (max-width: 768px) {
  .Fv {
    background: url(../images/fv_bg_sp.webp) no-repeat center/cover;
  }
}
.Fv__container {
  height: 84vh;
  position: relative;
}
@media (max-width: 768px) {
  .Fv__container {
    height: 50rem;
  }
}
.Fv__container__content {
  position: absolute;
  left: 0;
  top: 8rem;
  max-width: 75vh;
  width: 100%;
}
.Fv__container__content img {
  width: 100%;
}

.Fv__food {
  background-color: #61B6BA;
  padding: 6rem 0 10rem 0;
}
@media (max-width: 768px) {
  .Fv__food {
    padding: 1rem 0 4rem 0;
  }
}

.Cv {
  padding: 0.5rem;
  background-color: #fff;
}
.Cv__inner {
  border: 0.1rem solid #E8D0AA;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .Cv__inner {
    padding-bottom: 2rem;
  }
}
.Cv__inner__box {
  background: url(../images/shinnki.webp) no-repeat center/contain;
  margin: 0 auto;
  width: fit-content;
  padding: 1rem 6rem 1.5rem 6rem;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .Cv__inner__box {
    padding: 0rem 4rem 0.5rem 4rem;
  }
}
.Cv__inner__box p {
  font-size: 3rem;
  line-height: 3.8rem;
  letter-spacing: 0.02rem;
  color: #fff;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .Cv__inner__box p {
    font-size: 1.8rem;
    line-height: 3.8rem;
  }
}
.Cv__inner__head {
  margin-bottom: 1rem;
  margin-top: -1rem;
}
.Cv__inner__head__title {
  font-size: 4.4rem;
  line-height: 7rem;
  font-weight: 600;
  line-height: 3rem;
  color: #4D4747;
  text-align: center;
  letter-spacing: 0.2rem;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .Cv__inner__head__title {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 0;
  }
}
.Cv__inner__head__dis {
  color: #4D4747;
  text-align: center;
  font-size: 4.2rem;
  line-height: 7rem;
  letter-spacing: 0.2rem;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .Cv__inner__head__dis {
    font-size: 2.5rem;
    line-height: 3.8rem;
  }
}
.Cv__inner__head__dis::before, .Cv__inner__head__dis::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.7rem;
  height: 5.5rem;
}
@media (max-width: 768px) {
  .Cv__inner__head__dis::before, .Cv__inner__head__dis::after {
    width: 2.1rem;
    height: 3.2rem;
  }
}
.Cv__inner__head__dis::before {
  left: -5rem;
  background: url(../images/acc_left.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Cv__inner__head__dis::before {
    left: -3rem;
  }
}
.Cv__inner__head__dis::after {
  right: -5rem;
  background: url(../images/acc_right.webp) no-repeat center/contain;
}
@media (max-width: 768px) {
  .Cv__inner__head__dis::after {
    right: -3rem;
  }
}
.Cv__inner__main {
  max-width: 56.2rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Cv__inner__main {
    margin-bottom: 1.5rem;
  }
}
.Cv__inner__main img {
  width: 100%;
}
.Cv__inner__btn {
  display: flex;
  justify-content: space-between;
  max-width: 65rem;
  width: 100%;
  margin: 0 auto;
}
.Cv__inner__btn .Btn {
  width: 38.6rem;
  width: 48%;
}
@media (max-width: 768px) {
  .Cv__inner__btn .Btn {
    width: 48%;
  }
}

.Worry {
  background: url(../images/worry_bg.webp) no-repeat center/cover;
}
@media (max-width: 768px) {
  .Worry {
    background: url(../images/worry_bg_sp.webp) no-repeat center/cover;
  }
}
.Worry__container {
  padding: 9rem 0 7rem 0;
}
@media (max-width: 768px) {
  .Worry__container {
    padding: 4rem 1rem 5rem 1rem;
  }
}
.Worry__container__content {
  max-width: 79.6rem;
  width: 100%;
  margin: 0 auto;
}
.Worry__container__content img {
  width: 100%;
}

.Solution__container {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .Solution__container {
    padding-bottom: 4rem;
  }
}
.Solution__container__content {
  margin-top: -3rem;
}
@media (max-width: 768px) {
  .Solution__container__content {
    margin-top: -2rem;
  }
}
.Solution__container__content img {
  width: 100%;
}

.Reason {
  background-color: #61B6BA;
}
.Reason__container {
  padding: 8rem 0 10rem 0;
}
@media (max-width: 768px) {
  .Reason__container {
    padding: 4rem 0 5rem 0;
  }
}
.Reason__container__content {
  margin-bottom: 11rem;
}
@media (max-width: 768px) {
  .Reason__container__content {
    margin: 0 -0.6rem;
  }
}
.Reason__container__content__item {
  margin-bottom: 4.8rem;
}
.Reason__container__content__item img {
  width: 100%;
}

.Voice {
  background-color: #BDB298;
}
.Voice__container {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .Voice__container {
    padding: 5rem 0;
  }
}
.Voice__container__content img {
  width: 100%;
}

.Comparison {
  background-color: rgba(159, 208, 209, 0.5);
}
.Comparison__container {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .Comparison__container {
    padding: 5rem 0;
  }
}
.Comparison__container__content {
  max-width: 58.7rem;
  width: 100%;
  margin: 0 auto;
}
.Comparison__container__content img {
  width: 100%;
}

.Flow {
  background-color: #61B6BA;
}
.Flow__container {
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .Flow__container {
    padding: 5rem 0;
  }
}
.Flow__container__content {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .Flow__container__content {
    margin-bottom: 5rem;
    margin-left: -1rem;
    padding-right: 1rem;
  }
}
.Flow__container__content img {
  width: 100%;
}

.Access {
  background-color: #F7F6F2;
}
.Access__container {
  display: flex;
  justify-content: space-between;
  padding: 10rem 0;
}
@media (max-width: 768px) {
  .Access__container {
    padding: 5rem 0;
    flex-direction: column;
  }
}
.Access__container__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 47%;
  padding: 5rem 8rem;
  box-sizing: border-box;
  background-color: #fff;
}
@media (max-width: 768px) {
  .Access__container__item {
    width: 100%;
    margin-bottom: 5rem;
    padding: 3rem 3rem;
  }
}
.Access__container__item:last-of-type {
  margin-bottom: 0;
}
.Access__container__item__head__logo {
  margin-bottom: 2.2rem;
}
@media (max-width: 768px) {
  .Access__container__item__head__logo {
    margin-bottom: 3rem;
  }
}
.Access__container__item__head__logo img {
  width: 100%;
}
.Access__container__item__head__table__item {
  display: flex;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Access__container__item__head__table__item {
    margin-bottom: 3rem;
  }
}
.Access__container__item__head__table__item__left {
  width: 35%;
}
@media (max-width: 768px) {
  .Access__container__item__head__table__item__left {
    padding-top: 0.5rem;
    width: 28%;
  }
}
.Access__container__item__head__table__item__left p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #61B6BA;
}
.Access__container__item__head__table__item__right {
  width: 75%;
}
@media (max-width: 768px) {
  .Access__container__item__head__table__item__right {
    width: 72%;
  }
}
.Access__container__item__head__table__item__right p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 400;
  color: #605A5A;
}
.Access__container__item__head__table__item__right a {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1E8AF5;
  text-decoration: none;
  text-align: right;
  display: block;
  margin-top: 1rem;
}
.Access__container__item__food img {
  width: 100%;
}

.Question {
  background-color: #61B6BA;
  padding: 10rem 0 10rem 0;
}
@media (max-width: 768px) {
  .Question {
    padding: 5rem 0 5rem 0;
  }
}
.Question__container .Title {
  color: #fff;
}
.Question__container__content {
  max-width: 88.5rem;
  margin: 0 auto;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .Question__container__content {
    margin-bottom: 5rem;
  }
}
.Question__container__content .Accordion {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Question__container__content .Accordion {
    margin-bottom: 1.5rem;
  }
}
.Question__container__content .Accordion .Open {
  color: #61B6BA;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 3.8rem;
  letter-spacing: 0.05rem;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .Question__container__content .Accordion .Open {
    font-size: 1.8rem;
  }
}
.Question__container__content .Accordion .Open span {
  font-size: 2.6rem;
  color: #61B6BA;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  margin-right: 1rem;
}
.Question__container__content .Accordion .Open::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 20px;
  width: 0.3rem;
  height: 1.6rem;
  background-color: #9FCFD2;
  transform: rotate(0deg);
  transition: all 0.5s;
}
.Question__container__content .Accordion .Open::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 20px;
  width: 0.3rem;
  height: 1.6rem;
  background-color: #9FCFD2;
  /* border-top: solid 2px #707070; */
  /* border-right: solid 2px #707070; */
  transform: rotate(90deg);
  transform-origin: center;
  transition: all 0.5s;
}
.Question__container__content .Accordion .Open.close::after {
  transform: rotate(90deg);
  transform-origin: center;
  transition: all 0.5s;
}
.Question__container__content .Accordion .Box {
  display: none;
  padding-left: 3rem;
}
.Question__container__content .Accordion .Box p {
  font-size: 1.8rem;
  letter-spacing: 0.035rem;
  line-height: 3.1rem;
  font-weight: 400;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .Question__container__content .Accordion .Box p {
    font-size: 1.6rem;
  }
}

.Footer__container {
  padding: 10rem 0 10rem 0;
  width: 37.2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .Footer__container {
    padding: 5rem 3rem 5rem 3rem;
    box-sizing: border-box;
  }
}
.Footer__container__logo {
  display: block;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .Footer__container__logo {
    margin-bottom: 3rem;
  }
}
.Footer__container__logo img {
  width: 100%;
}
.Footer__container__menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Footer__container__menu {
    margin-bottom: 1.5rem;
  }
}
.Footer__container__menu a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
  text-decoration: none;
  color: #61B6BA;
}
@media (max-width: 768px) {
  .Footer__container__menu a {
    font-size: 1.6rem;
  }
}
.Footer__container__menu a:hover {
  opacity: 0.7;
}
.Footer__container__copy {
  font-size: 1.5rem;
  line-height: 3rem;
  font-weight: 500;
  color: #4D4747;
  text-align: center;
}
@media (max-width: 768px) {
  .Footer__container__copy {
    font-size: 1.3rem;
  }
}

.Select {
  background-color: #F7F6F2;
}
.Select__container {
  padding: 9rem 0;
}
@media (max-width: 768px) {
  .Select__container {
    padding: 5rem 0;
  }
}
.Select__container .Title {
  color: #4D4747;
  margin-bottom: 3.2rem;
}
.Select__container__content__menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Select__container__content__menu {
    margin-bottom: 2rem;
  }
}
.Select__container__content__menu__box {
  width: 46%;
  text-decoration: none;
  border: 0.2rem solid #61B6BA;
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0.8rem;
  position: relative;
  padding: 5rem 3rem 10rem 3rem;
}
@media (max-width: 768px) {
  .Select__container__content__menu__box {
    padding: 2rem 1rem 5rem 1rem;
    width: 49%;
  }
}
.Select__container__content__menu__box__ttl {
  font-size: 2.6rem;
  line-height: 2.1rem;
  color: #61B6BA;
  text-align: center;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Select__container__content__menu__box__ttl {
    font-size: 2rem;
    line-height: 2.1rem;
  }
}
.Select__container__content__menu__box__img {
  margin-bottom: 1rem;
}
.Select__container__content__menu__box__img img {
  width: 100%;
}
.Select__container__content__menu__box__dis {
  font-size: 1.8rem;
  line-height: 3.4rem;
  font-weight: 400;
  color: #61B6BA;
  text-align: center;
  margin-bottom: 2.2rem;
}
@media (max-width: 768px) {
  .Select__container__content__menu__box__dis {
    line-height: 2.1rem;
    font-size: 1.3rem;
  }
}
.Select__container__content__menu__box__allow {
  width: 6.2rem;
  height: 6.2rem;
  bottom: 3rem;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .Select__container__content__menu__box__allow {
    width: 5.2rem;
    height: 5.2rem;
    bottom: 1rem;
  }
}
.Select__container__content__menu__box__allow img {
  width: 100%;
}
.Select__container__content__box {
  border-radius: 0.8rem;
  border: 0.2rem solid #61B6BA;
  background-color: #fff;
  padding: 8rem 8rem;
}
@media (max-width: 768px) {
  .Select__container__content__box {
    padding: 4rem 1rem;
  }
}
.Select__container__content__box__ttl {
  font-size: 4.4rem;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  line-height: 3.1rem;
  color: #61B6BA;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__ttl {
    margin-bottom: 1rem;
    font-size: 3rem;
  }
}
.Select__container__content__box__img {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__img {
    margin-bottom: 0;
  }
}
.Select__container__content__box__img img {
  width: 100%;
}
.Select__container__content__box__dis {
  font-size: 1.8rem;
  line-height: 3.4rem;
  font-weight: bold;
  text-align: center;
  color: #4D4747;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__dis {
    font-size: 1.5rem;
    line-height: 2.8rem;
    margin-bottom: 3rem;
  }
}
.Select__container__content__box__sub {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 3rem;
  background-color: #61B6BA;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  width: 78%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__sub {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.Select__container__content__box__recommend {
  width: 78%;
  margin: 0 auto;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__recommend {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.Select__container__content__box__recommend img {
  width: 100%;
}
.Select__container__content__box__photo {
  width: 78%;
  margin: 0 auto;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__photo {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.Select__container__content__box__photo:last-of-type {
  margin-bottom: 0;
}
.Select__container__content__box__photo__img {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__photo__img {
    margin-bottom: 2rem;
  }
}
.Select__container__content__box__photo__img img {
  width: 100%;
}
.Select__container__content__box__photo__table {
  display: flex;
}
@media (max-width: 768px) {
  .Select__container__content__box__photo__table {
    flex-direction: column;
  }
}
.Select__container__content__box__photo__table__wrap {
  padding-right: 3rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .Select__container__content__box__photo__table__wrap {
    padding-right: 0;
  }
}
.Select__container__content__box__photo__table__item {
  margin-bottom: 1.5rem;
}
.Select__container__content__box__photo__table__item__ttl {
  font-size: 2rem;
  font-weight: 500;
  color: #4D4747;
  line-height: 3.1rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__photo__table__item__ttl {
    font-size: 1.6rem;
  }
}
.Select__container__content__box__photo__table__item__dis {
  font-size: 1.8rem;
  color: #4D4747;
  line-height: 2.6rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__photo__table__item__dis {
    line-height: 2.2rem;
    font-size: 1.5rem;
  }
}
.Select__container__content__box__price__ttl {
  border: 0.1rem solid #4D4747;
  text-align: center;
  margin: 0 auto;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 3rem;
  width: 78%;
  padding: 0.3rem 6rem;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .Select__container__content__box__price__ttl {
    font-size: 1.8rem;
    width: fit-content;
  }
}
.Select__container__content__box__price__text {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__price__text {
    margin-bottom: 2rem;
  }
}
.Select__container__content__box__price__text .num {
  font-size: 6rem;
  line-height: 3.6rem;
  color: #4D4747;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
}
@media (max-width: 768px) {
  .Select__container__content__box__price__text .num {
    font-size: 4.3rem;
    line-height: 3.6rem;
  }
}
.Select__container__content__box__price__text .enn {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  line-height: 3.6rem;
  color: #4D4747;
}
@media (max-width: 768px) {
  .Select__container__content__box__price__text .enn {
    font-size: 2.7rem;
  }
}
.Select__container__content__box__price__btn {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .Select__container__content__box__price__btn {
    width: 100%;
  }
}
.Select__container__content__box__price__btn .Btn {
  height: 5.8rem;
  width: 48%;
  width: 28.6rem;
}
@media (max-width: 768px) {
  .Select__container__content__box__price__btn .Btn {
    width: 48%;
  }
}
.Select__container__content__box__price__btn .Btn .Big {
  font-size: 1.8rem;
  line-height: 2.2rem;
}
.Select__container__content__box__price__btn .Btn .min {
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.Select__container__content__box__price__btn .Btn::before {
  right: 1rem;
  width: 1.2rem;
  height: 1.2rem;
}
.Select__container__content .Cv {
  margin: 10rem 0;
}
@media (max-width: 768px) {
  .Select__container__content .Cv {
    margin: 5rem 0;
  }
}