@charset "utf-8";
/*----------------------------------------------------
	custom properties
----------------------------------------------------*/
:root {
  --height-nav: 140px;
  --color-main: #ff7e3a;
  --color-error: red;

  --size-main: 1100px; /*メインコンテンツ幅*/

  /* このサイズの中で可変 375px and 1100px */
  --19px: clamp(16px, 0.267vw + 15px, 19px);
  --23px: clamp(18px, 0.69vw + 15.414px, 23px);
  --32px: clamp(27px, 0.69vw + 24.414px, 32px);
}

/*----------------------------------------------------
	box
----------------------------------------------------*/
.main {
  width: min(100% - 2em, var(--size-main));
  margin-inline: auto;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.container-inner {
  width: min(100% - 2em, 900px);
  margin-inline: auto;
}
.container-center {
  max-inline-size: max-content;
  margin-inline: auto;
}
.full-container-back {
  /*背景全幅*/
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  width: 100vw;
}
@media (min-width: 768px) {
  /* PC */
  .full-container {
    /*全幅*/
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .full-right {
    /*右側へ要素を広げる*/
    flex: 1;
    margin-right: calc(50% - 50vw);
  }
  .full-left {
    /*左側へ要素を広げる*/
    flex: 1;
    margin-left: calc(50% - 50vw);
  }
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
#check {
  display: none;
}
.header__link {
  scroll-margin-top: var(--height-nav);
}
.header__nav .nav__title {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: var(--19px);
  font-weight: 700;
  padding-bottom: 5px;
}
@media (min-width: 1024px) {
  /* PC */
  .header {
    position: sticky;
    top: 0;
    margin: 0 auto;
    z-index: 100;
    background: #fff;
  }
  .header__inner {
    width: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--height-nav);
  }
  .header__logo {
    width: min(16.2vw, 236px);
    margin-left: 1.5em;
  }
  .header__nav {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.075em;
    text-align: center;
  }
  .header__nav .nav__list {
    display: flex;
    list-style: none;
    gap: 3em;
    margin-inline: 1em;
  }
  .header__nav .nav__item {
    position: relative;
    z-index: 1;
  }
  .header__nav .nav__item:first-child {
    display: none;
  }
  .header__nav .nav__item::after {
    content: "";
    position: absolute;
    bottom: -1em;
    left: 15%;
    width: 70%;
    height: 7px;
    border-radius: 7px;
    background: var(--color-main);
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
  }
  .header__nav .nav__item:hover::after {
    transform: scale(1, 1);
  }
  .header__nav .nav__link {
    color: #000;
    padding-inline: 0.5em;
    text-decoration: none;
    display: block;
  }
  .header__nav .nav__link:hover {
    color: #000;
  }
}

@media (max-width: 1023px) {
  /* SP */
  .header {
    /*position: sticky; top: 0;*/
    z-index: 100;
    background: #fff;
  }
  .header__shop {
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .header__inner {
    padding: 1em 0;
  }

  .header__logo {
    width: 100%;
    text-align: center;
  }
  .header__nav {
    line-height: 1.5;
  }
  .header__nav .nav__list {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -110%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    list-style: none;
    text-align: center;
    padding: 1em 0;
  }
  .header__nav .nav__item:first-child {
    margin-bottom: 0.5em;
  }
  .header__nav .nav__item {
    padding: 0.7em 0;
  }
  .header__nav .nav__item:nth-child(5) {
    margin-bottom: 1.2em;
  }
  .header__nav .nav__title {
    font-size: clamp(24px, 1.531vw + 18.26px, 30px);
  }
  .header__nav .nav__link {
    color: #fff;
    text-decoration: none;
    display: block;
  }

  .header__nav .nav__button {
    background: var(--color-main) url("../images/nav_button.png") no-repeat;
    display: block;
    width: 50px;
    height: 50px;
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 200;
  }

  #check:checked ~ .nav__list {
    right: 0;
    transition: 0.4s;
  }
  #check:checked ~ .nav__button {
    background-position: -50px 0;
    z-index: 300;
  }
}

/*----------------------------------------------------
	pagetop
----------------------------------------------------*/
.pagetop {
  text-align: center;
  margin: 1em 0;
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  width: 100%;
  padding: 4.4em 0 1.5em;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  width: min(100% - 2em, 1100px);
  letter-spacing: 0.075em;
  margin-inline: auto;
  clear: both;
}

.footer__box {
  display: flex;
  gap: 2em;
  font-size: var(--19px);
}
.footer__text .name {
  font-weight: bold;
}
.footer__text .tel {
  font-size: clamp(20px, 0.69vw + 17.414px, 25px);
  margin-block: 0.5em;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3em;
  border-left: var(--color-main) 3px solid;
  padding-left: 1em;
}
.footer__nav .nav__item {
  font-size: 13px;
  line-height: 1.7;
}
.footer__nav .nav__item:nth-child(even) {
  margin-top: 2em;
}
.footer__nav .nav__title {
  font-size: var(--19px);
  font-weight: bold;
}
.footer__nav .nav__link {
  display: block;
  color: #000;
  text-decoration: none;
}

.footer__copyright {
  font-size: 13px;
  color: #969696;
  text-align: center;
  margin-top: 4em;
}

@media (max-width: 1099px) {
  /* タブレット */
  .footer__inner {
    justify-content: center;
    align-items: flex-end;
  }
  .footer__box {
    flex-direction: column;
  }
}
@media (max-width: 814px) {
  /* SP */
  .footer__inner,
  .footer__box,
  .footer__nav {
    flex-direction: column;
    margin-inline: auto;
  }
  .footer__nav {
    gap: 2em;
    border-left: none;
    padding-left: 0;
  }
}

/*----------------------------------------------------
	line
----------------------------------------------------*/
hr {
  height: 0;
  border: 0;
  border-top: 1px solid var(--color-gray-dark);
  margin: 5em 0;
}
@media (max-width: 767px) {
  /* SP */
  hr {
    margin: 3em 0;
  }
}

/*----------------------------------------------------
	link
----------------------------------------------------*/
a {
  text-decoration: none;
  color: var(--color-main);
}
