:root {
  --font-base: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;

  --main-color: #1e943a;

  --point-orange: #f5ab15;
  --point-yellow: #f5e327;
  --point-green: #649f32;
  --point-green-2: #38ae37;

  --text-blue: #00345c;
  --text-green: #367236;
  --text-grey: #5a5b5b;
  --text-brown: #5d4e23;
  --text-red: #b11e23;
  --text-red-2: #e60012;

  --bg-color: #fff9e6;
  --bg-color-2: #fffcf5;
  --bg-color-3: #eff7ea;

  --pc-width: 1220px;
}

/* ===== base ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text-blue);
  font-weight: 500;
  text-align: center;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 1.25em;
}

h3 {
  font-size: 1.15em;
}

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

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.7;
  margin: 0;
}

@media screen and (min-width:680px) {
  body {
    font-size: 20px;
    letter-spacing: 0.03em;
  }


}

/* ===== layout ===== */
.l-wrapper {
  max-width: 85%;
  margin: 0 auto;
}

.l-wrapper-02 {
  max-width: 100%;
  margin: 0 auto;
}

.l-container {
  padding: 20px 0 60px;
}

.l-2col {
  display: grid;
  gap: 30px;
}

@media screen and (min-width:680px) {
  .l-wrapper {
    max-width: var(--pc-width);
    padding: 0 40px;
  }

  .l-wrapper.narrow {
    max-width: 800px;
  }

  .l-container {
    padding: 40px 0;
  }

  .l-2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 8%;
  }
}

/* ===== common ===== */
/* font */
.font-bold {
  font-weight: 700;
}

.font-italic {
  font-style: italic;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-xs {
  font-size: .7em;
}

.font-sm {
  font-size: .85em;
}

.font-xl {
  font-size: 1.4em;
}

.font-2xl {
  font-size: 1.75em;
}

.font-3xl {
  font-size: 2em;
}

/* text */
.text-red {
  color: var(--text-red);
}

.text-red2 {
  color: var(--text-red-2);
}

.text-green {
  color: var(--text-green);
}

.text-brown {
  color: var(--text-brown);
}

.text-blue {
  color: var(--text-blue);
}

.text-grey {
  color: var(--text-grey);
}

.text-orange {
  color: var(--point-orange);
}

.text-light {
  color: #666;
  font-weight: 400;
  font-size: 0.85em;
}

.text-left {
  text-align: left;
}

.txt-small{
  font-size:0.8em;
}

/* background */
.bg-yellow {
  background: var(--bg-color);
}


.pt-fukidashi-pc20{
  padding-top: 0px;
}

@media screen and (max-width:680px) {
  .pt-fukidashi-pc20{
    padding-top: 20px;
  }
  }


.pt-20{
  padding-top: 20px;
}

.pt-40{
  padding-top: 40px;
}

.pb-40{
  padding-bottom: 40px;
}

.bg-cream {
  background: var(--bg-color-2);
}

/* img */
.img-round {
  border-radius: 50%;
}

/* margin */
.header-height {
  padding-top: 70px;
}

.m-t1 {
  margin-top: 1em;
}

.m-t2 {
  margin-top: 2em;
}

.m-l2 {
  margin-left: 2em;
}

/* title */
.ttl-border {
  color: var(--text-green);
  font-weight: 700;
  position: relative;
  padding-bottom: .8em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ttl-border::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 2px;
  border-radius: 3px;
  background: var(--text-green);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ttl-border.text-brown {
  color: var(--text-brown);
}

.ttl-border.text-brown::after {
  background: var(--text-brown);
}

.ttl-img {
  max-width: 500px;
  margin: 0 auto;
}

.page-ttl {
  padding-bottom: .5em;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 1em;
}

/* responsive */
.pc-show {
  display: none;
}

@media screen and (min-width:680px) {
  .font-xl {
    font-size: 1.6em;
  }

  .ttl-border {
    gap: 10px;
  }

  .pc-hide {
    display: none;
  }

  .pc-show {
    display: block;
  }

  .header-height {
    padding-top: 85px;
  }
}

@media screen and (min-width:769px) {
  .ttl-img {
    max-width: 480px;
  }
}

/* ===== deco ===== */
.bottom-deco {
  position: relative;
}

.bottom-deco::after {
  content: "";
  width: 800px;
  aspect-ratio: 499/73;
  background: url("../img/deco-bg.png") no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
}

@media screen and (min-width:680px) {
  .bottom-deco::after {
    width: 110%;
  }
}

/* ===== header ===== */
.header {
  width: 100%;
  background: var(--bg-color-2);
  padding: 8px;
  display: block flex;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 100;
  overflow: hidden;
}

.hamburger {
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
}

.menu-bar {
  display: inline-block;
  width: 100%;
  height: 3px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  transition: .2s;

}

.menu-bar:nth-child(1) {
  top: 0;
}

.menu-bar:nth-child(2) {
  top: calc(50% - 1px);
}

.menu-bar:nth-child(3) {
  bottom: 0;
}

.hamburger.close .menu-bar:nth-child(1) {
  transform: rotate(35deg);
  top: calc(50% - 1px);
}

.hamburger.close .menu-bar:nth-child(2) {
  width: 0;
}

.hamburger.close .menu-bar:nth-child(3) {
  transform: rotate(-35deg);
  top: calc(50% - 1px);
}

.header-logo {
  display: flex;
  align-items: center;
  max-width: 180px;
}

.header-logo:hover {
  opacity: .85;
}
.header__cv {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-tel {
  display: block;
  border: 2px solid var(--main-color);
  background: #fff;
  border-radius: 8px;
  padding: 5px;

}

.header-tel:hover {
  opacity: .85;
}

.header-tel__no {
  font-weight: 700;
  font-size: 1.35em;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #457540;
}

.header-tel__no::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url("../img/icon-tel.png") no-repeat center/contain;
  flex-shrink: 0;
}

.header-tel__txt {
  font-size: 10px;
  line-height: 1.3;
  text-align: left;
  color: #457540;
}

.header-btn {
  display: none;
  font-size: 1.1rem;
  width: 100%;
  color: #fff;
  background: var(--point-orange);
  box-shadow: 1px 1px 0 2px #cecece;
  padding: .8em;
  transition: .2s;
  position: fixed;
  bottom: 0;
  left: 0;
}

.header-btn:hover {
  background: #e59421;
}

/*
@media screen and (min-width:680px) {
  .header {
    padding: 10px 3% 10px 10px;
  }
  .header::before {
    height: 80px;
    left: -25px;
  }
  .hamburger {
    width: 35px;
    margin-top: -32px;
  }
  .header-logo {
    max-width: 180px;
    margin-left: 20px;
  }
}
*/

/* ドロワー */
.drawer {
  width: 100%;
  background: var(--main-color);
  padding: 50px;
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  transition: .2s;
  z-index: 90;
}

.drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.drawer__item a {
  color: #fff;
}

.drawer.open {
  transform: translateY(70px);
}

.drawer__icon a {
  display: inline-block;
  max-width: 35px;
}

.drawer__icon:hover {
  opacity: .85;
}

@media screen and (min-width:680px) {
  .header-tel {
    padding: 8px;
  }

  .header-tel__no {
    font-size: 1.3em;
  }


  .drawer.open {
    transform: translateY(80px);
  }

  .header-btn {
    display: block;
    width: auto;
    position: static;
    border-radius: 3em;
    border: 3px solid var(--point-yellow);
  }

  .header-btn:hover {
    box-shadow: none;
    transform: translate(1px, 1px);
  }
}

/* ===== main visual ===== */
.main-visual {
  width: 100%;
  aspect-ratio: 2/3;
  max-height: 90dvh;
  background: url("../img/main.jpg") no-repeat center/cover;
  position: relative;
  overflow: hidden;
  padding: 5%;
}

.main-visual__txt {
  width: 70%;
  max-width: 300px;
  position: absolute;
  top: calc(10% + 50px);
  left: 5%;
}
@media screen and (min-width:680px)  {
  .main-visual {
    margin-top: 89px;
  }

}
@media screen and (min-width:769px) {
  .main-visual {
    background: url("../img/main-pc.jpg") no-repeat center/cover;
    max-height: calc(100dvh - 89px);
    aspect-ratio: 375/211;
  }
  .main-visual__txt {
    top: 10%;
    max-width: 380px;
  }
}

/* ===== Instagram ===== */

.insta-area{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding:2em 7em;
  gap: 10px;
}

.insta-area-inr{
  width: 32%;
}

.insta-area-inr:hover{
  opacity: 0.7;
}


@media screen and (max-width:768px) {
  .insta-area{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding:1em 1em;
    gap: 10px;
  }
  
  .insta-area-inr{
    width: 28%;
  }
  
}


/* ===== campaign ===== */
.deco-square__inner {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}

.deco-square__img {
  content: "";
  display: block;
  min-width: 1000px;
  aspect-ratio: 638/37;
  background: url("../img/deco-square.png") repeat-x center;
  background-size: 800px;
  transform: translateX(-3px);
}

.campaign-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.justify-content-center{
   justify-content: center;
   gap: 0px;
}

.pc-item{
  display: none;
}

.sp-item{
  display: block;
}

@media screen and (min-width:680px) {
  .deco-square__img {
    background-size: 1000px;
    transform: translateX(0);
  }

  .campaign-item .cv {
    order: 3;
  }

  .campaign-item {
    gap: 50px;
  }

  .pc-item{
    display: block;
  }
  
  .sp-item{
    display: none;
  }

}

/* ===== conversion ===== */
.cv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 3em;
}

.cv__txt {
  font-size: 1.2em;
  line-height: 1.5;
  color: var(--text-brown);
  position: relative;
}

.cv__txt::before,
.cv__txt::after {
  content: "";
  width: 2px;
  height: 70%;
  background: var(--text-brown);
  position: absolute;
  bottom: 0;
}

.cv__txt::before {
  left: -2.5em;
  transform: rotate(-40deg);
}

.cv__txt::after {
  right: -2.5em;
  transform: rotate(40deg);
}

.cv__btn {
  font-size: 1.3em;
  width: 100%;
  max-width: 400px;
  color: #fff;
  background: var(--point-orange);
  border: 3px solid var(--point-yellow);
  box-shadow: 1px 1px 0 2px #cecece;
  border-radius: 3em;
  padding: .8em;
  transition: .2s;
}

.cv__btn:hover {
  background: #e59421;
  box-shadow: none;
  transform: translate(2px, 2px);
}

@media screen and (min-width:680px) {
  .cv {
    gap: 20px;
  }

  .cv__btn {
    font-size: min(3.5vw, 1.5em);
    max-width: 550px;
  }
}

@media screen and (min-width: 680px) {
  .cv.pc-hide.pt-40 {
    display: none;
  }
  }

/* ===== fukidashi ===== */
.fukidashi {
  max-width: 90%;
  margin: 20px auto 0;
  color: #fff;
  background: var(--point-green);
  padding: 1.2em;
  border-radius: 25px;
  position: relative;
}

.fukidashi::after {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  background: var(--point-green);
  transform: translate(-50%, 50%) rotate(45deg);
  position: absolute;
  bottom: 0;
  left: 50%;
}

.fukidashi__inner {
  display: inline-block;
  position: relative;
}

.fukidashi__lineLeft::before,
.fukidashi__lineRight::before,
.fukidashi__lineLeft::after,
.fukidashi__lineRight::after {
  content: "";
  width: 2px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  bottom: 0;
}

.fukidashi__lineLeft::before,
.fukidashi__lineRight::before {
  height: 100%;
  max-height: 50px;
}

.fukidashi__lineLeft::after,
.fukidashi__lineRight::after {
  height: 70%;
  max-height: 30px;
}

.fukidashi__lineLeft::before {
  left: -1.5em;
  transform: rotate(-30deg);
}

.fukidashi__lineRight::before {
  right: -1.5em;
  transform: rotate(30deg);
}

.fukidashi__lineLeft::after {
  left: -2.2em;
  transform: rotate(-40deg);
}

.fukidashi__lineRight::after {
  right: -2.2em;
  transform: rotate(40deg);
}

@media screen and (min-width:680px) {
  .fukidashi {
    max-width: 100%;
    border-radius: 0;
    margin: 0 auto;
    padding: 1.5em;
  }

  .fukidashi::after {
    width: 30px;
  }
}

/* ===== gallery ===== */
.price {
  display: inline-block;
  margin: 0 10px;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (min-width:680px) {
  .gallery__item {
    width: 300px;
    max-width: 100%;
  }
}

/* ===== about ===== */
.about-list {
  display: grid;
  gap: 30px;
}

.about-item__txt {
  margin: .5em auto 0;
  padding: 0 5%;
}

/* present */
.present {
  margin-top: 50px;
  padding: 0 2.5em;
}

.present__img {
  position: relative;
}

.present__label {
  width: 37%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-15%, -20%);
}

@media screen and (min-width:680px) {
  .about-list {
    gap: 0;
  }

  .about-item {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .about-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
  }

  .about-item__img {
    width: 50%;
  }

  .about-item__txt {
    width: 50%;
  }

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

  .present__img {
    width: 40%;
  }

  .present__label {
    /* width: 150px; */
  }

  .present__txt {
    width: 45%;
    padding-left: 20px;
    text-align:left;
  }
}

/* ===== season ===== */
.season-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.season-list li:first-child {
  grid-column: span 2;
}

@media screen and (min-width:680px) {
  .season-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .season-list li:first-child {
    grid-row: span 2;
  }
}

/* ===== point ===== */
.ttl-line {
  font-weight: 700;
  font-size: 1.4em;
  display: inline-block;
  position: relative;
  margin-top: 1em;
}

.ttl-line__left::before,
.ttl-line__right::before,
.ttl-line__left::after,
.ttl-line__right::after {
  content: "";
  width: 5px;
  border-radius: 4px;
  background: var(--text-blue);
  position: absolute;
  bottom: 0;
}

.ttl-line.text-brown .ttl-line__left::before,
.ttl-line.text-brown .ttl-line__right::before,
.ttl-line.text-brown .ttl-line__left::after,
.ttl-line.text-brown .ttl-line__right::after {
  background: var(--text-brown);
}

.ttl-line__left::before,
.ttl-line__right::before {
  height: 100%;
  max-height: 50px;
}

.ttl-line__left::after,
.ttl-line__right::after {
  height: 70%;
  max-height: 30px;
}

.ttl-line__left::before {
  left: -1.2em;
  transform: rotate(-30deg);
}

.ttl-line__right::before {
  right: -1.2em;
  transform: rotate(30deg);
}

.ttl-line__left::after {
  left: -2.2em;
  transform: rotate(-40deg);
}

.ttl-line__right::after {
  right: -2.2em;
  transform: rotate(40deg);
}

.point-list {
  display: grid;
  gap: 30px;
}

.point-item {
  background: #fff;
  border-radius: 20px;
  border: 2px solid #f6cb53;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.point-item__img {
  aspect-ratio: 3/1;
  background: no-repeat center/contain;
}

.point-item__txt {
  text-align: left;
}

.text-line {
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, #f0e647 70%, #f0e647 100%);

}

@media screen and (min-width:680px) {
  .point-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .point-item {
    gap: 0;
  }

  .point-item__img {
    aspect-ratio: 3/2;
  }


}

/* ===== delivery ===== */
.info-list {
  display: grid;
  gap: 60px;
  margin-top: 25px;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item__img {
  object-fit: cover;
  aspect-ratio: 270/199;
}

.delivery-area {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8em;
}

.delivery-area th {
  color: var(--text-brown);
  font-weight: 500;
  border: 2px solid #c1d283;
  padding: 1em;

}

.delivery-area td {
  color: var(--text-green);
  text-align: left;
  border: 2px solid #c1d283;
  padding: 1em;
}

@media screen and (min-width:680px) {
  .info-list {
    margin-top: 100px;
    grid-template-columns: repeat(2, 1fr);
  }


}

/* ===== flow ===== */
.flow-list {
  display: grid;
  gap: 40px;
}

.flow-item {
  background: #fff;
  border: 2px solid var(--text-green);
  padding: 1.5em;
  position: relative;
  text-align: left;
}

.flow-item:not(:last-child)::after {
  content: "";
  border-top: 18px solid var(--text-green);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 18px);
}

.flow-item__img {
  aspect-ratio: 4/3;
  background: no-repeat center/cover;
  margin-bottom: 1em;
}

@media screen and (min-width:680px) {
  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .flow-item {
    padding: 1em;
  }

  .flow-item:not(:last-child)::after {
    bottom: 50%;
    left: auto;
    right: -34px;
    transform: rotate(-90deg) translateX(-18px);
  }
}

/* ===== faq ===== */
/* navi */
[id^="q"] {
  scroll-margin-top: 100px;
}

.faq-navi {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 4em;
}

.faq-navi a {
  display: block;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding: 0.8em;
  border-radius: 10px;
  position: relative;
  transition: .2s;
}

.faq-navi a::after {
  content: "";
  border-top: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  top: 28px;
  right: .8em;
}

.faq-navi a:hover {
  opacity: .85;
}

/* list */
.faq-list {
  display: grid;
  gap: 15px;
}

.faq-item {
  text-align: left;
  transition: .2s;
}

.faq-item summary {
  display: block;
  gap: 20px;
  padding: 1em;
  border: 1px solid var(--text-blue);
  background: #f6f4c7;
  position: relative;
  cursor: pointer;
}

.faq-item summary:hover {
  opacity: .85;
}

/* Chrome、Safari */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "Q.";
}

.faq-item summary::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--text-blue);
  border-bottom: 1px solid var(--text-blue);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: absolute;
  right: 1em;
  top: calc(50% - 8px);
  transition: .2s;
}

.faq-item__answer {
  padding: 1em;
  border: 1px solid var(--text-blue);
  border-top: none;
  border-radius: 0 0 10px 10px;

}

.faq-item[open] summary::after {
  transform: rotate(225deg);
  top: calc(50% - 2px);
}

.btn-faq {
  display: block;
  max-width: 350px;
  color: var(--text-green);
  border: 2px solid var(--text-green);
  border-radius: 10px;
  padding: 1em;
  margin: 3em auto 25px;
}

.btn-faq:hover {
  opacity: .85;
}

@media screen and (min-width:680px) {
  .btn-faq {
    margin-bottom: 50px;
  }
}

/* ===== arrange ===== */
.arrange-list {
  display: grid;
  gap: 30px;
}

.arrange-item__txt {
  padding: 0 20px;
  margin-top: .5em;
}

@media screen and (min-width:680px) {
  .arrange-list {
    max-width: var(--pc-width);
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .arrange-item__txt {
    text-align: left;
    padding: 0;
  }
}

/* ===== Instagram ===== */
.ttl-instagram {
  color: var(--text-green);
  font-weight: 700;
  position: relative;
  padding-bottom: .8em;
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ttl-instagram::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2px;
  border-radius: 3px;
  background: var(--text-green);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ttl-instagram__inner {
  display: inline-block;
  position: relative;
}

.ttl-instagram__inner::before {
  content: "";
  display: inline-block;
  width: 70px;
  aspect-ratio: 1/1;
  background: url("../img/logo-circle.png") no-repeat center/contain;
  position: absolute;
  left: -80px;
  top: -15px;
}

/* ===== 申し込み選択画面 ===== */
#page-select .header-btn {
  display: none;
}

#page-select .l-footer__inner {
  margin: 0;
}

.btn-select {
  font-size: 1.25rem;
  font-weight: 700;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 5px;
  color: #fff;
  border: 3px solid transparent;
  box-shadow: 1px 1px 0 1px #cecece;
  border-radius: 3em;
  padding: .8em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: .2s;
}

.btn-select.tel {
  background: #65b735;
  border-color: #b4d78f;
}

.btn-select.tel::before {
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 1/1;
  background: url("../img/icon-tel-wh.png") no-repeat center/contain;
}

.btn-select.tel:hover {
  background: #55a227;
  box-shadow: none;
  transform: translate(1px, 1px);
}

.btn-select.net {
  background: var(--point-orange);
  border-color: var(--point-yellow);
}

.btn-select.net::before {
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 10/9;
  background: url("../img/icon-laptop.png") no-repeat center/contain;
}

.btn-select.net:hover {
  background: #e59421;
  box-shadow: none;
  transform: translate(1px, 1px);
}

.banner {
  max-width: 500px;
  margin: 40px auto 20px;
}

@media screen and (min-width:680px) {
  .banner {
    margin-bottom: 30px;
  }
}

/* ===== form ===== */
#page-contact .header-btn,
#page-apply .header-btn {
  display: none;
}

#page-contact .l-footer__inner,
#page-apply .l-footer__inner {
  margin: 0;
}

/* entry */
::placeholder {
  color: #c0bfbf;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  background: var(--bg-color-3);
  border: 1px solid var(--point-green-2);
  padding: 1em;
  font-family: var(--font-base);
}

label {
  cursor: pointer;
  user-select: none;
}

.input-zip {
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-zip input {
  max-width: 10em;
}

select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background:#eff7ea url("../img/circle-arrow-down-solid.svg") no-repeat right 12px center / 15px auto;
  border: 1px solid #40ad3f;
  padding: 1em 4em 1em 2em;
}

@media screen and (max-width:680px) {
  select {
    font-size: 1.1em;
    padding: 1em 3em 1em 1em;
  }
}


.radio-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: .7em !important;
}

input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.label-radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: row-reverse;
  gap: 8px;
}

.label-radio__marker {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--point-green-2);
}

.label-radio__marker::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #197b3a;
  position: absolute;
  top: calc(50% - 6px);
  left: 4px;
  transform: scale(0);
  transition: .1s;
}

#showTxt {
  display: none;
}

input[type="radio"]:checked~.label-radio__marker::after {
  transform: scale(1);
}

.check-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1em !important;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.input-others {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
}

.input-others input[type="text"] {
  background: #fff;
  border-color: #000;
  width: 80%;
  min-width: 290px;
}

.label-check {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: row-reverse;
  gap: 8px;
  flex-shrink: 0;
}

.label-check__marker {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #125e32;
  position: relative;
}

.label-check__marker::after {
  content: "";
  display: block;
  background: url("../img/icon-check.png") no-repeat center/contain;
  position: absolute;
  inset: 0;
  margin: 4px;
  transition: .1s;
}

input[type="checkbox"]:checked~.label-check__marker {
  background: #125e32;
}

/* header */
.form-header {
  color: var(--text-brown);
  max-width: 700px;
  margin: 50px auto 25px;
}

/* layout */
.form-body {
  padding-bottom: 40px;
}

.form-body__head {
  background: #fff;
  padding: 2em 0 0.8em;
}

.form-body__ttl {
  color: #000;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.form-body__inner {

  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
}

.form-body__inner:not(:last-of-type) {
  margin-bottom: 20px;
}


.form-body__inner dl {
  margin: 0;
}

.form-body__inner dt {
  color: #231815;
  margin: 0;
}

.form-body__inner dt:not(:first-of-type) {
  margin-top: 2em;
}

.form-body__inner dd {
  margin: 0;
  margin-top: 8px;
}

.required {
  display: flex;
  align-items: center;
  gap: 8px;
}

.required::before {
  content: "必須";
  display: inline-block;
  font-size: 12px;
  background: var(--text-red-2);
  color: #fff;
  border-radius: 2px;
  padding: 0 3px;
}

/* 送信ボタン */
.form-btns {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  display: block;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  margin: 3em auto 0em;
}

input[type="submit"] {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  width: 100%;
  max-width: 300px;
  background: #f39918;
  color: #fff;
  border: 2px solid #ed711a;
  padding: 1em;
  border-radius: 15px;
  cursor: pointer;
  transition: .2s;
  margin: 0 auto 1em;
}

input[type="submit"]:hover {
  background: #e59421;
}



/* 確認画面 */
.form-confirm {
  padding: 20px 40px 80px;
  color: #000;
}

.form-confirm__inner {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--point-green-2);
  margin-top: 1em;
  margin-bottom: 2em;
}

.form-confirm__ttl {
  max-width: 700px;
  margin: 0 auto;
}

.form-confirm dt {
  padding: .8em 1.2em;
  background: var(--bg-color-3);
}

.form-confirm dd {
  padding: .8em 1.2em;
  margin: 0;
}

.form-confirm__inq {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--point-green-2);
  margin-top: 1em;
  padding: .8em 1.2em;
}

.btn-fix {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 300px;
  color: #9e9e9e;
  border: 2px solid #9e9e9e;
  font-weight: 700;
  padding: 1em;
  border-radius: 15px;
  cursor: pointer;
  transition: .2s;
  margin: 0 auto 1em;
}

.btn-fix:hover {
  border-color: #000;
}

/* thanks */
.form-thanks {
  min-height: calc(100dvh - 432px);
}

.form-thanks__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}

.form-thanks__ttl::before,
.form-thanks__ttl::after {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background: var(--text-brown);
  flex-shrink: 0;
}

.form-thanks__note {
  padding-bottom: 80px;
}

.btn-go-top {
  display: block;
  width: 100%;
  max-width: 300px;
  background: #82bb26;
  color: #fff;
  padding: 1em;
  border-radius: 15px;
  transition: .2s;
  margin: 0 auto;
}

.btn-go-top:hover {
  background: var(--point-green);
}

@media screen and (min-width:680px) {
  .input-others input[type="text"] {
    width: 70%;
  }

  .form-header {
    margin: 90px auto 45px;
  }

  .form-body {
    padding-bottom: 70px;
  }

  .form-body__inner {
    padding: 50px 40px;
  }

  input[type="submit"],
  .form-btns {
    font-size: 1.1rem;
  }

  .form-confirm {
    font-size: 1rem;
    padding: 25px 40px 120px;
  }

  .form-thanks {
    min-height: calc(100dvh - 246px);
  }

  .form-thanks__note {
    padding-bottom: 120px;
  }
}

/* ===== terms and privacy ===== */
.term-details {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.term-details.privacy {
  margin-bottom: 20px;
}

.term-details dt:not(:first-of-type) {
  margin-top: 2em;
}

.term-details dt {
  margin-bottom: 5px;
}

.term-details dd {
  margin: 0;
}

.term-details dd a {
  color: var(--text-brown);
}

.term-details dd a:hover {
  opacity: .8;
  text-decoration: underline;
}

.text-indent {
  padding-left: 3em;
  text-indent: -3em;
}


@media screen and (min-width:680px) {
  .term-details.privacy {
    margin-bottom: 30px;
  }
}

/* ===== company ===== */
.company-thumbnail {
  text-align: center;
}

.company-thumbnail img {
  width: 100%;
  max-width: 800px;
}

.detail-list {
  font-size: 14px;
  text-align: left;
  margin: 50px 0;
}

.detail-row {
  border-bottom: 1px solid #208d3b;
  display: flex;
}

.detail-row dt {
  width: 10em;
  flex-shrink: 0;
}

.detail-row dt,
.detail-row dd {
  color: var(--text-brown);
  padding: 1.5em .5em;
  margin: 0;
}

.detail-row dd a {
  text-decoration: underline;
}

.garally {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.garally img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* ===== contact ===== */
.contact {
  margin: 60px 0 30px;
}

.btn-tel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  color: var(--text-green);
  border: 2px solid var(--text-green);
  border-radius: 10px;
  padding: 1em;
  margin: 1em auto .5em;
}

.btn-tel:hover {
  opacity: .85;
}

.btn-tel img {
  width: 85%;
}

.btn-tel::before {
  content: "";
  display: inline-block;
  width: 12%;
  aspect-ratio: 1/1;
  background: url("../img/icon-footer-tel.png") no-repeat center/contain;
  flex-shrink: 0;
}

@media screen and (min-width:680px) {
  .contact {
    margin-top: 90px;
  }
}

/* ===== footer ===== */
.footer-deco {
  position: relative;
  overflow: hidden;
  /* padding-top: 60px; */
}

.footer-deco::after {
  content: "";
  width: 800px;
  aspect-ratio: 1795/133;
  background: url("../img/deco-footer.png") no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.l-footer {
  background: var(--main-color);
  align-items: center;
  padding: 60px 5% 0.5px;
  border: none;
  position: relative;
}

.l-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  top: -1px;
  left: 0;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 250px;
}


.fnavi {
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  justify-content: center;
  column-gap: 3em;
  row-gap: .8em;
}

.fnavi a {
  color: #fff;
}

.fnavi a:hover {
  text-decoration: underline;
}

.footer-logo {
  text-align: left;
}

.footer-icon {
  display: inline-block;
  max-width: 35px;
}

.footer-icon:hover,
.footer-logo:hover {
  opacity: .85;
}

@media screen and (min-width:680px) {

  .footer-deco::after {
    width: 110%;
  }

  .l-footer {
    padding: 90px 5%;
  }

  .l-footer__inner {
    flex-direction: row;
    gap: 40px;
    justify-content: space-around;
    margin-bottom: 0;

  }

  .fnavi {
    justify-content: left;
    order: 3;
    column-gap: 1.5em;
  }
}