@charset "utf-8";
/*
Theme Name: MensBio
Theme URI: 
Description: original wordpress theme
Version: 1.0
*/


/*********************************
	セッティング
*********************************/

@media screen and (min-width: 768px) {
    body {
        max-width: 428px;
        margin: 0 auto;
    }
}
/*********************************
	共通
*********************************/
.container {
    width: 86%;
    margin: 0 auto;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-around;
    -ms-flex-pack: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ttl_ver {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.sec_ttl {
    font-weight: normal
}
.txt_r {
    text-align: right;
}
a.btn,
input.btn {
    width: 100%;
    background-color: #3A3B55;
    color: #fff;
    text-align: center;
    font-size: 17px;
    letter-spacing: 0.2em;
    outline: 1px solid rgb(255, 255, 255);
    outline-offset: -7px;
    display: block;
    padding: 30px 0;
    border-radius: 10px;
    font-weight: normal;
    transition: all 0.40s;
    -webkit-transition: all 0.40s;
    -moz-transition: all 0.40s;
    -ms-transition: all 0.40s;
    -o-transition: all 0.40s;
    position: relative;
    overflow: hidden;
}
a.btn::before,
input.btn::before {
    width: 148px;
    content: "";
    height: 5px;
    background-color: #000;
    position: absolute;
    bottom: 7px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    border-radius: 5px;
    transform: translateY(50px);
    transition: all 0.40s;
    -webkit-transition: all 0.40s;
    -moz-transition: all 0.40s;
    -ms-transition: all 0.40s;
    -o-transition: all 0.40s;
}
a.btn:hover,
input.btn:hover {
    color: #fff;
    background-color: #333333;
    outline: 1px solid rgb(51, 51, 51);
}
a.btn:hover::before,
input.btn:hover::before {
    transform: translateY(0px);
}
.fadeUp {
    transition: ease-out;
    opacity: 0;
}
.fadeUp.run {
    animation-name:fadeUp;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}
.fadeUp_later{
    transition: ease-out;
    opacity: 0;
}
.fadeUp_later.run {
    animation-name:fadeUp;
    animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUp {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}
.solo_anim {
    animation-delay: 0.6s;
}
.duration1 {
    animation-delay: 0.3s;
}
.duration2 {
    animation-delay: 0.5s;
}
.duration3 {
    animation-delay: 0.7s;
}
.duration4 {
    animation-delay: 0.9s;
}
.duration5 {
    animation-delay: 1.1s;
}
.duration6 {
    animation-delay: 1.3s;
}
.duration7 {
    animation-delay: 1.5s;
}
.duration8 {
    animation-delay: 1.7s;
}
.duration9 {
    animation-delay: 1.9s;
}
span.bg_blue {
    background: linear-gradient(transparent 70%, #BCC5E2 0%);
}
h2.sec_ttl p {
    font-size: 20px;
    line-height: 38px;
    text-align: left;
    font-weight: bold;
}
h2.sec_ttl > span {
    color: #8590B4;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.03em;
}
/*********************************
	header
*********************************/
#header {
    width: 428px;
    z-index: 5000;
    background-color: rgba(36,38,108,0.7);
    position: fixed;
    padding: 13px 0 13px 0;
    top: 0;
}
#header .container {
    justify-content: flex-start;
}
#header .head_logo {
    width: 42.1%;
}
#header .head_logo figure {
    width: 100%;
}
#header .head_logo figure img {
    width: 100%;
}
#toggle {
	position: absolute;
	top: 29px;
	right: 3%;
	z-index: 5000;
}
#header .head_reserve {
    background-color: #fff;
    color: #24266C;
    text-align: center;
    padding: 13px 8px;
    border-radius: 12px;
    margin-left: 16px;
    font-size: 14px;
    font-weight: bold;
}
#toggle div {
	position: relative;
	width: 20px;
	height: 20px;
}
#toggle div span {
	width: 20px;
	position: absolute;
	height: 2px;
	display: block;
	-webkit-transition: all 0.25s;
		-moz-transition: all 0.25s;
		-ms-transition: all 0.25s;
		-o-transition: all 0.25s;
    transition: all 0.25s;
	top: 0;
	background-color: #fff;
}
#toggle div span:nth-of-type(2) {
	top: 9px;
}
#toggle.open span:nth-of-type(1) {
	transform: rotate(-30deg);
	top: 5px;
	background-color: #fff;
}
#toggle.open span:nth-of-type(2) {
	transform: rotate(30deg);
	top: 5px;
	background-color: #fff;
}
.gnav {
    background-color: #fff;
    padding-top: 100px;
    position: fixed;
    width: 428px;
    margin: 0 auto;
    opacity: 0;
    top: 0px;
    bottom: 0;
    z-index: -500;
    -webkit-transition: all 0.75s;
		-moz-transition: all 0.75s;
		-ms-transition: all 0.75s;
		-o-transition: all 0.75s;
    transition: all 0.75s;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.open .gnav {
    opacity: 1;
    z-index: 500;
}
.gnav ul li a {
    color: #000000;
    font-size: 16px;
    padding-bottom: 15px;
    display: block;
    text-align: center;
}
.gnav > ul {
    margin-bottom: 28px;
}
.gnav .main_btn_wrap {
    margin-top: 0;
    margin-bottom: 30px;
}
/*********************************
	MV
*********************************/
#mainVisual {
    width: 100%;
    background-image: url(./images/MV.jpg);
    height: 507px;
    margin-top: 73px;
    position: relative;
    overflow: hidden;
}
#mainVisual figure {
    position: absolute;
    top: -50px;
    bottom: 0;
    left: 30px;
    margin: auto;
    width: 228px;
    height: 185px;
}
#mainVisual .catch {
    position: absolute;
    bottom: 0;
}
#mainVisual .catch {
    width: 100%;
}
.catch .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    width: 100%;
    color: #fff;
}
.catch.run .bg-wrap::before {
    animation: bg 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background-color: #1F2040;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    z-index: 0;
}
.catch span.inn {
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    -webkit-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
            transition-delay: 0.4s;
}
.catch.run span.inn {
    opacity: 1;
    width: 100%;
}
.catch.run .second_catch::before {
    animation: bg 6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.catch .bg-wrap .inn {
    color: #fff;
    display: inline-block;
    font-weight: normal;
    position: relative;
    z-index: 1;
}
.catch span.fst_catch {
    width: 100%;
    display: block;
    position: relative;
    z-index: 10;
    font-size: 13.4vw;
    word-break: keep-all;
    line-break: strict;
    line-height: 1;
}
.second_catch {
    width: 100%;
}

@keyframes bg {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-5%);
    }

    100% {
        transform: scaleX(1) translateX(0);
    }
    30%, 100% {
        opacity: 1;
    }
}
@media screen and (min-width: 768px) {
    #mainVisual .catch span {
        font-size: 57px;
        word-break: keep-all;
        line-break: strict;
        line-height: 1;
        color: #fff;
    }
    #mainVisual .catch span:nth-of-type(2) {
        width: 100%;
        box-sizing: border-box;
        margin-top: 5px;
    }
}
/*********************************
	about
*********************************/
#about {
    background-image: url(./images/benefit_bg.jpg);
    padding-top: 50px;
    padding-bottom: 50px;
}
#about ul {
    margin-top: 32px;
    font-weight: bold;
    font-size: 16px;
}
#about ul li {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}
#about ul li img {
    margin-right: 10px;
}
#about p.underline {
    text-align: center;
    text-decoration: underline;
    padding-top: 15px;
}
/*********************************
	MERIT
*********************************/
#merit {
    padding-top: 50px;
    padding-bottom: 7px;
    background-color: #EFEFEF;
}
#merit h2 {
    padding-bottom: 20px;
}
.merit_img_wrap {
    position: relative;
    align-items: flex-end;
    height: 195px;
}
.merit_img_wrap .merit_catch {
    position: absolute;
    left: 0;
    z-index: 10;
    bottom: 8px;
}
.merit_img_wrap .left_merit_text {
    left: auto;
    right: 0;
}

.merit_img_wrap .merit_catch h3 {
    position: relative;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #24266c;
    text-align: left;
    display: block;
    margin-bottom: 45px;
}
.merit_img_wrap .left_merit_text h3 {
    text-align: right;
}
.merit_img_wrap figure {
    width: 195px;
    position: absolute;
    right: 0;
}
.merit_img_wrap figure.right_merit_img {
    right: auto;
    left: 0;
}
.merit_img_wrap figure img {
    width: 100%;
}
.merit_img_wrap .merit_catch h3 p{
    position: relative;
    z-index: 10;
    
}
.merit_img_wrap .merit_catch h3 span {
    font-size: 92px;
    letter-spacing: 0.03em;
    -webkit-text-stroke: 1px #8296D8;
    text-stroke: inherit;
    color: #EFEFEF;
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    z-index: 0;
    bottom: 0;
    margin: auto;
}
.merit_content > p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 24px;
    text-align: left;
    color: #000;
    padding-top: 10px;
}
.merit_img_wrap span.bg_blue {
    background: linear-gradient(transparent 0%, #6379C3 0%);
    padding: 5px;
    color: #fff;
    line-height: 38px;
    font-weight: bold;
    font-size: 20px;
}
.merit_content {
    margin-bottom: 40px;
}
.merit_content p span.bg_blue {
    background: linear-gradient(transparent 60%, #D1D9F2 0%)
}
.merit_btn {
    width: 247px;
    border: 1px solid #24266C;
    position: relative;
    font-size: 14px;
    color: #24266C;
    background: #fff;
    box-sizing: border-box;
    display: block;
    padding: 13px 0 13px 20px;
    margin-top: 20px;
}
.merit_btn::after {
    content: "";
    background-image: url(./images/arrow_bottom.svg);
    width: 15px;
    height: 8px;
    background-size: contain;
    position: absolute;
    background-repeat: no-repeat;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
/*********************************
	MERIT
*********************************/
#price {
    background-color: #8590B4;
    padding-top: 16px;
}
#price .container {
    
}
.price_content {
    padding-bottom: 40px;
}
.price_container {
    width: 93%;
    margin: 0 auto;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    padding: 0 3.5%;
    box-sizing: border-box;
}
.price_container h2 {
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-size: 24px;
    padding-top: 38px;
}
.price_container h2 span {
    font-size: 14px;
}
#price p.price_catch {
    text-align: center;
    color: #fff;
    width: 100%;
    margin: auto;
    font-size: 16px;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 8px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}
.price_content figure img {
    width: 100%;
}
.menu_ttl {
    text-align: center;
    color: #fff;
}
.menu_ttl p {
    font-size: 16px;
    letter-spacing: 0.05em;
    position: relative;
    margin-top: 18px;
    margin-bottom: 5px;
}
.menu_ttl p::before,
.menu_ttl p::after {
    content: "";
    width: 1px;
    height: 18px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.menu_ttl p::before {
    transform: rotate(45deg);
    right: 13%;
}
.menu_ttl p::after {
    transform: rotate(-45deg);
    left: 13%;
}
.menu_ttl h3 {
    font-size: 30px;
    letter-spacing: 0.05em;
    color: #000;
    
    display: block;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.menu_ttl h3 span {
    background-color: #fff;
    padding: 0px 3px;
    display: inline-block;
    margin-bottom: 5px;
}
.sm_menu_ttl h3 {
    font-size: 27px;
}
.price_img p {
    color: #fff;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 27px;
}
.price_img p span {
    border-bottom: 1px dashed #fff;
    padding-bottom: 10px;
    
}
.price_container p.supplement {
    color: #fff;
    font-size: 14px;
letter-spacing: 0.05em;
line-height: 24px;
}
.price_02 {
    background-color: #B6BCD2;
    
}
.price_02 .price_container {
    border-top: 0px solid #fff;
    padding-top: 40px;
}
.reccomend_menu {
    padding-bottom: 20px;
}
.reccomend_menu .price_container{
    padding-top: 20px;
    border-top: 0px solid #fff;
    border-bottom: 1px solid #fff;
}
.menu_container {
    width: 90.6%;
    margin: auto;
}
.reccomend_menu dl {
    margin-bottom: 10px;
}
.reccomend_menu dl:last-of-type {
    margin-bottom: 30px;
}
.reccomend_menu dl dd {
}
.reccomend_menu dl dd p {
    font-size: 14px;
    color: #fff;
    line-height: 24px;
}
.reccomend_menu dl dt figure {
    width: 100%;
    margin: auto;
}
.reccomend_menu dl dt figure img {
    width: 100%;
}
/*********************************
	before after
*********************************/
#before_after {
    padding-top: 40px;
    padding-bottom: 40px;
    background: linear-gradient(126deg, #EFEFEF 0%, #EFEFEF 50%, #E1E5F2 50%, #E1E5F2 100%);
}
#before_after h2 {
    text-align: center;
}
#before_after h2.sec_ttl p {
    text-align:center;
    margin-top: 10px;
}
#before_after h2.sec_ttl > span {
    padding-bottom: 10px;
}
/*********************************
	counseling_reserve
*********************************/
.counseling_reserve {
    padding-top: 40px;
    padding-bottom: 45px;
}
.reserve_container h3 {
    text-align: center;
    font-size: 16px;
}
.gnav .reserve_container h3 {
    font-size: 14px;
}
.reserve_container h3 img {
    top: -6px;
    position: relative;
}
.reserve_container h3 span {
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
}
ul.reserve_btn_list {
    margin: 30px auto 0 auto;
    justify-content: space-between;
}
ul.reserve_btn_list li {
    width: 47%;
}
ul.reserve_btn_list li img {
    width: 100%;
}
.main_btn_wrap {
    text-align: center;
    margin-top: 15px;
}
a.mail_btn {
    font-size: 14px;
    color: #000000;
    text-align: center;
    border-bottom: 1px dashed #000;
    padding-bottom: 5px;

}
a.mail_btn img {
    position: relative;
    top: -5px;
}

/*********************************
	online_counseling
*********************************/
.online_counseling {
    padding-top: 25px;
    padding-bottom: 25px;
    background-image: url(./images/online_counseling_bg.jpg);
}
.reserve_container {
    width: 77.6%;
    margin: 0 auto;
}
p.online_text {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 24px;
}
.online_counseling ul li {
    margin-bottom: 24px;
    position: relative;
}
.online_counseling ul li:last-child {
    margin-bottom: 0;
}
.online_counseling ul li::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 12px 0 12px;
    border-color: #b6bcd2 transparent transparent transparent;
}
.online_counseling ul li:last-child::after {
    display: none;
}
.online_counseling ul li a {
    display: block;
    padding-bottom: 0;
}
.online_counseling ul li figure {
    width: 100%;
}
.online_counseling ul li figure img {
    width: 100%;
}
.online_counseling ul li p {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    background: #fff;
    border-radius: 25px;
    width: 100%;
    line-height: 20px;
    padding: 7px 0;
}


.online_counseling ul li p span {
    font-size: 14px;
    font-weight: normal;
}

/*********************************
	benefit
*********************************/
#benefit {
    background-image: url(./images/benefit_bg.jpg);
    position: relative;
    margin-top: 185px;
    padding-top: 150px;
    padding-bottom: 95px;
}
.benefit_wrapper {
    overflow: hidden;
    width: 100%;
}
#benefit .benefit_img {
    width: 91.7056505%;
    margin-right: auto;
    position: absolute;
    top: -130px;
}
#benefit .benefit_img img {
    width: 100%;
}
#benefit h2 {
    font-size: 24px;
}
#benefit .benefit_list ul li {
    position: relative;
    padding-top: 140px;
}
#benefit .benefit_list ul li img {
    position: absolute;
    top: 30px;
    left: -13%;
}
#benefit .benefit_list ul li:nth-child(2) img{
    left: auto;
    right: -13%;
}
#benefit .benefit_list ul li b {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Noto Sans Myanmar';
    line-height: 38px;
}
#benefit .benefit_list ul li b span {
    border-bottom: 1px solid #000;
    display: inline-block;
    line-height: 1;
}
/*********************************
	access
*********************************/
#access .slick-slide img {
    height: 300px;
}
.slick-initialized .slick-slide {
    /* width: 315px!important; */
}
.slick-dotted.slick-slider {
    margin-bottom: 32px!important;
}
.slick-dots {
    bottom: -20px!important;
}
.slick-dots li button:before {
    background-color: #000;
    width: 5px!important;
    height: 5px!important;
    border-radius: 50%!important;
    content: ""!important;
}
#access .slick-dots li {
    width: 10px!important;
}
#access {
    padding-bottom: 0px;
}
#access h2 {
    text-align: center;
    font-size: 24px;
    line-height: 1;
    padding-bottom: 40px;
}
#access h2 span {
    display: block;
    padding-top: 10px;
    color: #000;
}
#access p {
    text-align: center;
    padding-bottom: 18px;
    letter-spacing: 0.05em;
    line-height: 24px;
}
#access a {
    color: #000;
}
#access iframe {
    width: 100%!important;
    height: 150px;
}
#access a.insta_link {
    display: block;
    margin-bottom: 20px;
}
#access a.insta_link figure {
    text-align: center;
}
/*********************************
	flow
*********************************/
.container_min {
    width: 87.356%;
    margin: 0 auto;
}
#flow {
    background-color: #B6BCD2;
    padding-bottom: 20px;
    padding-top: 20px;
}
#flow h2 {
    text-align: center;
    position: relative;
    font-size: 24px; 
}
#flow h2 p {
    text-align: center;
}
.flow_container {
    width: 90.7%;
    margin: 0px auto;
    padding-top: 30px;
    padding-bottom: 4px;
    background-color: #fff;
}
#flow .flow_explain {
    padding-top: 20px;
    margin-bottom: 45px;
}
#flow .flow_explain span {
    font-family: 'Noto Serif JP', serif;
    font-size: 4.9vw;
    color: #fff;
    display: inline-block;
    background-color: #6379C3;
    padding: 0 1.401869%;
    letter-spacing: 0.05em;
    overflow-wrap: break-word;
    padding-bottom: 2px;
    box-sizing: border-box;
}
#flow .flow_explain span:nth-of-type(2) {
    margin-top: 5px;
}
.slick-slide img {
    width: 100%!important;
}
@media screen and (min-width: 768px) {
    #flow .flow_explain span {
        font-size: 21px;
        letter-spacing: 0.05em;
    }#flow .flow_explain span:nth-of-type(2) {
        width: 100%;
    }
}
#flow .flow_explain p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    padding-top: 15px;
}
/* progress bar */
.slider-progress {
    width: 100%;
    height: 3px;
    background: #eee;
}
.slider-progress .progress {
    width: 0%;
    height: 3px;
    background: #000;
}
#slick-1 .slick-dots li {
    width: 10%;
    height: 2px;
    margin: 0;
    background: #ccc;
}
#slick-1 .slick-dots li button {
    width: 11.1%;
    height: 2px;
}
#slick-1 .slick-dots li.slick-active,
#slick-1 .slick-dots li:hover {
    background: #777;
}
#slick-1 .slick-dots li button, 
#slick-1 .slick-dots li button:before {
    color: transparent;
    opacity: 0;
}
.flow_slide {
    position: relative;
}
.flow_slide b {
    font-size: 17px;
    letter-spacing: 0.1em;
    margin-top: 45px;
    display: block;
    word-break: keep-all;
    line-break: strict;
}
.flow_slide b span {
    font-family: Arial;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.03em;
}
.flow_slide ul.slick-dots {
    position: absolute;
    top: 205px;
    height: 30px;
}
@media screen and (max-width: 375px) {
    .flow_slide ul.slick-dots {
        top: 180px;
    }
}
.flow_slide p {
    font-size: 14px;
    padding-top: 7px;
}
.slick-arrow {
    position: absolute;
    bottom: -30px;
    top: auto!important;
}
.slick-prev {
    width: 56px!important;
    left: 0!important;
}
.slick-next {
    right: 0!important;
    width: 56px!important;
}
.slick-prev::before {
    content: ''!important;
    background-image: url(./images/prev.svg);
    width: 56px;
    height: 14px;
    display: block;
    opacity: 1!important;
    background-size: 56px 14px;
    background-repeat: no-repeat;
}
.slick-next::before {
    content: ''!important;
    background-image: url(./images/next.svg);
    width: 56px;
    height: 14px;
    display: block;
    opacity: 1!important;
    background-size: 56px 14px;
    background-repeat: no-repeat;
}
.slick-track {
    margin-bottom: 20px;
}
/*********************************
	try_it
*********************************/

#try_it .plan {
    margin-bottom: 70px;
}
#try_it .plan figure img {
    width: 100%;
}
.plan .plan_ttl > span {
    display: inline-block;
    background-color: #fff;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    padding: 0 5px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.plan .plan_ttl b {
    display: block;
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.05em;
    color: #fff;
    padding-bottom: 20px;
}
.plan .plan_ttl p {
    font-size: 14px;
    color: #fff;
}
.plan .plan_ttl p.plan_place {
    padding-bottom: 20px;
}
.plan .plan_ttl {
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
}
.plan p.plan_price {
    text-align: right;
    color: #fff;
    font-size: 40px;
    letter-spacing: 0.05em;
    padding-top: 15px;
}
.plan p.plan_price span {
    font-weight: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
}
.last_reserve {
    padding-bottom: 25px;
}
.plan_info {
    color: #fff;
    padding-top: 30px;
    padding-bottom: 0px;
    width: 87.4%;
    margin: 0 auto 0px auto;
}
.plan_info small {
    font-size: 10px;
    text-align: center;
    display: block;
    letter-spacing: 0.1em;
}
.plan_info a {
    color: #fff;
    font-size: 34px;
    padding-top: 1px;
    letter-spacing: 0.08em;
    padding-bottom: 9px;
    display: block;
    line-height: 34px;
    font-weight: bold;
    text-align: center;
}

.play_info_blk {
    color: #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin: 0 auto 30px auto;
}
.play_info_blk a {
    color: #000;
}
.plan_info a img {
    position: relative;
    top: 0px;
    margin-right: 10px;
}
.plan_time {
    align-items: flex-start;
    width: 242px;
    margin: 0 auto;
    justify-content: space-between;
}
.play_info_blk p {
    text-align: center;
    font-size: 10px;
    line-height: 18px;
    padding: 0px 0 20px 0;
}
.plan_time p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 20px;
    padding-top: 5px;
}
.plan_time p:nth-of-type(1) {
    width: 89px;
}
.plan_time p:nth-of-type(2) {
    width: 45px;
}
.plan_time p:nth-of-type(3) {
    width: 93px;
}
p.menu_bottom_text {
    font-size: 10px;
    text-align: center;
    line-height: 18px;
    padding-top: 12px;
    color: #fff;
    padding-bottom: 40px;
}

/*********************************
	voice
*********************************/

.ba_slide {
    border-top: 1px solid #000;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-top: 30px;
}
.ba_slide figure img {
    width: 100%;
    
}
.ba_slide span {
    display: block;
    text-align: center;
    font-size: 15px;
    font-family: "Noto Serif JP";
    padding-bottom: 15px;
}
.ba_slide p {
    font-size: 14px;
    line-height: 24px;
    padding-top: 20px;
}
.slick-dots li button:before{
	font-size:20px!important;
}
/*********************************
	staff
*********************************/
#staff {
    padding-top: 30px;
    background-color: #D3D5E0;
    padding-bottom: 40px;
}
#staff h2 {
    text-align: center;
    font-size: 24px;
    padding-bottom: 15px;
}
#staff h2 p {
    text-align: center;
}
#staff .staff_catch {

}

#staff .staff_catch span {
    font-family: 'Noto Serif JP', serif;
    font-size: 4.8vw;
    color: #fff;
    display: inline-block;
    background-color: #6379C3;
    padding: 0 1.401869%;
    letter-spacing: 0.05em;
    overflow-wrap: break-word;
    padding-bottom: 2px;
    box-sizing: border-box;
}
#staff .staff_catch span:nth-of-type(2) {
    margin-top: 5px;
}
@media screen and (min-width: 768px) {
    #staff .staff_catch span {
        font-size: 20px;
        letter-spacing: 0.05em;
    }

}
#staff ul {
    padding-top: 30px;
}
#staff ul li {
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 45px;
}
#staff ul li figure {
    width: 47%;
}
#staff ul li figure img {
    width: 100%;
}
#staff ul li .staff_txt {
    font-size: 14px;
    width: 50%;
}
#staff ul li figcaption p {
    font-size: 14px;
}
#staff ul li figcaption p span {
    font-size: 11px;
}
#staff ul li:nth-child(2) figcaption p {
    text-align: right;
}
.owner h3 {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.03em;
    padding-bottom: 20px;
}
.owner_wrapper figure {
    width: 84.1121%;
    margin-right: auto;  
    position: relative;
    z-index: 10; 
}
.owner_wrapper figure img {
    width: 100%;
}
.owner_wrapper .owner_txt {
    width: 88.3177%;
    margin-left: auto;
    margin-top: -40px;
    box-sizing: border-box;
    padding: 40px 30px;
    position:relative;
    z-index: 20;
    background: rgba(255,255,255,0.8);
}
.owner_wrapper .owner_txt span.bg_blue {
    background: linear-gradient(transparent 50%, #D1D9F2 0%)
}
.owner_wrapper .owner_txt p {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
}
/*********************************
	machine
*********************************/
#machine {
    padding-top: 40px;
}
#machine h2 {
    text-align: center;
}
#machine h2 p{
    text-align: center;
}
#machine figure.machine_img {
    text-align: center;
    margin-top: 20px;
}
#machine figure.machine_img img {
    width: 184px;
}
#machine ul.machine_list {
    justify-content: space-between;
    align-items: flex-start;
}
#machine ul.machine_list li {
    width: 49%;
    margin-bottom: 30px;
}
#machine ul.machine_list li figure img {
    width: 100%;
}
#machine ul.machine_list li b {
    display: block;
    text-align: center;
    font-size: 16px;
    margin-bottom: 11px;
}
#machine ul.machine_list li b span {
    border-bottom: 1px solid #000;
    padding-bottom: 3px;
}
#machine ul.machine_list li p {
    font-size: 14px;
    line-height: 24px;
}
/*********************************
	qa
*********************************/
#qa {
    padding-top: 0px;
    padding-bottom: 40px;
}
#qa h2 {
    font-size: 24px;
    text-align: center;
    padding-bottom: 26px;
}
#qa h2 span {
    text-align: center;
    display: block;
    color: #000000;
}
#qa dl {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    padding: 22px 10px 22px 17px;
    min-height: 88px;
    align-items: flex-start;
    margin-bottom: 10px;
    justify-content: space-between;
}
#qa dl.align_center {
    align-items: center;
}
#qa dl::before {
    content: "";
    width: 45px;
    height: 1px;
    background: #000000;
    display: block;
    position: absolute;
    left: -36px;
    top: 44px;
}
#qa dl dt {
    font-family: 'Crimson Pro';
    font-size: 38px;
    width: 27px;
    line-height: 1;
}
#qa dl dd {
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 22px;
    width: 85.7609%;
}
#qa dl.question {
    background: #CECECE;
}
#qa dl.answer {
    background: #EFEFEF;
}
/*********************************
	contact
*********************************/
#contact figure img {
    width: 100%;
}
#contact h2 {
    text-align: center;
    font-size: 24px;
    padding-bottom: 20px;
    font-weight: normal;
}
.form_wrapper h3 {
    margin-bottom: 40px;
}
.form_wrapper h3 p {
    font-size: 17px;
    line-height: 34px;
    margin-top: 30px;
}
.form_wrapper h3 span {
    font-size: 12px;
    font-weight: normal;
    display: block;
}
.form_wrapper dl {
    margin-bottom: 20px;
}
.form_wrapper dl dt {
    font-size: 14px;
    padding-bottom: 5px;
}
.form_wrapper dl.day_line dt {
    font-size: 12px;
}
.form_wrapper dl dd input,
.form_wrapper dl dd textarea {
    font-size: 14px;
    box-sizing: border-box;
    padding: 14px 5px;
    width: 100%;
}
.form_wrapper dl.day_line input {
    width: 50%;
    margin-right: 5%;
}
.form_wrapper dl.day_line select {
    font-size: 14px;
    padding: 14px 5px;
    width: 45%;
    background-color: #F4F4F4;
    border: none;
}
.form_wrapper dl dd textarea {
    padding: 10px;
}
.counseling {
    padding-bottom: 20px;
}
.counseling p span {
    font-size: 12px;
}
input.send {
    background: #3A3B55;
    color: #fff;
    font-weight: normal;
    font-size: 17px;
    letter-spacing: 0.2em;
    outline: 1px solid rgb(255, 255, 255);
    width: 328px;
    margin: auto;
}
.contact_info,
.contact_info a {
    color: #000;
}
.contact_info {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-top: 30px;
}
/*********************************
	footer
*********************************/
#footer {
    background-image: url(./images/ft_bg.jpg);
    position: relative;
    padding-top: 50px;
    padding-bottom: 15px;
    margin-top: 0px;
}
.ft_wrapper {
    border-bottom: 1px solid #fff;
    position: relative;
    z-index: 10;
}
.ft_container {
    width: 76.6%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
#footer::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
}
#footer .container {
    position: relative;
    z-index: 10;
}
#footer .flex {
    justify-content: space-between;
}
#footer .ft_nav {
    justify-content: flex-start;
    padding-top: 20px;
    color: #fff;
}
#footer .ft_nav li {
    width: 130px;
}
#footer .ft_nav li a {
    color: #fff;
    font-size: 12px;
}
#footer .ft_info {
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
}
#footer .ft_info p {
    padding-bottom: 20px;
    letter-spacing: 0.05em;
    font-size: 12px;
    line-height: 22px;
    color: #fff;
    border-bottom: 1px dashed #fff;
}
#footer .ft_info p a {
    color: #fff;
}
#footer .ft_info ul {
    margin-bottom: 80px;
}
#footer .ft_info ul li {
    line-height: 21px;
}
#footer .ft_info ul li a {
    color: #fff;
    text-decoration: underline;
}
#footer .main_btn_wrap {
    padding-bottom: 20px;
}
#footer .main_btn_wrap a {
    color: #fff;
    border-bottom: 1px dashed #fff;
}
#footer a.pageTop {
    position: relative;
    z-index: 200;
}
#footer .ft_pagetop {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
#footer small.copy {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #fff;
    position: relative;
    z-index: 10;
}
.fiexed_btn_wrapper {
    width: 428px;
    margin: auto;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: right;
    z-index: 100;
    margin-bottom: 15px;
}
.fiexed_btn_wrapper a.fixed_contact_btn {
    margin-right: 15px;
}
br.sp_sm {
    display: none;
}
@media screen and (max-width: 414px) {
    #header {
        width: 100%;
    }
    .merit_content > p {
        font-size: 15px;
    }
    .menu_ttl h3 {
        font-size: 29px;
    }
    .reccomend_menu dl dd p {
        font-size: 13px;
    }
    .fiexed_btn_wrapper a.fixed_contact_btn {
        margin-right: 7%;
    }
}
@media screen and (max-width: 390px) {
    .gnav {
        width: 100%;
    }
    #flow .flow_explain p {
        font-size: 12px;
    }
    #machine ul.machine_list li b {
        font-size: 14px;
    }
    .flow_slide b {
        font-size: 16px;
    }
    #staff ul li figcaption p span {
        font-size: 10px;
    }
    #staff ul li .staff_txt {
        font-size: 13px;
    }
    .owner_wrapper .owner_txt p {
        font-size: 12px;
    }
    .owner_wrapper .owner_txt {
        padding: 30px;
    }
    #machine ul.machine_list li p {
        font-size: 13px;
    }
    .reccomend_menu dl dd p {
        font-size: 12px;
    }
    .menu_ttl h3 {
        font-size: 26px;
    }
    .sm_menu_ttl h3 {
        font-size: 26px;
    }
    .menu_ttl p {
        font-size: 14px;
    }
    .price_img p {
        font-size: 13px;
    }
    .merit_content > p {
        font-size: 14px;
    }
    #about p.underline {
        font-size: 14px;
    }
    .merit_img_wrap span.bg_blue {
        font-size: 17px;
    }
    a.btn, input.btn {
        font-size: 15px;
    }
    h2.sec_ttl p {
        font-size: 18px;
    }
    #before_after {
        background: linear-gradient(124deg, #EFEFEF 0%, #EFEFEF 50%, #E1E5F2 50%, #E1E5F2 100%);
    }
    .fiexed_btn_wrapper a.fixed_contact_btn {
        margin-right: 15%;
    }
    #qa dl dd {
        font-size: 11px;
        letter-spacing:0;
    }
}
@media screen and (max-width: 375px) {
    br.sp_sm {
        display: block;
    }
}
@media screen and (max-width: 370px) {
    .menu_ttl h3 {
        font-size: 24px;
    }
    .plan_info a {
        font-size: 30px;
    }
    .flow_slide b {
        font-size: 14px;
    }
    #machine ul.machine_list li b {
        font-size: 13px;
    }
    #qa dl dd {
        font-size: 10px;
    }
}