@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
/* flex */
.flex, .flexA, .flexB, .flexC {
    display: flex;
    flex-wrap: wrap;
}
.flexA {
    justify-content: space-around;
}
.flexB {
    justify-content: space-between;
}
.flexC {
    justify-content: center;
}
/*------------------------------------------------------------
	.content
------------------------------------------------------------*/
.content {
    margin: 0 auto;
    width: 1198px;
}
@media all and (max-width: 896px) {
    .content {
        padding: 0 20px;
        width: auto;
    }
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 34px;
    color: #ADCEB5;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}
.headLine01 span {
    margin-bottom: 19px;
    padding: 0 6px 12px;
    position: relative;
    display: inline-block;
    color: #4DBA80;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 0;
}
.headLine01 span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    bottom: 0;
    border-radius: 3px;
    background-color: #4DBA80;
}
.headLine01 span::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -11px;
    width: 20px;
    height: 17px;
    transform: translateX(-50%);
    z-index: 1;
    background: url(../../img/common/icon01.jpg) no-repeat center center;
}
@media all and (max-width: 896px) {
    .headLine01 {
        font-size: 1.5rem;
    }
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
    margin-bottom: 10px;
    color: #4DBA80;
    font-size: 2rem;
    letter-spacing: 0.12em;
    font-family: 'Quicksand', sans-serif;
}
@media all and (max-width: 896px) {
    .headLine02 {
        font-size: 1.6rem;
    }
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
    margin-bottom: 36px;
    font-size: 3.2rem;
    letter-spacing: 0.12em;
    text-align: center;
}
.headLine03 sup {
    margin-top: -8px;
    display: inline-block;
    vertical-align: baseline;
}
.headLine03 small {
    font-size: 2.4rem;
}
@media all and (max-width: 896px) {
    .headLine03 {
        font-size: 2.5rem;
    }
    .headLine03 small {
        font-size: 1.8rem;
    }
}
/*------------------------------------------------------------
	comBtn
------------------------------------------------------------*/
.comBtn {
    margin: 0 auto;
    width: 310px;
}
.comBtn a {
    padding: 8px;
    display: block;
    font-size: 1.8rem;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.06em;
    border-radius: 5px;
    background-color: #4DBA80;
}
.comBtn a:hover {
    opacity: 0.7;
}
@media all and (max-width: 896px) {
    .comBtn {
        width: 244px;
    }
}
/*------------------------------------------------------------
	page-top 
------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #72C7CA;
  text-decoration: none;
  color: #fff;
  width: 70px;
  padding: 32px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
/*------------------------------------------------------------
	humberger-menu 
------------------------------------------------------------*/
.drawer_hidden {
    display: none;
}
.drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
}
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #333;
    transition: 0.5s;
    position: absolute;
}
.drawer_open span:before {
    bottom: 8px;
}
.drawer_open span:after {
    top: 8px;
}
#drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
}
.nav_content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    right: 100%;
    z-index: 99;
    background: rgb(110, 110, 110);
    transition: .5s;
    text-align: center;
    padding-top: 20px;
}
.nav_list {
    list-style: none;
}
#drawer_input:checked ~ .nav_content {
    right: 50%;
    width: 50%;
}
.nav_list .nav_item{
    text-align: center;
    padding: 20px !important;
    border-bottom: 1px solid #a2a2a2;
}
.nav_list .nav_item a{
    color: #fff;
}
.displaySp{
    display: none;
}
.displayPc{
    display: block;
}
@media all and (max-width: 896px) {
    .displaySp{
        display: block;
    }
    .displayPc{
        display: none;
    }
    .nav_list{
        display: block !important;
    }
}