@charset "utf-8";

/*------------------------------------------------------------
  webフォント
------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@400;500&display=swap');
/***
font-family: "Montserrat", sans-serif;
***/



.pc{display:block;}
.sp{display:none;}
@media only screen and (max-width: 798px) {
.pc{display:none;}
.sp{display:block;}
}

:root {
  --color-main: #2a977d;
  --color-y: #ffde00;
  --color-r: #ff0000;
  --color-bg01: #c5e2df;
  --color-bg02: #eaf5f2;
}

html, body{
  font-size: 62.5%;
  line-height:1.2;
  font-weight: 400;
  font-family:"Noto Sans JP", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
  background-color: #fff;
}
body{
  position: relative;
  overflow-y: scroll;
}
/*body main{
  overflow-x: hidden;
}*/
a{
  text-decoration:none;
  color: #333;
  transition: .3s;
}
img{
  width: 100%;
}

*{
  box-sizing: border-box;
}

.en{
  font-family: "Montserrat", sans-serif;
}

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

フェードイン

-----------------------------------------------------------------------------  ***/
.show-cnt{
  transform: translateY(10px);
  transition: 0.5s ease-out;
  opacity: 0;
}
.show-cnt.run{
  transform:translateY(0);
  opacity: 1;
}


/*------------------------------------------------------------
  header
------------------------------------------------------------*/
header {
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 2000;
}
header .logo{
  max-width: 350px;
  margin: 27px auto 27px 50px;
}
header .logo a{
  transition: .3s;
}
header .logo a:hover{
  opacity: .7;
}
header nav ul{
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
}
header nav ul li a{
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-left: 40px;
  font-weight: 500;
  transition: .3s;
}
header nav ul li a:hover{
  color: var(--color-main);
}
header .sp-btn,
header nav .telbox,
header nav .close{
  display: none;
}
header .fix-assessment{
  max-width: 230px;
}
header .fix-assessment a{
  transition: .3s;
}
header .fix-assessment a:hover{
  opacity: .7;
}
header .fix-assessment a > span{
  display: block;
  background-color: #fff;
  border-radius: 100px;
  padding: 20px 5px;
  color: var(--color-r);
  font-size: clamp(1.1rem, 1.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1;
}
header .fix-assessment a > span > strong{
  font-size: clamp(1.6rem, 1.8vw, 2rem);
}
header .fix-assessment a > strong{
  font-size: clamp(2.4rem, 2.6vw, 3rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-left: 10px;
  text-shadow: 0 0 10px rgba(0,0,0,.6);
}
@media only screen and (max-width: 1200px) {
  header .logo{
    max-width: 280px;
    margin: 19px auto 19px 20px;
  }
  header nav ul{
    margin-right: 30px;
  }
  header nav ul li a{
    font-size: 1.3rem;
    margin-left: 25px;
  }
  header .fix-assessment{
    width: 19%;
  }
  header .fix-assessment a{
    padding: 15px 10px;
  }
  header .fix-assessment a > span{
    padding: 8% .5%;
  }
}
@media only screen and (max-width: 940px) {
  header .logo{
    max-width: 220px;
    margin: 19px auto 19px 10px;
  }
  header nav ul{
    margin-right: 20px;
  }
  header nav ul li a{
    font-size: 1.2rem;
    margin-left: 15px;
  }
  header .fix-assessment{
    width: 167px;
  }
  header .fix-assessment a{
    padding: 15px 7px;
  }
  header .fix-assessment a > span{
    padding: 8% .5%;
  }
}
@media only screen and (max-width: 798px) {
  header:before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.2);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: .3s;
    opacity: 0;
    z-index: 1000;
  }
  header.fixed:before{
    opacity: 1;
    pointer-events: inherit;
  }
  header .logo{
    max-width: 175px;
    margin: 10px auto 10px 10px;
  }
  header .sp-btn{
    width: 85px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-main);
    background-color: var(--color-y);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
  }
  header .sp-btn span{
    position: relative;
    display: block;
    margin-left: 5px;
    width: 24px;
    height: 2px;
    background-color: var(--color-main);
  }
  header .sp-btn span:before,
  header .sp-btn span:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-main);
  }
  header .sp-btn span:before{
    top: -6px;
  }
  header .sp-btn span:after{
    bottom: -6px;
  }
  header nav{
    position: fixed;
    left: -100%;
    top: 0;
    width: 75%;
    background-color: #fff;
    padding: 30px 0;
    transition: .6s;
    z-index: 2000;
    height: 100%;
  }
  header nav ul{
    display: block;: flex-end;
    margin-right: 0;
  }
  header nav ul li a{
    display: block;
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0;
    padding: 15px;
    border-bottom: solid 1px #f0f0f0;
    color: var(--color-main);
  }
  header nav .telbox{
    display: block;
    padding: 50px 15px;
    color: var(--color-main);
    font-size: 1.4rem;
    line-height: 1.8;
  }
  header nav .telbox .num{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  header nav .telbox .num a{
    color: var(--color-main);
  }
  header nav.open {
    left: 0;
  }
  header nav .close{
    position: absolute;
    top: 20px;
    left: calc(100% + 20px);
    background-color: #fff;
    padding: 10px;
    display: block;
    width: 40px;
    padding: 15px;
    border-radius: 50px;
  }
  header .fix-assessment{
    max-width: none;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color:  #fff;
    padding: 10px;
    box-shadow: 0 -1px 2px rgba(0,0,0,.15);
  }
  header .fix-assessment a{
    max-width: 220px;
    padding: 0;
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

/*------------------------------------------------------------
  フッター
------------------------------------------------------------*/
footer{
  background-color: var(--color-main);
  color: #fff;
  padding-top: 75px;
  position: relative;
}
footer .inner{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto 75px;
  font-size: 1.4rem;
  line-height: 1.4;
  position: relative;
}
footer .menu{
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .menu li a{
  display: block;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;
  margin-left: 40px;
  font-weight: 500;
  transition: .3s;
}
footer .menu li a:hover{
  text-decoration: underline;
}
footer .telbox{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6;
}
footer .telbox .num{
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
footer .telbox .num a{
  color: #fff;
}
footer .telbox .time span{
  display: block;
  border: solid 1px #fff;
  padding: 5px 30px;
  margin: 10px auto 0;
  width: fit-content;
}
footer .info{
  margin-top: 75px;
}
footer .info .logo{
  width: 390px;
  margin: 0 0 10px;
}
footer .info .logo a{
  transition: .3s;
}
footer .info .logo a:hover{
  opacity: .7;
}
footer address{
  background-color: #f2f2f2;
  color: var(--color-main);
  font-size: clamp(1rem,1.1vw,1.2rem);
  line-height: 1;
  padding: 15px 5px;
  text-align: center;
}
@media only screen and (max-width: 940px) {
  footer .info .logo{
    width: 270px;
  }
  footer .menu li a{
    font-size: 1.2rem;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 798px) {
  footer{
    padding-top: 50px;
  }
  footer .inner{
    margin: 0 auto 30px;
  }
  footer .menu{
    display: block;
    position: relative;
    bottom: inherit;
    right: inherit;
    padding-bottom: 30px;
  }
  footer .menu li a{
    display: block;
    margin: 0 0 20px;
    text-align: center;
    font-size: 1.4rem;
  }
  footer .telbox{
    font-size: 1.4rem;
  }
  footer .telbox .num{
    margin-bottom: 15px;
  }
  footer .telbox .time span{
    margin: 15px auto 0;
    padding: 5px 10px;
  }
  footer .info{
    margin-top: 50px;
    text-align: center;
  }
  footer .info .logo{
    width: 275px;
    margin: 0 auto 10px;
  }
  footer address{
    padding: 15px 5px 120px;
  }
}

/*------------------------------------------------------------
  共通
------------------------------------------------------------*/
main{
  padding-top: 82px;
}
.anker{
  display: block;
  padding-top: 82px;
  margin-top: -82px;
}
@media only screen and (max-width: 1200px) {
  main{
    padding-top: 6.4%;
  }
  .anker{
    padding-top: 6.4%;
    margin-top: -6.4%;
  }
}
@media only screen and (max-width: 940px) {
  main{
    padding-top: 59px;
  }
  .anker{
    padding-top: 59px;
    margin-top: -59px;
  }
}
@media only screen and (max-width: 798px) {
  main{
    padding-top: 50px;
  }
  .anker{
    padding-top: 50px;
    margin-top: -50px;
  }
}

.select {
  display: block;
  position: relative;
  vertical-align: middle;
  width: 100%;
}
select {
  -webkit-appearance: none;
  appearance: none;
  padding: 11px 15px;
  padding-right: 1em;
  border: none;
  outline: 0;
  background: #f2f2f2;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
  width: 100%;
}
.select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 8px 5px 0 5px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  content: "";
  pointer-events: none;
}
select::-ms-expand {
  display: none;
}

.btn-s {
  box-shadow: 0 4px 0 #3f855a;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  border-radius: 50px;
  background-color: var(--color-main);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  display: block;
  width: 190px;
  padding: 15px 20px;
  position: relative;
  transition: .3s;
}
.btn-s:after{
  content: '\02192';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.btn-s:hover {
  transform: translateY(4px);
  box-shadow: none;
}
.btn-l_g,
.btn-l_w {
  box-shadow: 0 4px 0 var(--color-main);
  border: solid 2px var(--color-main);
  font-size: clamp(1.6rem, 1.9vw, 2rem);
  line-height: 1.6;
  border-radius: 20px;
  background-color: #fff;
  color: var(--color-main);
  font-weight: 700;
  display: block;
  width: 390px;
  padding: 20px 50px 20px 35px;
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.btn-l_w {
  color: var(--color-main);
  background-color: #fff;
}
.btn-l_g span,
.btn-l_w span{
  position: relative;
  z-index: 1;
}
.btn-l_g span strong{
  color: var(--color-y);
}
.btn-l_g:after ,
.btn-l_w:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: no-repeat center center / contain;
}
.btn-l_g:after{
  background-image: url(../img/common/arw01-g.svg);
}
.btn-l_w:after{
  background-image: url(../img/common/arw01-b.svg);
}
.btn-l_g:hover ,
.btn-l_w:hover {
  transform: translateY(4px);
  box-shadow: none;
}
@media only screen and (max-width: 798px) {
  .btn-l_g,
  .btn-l_w {
    line-height: 1.6;
    width: 290px;
    padding: 12px 40px 12px 20px;
  }
  .btn-l_g:after ,
  .btn-l_w:after {
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

#summary{
  padding: 80px 0;
  border-top: dotted 3px var(--color-main);
}
#summary .txt1{
  text-decoration: underline;
  text-decoration-color: var(--color-main);
  text-decoration-thickness: 4px;
  text-underline-offset: 12px;
  font-size: clamp(1.8rem, 2.6vw, 3.5rem);
  font-weight: 700;
  line-height: 2.4;
  color: var(--color-main);
  text-align: center;
  margin: 0 0 10px;
}
#summary .txt2{
  font-size:2.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-main);
  text-align: center;
}
#summary .btn{
  box-shadow: 0 4px 0 #2b2b2b;
  font-size: 3rem;
  border-radius: 50px;
  text-shadow: 1px 1px 3px rgba(0,0,0,.25);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  display: block;
  width: 400px;
  padding: 25px 20px 24px;
  display: block;
  position: relative;
  margin: 50px auto 0;
  text-align: center;
  overflow: hidden;
}
#summary img{
  position: absolute;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: 1;
}
#summary .btn > strong{
  position: relative;
  z-index: 2;
}
#summary .btn span{
  display: block;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  margin: 0 0 5px;
  position: relative;
  z-index: 10;
}
#summary .btn > strong strong{
}
#summary .btn:hover {
  transform: translateY(4px);
  box-shadow: none;
}
@media only screen and (max-width: 798px) {
  #summary{
    padding: 40px 0;
  }
  #summary .txt1{
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    line-height: 2;
    margin: 0 0 20px;
  }
  #summary .btn{
    width: 280px;
    margin: 30px auto 0;
    font-size: 2rem;
    padding: 17px 10px 16px;
  }
  #summary .btn span{
    font-size: 1.5rem;
  }
}

.under #mv{
  background-color: var(--color-main);
  color: #fff;
  padding: 40px 10px;
}
.under #mv .tit{
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 4rem);
  line-height: 1.4;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  .under #mv{
    padding: 20px 5px;
  }
}
.under #pankuzu{
  border-bottom: solid 2px var(--color-main);
  padding: 10px 0;
}
.under #pankuzu ul{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-flow: wrap;
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  line-height: 1.4;
}
.under #pankuzu ul li{
  padding-right: 20px;
  position: relative;
}
.under #pankuzu ul li:after{
  content: '\03e';
  position: absolute;
  top: 0;
  right: 5px;
}
.under #pankuzu ul li:last-child{
  padding: 0;
}
.under #pankuzu ul li:last-child:after{
  display: none;
}
.under #pankuzu ul li a{
  display: inline-block;
}
.under #pankuzu ul li a:hover{
  color: var(--color-main);
}
@media only screen and (max-width: 798px) {
  .under #pankuzu ul li{
    padding-right: 10px;
  }
  .under #pankuzu ul li:after{
    right: 1px;
  }
}

.under .conts .inner{
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}