@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/***************************

_mixin.scss

***************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.zoomImg {
  overflow: hidden;
  display: block;
  transition: 0.75s;
}

.zoomImg img {
  transform: scale(1);
  transition: 1.5s;
}

.zoomImg:hover {
  opacity: 1;
}

.zoomImg:hover img {
  transform: scale(1.2);
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.9s;
  animation-duration: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0.1;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0.1;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDownAnime {
  from {
    opacity: 0.1;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.delay-time02 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.delay-time03 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.delay-time07 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

/*========= ページ読み込み時のフェードアニメーション ===============*/
/***************************

_variables.scss

***************************/
.flexbox {
  display: flex;
}

.flexbox.col2 > div {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .flexbox.col2 {
    flex-direction: column;
  }
  .flexbox.col2 > div {
    flex: unset !important;
    width: 100% !important;
  }
  .flexbox.col2 > div:not(:first-of-type) {
    margin-top: 30px;
  }
}
.wrap {
  flex-wrap: wrap;
}

.spacebet {
  justify-content: space-between;
}

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

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

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

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

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

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

/* 画像配置 左 */
img.alignleft {
  text-align: left;
}

/* 画像配置 中央 */
img.aligncenter {
  display: block;
  margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
  display: block;
  margin: 1px 1px 1px auto;
}

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

.mt05e {
  margin-top: 0.5em;
}

.mt1e {
  margin-top: 1em;
}

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

@media screen and (max-width: 490px) {
  .mt90 {
    margin-top: 80px;
  }
}
.mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 490px) {
  .mt100 {
    margin-top: 80px;
  }
}
.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

@media screen and (max-width: 490px) {
  .mb90 {
    margin-bottom: 80px;
  }
}
.mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 490px) {
  .mb100 {
    margin-bottom: 80px;
  }
}
.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pt50 {
  padding-top: 50px;
}

.pt60 {
  padding-top: 60px;
}

.pt70 {
  padding-top: 70px;
}

.pt80 {
  padding-top: 80px;
}

.pt90 {
  padding-top: 90px;
}

@media screen and (max-width: 490px) {
  .pt90 {
    padding-top: 80px;
  }
}
.pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 490px) {
  .pt100 {
    padding-top: 80px;
  }
}
.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb60 {
  padding-bottom: 60px;
}

.pb70 {
  padding-bottom: 70px;
}

.pb80 {
  padding-bottom: 80px;
}

.pb90 {
  padding-bottom: 90px;
}

@media screen and (max-width: 490px) {
  .pb90 {
    padding-bottom: 80px;
  }
}
.pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 490px) {
  .pb100 {
    padding-bottom: 80px;
  }
}
.p-side-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

@media screen and (max-width: 490px) {
  .mid-t-left {
    text-align: left !important;
  }
}
.margin-auto {
  margin-right: auto;
  margin-left: auto;
}

.margin-r-auto {
  margin-right: auto;
}

.margin-l-auto {
  margin-left: auto;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
  line-height: 1.5;
}

.fz14 {
  font-size: 14px;
}

.fz15 {
  font-size: 15px;
}

.fz16 {
  font-size: 16px;
}

@media screen and (max-width: 490px) {
  .fz16 {
    font-size: 15px;
  }
}
.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 490px) {
  .fz20 {
    font-size: 18px;
  }
}
.fz22 {
  font-size: 22px;
}

.fz24 {
  font-size: 24px;
}

.fz28 {
  font-size: 28px;
}

@media screen and (max-width: 490px) {
  .fz28 {
    font-size: 26px;
  }
}
.fz26 {
  font-size: 26px;
}

.fz36 {
  font-size: 36px;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 600;
}

.line1 {
  line-height: 1;
}

.line2 {
  line-height: 2;
}

.line18 {
  line-height: 1.8;
}

.line26 {
  line-height: 2.6;
}

.letter006e {
  letter-spacing: 0.06em;
}

.letter008e {
  letter-spacing: 0.08em;
}

.w100p {
  width: 100%;
}

.w50p {
  width: 50%;
}

.w250 {
  width: 250px;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.fit-content {
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
}

.underLine {
  border-bottom: 1px solid #3F4754;
}

.t-red {
  color: #FF0000;
}

.t-white {
  color: #fff;
}

.t-gray {
  color: #777777;
}

.t-accent {
  color: #E6A6BD;
}

.hidden {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

/***************************

_common.scss

***************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  word-break: break-word;
  color: #3F4754;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  line-height: 2;
  letter-spacing: 0.04em;
  font-family: "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 18px;
}

@media screen and (max-width: 490px) {
  body {
    font-size: 16px;
  }
}
main {
  background-color: #fff;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #3F4754;
}

a:hover,
button:hover {
  opacity: 0.7;
  transition: 0.35s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (max-width: 1024px) {
  .pc-img {
    display: none;
  }
}
.n-pc-img {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-img {
    display: block;
  }
}
.tab-img {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-img {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .n-tab-img {
    display: none;
  }
}
.mid-img {
  display: none;
}

@media screen and (max-width: 490px) {
  .mid-img {
    display: block;
  }
}
@media screen and (max-width: 490px) {
  .n-mid-img {
    display: none;
  }
}
.sp-img {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-img {
    display: block;
  }
}
@media screen and (max-width: 428px) {
  .n-sp-img {
    display: none;
  }
}
.inner_wrap {
  padding: 0 30px;
}

@media screen and (max-width: 490px) {
  .inner_wrap {
    padding: 0 15px;
  }
}
.box_inner_wrap {
  padding: 48px 20px;
}

.wrapper {
  width: 1170px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapperS {
  width: 1230px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapperL {
  width: 1300px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.wrapper1500 {
  width: 1500px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.wrapper-right {
  width: calc(1460px + (100% - 1460px) / 2);
  margin-left: auto;
  max-width: calc(100% - 15px);
}

@media screen and (max-width: 1500px) {
  .wrapper-right {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper-right {
    max-width: 100%;
  }
}
.wrapper-left {
  width: calc(1460px + (100% - 1460px) / 2);
  margin-right: auto;
  max-width: calc(100% - 15px);
}

@media screen and (max-width: 1500px) {
  .wrapper-left {
    margin-right: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper-left {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .pc-br {
    display: none;
  }
}
.n-pc-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .n-pc-br {
    display: inline-block;
  }
}
.tab-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .tab-br {
    display: inline-block;
  }
}
.mid-br {
  display: none;
}

@media screen and (max-width: 490px) {
  .mid-br {
    display: inline-block;
  }
}
@media screen and (max-width: 490px) {
  .n-mid-br {
    display: none;
  }
}
.sp-br {
  display: none;
}

@media screen and (max-width: 428px) {
  .sp-br {
    display: inline-block;
  }
}
.c-mt125 {
  margin-top: 125px;
}

@media screen and (max-width: 490px) {
  .c-mt125 {
    margin-top: 80px;
  }
}
.c-mt140 {
  margin-top: 140px;
}

.c-mt100 {
  margin-top: 100px;
}

@media screen and (max-width: 490px) {
  .c-mt100 {
    margin-top: 80px;
  }
}
.c-pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 490px) {
  .c-pt100 {
    padding-top: 80px;
  }
}
.c-pt165 {
  padding-top: 165px;
}

.c-pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 490px) {
  .c-pb100 {
    padding-bottom: 80px;
  }
}
.c-pb150 {
  padding-bottom: 150px;
}

@media screen and (max-width: 490px) {
  .c-pb150 {
    padding-bottom: 80px;
  }
}
.bg-gray {
  background: #f6f6f6;
}

.color-accent {
  color: #E6A6BD;
}

.color-white {
  color: #fff;
}

.letter006e {
  letter-spacing: 0.06em;
}

.radius19 {
  border-radius: 19px;
}

.box-style01 {
  border-radius: 19px;
  border: 8px solid #E7A7BD;
  padding: 48px 20px;
}

@media screen and (max-width: 490px) {
  .box-style01 {
    padding: 48px 15px;
  }
}
.bg-white {
  background-color: #fff;
}

.txt-deco {
  background: linear-gradient(transparent 67%, #FDEDCE 0%);
  display: inline;
}

.ttl-style01_wrap {
  position: relative;
}

.ttl-style01 {
  font-weight: 600;
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
  line-height: 1.6;
  font-size: 24px;
  -webkit-text-decoration: #2EC3AE underline dotted;
  text-decoration: #2EC3AE underline dotted;
  text-underline-offset: 9px;
  margin: 0 auto;
}

/***************************

_header.scss

***************************/
/***************************

_under-common.scss

***************************/
.under__mv {
  height: 520px;
  background: url(../img/common/under-mv.jpg) no-repeat;
  background-size: cover;
  background-position: center right;
}

.news__mv {
  background-image: url(../img/news/mv.jpg);
}

.privacy__mv {
  background-image: url(../img/privacy/mv.jpg);
}

.business__mv {
  background-image: url(../img/business/mv.jpg);
}

.works__mv {
  background-image: url(../img/works/mv.jpg);
}

.recruit__mv {
  background-image: url(../img/recruit/mv.jpg);
}

.contact__mv {
  background-image: url(../img/contact/mv.jpg);
}

.breadcrumb {
  padding-bottom: 25px;
}

.breadcrumb__list li:nth-of-type(n+2)::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f105";
  font-size: 10px;
  padding-right: 12px;
}

.breadcrumb__list li a {
  font-size: 13px;
  color: #fff;
  display: inline;
  padding-right: 12px;
}

.breadcrumb__list li a span {
  border-bottom: 1px solid #fff;
}

.breadcrumb__list li:last-of-type a {
  color: #3F4754;
  pointer-events: none;
}

.breadcrumb__list li:last-of-type a span {
  border-bottom: none;
}

/***************************

_top.scss

***************************/
.top_mv_wrap .top_logo {
  position: absolute;
  left: 27px;
  top: 0;
}

.top_mv {
  width: 100%;
}

.top_mv img {
  width: 100%;
  height: auto;
}

.img-slide_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(../img/common/bkg_img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.img-slide {
  position: absolute;
  bottom: 92px;
  left: 0;
  width: 100%;
  height: 166px;
  background-image: url(../img/common/txt-animation.png);
  background-repeat: repeat-x;
  background-size: auto 166px;
  -webkit-animation: loop-txt 35s linear infinite;
  animation: loop-txt 35s linear infinite;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .img-slide {
    height: 80px;
    background-size: auto 80px;
  }
}
@-webkit-keyframes loop-txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}
@keyframes loop-txt {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2000px 0;
  }
}
.layout__outer_block {
  z-index: 1;
}

.scroll-contetns {
  width: min(100%, 510px);
  order: 2;
  margin: 0 auto;
  box-shadow: 0 10px 20px 0 rgba(75, 145, 152, 0.3);
}

@media screen and (max-width: 490px) {
  .scroll-contetns {
    width: 100%;
    box-shadow: none;
  }
}
@media screen and (max-width: 1300px) {
  .layout__inner_block.-logo {
    display: none;
  }
}
.reserve_box {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .layout__inner_block.-left {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .layout__inner_block {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    flex: 1;
    padding: 0 15px;
  }
  .layout__inner_block.-left {
    top: 0;
    z-index: -1;
  }
  .layout__inner_block.-logo {
    order: 3;
    padding: 0;
    z-index: 0;
    background: url(../img/common/bkg_right.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center right -55px;
  }
  .layout__inner_block_container {
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .-logo .layout__inner_block_container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 5px 10px;
  }
  .layout__left_logo,
.layout__left_img {
    display: none;
  }
  .top-concept .l-height-220 {
    text-shadow: 1px 1px 0 var(--white);
  }
}
@media screen and (max-width: 430px) {
  .layout__inner_block .btn-round {
    font-size: 1.2rem;
  }
  .layout__inner_block .btn-round .f-14 {
    font-size: 1rem;
  }
  .modal-wrapper .btn-round {
    padding: 15px 20px;
  }
  .set__product_box .icn-new {
    left: -15px;
    width: 80px;
  }
  .problem__list {
    padding: 0 15px 140px;
  }
  .points__list_item {
    padding: 40px 20px;
  }
  .top-concept {
    padding: 120px 0 500px;
  }
  .top-concept .hdg-section {
    margin-bottom: 40px;
  }
  .top-points {
    padding: 70px 0 0;
  }
  .-large .points__list_item {
    padding-top: 40vw;
    margin-top: 50vw;
  }
  .points_item_ttl {
    top: -38vw;
  }
  .points__plus_block {
    margin-bottom: 30px;
  }
  .top-pickup,
.top-howto,
.top-qa {
    padding: 0 0 150px;
  }
  .pickup__conts_flexblock {
    gap: 10px;
  }
  .pickup__right_space_container {
    padding-right: 15px;
  }
  .howto__list_num {
    transform: scale(0.7) translate(-30px, -30px);
  }
  .top-voice {
    padding: 40px 0 150px;
    background-size: 110% auto;
  }
  .top-campaign {
    padding: 10px 0 30px;
  }
  .js-accordion-toggle {
    width: 20px;
    height: 20px;
    right: 20px;
  }
  .qa__item_ttl,
.qa__item_detail {
    padding: 20px 45px;
  }
  .qa__item_ttl::before,
.qa__item_detail::before {
    top: 17px;
    left: 15px;
  }
  .qa__item_detail::before {
    top: 10px;
  }
}
@media screen and (max-width: 380px) {
  .layout__inner_block .btn-round {
    padding: 5px !important;
  }
  .layout__inner_block .icn-external {
    background-position: 75%;
  }
}
/***************************

_footer.scss

***************************/
.footer {
  background-color: #fff;
}

.footer .msg {
  font-size: 21px;
  color: #AAAAAA;
  background-color: #E1E1E1;
  line-height: 37px;
  border-radius: 100px;
}

.copyright {
  font-size: 13px;
  background: #EEEEEE;
  margin-top: 65px;
  color: #3F4653;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding-bottom: 230px;
  }
}
@media screen and (max-width: 540px) {
  .copyright {
    padding-bottom: 180px;
  }
}

.check_list li {
  position: relative;
  padding-left: 30px;
}

.check_list li::before {
  content: url(../img/main/check.png);
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 23px;
  height: 23px;
}

.top_main_msg .sub-copy {
  padding: 0 15px;
}

.top_main_msg .check_list {
  background-color: #F6F6F6;
  border-radius: 20px;
  position: relative;
  padding: 50px 30px;
  margin-top: 10px;
}

@media screen and (max-width: 490px) {
  .top_main_msg .check_list {
    padding: 30px 15px;
  }
}
.top_main_msg .check_list::after {
  content: url(../img/main/hukidashi01.png);
  display: block;
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 34px;
}

.top_main_msg .check_list li:not(:last-of-type) {
  margin-bottom: 18px;
}

.top_main_msg .msg-copy {
  margin-top: -10px;
}

.top_main_msg .point_list_wrap {
  background: url(../img/main/point-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 60px;
  padding-bottom: 105px;
}

.top_main_msg .point_list li {
  background-color: #fff;
  border-radius: 7px;
  padding: 32px 45px;
}

@media screen and (max-width: 490px) {
  .top_main_msg .point_list li {
    padding: 32px 15px;
  }
}
.top_main_msg .point_list p {
  font-size: 22.4px;
  margin-bottom: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 490px) {
  .top_main_msg .point_list p {
    font-size: 20px;
  }
}
.btn01 {
  display: inline-block;
  width: 100%;
}

.sec01_bg {
  background: url(../img/main/sec01_bg.jpg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  padding: 60px 0;
}

.sec01_list {
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.sec01_item {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.sec01_item .sec01_img.type01 {
  margin-bottom: -60px;
}
.sec01_item:has(.sec01_img.type01) {
  margin-bottom: -50px;
}

.profile_item {
  align-items: flex-end;
}

.profile_img {
  width: 170px;
}
@media screen and (min-width: 768px) {
  .profile_img {
    width: auto;
  }
}

.profile_position {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .profile_position {
    font-size: 18px;
  }
}

.profile_name {
  font-size: 23px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 10px;
}
.profile_name span {
  font-size: 16px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .profile_name {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .profile_name span {
    font-size: 18px;
    margin-right: 20px;
  }
}

.profile_sub_list {
  border-top: 1px dotted #414956;
  padding-top: 15px;
}

.disc {
  text-indent: -1rem;
  padding-left: 1rem;
  font-size: 16px;
}
.disc::before {
  content: "・";
}
@media screen and (min-width: 768px) {
  .disc {
    font-size: 18px;
  }
}

.sec02_bg {
  background: #EEEEEE;
  padding: 60px 0;
  position: relative;
}
.sec02_bg::after {
  content: "";
  background: url(../img/main/sec02_deco.png);
  width: 112px;
  height: 34px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
}

.case_item {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .case_item {
    padding: 50px 40px;
  }
}

.case_top_title {
  border-radius: 18px;
  background: linear-gradient(218deg, #9FDFBC, #73D0B1, #438989);
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 233px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.case_top_title span {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .case_top_title {
    font-size: 18px;
  }
  .case_top_title span {
    font-size: 14px;
  }
}

.case_img {
  width: 100%;
}
.case_img img {
  width: 100%;
}

.case_box {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px dotted #414956;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .case_box {
    grid-template-columns: 150px 1fr;
  }
}

.case_title {
  font-weight: 600;
}

.case_title,
.case_text {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .case_title,
.case_text {
    font-size: 16px;
  }
}

.sec02_bg-type01 {
  background: url(../img/main/sec02_case_bg.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.sec02_bg-type02 {
  background: url(../img/main/sec02_case_bg.png);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
.sec02_bg-type02 p {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .sec02_bg-type02 p {
    font-size: 18px;
  }
}

.sec02_item {
  padding-bottom: 30px;
  font-size: 20px;
  display: flex;
  align-items: baseline;
}
.sec02_item img {
  margin-right: 10px;
}

.bd_pink {
  font-size: 32px;
  font-weight: 600;
  color: #F87A92;
  line-height: 1;
  background: linear-gradient(transparent 70%, rgba(254, 206, 190, 0.4) 70%);
}

.sec03 {
  background: url(../img/main/sec03_bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 200px;
}

.sec03_wrap {
  background: #fff;
  box-shadow: 0 0 10px rgba(75, 146, 152, 0.24);
  position: relative;
  padding: 10px;
}
.sec03_wrap::before {
  content: "";
  background: url(../img/main/sec03_bg_deco.png);
  background-position: bottom left;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 100%;
  z-index: 1;
}

.sec03_box {
  position: relative;
  z-index: 2;
  border: 1px solid #43D1B3;
  padding: 30px 20px;
}
@media screen and (min-width: 768px) {
  .sec03_box {
    padding: 50px 30px;
  }
}

.ttl-style02 {
  font-size: 6vw;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 540px) {
  .ttl-style02 {
    font-size: 32px;
  }
}

.ttl-style03 {
  font-size: 7vw;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 540px) {
  .ttl-style03 {
    font-size: 36px;
  }
}

.sec03_text {
  font-weight: 16px;
}
@media screen and (min-width: 768px) {
  .sec03_text {
    font-size: 18px;
  }
}

.point_item {
  position: relative;
  padding-top: 60px;
  margin-bottom: 60px;
}

.point_num_img {
  position: absolute;
  top: 0;
  left: 0;
}

.point_item .point_img {
  text-align: right;
  margin-left: 30px;
}
.point_item:nth-child(even) .point_img {
  text-align: left;
  margin-right: 30px;
  margin-left: 0;
}

.point_title {
  font-size: 21px;
  letter-spacing: 0.06em;
  margin: 20px 0 20px;
  background: linear-gradient(209deg, #9FDFBC, #73D0B1, #438989);
  color: #fff;
  padding: 0 15px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .point_title {
    font-size: 26px;
    margin: 20px 0 30px;
  }
}

.point_text {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .point_text {
    font-size: 18px;
  }
}

.price_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .price_list {
    gap: 60px;
  }
}

.price_item .ttl-style01 {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .price_item .ttl-style01 {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

.sec06 {
  background: url(../img/main/sec06_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.sec06_list {
  background: #fff;
  border-radius: 0 0 15px 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sec06_title {
  background: linear-gradient(198deg, #8DEFC8, #30C9AE, #229EB0);
  color: #fff;
  text-align: center;
  border-radius: 15px 15px 0 0;
  padding: 5px 10px;
  font-size: 21px;
}
@media screen and (min-width: 768px) {
  .sec06_title {
    font-size: 26px;
  }
}

.sec06_contents_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .sec06_contents_list {
    gap: 40px;
  }
}

.sec06_text {
  display: grid;
  grid-template-columns: 22px 1fr;
  font-weight: 600;
  gap: 10px;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .sec06_text {
    gap: 20px;
    font-size: 20px;
  }
}
.sec06_text::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url(../img/main/check_b.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 10px;
}

.box-w {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(75, 146, 152, 0.24);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .box-w {
    padding: 30px;
  }
}

.box_g {
  background-color: #F6F6F6;
  border-radius: 15px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .box_g {
    padding: 30px;
  }
}

.sec07_item .ttl-style01 {
  margin: 0;
}

.sec07_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .sec07_list {
    gap: 40px;
  }
}

.sec07_ttl_wrap {
  gap: 15px;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .sec07_ttl_wrap .ttl-style01 {
    font-size: 26px;
  }
}

.sec07_img {
  width: 100%;
  margin-top: 20px;
}
.sec07_img img {
  width: 100%;
}

.sec07_text {
  font-size: 14px;
  color: #AAAAAA;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.sec07_text.bdb {
  padding-bottom: 20px;
  border-bottom: 1px solid #E3EEEF;
  margin-bottom: 20px;
}

.sec09 {
  padding: 60px 0;
}
.sec09 .sec01_list {
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .sec09 .sec01_list {
    gap: 40px;
  }
}
.sec09 .sec01_img {
  width: 100%;
}
.sec09 .sec01_img img {
  width: 100%;
}

.box-s {
  box-shadow: 0 0 10px rgba(34, 91, 80, 0.12);
}

.sec10_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .sec10_list {
    gap: 60px;
  }
}

.sec10_item {
  position: relative;
  border-radius: 15px;
}
.sec10_item:has(.step_next) {
  border-radius: 15px 15px 0 0;
}

.sec10_box {
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .sec10_box {
    padding: 30px;
  }
}

.sec10_img {
  width: 100%;
}
.sec10_img img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.sec10_ttl {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .sec10_ttl {
    font-size: 21px;
  }
}

.sec10_item:has(.step_next) {
  padding-bottom: 88px;
}

.step_next {
  position: absolute;
  bottom: -7px;
  width: 104%;
  left: -6px;
  right: 0;
  margin: 0 auto;
}
.step_next img {
  width: 100%;
}

.sec11 {
  background: url(../img/main/lattice_bg.jpg);
  background-size: contain;
  padding-bottom: 90px;
}
.sec11:has(.sec11_ttl) .inner_wrap {
  margin-top: -100px;
}

.sec11_ttl {
  font-size: 28px;
  display: inline;
  background: #fff;
  line-height: 1.8;
  color: #67BFA6;
  padding: 2px 10px;
  box-shadow: 3px 3px 5px rgba(73, 145, 143, 0.6);
}
@media screen and (min-width: 768px) {
  .sec11_ttl {
    font-size: 32px;
  }
}

.clinic_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clinic_item {
  box-shadow: 0 4px 3px rgba(33, 46, 29, 0.14);
  border-radius: 6px;
}

.accordion_title {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #68BFA7;
  border-radius: 6px;
  font-size: 21px;
  color: #fff;
  letter-spacing: 0.06em;
}

.accordion_title.active .accordion_text i {
  transform: scale(1, -1);
}

.accordion_text {
  width: calc(100% - 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .accordion_text {
    width: calc(100% - 175px);
  }
}
.accordion_text i {
  font-size: 35px;
}

.accordion_img {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .accordion_img {
    width: 175px;
  }
}
.accordion_img img {
  border-radius: 6px 0 0 6px;
  width: 100%;
}

.accordion_contents {
  display: none;
}

.accordion_contents {
  background: #fff;
  padding: 20px;
  padding-bottom: 30px;
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 768px) {
  .accordion_contents {
    padding: 20px 40px 40px;
  }
}

.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  border-radius: 9px;
  margin-top: 20;
}

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

.clinic_link {
  background: #3F4754;
  border-radius: 28px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 8px;
  display: block;
  text-align: center;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .clinic_link {
    font-size: 21px;
  }
}

.star_text {
  font-size: 13px;
  margin-bottom: 20px;
}

.star_rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #DDDDDD;
}

.star_rating:before,
.star_rating:after {
  content: "★★★★★";
  font-size: 24px;
}

.star_rating:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #ffcf32;
}

.star_rating[data-rate="5"]:after {
  width: 100%;
}

/* 星4.5 */
.star_rating[data-rate="4.9"]:after {
  width: 94%;
}

/* 星4.5 */
.star_rating[data-rate="4.8"]:after {
  width: 93%;
}

/* 星4.5 */
.star_rating[data-rate="4.7"]:after {
  width: 92%;
}

/* 星4.5 */
.star_rating[data-rate="4.6"]:after {
  width: 91%;
}

/* 星5 */
.star_rating[data-rate="4.5"]:after {
  width: 90%;
}

/* 星4.5 */
.star_rating[data-rate="4"]:after {
  width: 80%;
}

/* 星4 */
.star_rating[data-rate="3.5"]:after {
  width: 70%;
}

/* 星3.5 */
.star_rating[data-rate="3"]:after {
  width: 60%;
}

/* 星3 */
.star_rating[data-rate="2.5"]:after {
  width: 50%;
}

/* 星2.5 */
.star_rating[data-rate="2"]:after {
  width: 40%;
}

/* 星2 */
.star_rating[data-rate="1.5"]:after {
  width: 30%;
}

/* 星1.5 */
.star_rating[data-rate="1"]:after {
  width: 20%;
}

/* 星1 */
.star_rating[data-rate="0.5"]:after {
  width: 10%;
}

/* 星0.5 */
.star_rating[data-rate="0"]:after {
  width: 0%;
}

/* 星0 */
.sec12 {
  background: #F5FCFB;
}

.font-josefin {
  font-family: "Josefin Sans", sans-serif;
}

.faq_title {
  display: flex;
  position: relative;
  gap: 10px;
  padding: 20px;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding-right: 40px;
}
.faq_title .font-josefin {
  background: linear-gradient(251deg, #8DEFC8, #30C9AE, #229EB0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .faq_title .font-josefin {
    font-size: 28px;
  }
}
.faq_title i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 5;
  color: #fff;
}
.faq_title i::after {
  content: "";
  width: 27px;
  height: 27px;
  background: linear-gradient(251deg, #8DEFC8, #30C9AE, #229EB0);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 2px;
  right: -5px;
  z-index: -1;
}
.faq_title.active {
  background: linear-gradient(251deg, #8DEFC8, #30C9AE, #229EB0);
  border-radius: 10px;
  color: #fff;
}
.faq_title.active i {
  color: #66DFBD;
  transform: scale(1, -1);
  top: 35%;
}
.faq_title.active i::after {
  background: #fff;
}
.faq_title.active .font-josefin {
  background: linear-gradient(251deg, #fff, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq_wrap {
  background: #fff;
  box-shadow: 0 4px 3px rgba(33, 46, 29, 0.14);
  border-radius: 10px;
}

.faq_contents {
  display: none;
}

.faq_box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px 30px 30px 20px;
}
.faq_box .font-josefin {
  background: linear-gradient(251deg, #8DEFC8, #30C9AE, #229EB0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .faq_box .font-josefin {
    font-size: 28px;
  }
}

.ttl-style04 {
  font-weight: 600;
  width: -moz-fit-content;
  /* Firefox旧バージョン対応 */
  width: -webkit-fit-content;
  width: fit-content;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-size: 24px;
  -webkit-text-decoration: #2EC3AE underline dotted;
  text-decoration: #2EC3AE underline dotted;
  text-underline-offset: 9px;
}
@media screen and (min-width: 768px) {
  .ttl-style04 {
    font-size: 26px;
  }
}

.sec13_img {
  width: 100%;
}
.sec13_img img {
  width: 100%;
}
.sec13_img.type01 {
  width: 130%;
  margin-left: -60px;
}

.sec13_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sec13_item {
  position: relative;
  margin-bottom: 20px;
}
.sec13_item.box-w {
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .sec13_item.box-w {
    padding: 40px;
  }
}

.sec13_num {
  position: absolute;
  top: -15px;
  left: -10px;
}

.ttl-style05 {
  font-size: 6vw;
  text-align: center;
}
.ttl-style05 br {
  display: none;
}
@media screen and (min-width: 540px) {
  .ttl-style05 {
    font-size: 23px;
  }
  .ttl-style05 br {
    display: block;
  }
}

.sec14 {
  background: url(../img/main/sec14_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  padding-top: 200px;
}

.sec14_wrap {
  background: #EEEEEE;
}

.sec14_dt {
  font-size: 13px;
}

.sec14_dd {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.footer_pc {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 90;
}

.footer_pc_wrap {
  display: block;
}
@media screen and (min-width: 769px) {
  .footer_pc_wrap {
    display: none;
  }
}

.contact_form_wrap {
  padding-top: 100px;
}

.required {
  background-color: #27B3C9;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
  width: 100%;
  max-width: 47px;
  display: inline-block;
  text-align: center;
  line-height: 1.8;
}

.contact-dt {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .contact-dt {
    font-size: 18px;
  }
}
.contact-dt .required {
  margin-right: 15px;
}
.contact-dt span.fz15 {
  margin-left: 55px;
}

input,
select,
textarea {
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  padding: 5px 15px;
  width: 100%;
}

.contact-dd {
  margin-bottom: 30px;
}

input[type=checkbox] {
  width: auto;
}

.wpcf7-list-item label {
  display: flex;
  align-items: baseline;
}

.top-main__search-select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url(../img/common/select-arrow.svg);
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-position: right 17px center;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

::-moz-placeholder {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #B9B9B9;
}

::placeholder {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #B9B9B9;
}

input[type=checkbox] {
  display: none;
}

.wpcf7-checkbox .wpcf7-list-item-label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #DDDDDD;
  content: "";
  display: block;
  border-radius: 3px;
  left: 5px;
  width: 24px;
  height: 24px;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  display: block;
  height: 12px;
  left: 8px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(50deg);
  width: 8px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: #27B3C9;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item-label {
  font-size: 16px;
  letter-spacing: 0.04em;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "小塚ゴシック", "Noto Sans Japanese", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (min-width: 769px) {
  .wpcf7-list-item-label {
    font-size: 18px;
  }
}

.contact-form_wrap {
  text-align: center;
}

.wpcf7-submit {
  font-size: 28px;
  letter-spacing: 0.08em;
  width: 100%;
  max-width: 350px;
  border-radius: 41px;
  background: linear-gradient(246deg, #9FDFBC, #73D0B1, #438989);
  border: none;
  color: #fff;
  padding: 10px;
  transition: all 0.5s;
}
.wpcf7-submit:hover {
  opacity: 0.6;
}

.contact_thanks .contact-form_wrap a {
  padding: 10px 20px;
  display: inline-block;
}

.js_modalBtnWrap {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.js_modalWrap {
  display: none;
}

.js_modalWrap {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1000;
}

.js_modalWrap.active {
  -webkit-animation: modalOpen 0.3s ease forwards;
          animation: modalOpen 0.3s ease forwards;
}

.js_modalWrap.active2 {
  -webkit-animation: modalClose 0.3s ease forwards;
          animation: modalClose 0.3s ease forwards;
}

.js_modalWrap.active2 {
  display: none;
}

.js_modalWrap.hidden {
  opacity: 0;
  z-index: -1;
}

.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.js_modalCont a:hover {
  opacity: 1;
}

@-webkit-keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}

@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@-webkit-keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}
.js_modalClose {
  display: block;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
}
/*# sourceMappingURL=style.css.map */