/**********************
- ROOT
- BASE
- GENERAL
  -- FONT
  -- ALIGN
  -- FLEX
  -- LIST
  -- OTHER
- HEADER
- BREADCRUMB
- CONTAINER
- HEADING
- BUTTON
- FOOTER
- ARCHIVE
- SINGLE
- CONTACT
- FRONT
- PAGE PARTS
- LOADING
- COLOR
- MARGIN
- ANIMATION
- RESPONSIVE
***********************/

/**********************
* ブレイクポイント
* 560px/960px
**********************/


/*********************
ROOT
**********************/
:root {
  --base: #FFF;
  --bg-1: #EBF5F3;
  --bg-2: #FFFBBF;
  --text-main: #2F3034;
  --text-sub: #7E7F83;

  --main-color-1: #009977;
  --main-color-2: #6BCCF0;
  --main-color-3: #BCE3F2;
  --sub-color-1: #FFF000;
  --sub-color-2: #FFFBB3;
  --accent-color-1: #E25405;
  --accent-color-2: #FFEC5A;
  --gradient: linear-gradient(45deg, #E25405, #E29805);

  --font-jp: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --font-en: 'Oswald', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --font-accent: "Montserrat", sans-serif;
  --font-number: "Akshar", sans-serif;
  --light: 300;
  --normal: 400;
  --bold: 700;

  --container: calc(1920px + 6%);
  --container-side: 3%;
  --container-ll: 1800px;
  --container-l: 1200px;
  --container-m: 960px;
  --container-s: 660px;
  --container-ss: 480px;

}


/*********************
BASE
*********************/
html {
  font-size: 62.5%;
}

body {
  background-color: var(--base);
  color: var(--text-main);
  font-family: var(--font-jp);
  font-weight: var(--normal);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.75;
  overflow: visible;
  position: relative;
}

section {
  position: relative;
  width: 100%;
  margin-top: 120px;
  padding: 120px 0;
  overflow: hidden;
}

section.inline_content {
  padding: 0;
}

h1,
h2,
h3 {
  font-weight: var(--normal);
}

a {
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

img {
  height: auto;
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

ol,
ul {
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
}



@media only screen and (max-width: 960px) {
  section {
    margin-top: 100px;
    padding: 60px 0;
  }

  body {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 560px) {
  body {
    font-size: 1.4rem;
  }

  section {
    margin-top: 60px;
  }

}


/*********************
GENERAL
*********************/

/*FONT*/
.font-en {
  font-family: var(--font-en);
}

.small {
  font-size: .85em;
}

.large {
  font-size: 1.2em;
}

.strong {
  font-weight: var(--bold);
}

.uppercase {
  text-transform: uppercase;
}

.line-heighter,
.line-heighter * {
  line-height: 2.1;
}

.line-heighter p {
  margin: 0 0 2em;
}


/*ALIGN*/
.center {
  text-align: center;
}

.center>* {
  margin-left: auto;
  margin-right: auto;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}


/*IMAGE*/
.img-circle {
  border-radius: 50%;
}

.img-radius {
  border-radius: 30px;
}

.img-object {
  padding-top: 66%;
  position: relative;
  overflow: hidden;
}

.img-object>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/*FLEX*/
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.flex-column {
  flex-direction: column;
}

.nowrap {
  flex-wrap: nowrap;
}

.space-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}

.cell {
  position: relative;
}

.cell img {
  display: block;
  width: 100%;
}

.cell>*:last-child {
  margin-bottom: 0;
}

.cell--1-2 {
  width: 48%;
}

.cell--1-3 {
  width: 30%;
}

.cell--1-4 {
  width: 23%;
}

.cell--2-3 {
  width: 60%;
}

.cell--3-4 {
  width: 73%;
}


@media only screen and (max-width: 560px) {
  .flex {
    flex-direction: column;
  }

  .cell--1-2,
  .cell--1-3,
  .cell--1-4,
  .cell--2-3,
  .cell--3-4 {
    margin-bottom: 1em;
    width: 100%;
  }

  .order0 {
    order: 0;
  }

  .order1 {
    order: 1;
  }
}


/*LIST*/
.list-none {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-dot li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 0 1em;
}

.list-dot li::before {
  content: '';
  background-color: var(--main-color-2);
  border-radius: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: .5em;
}


/*OTHER*/
.relative {
  position: relative;
}

.block {
  display: block;
}

.shadow {
  box-shadow: 0 0 1.8rem -1rem rgb(0 0 0 / 27%);
}

.marker {
  background: linear-gradient(transparent 60%, var(--sub-color-2) 60%);
}

.box {
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
}

.box>*:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 560px) {
  .box {
    padding: 20px;
  }

}



/*********************
side_banner
*********************/
.side_banner a {
  position: fixed;
  top: 14%;
  right: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  font-size: 1.6rem;
  color: var(--accent-color-1);
  font-weight: 700;
  border: 2px solid var(--accent-color-1);
  background-color: #fff;
  padding: 20px 10px;
  z-index: 1000;
  border-radius: 0 0 0 20px;
}

.side_banner a span {
  font-size: 2rem;
}

@media screen and (max-width: 960px) {
  .side_banner a {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: auto;
    width: auto;
    height: auto;
    flex-direction: column;
    bottom: 1%;
    right: 1%;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    text-orientation: inherit;
    font-size: 1.2rem;
    border-radius: 50%;
    padding: 2%;
    aspect-ratio: 1/1;
    white-space: nowrap;
    line-height: .8em;
  }

  .side_banner a span {
    font-size: 1.4rem;
  }
}

/*********************
HEADER
*********************/
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}

.header-inner {
  max-width: var(--container);
  padding: 15px var(--container-side);
  margin: 0 auto;
}

.header-logo {
  width: 15.9%;
}

.header-title {
  margin: 0;
}

#drawer-input {
  display: none;
}

.header-nav-item {
  list-style: none;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 700;
}

.header-nav-link {
  color: var(--text-main);
  display: block;
  font-family: var(--font-en);
  position: relative;
  text-decoration: none;
}

.header-cta-button a {
  padding: 0.6em 1.8em;
  font-size: clamp(18px, 1.05vw, 20px);
  font-weight: 700;
  color: #fff;
  background: var(--gradient);
  border-radius: 999px;
  margin-left: 20px;
  white-space: nowrap;
}


@media only screen and (min-width: 1600px) {
  .header-inner {
    display: grid;
    grid-template-columns: 15.9% 1fr auto;
    grid-template-rows: auto;
    grid-template-areas:
      "logo nav cta";
    align-items: center;
    gap: 0;
  }

  .header-logo {
    grid-column: 1 / 2;
    grid-row: auto;
    width: 100%;
  }

  .drawer-wrap {
    grid-column: 2 / 3;
    grid-row: auto;
    justify-self: end;
  }

  .header-cta-wrap {
    grid-column: 3 / 4;
    grid-row: auto;
  }

  .tel-button {
    margin-left: 24px;
  }
}

@media (min-width: 961px) and (max-width: 1600px) {
  .header-inner {
    display: grid;
    grid-template-columns: 15.9% 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "logo cta"
      "nav  nav";
    align-items: center;
    gap: 10px;
  }

  .header-logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
  }

  .header-cta-wrap {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: auto;
  }

  .drawer-wrap {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    margin: auto;
  }


}

@media only screen and (min-width: 961px) {
  .header-nav-list {
    display: flex;
    margin: 0;
    padding: 0;
  }

  .drawer-content {
    display: flex;
    align-items: center;
  }

  .header-cta-wrap {
    display: flex;
    align-items: center;
  }

  .header-nav-item .header-nav-link {
    padding: 0 12px;
  }

  .header-nav-item+.header-nav-item {
    border-left: 1px solid #999;
  }
}

@media only screen and (max-width: 960px) {
  .header {
    padding: 15px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }

  .header-cta-button a {
    padding: 10px 16px;
    font-size: 14px;
    margin-left: 0;
    margin-right: 30px;
  }

  #drawer-content {
    background: linear-gradient(45deg, rgba(0, 153, 119, .92) 0%, rgba(0, 153, 119, .92) 100%);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    height: 100%;
    width: 100%;
    z-index: -1;
    padding: 0 15px;
  }

  #drawer-content::after {
    position: absolute;
    content: "";
    display: inline-block;
    mask-image: url(../../assets/images/road-sign-lp/header_open_logo.svg);
    background: #fff;
    mask-position: center center;
    mask-repeat: no-repeat;
    mask-size: cover;
    width: 120px;
    height: 18px;
    top: 22px;
    left: 15px;
  }

  #drawer-open {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 10px;
    height: 25px;
    width: 25px;
    outline: none;
    z-index: 1000;
    transform: translateY(-50%);
  }

  #drawer-open span {
    content: '';
    background-color: var(--main-color-1);
    display: block;
    height: 2px;
    width: 22px;
    position: absolute;
    transition: 0.3s ease;
    transform-origin: right;
  }

  #drawer-open span.top {
    top: 5px;
  }

  #drawer-open span.bottom {
    bottom: 4px;
  }

  #drawer-input:checked~#drawer-open span {
    background-color: #fff;
  }

  #drawer-input:checked~#drawer-open span.top {
    top: 4px;
    transform: rotate(-45deg);
  }

  #drawer-input:checked~#drawer-open span.middle {
    display: none;
  }

  #drawer-input:checked~#drawer-open span.bottom {
    bottom: 3px;
    transform: rotate(45deg);
  }

  #drawer-input:checked~#drawer-content {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }

  .header-logo {
    width: 120px;
  }

  .header-nav-list {
    margin: 0;
    padding: 74px 0 0;
  }

  .header-nav-item {
    border-bottom: 1px dotted #fff;
  }

  .header-nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    padding: 2rem 0 0.2rem;
    position: relative;
  }

  .header-nav-link::after {
    position: absolute;
    content: "";
    background: url(../../assets/images/road-sign-lp/nev_arrow.png) center center / cover;
    width: 7px;
    height: 12px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .drawer-cta-wrap {
    margin-top: 30px;
  }

  .drawer-cta-wrap li {
    margin: 0;
  }

  .drawer-cta-wrap li a {
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.25);
  }

  .drawer-cta-wrap .header-cta-button a {
    display: block;
    width: 280px;
    height: 48px;
    margin: auto;
    font-size: 18px;
    text-align: center;
  }

  .drawer-cta-wrap .tel-button a {
    display: block;
    width: 280px;
    height: 48px;
    margin: auto;
    font-size: 18px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 999px;
    margin-top: 20px;
    background: linear-gradient(45deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .2) 100%);
  }

  .drawer-cta-wrap .tel-button a p {
    font-size: 10px;
    color: #fff;
  }

  .drawer-cta-wrap .tel-button a .tel-number {
    width: 126px;
    margin: auto;
  }

  .drawer-cta-wrap .tel-button a .tel-number img {
    vertical-align: baseline;
  }
}



/*********************
BREADCRUMBS
*********************/
#breadcrumb {
  padding: 1.5em 0 2em;
  background-color: var(--bg-1);
}

.breadcrumb-list {
  padding: 0;
  max-width: var(--container-l);
  margin: 0 auto;
}

.breadcrumb-item {
  color: var(--text-main);
  line-height: 1;
  list-style: none;
  display: inline-block;
  margin: 0;
}

.breadcrumb-item:not(:last-of-type)::after {
  content: '/';
  padding: 0 0.5em;
}

.breadcrumb-item a {
  color: inherit;
  font-weight: var(--normal);
  text-decoration: none;
}



/*********************
CONTAINER
*********************/
.section-wrap {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.container {
  max-width: var(--container);
  padding-right: var(--container-side);
  padding-left: var(--container-side);
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.container-ll {
  max-width: var(--container-ll);
  margin: 0 auto;
}

.container-l {
  max-width: var(--container-l);
  margin: 0 auto;
}

.container-m {
  max-width: var(--container-m);
  margin: 0 auto;
}

.container-s {
  max-width: var(--container-s);
  margin: 0 auto;
}

.container-ss {
  max-width: var(--container-ss);
}

.map-wrap {
  position: relative;
}

.map-wrap::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}


@media only screen and (max-width: 560px) {
  .section-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container {
    padding-right: 4%;
    padding-left: 4%;
  }

}

/*********************
HEADING
*********************/
.h1-page {
  font-size: 3rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.h2-top {
  font-size: clamp(2.4rem, 2.08vw, 4rem);
  font-weight: var(--bold);
  line-height: 1.2em;
  margin-bottom: 1.5em;
  padding-top: 2.4em;
  text-align: center;
  position: relative;
  z-index: 1;
}

.h2-accent::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #FAFFFE;
  font-family: var(--font-accent);
  font-size: 4em;
  line-height: 1em;
  z-index: -1;
}

.h2-page {
  font-size: 1.4rem;
  font-weight: var(--normal);
  position: relative;
  padding-bottom: 90px;
  text-align: center;
}

.h3-page {
  font-size: 2rem;
  font-weight: var(--bold);
  margin-bottom: 1em;
}

.section_title_wrap {
  margin-bottom: 3.8em;
}

.section_title_wrap .h2-top {
  margin-bottom: .5em;
}

.section_title_wrap .sub_title {
  text-align: center;
  color: var(--main-color-1);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 700;
}

@media only screen and (max-width: 960px) {
  .h2-top {
    font-size: clamp(2rem, 2.5vw, 2.4rem);
    padding-top: 2.2em;
  }

  .section_title_wrap .sub_title {
    text-align: center;
    color: var(--main-color-1);
    font-size: clamp(1.4rem, 1.88vw, 1.8rem);
    font-weight: 700;
  }

  .section_title_wrap {
    margin-bottom: 2.66em;
  }
}

@media screen and (max-width: 560px) {
  .h2-top {
    padding-top: 1.4em;
  }

  .h2-accent::before {
    font-size: 5.6rem;
  }
}



/*********************
BUTTON
*********************/
.btn-wrap {
  margin-top: 1.5em;
  width: 100%;
}

.btn {
  color: var(--text-main);
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  position: relative;
  transition: all .3s;
  z-index: 1;
}

.btn-main {
  background-color: var(--main-color-1);
  border: 1px solid var(--main-color-1);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 900;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  width: 100%;
  letter-spacing: .2em;
}

.btn-sub {
  color: var(--main-color-1);
  padding-right: 2em;
  position: relative;
  text-decoration: none;
}

.btn-sub::after {
  content: "\e5c8";
  font-family: var(--font-material);
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  height: 3rem;
  width: 3rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .3s;
  text-align: center;
}

@media only screen and (min-width: 961px) {
  .btn-main:hover {
    background-color: #fff;
    color: var(--main-color-1);
  }

  .btn-sub:hover {
    color: var(--main-color-1);
  }

  .btn-sub:hover::after {
    right: -.25em;
  }

  .btn-cta:hover {}
}

/*********************
FOOTER
*********************/
#footer {
  position: relative;
  background-color: #707070;
  padding: 100px 0;
  color: #fff;
}

#footer .footer-info {
  font-size: 2rem;
}

#footer .footer-info address {
  margin-top: 2rem;
}

.footer-cta {
  padding: 80px 0 100px;
}

.footer-logo {
  display: block;
  width: 11.1%;
  min-width: 200px;
}

.footer-main {
  padding: 0;
  position: relative;
}

.footer-menu-main {
  padding: 80px 0;
}

.footer-main-list {
  padding: 0;
  margin: 0;
  gap: 1rem 2em;
  justify-content: flex-start;
}

.footer-main-item {
  color: #fff;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
}

.footer-main-item:last-of-type {
  margin: 0;
}

.footer-sub-item {
  text-transform: uppercase;
  list-style: none;
  margin: 0 2em 0 0;
}

.footer-main-link {
  color: inherit;
  text-decoration: none;
  font-size: 2.2rem;
}

.copyright a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
}


@media only screen and (max-width:1200px) {
  #footer .footer-info {
    font-size: 1.6rem;
  }

  .footer-main-list {
    gap: 1.6rem 1em;
  }

  .footer-main-link {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width:960px) {
  .footer-menu-main {
    padding: 80px 0;
  }

  #footer .footer-info {
    font-size: 1.4rem;
  }

  .copyright a {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width:560px) {
  #footer .footer-info address {
    margin-top: 1rem;
  }

  .footer-logo {
    width: 40.5%;
    min-width: auto;
  }

  .footer-main-link {
    font-size: 1.4rem;
  }

  .footer-cta {
    padding: 45px 0 60px;
  }

  .copyright {
    margin: 0;
  }

  .copyright a {
    font-size: 1rem;
  }
}


/*********************
ARCHIVE
*********************/

/*card*/
.archive-card {
  background-color: #FFFFFF;
  border-radius: 5px;
  margin-right: 8%;
  margin-bottom: 2em;
}

.archive-card:nth-of-type(2n) {
  margin-right: 0%;
}

.archive-card a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  text-decoration: none;
}

.archive-card a:hover {
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .1);
  opacity: 1;
}

.image-archive {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.image-archive>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
}

.archive-card:hover .image-archive>img {
  transform: scale(1.1);
}

.text-archive {
  color: #000000;
  padding: 1em;
  background-color: #FFFFFF;
}

.text-archive .time-archive {
  color: #777777;
  margin-bottom: 1em;
}

/*list*/
.archive-list {
  padding: 0 0.6em 1.8em;
  border-bottom: dotted 1px #D2DAE6;
  margin-bottom: 1.5em;
  transition: all 0.4s;
}

.archive-list:last-of-type {
  margin-bottom: 0;
}

.archive-list a {
  display: block;
  text-decoration: none;
}

.archive-list .time-archive {
  width: 15%;
  color: var(--main-color-1);
}

.archive-list .title-archive {
  width: 80%;
  color: var(--text-main);
  font-weight: var(--normal);
  margin: 0;
}


/*PAGENATION*/

/* リンクの枠 */
.navigation.pagination {
  margin-top: 4em;
}

/* 数字のリンク */
.pagination .page-numbers {
  color: var(--main-color-1);
  font-family: var(--font-en);
  font-weight: var(--normal);
  display: flex;
  justify-content: center;
  margin: 0;
}

.pagination .page-numbers li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.2em;
}

.pagination .page-numbers li:first-of-type {
  margin-left: 0;
}

.pagination .page-numbers li:last-of-type {
  margin-right: 0;
}

.pagination .page-numbers a {
  text-decoration: none;
}

/* 前へ、次へボタン */
.pagination .nav-links .prev,
.pagination .nav-links .next {
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.pagination .nav-links .prev {
  background-image: url(../../uploads/arrow-left.svg);
}

.pagination .nav-links .next {
  background-image: url(../../uploads/arrow-right.svg);
}

/* ドット */
.pagination .nav-links .dots {}

/* 現在のページ */
.pagination .nav-links .current {
  text-decoration: underline;
}


@media only screen and (max-width: 560px) {
  .archive-list:last-child {
    margin-bottom: 1.5em;
  }

  .archive-list .time-archive {
    margin-right: 0;
    margin-bottom: .5em;
  }

  .archive-list .time-archive,
  .archive-list .title-archive {
    width: 100%;
  }
}



/*********************
SINGLE
*********************/
.header-single {
  position: relative;
  padding-top: 120px;
}

.time-single {
  display: inline-block;
  margin-bottom: .5em;
}

.title-single {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0;
}

.main-single-post h2 {
  font-size: 1.8em;
}

.main-single-post h3 {
  font-size: 1.5em;
}

.main-single-post h4 {
  font-size: 1.2em;
}

.main-single-post h2,
.main-single-post h3,
.main-single-post h4 {
  margin: 1em 0;
}

.main-single-post p+h2,
.main-single-post img+h2,
.main-single-post figure+h2,
.main-single-post table+h2 {
  margin-top: 3em;
}

.main-single-post p+h3,
.main-single-post img+h3,
.main-single-post figure+h3,
.main-single-post table+h3 {
  margin-top: 2em;
}

.main-single-post ul,
.main-single-post ol {
  margin: 2em 0;
}

.main-single-post figure,
.main-single-post img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.main-single-post figure {
  margin-bottom: 2em;
}

.main-single-post figcaption {
  font-size: .8em;
  line-height: 1.7;
  margin-top: .5em;
}

.main-single-post table {
  border: solid 1px #DDD;
  border-collapse: collapse;
}

.main-single-post tr {
  border-bottom: solid 1px #DDD;
}

.main-single-post th,
.main-single-post td {
  padding: 1em;
  border-right: solid 1px #DDD;
}


@media only screen and (max-width: 560px) {
  .title-news {
    font-size: 1.9rem;
  }
}




/*********************
CONTACT
*********************/
input[type=email],
input[type=text],
input[type=tel],
input[type=file],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
  color: inherit;
  font-size: 1.6rem;
  display: inline-block;
  width: 100%;
}

input[type=email],
input[type=text],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
select,
textarea {
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  background-color: #FFF;
  line-height: 1.7;
  padding: 1rem .9rem;
}

input[type=number] {
  margin-right: .5rem;
  padding: .5rem 1rem;
  width: calc(4em + 2rem);
}

input[type=checkbox],
input[type=radio],
.wpcf7-list-item-label {
  vertical-align: middle;
}

input[type=submit] {
  background-color: var(--accent-color-1);
  border: 1px solid var(--accent-color-1);
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  padding: 1em 0;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  width: 500px;
  letter-spacing: .2em;
}

input[type=submit]:hover {
  color: #fff;
}

.number-month,
.number-date {
  margin-left: 1em;
}

.wpcf7-list-item {
  margin: 0 1em 0 0;
}

.wpcf7-list-item:last-child {
  margin: 0;
}

.item-form-contact {
  margin-bottom: 2rem;
}

.heading-form-contact {
  font-size: 1em;
  font-weight: var(--bold);
}

.detail-form-contact {
  padding-top: 8px;
  padding-bottom: 30px;
}

.contact-label {
  background-color: var(--main-color-1);
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  padding: 5px 12px;
  line-height: 1;
  vertical-align: text-bottom;
}

::placeholder {
  color: #ddd;
  font-size: 1.6rem;
  letter-spacing: .15rem;
  line-height: 1.5;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-bottom: .5em;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

/*送信完了メッセージ*/
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #fff;
  border-color: #4a84af;
  margin-top: 3em;
  padding: 2em;
}

/*Google reCAPCHA*/
.reCAPTCHA {
  font-size: 10px;
}


@media only screen and (max-width: 560px) {
  input[type=submit] {
    width: 100%;
  }

  .heading-form-contact {
    font-size: 1.4rem;
    padding: 10px 0 0;
  }

  .detail-form-contact {
    padding: 10px 0 30px;
  }

  .contact-label {
    font-size: 1.1rem;
  }

  ::placeholder {
    font-size: 1em;
  }

  .wpcf7-list-item-label {
    font-size: 1.3rem;
  }

  .wpcf7-text,
  .wpcf7-textarea {
    font-size: 1.6rem;
  }
}

/*********************
FRONT
*********************/
.firstv {
  background-color: #000;
  height: calc(100vh - 71px);
}

@media only screen and (max-width: 960px) {
  .firstv {
    height: 500px;
  }
}


@media only screen and (max-width:560px) {
  .firstv {
    height: 400px;
  }
}


/*********************
PAGE PARTS
*********************/

/*privacy*/
.main-privacy h2 {
  font-size: 1.5em;
  margin: 2em 0 .5em;
}

/*********************
LOADING
*********************/
#loading,
#loading_logo {
  display: none;
}

.home #loading {
  background-color: #fff;
  display: block;
  position: fixed;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.home #loading_logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

#loading_logo img {
  width: 210px;
}


/*********************
COLOR
**********************/
.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: var(--bg-gray);
}

.bg-black {
  background: var(--bg-black);
}

.color-black {
  color: #000;
}

.color-pink {
  color: var(--pink-dark);
}

.color-green {
  color: var(--green-dark);
}

/*********************
MARGIN
*********************/
.margin-intro {
  margin-bottom: 180px;
}

.margin-section {
  margin-bottom: 160px;
}

.margin-content {
  margin-bottom: 100px;
}

.margin-card {
  margin-bottom: 60px;
}

.margin-image {
  margin-bottom: 25px;
}

@media only screen and (max-width: 560px) {
  .margin-intro {
    margin-bottom: 150px;
  }

  .margin-section {
    margin-bottom: 90px;
  }

  .margin-content {
    margin-bottom: 80px;
  }

  .margin-card {
    margin-bottom: 50px;
  }

  .margin-image {
    margin-bottom: 60px;
  }
}


/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition-property: transform, opacity;
  transition-duration: 1.5s;
  transition-delay: 0s;
}

.fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.delay--2 {
  transition-delay: .3s;
}

.delay--3 {
  transition-delay: .6s;
}

.delay--4 {
  transition-delay: .9s;
}


@media only screen and (min-width: 561px) {}

/*********************
RESPONSIVE
*********************/
@media only screen and (min-width: 961px) {
  .tb_only {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }

  .sp_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 561px) and (max-width: 960px) {
  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: none !important;
  }

  .sp_pc {
    display: none !important;
  }
}

@media only screen and (max-width: 560px) {
  .pc_only {
    display: none !important;
  }

  .tb_only {
    display: none !important;
  }

  .tb_pc {
    display: none !important;
  }
}

@media only screen and (max-width: 320px) {
  html {
    font-size: .58em;
  }
}

/*********************
FV
*********************/
#fv {
  padding: 0;
  margin: 0;
}

#fv .container-ll {
  display: grid;
  grid-template-columns: 40% 57vw;
  grid-template-rows: auto auto auto auto auto;
}

#fv .sub_title {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  font-weight: 700;
  height: fit-content;
  align-self: end;
  background: #1b9977;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.15em;
}

#fv h2 {
  grid-column: 1/2;
  grid-row: 2/3;
  color: var(--main-color-1);
  font-weight: 700;
  font-size: clamp(4rem, 3.24vw, 6.2rem);
  white-space: nowrap;
  line-height: 1.5em;
}

#fv h2 span {
  font-size: clamp(7.6rem, 6.26vw, 12rem);
  letter-spacing: 0;
}

#fv .supplement {
  grid-column: 1/2;
  grid-row: 3/4;
  font-size: clamp(1.4rem, 1.05vw, 2rem);
}

#fv .fv_text_image {
  grid-column: 1/2;
  grid-row: 4/5;
  display: block;
  margin-top: 1em;
}

#fv .cta_btn {
  grid-column: 1/2;
  grid-row: 5/6;
  width: 100%;
  min-width: auto;
  height: 90px;
  margin-top: .8em;
}

#fv .cta_btn_contact a {
  font-size: clamp(2rem, 2vw, 3.2rem);
}

#fv .main_visual_image {
  grid-column: 2/3;
  grid-row: 1/6;
  width: 57vw;
  height: auto;
  margin-right: calc(50% - 31vw);
  border-radius: 0 0 0 120px;
  overflow: hidden;
  justify-self: right;
}

#fv .main_visual_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#fv .slider {
  margin-top: 60px;
}

#fv .area {
  justify-content: center;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 30px;
  margin-top: 40px;
  padding: 20px;
  border-top: 2px solid var(--main-color-1);
  border-bottom: 2px solid var(--main-color-1);
}

#fv .area .area_content {
  gap: 1rem;
}

#fv .area .area_title {
  color: var(--main-color-1);
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  padding-right: 1em;
  border-right: 2px solid var(--main-color-1);
  position: relative;
}

#fv .area .area_title::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url(../../assets/images/road-sign-lp/area_icon.png);
  background-size: cover;
  width: 20px;
  height: 24px;
  top: 50%;
  left: -1.5rem;
  transform: translate(-50%, -50%);
}

#fv .area .area_content {
  justify-content: flex-start;
  flex-wrap: nowrap;
}

#fv .area ul {
  flex-wrap: nowrap;
  gap: 16px;
}

#fv .area ul li {
  color: var(--main-color-1);
  white-space: nowrap;
  font-size: 2rem;
  line-height: 1em;
}

#fv .area p {
  line-height: 1em;
}

#fv .area p span {
  font-size: 1.2em;
}

@media screen and (max-width: 1200px) {
  #fv .container-ll {
    display: grid;
    grid-template-columns: 50% 48vw;
    grid-template-rows: auto auto;
  }

  #fv .main_visual_image {
    margin-right: calc(50% - 26vw);
    border-radius: 0 0 0 60px;
    width: 100%;
  }

  #fv .cta_btn {
    height: 72px;
  }

  #fv .slider {
    margin-top: 40px;
  }
}

@media screen and (max-width: 960px) {
  #fv .container-ll {
    grid-template-columns: 60% 40vw;
  }

  #fv .sub_title {
    padding: 2px 0;
    font-size: clamp(1.4rem, 1.88vw, 1.8rem);
  }

  #fv h2 {
    font-size: clamp(2.88rem, 4.88vw, 4.68rem);
  }

  #fv h2 span {
    font-size: clamp(5.6rem, 9.38vw, 9rem);
  }

  #fv .main_visual_image {
    margin-right: calc(50% - 21vw);
  }

  #fv .cta_btn {
    height: 56px;
  }

  #fv .cta_btn_contact a {
    font-size: clamp(1.6rem, 2.08vw, 2rem);
  }

  #fv .area {
    gap: 12px;
  }

  #fv .area .area_title {
    font-size: 2rem;
    padding-right: 0.5em;
  }

  #fv .area ul {
    gap: 12px;
  }

  #fv .area ul li {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {
  #fv .container-ll {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
  }

  #fv .sub_title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  #fv h2 {
    font-size: clamp(3rem, 7.98vw, 4.88rem);
  }

  #fv h2 span {
    font-size: clamp(4.8rem, 15.2vw, 9.4rem);
    letter-spacing: 0;
  }

  #fv .supplement {
    font-size: clamp(1.4rem, 1.05vw, 2rem);
  }

  #fv .main_visual_image {
    grid-column: 1/2;
    grid-row: 4/5;
    width: 101vw;
    margin: 10px calc(50% - 50vw) 0;
  }

  #fv .fv_text_image {
    grid-row: 5/6;
  }

  #fv .cta_btn {
    grid-row: 6/7;
    max-width: 400px;
    margin: .8em auto 0;
  }

  #fv .cta_btn_contact a {
    font-size: clamp(1.6rem, 2vw, 3.2rem);
  }
}

@media screen and (max-width: 768px) {
  #fv .area {
    margin-top: 20px;
    padding: 20px 15px;
  }

  #fv .area.flex,
  #fv .area .area_content.flex {
    display: block;
  }

  #fv .area ul {
    flex-direction: row;
    justify-content: center;
    gap: 2%;
    padding-top: 10px;
  }

  #fv .area ul li {
    font-size: 1.6rem;
}

  #fv .area .area_title {
    width: fit-content;
    margin: auto;
    padding-right: 0;
    border-right: none;
  }

  #fv .area p {
    text-align: center;
    padding-top: 10px;
  }

  #fv .area p span {
    font-size: 1.12em;
  }
}

/*********************
QUESTION
*********************/
#question .container-ll {
  max-width: 1600px;
  background-color: #EFEFEF;
  border-radius: 40px;
}

#question .container>span {
  display: block;
  font-family: var(--font-accent);
  font-size: 8.35vw;
  color: #EFEFEF;
  line-height: 1em;
  text-align: center;
}

#question .container-l {
  padding: 100px 0;
  position: relative;
}

#question h2.h2-top {
  padding-top: 0;
}

#question h2 span {
  color: var(--accent-color-1);
  position: relative;
}

#question h2 span::after {
  position: absolute;
  content: "";
  top: -.4em;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color-1);
}

#question ul {
  gap: 2em 3%;
}

#question ul li {
  width: calc((100% - 6%)/3);
  min-width: 280px;
}

#question ul li .image {
  width: auto;
  height: 140px;
}

#question ul li .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#question ul li p.heading {
  margin-top: 1.2em;
  font-size: clamp(1.8rem, 1.24vw, 2.4rem);
}

#question ul li p.heading span {
  color: var(--main-color-1);
}

#question ul li p.text {
  margin-top: 1em;
  font-size: clamp(12px, 0.84vw, 16px);
  line-height: 2em;
}

#question ul li p.text span {
  color: var(--main-color-1);
  font-weight: 700;
}

@media screen and (max-width: 1440px) {
  #question h2 span::after {
    width: 6px;
    height: 6px;
  }
}

@media screen and (max-width: 960px) {
  #question .container-l {
    padding: 60px 0;
  }

  #question .container>span {
    font-size: 12vw;
  }

  #question ul li .image {
    height: 100px;
  }
}

@media screen and (max-width: 560px) {
  #question .container>span {
    font-size: 13vw;
  }

  #question h2 {
    line-height: 1.5em;
  }

  #question h2 span::after {
    width: 4px;
    height: 4px;
    top: -0.1em;
  }

  #question ul li {
    width: 100%;
    min-width: 240px;
    max-width: 340px;
    margin: auto;
  }

  #question ul li .image {
    width: auto;
    height: 80px;
  }

  #question ul li p.heading {
    font-size: 1.4rem;
  }

  #question .container-ll {
    border-radius: 30px;
  }

  #question .container-l {
    padding: 30px 0;
    position: relative;
  }
}

/*********************
MERIT
*********************/
#merit {
  background-color: var(--bg-1);
  border-radius: 0 120px;
}

#merit h2 {
  position: relative;
  z-index: 2;
}

#merit .h2-accent::before {
  content: "MERIT";
}

#merit .merit_item_wrap {
  gap: 5em;
}

#merit .merit_item_wrap .merit_item:first-child .image {
  width: 46.88vw;
  margin-left: calc(50% - 50vw);
}

#merit .merit_item_wrap .merit_item:last-child .image {
  width: 46.88vw;
  margin-right: calc(50% - 50vw);
}

#merit .merit_item_wrap .merit_item .text {
  width: 50%;
}

#merit .merit_item_wrap .merit_item .text>span {
  font-family: var(--font-accent);
  color: var(--accent-color-1);
  font-weight: 700;
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
}

#merit .merit_item_wrap .merit_item .text h3 span {
  display: inline-block;
  background-color: #fff;
  padding: 0 0.35em;
  margin-top: 0.22em;
  font-size: clamp(2rem, 1.46vw, 2.8rem);
  font-weight: 700;
}

#merit .merit_item_wrap .merit_item .text p {
  margin-top: 2.25em;
}

#merit .merit_item_wrap .merit_item .text p span {
  display: block;
  color: #8E8E8E;
  text-indent: -1.5em;
  margin-left: 1.5em;
}

@media screen and (max-width: 1200px) {
  #merit .merit_item_wrap .merit_item:first-child .image {
    width: 62.88vw;
    margin-left: calc(50% - 61vw);
  }

  #merit .merit_item_wrap .merit_item:last-child .image {
    width: 62.88vw;
    margin-right: calc(50% - 61vw);
  }

  #merit .merit_item_wrap {
    gap: 2.6em;
  }

  #merit .merit_item_wrap .merit_item .text {
    width: 46%;
  }
}

@media screen and (max-width: 960px) {
  #merit {
    padding: 60px 0;
    border-radius: 0 60px;
  }

  #merit .merit_item_wrap .merit_item:first-child .image {
    width: 100vw;
    margin-left: calc(50% - 53vw);
  }

  #merit .merit_item_wrap .merit_item:last-child .image {
    width: 100vw;
    margin-right: calc(50% - 53vw);
  }

  #merit .merit_item_wrap .merit_item .text {
    width: 100%;
    padding-top: 1.35em;
  }

  #merit .merit_item_wrap .merit_item .text h3 span {
    padding: 0 3px;
    font-size: clamp(1.8rem, 2.08vw, 2rem);
  }

  #merit .merit_item_wrap .merit_item .text>span {
    font-size: clamp(1.4rem, 1.88vw, 1.8rem);
  }

  #merit .merit_item_wrap .merit_item .text p {
    margin-top: 1.34em;
  }
}

@media screen and (max-width: 560px) {
  #merit .merit_item_wrap .merit_item:first-child .image {
    width: 100vw;
    margin-left: calc(50% - 54vw);
  }

  #merit .merit_item_wrap .merit_item:last-child .image {
    width: 100vw;
    margin-right: calc(50% - 54vw);
  }
}

/*********************
CTA
*********************/
.cta_section .container-ll {
  border-radius: 0 100px;
  background: #009977;
  padding: 100px 0;
  color: #fff;
}

.cta_section span.yellow {
  color: var(--accent-color-2);
}

.cta_section h3 {
  font-size: clamp(2.8rem, 2.09vw, 4rem);
  font-weight: 700;
}

.cta_section p {
  font-size: clamp(1.6rem, 1.15vw, 2.2rem);
  margin-top: 2.25em;
}

.cta_section p.text_small {
  font-size: clamp(1.6rem, 1.15vw, 2.2rem);
  margin-top: 2.25em;
}

.cta_btn_wrap {
  gap: 2.25em;
  margin-top: 2.25em;
}

.cta_btn {
  width: 41.67%;
  height: 80px;
  min-width: 460px;
}

.cta_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  color: #fff;
}

.cta_btn_contact a {
  background: var(--gradient);
  font-size: 2rem;
  position: relative;
}

.cta_btn_contact picture {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
}

.cta_btn_contact a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
  background: url(../../assets/images/road-sign-lp/nev_arrow.png) center center / cover;
  width: 10px;
  height: 16px;
}

.cta_btn_tel a {
  border: 1px solid #fff;
  background: linear-gradient(45deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .2) 100%);
}

.cta_btn_tel a>div {
  line-height: 1;
}

.cta_btn_tel a span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: .6em;
}

.cta_btn_tel a .image {
  position: relative;
}

.cta_btn_tel a .image::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -8px;
  transform: translate(-100%, -50%);
  background: url(../../assets/images/road-sign-lp/white_tel_icon.png) center center / cover;
  width: 28px;
  height: 28px;
}

#cta01 .container-ll {
  background: linear-gradient(45deg, rgba(0, 153, 119, .8) 0%, rgba(0, 153, 119, .8) 100%),
    url(../../assets/images/road-sign-lp/cta01_b.jpg);
  background-position: left center;
  background-size: cover;
}

#cta02 .container-ll {
  background: linear-gradient(45deg, rgba(0, 153, 119, .8) 0%, rgba(0, 153, 119, .8) 100%),
    url(../../assets/images/road-sign-lp/cta02_c.jpg);
  background-position: top 24% center;
  background-size: cover;
}

#cta03 .container-ll {
  background: linear-gradient(45deg, rgba(0, 153, 119, .8) 0%, rgba(0, 153, 119, .8) 100%),
    url(../../assets/images/road-sign-lp/cta03.jpg);
  background-position: center center;
  background-size: cover;
}

#cta04 .container-ll {
  background: linear-gradient(45deg, rgba(0, 153, 119, .8) 0%, rgba(0, 153, 119, .8) 100%),
    url(../../assets/images/road-sign-lp/cta04_b.jpg);
  background-position: left center;
  background-size: cover;
}

#cta01 h3 {
  font-size: clamp(2rem, 1.46vw, 2.8rem);
}

#cta03 p {
  margin-top: 0.5em;
}

@media screen and (max-width: 960px) {
  .cta_section .container-ll {
    border-radius: 0 60px;
    padding: 60px 0;
  }

  #cta01 h3 {
    font-size: clamp(1.6rem, 2.09vw, 2rem);
  }

  .cta_section h3 {
    font-size: clamp(2rem, 2.92vw, 2.8rem);
  }

  .cta_section p.text_small {
    font-size: clamp(1.4rem, 1.67vw, 1.6rem);
    margin-top: 1.25em;
  }

  .cta_section .cta_btn_wrap .cta_btn {
    width: 100%;
    height: 64px;
    max-width: 400px;
  }

  .cta_section .cta_btn_wrap {
    gap: 1em;
    margin-top: 1.34em;
  }

  .cta_section .cta_btn_wrap .cta_btn_contact a {
    font-size: clamp(1.4rem, 3.22vw, 1.8rem);
  }

  .cta_section .cta_btn_wrap .cta_btn_tel a span {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: .6em;
  }

  .cta_section .cta_btn_wrap .cta_btn_tel a .image {
    width: 80%;
    margin: auto;
  }

  .cta_section .cta_btn_wrap .cta_btn_tel a .image::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 560px) {
  .cta_section .cta_btn_wrap .cta_btn {
    width: 100%;
    height: 56px;
    min-width: auto;
  }
}

/*********************
REASON
*********************/
#reason .h2-accent::before {
  content: "REASON";
  color: var(--bg-1);
}

#reason ul.reason_item_wrap li.reason_item .image {
  width: 48.3%;
}

#reason ul.reason_item_wrap li.reason_item:nth-child(odd) .image img {
  border-radius: 0 0 60px;
}

#reason ul.reason_item_wrap li.reason_item:nth-child(even) {
  flex-direction: row-reverse;
}

#reason ul.reason_item_wrap li.reason_item:nth-child(even) .image img {
  border-radius: 0 0 0 60px;
}

#reason ul.reason_item_wrap {
  gap: 60px;
}

#reason ul.reason_item_wrap li.reason_item {
  gap: 3.3%;
}

#reason ul.reason_item_wrap li.reason_item .text {
  width: calc((100% - 6.6%)/2);
}

#reason ul.reason_item_wrap li.reason_item .text p {
  margin-top: 20px;
}

#reason .reason_item .text .reason_item_title {
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.11em;
}

#reason .reason_item .text .reason_item_title span {
  font-size: 4.4em;
  font-family: var(--font-number);
  line-height: 1em;
  color: var(--main-color-1);
}

#reason .reason_item .text .reason_item_title h3 {
  font-size: 1.34em;
  font-weight: 700;
}

#reason .reason_item .text .reason_item_title p {
  margin-top: 1em;
}

@media screen and (max-width: 960px) {
  #reason ul.reason_item_wrap li.reason_item {
    display: block;
  }

  #reason ul.reason_item_wrap {
    max-width: 600px;
    margin: auto;
  }

  #reason ul.reason_item_wrap li.reason_item .image {
    width: 100%;
  }

  #reason ul.reason_item_wrap li.reason_item .text {
    width: 100%;
    padding-top: 10px;
  }

  #reason ul.reason_item_wrap li.reason_item .text p {
    margin-top: 10px;
  }

  #reason ul.reason_item_wrap {
    gap: 40px;
  }

  #reason .reason_item .text .reason_item_title h3 {
    font-size: clamp(1.8rem, 2.5vw, 1.34em);
  }

  #reason .reason_item .text .reason_item_title span {
    font-size: clamp(4.8rem, 8.4vw, 4.4em);
  }
}

@media screen and (max-width: 560px) {
  #reason .reason_item .text .reason_item_title {
    flex-direction: row;
  }

  #reason .reason_item .text .reason_item_title {
    gap: 10px;
  }
}

/*********************
PRODUCT
*********************/
#product {
  background-color: var(--bg-1);
  border-radius: 0 120px;
}

#product .h2-accent::before {
  content: "PRODUCT";
}

#product ul {
  gap: 40px 3.33%;
}

#product ul li {
  width: calc((100% - 3.33%)/2);
}

#product ul li .image {
  border-radius: 30px;
  overflow: hidden;
}

#product ul li h3 {
  padding-left: 1em;
  position: relative;
  font-size: clamp(2.4rem, 1.46vw, 2.8rem);
  margin-top: 10px;
}

#product ul li h3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--main-color-1);
}

#product ul li strong {
  color: var(--main-color-1);
  font-size: clamp(1.8rem, 1.15vw, 2.2rem);
}

#product ul li dl {
  gap: 1em;
  width: fit-content;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 20px;
  background-color: var(--accent-color-1);
  margin-top: 10px;
}

#product ul li dl dt {
  position: relative;
}

#product ul li dl dt::after {
  position: absolute;
  content: ":";
  top: 50%;
  right: -0.7em;
  transform: translateY(-50%);
}

#product ul li p {
  padding-top: 10px;
}

#product .option {
  background-color: var(--main-color-1);
  border-radius: 0 40px;
  padding: 40px 0;
  margin-top: 80px;
}

#product .option .wrap {
  display: grid;
  grid-template-columns: 48.21% 48.21%;
  grid-template-rows: auto auto auto auto;
  column-gap: 3.6%;
}

#product .option h3.option_title {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 1em;
  padding-top: 3%;
}

#product .option h3.option_title::before {
  position: absolute;
  content: "OPTION";
  bottom: 0;
  left: 0;
  transform: translateY(18%);
  font-size: 6.4rem;
  color: #05A783;
  z-index: -1;
}

#product .option .wrap p {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  color: #fff;
}

#product .option .wrap p span {
  color: var(--accent-color-2);
}

#product .option .wrap .image {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
  border-radius: 30px;
  overflow: hidden;
}

#product .option .wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#product .option .lighting_plan {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  margin-top: 30px;
  color: #fff;
}

#product .option .lighting_plan h4 {
  font-size: 2.4rem;
}

#product .option .lighting_plan h4::before {
  content: "⚫︎";
}

#product .option .lighting_plan table,
#product .option .lighting_plan td,
#product .option .lighting_plan th {
  border: 2px solid var(--main-color-1);
}

#product .option .lighting_plan table {
  margin-top: 10px;
}

#product .option .lighting_plan table tr th {
  padding: 10px 20px;
  background: #fff;
  color: var(--main-color-1);
}

#product .option .lighting_plan table tr td {
  padding: 10px 20px;
  font-weight: 700;
  background: linear-gradient(45deg, rgba(255, 255, 255, .2) 0%, rgba(255, 255, 255, .2) 100%);
}

#product .option .lighting_plan p {
  margin-top: 10px;
}

.slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-top: 80px;
}

.slider .slick-slide {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 10px;
}

@media screen and (max-width: 960px) {
  #product {
    border-radius: 0 60px;
  }

  #product ul li h3 {
    font-size: clamp(2rem, 2.5vw, 2.4rem);
  }

  #product .option {
    margin-top: 40px;
  }

  .slider {
    margin-top: 40px;
  }

  #product .option .wrap {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    row-gap: 1em;
  }

  #product .option h3.option_title {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-bottom: 0;
  }

  #product .option .wrap p {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }

  #product .option .wrap .image {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  #product .option .lighting_plan {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    margin-top: 30px;
    color: #fff;
    margin-top: 0;
  }

  .slider .slick-slide {
    margin: 0 6px;
  }
}

@media screen and (max-width: 560px) {
  #product ul li {
    width: 100%;
  }

  #product ul li dl {
    flex-direction: row;
  }

  #product ul li strong {
    font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  }

  #product ul li dl {
    font-size: 1.4rem;
    padding: 2px 10px;
  }

  #product .option .lighting_plan h4 {
    font-size: 2rem;
  }

  #product .option .lighting_plan table tr th {
    padding: 6px 12px;
  }

  #product .option .lighting_plan table tr td {
    padding: 6px 12px;
  }

  .slider .slick-slide {
    border-radius: 10px;
    margin: 0 2.5px;
  }
}

/*********************
VOICES
*********************/
#voices {
  overflow: visible;
}

#voices .section_title_wrap .h2-top::before {
  content: "VOICES";
  color: #EBF5F3;
}

#voices ul {
  gap: 120px;
}

#voices ul li {
  gap: 6.6%;
}

#voices ul li:nth-child(even) {
  flex-direction: row-reverse;
}

#voices ul li .image_wrap {
  position: relative;
  width: 48.3%;
}

#voices ul li .image_wrap .image {
  overflow: hidden;
}

#voices ul li:nth-child(odd) .image {
  border-radius: 0 60px 0 0;
}

#voices ul li:nth-child(even) .image {
  border-radius: 60px 0 0 0;
}

#voices ul li .image_wrap .president_image {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 48.2%;
}

#voices ul li:nth-child(odd) .image_wrap .president_image {
  right: 0;
  transform: translate(40px, 60px);
  border: 3px solid #fff;
  border-radius: 0 0 0 60px;
  overflow: hidden;
}

#voices ul li:nth-child(even) .image_wrap .president_image {
  left: 0;
  transform: translate(-40px, 60px);
  border: 3px solid #fff;
  border-radius: 0 0 60px 0;
  overflow: hidden;
}

#voices ul li .text {
  width: 45%;
}

#voices ul li .text .kinds {
  width: fit-content;
  color: var(--accent-color-1);
  font-size: clamp(1.8rem, 1.1vw, 2rem);
  border: 2px solid var(--accent-color-1);
  border-radius: 999px;
  padding: 0.2em 1.5em;
}

#voices ul li .text h3 {
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  padding-top: 10px;
}

#voices ul li .text .place {
  width: fit-content;
  font-size: clamp(1.4rem, 0.88vw, 1.6rem);
  color: #fff;
  background-color: var(--main-color-1);
  border-radius: 999px;
  padding: 0.4em 1.2em;
  margin-top: 10px;
}

#voices ul li .text p {
  padding-top: 20px;
}

#voices ul li .text dl {
  padding-top: 20px;
}

#voices ul li .text dl dt {
  width: fit-content;
  color: var(--main-color-1);
  border-bottom: 2px solid var(--main-color-1);
}

#voices ul li .text dl dd {
  padding-top: 10px;
}

@media screen and (max-width: 960px) {
  #voices {
    padding: 60px 0;
  }

  #voices ul {
    max-width: 600px;
    margin: auto;
    gap: 40px;
  }

  #voices ul li {
    display: block;
  }

  #voices ul li .image_wrap {
    width: 100%;
  }

  #voices ul li .image_wrap .image {
    width: 91.3%;
  }

  #voices ul li .image_wrap .president_image {
    width: 47.9%;
  }

  #voices ul li:nth-child(odd) .image_wrap .president_image,
  #voices ul li:nth-child(even) .image_wrap .president_image {
    right: 0;
    left: auto;
    transform: translate(0, 20%);
    border-radius: 0 0 0 60px;
  }

  #voices ul li .text {
    width: 100%;
    margin-top: 2.4em;
  }

  #voices ul li .text dl {
    padding-top: 10px;
  }

  #voices ul li .text dl dd {
    padding-top: 6px;
  }
}

@media screen and (max-width: 560px) {
  #voices ul li .text .kinds {
    font-size: clamp(1.4rem, 2.9vw, 1.6rem);
    padding: 0.1em 1em;
  }

  #voices ul li .text h3 {
    font-size: clamp(1.8rem, 3.58vw, 2rem);
  }

  #voices ul li .text .place {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  }
}

/*********************
FLOW
*********************/
#flow {
  overflow: visible;
}

#flow .section_title_wrap .h2-top::before {
  content: "FLOW";
  color: #EBF5F3;
}

#flow .flow_container_wrap {
  align-items: start;
  gap: 1.7%;
}


/* ステップバナー */
#flow ul.step_banner {
  width: calc(100% - 74% - 1.7%);
  position: sticky;
  position: -webkit-sticky;
  top: 160px;
}

#flow ul.step_banner strong {
  display: block;
  line-height: 1.75em;
  font-size: 1.4rem;
  text-align: center;
  color: var(--main-color-1);
  background-color: var(--bg-1);
  padding: 1em 0.5em;
  border-radius: 10px;
  position: relative;
}

#flow ul.step_banner strong::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--bg-1);
  border-right: 0;
}

#flow ul.step_banner strong span {
  font-size: 1.8em;
}

#flow ul.step_banner li {
  margin-top: 10px;
}

#flow ul.step_banner li p {
  width: fit-content;
  padding: 0 0.5em;
  font-size: 1.6rem;
  color: #add8ce;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid #add8ce;
  transition: all ease .3s;
}

#flow ul.step_banner li div {
  font-weight: 700;
  color: #add8ce;
  transition: all ease .3s;
}

#flow ul.step_banner li.current p {
  color: #fff;
  border: none;
  background-color: var(--main-color-1);
}

#flow ul.step_banner li.current div {
  color: var(--main-color-1);
}

/* 右コンテンツ */
#flow .flow_wrap {
  width: 74%;
  gap: 20px;
}

#flow .flow_wrap .flow_item {
  background-color: var(--bg-1);
  padding: 4.5%;
  border-radius: 0 40px;
}

#flow .flow_wrap .flow_item_two .flow_item {
  width: 48.3%;
}

#flow .flow_wrap .flow_item .heading_wrap {
  gap: 0 20px;
  align-items: baseline;
}

#flow .flow_wrap .flow_item .heading_wrap .number {
  color: var(--accent-color-1);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.46vw, 2.8rem);
  line-height: 1em;
}

#flow .flow_wrap .flow_item .heading_wrap .number span {
  font-family: var(--font-number);
  font-size: clamp(3.2rem, 2.08vw, 4rem);
}

#flow .flow_wrap .flow_item .heading_wrap p {
  font-size: clamp(2rem, 1.12vw, 2.2rem);
  font-weight: 700;
}

#flow .flow_wrap .flow_item .heading_wrap .days {
  font-size: clamp(1.4rem, 0.9vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  background-color: var(--main-color-1);
  border-radius: 999px;
  padding: 2px 16px;
}

#flow .flow_wrap .flow_item .contents_wrap {
  gap: 30px;
  margin-top: 10px;
}

#flow .flow_item_two .flow_item .contents_wrap {
  gap: 10px;
}

#flow .flow_wrap .flow_item .contents_wrap .image {
  width: 8.9%;
}

#flow .flow_item_two .flow_item .contents_wrap .image {
  width: 20%;
  margin: auto;
}

#flow .flow_wrap .flow_item .contents_wrap p {
  width: calc(100% - 8.9% - 30px);
}

#flow .flow_item_two .flow_item .contents_wrap p {
  width: 100%;
  flex-grow: 1;
}

#flow .flow_wrap .flow_arrow_wrap {
  margin: auto;
}

#flow .flow_wrap .flow_arrow_wrap_two {
  width: 55.2%;
}

#flow .flow_wrap .flow_arrow_wrap .flow_or {
  font-size: 2rem;
  color: var(--main-color-1);
  font-weight: 700;
}

.flow_arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.flow_arrow::before {
  content: '';
  width: 22px;
  height: 22px;
  border: 0;
  border-bottom: solid 4px var(--main-color-1);
  border-right: solid 4px var(--main-color-1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  margin: auto;
}

@media screen and (max-width: 960px) {
  #flow ul.step_banner {
    top: 80px;
  }

  #flow ul.step_banner strong {
    line-height: 1.5em;
    font-size: 1.2rem;
    padding: 0.5em;
    border-radius: 4px;
  }

  #flow ul.step_banner strong::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--bg-1);
  }

  #flow ul.step_banner strong span {
    font-size: 1.4em;
  }

  #flow ul.step_banner li p {
    font-size: 1.2rem;
  }

  #flow ul.step_banner li div {
    font-size: 1.4rem;
  }

  #flow .flow_wrap .flow_item .heading_wrap {
    gap: 0 10px;
  }

  #flow .flow_wrap .flow_item .contents_wrap {
    gap: 16px;
  }

  #flow .flow_wrap .flow_item .contents_wrap .image {
    width: 16.9%;
  }

  #flow .flow_wrap .flow_item_two .flow_item .contents_wrap .image {
    width: 36.9%;
  }
}

@media screen and (max-width: 560px) {
  #flow .flow_container_wrap {
    flex-direction: row;
    margin-left: calc(50% - 50vw);
  }

  #flow .flow_wrap {
    width: 90%;
  }

  #flow ul.step_banner {
    width: calc(100% - 90% - 1.7%);
    top: 64px;
    text-align: center;
  }

  #flow ul.step_banner strong {
    font-size: clamp(1.2rem, 2.9vw, 1.6rem);
    padding: .5em 0.2em;
    border-radius: 4px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: auto;
  }

  #flow ul.step_banner strong span {
    font-size: clamp(1.4rem, 3.3vw, 1.8rem);
  }

  #flow ul.step_banner strong::after {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--bg-1);
  }

  #flow ul.step_banner>p {
    color: var(--main-color-1);
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-top: 10px;
  }

  #flow ul.step_banner li {
    margin-top: 4px;
  }

  #flow ul.step_banner li p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4rem, 3.3vw, 1.8rem);
    line-height: 1em;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    text-align: center;
  }

  #flow ul.step_banner li p span {
    display: none;
  }

  #flow ul.step_banner li div {
    display: none;
  }

  .flow_item_two {
    flex-direction: row;
  }

  #flow .flow_wrap .flow_arrow_wrap_two {
    flex-direction: row;
  }

  #flow .flow_wrap .flow_item .contents_wrap p {
    width: 100%;
  }
}

/*********************
FAQ
*********************/
#faq {
  background-color: var(--bg-1);
  border-radius: 0 120px;
}

#faq .section_title_wrap .h2-top::before {
  content: "FAQ";
  color: #FAFFFE;
}

#faq ul.faq_wrap {
  gap: 1em;
}

#faq ul.faq_wrap li.faq_item dt {
  background-color: var(--main-color-1);
  color: #fff;
  padding: 2rem 2rem 2rem 8rem;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 10px;
  position: relative;
}

#faq ul.faq_wrap li.faq_item dt::before {
  position: absolute;
  top: 1rem;
  left: 3rem;
  content: "Q.";
  font-size: 2.8rem;
  font-weight: 700;
}

#faq ul.faq_wrap li.faq_item dd {
  position: relative;
  padding: 2rem 2rem 2rem 8rem;
}

#faq ul.faq_wrap li.faq_item dd::before {
  position: absolute;
  top: 1rem;
  left: 3rem;
  content: "A.";
  font-size: 2.8rem;
  color: var(--accent-color-1);
}

@media screen and (max-width: 960px) {
  #faq {
    border-radius: 0 60px;
  }


  #faq ul.faq_wrap li.faq_item dt {
    font-size: 1.8rem;
    padding: 1.6rem 1.6rem 1.6rem 6rem;
  }

  #faq ul.faq_wrap li.faq_item dt::before {
    position: absolute;
    top: 0.7rem;
    left: 2rem;
    font-size: 2.4rem;
  }

  #faq ul.faq_wrap li.faq_item dd {
    padding: 1.6rem 1.6rem 1.6rem 6rem;
  }

  #faq ul.faq_wrap li.faq_item dd::before {
    position: absolute;
    top: 0.7rem;
    left: 2rem;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 560px) {
  #faq ul.faq_wrap li.faq_item dt {
    font-size: 1.6rem;
    padding: 1rem 1rem 1rem 4.8rem;
  }

  #faq ul.faq_wrap li.faq_item dt::before {
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    font-size: 1.8rem;
  }

  #faq ul.faq_wrap li.faq_item dd {
    padding: 1rem 1rem 1rem 4.8rem;
  }

  #faq ul.faq_wrap li.faq_item dd::before {
    position: absolute;
    top: 0.5rem;
    left: 2rem;
    font-size: 1.8rem;
  }
}

/*********************
CONTACT
*********************/
#contact {
  margin-bottom: 124px;
}

#contact .h2-accent::before {
  content: "CONTACT";
  color: #EBF5F3;
}

#contact .contact-table {
  width: 100%;
  max-width: 900px;
  margin: auto;
}

#contact .contact-table tr+tr {
  display: block;
  margin-top: 20px;
}

#contact .contact-table th {
  display: block;
  font-weight: 500;
}

#contact .contact-table td {
  display: block;
  margin-top: 10px;
}

#contact .required {
  background-color: var(--accent-color-1);
  color: #fff;
  font-size: 1.4rem;
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 1em;
}

#contact .privecypolicy {
  margin: 60px auto 0;
  max-width: 900px;
  background: #fff;
  padding: 40px;
  height: 300px;
  overflow: scroll;
  font-size: 14px;
  border: 1px solid #ccc;
}

#contact .privecypolicy .title {
  font-size: 20px;
  text-align: center;
}

#contact .privecypolicy>p {
  padding-top: 20px;
}

#contact .privecypolicy a {
  color: var(--main-color-1);
  border-bottom: 1px solid var(--main-color-1);
}

#contact .privecypolicy h3 {
  font-size: 20px;
  padding-top: 20px;
}

#contact .privecypolicy h4 {
  font-size: 18px;
}

#contact .privecypolicy h5 {
  font-size: 16px;
  position: relative;
  padding-left: 20px;
}

#contact .privecypolicy h5::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: var(--text-main);
}

#contact .privecypolicy ol {
  list-style: decimal;
  margin-left: 1.5em;
  padding: 0;
}

#contact .privecypolicy ol li {
  padding-top: 8px;
}

#contact .privecypolicy ul.dotted {
  list-style: disc;
  margin-left: 1.5em;
  padding: 0;
}

#contact .privecypolicy ul.dotted li {
  padding: 0;
}

.checkbox-privacypolicy {
  margin-top: 20px;
  text-align: center;
}

.radio-list label,
.checkbox-privacypolicy label {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: var(--main-color-1);
  border-color: var(--main-color-1);
}

input[type=checkbox]:before {
  border-color: #fff;
  border-style: solid;
  border-width: 0 3px 3px 0;
  height: 12px;
  left: calc(50% - 4px);
  margin: 0 !important;
  top: calc(50% - 7px);
  transform: rotate(45deg);
  visibility: hidden;
  width: 8px;
}

input[type=radio]:before {
  background-color: #fff;
  border-radius: 100%;
  height: 8px;
  left: calc(50% - 4px);
  margin: 0 !important;
  overflow: hidden;
  top: calc(50% - 4px);
  visibility: hidden;
  width: 8px;
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
  content: "";
  display: block;
  position: absolute;
  visibility: visible;
}

#contact .button01 {
  display: block;
  margin: auto;
  background-color: var(--main-color-1);
  color: #fff;
  font-size: clamp(2rem, 1.46vw, 2.8rem);
  text-align: center;
  border-radius: 999px;
  width: 100%;
  max-width: 400px;
  height: 68px;
  margin-top: 20px;
}

#contact .button-wrap {
  padding-top: 2em;
}

button.button02 {
  display: block;
  font-size: 16px;
  background-color: #909090;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 999px;
  margin: 0 auto 20px;
}

button.button02::before {
  content: "←";
  margin-right: 4px;
}

.contact_complete_message {
  width: fit-content;
  margin: auto;
}

@media screen and (max-width: 560px) {
  #contact .required {
    font-size: 1.2rem;
    padding: 2px 6px;
    margin-left: 0.2em;
  }

  #contact .contact-table td {
    margin-top: 4px;
  }

  #contact .contact-table tr+tr {
    margin-top: 10px;
  }

  input[type=email],
  input[type=text],
  input[type=tel],
  input[type=file],
  input[type=url],
  input[type=number],
  input[type=date],
  select,
  textarea {
    font-size: 1.4rem;
  }

  input[type=checkbox],
  input[type=radio] {
    width: 20px;
    height: 20px;
  }

  input[type=checkbox]:before {
    top: calc(50% - 8px);
  }

  .mwform-radio-field {
    display: block;
  }

  .mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0px !important;
    margin-top: 5px;
  }


  .mwform-checkbox-field input,
  .mwform-radio-field input {
    margin-right: 2px;
  }

  #contact .button01 {
    font-size: clamp(1.6rem, 3.25vw, 1.8rem);
    max-width: 300px;
    height: 52px;
    margin-top: 0px;
  }

  #contact .privecypolicy {
    margin: 30px auto 0;
  }

  #contact .privecypolicy {
    padding: 20px;
    height: 240px;
  }

  #contact .privecypolicy .title {
    font-size: 18px;
  }

  #contact .privecypolicy h3 {
    font-size: 18px;
    padding-top: 20px;
  }

  #contact .privecypolicy h4 {
    font-size: 16px;
  }

  #contact .privecypolicy>p {
    padding-top: 10px;
  }
}

/* comfirm */
.mw_wp_form_confirm .contact-table tr {
  padding-top: 20px;
}

.mw_wp_form_confirm .contact-table tr+tr {
  display: block;
  margin-top: 20px;
  border-top: 1px solid #eee;
}

.mw_wp_form_confirm .contact-table tr td {
  font-size: 20px;
}

.mw_wp_form_confirm .privecypolicy {
  display: none !important;
}

.mw_wp_form_confirm .checkbox-privacypolicy {
  width: fit-content;
  margin: 20px auto 0;
  position: relative;
  padding-left: 32px;
}

.mw_wp_form_confirm .checkbox-privacypolicy::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url(../../assets/images/road-sign-lp/checkbox.png);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 960px) {
  .mw_wp_form_confirm .contact-table tr td {
    font-size: 18px;
  }

  button.button02 {
    font-size: 14px;
  }

}

@media screen and (max-width: 560px) {
  .mw_wp_form_confirm .contact-table tr td {
    font-size: 16px;
  }

  .mw_wp_form_confirm .contact-table tr {
    padding-top: 10px;
  }

  .mw_wp_form_confirm .checkbox-privacypolicy {
    padding-left: 26px;
  }

  .mw_wp_form_confirm .checkbox-privacypolicy::before {
    width: 20px;
    height: 20px;
  }
}