@charset "UTF-8";

/*---------------------------

reset

---------------------------*/
sup,
sub{
  display: inline-block;
}
sup{
  transform: translateY(.15em);
}
sub{
  transform: translateY(-.3em);
}
address{ font-style: normal;}
figure{ margin:0; }
img{ width: 100%; }

a{
  color: inherit;
  text-decoration: none;
  transition: .3s all;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
em{
  font-style: normal;
  font-weight: 500;
}

table{
  width: 100%;
  text-align: left;
  line-height: 1.5;
}
table th,
table td{
  padding: 1.5em .5em;
}
table th{
  font-weight: 500;
}
table th span{
  display: inline-block;
}
/* PC tel */
@media screen and (min-width: 768px){
  a[href^="tel"] {
    pointer-events: none;
    cursor: default;
  }
}

/*---------------------------

common

---------------------------*/

:root {
  --bg: #F8F8EC;
  --basicColor: #18211D;
  --green: #379B70;
  --green2: #99CAB5;
  --yellow: #FFF03B;
  --gray: #C5C7C6;
  --jp: "Sawarabi Gothic", sans-serif;
  --en: "Roboto", sans-serif;
  --shadow: drop-shadow( 0 3px 4px rgba(0,0,0,.3));
  --line: 1px solid #C5C7C6;
}
*{
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: min(4.5vw , 15px);
  letter-spacing: .05em;
}

body{
  background: var(--bg);
  color: var(--basicColor);
  line-height: 1.73;
}
#wrap{
  overflow-x: hidden;
}
.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

p+p{
  margin-top: 1.5em;
}

/*---------------------------

parts

---------------------------*/
.-en{
  font-family: var(--en);
}
.m-l{
  font-size: 1.2em;
}
/* lead */
.b-lead{
  color: var(--green);
  line-height: 1.66;
}
@media screen and (max-width: 600px){
  .b-lead{
    margin-bottom: 40px;
  }
  .b-lead span{
    display: inline-block;
  }
}
@media screen and (min-width: 601px){
  .b-lead{
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
  }
  .b-lead span{
    display: inline-block;
  }
}
@media screen and (max-width: 650px){
  .b-lead{
    font-size: min(6.3vw,24px);
  }
}
@media screen and (min-width: 651px){
  .b-lead{
    font-size: 30px;
  }
}

/* mds */
.e-mds{
  line-height: 1.75;
  margin-bottom: 1em;
}
.e-mds .-en{
  display: block;
  font-size: inherit;
  color: var(--green);
  font-size: min(4.5vw , 15px);
}
@media screen and (max-width: 650px){
  .e-mds{
    font-size: min(6.0vw,22px);
  }
}
@media screen and (min-width: 651px){
  .e-mds{
    font-size: 30px;
  }
}

.e-mds.m-yellow{
  display: inline-block;
  background: url(../images/ptn.png);
  background-color: var(--yellow);
  color: var(--green);
  padding: .4em .7em;
}
/* btn */
.b-btns .b-btn{
  display: block;
  position: relative;
  height: 40px;
}
.b-btns .b-btn span{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: var(--green);
  line-height: 1;
  border: 1px solid #fff;
  padding: .65em 1em;
  position: relative;
  z-index: 1;
  font-size: 18px;
}
.b-btns .b-btn::after{
  content: "";
  display: block;
  width: 100%;
  height: calc( 100% + 2px);
  background: var(--yellow);
  position: absolute;
  z-index: 0;
  top: 4px;
  left: 4px;
}
.b-btns .b-btn span,
.b-btns .b-btn::after{
  border-radius: 5px;
}

@media screen and (min-width: 651px){
  .b-btns{
    margin-left: 25px;
  }
}

/* e-btn */
.e-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green);
  aspect-ratio: 1;
  border-radius: 5px;
  filter: var(--shadow);
  transition: .3s all;
}
@media screen and (max-width: 650px){
  .e-btn{
    width: 45px;
    min-width: 45px;
  }
  .e-btn.e-arw img{
    width: 14px;
  }
}
@media screen and (min-width: 651px){
  .e-btn{
    width: 55px;
    min-width: 55px;
  }
  .e-btn.e-arw img{
    width: 18px;
  }
  a:hover .e-btn{
    background: var(--green2);
  }
}
/* pc sp ------------*/
@media screen and (max-width: 600px){
  .pc{
    display: none;
  }
}
@media screen and (min-width: 601px){
  .sp{
    display: none;
  }
}
/*---------------------------

header

---------------------------*/
.b-header{
  background: var(--green);
  border-bottom: 8px solid var(--yellow);
  padding-bottom: min( 7vw,30px);
  
}
.b-header .container.m-1st{
  width: 100%;
  max-width: 100%;
}
.b-header .b-1st{
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px){
  .b-header{
    border-width: 5px;
    margin-bottom: 35px;
  }
  .b-header .container.m-1st{
    padding-right: 70px;
    padding-left: 10px;
  }
  .b-header .b-1st{
    padding-top: 10px;
  }
  .b-header .e-siteName{
    display: none;
  }
  .e-logo{
    width: 120px;
  }
}
@media screen and (min-width: 601px){
  .b-header{
    margin-bottom: 80px;
  }
  .b-header .container.m-1st{
    padding-right: 110px;
    padding-left: 30px;
  }
  .b-header .b-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
  }
  .b-header .b-1st{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
  }
  .b-header .e-siteName{
    width: 237px;
    margin-left: 25px;
    transform: translateY(5px);
  }
  .e-logo{
    width: 145px;
  }
}
@media screen and (max-width: 900px){
  .b-header .e-siteName{
    display: none;
  }
}

/* b-sns ----------*/
.b-header .b-sns{
  display: flex;
  align-items: center;
  margin-left: auto;
}

@media screen and (max-width: 650px){
  .b-header .b-sns dt{
    width: 100px;
  }
  .b-header .b-sns dd{
    width: 30px;
    margin-left: 10px;
  }
}
@media screen and (min-width: 601px){
  .b-header .b-sns dt{
    width: 110px;
  }
  .b-header .b-sns dd{
    width: 38px;
    margin-left: 15px;
  }
  .b-header .b-sns dd+dd{
    margin-left: 10px;
  }
}
@media screen and (min-width: 651px) and (max-width: 1060px){
  .b-header .b-sns dt{
    display: none;
  }
}
@media screen and (max-width: 400px){
  .b-header .b-sns dt{
    display: none;
  }
}

/* b-pgTtl ----------*/
.b-pgTtl .e-jp,
.b-pgTtl .e-en{
  line-height: 1;
}
.b-pgTtl .e-jp{
  text-align: center;
  color: var(--yellow);
  letter-spacing: .2em
}
.b-pgTtl .e-en{
  margin-top: 1.5em;
  font-family: var(--en);
  text-align: center;
  color: #fff;
}
.b-pgTtl .e-jp::before,
.b-pgTtl .e-jp::after{
  display: inline-block;
  transform: translateY(-.16em)
}
.b-pgTtl .e-jp::before{
  content: "[";
}
.b-pgTtl .e-jp::after{
  content: "]";
}
@media screen and (max-width: 600px){
  .b-pgTtl{
    padding-top: 25px;
  }
  .b-pgTtl .e-jp{
    font-size: min( 7vw,25px);
  }
  .b-pgTtl .e-en{
    margin-top: min( 2vw,1.5em);
    font-size: min( 3.5vw , 14px);
  }
}
@media screen and (min-width: 601px){
  .b-pgTtl{
    padding-top: 70px;
  }
  .b-pgTtl .e-jp{
    font-size: 40px;
  }
}
/* b-entry ----------*/
@media screen and (max-width: 650px){
  .b-header .b-entry{
    width: 100%;
    padding: 10px 10px 20px;
    position: fixed;
    z-index: 600;
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 650px){
  .b-header .b-entry{
    margin-top: 4px;
  }
}


/*---------------------------

MENU

---------------------------*/
.b-menu,
.b-header .b-nav{
  position: fixed;
  right: 0;
  top: 0;
}

.b-menu{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--bg);
  color: var(--green);
  cursor: pointer;
  z-index: 10000;
}
.b-menu .e-txt{
  display: block;
  font-size: 10px;
  text-align: center;
  line-height: 1;
  font-family: var(--en);
  font-weight: bold;
  margin-top: 5px;
}
.b-menu .b-lines{
  position: relative;
}
.b-menu .b-lines span{
  display: block;
  width: 100%;
  height: 3px;
  background: var(--green);
  position: absolute;
  transform-origin: center center;
  transition: .3s all;
}
.b-menu .b-lines span:nth-child(2){
  top: 50%;
  margin-top: -1px;
}
.b-menu .b-lines span:nth-child(3){
  bottom: 0;
}

@media screen and (max-width: 600px){
  .b-menu{
    width: 55px;
    height: 55px;
    border-radius: 0 0 0 15px;
  }
  .b-menu .b-lines{
    width: 45%;
    height:18px;
  }
}
@media screen and (min-width: 601px){
  .b-menu{
    width: 80px;
    height: 80px;
    border-radius: 0 0 0 30px;
  }
  .b-menu .b-lines{
    width: 30%;
    height: 20px;
  }
}
/* open */
.b-header.open .b-menu .b-lines span:nth-child(1){
  top: 50%;
  transform:  translateY(-2px) rotate(45deg);
}
.b-header.open .b-menu .b-lines span:nth-child(3){
  bottom: 50%;
  transform: rotate(-45deg);
}
.b-header.open .b-menu .b-lines span:nth-child(2){
  transform: scale(0,1);
}

/* nav */
.b-header .b-nav{
  background: var(--bg);
  
  transition: .3s all;
  transform: translateY(-30px);
  pointer-events: none;
  z-index: 500;
  opacity: 0;
}
.b-header .b-nav li{
  display: block;
  padding-left: 1.5em;
  position: relative;
}
.b-header .b-nav li::before{
  content: "";
  display: block;
  background: url(../images/arw-gr.svg) center center / contain no-repeat;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: .6em;
}
.b-header .b-nav li+li{
  margin-top: .8em;
}
.b-header.open .b-nav{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (max-width: 600px){
  .b-header .b-nav{
    width: 100dvw;
    height: 100dvh;
    padding: 70px 30px 30px;
  }
  .b-header .b-nav a{
    font-size: 16px;
  }
}
@media screen and (min-width: 601px){
  .b-header .b-nav{
    padding: 50px 30px 30px;
    border-radius: 0 0 0 30px;
    filter: var(--shadow);
  }
  .b-header .b-nav a{
    font-size: 18px;
  }
  .b-header .b-nav a:hover{
    color: var(--green);
  }
}

/*---------------------------

footer

---------------------------*/
.b-footer{
  background: var(--green);
  color: #fff;
  margin-top: 100px;
}
.b-footer *{
  font-size: 13px;
}
.b-footer .container{
  display: flex;
  flex-wrap: wrap;
}
.b-footer .e-logo{
  margin-bottom: 30px;
}
.b-footer address{
  line-height: 1.7;
}
.b-footer address+address{
  margin-top: .5em;
}
.b-footer .e-company{
  font-size: 16px;
  margin-bottom: .8em;
}
.b-footer .b-nav li{
  display: flex;
  align-items: center;
  margin-bottom: .8em;
}
.b-footer .b-nav li::before{
  content: "";
  display: block;
  width: .4em;
  height: .4em;
  margin-right: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform-origin: center center;
  transform: rotate(45deg);
}
.b-footer .e-copy{
  display: block;
  width: 100%;
  margin-top: 30px;
  font-size: 10px;
}
@media screen and (max-width: 650px){
  .b-footer{
    margin-top: 50px;
    padding-bottom: 90px;
  }
  .b-footer .container{
    padding-top: 40px;
  }
  .b-footer .e-logo{
    margin: 0 auto 15px;
  }
  .b-footer .b-address{
    width: 100%;
    text-align: center;
  }
  .b-footer .e-company{
    text-align: center;
  }
  .b-footer address span{
    display: inline-block;
  }
  .b-footer .b-nav{
    justify-content: space-around;
  }
  .b-footer .b-nav li{
    width: 40%;
    min-width: 13em;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .b-footer .e-copy{
    text-align: center;
  }
}
@media screen and (min-width: 651px){
  .b-footer{
    margin-top: 100px;
  }
  .b-footer .container{
    width: 100%;
    min-width: 100%;
    padding: 60px 30px 30px;
  }
  .b-footer .e-logo{
    margin-right: 50px;
  }
  .b-footer .b-address{
    margin-right: 80px;
  }
  .b-footer .e-copy{
    text-align: right;
  }
}
@media screen and (max-width: 940px){
  .b-footer .b-nav .inner{
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
  }
  .b-footer .b-nav li{
    margin-right: 2em;
  }
}


/*---------------------------

form

---------------------------*/

/* parts */
label{
  cursor: pointer;
}
::placeholder{
  color: #AFAFAF;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select{
  background: #fff;
  border: 1px solid var(--green);
  appearance: none;
}
input[type="text"],
input[type="tel"],
input[type="email"],
textarea{
  width: 100%;
  padding: .4em .8em;
}
input[type="text"],
input[type="tel"],
input[type="email"]{
}

/* textarea */
textarea{
  min-height: calc(8em * 1.55);
}

/* radio checkbox */
input[type="checkbox"],
input[type="radio"]{
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-right:2px;
  vertical-align: -3px;
  position: relative;
  background: #fff;
  border: var(--formLine);
  cursor: pointer;
  border: 1px solid #000;
}
input[type="checkbox"]:checked::before,
input[type="radio"]:checked::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}
/* checkbox*/
input[type="checkbox"]{
  border-radius: 3px;
  margin-right: 15px;
}
input[type="checkbox"]:checked::before {
  width: 14px;
  height: 5px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: translate(-50% , -65%) rotate(-45deg) 
}
.b-contents.m-companis input[type="checkbox"]:checked::before {
  border-left: 3px solid var(--BLUE);
  border-bottom: 3px solid var(--BLUE);
}
/* radio */
input[type="radio"]{
  border-radius: 50%;
}
input[type="radio"]:checked::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50% , -50%)
}

/* select */
select{
  padding: .8em 4em .8em 1.3em;
  appearance: none;
}
@media screen and (max-width: 767px) {
  select{
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  select{
    min-width: 400px;
  }
}
.m-ymd select{
  width: auto;
  min-width: auto;
}
@media screen and (max-width: 767px) {
  .m-ymd select{
    width: 8em;
  }
}
.item-select{
  position: relative;
  margin-right: .4em;
}
.item-select::after{
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 3px solid #A3A3A3;
  border-bottom: 3px solid #A3A3A3;
  position: absolute;
  top: 50%;
  right: 20px;
  transform-origin: center center;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* btn */
button.b-btn,
button.b-btn.-next{
  width: 100%;
  width: 215px;
  height: 40px;
  border-radius: 5px;
}
button.b-btn span{
  font-size: 18px;
}
button.b-btn{
  background: var(--green);
}
button.b-btn span{
  color: #fff;
}

.b-formWrapper .b-btnWrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.b-formWrapper.m-comfirm .b-btnWrap form{
  margin-top: 55px;
}
.b-formWrapper .b-btnWrap form+form{
  margin: 5px;
}
button.b-btn.-prev{
  border: 0 none;
  background: #ccc;
}
button.b-btn.-prev::after{
  display: none;
}

button.b-btn[disabled="disabled"]{
  background: #ccc;
}
button.b-btn[disabled="disabled"]::after{
  display: none;
}
button.b-btn[disabled="disabled"] span{
  color: #eee;
}