@charset "utf-8";
:root {
  --c-primary: #FFA02D; /*メインカラー*/
  --c-prim50: #FFD9A5;
  --c-2ndary: #FAF8E6; /*その次*/
  --c-txt: #160303; /*テキスト*/
  --c-white: #fff; /*白*/
  --c-note: #FFA02D; /*注意カラー*/
  --font-sanserif: "Noto Sans JP"; /*ゴシックの場合はこっち*/
}
/*基本設定なので触らないこと。触る＆追加は各々のcssにて*/
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100dvh;
  font-size: 62.5%;
  line-height: 1.5;
  scroll-behavior: smooth;
  font-family: var(--font-sanserif), serif;
  background-color: var(--c-2ndary);
}

body {
  position: relative;
  font-size: 1.6rem;
}

.inner {
  margin: 0 auto;
  padding: 0;
  width: min(1152px, 90%);
}

.txt {
  margin: 1em 0 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: var(--c-txt);
  font-weight: 400;
}

.txt.bold {
  font-weight: 600;
}

.txt_sub {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.75;
  font-weight: 400;
  color: var(--c-txt);
}

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

.ttl {
  font-size: min(3.2rem, 7vw);
  line-height: 1.5;
  letter-spacing: 0.119em;
  font-weight: 600;
  color: var(--c-txt);
}

.ttl_sub {
  font-size: min(2.4rem, 5vw);
  line-height: 1.5;
  letter-spacing: 0.09em;
  font-weight: 500;
}

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

.btn {
  margin-top: 1.5em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25em;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 1em 2.5em;
  border: 0;
  cursor: pointer;
  background: var(--c-primary);
  color: var(--c-txt);
  border: 1px solid var(--c-prim50);
  text-decoration: none;
  transition: .5s ease all;
  text-align: left;
  font-weight: 600;
}
.btn.over{
  background: var(--c-white);
}
@media (max-width: 896px) {
  .btn{
    padding: 1em 1.5em;
  }
}
.btn:hover{
  background-color: var(--c-prim50);
  color: var(--c-txt);
  border: 1px solid var(--c-primary);
}
.btn::after {
  content: "";
  display: inline-block;
  width: 5em;
  height: 1em;
  background: var(--c-prim50);
  mask-image: url("../img/ico-arrow.svg");
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
}
.btn.over::after {
  background: var(--c-primary);
}
.btn:hover::after {
  background: var(--c-primary);
}
.btn:hover.over::after {
  background: var(--c-primary);
}
.btn.chk::before {
  mask-image: url("../img/ico-check_circle.svg");
}
.btn.send::before {
  mask-image: url("../img/ico-send.svg");
}
.btn.reset {
  background: var(--c-2ndary);
}
.btn.reset:hover {
  background: var(--c-primary);
  color: var(--c-prim50);
}
.btn.reset::before {
  mask-image: url("../img/ico-close.svg");
}
.btn.line {
  border: 1px solid var(--c-primary);
  background: var(--c-white);
  color: var(--c-primary);
}
.btn.line:hover {
  border: 1px solid var(--c-prim50);
  background: var(--c-primary);
  color: var(--c-white);
}
.btn.line:hover::after {
  background: var(--c-prim50);
}
.btn.line::before {
  content: none;
}
.btn.line::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: var(--c-primary);
  mask-image: url("../img/ico-arrow_orange.svg");
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
}
.btn.line.blu {
  border: 1px solid var(--c-2ndary);
  color: var(--c-2ndary);
}
.btn.line.blu:hover {
  border: 1px solid var(--c-prim50);
  background-color: var(--c-2ndary);
  color: var(--c-white);
}
.btn.line.blu::after {
  background: var(--c-2ndary);
}
.btn.line.blu:hover::after {
  background: var(--c-prim50);
}

/*header-burger*/
.btn-burger {
  display: none;
}

header {
  background-color: var(--c-2ndary);
}

.box-header {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-header .header_logo {
  width: min(176px,40%);
}

.box-header .header_logo a{
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 2em 0.5em;
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
  border-top: 0;
  border-radius: 0 0 1em 1em;
  transition: .25s ease all;
}
.box-header .header_logo a:hover{
  background-color: var(--c-prim50);
}
.box-header .header_logo a:hover img{
  opacity: .7;
}

@media (max-width: 1200px) {
  .box-header{
    padding: 1em 0;
  }
  .box-header .header_logo {
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .box-header .header_logo a{
    padding: 1em .5em;
  }
  .box-header .header_logo .txt_sub {
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .box-header .btn-burger {
    position: absolute;
    right: 1.87em;
    top: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    right: 0;
    z-index: 1;
    width: 48px;
    height: 48px;
    padding: .25em;
    border: 2px solid var(--c-note);
    border-radius: .5em;
  }
  .box-header .btn-burger button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    transition: 0.5s ease-in all;
  }
  .box-header .btn-burger .burger_line {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 16px;
  }
  .box-header .btn-burger .burger_line:nth-child(2) {
    margin: 0.5em 0;
  }
  .box-header .btn-burger.on {
    position: fixed;
    z-index: 1001;
    right: 1.87em;
    top: 1em;
  }
  .box-header .btn-burger.on .burger_line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
  }
  .box-header .btn-burger button .burger_line {
    background: var(--c-primary);
  }
  .box-header .btn-burger.on .burger_line:nth-child(3) {
    transform: rotate(-45deg);
  }
  .box-header .btn-burger.on .burger_line:nth-child(2) {
    opacity: 0;
  }
}

/*menu*/
.box-menu {
  padding: 1em 0;
}
.box-menu .menu {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.box-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 1.5em;
  height: auto;
  border-left: 1px solid var(--c-txt);
}
.box-menu li .txt
.box-menu li:last-child{
  border-right: 1px solid var(--c-txt);
}
.box-menu .menu a {
  position: relative;
  color: var(--c-txt);
  text-decoration: none;
  transition: .25s ease all;
  font-weight: 600;
  line-height: 1.25;
}
.box-menu .menu a:hover {
  color: var(--c-primary);
}
.box-menu .menu .txt a::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 1.5em;
  height: 1.5em;
  background: url("../img/ico-menu01.svg") no-repeat 0 0/cover;
}
.box-menu .menu .m02.txt a::before {
  background: url("../img/ico-menu02.svg") no-repeat 0 0/cover;
}
.box-menu .menu .m03.txt a::before {
  background: url("../img/ico-menu03.svg") no-repeat 0 0/cover;
}
.box-menu .menu .m04.txt a::before {
  background: url("../img/ico-menu04.svg") no-repeat 0 0/cover;
}
.box-menu .menu .m05.txt a::before {
  background: url("../img/ico-menu05.svg") no-repeat 0 0/cover;
}


@media (max-width: 1200px) {
  .box-menu {
    z-index: 1000;
    right: 0;
    top: 0;
    margin: 0; 
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: 0.5s ease-in all;
  }

  .box-menu .menu {
    opacity: 0;
    height: 0;
  }

  .box-menu.on {
    position: fixed;
    height: 100%;
    background: var(--c-white);
  }

  .box-menu.on .menu {
    margin: 0 auto;
    padding: 3em 1.5em;
    height: 90%;
    opacity: 1;
  }
  .box-menu.on li {
    margin-top: .5em;
    font-size: 2.4rem;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .box-menu li {
    border: 0;
  }
  .box-menu li:last-child {
    border-right: 0;
  }
}

@media (max-width: 480px) {
  .box-menu.on li {
    font-size: 1.6rem;
  }
}

.nav_info {
  margin: 0;
  width: 20%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .5em;
}

.nav_info dt,dd {
  margin: 0;
}
.nav_info dt.otoiawase{
  padding: .5em;
  background: var(--c-primary);
  font-size: 1.2rem;
}

.nav_info dd.otoiawase {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  letter-spacing: 8%;
}
.nav_info dd.tel {
  font-size: 2.8rem;
  font-weight: 800;
}

@media (max-width: 1200px) {
  .nav_info{
    width: 100%;
    justify-content: center;
  }
  header .nav_info{
    width: 48px;
    margin-right: 3.5em;
    justify-content: flex-end;
  }
  header .nav_info dt,
  header .nav_info dd{
    display: none;
  }
  header .nav_info dt.lnk{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--c-primary);
    border-radius: .5em;
  }
}

/*コンテンツ共用*/
.box-contents {
  position: relative;
  margin: 0 auto;
  margin-top: min(112px, 14vw);
}
/*ttl*/
.ttl-section {
  width: 100%;
  text-align: center;
}
/*inner*/
.box-inner {
  position: relative;
  margin: auto;
  width: min(1186px, 95%);
}
.box-inner.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.box-inner.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1em;
}
@media (max-width: 896px) {
  .box-inner.grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
}

/*パンくず*/
.lnk-bread {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  margin: 1.5em auto 0;
  width: 100%;
}
.lnk-bread a {
  color: var(--c-primary);
}
.lnk-bread li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.lnk-bread li:first-child {
  background: url("../img/ico-home.svg") no-repeat left center/auto 100%;
  padding-left: 2.4rem;
}
.lnk-bread li:last-child::after {
  content: none;
}
.lnk-bread li::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0 0 0.25em;
  padding-left: 1em;
  background-color: var(--c-primary);
  mask-image: url("../img/ico-_circle_right.svg");
  mask-position: center;
  mask-size: cover;
}

/*footer*/
.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 5em auto 0;
  padding: 2vw 1.5em 5vw;
  background: url("../img/img-town.svg") repeat-x bottom /100% auto;
}
.footer a{
  text-decoration: none;
}
@media (max-width: 896px) {
  .footer{
    background-size: 200% auto;
  }
}
@media (max-width: 480px) {
  .footer{
    background-size: 300% auto;
    padding: 13vw 1.5em;
  }
  .footer .nav_info dd.tel{
    width: 65%;
  }
}
.footer .navi {
  width: 33%;
}
.footer .navi li a{
  position: relative;
  text-decoration: none;
  transition: .25s ease all;
  font-weight: 600;
}
.footer .navi li a:hover{
  color: var(--c-primary);
}
.footer .navi ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  width: 100%;
}
.footer .navi li {
  width: 100%;
}

.footer .navi li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin:0 .25em 0 0;
  width: 1.5em;
  height: 1.5em;
  background: url("../img/ico-menu01.svg") no-repeat 0 0/cover;
}
.footer .navi li.m02 a::before {
  background: url("../img/ico-menu02.svg") no-repeat 0 0/cover;
}
.footer .navi li.m03 a::before {
  background: url("../img/ico-menu03.svg") no-repeat 0 0/cover;
}
.footer .navi li.m04 a::before {
  background: url("../img/ico-menu04.svg") no-repeat 0 0/cover;
}
.footer .navi li.m05 a::before {
  background: url("../img/ico-menu05.svg") no-repeat 0 0/cover;
}

.footer .copy {
  margin: 2em auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.75;
}
@media (max-width: 896px) {
  .footer {
    justify-content: center;
  }
  .footer .navi {
    margin: 1em 0 0;
    width: 50%;
  }
  .footer .menu {
    display: block;
    opacity: 1;
    margin: auto;
    height: auto;
  }
  .footer .menu li {
    margin: 2vw auto 0;
    width: 100%;
  }
  .footer .copy {
    display: block;
    margin: 4vw auto 0;
  }
  .footer .copy img {
    margin: .5em auto 0;
  }
}
@media (max-width: 480px) {
  .footer .navi {
    width: 100%;
  }
}

/*メール確認*/
.box-confirm {
  width: 90%;
  margin: 0 auto;
}
.box-confirm .note {
  font-weight: 600;
}
.box-confirm table {
  text-align: left;
  width: 80%;
  padding: 0;
  margin: 1em auto 0;
  border-collapse:collapse;
  border: 1px solid var(--c-primary);
}
.box-confirm table tr {
  border-bottom: 1px solid var(--c-primary);
}
.box-confirm table th{
  display: flex;
  align-items: center;
  padding: 2em;
  background-color: var(--c-prim50);
  border-right: 1px solid var(--c-primary);
  font-weight: 500;
}
.box-confirm table td{
  margin: 0;
  padding: 2em;
  width: 75%;
  border-bottom: 1px solid var(--c-primary);
  background-color: var(--c-white);
}
.box-confirm .box-send {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  text-align: center;
  width: min(500px, 100%);
}
.box-confirm .box-send .btn{
  display: inline-block;
  margin: 1em auto 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 896px) {
  .box-confirm {
    margin: 0;
    width: 100%;
  }
  .box-confirm table {
    text-align: left;
    width: 100%;
    margin: 1em auto 0;
  }
  .box-confirm tr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .box-confirm tr th {
    padding: 2em .5em;
    width: 100%;
  }
  .box-confirm tr td {
    padding: 2em .5em;
    width: 100%;
  }
}
/*topへ*/
.pagetop {
  position: fixed;
  right: 1vw;
  bottom: 1vw;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: .3s ease all;
  background-color: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.pagetop:hover{
  background-color: var(--c-prim50);
}
.pagetop.on{
  position: absolute;
  bottom: 11vw;
}
.pagetop.visible{
  opacity: 1;
}
.pagetop a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--c-txt);
}
@media (max-width: 896px) {
  .pagetop.on{
    position: absolute;
    bottom: 27em;
  }
}
