@charset "UTF-8";

/*
	Theme Name: Theme
	Author: none
	Version: none
*/


/*================================================================================
base
================================================================================*/

/* global ------------------------------------------------*/

html, body {
    overflow-x: hidden;
}

body {
    font-weight: 500;
    line-height: 1.6;
	font-family: "Noto Sans JP", serif;
}

a:hover {
    transition: ease .2s;
    opacity: 0.7;
}

@media (max-width: 1200px) {

    body {
        padding-top: 70px;
    }
}

/*================================================================================
header
================================================================================*/

/* header pc ------------------------------------------------*/

.header {
    position: relative;
    width: 100%;
    z-index: 999;
    display: flex;
}

.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* logo */

.header_logo {
    max-width: 310px;
    position: absolute;
    top: 0;
    left: 0;
}

/* nav */

.header_nav ul {
    display: flex;
}

.header_nav ul li {
    margin: 0 25px 0 20px;
    position: relative;
}

.header_nav ul li::before {
    content: "／";
    color: #83b640;
    position: absolute;
    right: -30px;
}

.header_nav ul li:first-child {
    margin-left: 0;
}

.header_nav ul li:last-child {
    margin-right: 0;
}

.header_nav ul li:last-child::before {
    display: none;
}

.header_nav ul li a {
    font-size: 16px;
    color: #83b640;
}

/* contact */

.header_contact {
    max-width: 375px;
	margin: 0 0 0 30px;
}

/* header-sp ------------------------------------------------*/

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
}

.header-sp {
    width: 100%;
    position: relative;
    display: none;
    height: 70px;
    background-color: #ffffff;
}

/* logo */

.header-sp_logo {
    position: absolute;
    top: 0;
    left: 0;
	max-width: 140px;
}

/* toggle */

.header-sp_toggle {
	width: 67px;
	height: 67px;
    background-image: url(assets/img/common/header-sp_toggle-open.png);
    background-repeat: no-repeat;
    background-size: 67px 67px;
    cursor: pointer;
    position: fixed;
    top: 2px;
    right: 25px;
    z-index: 999;
    font-size: 0;
}

.header-sp_toggle.close {
    background-image: url(assets/img/common/header-sp_toggle-close.png);
}

/* overlay */

.header-sp_overlay {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    background-color: #ecf4e2;
	z-index: 990;
	padding: 50px 50px 15px 50px;
	animation: toggle 0.5s ease normal;
}

.header-sp_overlay::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 105px;
    height: 100%;
    background-color: #83b640;
    z-index: 1;
}

.header-sp_overlay.open {
	display: block;
}

.header-sp_nav {
    position: relative;
    z-index: 2;
}

.header-sp_nav table {
    width: 100%;
}

.header-sp_nav table th {
    width: 55px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #ffffff;
}

.header-sp_nav table th a {
    display: block;
    color: #ffffff;
    background-color: #83b640;
    padding: 10px 5px;
}

.header-sp_nav table td {
    vertical-align: middle;
    text-align: left;
    border-bottom: 1px solid #83b640;
}

.header-sp_nav table td a {
    display: block;
    background-color: #ecf4e2;
    padding: 10px 20px;
    color: #83b640;
}

@keyframes toggle {

    from {
    	transform: translateY(-100%);
	    opacity: 0;
	}
	to {
		transform: translateY(0);
	    opacity: 1;
	}
}

@media (max-width: 1860px) {

    /* header pc ------------------------------------------------*/
    
    /* logo */
    
    .header_logo {
        max-width: 250px;
    }
    
    /* nav */
    
    .header_nav ul li {
        margin: 0 20px 0 15px;
    }
    
    .header_nav ul li::before {
        right: -25px;
    }
  
    /* contact */
    
    .header_contact {
        max-width: 315px;
    	margin: 0 0 0 20px;
    }
}

@media (max-width: 1680px) {

    /* header pc ------------------------------------------------*/
    
    /* logo */
    
    .header_logo {
        max-width: 200px;
    }
    
    /* nav */
    
    .header_nav ul li {
        margin: 0 15px 0 10px;
    }
    
    .header_nav ul li::before {
        right: -20px;
    }

    .header_nav ul li a {
        font-size: 15px;
    }

    /* contact */
    
    .header_contact {
        max-width: 265px;
    }
}

@media (max-width: 1470px) {

    /* header pc ------------------------------------------------*/
    
    /* logo */
    
    .header_logo {
        max-width: 160px;
    }
    
    .header_nav ul li a {
        font-size: 14px;
    }

    /* contact */
    
    .header_contact {
        max-width: 225px;
    }
}

@media (max-width: 1350px) {

    /* header pc ------------------------------------------------*/
    
    /* logo */
    
    .header_logo {
        max-width: 130px;
    }
    
    /* nav */
    
    .header_nav ul li {
        margin: 0 12px 0 7px;
    }

    .header_nav ul li {
        margin: 0 12px 0 7px;
    }
        
    .header_nav ul li::before {
        right: -18px;
    }

    .header_nav ul li a {
        font-size: 13px;
    }

    /* contact */
    
    .header_contact {
        max-width: 195px;
        margin: 0 0 0 15px;
    }
}

/*================================================================================
footer
================================================================================*/

.footer {
    background-color: #ed796b;
    padding: 60px 200px 30px 200px;
}

/* footer top ------------------------------------------------*/

.footer-top {
	margin: 0 0 30px 0;
}

.footer-top_container .row-outer {
	margin: 0 -30px;
}

.footer-top_container .col-inner {
    padding: 0 30px;
}

/* logo */

.footer_logo {
    max-width: 520px;
}

/* nav */

.footer_nav_container .row-outer {
	margin: 0 -20px;
}

.footer_nav_container .col-inner {
    padding: 0 20px;
}

.footer_nav ul li {
    margin: 0 0 15px 0;
}

.footer_nav ul li::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 18px;
    background-image: url("assets/img/common/footer_nav-icon.png");
    background-size: 13px 18px;
    vertical-align: middle;
	margin: -5px 0 0 0;
}

.footer_nav ul li a {
    font-size: 15px;
    color: #ffffff;
}

/* calendar */

.footer_calendar_timetable {
	margin: 0 0 15px 0;
}

.footer_calendar p {
    font-size: 13px;
    font-weight: 200;
    color: #ffffff;
}

/* footer bottom ------------------------------------------------*/

/* copyright */

.footer_copy p {
    font-size: 13px;
    color: #ffffff;
    text-align: center;
}

@media (max-width: 1860px) {

    .footer {
        padding: 60px 100px 30px 100px;
    }
}

@media (max-width: 1700px) {

    .footer {
        padding: 60px 50px 30px 50px;
    }
    
    /* footer top ------------------------------------------------*/
    
    .footer-top_container .row-outer {
    	margin: 0 -20px;
    }
    
    .footer-top_container .col-inner {
        padding: 0 20px;
    }
    
    /* nav */
    
    .footer_nav_container .row-outer {
    	margin: 0 -10px;
    }
    
    .footer_nav_container .col-inner {
        padding: 0 10px;
    }
    
    .footer_nav ul li {
        margin: 0 0 10px 0;
    }
    
    .footer_nav ul li::before {
        width: 10px;
        height: 14px;
        background-size: 10px 14px;
    	margin: -3px 0 0 0;
    }
    
    .footer_nav ul li a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {

    .footer {
        padding: 30px 15px 20px 15px;
    }
    
    /* footer top ------------------------------------------------*/
    
    .footer-top {
    	margin: 0 auto 20px auto;
        max-width: 540px;
    }
    
    .footer-top_container .row-outer {
    	margin: 0;
    }
    
    .footer-top_container .col-inner {
        padding: 0;
    }
    
    /* logo */
    
    .footer_logo {
        margin: 0 0 20px 0;
    }
    
    /* nav */
    
    .footer_nav_container .row-outer {
    	margin: 0;
    }
    
    .footer_nav_container .col-inner {
        padding: 0;
    }
    
    .footer_nav ul li {
        margin: 0 0 5px 0;
    }
    
    .footer_nav ul li a {
        font-size: 14px;
    }
    
    /* calendar */
    
    .footer_calendar {
    	margin: 0 0 40px 0;
    }
    
    .footer_calendar_timetable {
    	margin: 0 0 10px 0;
    }
    
    /* footer bottom ------------------------------------------------*/

    .footer-bottom {
    	margin: 0 auto;
        max-width: 540px;
    }
      
    /* copyright */
    
    .footer_copy p {
        font-size: 12px;
    }
}

/*================================================================================
common
================================================================================*/

/* heading ------------------------------------------------*/

h2.common-heading {
    font-size: 40px;
    color: #83b640;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.common-heading.type-two {
	font-size: 40px;
	color: #ed796b;
	margin: 0 auto 100px auto;
	padding: 0 0 10px 0;
    border-bottom: 1px solid #ed796b;
    font-weight: 700;
    max-width: 900px;
}

.common-heading.type-three {
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    background-color: #ed796b;
    padding: 10px;
	border-radius: 0 20px 0 20px;
    font-weight: 700;
}
@media (max-width: 1200px) {
.common-heading.type-three {
    font-size: 32px;
}
}

@media (max-width: 991px) {

    /* heading ------------------------------------------------*/
    
    h2.common-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .common-heading.type-two {
    	font-size: 16px;
    	margin: 0 0 30px 0;
    	padding: 0 0 5px 0;
    }
    
    .common-heading.type-three {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 5px;
    	border-radius: 0 10px 0 10px;
    }
}

/* contact ------------------------------------------------*/

.common-contact {
    display: flex;
}

.common-contact_qa {
    display: flex;
    width: 50%;
}

.common-contact_qa a {
    display: flex;
    width: 100%;
    background-color: #dae9c6;
    font-size: 36px;
    color: #83b640;
    padding: 30px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.common-contact_tel {
    width: 50%;
    color: #ffffff;
    background-color: #83b640;
    padding: 25px 0;
    text-align: center;
}
.common-contact_tel .text-top{
    font-size: 1.1em;
    margin-bottom: 7px;
}
.common-contact_tel .midashi{
    background-color: #ed796b;
    padding: 5px 20px;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 20px;
}
.common-contact_tel .midashi2{
    color: #5abeb4;
    background-color: #fff;
    padding: 5px 20px;
    margin-bottom: 10px;
    display: inline-block;
    border-radius: 20px;
}
.common-contact_tel .text{
    width: 100%;
    font-size: 36px;
    letter-spacing: 1px;
	line-height: 1;
    margin-bottom: 5px;
}
.common-contact_tel .text-s{
    font-size: 14px;
    letter-spacing: 1px;
}

.common-contact_tel img {
    max-width: 630px;
}

@media (max-width: 991px) {

    .common-contact {
        flex-wrap:wrap;
    }
    
    .common-contact_qa {
        width: 100%;
        order: 2;
    }
    
    .common-contact_qa a {
        font-size: 20px;
        padding: 10px 15px;
    }
    
    .common-contact_tel {
        width: 100%;
        padding: 20px 15px;
        order: 1;
    }
    
    .common-contact_tel img {
        max-width: 540px;
    }
}

/* pageback ------------------------------------------------*/

.common-pageback {
    background-color: #f3f8ec;
}

.common-pageback_inner {
    background-color: #ffffff;
    padding: 0 100px;
    overflow: hidden;
}

@media (max-width: 767px) {

    .common-pageback {
        background-color: #ffffff;
    }

    .common-pageback_inner {
        padding: 10px;
    }
}

/* breadcrumbs ------------------------------------------------*/

.common-breadcrumbs {
    margin: 30px 0 100px 0;
}

.common-breadcrumbs ul {
    display: flex;
}

.common-breadcrumbs ul li {
    font-size: 14px;
    border-right: 1px solid #000000;
    padding: 0 25px;
}

.common-breadcrumbs ul li:first-child {
    padding-left: 0;
}

.common-breadcrumbs ul li:last-child {
    border-right: none;
    padding-right: 0;
}

@media (max-width: 991px) {

    /* breadcrumbs ------------------------------------------------*/
    
    .common-breadcrumbs {
        margin: 40px 0;
    }
    
    .common-breadcrumbs ul {
        display: none;
    }
    
    .common-breadcrumbs ul li {
        font-size: 13px;
        padding: 0 10px;
    }
}

/* bg ------------------------------------------------*/

.bg-pink {
    background-color: #fcebe9;
}

.bg-white {
    background-color: #ffffff;
}

.bg-green {
    background-color: #f3f8ec;
}
.bg-yellow {
    background-color: #fffde1;
}

/*================================================================================
index
================================================================================*/

/* hero ------------------------------------------------*/

.top-hero {
    max-width: 1400px;
    margin: 50px auto;
    position: relative;
    padding: 0 15px;
}

.top-hero_slider {
    overflow: hidden;
}

.top-hero_minislider {
    max-width: 600px;
    position: absolute;
    right: -100px;
    bottom: 50px;
}

.top-hero_minislider_slide {
    border: 3px solid rgba(255, 255, 255, 0);
}

.top-hero_minislider .swiper-slide-thumb-active {
    border: 3px solid #ffffff;
}

/* depart */

.top-hero_depart {
    max-width: 300px;
    position: absolute;
    top: 50px;
    right: -150px;
    z-index: 100;
}

.top-hero_depart ul li {
	margin: 0 0 30px 0;
}

/* news ------------------------------------------------*/

.top-news {
    background-color: #dae9c6;
	padding: 80px 0;
}

/* table */

.top-news_table table {
    width: 100%;
}

.top-news_table table tr {
    border-bottom: 1px solid #724f45;
}


/* ---------------
.top-news_table table th {
	font-size: 20px;
	color: #724f45;
	width: 240px;
	padding: 10px 40px;
	text-align: center;
	vertical-align: middle;
}
-----------------------------*/

.top-news_table table td {
	width: 100%;
	font-size: 22px;
	color: #724f45;
	padding: 10px 40px;
	vertical-align: middle;
}

/* hours ------------------------------------------------*/

.top-hours {
	padding: 120px 0;
}

.top-hours_inner {
    box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.3); 
    border-radius:  40px;
    padding: 60px 140px;
}

/* calendar */

.top-hours_calendar_timetable {
	margin: 0 0 30px 0;
}


.top-hours_calendar p {
    font-size: 18px;
    color: #724f45;
}

/* calendar ------------------------------------------------*/

.top-calendar {
    background-color: #dae9c6;
	padding: 80px 0;
}

.top-calendar_footage {
	position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.top-calendar_footage iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* guide ------------------------------------------------*/

.top-guide {
	padding: 160px 0 20px 0;
}

.top-guide_container .row-outer {
	margin: 0 -35px;
}

.top-guide_container .col-inner {
    padding: 0 35px;
}

.top-guide_item {
	margin: 0 0 80px 0;
}

.top-guide_btn a {
    display: block;
    box-shadow: rgba(17, 12, 46, 0.2) 0px 1px 10px 5px;
    border-radius: 0 55px 0 55px;
}

/* company ------------------------------------------------*/

.top-company {
	padding: 100px 0 180px 0;
}

.top-company_container .row-outer {
	margin: 0 -35px;
}

.top-company_container .col-inner {
    padding: 0 35px;
}

/* video */

.top-company_video {
	margin: 0 0 30px 0;
    position: relative;
	padding-top: 50%;
	overflow: hidden;
}

.top-company_video video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* map */

.top-company_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 55%;
}

.top-company_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1700px) {
    .top-hero_depart {
        right: -100px;
    }
}
@media (max-width: 1600px) {
    .top-hero_depart {
        right: -50px;
    }
}
@media (max-width: 1500px) {
    .top-hero_depart {
        right: -30px;
    }
}


@media (max-width: 1350px) {

    .top-hero {
        margin: 40px auto;
    }
    .top-hero_depart {
        right: -20px;
    }
}

@media (max-width: 1200px) {

    /* hero ------------------------------------------------*/

    .top-hero {
        margin: 0 auto 80px 0;
    }

    .top-hero_minislider {
        max-width: 700px;
        right: -15px;
        bottom: 5%;
    }
    
    /* depart */
    
    .top-hero_depart {
        max-width: 250px;
        position: absolute;
        top: 15%;
        right: -15px;
    }
    
    .top-hero_depart ul li {
    	margin: 0 0 30px 0;
    }
}

@media (max-width: 991px) {

    /* hero ------------------------------------------------*/
    
    .top-hero {
        margin: 0 15px 25px 15px;
    }
    
    .top-hero_minislider {
        display: none;
    }
    
    /* depart */
    
    .top-hero_depart {
        max-width: 30%;
        width: 100%;
        position: absolute;
        top: 20px;
        right: -7.5px;
    }
    
    .top-hero_depart ul li {
    	margin: 0 0 5% 0;
    }
    
    /* news ------------------------------------------------*/
    
    .top-news {
    	padding: 40px 0;
    }
    
    /* table */

    .top-news_table table th {
    	font-size: 14px;
    	display: block;
    	width: 100%;
    	padding: 10px 0 0 0;
    	text-align: left;
    }
    
    .top-news_table table td {
    	font-size: 15px;
    	display: block;
    	width: 100%;
    	padding: 0 0 10px 0;
    }
    
    /* hours ------------------------------------------------*/
    
    .top-hours {
    	padding: 40px 0;
    }
    
    .top-hours_inner {
        box-shadow: none; 
        border-radius:  0;
        padding: 0;
    }
    
    /* calendar */
    
    .top-hours_calendar_timetable {
    	margin: 0 0 10px 0;
    }
    
    
    .top-hours_calendar p {
        font-size: 14px;
    }
    
    /* news ------------------------------------------------*/
    
    .top-calendar {
    	padding: 40px 0;
    }
    
    /* guide ------------------------------------------------*/
    
    .top-guide {
    	padding: 40px 0 20px 0;
    }
    
    .top-guide_container .row-outer {
    	margin: 0 -10px;
    }
    
    .top-guide_container .col-inner {
        padding: 0 10px;
    }
    
    .top-guide_item {
    	margin: 0 0 20px 0;
    }
    
    /* company ------------------------------------------------*/
    
    .top-company {
    	padding: 40px 0 0 0;
    }
    
    .top-company_container .row-outer {
    	margin: 0;
    }
    
    .top-company_container .col-inner {
        padding: 0;
    }
    
    .top-company_item {
    	margin: 0 0 50px 0;
    }
    
    /* video */
    
    .top-company_video {
    	margin: 0 0 20px 0;
    }
}

/*================================================================================
aisatsu
================================================================================*/

/* profile ------------------------------------------------*/

.aisatsu-profile h2 {
	font-size: 25px;
	color: #83b640;
	margin: 0 0 20px 0;
}

.aisatsu-profile_container .row-outer {
	margin: 0 -40px;
}

.aisatsu-profile_container .col-inner {
    padding: 0 40px;
}

/* thumb */

.aisatsu-profile_thumb {
	margin: 0 0 50px 0;
}

/* name */

.aisatsu-profile_name {
	font-size: 32px !important;
	color: #724f45;
}

.aisatsu-profile_name .en {
	font-size: 18px;
	display: block;
}

/* p */

.aisatsu-profile p {
	font-size: 18px;
	color: #724f45;
	margin: 0 0 50px 0;
	line-height: 2.2;
}

/* history */

.aisatsu-profile_history_table {
	margin: 0 0 40px 0;
}

.aisatsu-profile_history_table table tr th {
	font-size: 18px;
	color: #724f45;
    border-right: 1px solid #000000;
    width: 110px;
    padding: 0 15px;
}

.aisatsu-profile_history_table table tr td {
	font-size: 16px;
	color: #724f45;
    padding: 0 15px;
}

/* video */

.aisatsu-profile_video {
	margin: 0 0 30px 0;
    position: relative;
	padding-top: 70%;
	overflow: hidden;
}

.aisatsu-profile_video video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* info ------------------------------------------------*/

.aisatsu-info h2 {
	font-size: 25px;
	color: #83b640;
	margin: 0 0 20px 0;
}

.aisatsu-info_container {
	margin: 0 0 100px 0;
}

.aisatsu-info_container .row-outer {
	margin: 0 -40px;
}

.aisatsu-info_container .col-inner {
    padding: 0 40px;
}

/* logo */

.aisatsu-info_logo {
	margin: 0 0 15px 0;
}

/* p */

.aisatsu-info p {
	font-size: 16px;
	color: #724f45;
	margin: 0 0 40px 0;
}

/* timetable */

.aisatsu-info_calendar_timetable {
	margin: 0 0 15px 0;
}

/* map */

.aisatsu-info_map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 55%;
}

.aisatsu-info_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {

    /* profile ------------------------------------------------*/
    
    .aisatsu-profile h2 {
    	font-size: 20px;
        text-align: center;
    	margin: 0 0 15px 0;
    }
    
    .aisatsu-profile_item {
    	margin: 0 0 30px 0;
    }
    
    .aisatsu-profile_container .row-outer {
    	margin: 0;
    }
    
    .aisatsu-profile_container .col-inner {
        padding: 0;
    }
    
    /* thumb */
    
    .aisatsu-profile_thumb {
    	margin: 0 0 10px 0;
    }
    
    /* name */
    
    .aisatsu-profile_name {
    	font-size: 24px !important;
    	display: block;
    	margin: 0 auto 60px auto !important;
    	max-width: 160px;
    }
    
    .aisatsu-profile_name .en {
    	font-size: 14px;
    }
    
    /* p */
    
    .aisatsu-profile p {
    	font-size: 14px;
    	margin: 0 0 20px 0;
    }
    
    /* history */
    
    .aisatsu-profile_history_table {
    	margin: 0 0 30px 0;
    }
    
    .aisatsu-profile_history_table table tr th {
    	font-size: 14px;
        width: 60px;
        padding: 0;
    }
    
    .aisatsu-profile_history_table table tr td {
    	font-size: 14px;
    }

    
    .aisatsu-profile_history_table table tr td.year {
    	padding: 0 0 0 15px;
    	width: 80px;
    }

    /* info ------------------------------------------------*/
    
    .aisatsu-info h2 {
    	margin: 0 0 15px 0;
    }
    
    .aisatsu-info_container {
    	margin: 0 0 50px 0;
    }
    
    .aisatsu-info_container .row-outer {
    	margin: 0;
    }
    
    .aisatsu-info_container .col-inner {
        padding: 0;
    }

    /* thumb */
    
    .aisatsu-info_thumb {
    	margin: 0 0 30px 0;
    }
    
        
    /* logo */
    
    .aisatsu-info_logo {
    	margin: 0 0 10px 0;
    }
    
    /* p */
    
    .aisatsu-info p {
        font-size: 14px;
    	margin: 0 0 20px 0;
    }
    
    /* timetable */
    
    .aisatsu-info_calendar_timetable {
    	margin: 0 0 10px 0;
    }
}

/*================================================================================
shinryou
================================================================================*/

/* treat ------------------------------------------------*/

/* guide */

.shinryou-treat_guide_container {
	margin: 0 0 100px 0;
}

.shinryou-treat_guide_container .row-outer {
	margin: 0 -45px;
}

.shinryou-treat_guide_container .col-inner {
    padding: 0 45px;
}

/* depart */

.shinryou-treat_depart_container {
    padding: 30px;
	margin: 0 0 100px 0;
	border-radius: 0 50px 0 50px;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.shinryou-treat_depart_item .row-outer {
	margin: 0 -15px;
}

.shinryou-treat_depart_item .col-inner {
    padding: 0 15px;
}

/* p */

.shinryou-treat_depart p {
	font-size: 18px;
	color: #724f45;
	line-height: 2;
	padding-left: 20px;
}

@media (max-width: 991px) {

    /* treat ------------------------------------------------*/
    
    /* guide */
    
    .shinryou-treat_guide_container {
    	margin: 0 0 40px 0;
    }
    
    .shinryou-treat_guide_container .row-outer {
    	margin: 0 -15px;
    }
    
    .shinryou-treat_guide_container .col-inner {
        padding: 0 15px;
    }
    
    /* depart */
    
    .shinryou-treat_depart_container {
        padding: 20px;
    	margin: 0 0 30px 0;
    	border-radius: 0 20px 0 20px;
    }
    
    .shinryou-treat_depart_item .row-outer {
    	margin: 0;
    }
    
    .shinryou-treat_depart_item .col-inner {
        padding: 0;
    }
    
    .shinryou-treat_depart_illust {
    	margin: 0 0 10px 0;
    }
    
    /* p */
    
    .shinryou-treat_depart p {
    	font-size: 14px;
	    padding-left: 0;
    }
}

/*================================================================================
shitsumon
================================================================================*/

.shitsumon-qa_item {
    margin-bottom: 120px;
}

.shitsumon-qa h3 {
    font-size: 32px;
    color: #83b640;
    margin-bottom: 30px;
    text-indent: -32px;
    padding-left: 32px;
}

/* p */

.shitsumon-qa p {
    font-size: 25px;
    color: #7a5f52;
    text-align: justify;
    text-indent: -40px;
    padding-left: 40px;
    line-height: 1.8;
}

.shitsumon-qa p::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/shitsumon/shitsumon-qa_p-icon.png");
    background-size: 30px 30px;
	margin: 0 10px 0 0;
}

@media (max-width: 991px) {

    .shitsumon-qa_item {
        margin-bottom: 30px;
    }
    
    .shitsumon-qa h3 {
        font-size: 16px;
        margin-bottom: 10px;
        text-indent: -16px;
        padding-left: 16px;
    }
    
    /* p */
    
    .shitsumon-qa p {
        font-size: 16px;
        text-indent: -23px;
        padding-left: 23px;
    }
    
    .shitsumon-qa p::before {
        width: 18px;
        height: 18px;
        background-size: 18px 18px;
    	margin: 0 5px 0 0;
    }
}

/*================================================================================
kensa
================================================================================*/

.kensa-type_item {
    margin-bottom: 100px;
}

.kensa-type h3 {
    font-size: 32px;
    color: #83b640;
    margin-bottom: 30px;
}

.kensa-type h3::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/kensa/kensa-type_h3-icon.png");
    background-size: 30px 30px;
	margin: 0 10px 0 0;
}

/* lead */

.kensa-type_lead {
	margin: 0 0 80px 0;
}

.kensa-type_lead p {
    font-size: 25px;
    color: #7a5f52;
    text-align: justify;
    line-height: 1.8;
}

/* p */

.kensa-type p {
    font-size: 25px;
    color: #7a5f52;
    text-align: justify;
	padding: 0 0 0 40px;
    line-height: 1.8;
}

@media (max-width: 991px) {

    .kensa-type_item {
        margin-bottom: 30px;
    }
    
    .kensa-type h3 {
        font-size: 17px;
        margin-bottom: 5px;
    }
    
    .kensa-type h3::before {
        width: 15px;
        height: 15px;
        background-size: 15px 15px;
    	margin: 0 5px 0 0;
    }
    
    /* lead */
    
    .kensa-type_lead {
    	margin: 0 0 30px 0;
    }
    
    .kensa-type_lead p {
        font-size: 14px;
        padding: 0 !important;
    }
    
    /* p */
    
    .kensa-type p {
        font-size: 14px;
    	padding: 0 0 0 20px;
    }
}

/*================================================================================
hatsunetsu
================================================================================*/

.hatsunetsu-about {
	padding: 100px 0;
}

/* lead */

.hatsunetsu-lead {
	margin: 0 0 80px 0;
}

.hatsunetsu-lead p {
    font-size: 25px;
    color: #7a5f52;
    text-align: justify;
    line-height: 1.8;
}

/* banner */

.hatsunetsu-about_banner {
	margin: 0 auto 100px auto;
}

/* p */

.hatsunetsu-about p {
    font-size: 14px;
    margin: 0 0 50px 0;
    line-height: 1.8;
}
    
@media (max-width: 991px) {

    .hatsunetsu-about {
    	padding: 40px 0;
    }

    /* lead */
    
    .hatsunetsu-lead {
    	margin: 0 0 20px 0;
    }
    
    .hatsunetsu-lead p {
        font-size: 14px;
    }
    
    /* banner */
    
    .hatsunetsu-about_banner {
    	margin: 0 0 15px 0;
    }
}

/*================================================================================
shisetsu
================================================================================*/

/* shisetsu ------------------------------------------------*/

.shisetsu-intro_item {
	margin: 0 0 150px 0;
}

.shisetsu-intro h3 {
	font-size: 30px;
	color: #ed796b;
	margin: 0 0 20px 0;
}

/* thumb */

.shisetsu-intro_thumb {
	margin: 0 0 15px 0;
}

/* p */

.shisetsu-intro p {
	font-size: 18px;
	color: #724f45;
	line-height: 1.8;
}

@media (max-width: 991px) {
    
    /* shisetsu ------------------------------------------------*/
    
    .shisetsu-intro_item {
    	margin: 0 0 30px 0;
    }
    
    .shisetsu-intro h3 {
    	font-size: 16px;
    	margin: 0 0 5px 0;
    }
    
    /* thumb */
    
    .shisetsu-intro_thumb {
    	margin: 0 0 10px 0;
    }
    
    /* p */
    
    .shisetsu-intro p {
    	font-size: 14px;
    }
}

/*================================================================================
byouji
================================================================================*/

/* lead */

.byouji-lead {
	margin: 0 0 80px 0;
}

.byouji-lead p {
    font-size: 25px;
    color: #7a5f52;
    text-align: justify;
    line-height: 1.8;
}

/* about */

.byouji-about_list {
	margin: 0 0 100px 0;
}

.byouji-about_list ul li {
	font-size: 30px;
	color: #724f45;
	margin: 0 0 30px 0;
}

.byouji-about_list ul li::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url("assets/img/byouji/byouji-about_list-icon.png");
    background-size: 36px 36px;
	margin: 5px 10px 0 0;
	vertical-align: top;
}


.byouji-about_list2 {
	margin: 0 0 100px 0;
}

.byouji-about_list2 ul li {
	font-size: 30px;
	color: #724f45;
	margin: 0 0 30px 0;
}
.byouji-about_list2 a {
	color: #ed796b;
	border-bottom: 1px dotted #ed796b;
	margin: 0 5px;
}



/* dl */

.byouji-about_dl {
	margin: 0 0 150px 0;
}

.byouji-about_dl_container .row-outer {
	margin: 0 -40px;
}

.byouji-about_dl_container .col-inner {
    padding: 0 40px;
}

/* flow */

.byouji-about_flow {
	margin: 0 0 100px 0;
}

/* point */

.byouji-about_point {
	margin: 0 0 50px 0;
}

.byouji-about_point ul li {
	font-size: 28px;
	color: #724f45;
    text-indent: -75px;
    padding-left: 75px;
	margin: 0 0 60px 0;
}

.byouji-about_point ul li .small {
	font-size: 0.8em;
	color: #724f45;
	text-indent: -1em;
	padding-left: 1em;
}

.byouji-about_point-icon {
    width: 65px;
    height: 65px;
    display: inline-block;
	margin: -15px 10px 0 0;
	vertical-align: top;
}
.byouji-about_point a {
	color: #ed796b;
	border-bottom: 1px dotted #ed796b;
	margin: 0 5px;
}


/* notice */

.byouji-notice {
    padding: 100px 0;
}

.byouji-notice_list ul li {
	font-size: 30px;
	color: #724f45;
    text-indent: -46px;
    padding-left: 46px;
	margin: 0 0 40px 0;
}

.byouji-notice_list ul li::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    background-image: url("assets/img/byouji/byouji-about_list-icon.png");
    background-size: 36px 36px;
	margin: 5px 10px 0 0;
	vertical-align: top;
}

/* detail ------------------------------------------------*/

.byouji-detail {
	padding: 100px 0;
}

/* table */

.byouji-detail_table {
	margin: 0 0 80px 0;
}

.byouji-detail_table table {
	width: 100%;
}

.byouji-detail_table table tr th {
	font-size: 30px;
	color: #83b640;
    border-right: 1px solid #83b640;
    width: 160px;
    padding: 0 15px;
}

.byouji-detail_table table tr td {
    padding: 0 15px;
}

.byouji-detail_table table tr td ul li {
	font-size: 25px;
	color: #724f45;
    text-indent: -45px;
    padding-left: 45px;
	margin: 0 0 40px 0;
}

.byouji-detail_table table tr td ul li:last-child {
	margin: 0;
}

.byouji-detail_table table tr td ul li::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("assets/img/byouji/byouji-about_list-icon.png");
    background-size: 30px 30px;
	margin: 5px 15px 0 0;
	vertical-align: top;
}

@media (max-width: 991px) {

    /* lead */
    
    .byouji-lead {
    	margin: 0 0 60px 0;
    }
    
    .byouji-lead p {
        font-size: 14px;
    }
    
    /* about */
    
    .byouji-about_list {
    	margin: 0 0 60px 0;
    }
    
    .byouji-about_list ul li {
    	font-size: 14px;
    	margin: 0 0 20px 0;
    	text-indent: -27px;
    	padding-left: 27px;
    }
    
    .byouji-about_list ul li::before {
        width: 22px;
        height: 22px;
        background-size: 22px 22px;
    	margin: 0 5px 0 0;
    }
    
    /* dl */
    
    .byouji-about_dl {
    	margin: 0 0 40px 0;
    }
    
    .byouji-about_dl_item {
    	margin: 0 auto 40px auto;
    	max-width: 200px;
    }
    
    .byouji-about_dl_container .row-outer {
    	margin: 0;
    }
    
    .byouji-about_dl_container .col-inner {
        padding: 0;
    }
        
    /* flow */
    
    .byouji-about_flow {
    	margin: 0 0 80px 0;
    }
    
    /* point */
    
    .byouji-about_point {
    	margin: 0 0 50px 0;
    }
    
    .byouji-about_point ul li {
    	font-size: 14px;
        text-indent: -43px;
        padding-left: 43px;
    	margin: 0 0 20px 0;
    }
    .byouji-about_point-icon {
        width: 30px;
        height: 30px;
    	margin: -5px 5px 0 0;
    }
    
    /* notice */

    .byouji-notice {
        padding: 30px 0;
    }
   
    .byouji-notice_list ul li {
    	font-size: 14px;
        text-indent: -27px;
        padding-left: 27px;
    	margin: 0 0 20px 0;
    }
    
    .byouji-notice_list ul li::before {
        width: 22px;
        height: 22px;
        background-size: 22px 22px;
    	margin: -2px 5px 0 0;
    }
    
    /* detail ------------------------------------------------*/
    
    .byouji-detail {
    	padding: 30px 0;
    }
    
    /* table */
    
    .byouji-detail_table {
    	margin: 0 0 40px 0;
    }
    
    .byouji-detail_table table tr th {
    	font-size: 18px;
        border-right: none;
        border-bottom: 1px solid #83b640;
        width: 100%;
        display: block;
        padding: 0 0 5px 0;
        margin-bottom: 15px;
    }
    
    .byouji-detail_table table tr td {
        width: 100%;
        display: block;
        padding: 0;
    }
    
    .byouji-detail_table table tr td ul li {
    	font-size: 14px;
        text-indent: -21px;
        padding-left: 21px;
    	margin: 0 0 10px 0;
    }
    
    .byouji-detail_table table tr td ul li:last-child {
    	margin: 0;
    }
    
    .byouji-detail_table table tr td ul li::before {
        width: 16px;
        height: 16px;
        background-size: 16px 16px;
    	margin: 2px 5px 0 0;
    }
}


    /* 240816追加 ------------------------------------------------*/
    
.top-company_logo p{
    font-size: 15px;
    font-weight: 100;
    color: #724f45;
    margin-top: 10px;
}
@media (max-width: 767px) {
.top-company_logo p{
    font-size: 13px;
    margin-top: 5px;
}
}

.aisatsu-info p {
  text-indent: -1em;
  padding-left: 1em;
}

.shinryou-flex {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap; /*折り返し有り・複数行*/
    justify-content: space-between;
    margin: 0 auto;
}
.shinryou-flex h3 {
    width: 100%;
    font-size: 24px;
    text-align: center;
    color: #83b640;
    border-bottom: 2px dashed #83b640;
    padding-bottom: 5px;
    margin-bottom: 20px;
}
.shinryou-flex div {
    width: 47%;
}
.shinryou-flex p {
    font-size: 22px;
    line-height: 1.2;
    padding-left: 0;
    margin-top: 15px;
}
.shinryou-flex p span {
    color: #ed796b;
    margin-right: 5px;
}
.shinryou-flex p small {
    font-size: 0.8em;
    font-weight: 100;
    margin-left: 1em;
}
.line-green{
    border: 2px solid #83b640;
    padding-top: 40px;
    padding-bottom: 40px;
}
@media (max-width: 991px) {
.shinryou-flex {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap; /*折り返し有り・複数行*/
    justify-content: space-between;
    margin: 0 auto;
}
.shinryou-flex h3 {
    font-size: 18px;
    line-height: 1.3;
    text-align: left;
    border-bottom: 1px dashed #83b640;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.shinryou-flex div {
    width: 100%;
}
.shinryou-flex p {
    font-size: 18px;
}
.shinryou-flex p span {
    margin-right: 2px;
}
.line-green{
    border: 1px solid #83b640;
    padding-top: 30px;
    padding-bottom: 20px;
}
}


.byouji-about_dl_item a {
    text-align: center;
    font-size: 20px;
    color: #724f45;
}
.byouji-about_dl_item a img{
    margin-bottom: 10px;
}
.byouji-about_dl_item a p{
    line-height: 1.2;
}
.byouji-about_dl_item a p small{
    font-size: 14px;
    font-weight: 100;
}

.byouji-contact {
    font-size: 0px !important;
    padding: 30px 0 !important;
}
.byouji-contact .midashi{
    font-size: 24px;
    color: #ed796b;
    background-color: #fff;
    padding: 5px 24px;
    margin: 0 0 10px;
    display: inline-block;
    border-radius: 24px;
}
.byouji-contact .flex {
    display: flex;
    flex-wrap: wrap; /*折り返し有り・複数行*/
    justify-content: center;
    align-items: center;     /*中央揃え*/
}

.byouji-contact .text{
    font-size: 50px;
    letter-spacing: 1px;
	line-height: 1;
    margin-bottom: 5px;
}
.byouji-contact .text-s{
    font-size: 16px;
    letter-spacing: 1px;
}


@media (max-width: 991px) {
.byouji-contact {
    padding: 20px 0 !important;
}
.byouji-contact .midashi{
    font-size: 18px;
    padding: 3px 20px;
    margin: 0 0 10px;
    border-radius: 20px;
}
.byouji-contact .text{
    width: 100%;
    font-size: 36px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.byouji-contact .text-s{
    font-size: 14px;
}
}
@media (max-width: 768px) {
.byouji-contact .midashi{
    font-size: 15px;
}
.byouji-contact .text{
    width: 100%;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.byouji-contact .text-s{
    font-size: 13px;
}
}



.red {
    color: #ed796b;
}
.green {
    color: #83b640;
}
.blue {
    color: #5abeb4;
}
.yellow {
    color: #dba956;
}
.bg-blue {
    background-color: #5abeb4;
}


    /* 240828追加 ------------------------------------------------*/
    
.azukaruko{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.azukaruko img{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.byouji-azukaruko {
	padding: 100px 0;
}
.byouji-azukaruko h3 {
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    background-color: #ed796b;
    padding: 10px;
    border-radius: 0 20px 0 20px;
    font-weight: 700;
}
.byouji-azukaruko h4 {
    font-size: 30px;
    color: #ed796b;
    text-align: center;
    margin-bottom: 30px;
}
.byouji-azukaruko .azukaruko_mi {
    border-bottom: 1px solid #ed79;
    padding-bottom: 10px;
    margin-bottom: 50px;
}


.byouji-azukaruko .read-txt {
    font-size: 20px;
    font-weight: 200;
    color: #7a5f52;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 50px;
}
.byouji-azukaruko .azukaruko a {
    width: 100%;
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    background-color: #83b640;
    padding: 10px;
    border-radius: 0 20px 0 20px;
    font-weight: 700;
    display: block;
}

.azukaruko-contents {
    display: flex;
    flex-wrap: wrap; /*折り返し有り・複数行*/
    justify-content: space-between;
    margin-bottom: 50px;
}
.azukaruko-left {
    width: 25%;
}
.azukaruko-right {
    width: 70%;
}

.azukaruko-right-waku {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.azukaruko-number {
    width: 10%;
}
.azukaruko-txt {
    width: 88%;
}
.azukaruko-midashi {
    width: 100%;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #83b640;
    font-weight: 700;
}
.azukaruko-txt p {
    width: 100%;
    font-size: 20px;
    font-weight: 100;
    text-align: justify;
    color: #724f45;
}
.azukaruko .text-open {
    width: 100%;
    font-size: 1.2em;
    font-weight: 100;
    text-align: center;
    color: #724f45;
}

.byouji-tyusyaku {
    width: 100%;
	padding: 15px 20px;
    font-size: 1.3em;
    text-align: center;
    color: #ed796b;
    border: 1px solid #ed796b;
    margin-bottom: 50px;
}


@media (max-width: 991px) {
    
.azukaruko{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.azukaruko img{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.byouji-azukaruko {
	padding: 30px 0;
}
.byouji-azukaruko h3 {
    font-size: 24px;
    padding: 10px;
    border-radius: 0 10px 0 10px;
    margin-bottom: 20px;
}
.byouji-azukaruko h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.byouji-azukaruko .azukaruko_mi {
    padding-bottom: 5px;
    margin-bottom: 30px;
}


.byouji-azukaruko .read-txt {
    font-size: 15px;
    margin-bottom: 50px;
}
.byouji-azukaruko .azukaruko a {
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: 0 10px 0 10px;
}

.azukaruko-contents {
    margin-bottom: 20px;
}
.azukaruko-left {
    width: 30%;
}
.azukaruko-right {
    width: 65%;
}

.azukaruko-right-waku {
    margin-bottom: 20px;
}
.azukaruko-number {
    width: 10%;
}
.azukaruko-txt {
    width: 88%;
}
.azukaruko-midashi {
    font-size: 18px;
    margin-bottom: 10px;
}
.azukaruko-txt p {
    font-size: 15px;
}
.azukaruko .text-open {
    width: 100%;
    font-size: 0.9em;
    margin-bottom: 20px;
}
.byouji-tyusyaku .sp-item {
    display: block;
}
}

@media (min-width: 992px) {
.byouji-tyusyaku .sp-item {
    display: none;
}
}


@media (max-width: 650px) {
.azukaruko img{
    margin-bottom: 20px;
}
.byouji-azukaruko h3 {
    font-size: 18px;
}
.byouji-azukaruko h4 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.byouji-azukaruko .azukaruko_mi {
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.byouji-azukaruko .read-txt {
    margin-bottom: 30px;
}
.byouji-azukaruko .azukaruko a {
    font-size: 18px;
    margin-bottom: 10px;
}

.azukaruko-contents {
    margin-bottom: 0px;
}
.azukaruko-left {
    width: 35%;
}
.azukaruko-right {
    width: 62%;
}
.azukaruko-number {
    width: 12%;
}
.azukaruko-txt {
    width: 85%;
}
.azukaruko-midashi {
    font-size: 16px;
    margin-bottom: 5px;
}
.azukaruko-txt p {
    font-size: 14px;
}
.azukaruko .text-open {
    font-size: 0.9em;
    margin-top: 20px;
    margin-bottom: 0px;
}
}

@media (min-width: 651px) {
.sp-item {
    display: none;
}
}


iframe.youtube-16-9 {
width: 100%;
height: auto;
aspect-ratio: 16 / 9;
}



.comingsoon {
    color: #724f45 !important;
    padding: 100px 0;
}

.shisetsu-intro_thumb img{
    border-radius: 0 50px 0 50px;
}

@media (max-width: 991px) {
.comingsoon {
    font-size: 1.5em !important;
    color: #724f45 !important;
    padding: 100px 0;
}
.shisetsu-intro_thumb img{
    border-radius: 0 20px 0 20px;
}
}

.mb-20 {
    margin-bottom: 20px;
}


    /* 250205追加 ------------------------------------------------*/

#mochimono h4 {
    max-width: 900px;
    color: #5abeb4;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 30px auto;
}
#mochimono .mochimono-item {
    background-color: #ffffff;
    padding: 20px 30px;
    border: 3px solid #5abeb4;
    border-radius: 0 20px 0 20px;
}
.mochimono-item h5{
    font-size: 25px;
    font-weight: bold;
    color: #5abeb4;
    margin: 0 0 5px;
}
.mochimono-item ul  {
    list-style: disc;
	list-style-position: inside;
}
.mochimono-item ul li {
    font-size: 20px;
    color: #724f45;
    text-indent: -1.5em;
    padding-left: 1.5em;
}
.mochimono-plus {
    width: 80px;
    margin: 20px auto ;
}
@media (max-width: 991px) {
#mochimono h4 {
    font-size: 20px;
    margin: 0 auto 10px auto;
}
#mochimono .mochimono-item {
    background-color: #ffffff;
    padding: 15px 20px;
    border: 2px solid #5abeb4;
    border-radius: 0 20px 0 20px;
}
.mochimono-item h5{
    font-size: 18px;
    margin: 0 0 5px;
}
.mochimono-item ul li {
    font-size: 15px;
    color: #724f45;
}
.mochimono-plus {
    width: 50px;
    margin: 15px auto ;
}

