@charset "UTF-8";

/* CSS Variables
====================================== */
:root {
  /* Brand Colors */
  --color-primary: #D85C03;
  --color-accent: #D53250;

  /* Background Colors */
  --color-bg-beige: #F8F7F6;
  --color-bg-gray-green: #efecea;
  --color-white: #fff;

  /* Text Colors */
  --color-text: #252525;

  /* Border Colors */
  --color-border-gray: #e0e0e0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.5;
  width: 100%;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

main {
  margin-top: 112px;
  overflow-x: hidden;
}

@media (max-width: 1280px) {
  main {
    margin-top: 110px;
  }
}

@media (max-width: 980px) {
  main {
    margin-top: 72px;
  }
}

@media (max-width: 768px) {
  main {
    margin-top: 53px;
  }
}

.nowrap_word {
  white-space: nowrap;
}

main.page-service {
  margin-top: 0;
}

main.region {
  margin-top: 0;
}

.wrapper.page-contact {
  background-color: var(--color-bg-gray-green);
}

.wrapper.page,
.wrapper.archive {
  background-color: var(--color-bg-gray-green);
  margin-top: 13.15%;
}

@media (max-width: 768px) {

  .wrapper.page,
  .wrapper.archive {
    margin-top: 48.1333vw;
  }
}

.page-wrapper,
.archive-wrapper {
  margin-top: -13.15vw;
}

@media (max-width: 768px) {

  .page-wrapper,
  .archive-wrapper {
    margin-top: -48.1333vw;
  }
}

* {
  box-sizing: border-box;
}

a {
  transition: 0.1s;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
}

li {
  list-style: none;
}

img,
video,
iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

/* utility 
====================================== */
@media (max-width: 980px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}

@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}

@media (max-width: 980px) {
  .tb_only {
    display: block;
  }
}

@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}

@media (max-width: 980px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

/* section common
====================================== */
.section__inner {
  padding: 7em 17.1875%;
  max-width: calc(1260px + 34.375%);
  margin: auto;
  text-align: center;
  position: relative;
}

@media (max-width: 980px) {
  .section__inner {
    padding: 5em 12%;
  }
}

@media (max-width: 768px) {
  .section__inner {
    padding: 60px 5.333%;
  }
}

.section__inner-l {
  max-width: calc(1600px + 16.666%);
  padding: 7em 8.333%;
}

@media (max-width: 980px) {
  .section__inner-l {
    padding: 5em 12%;
  }
}

@media (max-width: 768px) {
  .section__inner-l {
    padding: 60px 5.333%;
  }
}

.section__title {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 50px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.75;
  }
}

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

.section__lead {
  font-family: "Noto Sans JP";
  font-size: 15px;
  line-height: 2.133;
  margin-bottom: 4em;
}

@media (max-width: 768px) {
  .section__lead {
    line-height: 1.667;
  }
}

.section__lead--center {
  text-align: center;
  margin: auto;
}

/* btn 
========================================= */
.btn {
  position: relative;
  transition: 0.5s;
}

.btn a,
.btn input {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.4em 0;
  max-width: 460px;
  margin: auto;
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 768px) {

  .btn a,
  .btn input {
    font-size: 15px;
    padding: 15px 0;
    max-width: 322px;
  }
}

.btn__green a,
.btn__green input {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 70px;
  color: var(--color-white);
}

.btn__green a:hover,
.btn__green input:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.btn__orange a,
.btn__orange input {
  background-color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 70px;
  color: var(--color-white);
}

.btn__orange a:hover,
.btn__orange input:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.btn__white a,
.btn__white input {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: 70px;
  color: var(--color-primary);
}

.btn__white a:hover,
.btn__white input:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* cv
========================================= */
.cv.is_front {
  background-color: var(--color-bg-gray-green);
}

.cv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1215px;
  margin: auto;
  gap: 40px;
  padding-top: 5em;
  padding-bottom: 5em;
}

@media (max-width: 1280px) {
  .cv__inner {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cv__inner {
    padding-top: 1.7em;
    padding-bottom: 2.3em;
  }
}

.cv__left {
  width: 400px;
}

@media (max-width: 768px) {
  .cv__left {
    width: 100%;
    max-width: 280px;
  }
}

.cv__right {
  width: 56.8%;
  text-align: center;
  padding: 2em 0;
}

@media (max-width: 980px) {
  .cv__right {
    width: 80%;
  }
}

.cv__catch {
  margin-bottom: 2.5em;
}

.cv__catch-main {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 0.9375rem;
}

@media (max-width: 768px) {
  .cv__catch-main {
    font-size: 1.25em;
  }
}

.cv__catch-sub {
  font-weight: bold;
  line-height: 1;
  color: var(--color-accent);
}

.cv__lead {
  text-align: left;
  margin-bottom: 2.5em;
}

.cv__links {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}

@media (max-width: 980px) {
  .cv__links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .cv__links {
    flex-direction: column;
    align-items: center;
  }
}

.cv__link {
  width: 100%;
  max-width: 320px;
  height: 80px;
}

@media (max-width: 768px) {
  .cv__link {
    height: 60px;
  }
}

.cv__link>a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.cv__link>a>span {
  display: block;
}

.cv__link-text {
  font-size: 1.25em;
}

.cv__link-tel {
  font-weight: 400;
}

/* sec_faq
======================================= */
.sec_faq__inner {
  padding-bottom: 8em;
}

@media (max-width: 768px) {
  .sec_faq__inner {
    padding-bottom: 4em;
  }
}

.sec_faq__title {
  margin-bottom: 0.6em;
}

.sec_faq__list {
  max-width: 1000px;
  margin: 4em auto 0;
}

.sec_faq__item {
  cursor: pointer;
  border: 2px solid var(--color-primary);
  border-radius: 20px;
  padding: 2.2em 1.9em;
  background-color: var(--color-white);
}

@media (max-width: 768px) {
  .sec_faq__item {
    padding: 1em 1.5em;
    text-align: left;
  }
}

.sec_faq__item:nth-child(n+2) {
  margin-top: 1.9em;
}

@media (max-width: 768px) {
  .sec_faq__item:nth-child(n+2) {
    margin-top: 14px;
  }
}

.sec_faq__item-q {
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .sec_faq__item-q {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sec_faq__item-q-letter {
  font-family: "Inter";
  font-size: clamp(20px, 1.5625vw, 30px);
  font-weight: bold;
  color: var(--color-primary);
  padding-right: 2.75%;
  margin-right: 2.75%;
  border-right: 2px solid var(--color-primary);
}

@media (max-width: 768px) {
  .sec_faq__item-q-letter {
    border-right: inherit;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 0.4em;
  }
}

.sec_faq__item-q-text {
  font-size: clamp(12px, 0.9375vw, 18px);
  font-weight: bold;
}

@media (max-width: 768px) {
  .sec_faq__item-q-text {
    font-size: 15px;
  }
}

.sec_faq__item-q::before,
.sec_faq__item-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6%;
  display: block;
  width: 30px;
  height: 3px;
  transition: 0.3s;
  background-color: var(--color-primary);
}

@media (max-width: 768px) {

  .sec_faq__item-q::before,
  .sec_faq__item-q::after {
    width: 24px;
    top: 1em;
  }
}

.sec_faq__item-q::before {
  transform: translateY(-50%);
}

.sec_faq__item-q::after {
  transform: translateY(-50%) rotate(-90deg);
}

.sec_faq__item-a {
  display: none;
  padding: 0 7.7%;
  margin-top: 2.1em;
}

@media (max-width: 768px) {
  .sec_faq__item-a {
    margin-top: 1em;
    padding: 0;
  }
}

.sec_faq__item-a-text {
  font-family: "Noto Sans JP";
  font-size: clamp(10px, 0.78125vw, 15px);
  font-weight: 500;
  line-height: 2.333;
  text-align: left;
}

@media (max-width: 768px) {
  .sec_faq__item-a-text {
    font-size: 12px;
  }
}

.sec_faq__item.is-open .sec_faq__item-q::after {
  transform: translateY(-50%);
}

/*------------------------------------------------
 footer
------------------------------------------------*/
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.footer__logo {
  padding-block: 3rem;
}

.footer__logo>a {
  display: flex;
  width: 320px;
  max-width: 100%;
  padding-inline: 1rem;
  margin-inline: auto;
}

.footer__nav>ul {
  display: flex;
  justify-content: center;
}

.footer__nav>ul>li+li {
  border-left: 1px solid var(--color-white);
}

.footer__nav>ul a {
  padding-inline: 1rem;
  color: var(--color-white);
}

.footer>small {
  display: flex;
  justify-content: center;
  padding-block: 3rem;
}

/*------------------------------------------------
 header 
-------------------------------------------------*/
/* 固定ヘッダー
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background-color: var(--color-white);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header {
    background-color: inherit;
  }
}

.header__inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.1%;
}

@media (max-width: 768px) {
  .header__inner {
    padding-top: 6px;
    padding-left: 5%;
    padding-bottom: 6px;
  }
}

.header__left {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 20vw;
  max-width: 509px;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .header__logo {
    width: inherit;
    max-width: 256px;
  }
}

.header__logo-white {
  display: none;
  position: relative;
  z-index: 5;
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__logo a img {
  object-fit: contain;
  max-height: 72px;
}

@media (max-width: 980px) {
  .header__logo a img {
    max-height: 56px;
  }
}

.header__nav {
  display: flex;
  /* ハンバーガーボタン */
}

.header__nav-left-upper {
  text-align: right;
}

.header__nav-tel {
  display: inline-block;
}

.header__nav-tel a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 4.2px 13px 4.2px 16px;
  border-bottom: 2px solid var(--color-primary);
}

@media (max-width: 980px) {
  .header__nav-tel a {
    background-color: inherit;
    border-bottom: inherit;
    padding: 5px 15px 5px 14px;
  }
}

.header__nav-tel a img {
  width: inherit;
}

.header__nav-tel a span {
  display: block;
}

@media (max-width: 980px) {
  .header__nav-tel a span {
    display: none;
  }
}

.header__nav-tel a span.num {
  font-family: "Inter";
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 0.25em;
}

.header__nav-tel a span.time {
  font-size: 0.75rem;
  margin-left: 0.5em;
}

.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 980px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-item>a {
  display: block;
  font-size: clamp(13px, 0.78125vw, 15px);
  line-height: 1;
  padding: 10.8px 0.6vw;
  margin: 10px 0.4vw;
  text-align: center;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: var(--color-text);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.header__nav-item>a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.header__nav-item>a::after {
  height: 1.2px;
  background-color: var(--color-primary);
}

@media (max-width: 980px) {
  .header__nav-item>a::after {
    background-color: var(--color-white);
  }
}

@media (max-width: 1280px) {
  .header__nav-item>a {
    margin: 10px 0;
    font-size: clamp(12px, 0.78125vw, 15px);
  }
}

.header__nav-item>a:hover {
  color: var(--color-primary);
}

.header__nav-item-sp {
  display: none;
}

.header__nav-item--dropdown {
  position: relative;
}

.header__nav-item--dropdown>a {
  cursor: pointer;
}

.header__nav-item-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 15px;
}

@media (max-width: 980px) {
  .header__nav-item-list {
    position: relative;
    top: inherit;
    display: block;
  }
}

.header__nav-item-list-item a {
  font-size: clamp(13px, 0.78125vw, 15px);
  background-color: var(--color-bg-gray-green);
  padding: 1em;
  transition: 0.3s;
  white-space: nowrap;
  display: block;
}

@media (max-width: 980px) {
  .header__nav-item-list-item a {
    background-color: inherit;
    position: relative;
  }

  .header__nav-item-list-item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }

  .header__nav-item-list-item a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .header__nav-item-list-item a::after {
    background-color: var(--color-white);
  }
}

.header__nav-item-list-item a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (max-width: 980px) {
  .header__nav-item-list-item a:hover {
    background-color: inherit;
  }
}

.header__nav-item.is-open .header__nav-item-list {
  display: block;
}

@media (max-width: 980px) {
  .header__nav-right {
    display: none;
  }
}

.header__nav-right a {
  display: block;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  text-align: center;
  height: 100%;
  padding: 11px 0.96354vw;
}

@media (max-width: 980px) {
  .header__nav-right a {
    position: relative;
  }

  .header__nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }

  .header__nav-right a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .header__nav-right a::after {
    background-color: var(--color-white);
  }
}

.header__nav-right a svg {
  width: auto;
  height: 40px;
  fill: var(--color-white);
}

.header__nav-right a span {
  display: block;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-family: "Noto Sans JP";
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.333;
}

.header__nav-right a:hover {
  background-color: var(--color-white);
}

.header__nav-right a:hover svg {
  fill: var(--color-primary);
}

@media (max-width: 980px) {
  .header__nav-right a:hover svg {
    fill: var(--color-white);
  }
}

.header__nav-right a:hover span {
  color: var(--color-primary);
}

@media (max-width: 980px) {
  .header__nav-right a:hover span {
    color: var(--color-white);
  }
}

.header__nav-btn {
  display: none;
  width: 21px;
  height: 20px;
  cursor: pointer;
  position: relative;
  pointer-events: auto;
  margin-right: 20px;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .header__nav-btn {
    display: block;
  }
}

.header__nav-btn-bar {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: 0.3s;
}

.header__nav-btn-bar--01 {
  transform: translate(-50%, calc(-50% - 6px));
}

.header__nav-btn-bar--02 {
  transform: translate(-50%, -50%);
}

.header__nav-btn-bar--03 {
  transform: translate(-50%, calc(-50% + 6px));
}

.drawerMenu-open .header__inner {
  background: var(--color-primary) url(../img/common/icon_bg_header.svg);
  height: 100vh;
  flex-direction: column;
  padding: 10vh 0;
  overflow-y: scroll;
}

.drawerMenu-open .header__left {
  margin-bottom: 5vh;
}

.drawerMenu-open .header__logo-green {
  display: none;
}

.drawerMenu-open .header__logo-white {
  display: block;
  width: 208px;
  height: 70px;
  object-fit: contain;
}

.drawerMenu-open .header__nav {
  flex-direction: column;
}

.drawerMenu-open .header__nav-tel {
  display: none;
}

.drawerMenu-open .header__nav-list {
  display: block;
}

.drawerMenu-open .header__nav-list:hover .header__nav-item>a {
  opacity: 1;
}

.drawerMenu-open .header__nav-item {
  margin: auto;
}

.drawerMenu-open .header__nav-item a {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: var(--color-white);
  padding: 2vh 0;
}

.drawerMenu-open .header__nav-item a .tb_sp {
  display: inline;
}

.drawerMenu-open .header__nav-btn {
  position: fixed;
  top: 20px;
  left: 20px;
}

@media (max-width: 768px) {
  .drawerMenu-open .header__nav-btn {
    top: 10px;
    left: 10px;
  }
}

.drawerMenu-open .header__nav-btn-bar {
  background-color: var(--color-white);
}

.drawerMenu-open .header__nav-btn-bar--01 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawerMenu-open .header__nav-btn-bar--02 {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawerMenu-open .header__nav-btn-bar--03 {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawerMenu-open .header__nav-right {
  display: block;
  width: 100%;
}

.drawerMenu-open .header__nav-right a {
  background-color: inherit;
  display: flex;
  align-items: center;
}

.drawerMenu-open .header__nav-right a svg {
  margin-right: 10px;
}

.drawerMenu-open .header__nav-right a span {
  font-size: 18px;
}

.header--top .header__logo {
  width: 23.56vw;
}

@media (max-width: 980px) {
  .header--top .header__logo {
    width: inherit;
  }
}

.header--service {
  background-color: transparent;
  transition: 0.3s;
}

.header--service .header__nav {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

@media (max-width: 980px) {
  .header--service .header__nav {
    opacity: 1;
    visibility: visible;
  }
}

.header--service.is-scrolled {
  background-color: var(--color-white);
}

.header--service.is-scrolled .header__nav {
  opacity: 1;
  visibility: visible;
}

/* headline
========================================= */
.headline {
  transform: translateY(-50%);
}

.headline__inner {
  margin-left: 6.2%;
  position: relative;
}

@media (max-width: 768px) {
  .headline__inner {
    margin-left: 20%;
  }
}

.headline__title {
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 1;
  transform: translateY(-50%);
  font-size: 30px;
  color: var(--color-white);
  font-weight: bold;
}

@media (max-width: 768px) {
  .headline__title {
    font-size: 24px;
    left: 10%;
  }
}

.headline__img {
  height: 26.3%;
  border-radius: 70px 0 0 70px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .headline__img {
    height: 96.2667vw;
  }
}