@charset "UTF-8";
/* ===================================
Reset
=================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

/* チェックボックス・ラジオはデフォルト表示を維持 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  max-width: none;
}
input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* ===================================
common
=================================== */
* {
  box-sizing: border-box;
  line-break: strict;
}

/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
@media screen and (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

sup {
  vertical-align: top;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


/* ===================================
大カテゴリ
=================================== */
/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */
body{
  color: #424242;
}

section{
  position: relative;
  margin-top: -1px;
}
section h2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.sec_cta{
  margin-top: -9vw;
  position: relative;
}
.sec_cta .cta_time{
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 8.3%;
  left: 22.5%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 7.5vw;
  z-index: 10;
	background: linear-gradient(-3deg,rgba(0, 0, 0, 1) 0%, rgba(102, 102, 102, 1) 50%, rgba(0, 0, 0, 1) 100%);
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
}
.sec_cta a{
  display: block  ;
  width: 80%;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
body{
  position: relative;
}
.pc_only{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pc_bg{
  width: 100%;
  height: 100%;
}
.pc_bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
h1{
  position: absolute;
  width: 50%;
  max-width: 290px;
  top: 40px;
  left: 40px;
  z-index: 10;
}
.float_box{
  background: #fff;
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  right: 0;
  z-index: 30;
  width: 100%;
}
.float_box a{
  display: block;
  width: 100%;
}
.float_box a img{
  display: block;
  width: 100%;
}
.cta{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: end;
  gap: 10px;
  width: 90%;
  margin-inline: auto;
}
.pc_cont{
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: calc((100% - 500px - 12vw) / 2);
  z-index: 10;
  width: calc((100% - 500px - 12vw) * 0.95);
  max-width: 550px;
}
.pc_cont img{
  display: block;
}

main{
  overflow: hidden;
}
.maker{
  background: #fff;
  overflow: hidden;
  padding-bottom: 45px;
}
.maker .slider{
  margin-top: 14px;
  display: flex;
  height: 50px;
  width: max-content;
}
.maker .slider img{
  animation: scroll 30s linear infinite;
  display: block;
  width: auto;
  height: 100%;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 769px) {
  main{
    position: relative;
  }
  .maker{
    padding-bottom: 9vw;
  }
  .maker .slider{
    margin-top: 4vw;
    height: 12vw;
  }
}

.service{
  background: #EF8394;
}
.service h2,
.maker h2,
.form h2{
  position: unset;
}

/* サービス */
.service{
  padding-bottom: 60px;
}
.service .swiper{
  padding: 30px 25px;
}
.swiper-button-prev,
.swiper-button-next{
  width: 77px !important;
  height: 77px !important;
}
.swiper-button-prev{
  left: -37px !important;
}
.swiper-button-next{
  scale: -1 1;
  right: -37px !important;
}
.swiper-scrollbar{
  width: calc(100% - 50px) !important;
  left: 50% !important;
  transform: translateX(-50%);
  background: #FFB1BD !important;
}
.swiper-scrollbar-drag{
  background: #CC374F !important;
}
@media screen and (max-width: 769px) {
  .service{
    padding-bottom: 15vw;
  }
  .service .swiper{
    padding: 14vw 5vw;
  }
  .swiper-button-prev,
  .swiper-button-next{
    width: 15vw !important;
    height: 15vw !important;
  }
  .swiper-button-prev{
    left: -7.5vw !important;
  }
  .swiper-button-next{
    right: -7.5vw !important;
  }

}

/* faq */
.faq h2{
  position: unset;
  font-size: 24px;
  color: #fff;
  background: #EF8394;
  text-align: center;
  padding: 1em;
}
.el_faq_q {
  font-size: 16px;
  display: grid;
  align-items: center;
  grid-template-columns: 1em 1fr 1em;
  border-bottom: 1px solid #EF8394;
  background: #fff;
  gap: .7em;
  padding: .85em 1.5em;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
}
.el_faq_q .icon_q {
  width: 1em;
  height: 100%;
  background: url(../img/icon_q.svg) no-repeat center center / contain;
}
.el_faq_q .icon {
  height: 1.7em;
  position: relative;
}
.el_faq_q .icon::before,
.el_faq_q .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: .35em;
  width: 1em;
  height: .15em;
  background: #EF8394;
}
.el_faq_q .icon::after {
  rotate: 90deg;
  transition: .3s;
}
details[open] .icon::after {
  rotate: 180deg;
}
.el_faq_q::-webkit-details-marker {
  display: none;
}
.el_faq_a{
  background: #FFF3F5;
}
.el_faq_a .icon_a {
  width: 1em;
  height: 100%;
  background: url(../img/icon_a.svg) no-repeat center center / contain;
}
.el_faq_a_inner {
  display: grid;
  gap: .7em;
  align-items: center;
  grid-template-columns: 1em 1fr;
  padding: .85em 1.5em;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-box-trim: trim-both;
}

.form{
  font-size: 16px;
  background: #B4E0F6;
  padding: 2.5em 1em;
  padding-bottom: calc(env(safe-area-inset-bottom) + 2.5em);
}
.form_inner{
  padding: 2.5em .8em;
  background: #fff;
}
.form_text{
  line-height: 1.6;
  padding-block: 1.6em;
  color: #084393;
  border-bottom: 1px solid currentColor;
}

/* お問い合わせフォーム（Contact Form 7対応） */
.contact_form_wrap {
  padding-top: 1em;
}
.contact_form_wrap .form_row {
  padding-block: 1.8em;
  border-bottom: 1px dotted #9DB5B2;
}
.contact_form_wrap .form_row:last-of-type {
  border-bottom: none;
}
.contact_form_wrap .form_label {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  color: #424242;
  margin-bottom: .5em;
}
.contact_form_wrap .form_required {
  display: inline-block;
  padding: .3em .6em .4em;
  font-weight: 400;
  color: #fff;
  background: #C70C0C;
}
.contact_form_wrap input[type="text"],
.contact_form_wrap input[type="tel"],
.contact_form_wrap input[type="email"],
.contact_form_wrap textarea {
  font-size: 1em;
  width: 100%;
  padding: 0.8em;
  background: #FAFAFA;
  border: none;
  border-radius: 0;
}
.contact_form_wrap textarea {
  resize: none;
  height: 20em;
}
.contact_form_wrap input::placeholder,
.contact_form_wrap textarea::placeholder {
  color: #BDBDBD;
}
.contact_form_wrap .form_note {
  width: 100%;
  margin-top: 0.5em;
}

/* プライバシーポリシー */
.privacy_block {
  padding-top: 3em;
  border-top: 1px dotted #9DB5B2;
}
.privacy_ttl {
  font-size: 1.25em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8em;
}
.privacy_intro {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 1em;
}
.privacy_scroll {
  max-height: 540px;
  overflow-y: auto;
  background: #FAFAFA;
  padding: 1em;
  margin-bottom: 1em;
}
.privacy_body {
  font-size: 0.85em;
  line-height: 1.7;
  color: #424242;
}
.privacy_body p {
  margin-bottom: 1em;
}
.privacy_agree {
  margin: 0;
}
.privacy_agree label {
  display: flex;
  align-items: center;
  gap: 0.3em;
  cursor: pointer;
  font-size: 0.85em;
}
.privacy_agree input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  cursor: pointer;
}

.contact_form_wrap .form_submit {
  margin-top: 1.5em;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.contact_form_wrap .form_submit::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(-50%, -50%);
  width: 1.3em;
  height: 1.3em;
  content: "";
  display: block;
  background: url(../img/button_icon.svg) no-repeat center center / contain;
  vertical-align: middle;
  margin-left: 0.3em;
}
.contact_form_wrap .form_submit button,
.contact_form_wrap .form_submit input[type="submit"] {
  width: 80%;
  min-width: fit-content;
  font-size: 1em;
  padding: 1.5em 4em 1.5em 2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  color: #fff;
  background: #084393;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
}
.contact_form_wrap .form_submit button:hover,
.contact_form_wrap .form_submit input[type="submit"]:hover {
  opacity: 0.9;
}
@media screen and (min-width: 769px) {
  .float_box{
    display: none;
  }
  main{
    position: relative;
    margin-inline: auto 12vw;
    max-width: 500px;
    padding-top: 113px;
  }
  .sec_cta{
    margin-top: -45px;
  }
  .sec_cta .cta_time{
    font-size: 38px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 769px) {
  main{
    margin-inline: auto 40px;
  }
  .pc_cont{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: calc((100% - 540px) / 2);
    z-index: 10;
    width: calc((100% - 540px) * 0.95);
    max-width: 550px;
  }
}
@media screen and (max-width: 768px) {
  h1{
    width: 100%;
    z-index: -1;
  }
  .pc_only{
    display: none;
  }
  .faq h2{
    font-size: max(5.5vw, 19px);
  }
  .el_faq_a_inner,
  .el_faq_q{
    font-size: max(3.5vw, 14px);
  }
  .form{
    padding-bottom: calc(env(safe-area-inset-bottom) + 2.5em + 15vw);
  }
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.screen-reader-response{
  display: none;
}