@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

ul {
  list-style-type: none;
}

br {
  letter-spacing: 0;
}

  
  
:root {
  --main-color: #fa6900;
  --main-color-hover: #CB3918;
  --sub-color: #e9f4ea;
  --sub-color2: #006837;
  --sub-color3: #009d8f;
  --sub-color4: #ac0000;
  --hover-color: #006678;
  --text-color: #1a1a1a;
  --text-color2: #333;
  --text-reverse-color: #fff;
  --inset-space-sp: calc(20 / 400 * 100%);
  --fv-delay: .6s;
  --font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-family2: "Zen Kaku Gothic Antique", sans-serif;
  --pc-width: 1400;
  --sp-width: 400;
  --main-width: 1150;
}

html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
}
@media (min-width: 600px) {
  html {
    font-size: 0.78vw;
  }
}
@media (min-width: 1024px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: clamp(1rem, 14 / var(--sp-width) * 100vw, 1.4rem);
  font-family: var(--font-family2);
  font-weight: 500;
  overflow-x: hidden;
  color: var(--text-color);
  min-width: 320px;
  position: relative;
}
@media (min-width: 600px) {
  body {
    font-size: clamp(1rem, 14 / var(--pc-width) * 100vw, 1.4rem);
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

table, li, p, dl {
  line-height: 1.8;
}

a {
  color: #333333;
  text-decoration: none;
}

em {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

i {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

body figure {
  margin: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-inline: auto;
  padding-top: 1rem;
  width: 100%;
  z-index: 1000;
  font-family: var(--font-family);
  height: 7rem;
}
.header::before {
  content: "";
  width: 100%;
  height: calc(100% - 3rem);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
}
.header::after {
  content: "";
  width: 100%;
  height: 7rem;
  background-image: url(../img/common/header_gradation_sp.svg);
  background-position: bottom center;
  background-size: auto 100%;
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
.header__in {
  display: flex;
  padding-inline: calc(10 / var(--sp-width) * 100%);
}

@media (min-width: 600px) {
  .header {
    position: absolute;
    padding-top: 2rem;
    height: auto;
  }
  .header::after {
    height: 5.5rem;
    top: auto;
    bottom: -1.5rem;
    background-image: url(../img/common/header_gradation.webp);
  }
  .header__in {
    display: block;
    padding-inline: calc(40 / var(--pc-width) * 100%);
  }
}
.header__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 2rem;
}

.header__top, .header__bottom {
  position: relative;
  z-index: 100;
}

@media (min-width: 600px) {
  .header__top {
    justify-content: space-between;
    height: 7rem;
    padding-right: 0;
  }
}
.header__logo {
  width: 11rem;
  margin-right: 2.5rem;
  transform: translateY(-0.1rem);
}

@media (min-width: 600px) {
  .header__logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(155 / var(--pc-width) * 100vw);
    max-width: 155px;
    order: 2;
    margin-right: 0;
  }
}
.header__tel {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  align-items: center;
  transform: translateY(-0.1rem);
}
.header__tel::before {
  content: "";
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
  background-image: url(../img/common/icon_tel.svg);
  background-size: 100% 100%;
  grid-row: 1/3;
  margin-right: 0.8rem;
}
.header__tel a, .header__tel span {
  line-height: 1.2;
}
.header__tel a {
  font-size: clamp(1rem, 15 / var(--sp-width) * 100vw, 1.5rem);
  font-weight: 700;
}
.header__tel span {
  text-align: center;
  font-size: clamp(1rem, 10 / var(--pc-width) * 100vw, 1rem);
}

@media (min-width: 600px) {
  .header__tel {
    transform: none;
    order: 1;
  }
  .header__tel a {
    font-size: clamp(1rem, 18 / var(--pc-width) * 100vw, 1.8rem);
  }
  .header__tel span {
    font-size: clamp(1rem, 12 / var(--pc-width), 1.2rem);
  }
}
.header__buttons {
  display: none;
  align-items: center;
  position: relative;
}
.header__buttons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-right: 2rem;
}
.header__buttons-item {
  width: calc(150 / var(--pc-width) * 100vw);
  height: 5rem;
  aspect-ratio: 150/50;
  font-weight: 600;
}
.header__buttons-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  line-height: 1.2;
  text-align: center;
}
.header__buttons-item:nth-child(odd) a {
  border: solid 1px var(--main-color);
  color: var(--main-color);
}
.header__buttons-item:nth-child(even) a {
  background-color: var(--main-color);
  color: #fff;
}

.header__buttons-sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.header__buttons-sns-item {
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1/1;
}

@media (min-width: 600px) {
  .header__buttons {
    order: 3;
    display: flex;
  }
}
@media (hover: hover) {
  .header__buttons-item a {
    transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
  }
  .header__buttons-item:nth-child(odd) a:hover, .header__buttons-item:nth-child(even) a:hover {
    background-color: var(--main-color-hover);
    border-color: var(--main-color-hover);
    color: #fff;
  }
}
.header__nav {
  margin-top: 2rem;
  display: none;
}
.header__nav-list {
  display: flex;
  justify-content: space-between;
}
.header__nav-item {
  display: flex;
}
.header__nav-item a {
  font-weight: 600;
  padding: 0 1.6rem;
  border-radius: 3em;
}
.header__nav-item a.current {
  color: #fff;
  background-color: var(--main-color);
}

@media (min-width: 600px) {
  .header__nav {
    display: block;
  }
}
@media (hover: hover) {
  .header__nav-item a {
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  .header__nav-item a:hover {
    color: #fff;
    background-color: var(--main-color);
  }
}
.header__nav-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding-bottom: 1.5em;
  width: 4rem;
  height: 4.8rem;
  position: relative;
  z-index: 100;
}
.header__nav-button span {
  position: absolute;
  left: 0;
  width: 2.4rem;
  height: 0.2rem;
  background-color: var(--main-color);
  border-radius: 3em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.header__nav-button span:nth-of-type(2) {
  top: calc(50% - 0.8rem);
}
.header__nav-button span:nth-of-type(3) {
  top: calc(50% + 0.8rem);
}

.is-nav-open .header__nav-button span:nth-of-type(1) {
  opacity: 0;
}
.is-nav-open .header__nav-button span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
.is-nav-open .header__nav-button span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

@media (min-width: 600px) {
  .header__nav-button {
    display: none;
  }
}
.main {
  padding-top: 9.5rem;
}

@media (min-width: 600px) {
  .main {
    padding-top: 13.2rem;
  }
}