@charset "UTF-8";
/*-----------------------------------------------------
  フォント
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');*/
/*
.serif {
	font-family: 'Noto Serif JP', serif;
}
*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600;700&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

:root {
  --cl-base: #3D444B;
  --cl-def-black: #323238;
  --cl-def-bg: #F2F1E9;
  --cl-base-blue: #214D8B;
  --cl-base-beige: #EEE6D4;
  --cl-light-beige:#F8F2F2;
  --cl-dark-beige: #BAA87B;
  --cl-base-red: #FF1A00;
  --cl-base-gray: #888;
  --cl-dark-gray: #323238;
  --header-h-pc: 16.4rem;
  --header-h-pc-fixed: 9.0rem;
  --header-h-sp: calc( (64/430)*100vw );
  --content-w-max: 1280px;
  --content-w-mid: 940px;
  --content-w-min: 780px;
}

.jost {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------*/
/* 要素の基本設定                                   */
/*--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  position: relative;
  background: var(--cl-def-bg);
  width: 100%;
  min-width: var(--content-w-max);
  margin: 0;
  font-family: "Kozuka Gothic Pr6N", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.7rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  color: var(--cl-def-black);
  line-height: 1;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  body {
    min-width: 100%;
    font-size: 3.2558139535vw;
  }
}

main {
  overflow: hidden;
}

a {
  color: var(--cl-dark-blue);
  text-decoration: none;
  cursor: pointer;
}
a:not([class]) {
  color: var(--cl-dark-blue);
}
a > span {
  display: inline-block;
  background: linear-gradient(var(--cl-light-blue-rgba), var(--cl-light-blue-rgba)) no-repeat left bottom/100% 1px;
  font-weight: 400;
  /*line-height: 1.25;*/
  transition: all 0.3s;
}
a > img {
  transition: opacity 0.3s;
}
a:hover > span {
  /*      background: linear-gradient(var(--cl-light-blue-rgba), var(--cl-light-blue-rgba)) no-repeat left bottom / 100% 1px;*/
  opacity: 0.7;
}
a:hover > img {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6, p, figure, dt, dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl {
  margin: 0;
}

strong {
  font-weight: normal;
}

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

img {
  width: 100%;
  max-width: none;
  height: auto;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*-----------------------------------------------------
  PC/SP 表示切り替え
-----------------------------------------------------*/
.pc-bl {
  display: block !important;
}

.pc-il {
  display: inline !important;
}

.pc-ib {
  display: inline-block !important;
}

.pc-fx {
  display: flex !important;
}

.sp-bl {
  display: none !important;
}

.sp-il {
  display: none !important;
}

.sp-ib {
  display: none !important;
}

.sp-fx {
  display: none !important;
}

@media only screen and (max-width: 749px) {
  .pc-bl {
    display: none !important;
  }
  .pc-il {
    display: none !important;
  }
  .pc-ib {
    display: none !important;
  }
  .pc-fx {
    display: none !important;
  }
  .sp-bl {
    display: block !important;
  }
  .sp-il {
    display: inline !important;
  }
  .sp-ib {
    display: inline-block !important;
  }
  .sp-fx {
    display: flex !important;
  }
}
/*-----------------------------------------------------
  フェード関連
-----------------------------------------------------*/
.fd {
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
}
.fd[data-step="2"] {
  transition-delay: 0.3s;
}
.fd[data-step="3"] {
  transition-delay: 0.6s;
}
.fd.b2t {
  transform: translateY(100px);
}
.fd.t2b {
  transform: translateY(-100px);
}
.fd.r2l {
  transform: translateX(100px);
}
.fd.l2r {
  transform: translateX(-100px);
}
.fd.fade {
  opacity: 1;
  cursor: auto;
  transform: translate(0, 0);
}

/*-----------------------------------------------------
  共通フレーム
-----------------------------------------------------*/
.sec-inner {
  margin: 0 auto;
  padding: 0 2rem;
}
@media only screen and (max-width: 749px) {
  .sec-inner {
    padding: 0 3.488372093vw;
  }
}
.sec-inner {
  /* sp */
}
.sec-inner.min {
  width: 920px;
}
@media only screen and (max-width: 749px) {
  .sec-inner.min {
    width: 100%;
  }
}
.sec-inner.min {
  /* sp */
}
.sec-inner.mid {
  width: 1000px;
}
@media only screen and (max-width: 749px) {
  .sec-inner.mid {
    width: 100%;
  }
}
.sec-inner.mid {
  /* sp */
}
.sec-inner.max {
  width: 136rem;
}
@media only screen and (max-width: 749px) {
  .sec-inner.max {
    width: 100%;
  }
}
.sec-inner.max {
  /* sp */
}
.sec-inner.full {
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 749px) {
  .sec-inner.full {
    width: 100%;
  }
}
.sec-inner.full {
  /* sp */
}

/* .sec-inner */
/*-----------------------------------------------------
  MW WP Form 用
-----------------------------------------------------*/
.mw_wp_form .normal_check {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 4rem;
  width: 100%;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .normal_check {
    flex-direction: column;
  }
}
.mw_wp_form .normal_check .mwform-checkbox-field.horizontal-item {
  display: inline-block;
  position: relative;
  margin: 0 !important;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .normal_check .mwform-checkbox-field.horizontal-item {
    width: 100%;
    min-width: 0;
    margin: 0 !important;
  }
}
.mw_wp_form .normal_check .mwform-checkbox-field.horizontal-item label {
  display: inline-block;
  padding: 0.2em 0;
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .normal_check .mwform-checkbox-field.horizontal-item label {
    font-size: 3.7209302326vw;
  }
}
.mw_wp_form input[type=text],
.mw_wp_form input[type=tel],
.mw_wp_form input[type=email],
.mw_wp_form input[type=date] {
  background: #fff;
  width: 100%;
  padding: 1.25em 1em;
  border: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  font-size: 1.8rem;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form input[type=text],
  .mw_wp_form input[type=tel],
  .mw_wp_form input[type=email],
  .mw_wp_form input[type=date] {
    font-size: 3.7209302326vw;
  }
}
.mw_wp_form textarea {
  background: #fff;
  width: 100%;
  height: 215px;
  padding: 1.25em 1em;
  border: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form textarea {
    font-size: 3.7209302326vw;
  }
}
.mw_wp_form input.datepicker {
  background-image: url(/lp/assets/images/ico-calendar.png);
  background-repeat: no-repeat;
  background-position: center right 2.5rem;
  background-size: 28px 28px;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form input.datepicker {
    background-size: 6.511627907vw 6.511627907vw;
  }
}
.mw_wp_form .basic-sel .selwrap {
  display: block;
}
.mw_wp_form .basic-sel .selwrap select {
  appearance: none;
  background-color: #fff;
  background-image: url(/lp/assets/images/arrow-select.svg);
  background-repeat: no-repeat;
  background-position: center right 2.9rem;
  background-size: 14px 16px;
  width: 100%;
  padding: 1.25em 1em;
  border: 0;
  border-radius: 0;
  font-size: 1.8rem;
  color: var(--cl-def-black);
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .basic-sel .selwrap select {
    background-size: 3.2558139535vw 3.7209302326vw;
    font-size: 3.7209302326vw;
  }
}
.mw_wp_form input::-webkit-input-placeholder,
.mw_wp_form input:-moz-placeholder,
.mw_wp_form input:-ms-input-placeholder {
  letter-spacing: 0.05em;
}
.mw_wp_form span.error {
  display: inline-block;
  width: 100%;
  padding: 0.75em 0 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--cl-base-red);
}
@media only screen and (max-width: 749px) {
  .mw_wp_form span.error {
    font-size: 3.7209302326vw;
  }
}
.mw_wp_form .form-buttons {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .form-buttons {
    flex-wrap: wrap;
    gap: 3.488372093vw;
  }
}
.mw_wp_form .form-buttons .btn {
  appearance: button;
  background: var(--cl-base-red) url(/lp/assets/images/ico-btn-arrow-red.svg) no-repeat right 2.5rem center/4.2rem 4.2rem;
  display: inline-block;
  width: 56rem;
  height: 12rem;
  margin: 0 5px;
  border: none;
  border-radius: 2.5rem;
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .form-buttons .btn {
    background-position: right 2.5rem center;
    background-size: 5.8139534884vw 5.8139534884vw;
    width: 79.0697674419vw;
    height: 17.2093023256vw;
    margin: 0 auto;
    padding: 0.5em 50px;
    font-size: 4.1860465116vw;
  }
}
.mw_wp_form .form-buttons .btn.btn-back {
  background-color: #fff;
  background-image: none;
  width: auto;
  padding: 0 2em;
  border: 1px solid #B9CCC5;
  color: var(--cl-def-black);
}
@media only screen and (max-width: 749px) {
  .mw_wp_form .form-buttons .btn.btn-back {
    width: 79.0697674419vw;
  }
}

/*-----------------------------------------------------
  LP
-----------------------------------------------------*/
header {
  height: var(--header-h-pc);
  padding: 2rem;
}
@media only screen and (max-width: 749px) {
  header {
    height: var(--header-h-sp);
    padding: 0;
  }
}
header {
  /* sp */
}
header #h-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 749px) {
  header #h-inner {
    grid-template-columns: 100%;
    grid-template-rows: var(--header-h-sp) auto auto;
    align-items: center;
  }
}
header #h-inner {
  /* sp */
}
header #h-inner #h-logo {
  display: flex;
  justify-content: center;
  grid-column: 2/3;
  grid-row: 1/2;
  width: 100%;
  z-index: 9999;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-logo {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
header #h-inner #h-logo {
  /* sp */
}
header #h-inner #h-logo .logo-wrap {
  width: 42.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-logo .logo-wrap {
    gap: 1.1627906977vw;
    width: 49.5348837209vw;
  }
}
header #h-inner #h-logo .logo-wrap {
  /* sp */
}
header #h-inner #h-logo .logo-wrap strong {
  width: 100%;
}
header #h-inner #h-logo .logo-wrap strong {
  /* sp */
}
header #h-inner #h-logo .logo-wrap strong img {
  width: 100%;
  height: auto;
}
header #h-inner #h-logo .logo-wrap small {
  padding: 0 0 0 16%;
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-logo .logo-wrap small {
    font-size: 1.6279069767vw;
  }
}
header #h-inner #h-logo .logo-wrap small {
  /* sp */
}
header #h-inner {
  /* #h-logo */
}
header #h-inner #h-contact {
  grid-column: 3/4;
  grid-row: 1/3;
  justify-self: end;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.8rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-contact {
    justify-self: center;
    align-items: center;
    grid-column: 1/2;
    grid-row: 3/4;
    background: var(--cl-dark-gray);
    width: 100%;
    padding: 5.8139534884vw 3.488372093vw 4.6511627907vw;
    color: #fff;
    z-index: 9999;
  }
}
header #h-inner #h-contact {
  /* sp */
}
header #h-inner #h-contact .tel {
  font-size: 1.6rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-contact .tel {
    font-size: 4.1860465116vw;
  }
}
header #h-inner #h-contact .tel {
  /* sp */
}
header #h-inner #h-contact .tel strong {
  font-size: 2.4rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-contact .tel strong {
    font-size: 5.5813953488vw;
  }
}
header #h-inner #h-contact .tel strong {
  /* sp */
}
header #h-inner #h-contact .open, header #h-inner #h-contact .address {
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-contact .open, header #h-inner #h-contact .address {
    font-size: 3.2558139535vw;
  }
}
header #h-inner #h-contact .open, header #h-inner #h-contact .address {
  /* sp */
}
header #h-inner #h-contact .open {
  text-align: right;
  line-height: 1.4;
}
header #h-inner #h-contact .open small {
  font-size: 1.2rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-contact .open small {
    font-size: 2.7906976744vw;
  }
}
header #h-inner #h-contact .open small {
  /* sp */
}
header #h-inner #h-contact .btn {
  width: 100%;
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-contact .btn {
    margin-top: 3.488372093vw;
    font-size: 3.2558139535vw;
  }
}
header #h-inner #h-contact .btn {
  /* sp */
}
header #h-inner #h-contact .btn a {
  display: flex;
  justify-content: center;
  background: var(--cl-base-blue);
  width: 100%;
  padding: 0.75em 0;
}
header #h-inner #h-contact .btn a span {
  display: flex;
  align-items: center;
  background: none;
  color: #fff;
}
header #h-inner #h-contact .btn a span::after {
  content: "";
  display: inline-block;
  background: url(/lp/assets/images/arrow-r.svg) no-repeat center/cover;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
}
header #h-inner {
  /* #h-contact */
}
header #h-inner #h-nav {
  grid-column: 2/3;
  grid-row: 2/3;
  justify-self: center;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav {
    grid-column: 1/4;
    grid-row: 2/3;
    display: block;
    background: var(--cl-dark-gray);
    width: 100%;
    height: auto;
    z-index: 9999;
  }
}
header #h-inner #h-nav {
  /* sp */
}
header #h-inner #h-nav ul {
  display: flex;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav ul {
    flex-direction: column;
  }
}
header #h-inner #h-nav ul {
  /* sp */
}
header #h-inner #h-nav ul li {
  padding: 0.5em 2em;
  border-right: 1px solid var(--cl-def-black);
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav ul li {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid #fff;
    font-size: 3.2558139535vw;
    color: #fff;
  }
  header #h-inner #h-nav ul li:first-child {
    border-top: 1px solid #fff;
  }
}
header #h-inner #h-nav ul li {
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav ul li a {
    display: block;
    padding: 1em 3em;
    border-right: 0;
  }
}
header #h-inner #h-nav ul li a {
  /* sp */
}
header #h-inner #h-nav ul li:last-child {
  border-right: none;
}
header #h-inner {
  /* #h-nav */
}
header #h-inner #h-btn-menu {
  display: none;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6279069767vw;
    width: var(--header-h-sp);
    height: var(--header-h-sp);
    transition: background-color 0.3s;
    z-index: 9999;
    cursor: pointer;
  }
}
header #h-inner #h-btn-menu {
  /* sp */
}
header #h-inner #h-btn-menu .bars {
  position: relative;
  background: none;
  width: 9.3023255814vw;
  height: 3.2558139535vw;
}
header #h-inner #h-btn-menu .bars i {
  display: block;
  position: absolute;
  top: 1.3953488372vw;
  left: 0;
  background-color: var(--cl-def-black);
  width: 100%;
  height: 3px;
  transition: background-color, transform 0.3s;
}
header #h-inner #h-btn-menu .bars i:nth-child(1) {
  transform: translateY(-1.3953488372vw);
}
header #h-inner #h-btn-menu .bars i:nth-child(2) {
  transform: translateY(0);
}
header #h-inner #h-btn-menu .bars i:nth-child(3) {
  transform: translateY(1.3953488372vw);
}
header #h-inner #h-btn-menu .bars {
  /* i */
}
header #h-inner #h-btn-menu {
  /* .bars */
}
header #h-inner #h-btn-menu .caption {
  display: inline-block;
  text-align: center;
  line-height: 1;
}
header #h-inner #h-btn-menu .caption small {
  font-size: 3.2558139535vw;
  font-weight: bold;
  color: var(--cl-def-black);
}
header #h-inner #h-btn-menu .caption small:nth-of-type(1) {
  display: inline;
}
header #h-inner #h-btn-menu .caption small:nth-of-type(2) {
  display: none;
}
header #h-inner #h-btn-menu {
  /* .caption */
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars i:nth-child(1) {
  transform: scale(0.8) rotate(45deg);
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars i:nth-child(2) {
  display: none;
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars i:nth-child(3) {
  transform: scale(0.8) rotate(-45deg);
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars {
  /* i */
}
header #h-inner #h-btn-menu[aria-expanded=true] {
  /* .bars */
}
header #h-inner #h-btn-menu[aria-expanded=true] .caption small:nth-of-type(1) {
  display: none;
}
header #h-inner #h-btn-menu[aria-expanded=true] .caption small:nth-of-type(2) {
  display: inline;
}
header #h-inner #h-btn-menu[aria-expanded=true] {
  /* .caption */
}
header #h-inner {
  /* #h-btn-menu */
}
@media only screen and (max-width: 749px) {
  header #h-inner:has(#h-btn-menu[aria-expanded=false]) > #h-contact, header #h-inner:has(#h-btn-menu[aria-expanded=false]) > #h-nav {
    display: none;
  }
  header #h-inner:has(#h-btn-menu[aria-expanded=true]) > #h-contact {
    display: flex;
  }
  header #h-inner:has(#h-btn-menu[aria-expanded=true]) > #h-nav {
    display: block;
  }
}
header #h-inner {
  /* sp */
}
header {
  /* #h-inner */
} /* header */
body.h-fixed header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: var(--header-h-pc-fixed);
  padding: 2rem;
  z-index: 9999;
  animation: fixedheaderFade 0.5s ease-out 0s forwards;
}
@media only screen and (max-width: 1359px) {
  body.h-fixed header {
    padding: 1rem 2rem;
  }
}
body.h-fixed header {
  /* sp */
}
@media only screen and (max-width: 749px) {
  body.h-fixed header {
    height: var(--header-h-sp);
    padding: 0;
  }
}
body.h-fixed header {
  /* sp */
}
@media only screen and (min-width: 750px) {
  body.h-fixed header #h-inner {
    grid-template-columns: 30rem auto auto;
    /* sp */
  }
}
@media only screen and (min-width: 750px) and (max-width: 1360px) {
  body.h-fixed header #h-inner {
    grid-template-columns: 30rem auto;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }
}
@media only screen and (min-width: 750px) {
  body.h-fixed header #h-inner #h-logo {
    align-items: center;
    grid-column: 1/2;
    grid-row: 1/2;
    /* sp */
  }
}
@media only screen and (min-width: 750px) and (max-width: 1359px) {
  body.h-fixed header #h-inner #h-logo {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media only screen and (min-width: 750px) {
  body.h-fixed header #h-inner #h-logo .logo-wrap {
    width: 100%;
  }
  body.h-fixed header #h-inner #h-logo .logo-wrap small {
    display: none;
  }
  body.h-fixed header #h-inner #h-nav {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: center;
    /* sp */
  }
}
@media only screen and (min-width: 750px) and (max-width: 1359px) {
  body.h-fixed header #h-inner #h-nav {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
@media only screen and (min-width: 750px) {
  body.h-fixed header #h-inner #h-nav ul {
    flex-wrap: wrap;
  }
  body.h-fixed header #h-inner #h-nav ul li {
    padding: 0.5em 2em;
    font-size: 1.4rem;
    /* sp */
  }
}
@media only screen and (min-width: 750px) and (max-width: 1359px) {
  body.h-fixed header #h-inner #h-nav ul li {
    padding: 0.5em 1.5em;
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 750px) {
  body.h-fixed header #h-inner #h-contact {
    grid-column: 3/4;
    grid-row: 1/2;
    /* sp */
  }
}
@media only screen and (min-width: 750px) and (max-width: 1359px) {
  body.h-fixed header #h-inner #h-contact {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media only screen and (min-width: 750px) {
  body.h-fixed header #h-inner #h-contact .tel, body.h-fixed header #h-inner #h-contact .open, body.h-fixed header #h-inner #h-contact .address {
    display: none;
  }
  body.h-fixed header #h-inner #h-contact .btn a {
    padding: 0.75em;
    font-size: 1.4rem;
  }
}
body.h-fixed header {
  /* pc */
} /* body.h-fixed header */
@keyframes fixedheaderFade {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#hero {
  position: relative;
  width: 100%;
}
#hero .hero-pic {
  width: 100%;
}
#hero .hero-pic picture img {
  width: 100%;
  height: auto;
}
#hero {
  /* .hero-pic */
}
#hero .hero-catch {
  position: absolute;
  top: max(5.7291666667vw, 73.3333333333px);
  right: 0;
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch {
    position: static;
  }
}
#hero .hero-catch {
  /* sp */
}
#hero .hero-catch picture {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch picture {
    position: absolute;
  }
}
#hero .hero-catch picture {
  /* sp */
}
#hero .hero-catch picture:nth-of-type(1) {
  width: max(29.0625vw, 372px);
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch picture:nth-of-type(1) {
    top: 9.3023255814vw;
    right: 1.1627906977vw;
    width: 65.1162790698vw;
  }
}
#hero .hero-catch picture:nth-of-type(1) {
  /* sp */
}
#hero .hero-catch picture:nth-of-type(2) {
  width: max(38.0208333333vw, 486.6666666667px);
  padding: 3.4246575342% 0;
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch picture:nth-of-type(2) {
    position: absolute;
    bottom: -4.6511627907vw;
    left: 50%;
    width: 89.7674418605vw;
    padding: 0;
    transform: translateX(-50%);
    z-index: 2;
  }
}
#hero .hero-catch picture:nth-of-type(2) {
  /* sp */
}
#hero .hero-catch picture:nth-of-type(3) {
  width: max(32.34375vw, 414px);
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch picture:nth-of-type(3) {
    top: 39.5348837209vw;
    right: 2.3255813953vw;
    width: 58.1395348837vw;
  }
}
#hero .hero-catch picture:nth-of-type(3) {
  /* sp */
}
#hero .hero-catch {
  /* picture */
}
#hero {
  /* .hero-catch */
} /* #hero */
#news {
  padding: 100px 0;
}
@media only screen and (max-width: 749px) {
  #news {
    padding: 11.6279069767vw 0;
  }
}
#news {
  /* sp */
}
#news .news-wrap {
  position: relative;
  padding: 0 0 0 18rem;
  min-height: 20rem;
}
@media only screen and (max-width: 749px) {
  #news .news-wrap {
    padding: 0 0 0 9.3023255814vw;
  }
}
#news .news-wrap {
  /* sp */
}
#news .sec-ttl {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  font-size: 7rem;
  color: #fff;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}
@media only screen and (max-width: 749px) {
  #news .sec-ttl {
    font-size: 6.976744186vw;
  }
}
#news .sec-ttl {
  /* sp */
}
#news .list-news {
  font-size: 1.8rem;
}
@media only screen and (max-width: 749px) {
  #news .list-news {
    font-size: 3.2558139535vw;
  }
}
#news .list-news {
  /* sp */
}
#news .list-news li {
  display: grid;
  grid-template-columns: 10em 1fr;
}
@media only screen and (max-width: 749px) {
  #news .list-news li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
}
#news .list-news li {
  /* sp */
}
#news .list-news li:not(:last-child) {
  margin-bottom: 1.5rem;
}
#news .list-news li .date span {
  display: inline-block;
  background: #fff;
  width: 7.5em;
  padding: 0.75em;
  border: 1px solid var(--cl-def-black);
  text-align: center;
}
#news .list-news li .ttl span {
  display: inline-block;
  padding: 0.5em;
  line-height: 1.6;
}

/* #news */
#environment {
  background: #999d8d;
  padding: 10rem 0 28rem;
  color: var(--cl-light-beige);
}
@media only screen and (max-width: 749px) {
  #environment {
    padding: 6.976744186vw 0 18.6046511628vw;
  }
}
#environment {
  /* sp */
}
#environment .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 749px) {
  #environment .sec-ttl {
    gap: 1.1627906977vw;
  }
}
#environment .sec-ttl {
  /* sp */
}
#environment .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #environment .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#environment .sec-ttl small {
  /* sp */
}
#environment .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #environment .sec-ttl strong {
    font-size: 6.7441860465vw;
  }
}
#environment .sec-ttl strong {
  /* sp */
}
#environment .sec-catch {
  position: relative;
  margin: 1em 0 2.25em;
  padding: 0 0 0 0.4em;
  font-size: 6rem;
  font-weight: normal;
  line-height: 1.5333333333;
  color: var(--cl-base-beige);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #environment .sec-catch {
    font-size: 5.5813953488vw;
  }
}
#environment .sec-catch {
  /* sp */
}
#environment .sec-catch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  background: var(--cl-base-beige);
  width: 2px;
  height: 2.6em;
  transform: translateY(-50%);
}
#environment article {
  display: grid;
  grid-template-columns: auto 58.6206896552%;
  gap: 8rem;
  width: 100%;
  max-width: 116rem;
  margin: 0 auto;
}
@media only screen and (max-width: 749px) {
  #environment article {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 2.3255813953vw;
    padding: 0 2.3255813953vw;
  }
}
#environment article {
  /* sp */
}
#environment article:not(:last-of-type) {
  margin-bottom: 40rem;
}
@media only screen and (max-width: 749px) {
  #environment article:not(:last-of-type) {
    margin-bottom: 13.9534883721vw;
  }
}
#environment article:not(:last-of-type) {
  /* sp */
}
#environment article .txt-wrap {
  grid-column: 1/2;
  grid-row: 1/2;
}
#environment article .txt-wrap::before {
  font-size: 15rem;
  font-weight: bold;
  color: var(--cl-base-beige);
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 749px) {
  #environment article .txt-wrap::before {
    font-size: 23.2558139535vw;
  }
}
#environment article .txt-wrap::before {
  /* sp */
}
#environment article .txt-wrap .art-ttl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1em;
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--cl-light-beige);
  line-height: 1.6333333333;
}
#environment article .txt-wrap .art-ttl small {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: var(--cl-base-beige);
}
@media only screen and (max-width: 749px) {
  #environment article .txt-wrap .art-ttl small {
    font-size: 3.7209302326vw;
  }
}
#environment article .txt-wrap .art-ttl small {
  /* sp */
}
#environment article .txt-wrap .art-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  color: var(--cl-base-beige);
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #environment article .txt-wrap .art-ttl strong {
    font-size: 5.5813953488vw;
  }
}
#environment article .txt-wrap .art-ttl strong {
  /* sp */
}
#environment article .txt-wrap .art-txt {
  line-height: 1.875;
}
#environment article .pic-wrap {
  grid-column: 2/3;
}
@media only screen and (max-width: 749px) {
  #environment article .pic-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
#environment article .pic-wrap {
  /* sp */
}
#environment article .pic-wrap .fig-inner {
  position: relative;
}
@media only screen and (max-width: 749px) {
  #environment article .pic-wrap .fig-inner {
    padding-top: 9.3023255814vw;
  }
}
#environment article .pic-wrap .fig-inner {
  /* sp */
}
#environment article .pic-wrap .fig-inner .fig1 {
  position: relative;
  aspect-ratio: 1/1;
  z-index: 2;
}
@media only screen and (max-width: 749px) {
  #environment article .pic-wrap .fig-inner .fig1 {
    width: 62.3255813953vw;
  }
}
#environment article .pic-wrap .fig-inner .fig1 {
  /* sp */
}
#environment article .pic-wrap .fig-inner .fig2 {
  position: absolute;
  top: -22rem;
  left: 48rem;
  width: 48rem;
  z-index: 1;
}
@media only screen and (max-width: 1689px) {
  #environment article .pic-wrap .fig-inner .fig2 {
    left: 70.5882352941%;
    width: 70.5882352941%;
  }
}
#environment article .pic-wrap .fig-inner .fig2 {
  /* sp */
}
@media only screen and (max-width: 749px) {
  #environment article .pic-wrap .fig-inner .fig2 {
    top: 0;
    left: auto;
    right: 0;
    width: 43.7209302326vw;
    aspect-ratio: 188/243;
  }
}
#environment article .pic-wrap .fig-inner .fig2 {
  /* sp */
}
#environment article .pic-wrap .fig-inner .fig2 img {
  width: 100%;
  aspect-ratio: 48/62;
}
#environment article:nth-of-type(even) {
  grid-template-columns: 58.6206896552% auto;
}
@media only screen and (max-width: 749px) {
  #environment article:nth-of-type(even) {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
#environment article:nth-of-type(even) {
  /* sp */
}
#environment article:nth-of-type(even) .txt-wrap {
  grid-column: 2/3;
}
@media only screen and (max-width: 749px) {
  #environment article:nth-of-type(even) .txt-wrap {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
#environment article:nth-of-type(even) .txt-wrap {
  /* sp */
}
#environment article:nth-of-type(even) .pic-wrap {
  grid-column: 1/2;
}
@media only screen and (max-width: 749px) {
  #environment article:nth-of-type(even) .pic-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
#environment article:nth-of-type(even) .pic-wrap {
  /* sp */
}
@media only screen and (max-width: 749px) {
  #environment article:nth-of-type(even) .pic-wrap .fig-inner .fig1 {
    margin: 0 0 0 auto;
  }
}
#environment article:nth-of-type(even) .pic-wrap .fig-inner .fig1 {
  /* sp */
}
#environment article:nth-of-type(even) .pic-wrap .fig-inner .fig2 {
  left: -20rem;
}
@media only screen and (max-width: 1689px) {
  #environment article:nth-of-type(even) .pic-wrap .fig-inner .fig2 {
    left: -29.4117647059%;
  }
}
#environment article:nth-of-type(even) .pic-wrap .fig-inner .fig2 {
  /* sp */
}
@media only screen and (max-width: 749px) {
  #environment article:nth-of-type(even) .pic-wrap .fig-inner .fig2 {
    left: 0;
  }
}
#environment article:nth-of-type(even) .pic-wrap .fig-inner .fig2 {
  /* sp */
}
#environment article:nth-of-type(1) .txt-wrap::before {
  content: "01";
}
#environment article:nth-of-type(2) .txt-wrap::before {
  content: "02";
}
#environment article:nth-of-type(3) .txt-wrap::before {
  content: "03";
}
#environment article:nth-of-type(4) .txt-wrap::before {
  content: "04";
}

/* #environment */
#system {
  padding: 10rem 0 28rem;
}
@media only screen and (max-width: 749px) {
  #system {
    padding: 23.2558139535vw 0 6.976744186vw;
  }
}
#system {
  /* sp */
}
#system .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 749px) {
  #system .sec-ttl {
    gap: 1.1627906977vw;
  }
}
#system .sec-ttl {
  /* sp */
}
#system .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #system .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#system .sec-ttl small {
  /* sp */
}
#system .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #system .sec-ttl strong {
    font-size: 6.7441860465vw;
  }
}
#system .sec-ttl strong {
  /* sp */
}
#system article {
  display: grid;
  grid-template-columns: auto 75rem;
  gap: 1rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 749px) {
  #system article {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    gap: 0;
    margin-top: 4.6511627907vw;
  }
}
#system article {
  /* sp */
}
#system article:first-of-type {
  margin-top: 6rem;
}
@media only screen and (max-width: 749px) {
  #system article:first-of-type {
    margin-top: 6.976744186vw;
  }
}
#system article:first-of-type {
  /* sp */
}
#system article:not(:last-of-type) {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 749px) {
  #system article:not(:last-of-type) {
    margin-bottom: 0;
  }
}
#system article:not(:last-of-type) {
  /* sp */
}
#system article .txt-wrap {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 749px) {
  #system article .txt-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-top: -27.9069767442vw;
  }
}
#system article .txt-wrap {
  /* sp */
}
#system article .txt-wrap::before {
  font-size: 15rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  #system article .txt-wrap::before {
    font-size: 23.2558139535vw;
  }
}
#system article .txt-wrap::before {
  /* sp */
}
#system article .txt-wrap .txt-inner {
  background: #fff;
  padding: 5rem 4rem;
}
@media only screen and (max-width: 749px) {
  #system article .txt-wrap .txt-inner {
    padding: 9.3023255814vw 3.488372093vw 3.488372093vw;
  }
}
#system article .txt-wrap .txt-inner {
  /* sp */
}
#system article .txt-wrap .art-ttl {
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #system article .txt-wrap .art-ttl {
    font-size: 5.5813953488vw;
  }
}
#system article .txt-wrap .art-ttl {
  /* sp */
}
#system article .txt-wrap .art-txt {
  line-height: 1.875;
}
#system article .pic-wrap {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media only screen and (max-width: 749px) {
  #system article .pic-wrap {
    grid-column: 1/2;
  }
}
#system article .pic-wrap {
  /* sp */
}
#system article .pic-wrap figure {
  width: calc(100% + (100vw - 1360px) / 2 + 10px);
  margin-left: calc((100vw - 1360px) / -2 - 10px);
}
@media only screen and (max-width: 1359px) {
  #system article .pic-wrap figure {
    width: calc(100% + 10px);
    margin-left: -10px;
  }
}
#system article .pic-wrap figure {
  /* sp */
}
@media only screen and (max-width: 749px) {
  #system article .pic-wrap figure {
    width: 58.8372093023vw;
    margin: 0 -3.488372093vw 0 auto;
  }
}
#system article .pic-wrap figure {
  /* sp */
}
#system article:nth-of-type(even) {
  grid-template-columns: 75rem auto;
}
@media only screen and (max-width: 749px) {
  #system article:nth-of-type(even) {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
#system article:nth-of-type(even) {
  /* sp */
}
#system article:nth-of-type(even) .txt-wrap {
  grid-column: 1/2;
}
@media only screen and (max-width: 749px) {
  #system article:nth-of-type(even) .txt-wrap {
    grid-row: 2/3;
  }
}
#system article:nth-of-type(even) .txt-wrap {
  /* sp */
}
#system article:nth-of-type(even) .pic-wrap {
  grid-column: 2/3;
}
@media only screen and (max-width: 749px) {
  #system article:nth-of-type(even) .pic-wrap {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
#system article:nth-of-type(even) .pic-wrap {
  /* sp */
}
#system article:nth-of-type(even) .pic-wrap figure {
  margin-left: 0;
  margin-right: calc((100vw - 1200px) / -2 + 10px);
}
@media only screen and (max-width: 749px) {
  #system article:nth-of-type(even) .pic-wrap figure {
    margin: 0 -3.488372093vw 0 auto;
  }
}
#system article:nth-of-type(even) .pic-wrap figure {
  /* sp */
}
#system article:nth-of-type(1) .txt-wrap::before {
  content: "01";
}
#system article:nth-of-type(2) .txt-wrap::before {
  content: "02";
}
#system article:nth-of-type(3) .txt-wrap::before {
  content: "03";
}
#system article:nth-of-type(4) .txt-wrap::before {
  content: "04";
}

/* #system */
#features {
  padding: 10rem 0 0;
}
@media only screen and (max-width: 749px) {
  #features {
    padding: 23.2558139535vw 0 6.976744186vw;
  }
}
#features {
  /* sp */
}
#features .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 749px) {
  #features .sec-ttl {
    gap: 1.1627906977vw;
  }
}
#features .sec-ttl {
  /* sp */
}
#features .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #features .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#features .sec-ttl small {
  /* sp */
}
#features .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #features .sec-ttl strong {
    font-size: 6.7441860465vw;
  }
}
#features .sec-ttl strong {
  /* sp */
}
#features .home-detail {
  display: grid;
  grid-template-columns: 50rem auto;
  gap: 4rem;
  margin: 6rem 0;
}
@media only screen and (max-width: 749px) {
  #features .home-detail {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    margin-top: 6.976744186vw;
  }
}
#features .home-detail {
  /* sp */
}
#features .home-detail .txt-wrap {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 749px) {
  #features .home-detail .txt-wrap {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
#features .home-detail .txt-wrap {
  /* sp */
}
#features .home-detail .txt-wrap .detail-ttl {
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #features .home-detail .txt-wrap .detail-ttl {
    font-size: 5.5813953488vw;
    text-align: center;
  }
}
#features .home-detail .txt-wrap .detail-ttl {
  /* sp */
}
#features .home-detail .txt-wrap .detail-tbl {
  display: grid;
  grid-template-columns: 9.5em auto;
  align-items: center;
  gap: 1rem;
  background: #fff;
  margin-bottom: 1rem;
  padding: 2rem 2rem;
}
@media only screen and (max-width: 749px) {
  #features .home-detail .txt-wrap .detail-tbl {
    grid-template-columns: 7em auto;
    gap: 3.488372093vw 2.3255813953vw;
    margin-bottom: 2.3255813953vw;
    padding: 4.6511627907vw 4.6511627907vw;
  }
}
#features .home-detail .txt-wrap .detail-tbl {
  /* sp */
}
#features .home-detail .txt-wrap .detail-tbl dt {
  display: flex;
  align-items: center;
  padding: 0.25em 0;
  border-right: 1px solid var(--cl-def-black);
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 749px) {
  #features .home-detail .txt-wrap .detail-tbl dt {
    border-right: 0;
    font-size: 3.7209302326vw;
  }
}
#features .home-detail .txt-wrap .detail-tbl dt {
  /* sp */
}
#features .home-detail .txt-wrap .detail-tbl dt::before {
  content: "";
  display: inline-block;
  background: var(--cl-def-black);
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.5em;
  border-radius: 50%;
}
#features .home-detail .txt-wrap .detail-tbl dd {
  padding-left: 1em;
}
@media only screen and (max-width: 749px) {
  #features .home-detail .txt-wrap .detail-tbl dd {
    border-left: 1px solid var(--cl-def-black);
    line-height: 1.7142857143;
  }
}
#features .home-detail .txt-wrap .detail-tbl dd {
  /* sp */
}
#features .home-detail .txt-wrap .art-txt {
  line-height: 1.875;
}
#features .home-detail .pic-wrap {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
}
#features .home-features .tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tabs {
    gap: 5.8139534884vw;
    padding-bottom: 5.5813953488vw;
  }
}
#features .home-features .tabs {
  /* sp */
}
#features .home-features .tabs label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0.75em;
  border: 1px solid var(--cl-base);
  font-size: 2.4rem;
  color: var(--cl-base);
  cursor: pointer;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tabs label {
    padding: 0.5em 0.25em;
    font-size: 3.2558139535vw;
  }
}
#features .home-features .tabs label {
  /* sp */
}
#features .home-features .tabs label::after {
  content: "";
  position: absolute;
  bottom: -2.8rem;
  left: 50%;
  display: none;
  width: 2rem;
  height: 1.7rem;
  border-top: 1.7rem solid var(--cl-base);
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-bottom: none;
  transform: translateX(-50%);
}
@media only screen and (max-width: 749px) {
  #features .home-features .tabs label::after {
    bottom: -2.7906976744vw;
    width: 1.8604651163vw;
    height: 1.6279069767vw;
    border-top: 1.6279069767vw solid var(--cl-base);
    border-left: 0.9302325581vw solid transparent;
    border-right: 0.9302325581vw solid transparent;
  }
}
#features .home-features .tabs label::after {
  /* sp */
}
#features .home-features .tab-content {
  display: none;
  width: calc(100% - 4rem);
  margin: 0 auto;
  background: #fff;
  padding: 6rem 0 0;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tab-content {
    width: 100%;
    padding: 9.3023255814vw 0 0;
    overflow-x: scroll;
  }
}
#features .home-features .tab-content {
  /* sp */
}
#features .home-features .tab-content__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tab-content__ttl {
    font-size: 5.5813953488vw;
    line-height: 1.25;
  }
}
#features .home-features .tab-content__ttl {
  /* sp */
}
#features .home-features .tab-content__wrap {
  width: 100%;
  overflow-x: scroll;
}
#features .home-features .tab-content__inner {
  display: grid;
  grid-template-columns: repeat(3, min(50rem, (100% - 12rem) / 3));
  gap: 6rem;
  justify-content: center;
  padding: 5rem 6rem 6rem;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tab-content__inner {
    grid-template-columns: repeat(3, 72.5581395349vw);
    width: 236.2790697674vw;
    gap: 5.8139534884vw;
    padding: 9.3023255814vw 3.488372093vw 11.6279069767vw;
  }
}
#features .home-features .tab-content__inner {
  /* sp */
}
#features .home-features .tab-content__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tab-content__item {
    gap: 3.488372093vw;
  }
}
#features .home-features .tab-content__item {
  /* sp */
}
#features .home-features .tab-content__item .item__ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tab-content__item .item__ttl {
    font-size: 3.7209302326vw;
  }
}
#features .home-features .tab-content__item .item__ttl {
  /* sp */
}
#features .home-features .tab-content__item .item__txt {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media only screen and (max-width: 749px) {
  #features .home-features .tab-content__item .item__txt {
    font-size: 3.2558139535vw;
  }
}
#features .home-features .tab-content__item .item__txt {
  /* sp */
}
#features .home-features input[type=radio] {
  display: none;
}
#features .home-features #tab1:checked ~ .contents .content1 {
  display: block;
}
#features .home-features #tab1:checked ~ .tabs label[for=tab1] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-features #tab1:checked ~ .tabs label[for=tab1]::after {
  display: inline-block;
}
#features .home-features #tab2:checked ~ .contents .content2 {
  display: block;
}
#features .home-features #tab2:checked ~ .tabs label[for=tab2] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-features #tab2:checked ~ .tabs label[for=tab2]::after {
  display: inline-block;
}
#features .home-features #tab3:checked ~ .contents .content3 {
  display: block;
}
#features .home-features #tab3:checked ~ .tabs label[for=tab3] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-features #tab3:checked ~ .tabs label[for=tab3]::after {
  display: inline-block;
}
#features .home-features #tab4:checked ~ .contents .content4 {
  display: block;
}
#features .home-features #tab4:checked ~ .tabs label[for=tab4] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-features #tab4:checked ~ .tabs label[for=tab4]::after {
  display: inline-block;
}
#features {
  /* .home-features */
}
#features .home-floorplan {
  padding: 14rem 0 0;
}
@media only screen and (max-width: 749px) {
  #features .home-floorplan {
    padding: 9.3023255814vw 0 0;
  }
}
#features .home-floorplan {
  /* sp */
}
#features .home-floorplan input[type=checkbox],
#features .home-floorplan input[type=radio] {
  display: none;
}
#features .home-floorplan .plan__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cl-base);
  width: 48rem;
  height: 8rem;
  margin: 0 auto;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 749px) {
  #features .home-floorplan .plan__btn {
    width: 73.488372093vw;
    font-size: 3.488372093vw;
  }
}
#features .home-floorplan .plan__btn {
  /* sp */
}
#features .home-floorplan .plan__btn::before, #features .home-floorplan .plan__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4rem;
  display: inline-block;
  background: #fff;
  width: 2rem;
  height: 0.1rem;
}
@media only screen and (max-width: 749px) {
  #features .home-floorplan .plan__btn::before, #features .home-floorplan .plan__btn::after {
    width: 2.7906976744vw;
  }
}
#features .home-floorplan .plan__btn::before, #features .home-floorplan .plan__btn::after {
  /* sp */
}
#features .home-floorplan .plan__btn::after {
  transform: rotate(90deg);
  transform-origin: center;
}
#features .home-floorplan .plan__btn:has(+ input[type=checkbox]:checked)::after {
  transform: rotate(0);
}
#features .home-floorplan {
  /* .plan__btn */
}
#features .home-floorplan .plan__wrap {
  display: none;
  background: #fff;
  margin-top: 5rem;
  padding: 3rem 6rem;
}
@media only screen and (max-width: 749px) {
  #features .home-floorplan .plan__wrap {
    width: calc(100% + 6.976744186vw);
    margin-left: -3.488372093vw;
    padding: 4.6511627907vw 3.488372093vw;
  }
}
#features .home-floorplan .plan__wrap {
  /* sp */
}
#features .home-floorplan {
  /* .plan__wrap */
}
#features .home-floorplan input[type=checkbox]:checked + .plan__wrap {
  display: block;
}
#features .home-floorplan .tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding: 0 5rem;
}
@media only screen and (max-width: 749px) {
  #features .home-floorplan .tabs {
    gap: 5.8139534884vw;
    padding: 0;
  }
}
#features .home-floorplan .tabs {
  /* sp */
}
#features .home-floorplan .tabs label {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0.75em;
  border: 1px solid var(--cl-base);
  font-size: 2.4rem;
  color: var(--cl-base);
  cursor: pointer;
}
@media only screen and (max-width: 749px) {
  #features .home-floorplan .tabs label {
    padding: 0.5em 0.25em;
    font-size: 3.2558139535vw;
  }
}
#features .home-floorplan .tabs label {
  /* sp */
}
#features .home-floorplan .planfig {
  display: none;
}
#features .home-floorplan #plan1:checked ~ #fig1 {
  display: block;
}
#features .home-floorplan #plan1:checked ~ .tabs label[for=plan1] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-floorplan #plan2:checked ~ #fig2 {
  display: block;
}
#features .home-floorplan #plan2:checked ~ .tabs label[for=plan2] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-floorplan #plan3:checked ~ #fig3 {
  display: block;
}
#features .home-floorplan #plan3:checked ~ .tabs label[for=plan3] {
  background: var(--cl-base);
  color: #fff;
}
#features .home-floorplan #plan4:checked ~ #fig4 {
  display: block;
}
#features .home-floorplan #plan4:checked ~ .tabs label[for=plan4] {
  background: var(--cl-base);
  color: #fff;
}
#features {
  /* .home-floorplan */
} /* #features */
#access {
  padding: 10rem 0 0;
}
@media only screen and (max-width: 749px) {
  #access {
    padding: 23.2558139535vw 0 6.976744186vw;
  }
}
#access {
  /* sp */
}
#access .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 749px) {
  #access .sec-ttl {
    gap: 1.1627906977vw;
  }
}
#access .sec-ttl {
  /* sp */
}
#access .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #access .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#access .sec-ttl small {
  /* sp */
}
#access .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #access .sec-ttl strong {
    font-size: 6.7441860465vw;
  }
}
#access .sec-ttl strong {
  /* sp */
}
#access .access-gmap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1320/695;
  margin: 6rem 0;
}
@media only screen and (max-width: 749px) {
  #access .access-gmap {
    aspect-ratio: 400/320;
    margin: 6.976744186vw 0;
  }
}
#access .access-gmap {
  /* sp */
}
#access .access-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access {
  /* .access-gmap */
}
#access .access-tbl {
  display: grid;
  grid-template-columns: 9.5em auto;
  align-items: start;
  gap: 1rem;
  margin: 0;
  padding: 2.5rem 5rem 0;
}
@media only screen and (max-width: 749px) {
  #access .access-tbl {
    grid-template-columns: 6.5em auto;
    gap: 3.488372093vw 2.3255813953vw;
    padding: 0;
  }
}
#access .access-tbl {
  /* sp */
}
#access .access-tbl dt {
  display: flex;
  align-items: center;
  padding: 0.25em 0;
  border-right: 1px solid var(--cl-def-black);
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 749px) {
  #access .access-tbl dt {
    border-right: 0;
    font-size: 3.7209302326vw;
  }
}
#access .access-tbl dt {
  /* sp */
}
#access .access-tbl dt::before {
  content: "";
  display: inline-block;
  background: var(--cl-def-black);
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.5em;
  border-radius: 50%;
}
#access .access-tbl dd {
  padding: 0 0 0 1em;
  line-height: 2;
}
@media only screen and (max-width: 749px) {
  #access .access-tbl dd {
    border-left: 1px solid var(--cl-def-black);
    line-height: 1.7142857143;
  }
}
#access .access-tbl dd {
  /* sp */
}
#access {
  /* .access-tbl */
} /* #access */
#price {
  padding: 15rem 0 0;
}
@media only screen and (max-width: 749px) {
  #price {
    padding: 23.2558139535vw 0 6.976744186vw;
  }
}
#price {
  /* sp */
}
#price .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 749px) {
  #price .sec-ttl {
    gap: 1.1627906977vw;
  }
}
#price .sec-ttl {
  /* sp */
}
#price .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #price .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#price .sec-ttl small {
  /* sp */
}
#price .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #price .sec-ttl strong {
    font-size: 6.7441860465vw;
  }
}
#price .sec-ttl strong {
  /* sp */
}
#price .price__wrap {
  background: #fff;
  margin-top: 6rem;
  padding: 6rem 5rem;
}
@media only screen and (max-width: 749px) {
  #price .price__wrap {
    margin-top: 6.976744186vw;
    padding: 4.6511627907vw 3.488372093vw;
  }
}
#price .price__wrap {
  /* sp */
}
#price .price__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 10rem;
}
@media only screen and (max-width: 749px) {
  #price .price__inner {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 4.6511627907vw;
  }
}
#price .price__inner {
  /* sp */
}
#price .price__inner dl {
  border: 1px solid var(--cl-dark-beige);
}
#price .price__inner dl dt {
  display: block;
  background: var(--cl-dark-beige);
  padding: 0.75em 0;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dt {
    font-size: 5.5813953488vw;
  }
}
#price .price__inner dl dt {
  /* sp */
}
#price .price__inner dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 3rem;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dd {
    padding: 6.976744186vw 3.488372093vw;
  }
}
#price .price__inner dl dd {
  /* sp */
}
#price .price__inner dl dd p:not(.sum) {
  display: flex;
  flex-direction: column;
  width: 31%;
}
#price .price__inner dl dd p:not(.sum) {
  /* sp */
}
#price .price__inner dl dd p:not(.sum).clm-single {
  width: 100%;
  min-width: 0;
}
#price .price__inner dl dd p:not(.sum) span {
  display: flex;
  justify-content: center;
  background: var(--cl-base-gray);
  padding: 0.75em 0;
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dd p:not(.sum) span {
    font-size: 3.7209302326vw;
  }
}
#price .price__inner dl dd p:not(.sum) span {
  /* sp */
}
#price .price__inner dl dd p:not(.sum) strong {
  padding: 0.5em 0.1em;
  font-size: 5rem;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dd p:not(.sum) strong {
    font-size: 6.976744186vw;
  }
}
#price .price__inner dl dd p:not(.sum) strong {
  /* sp */
}
#price .price__inner dl dd p:not(.sum) strong small {
  font-size: 2.4rem;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dd p:not(.sum) strong small {
    font-size: 4.1860465116vw;
  }
}
#price .price__inner dl dd p:not(.sum) strong small {
  /* sp */
}
#price .price__inner dl dd p.sum {
  display: block;
  width: 100%;
  border-top: 1px solid var(--cl-def-black);
  padding: 1em 0 0;
  font-size: 2rem;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dd p.sum {
    font-size: 3.7209302326vw;
  }
}
#price .price__inner dl dd p.sum {
  /* sp */
}
#price .price__inner dl dd p.sum strong {
  font-size: 5rem;
}
@media only screen and (max-width: 749px) {
  #price .price__inner dl dd p.sum strong {
    margin-left: 1.5em;
    font-size: 8.3720930233vw;
  }
}
#price .price__inner dl dd p.sum strong {
  /* sp */
}
#price .price__notes {
  margin-top: 2rem;
}
@media only screen and (max-width: 749px) {
  #price .price__notes {
    margin-top: 4.6511627907vw;
  }
}
#price .price__notes {
  /* sp */
}
#price .price__notes li {
  position: relative;
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media only screen and (max-width: 749px) {
  #price .price__notes li {
    font-size: 3.2558139535vw;
  }
}
#price .price__notes li {
  /* sp */
}
#price .price__notes li:not(:last-child) {
  margin-bottom: 0.5em;
}
#price .price__notes li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/* #price */
#greetings {
  padding: 25rem 0 0;
}
@media only screen and (max-width: 749px) {
  #greetings {
    padding: 23.2558139535vw 0 6.976744186vw;
  }
}
#greetings {
  /* sp */
}
#greetings .sec-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 749px) {
  #greetings .sec-ttl {
    gap: 1.1627906977vw;
  }
}
#greetings .sec-ttl {
  /* sp */
}
#greetings .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #greetings .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#greetings .sec-ttl small {
  /* sp */
}
#greetings .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #greetings .sec-ttl strong {
    font-size: 6.7441860465vw;
  }
}
#greetings .sec-ttl strong {
  /* sp */
}
#greetings .greetings__wrap {
  display: grid;
  grid-template-columns: auto 42.4242424242%;
  gap: 1rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 749px) {
  #greetings .greetings__wrap {
    grid-template-columns: 100%;
    grid-template-rows: auto;
    background: #fff;
    margin-top: 6.976744186vw;
    padding: 3.488372093vw;
  }
}
#greetings .greetings__wrap {
  /* sp */
}
#greetings .greetings__wrap .txt-wrap {
  background: #fff;
  border-radius: 1.2rem;
  padding: 5rem;
}
@media only screen and (max-width: 749px) {
  #greetings .greetings__wrap .txt-wrap {
    grid-row: 2/3;
    padding: 6.976744186vw 0;
  }
}
#greetings .greetings__wrap .txt-wrap {
  /* sp */
}
#greetings .greetings__wrap .txt-wrap .ttl {
  margin-bottom: 1em;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #greetings .greetings__wrap .txt-wrap .ttl {
    font-size: 5.5813953488vw;
  }
}
#greetings .greetings__wrap .txt-wrap .ttl {
  /* sp */
}
#greetings .greetings__wrap .txt-wrap p {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media only screen and (max-width: 749px) {
  #greetings .greetings__wrap .txt-wrap p {
    font-size: 3.2558139535vw;
    line-height: 2.2857142857;
  }
}
#greetings .greetings__wrap .txt-wrap p {
  /* sp */
}
#greetings .greetings__wrap .txt-wrap p + p {
  margin-top: 1.5em;
}
#greetings .greetings__wrap .txt-wrap p.sign {
  font-size: 2.9rem;
  font-weight: bold;
  color: var(--cl-base-blue);
}
@media only screen and (max-width: 749px) {
  #greetings .greetings__wrap .txt-wrap p.sign {
    font-size: 4.1860465116vw;
  }
}
#greetings .greetings__wrap .txt-wrap p.sign {
  /* sp */
}
#greetings .greetings__wrap .pic-wrap {
  border-radius: 1.2rem;
  overflow: hidden;
}
@media only screen and (max-width: 749px) {
  #greetings .greetings__wrap .pic-wrap {
    grid-row: 1/2;
  }
}
#greetings .greetings__wrap .pic-wrap {
  /* sp */
}

/* #greetings */
#contact {
  padding: 20rem 0 0;
}
@media only screen and (max-width: 749px) {
  #contact {
    padding: 23.2558139535vw 0 0;
  }
}
#contact {
  /* sp */
}
#contact .sec-ttl {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: var(--cl-base-blue);
  width: 100%;
  height: 12rem;
  margin-bottom: 6rem;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  #contact .sec-ttl {
    gap: 2.3255813953vw;
    height: auto;
    margin-bottom: 6.976744186vw;
    padding: 4.6511627907vw;
  }
}
#contact .sec-ttl {
  /* sp */
}
#contact .sec-ttl small {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #contact .sec-ttl small {
    font-size: 4.1860465116vw;
  }
}
#contact .sec-ttl small {
  /* sp */
}
#contact .sec-ttl strong {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #contact .sec-ttl strong {
    font-size: 5.5813953488vw;
    text-align: center;
    line-height: 1.25;
  }
}
#contact .sec-ttl strong {
  /* sp */
}
#contact .mw_wp_form {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 24rem;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form {
    padding-bottom: 13.9534883721vw;
  }
}
#contact .mw_wp_form {
  /* sp */
}
#contact .mw_wp_form .form-lead {
  width: 100rem;
  margin: 0 auto;
  line-height: 1.7777777778;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form .form-lead {
    width: 100%;
  }
}
#contact .mw_wp_form .form-lead {
  /* sp */
}
#contact .mw_wp_form .form-lead + .form-lead {
  margin-top: 2em;
}
#contact .mw_wp_form dl {
  display: grid;
  grid-template-columns: 30rem auto;
  gap: 4rem 7rem;
  width: 106rem;
  margin: 7em auto 3em;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form dl {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 6.976744186vw;
    width: 100%;
    margin: 3em auto;
  }
}
#contact .mw_wp_form dl {
  /* sp */
}
#contact .mw_wp_form dl > dt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0.75em;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form dl > dt {
    gap: 2.3255813953vw;
    margin-bottom: 0;
    font-size: 4.1860465116vw;
  }
  #contact .mw_wp_form dl > dt:not(:first-of-type) {
    margin-top: 5.8139534884vw;
  }
}
#contact .mw_wp_form dl > dt {
  /* sp */
}
#contact .mw_wp_form dl > dt.require::after {
  content: "【必須】";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  margin-bottom: 3px;
  padding: 0.25em 0;
  color: var(--cl-base-red);
  line-height: 1;
  vertical-align: middle;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form dl > dt.require::after {
    display: none;
  }
}
#contact .mw_wp_form dl > dt.require::after {
  /* sp */
}
#contact .mw_wp_form dl > dt {
  /* &.require::after */
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form dl > dt.require strong::after {
    content: "【必須】";
    display: inline-block;
    margin-left: 2em;
    margin-bottom: 0.2em;
    padding: 0.25em 0;
    font-size: 3.7209302326vw;
    color: var(--cl-base-red);
    line-height: 1;
    vertical-align: middle;
  }
  #contact .mw_wp_form dl > dt {
    /* &.require::after */
  }
}
#contact .mw_wp_form dl > dt {
  /* sp */
}
#contact .mw_wp_form dl > dt strong {
  position: relative;
  padding: 0.25em 0 0.25em 2rem;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form dl > dt strong {
    font-size: 4.1860465116vw;
    padding-left: 4.6511627907vw;
  }
}
#contact .mw_wp_form dl > dt strong {
  /* sp */
}
#contact .mw_wp_form dl > dt strong::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: var(--cl-base-blue);
  width: 0.6rem;
  height: 100%;
  border-radius: 0.3rem;
}
#contact .mw_wp_form dl > dt small {
  padding: 0 0 0 2rem;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form dl > dt small {
    padding-left: 4.6511627907vw;
  }
}
#contact .mw_wp_form dl > dt small {
  /* sp */
}
#contact .mw_wp_form .privacy {
  width: 106rem;
  margin: 0 auto;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form .privacy {
    width: 100%;
    margin-bottom: 11.6279069767vw;
  }
}
#contact .mw_wp_form .privacy .privacy-wrap {
  background: #fff;
  width: 100%;
  height: 30rem;
  padding: 2em 3em;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
  overflow-y: scroll;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form .privacy .privacy-wrap {
    padding: 2em 1.5em;
  }
}
#contact .mw_wp_form .privacy .privacy-wrap .privacy-ttl {
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form .privacy .privacy-wrap .privacy-ttl {
    font-size: 4.1860465116vw;
  }
}
#contact .mw_wp_form .privacy .privacy-wrap p {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media only screen and (max-width: 749px) {
  #contact .mw_wp_form .privacy .privacy-wrap p {
    font-size: 3.7209302326vw;
  }
}
#contact .mw_wp_form .privacy .normal_check {
  display: flex;
  justify-content: center;
  margin-top: 2em;
}
#contact .mw_wp_form .privacy .normal_check .error {
  padding-top: 0;
  text-align: center;
}
#contact.confirm {
  padding-top: 10rem;
}
#contact.confirm .privacy {
  display: none;
}
#contact.thanks {
  padding: 10rem 0 20rem;
}
#contact.thanks .message {
  padding: 10rem 0 20rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #contact.thanks .message {
    font-size: 4.1860465116vw;
  }
}
#contact.thanks .form-buttons {
  display: flex;
  justify-content: center;
}
#contact.thanks .form-buttons .btn {
  appearance: button;
  background: #fff;
  display: flex;
  align-items: center;
  width: auto;
  height: 12rem;
  margin: 0 5px;
  padding: 0 2em;
  border: 1px solid #B9CCC5;
  border-radius: 2.5rem;
  font-size: 2.6rem;
  color: var(--cl-def-black);
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media only screen and (max-width: 749px) {
  #contact.thanks .form-buttons .btn {
    width: 79.0697674419vw;
    height: 17.2093023256vw;
    margin: 0 auto;
    padding: 0.5em 50px;
    font-size: 4.1860465116vw;
  }
}

/* #contact */
/* ページ先頭へボタン */
.pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  z-index: 99;
}
@media only screen and (max-width: 749px) {
  .pagetop {
    bottom: 6.976744186vw;
    right: 6.976744186vw;
    width: 13.9534883721vw;
    height: 13.9534883721vw;
  }
}
.pagetop {
  /* sp */
}
.pagetop a {
  position: relative;
  background-color: var(--cl-dark-blue);
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  text-indent: -9999px;
  transition: all 0.3s linear;
}
.pagetop a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -25%) rotate(45deg);
  transform-origin: center;
}
@media only screen and (max-width: 749px) {
  .pagetop a::after {
    width: 3.7209302326vw;
    height: 3.7209302326vw;
  }
}
.pagetop a::after {
  /* sp */
}
.pagetop a:hover {
  opacity: 0.7;
}
.pagetop.stop {
  position: absolute;
}

footer {
  background: var(--cl-dark-gray);
  padding: 4rem 0 2.5rem;
}
@media only screen and (max-width: 749px) {
  footer {
    margin: 23.2558139535vw 0 0;
  }
}
footer {
  /* sp */
}
footer #f-logo {
  display: flex;
  justify-content: center;
  grid-column: 2/3;
  grid-row: 1/2;
  width: 100%;
  margin-bottom: 1.5rem;
  z-index: 9999;
}
footer #f-logo .logo-wrap {
  width: 42.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 749px) {
  footer #f-logo .logo-wrap {
    width: 78.6046511628vw;
  }
}
footer #f-logo .logo-wrap {
  /* sp */
}
footer #f-logo .logo-wrap strong {
  width: 100%;
}
footer #f-logo .logo-wrap strong img {
  width: 100%;
  height: auto;
}
footer #f-logo .logo-wrap small {
  padding: 0 0 0 16%;
  font-size: 1.4rem;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  footer #f-logo .logo-wrap small {
    font-size: 3.2558139535vw;
  }
}
footer #f-logo .logo-wrap small {
  /* sp */
}
footer {
  /* #f-logo */
}
footer #f-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: auto;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  footer #f-contact {
    gap: 2.3255813953vw;
  }
}
footer #f-contact {
  /* sp */
}
footer #f-contact .address {
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  footer #f-contact .address {
    margin-bottom: 4.6511627907vw;
    font-size: 3.2558139535vw;
  }
}
footer #f-contact .address {
  /* sp */
}
footer #f-contact .tel {
  font-size: 1.6rem;
}
@media only screen and (max-width: 749px) {
  footer #f-contact .tel {
    font-size: 4.4186046512vw;
  }
}
footer #f-contact .tel {
  /* sp */
}
footer #f-contact .tel strong {
  font-size: 2.4rem;
}
@media only screen and (max-width: 749px) {
  footer #f-contact .tel strong {
    font-size: 6.7441860465vw;
  }
}
footer #f-contact .tel strong {
  /* sp */
}
footer #f-contact .open {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 749px) {
  footer #f-contact .open {
    font-size: 3.9534883721vw;
  }
}
footer #f-contact .open {
  /* sp */
}
footer #f-contact .open small {
  font-size: 1.2rem;
}
@media only screen and (max-width: 749px) {
  footer #f-contact .open small {
    font-size: 2.7906976744vw;
  }
}
footer #f-contact .open small {
  /* sp */
}
footer #f-contact .btn {
  font-size: 1.4rem;
}
@media only screen and (max-width: 749px) {
  footer #f-contact .btn {
    font-size: 3.9534883721vw;
  }
}
footer #f-contact .btn {
  /* sp */
}
footer #f-contact .btn a {
  display: flex;
  justify-content: center;
  background: var(--cl-base-blue);
  width: 100%;
  padding: 0.75em;
}
footer #f-contact .btn a span {
  display: flex;
  align-items: center;
  background: none;
  color: #fff;
}
footer #f-contact .btn a span::after {
  content: "";
  display: inline-block;
  background: url(/lp/assets/images/arrow-r.svg) no-repeat center/cover;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
}
footer {
  /* #f-contact */
}
footer #f-nav {
  padding: 5rem 0 0;
}
@media only screen and (max-width: 749px) {
  footer #f-nav {
    padding: 6.976744186vw 0 0;
  }
}
footer #f-nav {
  /* sp */
}
footer #f-nav ul {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 749px) {
  footer #f-nav ul {
    flex-direction: column;
  }
}
footer #f-nav ul {
  /* sp */
}
footer #f-nav ul li {
  padding: 0.5em 2em;
  border-right: 1px solid #fff;
  font-size: 1.4rem;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  footer #f-nav ul li {
    padding: 1em 3em;
    border-right: 0;
    border-bottom: 1px solid #fff;
    font-size: 3.7209302326vw;
  }
  footer #f-nav ul li:first-child {
    border-top: 1px solid #fff;
  }
}
footer #f-nav ul li {
  /* sp */
}
footer #f-nav ul li:last-child {
  border-right: none;
}
footer {
  /* #f-nav */
}
footer #f-credit {
  padding: 4rem 0 0;
  text-align: center;
}
@media only screen and (max-width: 749px) {
  footer #f-credit {
    padding: 11.6279069767vw 0 0;
  }
}
footer #f-credit {
  /* sp */
}
footer #f-credit small {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  footer #f-credit small {
    font-size: 2.7906976744vw;
  }
}
footer #f-credit small {
  /* sp */
}

/* footer */

/*# sourceMappingURL=style.css.map */
