@charset "utf-8";

/*================================================
  Variables
================================================*/

:root {
  /* Color */
  --primary-color: #FFB001;
  --primary-color-rgb:255, 176, 1;
  --secondary-color: #FCDC0C;
  --secondary-color-rgb: 252, 220, 12;
  --point-color:#FF9900;
  --point-color-rgb: 221, 112, 43;

  --primary-text-color: #333333;
  --primary-text-color-rgb: 51, 51, 51;

  --secondary-text-color: #666666;

  --point-text-color: #DD702B;
  --point-text-color-rgb: 221, 112, 43;

  --color-white: #ffffff;
  --color-white-rgb: 255, 255, 255;

  --color-black: #000000;
  --color-black-rgb: 0, 0, 0;

  --color-gray: #EDEDED;
  --color-gray-rgb: 237, 237, 237;

  --color-dark-gray:#666666;

  /* Layout */
  --header-size-sp: 60px;
  --header-size-pc: 100px;
  --layout-gap: 40px;
}

/*------------------------------------------------
基本
------------------------------------------------*/

html {
  font-size: 62.5%;  /* フォントサイズを10pxに設定 */
}

body {
  color: var(--primary-text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4rem;  /* 14px */
  line-height: 2;
  position: relative;
}

.font-josefin {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;  /* 16px */
  }
}

/*----- コンテンツが少ない場合に、フッターを最下部に固定 -----*/

html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  min-height: 1%;
  padding-top: var(--header-size-sp);
}

@media print, screen and (min-width: 769px) {
  body {
    min-height: 100vh;
  }
  main {
    padding-top: var(--header-size-pc);
  }
}


/*----- リンクホバー -----*/
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .6;
  transition: opacity 0.25s ease-in;
}

/*----- PCで電話番号リンク無効 -----*/
@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    /*    color: inherit;*/
    text-decoration: none;
    pointer-events: none;
  }
}

/*----- イメージ下スペース削除 右クリック禁止 -----*/
img {
  vertical-align: middle;
  width: 100%;
}

/*----- テーブルスタイル削除 -----*/
table {
  border-collapse: collapse;
}

/*----- リストスタイル削除 -----*/
ul, ol {
  list-style: none;
}


/*----- 可変BRタグ -----*/
.br-sp {
  display: inline-block;
}

@media print, screen and (min-width: 667px) {
  .br-sp {
    display: none;
  }
}

.br-tb {
  display: none;
}

@media print, screen and (min-width: 667px) {
  .br-tb {
    display: inline-block;
  }
}
@media print, screen and (min-width: 769px) {
  .br-tb {
    display: none;
  }
}

.br-pc {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .br-pc {
    display: inline-block;
  }
}

/*================================================
  Header
================================================*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-size-sp);
  background-color: var(--color-white);
  z-index: 10;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: calc(var(--layout-gap) / 2);
}

.header-inner {
  display: none;
  position: fixed;
  top: var(--header-size-sp);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-size-sp));
  background-color: var(--color-white);
  overflow-y: scroll;
}

@media print, screen and (min-width: 769px) {
  .header {
    height: var(--header-size-pc);
  }
  .header-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
    padding: 0 calc(var(--layout-gap) / 2);
  }

  .header-inner {
    display: block;
    overflow-y: visible;
    height: var(--header-size-pc);
    width: calc(100% - 250px);
    max-width: 570px;
    position: inherit;
  }
}

@media print, screen and (min-width: 1200px) {
  .header-container {
    padding: 0 var(--layout-gap);
  }
  .header-inner {
    max-width: 640px;
  }
}

/*------------------------------------------------
  Header Logo
------------------------------------------------*/

.header-title {
  display: inline-block;
}

.header-title a {
  display:block;
}

.header-title a > span {
  display: block;
  line-height: 1;
}
.header-title a > span.company-name {
  color: var(--primary-text-color);
  font-size: clamp(1.85rem, 1.72rem + 0.65vw, 2.5rem);
  font-weight: 400;
}
.header-title a > span.font-josefin {
  color: rgba(var(--primary-text-color-rgb),0.4);
font-size: clamp(0.9rem, 0.82rem + 0.4vw, 1.3rem);
  padding-top: 0.75em;
  text-transform: uppercase;
}


/*------------------------------------------------
  Navigation Trigger
------------------------------------------------*/

.nav-trigger {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--header-size-sp);
  height: var(--header-size-sp);
  margin-left: auto;
}

@media print, screen and (min-width: 769px) {
  .nav-trigger {
    display: none;
  }
}

/*----- Symbol -----*/
.nav-trigger > i,
.nav-trigger > i::before,
.nav-trigger > i::after {
  position: relative;
  height: 2px;
  width: 20px;
  border-radius: 1px;
  background-color: var(--primary-color);
  transition: all 0.3s;
}

.nav-trigger > i::before,
.nav-trigger > i::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-trigger > i::before {
  transform: translateY(-7px);
}

.nav-trigger > i::after {
  transform: translateY(7px);
}

/*----- is-open Style -----*/
.is-open .nav-trigger > i,
.is-open .nav-trigger > i::before,
.is-open .nav-trigger > i::after {
  transition: all 0.3s;
}

.is-open .nav-trigger > i {
  background-color: transparent;
}

.is-open .nav-trigger > i::before {
  transform: rotate(-45deg);
}

.is-open .nav-trigger > i::after {
  transform: rotate(45deg);
}

/*------------------------------------------------
  Header Navigation
------------------------------------------------*/

.header-nav {
  padding: calc(var(--layout-gap) / 2) 0;
}

.header-nav-list {
  padding:calc(var(--layout-gap) / 2);
}

.header-nav-list-item:not(:first-of-type) {
  margin-top: var(--layout-gap);
}

.header-nav-list-item > a > span {
  display: block;
}

.header-nav-list-item > a > span.font-josefin {
  color: rgba(var(--primary-color-rgb),0.8);
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
}

.header-nav-list-item > a > span:nth-of-type(2) {
  font-size: 1.6rem;
  font-weight: 700;
}

@media print, screen and (min-width: 769px) {
  .header-nav {
    margin:0;
    padding: 0;
    width: 100%;
  }

  .header-nav-list {
    padding: 0;
  }
  .header-nav-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .header-nav-list-item {
    position: relative;
    width: auto;
  }

  .header-nav-list-item:not(:first-of-type) {
    margin-top: 0;
  }

  .header-nav-list-item.for-privacy {
    display: none;
  }

  .header-nav-list-item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--layout-gap) / 4)  calc(var(--layout-gap) / 6);
    position: relative;
    height:var(--header-size-pc);
  }

  .header-nav-list-item > a > span.font-josefin {
    display: none;
  }

  .header-nav-list-item > a > span:nth-of-type(2) {
    color: var(--color-text);
    text-align: center;
    font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  }
}

/*------------------------------------------------
  Header Contact
------------------------------------------------*/

.header-contact {
  margin-top: calc(var(--layout-gap) / 1);
}

.header-contact > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25em 2em 1.25em 1.5em;
  line-height: 1;
  background-color: var(--secondary-color);
}

.header-contact > a::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../../image/common/icon_mail_white.svg);
  background-size: contain;
  background-position: center;
  margin-right: 0.5em;
}

.header-contact > a span {
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

@media print, screen and (min-width: 769px) {
  .header-contact {
    margin:0;
  }
  .header-contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.75em 1.25em;
    background-color: var(--color-white);
    border: 2px solid var(--secondary-color);
    border-radius: 60px;
  }
  .header-contact > a::before {
    background-image: url(../../image/common/icon_mail_yellow.svg);
    margin-right: 1em;
  }

  .header-contact > a span {
    color: var(--primary-text-color);
    font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  }
  .header-contact > a:hover {
    color: var(--color-white);
    background-color: var(--secondary-color);
    transition: all .2s ease-in;
    opacity: 1;
  }

  .header-contact > a:hover::before {
    background-image: url(../../image/common/icon_mail_white.svg);
    transition: all .2s ease-in;
    opacity: 1;
  }
}

@media print, screen and (min-width: 1200px) {
  .header-contact > a {
    padding: 1.15em 2em;
  }
  .header-contact > a::before {
    width: 21.6px;
    height: 21.6px;
    margin-right: 1.25em;
  }
}

/*================================================
  footer
================================================*/

.footer {
  width: 100%;
  background-color: var(--color-gray);
  border-bottom: 5px solid var(--primary-color);
  padding:var(--layout-gap) calc(var(--layout-gap) / 1.5);
}
.footer-inner {
  max-width: 1160px;
  margin: auto;
}
.footer-head {
  max-width: 330px;
}

.footer-title {
  display: inline-block;
}

.footer-title a {
  display:block;
}

.footer-title a > span {
  display: block;
  line-height: 1;
}
.footer-title a > span.company-name {
  color: var(--primary-text-color);
  font-size: clamp(1.85rem, 1.58rem + 1.35vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.footer-title a > span.font-josefin {
  color: rgba(var(--primary-text-color-rgb),0.4);
  font-size: clamp(0.9rem, 0.72rem + 0.9vw, 1.8rem);
  padding-top: 0.75em;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-address {
  margin: 1em 0;
  font-style: normal;
  font-size: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
  line-height: 1.5;
}
.footer-nav {
  width: 100%;
}
.footer-nav-list {
  margin: calc(var(--layout-gap) / 1.25) auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.footer-nav-item {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.footer-nav-item a {
  padding:1.5em;
  display: block;
  line-height: 1;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  font-weight: 700;
}

.footer-copyright {
  line-height: 1;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);

}
@media (min-width: 480px) {
  .footer-nav-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media print, screen and (min-width: 690px) {
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer-nav {
    width: calc(100% - 300px);
  }
  .footer-nav-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    border: none;
    margin: 0;
  }
  .footer-nav-item:first-child {
    display: none;
  }
  .footer-nav-item {
    border: none;
  }
  .footer-nav-item a {
    padding: 0.5em 1.5em;
    display: inline-block;
  }
  .footer-copyright {
    width: 100%;
    text-align: right;
  }
}

@media print, screen and (min-width: 960px) {
  .footer {
    padding: calc(var(--layout-gap) * 1.5) var(--layout-gap);
  }
  .footer-nav {
    width: 600px;
  }
  .footer-nav-list {
    justify-content: space-between;
  }
}

@media print, screen and (min-width: 1600px) {
  .footer {
    padding: calc(var(--layout-gap) *2) 0;
  }
}


/*================================================
  page-header
================================================*/

.page-header {
  width: 100%;
  height: 190px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* .page-header::after {
  content: "";
  display: block;
  width: 50%;
  height: 70px;
  background-size: contain;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: absolute;
  right: calc(var(--layout-gap)/2);
  bottom: -10px;
} */

.page-header-title {
  color: var(--secondary-text-color);
  text-align: center;
  line-height: 1;
  font-weight: 900;
  font-size: clamp(1.4rem, 1.28rem + 0.6vw, 2rem);
}

.page-header-title span {
  display: block;
  text-transform: uppercase;
  color: var(--color-white);
  font-size: clamp(2rem, 1.28rem + 3.6vw, 5.6rem);
  font-weight: 300;
  margin-top: 0.5em;
}

.page-header-img {
  width: 40%;
  height: 70px;
  position: absolute;
  right: calc(var(--layout-gap)/2);
  bottom: -10px;
}

.page-header-img > img {
  height: 100%;
}

@media print, screen and (min-width: 769px) {
  .page-header {
    height: 300px;
  }
  /* .page-header::after {
    right: var(--layout-gap);
    height: 120px;
  } */
  .page-header-img {
    right: var(--layout-gap);
    height: 120px;
    width: 30%;
  }
}

@media print, screen and (min-width: 1200px) {
  /* .page-header::after {
    right: calc(50% - 580px);
  } */
  .page-header-img {
    right: calc(50% - 580px);
  }
}

@media print, screen and (min-width: 1600px) {
  .page-header {
    height: 400px;
  }
}



/*================================================
  section
================================================*/

.section {
  padding: calc(var(--layout-gap) * 1.5) calc(var(--layout-gap) / 2);
}

.section-container {
  margin: 0 auto;
  max-width: 1160px;
  width: 100%;
  padding:0 calc(var(--layout-gap) /3) calc(var(--layout-gap) /2);
}

@media print, screen and (min-width: 560px) {
  .section-container {
    padding:  calc(var(--layout-gap) / 1.25)  calc(var(--layout-gap) / 1.25);
  }
}


@media print, screen and (min-width: 769px) {
  .section {
    padding: calc(var(--layout-gap) * 1.75) calc(var(--layout-gap) / 1.5);
  }
  .section-container {
    padding: calc(var(--layout-gap) * 1) calc(var(--layout-gap) / 1.5);
  }
}

@media print, screen and (min-width: 1200px) {
  .section {
    padding: calc(var(--layout-gap) * 2.5) calc(var(--layout-gap) / 1.5);
  }
}

@media print, screen and (min-width: 1600px) {
  .section {
    padding: calc(var(--layout-gap) * 3.5) 0;
  }
  .section-container {
    padding: 0;
  }
}



/*------------------------------------------------
  section-title
------------------------------------------------*/

.section-title {
  font-size: clamp(2.4rem, 2.16rem + 1.2vw, 3.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: calc(var(--layout-gap) /1.25);
}
.section-title span.font-josefin {
  display: block;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  color: rgba(var(--color-black-rgb),0.45);
  padding-top: 1.25em;
  letter-spacing: 0;
}

.section-text {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
}

.section-text + .section-text {
  margin-top: 2em;
}

.section-text > span.emphasis {
  font-weight: 700;
  color: var(--point-text-color);
}

@media print, screen and (min-width: 1200px) {
  .section-title {
    margin-bottom: calc(var(--layout-gap) *1.25);
  }
}


/*================================================
  button
================================================*/

/*------------------------------------------------
  primary
------------------------------------------------*/

.button-label-primary {
  display:inline-flex;
  position: relative;
}
.button-label-primary > a,
.button-label-primary > span {
  color: #fff;
  background-color: var(--point-color);
  border: 2px solid var(--point-color);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 1.28rem + 0.6vw, 2rem);
  font-weight: 700;
  line-height: 1;
  width: 100%;
  height:100%;
  transition: all .3s linear;
  position: relative;
  opacity: 1;
  box-sizing: border-box;
  padding:1.65em 2em;
}
.button-label-primary > a:hover,
.button-label-primary > span:hover  {
  color:var(--point-color);
  background-color: #fff;
  transition: all .3s linear;
}
.button-label-primary::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_arrow_right_white.svg);
  background-position: center;
  background-size: contain;
  right:1.75em;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s linear;
  position: absolute;
}
.button-label-primary:hover::after {
  right: 1.5em;
  background-image: url(../../image/common/icon_arrow_right_orange.svg);
}


@media print,screen and (min-width: 1200px) {

  .button-label-primary {
    min-width: 360px;
  }
}


/*------------------------------------------------
  secondary
------------------------------------------------*/

.button-label-secondary {
  display:inline-flex;
  position: relative;
}
.button-label-secondary > a,
.button-label-secondary > span {
  color: var(--point-color);
  background-color: var(--color-white);
  border: 2px solid var(--point-color);
  border-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: 700;
  line-height: 1;
  width: 100%;
  height:100%;
  transition: all .3s linear;
  position: relative;
  opacity: 1;
  box-sizing: border-box;
  padding:1.65em 3.5em;
}
.button-label-secondary > a:hover,
.button-label-secondary > span:hover  {
  color:var(--color-white);
  background-color:var(--point-color);
  border: 2px solid var(--color-white);
  transition: all .3s linear;
}
.button-label-secondary::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../image/common/icon_arrow_right_orange.svg);
  background-position: center;
  background-size: contain;
  right:1.75em;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s linear;
  position: absolute;
}
.button-label-secondary:hover::after {
  right: 1.5em;
  background-image: url(../../image/common/icon_arrow_right_white.svg);
}


@media print,screen and (min-width: 1200px) {

  .button-label-secondary {
    min-width: 360px;
  }
}


/*================================================
  title
================================================*/

/*------------------------------------------------
  content-title-label
------------------------------------------------*/

.content-title-label {
  color: var(--secondary-text-color);
  padding: 0.75em 0.75em 0.75em 2.75em;
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: calc(var(--layout-gap)/1.25);
  position: relative;
  background-color: var(--color-gray);
}
.content-title-label::before {
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 15px;
  height: 1em;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  position: absolute;
}

.content-title-label.label-orange::before {
  background-image: url(../../image/common/icon_title_label_orange.svg);
}
.content-title-label.label-gray::before {
  background-image: url(../../image/common/icon_title_label_gray.svg);
}

@media print, screen and (min-width: 769px) {
  .content-title-label {
    padding: 1.25em 1em 1.25em 4.75em;
    margin-bottom: calc(var(--layout-gap) /1.25);
  }
  .content-title-label::before {
    width: 30px;
    left: 30px;
  }
}

@media print, screen and (min-width: 1200px) {
  .content-title-label {
    margin-bottom: calc(var(--layout-gap) *1);
  }
}

/*================================================
  cta
================================================*/
.cta {
  border-top: 1px dashed rgba(var(--primary-text-color-rgb),0.25);
  /* padding: calc(var(--layout-gap) * 1.5) var(--layout-gap); */
}
.cta-container {
  max-width: 1160px;
  margin: 0 auto;
}
.cta-title {
  text-align: center;
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-dark-gray);
}
.cta-title span.font-josefin {
  color: rgba(var(--primary-color-rgb),0.8);
}

.cta-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--layout-gap);
}
.cta-method-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.cta-method-name {
  color: var(--secondary-text-color);
  margin-bottom: 1.5em;
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
}
.cta-method-name::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-right: 1em;
  line-height: 1;
}
.cta-method-item.for-tel .cta-method-name::before {
  background-image: url(../../image/common/icon_tel_orange.svg);
}
.cta-method-item.for-tel .cta-number {
  color: var(--point-color);
  /* font-size: clamp(3.6rem, 3.12rem + 2.4vw, 6rem); */
  font-size: clamp(3.6rem, 3.04rem + 2.8vw, 6.4rem);
  line-height: 0.6;
  text-align: center;
}
.cta-method-item.for-tel .cta-time {
  text-align: center;
  line-height: 1;
  margin-top: 1.5em;
}

.cta-method-item.for-mail .cta-method-name::before {
  background-image: url(../../image/common/icon_mail_orange.svg);
}

@media print,screen and (min-width: 769px) {
  /* .cta {
    padding: calc(var(--layout-gap) * 1.75) var(--layout-gap);
  } */
  .cta-method {
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--layout-gap) / 2.5);
  }
}
@media print,screen and (min-width: 1200px) {
  /* .cta {
    padding: calc(var(--layout-gap) * 2.5) var(--layout-gap);
  } */
}
@media print,screen and (min-width: 1600px) {
  /* .cta {
    padding: calc(var(--layout-gap) * 3) var(--layout-gap);
  } */
  .cta-method {
    gap: var(--layout-gap);
  }
  .cta-method-item {
    align-items: flex-start;
  }
  .cta-method-item .button-label-primary {
    width: 100%;
  }
}

/*------------------------------------------------
  animation
------------------------------------------------*/

/* fade-in-on-scroll 汎用フェードイン */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
