@charset "utf-8";
/* CSS Document */

/***************************************************
: style.css
***************************************************/
:root {
  --base-width: 1100px;
  --over-width-half: calc((100vw - var(--base-width)) / 2);
  --base-color: var(--black);
  --base-bg: var(--white);
  --ff: "Noto Sans JP", sans-serif;
  --icons: "Material Icons";
  --transition: 0.3s;

  --black: #323232;
  --black2: #454443;
  --white: #fff;

  --cB: #00a0ca;
  --cB2: #eff8fc;
  --cO: #f39800;
  --cV: #ea5514;
  --cG: #f7f7f7;
  --cG1: #969696;
  --cG2: #e2e2e2;
  --cE: #22ac6a;
  --cR: #c30d23;
  --cY: #ffffe3;
}

.bgBK2 {
  background: var(--black2);
}
.cB {
  color: var(--cB);
}
.bgB {
  background: var(--cB);
}
.cV {
  color: var(--cV);
}
.bgG {
  background: var(--cG);
}

.of_cover img {
  width: 100%;
  height: 100%;
}

@media (max-width: 520px) {
  :root {
    --base-width: 100%;
    --over-width-half: 5%;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-width: var(--base-width);
  max-width: 100vw;
  margin: 0 auto;
  font-size: 1.6rem;
  font-family: var(--ff);
  font-weight: 500;
  /* font-feature-settings: "palt"; */
  line-height: 1.6;
  word-break: break-all;
  color: var(--base-color);
  background-color: var(--base-bg);
}

@media (max-width: 520px) {
  body {
    font-size: 1.4rem;
  }

  main {
    width: 100vw;
    overflow: hidden;
  }
}

/**================================================== 
 section
================================================== **/

section,
article,
aside {
  position: relative;
  z-index: 0;
}

.w_base {
  width: min(90%, var(--base-width));
  margin-left: auto;
  margin-right: auto;
}

.sec-w_base {
  padding-left: var(--over-width-half);
  padding-right: var(--over-width-half);
}

/**================================================== 
 タイトル
================================================== **/
:root {
  --titAc: var(--black);
  --titAm: 0 0 40px;
  --titAta: left;
  --titAai: center;
  --titAjc: flex-start;
  --titAff: row wrap;
  --titAgap: 15px;
  --titAp: 0;
  --titAfz: 4rem;

  --titA_ic: var(--cG1);
  --titA_ifz: 1.4rem;
}

.titA {
  display: flex;
  align-items: var(--titAai);
  justify-content: var(--titAjc);
  flex-flow: var(--titAff);
  gap: var(--titAgap);
  font-family: var(--ff);
  font-size: var(--titAfz);
  font-weight: 600;
  text-align: var(--titAta);
  color: var(--titAc);
  padding: var(--titAp);
  margin: var(--titAm);
  line-height: 1.3;
}

.titA i {
  display: block;
  width: 100%;
  font-family: var(--fwebf), var(--ff);
  font-size: var(--titA_ifz);
  font-style: normal;
  color: var(--titA_ic);
  line-height: 1.3;
  font-weight: 400;
}

:root {
  --titBfz: 2rem;
  --titBc: var(--white);
  --titBm: 0 0 40px;
  --titBta: left;
  --titBp: 20px;
}

.titB {
  font-size: var(--titBfz);
  text-align: var(--titBta);
  color: var(--titBc);
  padding: var(--titBp);
  margin: var(--titBm);
  line-height: 1.5;
}

@media screen and (max-width: 520px) {
  :root {
    --titAfz: 2rem;
  }

  :root {
    --titBfz: 1.8rem;
    --titBm: 0 0 15px;
    --titBp: 10px;
  }
}

/**================================================== 
 ボタン
================================================== **/
:root {
  --btnAfz: 3rem;
  --btnAw: min(100%, 650px);
  --btnAm: 20px auto;
  --btnAp: 25px 20px;
  --btnAbg: var(--cB);
  --btnAbd: none;
  --btnAc: var(--white);
}

.btnA {
  font-size: var(--btnAfz);
  width: var(--btnAw);
  margin: var(--btnAm);
  padding: var(--btnAp);
  color: var(--btnAc);
  background: var(--btnAbg);
  border: var(--btnAbd);

  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 35px;
  align-items: center;
  text-align: center;
}

.btnA:after {
  content: "→";
  display: block;
  font-family: var(--webf);
  font-size: 2rem;
  line-height: 1;
  margin-left: 15px;
}

.btnA:hover,
a:hover .btnA {
  background-color: var(--btnAc);
  color: var(--btnAbg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btnA span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btnB {
  display: block;
  width: fit-content;
  border: 1px solid var(--black2);
  background: var(--white);
  padding: 15px 40px;
  margin: 40px 0;
}

@media screen and (max-width: 520px) {
  :root {
    --btnAfz: 1.8rem;
    --btnAw: 90%;
    --btnAp: 15px;
  }
}

/**================================================== 
 splide
================================================== **/
/**1**/
.splideLoop {
  width: 100%;
  overflow: hidden;
  margin: 75px 0;
}

/**2-4**/
.splideLR,
.splideLR2 {
  position: relative;
  padding-left: var(--over-width-half);
  margin: 70px 0 70px -20px;
}
.splideLR2 {
  padding: 0px var(--over-width-half);
}
@media screen and (max-width: 520px) {
  .splideLoop {
    margin: 30px 0;
  }

  .splideLR,
  .splideLR2 {
    position: relative;
    padding-left: var(--over-width-half);
    margin: 30px 0 30px -20px;
  }

  .splideLR2 {
    margin: 30px 0 50px;
    padding: 0px 5%;
  }
}

/* -------------------------------------
splide 矢印 / ページネーション
-------------------------------------*/
.options-customize {
  --height: 40px;
  width: 230px;
  margin: 50px 5% 0 auto;
  height: var(--height);
  position: relative;
}
/* 矢印 */
.splide__arrows.base-customize .splide__arrow {
  --size: var(--height);
  width: var(--size);
  height: var(--size);
  background: var(--black2);
  opacity: 1;
  border: 1px solid currentColor;
  transition: var(--transition);
}
.splide__arrows.base-customize .splide__arrow.splide__arrow--prev {
  left: 0;
}
.splide__arrows.base-customize .splide__arrow.splide__arrow--next {
  right: 0;
}
.splide__arrows.base-customize .splide__arrow svg {
  width: var(--size);
  height: var(--size);
  fill: var(--white);
}
.splide__arrows.base-customize .splide__arrow.splide__arrow--prev:hover,
.splide__arrows.base-customize .splide__arrow.splide__arrow--next:hover {
  background: var(--cG1);
  border-color: var(--cG1);
}
/* 数字 */
.pagination-number {
  height: var(--height);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}
/* 数字の色やサイズ調整 */
.pagination-number span {
  font-size: 1.1em;
}

@media (max-width: 520px) {
  .options-customize {
    --height: 38px;
    width: 180px;
    margin: 40px auto 0;
  }
  .splide__arrows.base-customize .splide__arrow svg {
    --size: 45px;
  }
  /* 数字 */
  .pagination-number span {
    font-size: 16px;
  }
}

/**5**/
.splideLarge {
  margin: 70px 0;
}
.splideLarge .splide__pagination {
  bottom: -1.5em;
}
.splideLarge .splide__pagination__page.is-active {
  background: #ccc;
  opacity: 1;
}

@media screen and (max-width: 520px) {
  .splideLarge {
    margin: 30px 0;
  }
}

/**================================================== 
header
================================================== **/

header {
  position: sticky;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto var(--hamburger);
  grid-template-areas: "logo menu1 nav";
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 100;
  background: var(--white);
  padding: 0;

  --hamburger: 90px;
}

header .logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  z-index: 90;
}

header .logo img {
  aspect-ratio: 229/110;
  width: 229px;
  height: auto;
}
header .menu1 {
  grid-area: menu1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
header .menu1 :is(.h-rec, .h-vist) {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  text-align: center;
  padding: 15px 40px;
  line-height: 1;
}
:is(a[class$="tel"], a[class$="rec"], a[class$="vist"], a[class$="come"]) svg {
  aspect-ratio: 1/1;
  fill: var(--white);
  width: 2em;
  height: auto;
}

header .menu1 .h-rec {
  background: var(--cB);
}

header .menu1 .h-vist {
  background: var(--cO);
}

header nav {
  grid-area: nav;
}

header nav .gnav {
  width: 100%;
  height: auto;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: var(--black2);
  color: var(--white);
  transition: var(--transition);
  /*アニメーション設定*/

  font-size: 1.2em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "ul rec"
    "ul vist"
    "ul tel"
    "ul bnr";
  align-items: start;
  justify-content: start;
  gap: 30px;
  padding: 200px var(--over-width-half) 150px;
  margin: 0;
}

.hamburger {
  position: relative;
  display: flex;
  height: var(--hamburger);
  width: var(--hamburger);
  justify-content: center;
  align-items: center;
  z-index: 90;
  background: var(--white);
}

#hamburger-check {
  display: none;
}

/**タップされる前 open**/
.hamburger span,
.hamburger span:before,
.hamburger span:after {
  content: "";
  display: block;
  height: 2px;
  width: 35px;
  border-radius: 3px;
  background-color: var(--black);
  position: absolute;
}

.hamburger span:before {
  bottom: 11px;
}

.hamburger span:after {
  top: 11px;
}

/**タップされたとき close**/
#hamburger-check:checked ~ .hamburger {
  background: var(--black2);
}

#hamburger-check:checked ~ .hamburger span {
  background-color: none;
}

#hamburger-check:checked ~ .hamburger span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: var(--white);
}

#hamburger-check:checked ~ .hamburger span::after {
  top: 0;
  transform: rotate(-45deg);
  background: var(--white);
}

#hamburger-check:checked ~ .gnav {
  left: 0;
  /*メニューを画面内へ*/
}

header nav .gnav ul {
  grid-area: ul;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  gap: 40px;
}

header nav .gnav :is(.g-rec, .g-vist) {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 15px;
  background: var(--white);
  font-size: 2rem;
  color: var(--black2);
  padding: 20px;
}
header nav .gnav :is(.g-rec, .g-vist) svg {
  fill: var(--black2);
}
header nav .gnav :is(.g-rec, .g-vist):after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

header nav .gnav .g-rec {
  grid-area: rec;
}
header nav .gnav .g-vist {
  grid-area: vist;
}
header nav .gnav .g-tel {
  grid-area: tel;
  border: 1px solid var(--white);
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
}
header nav .gnav .g-tel strong {
  font-size: 3.2rem;
  display: block;
  margin: 0 0 10px;
}

header nav .gnav .g-bnr {
  grid-area: bnr;
}

.fnav {
  display: none;
}

@media screen and (max-width: 520px) {
  header {
    --hamburger: 65px;
  }
  header .logo img {
    width: 135px;
  }
  header .menu1 {
    display: none;
  }
  .fnav {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .fnav a {
    flex: 1;
    font-size: 1.3rem;
    color: var(--white);
    text-align: center;
    padding: 5px 0 3px;
  }
  .fnav a svg {
    display: block;
    margin: 0 auto;
  }
  .fnav .f-rec {
    background: var(--cB);
  }
  .fnav .f-vist {
    background: var(--cO);
  }
  .fnav .f-tel {
    background: var(--black2);
  }

  header nav .gnav {
    display: flex;
    flex-flow: column;
    gap: 25px;
    align-items: stretch;
    width: 100%;
    padding: 80px var(--over-width-half) 15px;
    margin: 0;
    min-height: 100%;
    font-size: 1.2em;
  }
  header nav .gnav ul {
    font-size: 1.6rem;
    gap: 20px;
    text-align: center;
  }

  header nav .gnav :is(.g-rec, .g-vist) {
    font-size: 1.4rem;
  }

  header nav .gnav .g-tel {
    font-size: 0.8em;
  }

  header nav .gnav .g-tel strong {
    font-size: 2.4rem;
  }
}

/**================================================== 
 footer
================================================== **/
footer {
  background: var(--black2);
  color: var(--white);
  padding-top: 80px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
}

footer .logo img {
  width: 280px;
}

footer dl {
  line-height: 2;
  margin: 20px 0 0;
}
footer dl dt {
  font-size: 1.1em;
  margin: 0 0 5px;
}

footer .copy {
  font-size: 1.2rem;
  font-weight: 400;
  padding: 80px 25px 0;
}

@media screen and (max-width: 520px) {
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-flow: column;
    gap: 30px;
  }

  footer .logo {
    text-align: center;
  }

  footer dl {
    width: fit-content;
    margin: 0 auto;
  }
  footer .copy {
    font-size: 1.1rem;
    text-align: center;
    padding: 30px 0 0;
  }
}

.floating {
  display: none;
  position: fixed;
  right: 26px;
  bottom: 1px;
  z-index: 99998;
}
.floating .close {
  position: absolute;
  top: -12px;
  right: -12px;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 520px) {
  .floating {
    right: 15px;
    bottom: 56px;
  }
  .floating img {
    width: 40vw;
  }
  .floating .close img {
    width: 30px;
  }
}

/**================================================== 
 トグル
================================================== **/
.toggle {
  display: none;
}

.cl,
.ans {
  padding: 15px 30px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: var(--transition);
}

.cl {
  margin: 0 auto 15px;
  display: block;
  position: relative;
  background: var(--cG2);
  font-size: 2rem;
}

.cl::after {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.ans {
  height: 0;
  padding: 0;
  overflow: hidden;
}

.toggle:checked + .cl + .ans {
  /*開閉時*/
  height: auto;
  padding: 20px 0;
  transition: var(--transition);
}

.toggle:checked + .cl::after {
  content: "－";
}

@media screen and (max-width: 520px) {
  .cl,
  .ans {
    padding: 0.5em 10px 0.5em 1.5em;
  }

  .cl:before,
  .ans:before {
  }

  .cl {
    line-height: 1.5;
    font-size: 1.7rem;
  }

  .cl::after {
    right: 10px;
  }

  .ans {
    padding: 0 10px 0 1.5em;
  }

  .toggle:checked + .cl + .ans {
    padding: 5px 0 30px;
  }
}

/**================================================== 
リスト
================================================== **/

.list-numC {
  --num: 2;
  --g: 60px;
  --w: calc((100% - var(--g) * (var(--num) - 1)) / var(--num));
  display: flex;
  flex-flow: wrap;
  gap: var(--g);
  position: relative;
  z-index: 5;
}

.list-numC > * {
  width: var(--w);

  display: flex;
  flex-flow: column;
  gap: 20px;
}

.list-numC :is(figure, picture) {
  display: block;
  aspect-ratio: 532/380;
  overflow: hidden;
}

@media screen and (max-width: 520px) {
  .list-numC > * {
    gap: 15px;
  }
}

/**================================================== 
text+picture
================================================== **/

.list-flex li,
.col-flex {
  --picw: 550px;
  --g: 50px;
  display: flex;
  gap: var(--g);
}
:is(.list-flex, .col-flex) :is(picture, .pic) {
  flex: none;
  width: var(--picw);
}

@media screen and (max-width: 520px) {
  .list-flex li,
  .col-flex {
    --picw: 100%;
    --g: 30px;
    flex-flow: wrap;
  }
}

/**================================================== 
 section
================================================== **/
/**------------------------------ 
mv
 ------------------------------**/
.sec-mv {
  text-align: center;
  padding-top: 40px;
}
.f0-1 {
  font-size: 2.4rem;
}
.f0-2 {
  font-size: 5.8rem;
}
.f0-3 {
  width: fit-content;
  background: var(--black);
  color: var(--white);
  font-size: 2.2rem;
  padding: 10px 100px;
  margin: 15px auto;
}
.sec-mv .logo-mv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 50px auto;
}
.sec-mv .logo-mv img {
  height: 40px;
  width: auto;
}

.sec-mv picture img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 520px) {
  .sec-mv {
    padding-top: 30px;
  }
  .f0-1 {
    font-size: 1.4rem;
  }
  .f0-2 {
    font-size: 3.2rem;
    line-height: 1.3;
  }
  .f0-3 {
    font-size: 1.6rem;
    padding: 10px 30px;
  }
  .sec-mv .logo-mv {
    width: 90%;
    gap: 25px;
    margin: 30px auto;
  }
  .sec-mv .logo-mv img {
    height: 40px;
    width: auto;
  }
}

/**------------------------------ 
01
 ------------------------------**/
.sec-lp01 {
  margin-top: 60px;
  margin-bottom: 45px;
  padding: 100px 0 0 var(--over-width-half);
  min-height: 530px;
}
.sec-lp01 .text {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 30px;
  z-index: 5;
}
.f1-1 {
  font-size: 4.6rem;
  font-weight: 600;
}
.f1-2 {
  font-size: 3.2rem;
  font-weight: 600;
}
.f1-3 {
  font-size: 2.2rem;
}

.sec-lp01 .picture {
  display: grid;
  grid-template-columns: 214px auto 248px;
  grid-template-areas:
    ". pic2 pic2"
    "pic1 pic2 pic2"
    "pic1 . pic3";
  gap: 15px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.sec-lp01 .pic1 {
  grid-area: pic1;
  padding-top: 30px;
}
.sec-lp01 .pic2 {
  grid-area: pic2;
  padding-right: 40px;
}

.sec-lp01 .pic3 {
  grid-area: pic3;
}

@media screen and (max-width: 520px) {
  .sec-lp01 {
    margin-top: 25px;
    margin-bottom: 25px;
    padding: 0;
    min-height: auto;
  }
  .sec-lp01 .text {
    padding: 0 3% 30px;
    gap: 15px;
    z-index: 5;
  }
  .f1-1 {
    font-size: 2.5rem;
  }
  .f1-2 {
    font-size: 2.1rem;
    padding: 0 2%;
  }
  .f1-3 {
    font-size: 1.4rem;
    padding: 0 2%;
  }

  .sec-lp01 .picture {
    grid-template-columns: 29% auto 39%;
    gap: 5px;
    position: relative;
    top: auto;
    right: auto;
  }
  .sec-lp01 .pic1 {
    padding-top: 10px;
  }
}

/**------------------------------ 
02
 ------------------------------**/
.sec-lp02 {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
}

.f2-1 {
  font-size: 3.2rem;
  margin: 0 0 10px;
  font-weight: 600;
}

.list-living {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 50px auto;
}

.list-living li {
  aspect-ratio: 1/1;
  flex: 1;
  border-radius: 100vw;
  color: var(--white);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.list-living .bg01 {
  background: #daa7a1;
}
.list-living .bg02 {
  background: #75bbb7;
}
.list-living .bg03 {
  background: #b5c384;
}
.list-living .bg04 {
  background: #7dacd0;
}
.list-living .bg05 {
  background: #c6b69d;
}

.f2-3 {
  font-size: 4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  line-height: 1;
}
.f2-3 strong {
  display: inline-block;
  vertical-align: middle;
  font-weight: inherit;
  color: var(--cB);
  border: 2px solid var(--cB);
  border-radius: 10px;
  background: var(--white);
  padding: 8px 15px;
}

@media screen and (max-width: 520px) {
  .sec-lp02 {
    padding-top: 25px;
    padding-bottom: 30px;
    text-align: center;
  }

  .f2-1 {
    font-size: 2.4rem;
    margin: 0 0 3px;
  }

  .list-living {
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
    gap: 3%;
    margin: 25px auto;
  }

  .list-living li {
    width: 30%;
    height: auto;
    flex: none;
    line-height: 1.3;
    font-size: 0.9rem;
  }
  .list-living li img {
    height: 30px;
    width: auto;
  }

  .f2-3 {
    font-size: 2.6rem;
    flex-flow: row wrap;
    gap: 5px;
    line-height: 1.8;
  }
  .f2-3 span {
    width: 100%;
  }
  .f2-3 strong {
    line-height: 1;
    padding: 5px;
    vertical-align: middle;
  }
}

/**------------------------------ 
03
 ------------------------------**/
.sec-lp03 {
  padding-top: 130px;
  padding-bottom: 160px;
  --titAm: 0 0 80px;
}

.sec-lp03 .titA strong {
  font-weight: inherit;
  border: 2px solid var(--black);
  padding: 5px 15px;
}

.list-about {
  display: flex;
  flex-flow: column;
  gap: 120px;
}
.list-about li {
  --g: 55px;
}
.list-about h3 {
  font-size: 2.6rem;
  font-weight: 600;
  margin: 0 0 40px;
}
.list-about p {
  line-height: 2.3;
}

@media screen and (max-width: 520px) {
  .sec-lp03 {
    padding-top: 30px;
    padding-bottom: 30px;
    --titAm: 0 0 30px;
    --titAgap: 5px;
  }

  .sec-lp03 .titA span {
    width: 100%;
  }
  .sec-lp03 .titA strong {
    font-weight: inherit;
    border: 2px solid var(--black);
    padding: 5px 15px;
  }

  .list-about {
    display: flex;
    flex-flow: column;
    gap: 30px;
  }
  .list-about li {
    --g: 15px;
    flex-flow: column-reverse;
  }
  .list-about h3 {
    font-size: 2rem;
    margin: 0 0 10px;
  }
  .list-about p {
    line-height: 1.8;
  }
}

/**------------------------------ 
04
 ------------------------------**/
.sec-lp04 {
  padding-top: 120px;
  padding-bottom: 125px;
  --titAm: 0 0 70px;
}

.box-feature {
  background: var(--white);
}
.box-feature + .box-feature {
  margin-top: 60px;
}
.box-feature h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cB);
  color: var(--white);
  font-size: 2.8rem;
  padding: 30px;
}
.box-feature h3 i {
  font-size: 1.3em;
}
.box-feature .inner-feature {
  padding: 70px;
}

.box-feature .col-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  line-height: 1.8;
  margin: 0 0 85px;
}
.box-feature .col-ttl.mb0 {
  margin: 0;
}
.box-feature .col-ttl h4 {
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
}
.box-feature .col-ttl h4 img {
  display: block;
  margin: 0 auto 3px;
}
.box-feature .col-ttl p {
  line-height: 2.3;
}

.box-feature .col-flex {
  line-height: 2.3;
  margin: 0 0 60px;
  --g: 40px;
  --picw: 530px;
}
.box-feature .col-flex p {
  margin: 20px 0 0;
}

.box-feature .col-waku {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  border: 1px solid var(--cG1);
  padding: 30px;
  margin: 0 0 70px;
}
.box-feature .col-waku h4 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 15px;
}
.box-feature .col-waku p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.box-feature .col-waku picture {
  flex: none;
  width: 522px;
}

.box-feature .list-col {
  display: flex;
  flex-flow: column;
  gap: 60px;
}
.box-feature .list-col li {
  --g: 40px;
  --picw: 470px;
}
.box-feature .list-col h4 {
  font-size: 2.2rem;
  margin: 0 0 20px;
}
.box-feature .list-col p {
  line-height: 1.8;
}
.box-feature .list-col picture {
  text-align: center;
}

.box-feature .col-logo {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 0 70px;
}
.box-feature .col-logo figure {
  flex: 1;
}
.box-feature .col-logo img {
  width: 100%;
  height: auto;
}

.sec-lp04 .splide img {
  width: 380px;
}

@media screen and (max-width: 520px) {
  .sec-lp04 {
    padding-top: 30px;
    padding-bottom: 30px;
    --titAm: 0 0 30px;
  }

  .box-feature + .box-feature {
    margin-top: 30px;
  }
  .box-feature h3 {
    font-size: 1.65rem;
    padding: 10px 15px;
    gap: 5px;
  }
  .box-feature h3 i {
    font-size: 1.1em;
  }
  .box-feature .inner-feature {
    padding: 15px;
  }

  .box-feature .col-ttl {
    flex-flow: column;
    width: 100%;
    gap: 15px;
    margin: 0 auto;
  }
  .box-feature .col-ttl h4 {
    font-size: 1.7rem;
    white-space: wrap;
  }
  .box-feature .col-ttl p {
    line-height: 1.8;
  }

  .box-feature .col-flex {
    line-height: 1.8;
    margin: 25px auto;
    --g: 0px;
    --picw: 100%;
  }
  .box-feature .col-flex p {
    margin: 20px 0 0;
  }

  .box-feature .col-waku {
    flex-flow: column;
    gap: 20px;
    padding: 15px;
    margin: 0 0 30px;
  }
  .box-feature .col-waku picture {
    width: 100%;
  }

  .box-feature .list-col {
    display: flex;
    flex-flow: column;
    gap: 30px;
  }
  .box-feature .list-col li {
    --g: 15px;
    --picw: 100%;
  }
  .box-feature .list-col h4 {
    font-size: 2rem;
    margin: 0 0 5px;
  }

  .box-feature .col-logo {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    gap: 15px;
    margin: 0 0 30px;
  }
  .box-feature .col-logo figure {
    flex: none;
    width: 45%;
  }
  .sec-lp04 .splide img {
    width: 200px;
  }
}

/**------------------------------ 
05
 ------------------------------**/
.sec-lp05 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.f5-1 {
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 30px;
}
.f5-1 img {
  width: 165px;
  margin: 15px 0 0;
}

.box-price {
  --g: 0;
  --picw: 50%;
  align-items: center;
}

.box-price picture {
  text-align: center;
}
.box-price .price {
  flex: 1;
  color: var(--white);
  text-align: center;
  padding: 25px;
  margin: 0 0 40px;
}
.box-price .price h3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.f5-2 {
  font-size: 2.4rem;
}
.f5-3 {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
  padding: 0 5px 0 25px;
}
.f5-4 {
  font-size: 2.6rem;
}
.f5-5 {
  font-size: 1.6rem;
  margin: 5px 0 15px;
}

.f5-6 {
  font-size: 2.4rem;
  border-top: 1px dotted var(--white);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 8px 0;
}
.f5-6 dt {
  width: 4em;
}
.f5-6 dd {
  width: 7em;
}
.f5-6:last-of-type {
  border-bottom: 1px dotted var(--white);
  margin: 0 0 15px;
}
.f5-7 {
  font-size: 1.4rem;
}
.wrap-toggle .ans {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}
.wrap-toggle .ans p {
  width: calc((100% - 20px * 3) / 4);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--cG2);
  text-align: center;
  min-height: 100px;
  background: var(--white);
}
.wrap-toggle .ans p small {
  font-size: 1.2rem;
  line-height: 1.3;
}

@media screen and (max-width: 520px) {
  .sec-lp05 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .f5-1 {
    font-size: 2rem;
    align-items: flex-start;
    flex-flow: column;
    gap: 0px;
    margin: 0 0 20px;
  }
  .f5-1 img {
    width: 80px;
    margin: 0;
  }

  .box-price {
    --g: 20px;
    --picw: 100%;
    align-items: center;
  }

  .box-price picture {
    text-align: center;
  }
  .box-price .price {
    text-align: center;
    padding: 15px;
    margin: 0 0 30px;
  }
  .box-price .price h3 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-flow: wrap;
  }
  .f5-5 {
    font-size: 1.6rem;
    margin: 5px 0 15px;
  }

  .f5-6 {
    font-size: 2rem;
    gap: 20px;
  }
  .f5-7 {
    text-align: left;
  }
  .wrap-toggle .ans {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
  }
  .wrap-toggle .ans p {
    width: calc((100% - 20px * 1) / 2);
    min-height: 100px;
  }
}

/**------------------------------ 
06
 ------------------------------**/
.sec-lp06 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 520px) {
  .sec-lp06 {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}

/**------------------------------ 
07
 ------------------------------**/
.sec-lp07 {
  padding-top: 100px;
  padding-bottom: 1px;
}

.post-voice {
  padding: 0 0 140px;
}

.f7-1 {
  font-size: 3.4rem;
  margin: 15px 0 10px;
}
.f7-2 {
  font-size: 1.1em;
}

.splideLR li {
  display: grid;
  grid-template-columns: auto 248px;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "h4 pic"
    "p pic";
  align-items: start;
  gap: 15px 20px;
  background: var(--cG);
  padding: 30px;
}
.splideLR h4 {
  grid-area: h4;
  font-size: 2.2rem;
  font-weight: 600;
}
.splideLR p {
  grid-area: p;
}
.splideLR picture {
  grid-area: pic;
}

.f7-3 {
  font-size: 2.6rem;
  margin: 0 0 15px;
}
.wrap-toggle2 .ans {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
  margin: 0 0 10px;
}
.wrap-toggle2 .ans figure {
  flex: none;
  width: 593px;
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px;
}
.wrap-toggle2 .ans p {
  flex: 1;
}

@media screen and (max-width: 520px) {
  .sec-lp07 {
    padding-top: 40px;
  }

  .post-voice {
    padding: 0 0 50px;
  }

  .f7-1 {
    font-size: 2rem;
    margin: 10px 0 5px;
  }

  .splideLR li {
    grid-template-columns: 1fr 40%;
    grid-template-areas:
      "h4 pic"
      "p p";
    gap: 10px;
    padding: 15px;
  }
  .splideLR h4 {
    font-size: 1.5rem;
    align-self: center;
  }
  .splideLR p {
    align-self: start;
  }
  .splideLR picture {
    grid-area: pic;
    flex: none;
    width: 100%;
    margin: 0;
  }
  .splideLR picture img {
    width: 100%;
  }

  .f7-3 {
    font-size: 2rem;
    margin: 0 0 15px;
  }
  .wrap-toggle2 .ans {
    display: flex;
    flex-flow: wrap;
    gap: 5px;
    margin: 0;
  }
  .wrap-toggle2 .ans figure {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .wrap-toggle2 .ans figure img {
    flex: 1;
    width: 50%;
  }
  .wrap-toggle2 .ans p {
    flex: 1;
  }
}

/**------------------------------ 
08
 ------------------------------**/
.sec-lp08 {
  padding-bottom: 40px;
}

.f8-1 {
  font-size: 2.6rem;
  text-align: center;
}

.box-campaign {
  width: 1040px;
  margin: 30px auto 60px;
}

.f8-2 {
  margin: 20px 0;
  text-align: center;
}

.wrap-cta {
  margin: 0 auto 40px;
}
.wrap-cta strong {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  margin: 0 0 5px;
}
.wrap-cta strong:before,
.wrap-cta strong:after {
  content: "";
  width: 1px;
  height: 1.5em;
  background: var(--black);
}
.wrap-cta strong:before {
  transform: rotate(-20deg);
}
.wrap-cta strong:after {
  transform: rotate(20deg);
}
.wrap-cta .c-rec {
  --btnAbg: var(--cB);
}
.wrap-cta .c-come {
  --btnAbg: var(--cE);
}
.wrap-cta .c-vist {
  --btnAbg: var(--cO);
}

@media screen and (max-width: 520px) {
  .sec-lp08 {
    padding: 10px 0;
  }

  .f8-1 {
    font-size: 2rem;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }

  .box-campaign {
    width: 100%;
    margin: 30px auto 60px;
  }

  .f8-2 {
    width: 90%;
    margin: 20px auto;
    text-align: left;
  }

  .wrap-cta {
    margin: 0 auto 40px;
  }
  .wrap-cta strong {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin: 0 5% 5px;
  }
}

/**------------------------------ 
 09
 ------------------------------**/
.sec-lp09 {
  padding-top: 110px;
  padding-bottom: 1px;
}

.f9-1 {
  display: flex;
  gap: 60px;
  margin: 0 0 60px;
}

.f9-1 h3 {
  font-size: 2.8rem;
  white-space: nowrap;
  font-weight: 600;
}
.f9-1 p {
  line-height: 2;
}
.box-person {
  --g: 30px;
  --picw: calc((100% - 15px) / 2);
  margin: 0 0 60px;
}

.box-hosyo {
  --g: 50px;
  --picw: 317px;
  border: 1px solid var(--cG2);
  padding: 30px;
}

.box-hosyo dl dt {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 15px;
}

@media screen and (max-width: 520px) {
  .sec-lp09 {
    padding-top: 30px;
    padding-bottom: 1px;
  }

  .f9-1 {
    flex-flow: column;
    gap: 15px;
    margin: 0 0 20px;
  }

  .f9-1 h3 {
    font-size: 2rem;
    white-space: wrap;
  }
  .f9-1 p {
    line-height: 1.8;
  }
  .box-person {
    --g: 0px;
    --picw: 100%;
    margin: 0 0 30px;
  }

  .box-hosyo {
    --g: 20px;
    --picw: 100%;
    border: 1px solid var(--cG2);
    padding: 20px;
  }

  .box-hosyo dl dt {
    font-size: 2rem;
  }
}

/**------------------------------ 
10
 ------------------------------**/
.sec-lp10 {
  padding-top: 190px;
}

.f10-1 {
  display: flex;
  align-items: center;
  gap: 10px;
  --titAm: 0;
}
.f10-1 .titA {
  width: fit-content;
}
.f10-1 small {
  display: block;
  font-size: 2.6rem;
}
.f10-1 p {
  white-space: nowrap;
}

.splideLR2 li {
  position: relative;
}
.splideLR2 li a {
  height: 100%;
  display: flex;
  flex-flow: column;
}
.splideLR2 li i {
  display: inline-block;
  background: var(--black2);
  color: var(--white);
  padding: 1px 15px;
  position: absolute;
  top: 0;
  left: 0;
}
.splideLR2 li em {
  display: inline-block;
  background: var(--cR);
  color: var(--white);
  padding: 3px 15px;
  position: absolute;
  top: 0;
  right: 0;
}

.splideLR2 li picture {
  width: 100%;
  aspect-ratio: 425/320;
}

.splideLR2 li h3 {
  margin: 15px 0;
  font-size: 2rem;
}

.splideLR2 li span {
  text-align: right;
  margin: auto 0 0;
  text-decoration: underline;
}
.splideLR2 li a:hover span {
  text-decoration: none;
}

@media screen and (max-width: 520px) {
  .sec-lp10 {
    padding-top: 30px;
  }

  .f10-1 {
    flex-flow: column;
    gap: 15px;
    --titAm: 0;
  }
  .f10-1 .titA {
    width: 100%;
  }
  .f10-1 small {
    font-size: 1.6rem;
  }
  .f10-1 p {
    white-space: wrap;
  }

  .splideLR2 li h3 {
    font-size: 1.7rem;
  }
}

/**------------------------------ 
 ------------------------------**/
.sec-lp11 {
  padding-top: 160px;
}
.splideLarge li {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.splideLarge picture {
  display: block;
  aspect-ratio: 680/450;
  width: 100%;
}
.splideLarge p {
  margin: 20px auto;
}

.box-stay {
  width: var(--base-width);
  background: var(--cG);
  padding: 60px;
  margin: 80px auto;
}

.box-stay .col-ttl {
  display: flex;
  align-items: center;
  gap: 60px;
  font-size: 1.8rem;
  margin: 0 0 40px;
}
.box-stay .col-ttl h3 {
  font-size: 4.8rem;
}

.box-stay .col-dl dt {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 30px;
}
.box-stay .col-dl dt:after {
  content: "";
  flex: 1;
  height: 1px;
  border-top: 1px dotted var(--black2);
}
.box-stay .col-dl dd {
  display: grid;
  grid-template-columns: 113px 1fr;
  grid-template-areas:
    "i ."
    "i st"
    "i p"
    "i .";
  align-items: center;
  gap: 0 30px;
  margin: 0 0 30px;
  position: relative;
}

.box-stay .col-dl dd:after {
  content: "";
  display: block;
  width: 4px;
  height: 30px;
  background: var(--cB);
  position: absolute;
  top: 100%;
  left: 55px;
}
.box-stay .col-dl dd:last-of-type:after {
  display: none;
}
.box-stay .col-dl dd i {
  grid-area: i;
  width: 113px;
  min-height: 77px;
  font-size: 2.4rem;
  background: var(--cB);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-stay .col-dl dd strong {
  grid-area: st;
  font-size: 1.2em;
}
.box-stay .col-dl dd p {
  grid-area: p;
}
.box-stay .col-p {
}

.list-showroom.ni {
  --num: 2;
}
.list-showroom.san {
  --num: 3;
}

.list-showroom + .list-showroom {
  margin-top: 80px;
}

.list-showroom li {
  gap: 0;
}
.list-showroom h3 {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 2.2rem;
  margin: 15px 0;
  min-height: 42px;
}
.list-showroom h3 em {
  display: inline-block;
  background: var(--cR);
  color: var(--white);
  padding: 3px 15px;
}

.wrap-toggle3 .cl {
  background: var(--black2);
  color: var(--white);
  padding: 5px;
  font-size: 1.6rem;
  text-align: center;
}
.wrap-toggle3 .ans {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.wrap-toggle3 .ans iframe {
  aspect-ratio: 532/280;
  width: 100%;
  height: auto;
}
.wrap-toggle3 .toggle:checked + .cl + .ans {
  padding: 5px 0;
}

@media screen and (max-width: 520px) {
  .sec-lp11 {
    padding-top: 30px;
  }
  .splideLarge p {
    margin: 15px auto;
  }

  .box-stay {
    padding: 30px 20px;
    margin: 50px auto;
  }

  .box-stay .col-ttl {
    flex-flow: column;
    gap: 10px;
    font-size: 1.8rem;
    margin: 0 0 30px;
  }
  .box-stay .col-ttl h3 {
    font-size: 3.2rem;
  }

  .box-stay .col-dl dt {
    font-size: 2.3rem;
    margin: 0 0 20px;
  }
  .box-stay .col-dl dd {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: start;
    gap: 0 15px;
    margin: 0 0 30px;
  }

  .box-stay .col-dl dd:after {
    width: 4px;
    height: 100%;
    position: absolute;
    top: 60px;
    left: 28px;
  }
  .box-stay .col-dl dd i {
    width: 100%;
    min-height: 60px;
    font-size: 2.4rem;
  }

  .list-showroom.ni {
    --num: 1;
    --g: 20px;
  }
  .list-showroom.san {
    --num: 1;
    --g: 20px;
  }

  .list-showroom + .list-showroom {
    margin-top: 20px;
  }

  .list-showroom li {
    gap: 0;
  }
  .list-showroom h3 {
    gap: 10px;
    font-size: 2rem;
    margin: 0 0 10px;
    min-height: auto;
  }
  .list-showroom h3 em {
    width: fit-content;
    font-size: 1.3rem;
    padding: 5px 10px;
  }
}

/**------------------------------ 
 ------------------------------**/
.sec-lp12 {
  padding-top: 150px;
}

@media screen and (max-width: 520px) {
  .sec-lp12 {
    padding-top: 30px;
  }
}

/**------------------------------ 
 ------------------------------**/
.sec-lp13 {
  margin-top: 150px;
  padding-top: 130px;
  padding-bottom: 130px;

  display: grid;
  grid-template-columns: auto 1fr 260px;
  grid-template-areas:
    "h2 p btn"
    "ul ul ul";
  align-items: center;
  gap: 60px 80px;

  --titAm: 20px 0 0;

  --btnAfz: 1.8rem;
  --btnAw: min(90%, 260px);
  --btnAp: 15px;
}

.sec-lp13 h2 {
  grid-area: h2;
}
.sec-lp13 p {
  grid-area: p;
}
.sec-lp13 a {
  grid-area: btn;
}
.sec-lp13 ul {
  grid-area: ul;
}

#instagram {
  display: flex;
  gap: 20px;
}

#instagram li {
  flex: 1;
}

#instagram a {
  width: 100%;
  display: block;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 520px) {
  .sec-lp13 {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "h2 "
      "p"
      "ul"
      "btn";
    align-items: center;
    gap: 20px;

    --titAm: 20px 0 0;

    --btnAfz: 1.4rem;
  }

  #instagram {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
  }

  #instagram li {
    flex: none;
    width: calc((100% - 10px) / 2);
  }
}

/**------------------------------ 
 ------------------------------**/
.sec-lp14 {
  padding-top: 100px;
  padding-bottom: 130px;
}

.wrap-toggle4 {
  border-bottom: 1px dotted var(--black2);
}
.wrap-toggle4 label {
  border-top: 1px dotted var(--black2);
}
.wrap-toggle4 .cl {
  cursor: default;
  background: none;
  color: var(--cB);
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 0 5px;
  font-weight: 600;
}
.wrap-toggle4 .cl:before {
  content: "Q";
  font-size: 2.6rem;
}
.wrap-toggle4 .cl:after {
  display: none;
}

.wrap-toggle4 div {
  padding: 0 0 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  line-height: 2;
}
.wrap-toggle4 div:before {
  content: "A";
  font-size: 2.6rem;
  color: var(--black2);
}

@media screen and (max-width: 520px) {
  .sec-lp14 {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .wrap-toggle4 .cl {
    gap: 15px;
    padding: 20px 0 5px;
  }
  .wrap-toggle4 .cl:before {
    font-size: 2rem;
  }
  .wrap-toggle4 div {
    padding: 0 0 20px;
    align-items: flex-start;
    gap: 15px;
  }
  .wrap-toggle4 div:before {
    font-size: 2rem;
  }
}

/**------------------------------ 
 ------------------------------**/
.sec-lp15 {
  padding-top: 100px;
  padding-bottom: 70px;
}

.f15-1 {
  display: flex;
  align-items: center;
  gap: 60px;

  --titAm: 20px 0 0;
}

.sec-lp15 .splide img {
  width: 230px;
  height: auto;
  padding: 0 15px;
}

@media screen and (max-width: 520px) {
  .sec-lp15 {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .f15-1 {
    flex-flow: column;
    align-items: flex-start;
    gap: 15px;

    --titAm: 0 0 20px;
  }

  .sec-lp15 .splide img {
    width: 150px;
    padding: 0 10px;
  }
}

/**------------------------------ 
 ------------------------------**/
.sec-lp16 {
  padding-top: 100px;
  padding-bottom: 100px;

  --btnAfz: 2rem;
  --btnAw: min(90%, 520px);
  --btnAm: 40px auto;
  --btnAbd: 1px solid var(--cB);
}

.f16-1 {
  display: flex;
  align-items: center;
  gap: 60px;

  --titAm: 20px 0 0;
}

.box-ZEH {
  background: var(--cY);
  border: 1px solid var(--cB);
  padding: 40px;
  margin: 60px auto;
  font-size: 1.8rem;
}

.box-ZEH h3 {
  font-size: 2.8rem;
  color: var(--cB);
  font-weight: 600;
  text-align: center;
  margin: 0 0 15px;
}

.box-TEL {
  width: 700px;
  margin: 60px auto;
  border: 1px solid var(--cB);
  background: var(--cB2);
  padding: 40px;
  text-align: center;
}

.box-TEL h3 {
  font-size: 3.6rem;
  color: var(--cB);
  font-weight: 600;
  text-align: center;
  margin: 0 0 15px;
}

.f16-2 {
  font-size: 1.8rem;
}

.f16-3 {
  font-size: 3.2rem;
  font-weight: 600;
}

.f16-4 {
  font-size: 1.6rem;
  margin: 15px 0 0;
}

@media screen and (max-width: 520px) {
  .sec-lp16 {
    padding-top: 30px;
    padding-bottom: 30px;

    --btnAfz: 1.8rem;
    --btnAw: min(90%, 520px);
    --btnAm: 40px auto;
    --btnAbd: 1px solid var(--cB);
  }

  .f16-1 {
    flex-flow: column;
    align-items: flex-start;
    gap: 15px;

    --titAm: 0 0 15px;
  }

  .box-ZEH {
    padding: 20px;
    margin: 30px auto;
    font-size: 1.6rem;
  }

  .box-ZEH h3 {
    font-size: 2rem;
  }

  .box-TEL {
    width: 100%;
    margin: 30px auto;
    padding: 20px;
  }

  .box-TEL h3 {
    font-size: 2rem;
  }

  .f16-2 {
    font-size: 1.6rem;
  }

  .f16-3 {
    font-size: 3rem;
  }

  .f16-4 {
    font-size: 1.3rem;
    margin: 10px 0 0;
  }
}

/**================================================== 
 formtable 確認画面
================================================== **/

.formTable,
.formTable tbody {
  display: block;
  width: 100%;
  margin: 50px auto;
}

.box-err {
  border-top: 1px dotted var(--cG1);
  border-bottom: 1px dotted var(--cG1);
  padding: 30px;
  margin: 50px auto;
  text-align: center;
  line-height: 2;
  color: var(--cR);
}

/**================================================== 
 form 入力画面 と 確認画面
================================================== **/

form {
}
form tr:first-child,
form dl:first-child {
  border-top: 1px dotted var(--black2);
}
form tr,
form dl {
  width: 100%;
  display: flex;
  border-bottom: 1px dotted var(--black2);
}

form tr th,
form dl dt {
  flex: none;
  width: 266px;
  background: var(--cG);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
form dl dt span {
  background: var(--cR);
  color: var(--white);
  font-size: 1.4rem;
  padding: 1px 5px;
}
form dl dt span.long {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 1px solid var(--cR);
  background: var(--white);
  color: var(--cR);
}
form tr td,
form dl dd {
  flex: 1;
  padding: 30px;
}

form dl dd b {
  display: block;
  color: var(--cR);
  font-size: 0.8em;
  font-weight: normal;
  line-height: 1;
  margin: -5px 0 0;
}

form input:is([type="text"], [type="email"], [type="tel"]),
form textarea,
form select {
  border: 1px solid var(--cG1);
  padding: 8px 20px;
}
form input:is([type="text"], [type="email"], [type="tel"]),
form textarea {
  width: 100%;
}
form input:is([type="text"], [type="email"], [type="tel"]).min {
  width: 50%;
}
form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}
form textarea {
  height: 8em;
}
form label {
  display: block;
  margin: 0 0 10px;
}

form .data-list h3 {
  margin-bottom: 5px;
}

form .data-list select + h3 {
  margin-top: 20px;
}

form .check-list {
  columns: 2;
}

#agreement {
  border: 1px solid var(--cG1);
  padding: 40px;
  margin: 50px auto;
  text-align: center;
}

#agreement p a {
  text-decoration: underline;
  font-size: 1.1em;
}
#agreement p a:hover {
  text-decoration: none;
}

#agreement label {
  margin: 20px auto 0;
}

@media screen and (max-width: 520px) {
  form tr,
  form dl {
    flex-flow: column;
  }

  form tr th,
  form dl dt {
    width: 100%;
    padding: 15px;
  }
  form tr td,
  form dl dd {
    flex: 1;
    padding: 15px;
  }

  form input:is([type="text"], [type="email"], [type="tel"]).min {
    width: 80%;
    margin: 0 0 5px;
  }
  form select {
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    appearance: menulist;
    width: 80%;
  }

  form .data-list h3 {
    margin-bottom: 5px;
  }

  form .data-list select + h3 {
    margin-top: 20px;
  }

  form .check-list {
    columns: 2;
  }

  #agreement {
    padding: 20px 15px;
    margin: 30px auto;
    text-align: left;
  }
}
