@charset "UTF-8";

/*
Theme Name:KabuK Style
Theme URI:
Description:WordPress Original Theme for KabuK Style
Text Domain: kabukstyle_theme
Version:1.0.0
*/
/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */
/*======================
  reset
======================*/
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
label,
table,
tbody,
tr,
th,
td,
figure,
blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
figure,
footer,
header,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease-in;
}

li {
  list-style: none;
}

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

video {
  max-width: 100%;
  height: auto;
}

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

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/************************
　スクロールアニメーション用
*************************/
.fadeIn {
  opacity: 0;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(20px);
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-20px);
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(20px);
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  opacity: 1;
  transform: translateX(0);
}

.fadeInZoomOut {
  opacity: 0;
  transform: scale(1.05);
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  opacity: 1;
  transform: scale(1);
}

.fadeInZoomIn {
  opacity: 0;
  transform: scale(0.95);
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  opacity: 1;
  transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes btnLineOne {
  from {
    transform: scale(0, 1);
  }

  to {
    transform: scale(1, 1);
  }
}

@keyframes btnLineOne {
  from {
    transform: scale(0, 1);
  }

  to {
    transform: scale(1, 1);
  }
}

@-webkit-keyframes btnLine {
  from {
    transform: scale(0, 1);
  }

  to {
    transform: scale(2, 1);
  }
}

@keyframes btnLine {
  from {
    transform: scale(0, 1);
  }

  to {
    transform: scale(2, 1);
  }
}

@-webkit-keyframes scrollLine {
  from {
    transform: scale(1, 0);
  }

  to {
    transform: scale(1, 1);
  }
}

@keyframes scrollLine {
  from {
    transform: scale(1, 0);
  }

  to {
    transform: scale(1, 1);
  }
}

/*======================
  base
======================*/
body {
  color: #3B3C3E;
  font-family: "YakuHanJP", "Hiragino Sans", "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, "源ノ角ゴシック JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.11em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.11em;
  }
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */
/*=======================
  footer
=======================*/
.l-footer {
  position: relative;
  padding: 60px 0 60px;
  background-color: #3B3C3E;
  box-sizing: border-box;
  color: #fff;
}

@media screen and (max-width: 1023px) {
  .l-footer {
    padding: 32px 0 56px;
  }
}

.l-footer__inner {
  max-width: 1218px;
  margin: 0 auto;
  box-sizing: content-box;
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
}

@media (max-width: 1300px) {
  .l-footer__inner {
    margin: 0 auto;
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__inner {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-footer__logo {
  display: block;
  width: 163px;
  margin-left: 24px;
}

.l-footer__logo img {
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .l-footer__logo {
    width: 144px;
    margin: 0 auto;
  }
}

.l-footer__copyright {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  margin-top: 58px;
}

@media screen and (max-width: 1023px) {
  .l-footer__copyright {
    margin-top: 0;
    text-align: center;
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.l-footer__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 16px;
}

@media screen and (max-width: 1023px) {
  .l-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__nav>li {
    margin-bottom: 8px;
  }
}

.l-footer__nav>li:not(:last-child) {
  margin-right: 48px;
}

@media screen and (max-width: 1439px) {
  .l-footer__nav>li:not(:last-child) {
    margin-right: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .l-footer__nav>li:not(:last-child) {
    margin-right: 16px;
  }
}

.l-footer__nav>li>a {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.03em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .l-footer__nav>li>a {
    font-weight: 600;
  }
}

.l-footer__nav>li>a::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  transition: 0.3s;
}

.l-footer__nav>li>a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-footer__nav>li.m-contact>a {
  width: 88px;
  height: 32px;
  line-height: 30px;
  border: 1px solid #fff;
  text-align: center;
}

.l-footer__nav>li.m-contact>a::before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .l-footer__nav>li.m-contact>a {
    width: 106px;
    height: 40px;
    line-height: 38px;
  }
}

.l-footer__nav>li.m-contact>a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

@media screen and (max-width: 1023px) {
  .l-footer__others {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: center;
  }
}

.l-footer__privacy {
  text-align: right;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .l-footer__privacy {
    margin-left: 20px;
  }
}

.l-footer__privacy>a:hover {
  opacity: 0.75;
}

.l-footer .c-language-swich {
  margin: 38px 0 38px;
}

@media screen and (max-width: 1023px) {
  .l-footer .c-language-swich {
    margin: 0;
    font-weight: normal;
  }
}

/*=======================
  header
=======================*/
header {
  padding-top: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 994;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  header {
    padding-top: 10px;
    padding-left: 10px;
    width: auto;
  }
}

.l-header {
  width: 100%;
  height: 60px;
  background-color: rgb(255, 255, 255);
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 994;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in forwards;
  animation: fadeIn 1s ease-in forwards;
}

@media screen and (min-width: 768px) {
  .l-header {
    height: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .l-header {
    height: 80px;
  }
}

.l-header.is-hidden {
  transform: translateY(-110%);
}

.l-header__inner {
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo {
  display: flex;
  align-items: center;
  z-index: 999;
}

@media screen and (max-width: 1023px) {
  .l-header__logo {
    width: 150px;
  }
}

.l-header__logo img {
  width: 100%;
}

.l-header__logo a:hover {
  opacity: 1;
}

.l-header__logo a:hover>img {
  transition: 0.3s;
  transform: scale(1.05);
}

.l-header__logo a.m-logo {
  display: flex;
  width: 56px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo a.m-logo {
    width: 80px;
  }
}

@media screen and (min-width: 1440px) {
  .l-header__logo a.m-logo {
    width: 91px;
  }
}

.l-header__logo a.m-text {
  display: block;
  width: 120px;
  margin-left: 16px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo a.m-text {
    width: 160px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .l-header__logo a.m-text {
    width: 171px;
    margin-left: 72px;
  }
}

.l-navbtn {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 999;
}

@media screen and (min-width: 1024px) {
  .l-navbtn {
    display: none;
  }
}

.l-navbtn__bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.3s;
}

.l-navbtn__bar:nth-child(1) {
  transform: translateY(-8px);
}

.l-navbtn__bar:nth-child(3) {
  transform: translateY(8px);
}

.l-gnav {
  box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
  .l-gnav {
    width: 100%;
    height: 100vh;
    padding: 35% 40px 124px;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    overflow-y: scroll;
    transition: 0.5s;
    transform: translateX(110%);
  }

  .l-gnav.is-open {
    display: block;
    transform: translateX(0);
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .l-gnav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1023px) {
  .l-gnav__item {
    text-align: center;
  }
}

.l-gnav__item:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 1024px) {
  .l-gnav__item:not(:last-child) {
    margin-right: 30px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  .l-gnav__item:not(:last-child) {
    margin-right: 64px;
  }
}

.l-gnav__item>a {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.03em;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .l-gnav__item>a {
    font-size: 18px;
  }
}

.l-gnav__item>a::before {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background-color: #3B3C3E;
  position: absolute;
  left: 0;
  bottom: -4px;
  opacity: 0;
  transition: 0.3s;
}

.l-gnav__item>a:hover::before {
  width: 100%;
  opacity: 1;
}

.l-gnav__item.m-contact>a {
  width: 140px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  text-align: center;
  color: #fff;
}

.l-gnav__item.m-contact>a::before {
  content: none;
}

@media screen and (min-width: 1024px) {
  .l-gnav__item.m-contact>a {
    width: 160px;
    height: 80px;
    line-height: 78px;
  }
}

.l-gnav__item.m-contact>a:hover {
  background-color: #fff;
  color: #3B3C3E;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(2) {
  display: none;
}

.is-open.l-navbtn .l-navbtn__bar:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

/*=======================
  main
=======================*/
.l-main {
  display: block;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */
/*=======================
  404
=======================*/
.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}

.c-404__description {
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.c-404__link {
  display: block;
  margin-top: 1em;
  color: #004EA2;
  text-align: center;
  text-decoration: underline;
}

.c-btn>a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.11em;
  width: 320px;
  height: 70px;
  border: 1px solid #3B3C3E;
  background-color: #3B3C3E;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .c-btn>a {
    font-size: 16px;
    width: 240px;
    height: 56px;
  }
}

.c-btn>a::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  transform: rotateY(90deg);
  transform-origin: left;
  transition: 0.4s;
  z-index: -1;
}

.c-btn>a>.arrow::before,
.c-btn>a>.arrow::after {
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn>a>.arrow::before {
  width: 60px;
  background-color: #3B3C3E;
  right: -22px;
}

@media screen and (max-width: 1023px) {
  .c-btn>a>.arrow::before {
    width: 40px;
    right: -15px;
  }
}

.c-btn>a>.arrow::after {
  width: 30px;
  background-color: #fff;
  right: 8px;
  transform-origin: left center;
}

@media screen and (max-width: 1023px) {
  .c-btn>a>.arrow::after {
    width: 20px;
    right: 4px;
  }
}

.c-btn>a:hover {
  color: #3B3C3E;
}

.c-btn>a:hover::before {
  transform: rotateY(0);
}

.c-btn>a:hover>.arrow::before {
  background-color: transparent;
}

.c-btn>a:hover>.arrow::after {
  background-color: #3B3C3E;
  -webkit-animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
  animation: btnLine 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-small>a {
  width: 225px;
  height: 55px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small>a {
    width: 190px;
    height: 50px;
  }
}

.c-btn.m-small>a>.arrow::before {
  width: 40px;
  right: -20px;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-small>a>.arrow::before {
    width: 30px;
    right: -15px;
  }
}

.c-btn.m-white>a {
  color: #3B3C3E;
  font-weight: 300;
  background-color: #fff;
}

.c-btn.m-white>a::before {
  background-color: #F0F0F0;
}

.c-btn.m-white>a>.arrow::before {
  background-color: #3B3C3E;
  transform-origin: left;
}

.c-btn.m-white>a>.arrow::after {
  content: none;
}

.c-btn.m-white>a:hover>.arrow::before {
  background-color: #3B3C3E;
  -webkit-animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
  animation: btnLineOne 1s cubic-bezier(1, 0, 0, 1) infinite;
}

.c-btn.m-align-center {
  text-align: center;
}

.c-btn.m-align-right {
  text-align: right;
}

@media screen and (max-width: 1023px) {
  .c-btn.m-align-right {
    margin-right: 20px;
  }
}

.c-btn.m-fw-normal>a {
  font-weight: 400;
}

.c-inner {
  max-width: 640px;
  margin: 0 auto;
  box-sizing: content-box;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .c-inner {
    padding-left: 64px;
    padding-right: 64px;
  }
}

@media screen and (min-width: 1024px) {
  .c-inner {
    max-width: 1040px;
  }
}

@media screen and (min-width: 1024px) {
  .c-inner.m-1152 {
    max-width: 1152px;
  }
}

.c-inner.m-p-relative {
  position: relative;
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .u-pc-none {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-sp-none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

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

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */
body {
  color: #333;
  letter-spacing: 0.15em;
  @import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
}

.c-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

@media screen and (max-width: 1023px) {
  .c-container {
    padding: initial;
  }
}

.p-fv {
  background-color: #FCF0F1;
  position: relative;
}

.p-fv::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .p-fv::after {
    background-size: contain;
  }
}

.p-fv__title1 {
  font-size: 55px;
  font-weight: normal;
  padding-top: 180px;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  line-height: 1;
}

.p-fv__title2 {
  font-size: 80px;
  font-weight: normal;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.p-fv__span {
  vertical-align: -20%;
}

.p-fv__text {
  font-size: 24px;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.p-fv__span-fz {
  font-size: 32px;
}

.p-fv__box {
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.p-fv__box>div>img {
  position: relative;
  z-index: 1;
}

.p-fv__right {
  margin-top: 50px;
}

.p-fv__img {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-fv__img {
    display: none;
  }
}

.p-fv__img_sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-fv__img_sp {
    display: block;
    width: 100%;
  }
}

.p-fv__img_pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-fv__img_pc {
    display: none;
  }
}

.p-cv__container {
  padding-top: 82px;
  padding-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-cv__img-box {
    display: none;
  }
}

.p-cv__text1 {
  font-size: 18px;
  font-weight: normal;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-cv__text1 {
    display: none;
  }
}

.p-cv__text1::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -220px;
  width: 160px;
  height: 160px;
  background-image: url(../img/home/eight_cv_point.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

.p-cv__text1>span {
  font-size: 30px;
}

.p-cv__text2 {
  font-size: 30px;
  font-weight: normal;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .p-cv__text2 {
    display: none;
  }
}

.p-cv__fz {
  font-size: 100px;
  font-weight: bold;
  background: linear-gradient(180deg, #DAA520 0%, #C88F40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-cv__va {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.p-cv__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-cv__sp {
    display: block;
    margin: 0 auto;
  }
}

.p-cv__text3 {
  font-size: 24px;
  color: #E0394D;
  font-weight: normal;
  display: inline-block;
  position: relative;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p-cv__text3 {
    font-size: 20px;
  }
}

.p-cv__text3::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-cv__link {
  font-size: 24px;
  color: #fff;
  display: block;
  background: #E0394D;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  width: 580px;
  line-height: 90px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-cv__link {
    font-size: 20px;
    width: 95%;
    max-width: 580px;
  }
}

.p-cv__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 75px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-cv__link::before {
    right: 16px;
  }
}

.p-cv__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 85px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-cv__link::after {
    right: 24px;
  }
}

.p-care {
  background-color: #FCF0F1;
  position: relative;
}

.p-care::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
  transform: rotate(180deg);
}

@media screen and (min-width: 1920px) {
  .p-care::before {
    background-size: contain;
  }
}

.p-care::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .p-care::after {
    background-size: contain;
  }
}

.p-care__container {
  padding-top: 50px;
}

@media screen and (max-width: 1023px) {
  .p-care__container {
    padding-top: initial;
  }
}

.p-care__box-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-care__box-sp {
    display: block;
    margin-bottom: 40px;
    text-align: center;
  }
}

.p-care__boxes {
  background-image: url(../img/home/eight_care_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 45px;
  padding-bottom: 210px;
  padding-left: 137px;
  padding-right: 137px;
}

@media screen and (max-width: 1023px) {
  .p-care__boxes {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 30px;
    background-image: url(../img/home/eight_care_bg_sp.png);
    padding-bottom: 150px;
    display: none;
  }
}

.p-care__title-box {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

@media screen and (max-width: 1023px) {
  .p-care__title-box {
    margin-bottom: 30px;
  }
}

.p-care__title-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #DAA520;
}

.p-care__title {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  line-height: 50px;
  display: inline-block;
  background-color: #FCF0F1;
  width: 550px;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-care__title {
    font-size: 16px;
    width: 274px;
    line-height: 30px;
  }
}

.p-care__span1 {
  color: #C88F40;
}

@media screen and (max-width: 767px) {
  .p-care__span1 {
    font-size: 16px;
  }
}

.p-care__span2 {
  font-size: 35px;
}

@media screen and (max-width: 767px) {
  .p-care__span2 {
    font-size: 20px;
  }
}

.p-care__box-title {
  white-space: nowrap;
  font-size: 32px;
  text-align: center;
  color: #E0394D;
  margin-bottom: 27px;
}

@media screen and (max-width: 1023px) {
  .p-care__box-title {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 28px;
  }
}

.p-care__box-title>span {
  font-size: 40px;
}

@media screen and (max-width: 1023px) {
  .p-care__box-title>span {
    font-size: 26px;
  }
}

.p-care__box1 {
  max-width: 765px;
  margin: auto;
}

.p-care__box2 {
  max-width: 765px;
  margin: auto;
  margin-top: 120px;
}

@media screen and (max-width: 1023px) {
  .p-care__box2 {
    margin-top: 70px;
  }
}

.p-care__banner-box {
  max-width: 875px;
  margin: auto;
  margin-top: 50px;
}

@media screen and (max-width: 1023px) {
  .p-care__banner-box {
    display: none;
  }
}

.p-care__banner-box-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-care__banner-box-sp {
    display: block;
    text-align: center;
  }
}

.p-care__box3 {
  font-size: 20px;
  margin-top: 160px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-care__box3 {
    font-size: 18px;
    margin-top: 120px;
  }
}

.p-care__box3::before {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  left: 0;
  width: 285px;
  height: 1px;
  background-color: #DAA520;
}

.p-care__box3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 285px;
  height: 1px;
  background-color: #DAA520;
}

.p-care__box3>p {
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 1023px) {
  .p-care__box3>p {
    max-width: 80%;
  }
}

.p-care__banner-box1 {
  margin-top: 160px;
}

@media screen and (max-width: 1023px) {
  .p-care__banner-box1 {
    display: none;
  }
}

.p-care__banner-box1_sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-care__banner-box1_sp {
    margin-top: 120px;
    display: block;
    text-align: center;
  }
}

.p-na {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #FCF0F1;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-na {
    padding-top: initial;
    padding-bottom: initial;
  }
}

.p-na::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
  transform: rotate(180deg);
}

@media screen and (min-width: 1920px) {
  .p-na::before {
    background-size: contain;
  }
}

.p-na::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .p-na::after {
    background-size: contain;
  }
}

.p-na__title-box {
  margin-top: 120px;
}

@media screen and (max-width: 1023px) {
  .p-na__title-box {
    margin-top: 80px;
  }
}

.p-na__box1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(90deg, #FFC3A0 0%, #FFAFBD 100%);
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 1023px) {
  .p-na__box1 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.p-na__box1-title {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-na__box1-title {
    display: none;
  }
}

.p-na__box1-title-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-na__box1-title-sp {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-na__img {
    display: none;
  }
}

.p-na__img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-na__img-sp {
    display: block;
  }
}

.p-na__box1-flex {
  display: flex;
  margin-top: 40px;
  gap: 52px;
  justify-content: center;
}

.p-na__box1-2-flex {
  display: flex;
  gap: 52px;
  justify-content: center;
  margin-top: 100px;
}

.p-na__box1-right {
  max-width: 506px;
  position: relative;
  padding-top: 60px;
}

.p-na__box1-right>img {
  position: absolute;
  top: -100px;
  right: 80px;
  max-width: 450px;
}

@media screen and (max-width: 767px) {
  .p-na__box1-flex-pc {
    display: none;
  }
}

.p-na__box1-flex-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-na__box1-flex-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-na__box1-2-flex-pc {
    display: none;
  }
}

.p-na__box1-2-flex-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-na__box1-2-flex-sp {
    display: block;
  }
}

.p-na__box1-right-title {
  letter-spacing: 0.15em;
  color: #E0394D;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 10px;
}

.p-na__box1-right-text {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px;
}

.p-na__box1-right-text1 {
  font-size: 20px;
  letter-spacing: 0.15em;
  font-weight: normal;
}

.p-na__box1-2-left {
  max-width: 506px;
  position: relative;
  padding-top: 50px;
}

.p-na__box1-2-left-img {
  position: absolute;
  top: -110px;
  left: 80px;
  max-width: 450px;
}

.p-na__box1-2-left-title {
  text-align: center;
  font-weight: normal;
  font-size: 26px;
  margin-bottom: 10px;
}

.p-na__box1-2-left-sub-title {
  font-size: 20px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.p-na__box1-2-left-text {
  font-size: 18px;
  font-weight: normal;
}

.p-na__box1-2-left-sub-title1 {
  color: #E0394D;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.p-na__tri {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10.4px;
  border-color: transparent transparent transparent #333333;
}

.p-na__arrow {
  display: block;
  left: 3px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #DAA520;
  border-right: 2px solid #DAA520;
  transform: rotate(135deg);
}

.p-na__arrow-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
}

.p-na__box1-last-text {
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  margin-top: 65px;
}

@media screen and (max-width: 1023px) {
  .p-na__box1-last-text {
    font-size: 24px;
    margin-top: 40px;
  }
}

.p-exa {
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #FCF0F1;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-exa {
    padding-bottom: 0;
    padding-top: 20px;
  }
}

.p-exa::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
  transform: rotate(180deg);
}

@media screen and (min-width: 1920px) {
  .p-exa::before {
    background-size: contain;
  }
}

.p-exa::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .p-exa::after {
    background-size: contain;
  }
}

.p-exa__sub-title {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-exa__sub-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.p-exa__img-box {
  text-align: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .p-exa__img-box {
    display: none;
  }
}

.p-exa__img-box-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-exa__img-box-sp {
    display: block;
    text-align: center;
    margin-bottom: 50px;
  }
}

.p-exa__box {
  display: flex;
  justify-content: space-between;
}

.p-exa__box>img {
  max-width: 317px;
  height: 100%;
  width: 31%;
}

.p-exa__img-group {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .p-exa__img-group {
    display: none;
  }
}

.p-exa__img-group-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-exa__img-group-sp {
    display: block;
    width: 90%;
    margin: auto;
  }
}

.p-exa__box1 {
  justify-content: start;
  margin-top: 70px;
  position: relative;
}

.p-exa__box1-text {
  position: absolute;
  bottom: 100px;
  left: 700px;
  font-size: 20px;
  font-weight: normal;
}

.p-exa__img1 {
  margin-right: 45px;
}

@media screen and (max-width: 767px) {
  .p-exa__rec-title-pc {
    display: none;
  }
}

.p-exa__rec-title-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-exa__rec-title-sp {
    display: block;
    margin: auto;
  }
}

.p-exa__rec-box {
  background-image: url(../img/home/eight_rec_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 94px;
  padding-bottom: 50px;
  margin-top: 100px;
  padding-right: 139px;
  padding-left: 153px;
}

@media screen and (max-width: 1023px) {
  .p-exa__rec-box {
    background-image: url(../img/home/eight_rec_bg_sp.png);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    margin-top: 50px;
  }
}

.p-exa__rec-title-box {
  text-align: center;
  margin-bottom: 43px;
}

@media screen and (max-width: 1023px) {
  .p-exa__rec-title-box {
    margin-bottom: 20px;
  }
}

.p-exa__rec-img-box {
  max-width: 748px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .p-exa__rec-img-box {
    display: none;
  }
}

.p-exa__rec-img-box-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-exa__rec-img-box-sp {
    display: block;
  }
}

.p-reason {
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #FCF0F1;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-reason {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.p-reason::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
  transform: rotate(180deg);
}

@media screen and (min-width: 1920px) {
  .p-reason::before {
    background-size: contain;
  }
}

.p-reason::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
}

@media screen and (min-width: 1920px) {
  .p-reason::after {
    background-size: contain;
  }
}

.p-reason__boxes>div:not(:last-child) {
  margin-bottom: 150px;
}

@media screen and (max-width: 1023px) {
  .p-reason__boxes>div:not(:last-child) {
    margin-bottom: 80px;
  }
}

.p-reason__flex-box {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-reason__flex-box {
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
  }
}

.p-reason__img {
  max-width: 525px;
  height: 100%;
  width: 51%;
}

@media screen and (max-width: 767px) {
  .p-reason__img {
    width: 100%;
    max-width: initial;
  }
}

@media screen and (max-width: 1023px) {
  .p-reason__boxes {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-reason__boxes {
    padding-left: initial;
    padding-right: initial;
  }
}

.p-reason__box-text {
  max-width: 475px;
  font-size: 20px;
}

@media screen and (max-width: 1023px) {
  .p-reason__box-text {
    font-size: 17px;
  }
}

.p-reason__box-text>span {
  color: #E0394D;
  font-weight: normal;
  font-size: 25px;
}

@media screen and (max-width: 1023px) {
  .p-reason__box-text>span {
    font-size: 22px;
  }
}

.p-reason__flex-box1 {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .p-reason__flex-box1 {
    flex-direction: column;
  }
}

.p-reason__flow {
  margin-top: 150px;
}

@media screen and (max-width: 1023px) {
  .p-reason__flow {
    margin-top: 80px;
  }
}

.p-reason__flow-boxes {
  background: linear-gradient(90deg, #FFC3A0 0%, #FFAFBD 100%);
  padding: 50px 50px 30px 80px;
}

@media screen and (max-width: 1023px) {
  .p-reason__flow-boxes {
    padding: 30px 20px 30px 20px;
  }
}

.p-reason__flow-box {
  display: flex;
  gap: 55px;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .p-reason__flow-box {
    gap: 35px;
  }
}

@media screen and (max-width: 767px) {
  .p-reason__flow-box {
    flex-direction: column;
    gap: 20px;
  }
}

.p-reason__flow-box>img {
  max-width: 300px;
  height: auto;
}

.p-reason__flow-box-right>p {
  max-width: 525px;
  font-size: 20px;
  font-weight: normal;
}

@media screen and (max-width: 1023px) {
  .p-reason__flow-box-right>p {
    font-size: 17px;
  }
}

@media screen and (max-width: 1023px) {
  .p-reason__box-title {
    display: none;
  }
}

.p-reason__box-title-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-reason__box-title-sp {
    display: block;
    padding-left: 10px;
  }
}

.p-reason__flow-arrow {
  text-align: center;
  margin: 30px 0;
}

@media screen and (max-width: 1023px) {
  .p-reason__flow-arrow {
    margin: 20px 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-reason__flow-box-right-pc {
    display: none;
  }
}

.p-reason__flow-box-right-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .p-reason__flow-box-right-sp {
    display: block;
    margin-bottom: 10px;
  }
}

.p-info {
  padding-top: 50px;
  padding-bottom: 150px;
  background-color: #FCF0F1;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .p-info {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

.p-info::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url(../img/home/eight_bg_border.png);
  background-size: cover;
  transform: rotate(180deg);
}

@media screen and (min-width: 1920px) {
  .p-info::before {
    background-size: contain;
  }
}

.p-info__boxes>table {
  width: 100%;
}

.p-info__boxes>table>tbody>tr:not(:last-child) {
  border-bottom: 1px solid #F9E5E5;
}

.p-info__tr {
  height: 80px;
}

@media screen and (max-width: 767px) {
  .p-info__tr {
    display: flex;
    flex-direction: column;
    height: initial;
  }
}

.p-info__th {
  width: 210px;
  background-color: #F9E5E5;
  font-size: 18px;
  font-weight: normal;
  padding-left: 50px;
  text-align: left;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .p-info__th {
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
    height: 40px;
    display: flex;
    align-items: center;
  }
}

.p-info__th1 {
  border-bottom: 1px solid #fff;
}

.p-info__td {
  background-color: #fff;
  font-size: 18px;
  font-weight: normal;
  padding-left: 70px;
  vertical-align: middle;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .p-info__td {
    font-size: 16px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    height: 70px;
  }
}

.p-info__img-box {
  margin: 30px 0;
}

@media screen and (max-width: 1023px) {
  .p-info__img-box {
    padding-left: 10px;
    padding-right: 10px;
  }
}

iframe {
  width: 100%;
  height: 324px;
  margin-bottom: 150px;
}

@media screen and (max-width: 1023px) {
  iframe {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  iframe {
    padding-left: 10px;
    padding-right: 10px;
    height: 250px;
  }
}

.p-info__ul {
  padding: 0;
  margin-left: 30px;
  max-width: 950px;
}

@media screen and (max-width: 1023px) {
  .p-info__ul {
    margin-left: initial;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.p-info__ul>li:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (max-width: 1023px) {
  .p-info__ul>li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.p-info__li {
  background-color: #F9E5E5;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.p-info__ul-ul {
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: 0.5s;
  margin: 0;
}

@media screen and (max-width: 1023px) {
  .p-info__boxes {
    width: 86%;
    margin: auto;
  }
}

.p-info__li-li {
  padding: 25px 125px 25px 105px;
  font-size: 18px;
  background-image: linear-gradient(to right, #DAA520, #DAA520 5px, transparent 3px, transparent 8px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

@media screen and (max-width: 1023px) {
  .p-info__li-li {
    padding: 20px 44px 20px 44px;
  }
}

.p-info__btn {
  position: relative;
  border: none;
  width: 100%;
  background-color: inherit;
  cursor: pointer;
  text-align: left;
  padding: 25px 0 25px 105px;
  font-size: 24px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  color: #333;
}

@media screen and (max-width: 1023px) {
  .p-info__btn {
    padding: 20px 44px 20px 51px;
    font-size: 18px;
  }
}

.p-info__span {
  position: relative;
}

.p-info__span::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  bottom: 0;
  margin: auto;
  left: -40px;
  width: 25px;
  height: 35px;
  background-image: url(../img/home/Q.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .p-info__span::before {
    width: 19px;
    height: 25px;
    top: -2px;
    left: -33px;
    bottom: initial;
  }
}

.p-info__span1 {
  position: relative;
}

.p-info__span1::before {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: -40px;
  width: 20px;
  height: 25px;
  background-image: url(../img/home/A.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

@media screen and (max-width: 1023px) {
  .p-info__span1::before {
    left: -30px;
  }
}

button::before,
button::after {
  content: "";
  position: absolute;
  top: 39px;
  width: 1.5px;
  height: 8px;
  background-color: #C88F40;
  transition: 0.5s;
}

@media screen and (max-width: 1023px) {

  button::before,
  button::after {
    top: 30px;
  }
}

button::before {
  transform: rotate(-45deg);
  right: 35px;
}

@media screen and (max-width: 1023px) {
  button::before {
    right: 20px;
  }
}

button::after {
  transform: rotate(45deg);
  right: 30px;
}

@media screen and (max-width: 1023px) {
  button::after {
    right: 15px;
  }
}

li.active button::before {
  transform: rotate(-135deg);
  transition: 0.5s;
}

li.active button::after {
  transform: rotate(135deg);
  transition: 0.5s;
}

ul.active {
  overflow-y: auto;
}

.p-contact__box {
  padding-top: 150px;
}

@media screen and (max-width: 1023px) {
  .p-contact__box {
    padding-top: 100px;
  }
}

.contact-btn-box {
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-btn-box {
    margin-top: 30px;
  }
}

.contact-btn-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -30px;
  width: 60px;
  height: 1px;
  z-index: 10;
}

label {
  font-weight: 700;
}

.mwform-radio-field-text {
  font-weight: 700;
}

.f-input {
  margin-bottom: 10px !important;
}

.f-input-mt {
  margin-top: 38px;
}

.input-class {
  height: 32px;
  width: -webkit-fill-available;
  font-size: 16px;
}

.f-contact-title {
  text-align: center;
  margin-top: 50px;
}

@media screen and (max-width: 1023px) {
  .f-contact-title {
    margin-top: initial;
  }
}

.f-con_container {
  padding-right: 59px;
}

@media screen and (max-width: 1023px) {
  .f-con_container {
    display: block !important;
    padding-top: 50px;
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 1023px) {
  .breadcrumb {
    display: none !important;
  }
}

.f-con_text {
  margin-top: 40px !important;
}

@media screen and (max-width: 1023px) {
  .f-con_text {
    margin-top: 30px !important;
  }
}

.f-btn-box {
  margin-top: 70px;
}

@media screen and (max-width: 1023px) {
  .f-btn-box {
    margin-top: 30px;
  }
}

/* お問い合わせフォーム */
.s-con_container {
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .s-con_container {
    padding-bottom: 100px;
  }
}

.s-con_form {
  max-width: 840px;
  margin: 0 auto;
  margin-top: 120px;
}

@media screen and (max-width: 1023px) {
  .s-con_form {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .s-con_form {
    margin-top: 45px;
  }
}

input {
  color: #181D61;
  background-color: #fff;
  border: 1px solid #F9E5E5;
}

.f-input {
  width: 72%;
  max-width: 600px;
  padding: 11px 17px 11px 17px;
}

@media screen and (max-width: 767px) {
  .f-input {
    width: 100%;
    width: -webkit-fill-available;
  }
}

.s-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .s-input {
    font-size: 16px;
    flex-direction: column;
    align-items: start;
  }
}

.s-input>label {
  width: 204px;
}

@media screen and (max-width: 767px) {
  .s-input {
    margin-bottom: 14px;
  }
}

.s-textarea {
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .s-textarea {
    margin-bottom: 0px;
  }
}

.radio-form {
  margin-bottom: initial;
  display: flex;
}

@media screen and (max-width: 767px) {
  .radio-form {
    display: flex;
    flex-direction: column;
  }
}

.radio-form>div:not(:last-child) {
  margin-right: 70px;
}

@media screen and (max-width: 1023px) {
  .radio-form>div:not(:last-child) {
    margin-bottom: 10px;
  }
}

.asterisk:after {
  content: "*";
  color: #E00;
}

textarea {
  letter-spacing: 0.15em;
  padding: 11px 17px 11px 17px;
  border-width: 1px;
  border-color: #181D61;
  height: 317px !important;
}

@media screen and (max-width: 1023px) {
  textarea {
    height: 220px !important;
  }
}

.s-input-radio {
  display: flex;
}

@media screen and (max-width: 767px) {
  .s-input-radio>p {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.s-input-radio>p>span:not(:last-child) {
  margin-right: 70px;
}

@media screen and (max-width: 767px) {
  .s-input-radio>p>span:not(:last-child) {
    margin-right: initial;
  }
}

@media screen and (max-width: 767px) {
  .s-input-radio {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 767px) {
  .mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: initial !important;
  }
}

.s-input-radio-div {
  width: 204px;
}

@media screen and (max-width: 767px) {
  .s-input-radio-div {
    width: 100%;
  }
}

.s-input-radio-div>label {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .s-input-radio-div>label {
    font-size: 16px;
  }
}

input[type=radio] {
  border: 2px solid #F9E5E5;
}

.p-company__btn-box {
  margin-top: 100px;
}

.p-company__btn-box>button {
  transition: 0.3s;
  cursor: pointer;
}

.p-company__btn-box>button:hover {
  transition: 0.3s;
  opacity: 0.7;
}

@media screen and (max-width: 1023px) {
  .p-company__btn-box {
    margin-top: 70px;
  }
}

.f-check {
  cursor: pointer;
}

.p-company__btn {
  display: block;
  color: #FFFFFF;
  font-size: 26px;
  text-align: center;
  width: 580px;
  line-height: 70px;
  background: #E0394D;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: auto;
  border: initial;
}

@media screen and (max-width: 1023px) {
  .p-company__btn {
    width: 95%;
    max-width: 580px;
  }
}

input[type=radio] {
  -webkit-appearance: none;
  /* フォーム要素のスタイルを初期化 */
  width: 15px;
  height: 15px;
  border: 1px solid #F9E5E5;
  border-radius: 50%;
}

/* 内側のマル */
input[type=radio]:before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  border-radius: 50%;
}

/* 選択された時の内側のマルの色 */
input[type=radio]:checked:before {
  background: #333;
}

.radio-form>label:not(:last-child) {
  margin-right: 70px;
}

.c-br-sp {
  display: none;
}

@media screen and (max-width: 1023px) {
  .c-br-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .c-br-pc {
    display: none;
  }
}

.form-name {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .form-name {
    font-size: 16px;
  }
}

a {
  transition: 0.3s;
}

a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.p-complete {
  background-color: #FCF0F1;
  height: 100vh;
  display: flex;
  align-items: center;
}

.p-complete__title {
  font-size: 35px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-complete__title {
    font-size: 18px;
  }
}

.p-complete__text {
  font-size: 18px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .p-complete__text {
    font-size: 16px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.p-complete__link {
  text-align: center;
}

.s-input>.error {
  position: absolute;
  left: 205px;
  bottom: -15px;
}

@media screen and (max-width: 767px) {
  .s-input>.error {
    left: initial;
  }
}

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