@charset "UTF-8";

/*
	Theme Name: nagino-clinic
	Author: none
	Version: none
*/

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

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

html, body {
    overflow-x: hidden;
}

body {
    color: #3e3a39;
    line-height: 1.7;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
    letter-spacing: 2px;
}

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

h1, h2, h3, h4, h5, h6 {
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 991px) {

    body {
        padding: 60px 0 0 0;
    }
}

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

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

.header {
    position: relative;
    z-index: 1;
}

.header-nav {
    padding: 40px 0 0 0;
    max-width: 1230px;
    margin: 0 auto;
}

.header-nav > ul {
    display: flex;
    justify-content: space-around;
}

.header-nav > ul > li > a {
    padding: 0 0 5px 0;
    opacity: 1;
}

.header-nav > ul > li > span {
    padding: 0 0 5px 0;
    opacity: 1;
    cursor: pointer;
}

.header-nav > ul > li > a:hover {
    border-bottom: 2px solid #63b6d0;
}

.header-nav > ul > li > span:hover {
    border-bottom: 2px solid #63b6d0;
}

.header-nav_logo a:hover {
    border-bottom: none !important;
}

.header-nav_logo-link:hover {
    border-bottom: none !important;
}

.header-nav_contact-link:hover {
    border-bottom: none !important;
}

.header-nav_logo {
    order: 1;
    max-width: 230px;
    margin: 0 10px;
}

.header-nav_item {
    color: #003d56;
    font-size: 16px;
    margin: 25px 10px 0 10px;
    position: relative;
}

.header-nav_item:nth-of-type(n+6) {
    -webkit-box-ordinal-group: 3;
    order: 2;
}

.header-nav_contact {
    max-width: 210px;
    width: 210px;
}

.header-nav_submenu {
    background-color: #63b6d0;
    padding: 5px 20px;
    display: none;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    width: 320px;
 }
 
.header-nav_submenu::before {
    content: "";
    display: block;
    position: absolute;
    top: -7.5px;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    width: 15px;
    height: 15px;
    background-color: #63b6d0;
    border-radius: 50%;
}

.header-nav_submenu li {
    border-bottom: 2px dotted #ffffff;
}

.header-nav_submenu li:last-child {
    border-bottom: none;
}

.header-nav_submenu li a {
    font-size: 16px;
    color: #ffffff;
    padding: 10px 0;
    display: block;
    text-align: center;
}

@media (max-width: 1250px) {
    
    .header-nav {
        padding: 20px 0 0 0;
    }
    
    .header-nav_logo {
        max-width: 150px;
    }
    
    .header-nav_item {
        font-size: 14px;
        margin: 5px 7.5px 0 7.5px;
    }
    
    .header-nav_contact {
        max-width: 150px;
        width: 150px;
    }
    
    .header-nav_submenu {
        padding: 5px 15px;
        width: 250px;
     }
     
    .header-nav_submenu::before {
        top: -5px;
        width: 10px;
        height: 10px;
    }
    
    .header-nav_submenu li a {
        font-size: 13px;
        padding: 5px 0;
    }
}

/* headersp ------------------------------------------------*/

 .headersp {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 980;
    width: 100%;
    height: 60px;
    padding: 10px 15px;
 }
 
 .headersp-logo {
    max-width: 180px;
}
 
 .headersp-toggle {
	width: 32px;
	height: 32px;
    background-image: url(assets/img/common/headersp-toggle-open.png);
    background-repeat: no-repeat;
    background-size: 32px 32px;
    cursor: pointer;
    position: fixed;
    top: 12px;
    right: 15px;
    z-index: 990;
    font-size: 0;
}

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

.headersp-overlay {
	opacity: 0;
	visibility: hidden;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
    background-color: #63b6d0;
	z-index: 970;
	padding: 20px;
	transition: opacity .6s cubic-bezier(.52, .08, .18, 1);
	overflow-y: auto;
}

.headersp-overlay.open {
	opacity: 1;
	visibility: visible;
}

.headersp-nav_item {
    border-bottom: 2px dotted #ffffff;
}

.headersp-nav > div > a {
	font-size: 22px;
	color: #ffffff;
    display: block;
    text-align: center;
	padding: 15px 0;
}

.headersp-nav_list .column-item {
    margin: 0 0 20px 0;
}

.headersp-nav_title {
	font-size: 22px;
	color: #ffffff;
    text-align: center;
	margin: 10px 0;
}

.headersp-nav_list a {
    display: flex;
    width: 250px;
    align-items: center;
    font-size: 17px;
    color: #ffffff;
    line-height: 1.4;
}

.headersp-nav_list-icon {
    width: 60px;
    height: 60px;
    margin: 0 10px 0 0;
}

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

.footer-top {
    background-color: #003d56;
}

.footer-top_left {
    background-color: #003d56;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: 50px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-top_right {
    background-color: #63b6d0;
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-left: 50px;
    padding-top: 30px;
    padding-bottom: 40px;
}

.footer-info_logo {
    max-width: 390px;
	margin: 0 0 30px 0;
}

.footer-info_address {
	font-size: 18px;
	color: #ffffff;
	margin: 0 0 10px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.footer-info_tel {
	margin: 0 0 40px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.footer-info_tel-num {
    max-width: 450px;
	margin: 0 0 10px 0;
}

.footer-info_tel-text {
	font-size: 15px;
	color: #ffffff;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.footer-bar_privacy a {
	font-size: 15px;
	color: #ffffff;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.footer-bar_copyright {
	font-size: 15px;
	color: #ffffff;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.footer-contact {
    max-width: 400px;
	margin: 0 0 25px 0;
}

.footer-sitemap .row-outer {
    margin: 0 -10px;
}

.footer-sitemap .col-inner {
    padding: 0 10px;
}

.footer-sitemap_list ul {
    padding: 0 0 0 10px;
    border-left: 1px solid #ffffff;
}

.footer-sitemap_list ul li {
    font-size: 15px;
    color: #003d56;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.footer-sitemap_list ul li a .en {
    font-size: 13px;
    color: #ffffff;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.footer-bottom {
    background-color: #e6b14c;
    padding: 20px 0;
}

.footer-cooperatelist ul {
    display: flex;
}

.footer-cooperatelist ul li {
    width: 50%;
    margin: 0 20px;
}
    
@media (max-width: 991px) {

    .footer-top {
        background-color: #003d56;
    }
    
    .footer-top_left {
        padding: 40px 15px 70px;
        margin; 0;
    }
    
    .footer-top_right {
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        padding: 40px 15px;
    }
    
    .footer-info_address {
    	font-size: 16px;
    	margin: 0 0 5px 0;
    }
    
    .footer-info_tel-num {
        max-width: 300px;
    	margin: 0 0 10px 0;
    }

    .footer-bar_copyright {
    	font-size: 15px;
    	color: #ffffff;
        font-family: "M PLUS 1p", sans-serif;
        font-weight: 400;
    }
    
    .footer-contact {
        max-width: 350px;
    	margin: 0 auto 15px auto;
    }
    
    .footer-bottom {
        padding: 20px 0 60px 0;
    }
    
    .footer-cooperatelist ul {
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-cooperatelist ul li {
        width: 100%;
        margin: 0 0 10px 0;
    }
}

/* pager ------------------------------------------------*/

.common-pager {
    text-align: center;
    margin: 100px 0 150px 0;
}

.common-pager .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.common-pager a.page-numbers,
.common-pager .current,
.common-pager .dots {
    font-size: 24px;
    color: #003d56;
    text-align: center;
    margin: 0 30px;
    line-height: 1;
}

.common-pager .current {
    color: #ffffff;
    background-color: #e6b14c;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding-top: 10px;
}

.common-pager a.prev::before {
    content: "≪";
    font-size: 24px;
	margin: 0 50px 0 0;
}

.common-pager a.next::after {
    content: "≫";
    font-size: 24px;
	margin: 0 0 0 50px;
}

@media (max-width: 991px) {

    .common-pager {
        margin: 50px 0;
    }
    
    .common-pager a.page-numbers,
    .common-pager .current,
    .common-pager .dots {
        font-size: 16px;
        margin: 0 10px;
    }
    
    .common-pager .current {
        width: 35px;
        height: 35px;
        padding-top: 8px;
    }
    
    .common-pager a.prev::before {
        content: "≪";
        font-size: 16px;
    	margin: 0 10px 0 0;
    }
    
    .common-pager a.next::after {
        content: "≫";
        font-size: 16px;
    	margin: 0 0 0 10px;
    }
}

/* fixedmenu ------------------------------------------------*/

.common-fixedmenu {
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 888;
}

.common-fixedmenu ul li {
    max-width: 160px;
    margin: 0 0 5px 0;
}

.common-fixedmenusp {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
}

.common-fixedmenusp ul {
    display: flex;
}

.common-fixedmenusp ul li {
    width: calc(100%/3);
}

.common-fixedmenusp ul li a {
    display: block;
    background-color: #e6b14c;
    text-align: center;
    padding: 10px;
    border: 1px solid #ffffff;
}

.common-fixedmenusp ul li:nth-child(2) a {
    background-color: #003d56;
}

.common-fixedmenusp ul li:nth-child(3) a {
    background-color: #63b6d0;
}

.common-fixedmenusp ul li a img {
    width: 90px;
}

/* bigheader ------------------------------------------------*/

.common-bigheader {
    background-image: url("assets/img/common/common-bigheader.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    margin: -90px 0 0 0;
}

.common-bigheader_label {
    background-image: url("assets/img/common/common-bigheader_label.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
    padding: 20px 0;
}

h1.common-bigheader_label-heading {
	font-size: 45px;
	color: #ffffff;
    line-height: 1;
    text-shadow: 0 0 4px rgb(0, 0, 0, 0.4);
}

h1.common-bigheader_label-heading .en {
    display: block;
    font-size: 20px;
    margin: 10px 0 0 0;
}

@media (max-width: 1250px) { 

    .common-bigheader {
        margin: -70px 0 0 0;
    }    
}

@media (max-width: 991px) {

    .common-bigheader {
        background-image: url("assets/img/common/common-bigheader-sp.png");
        padding: 40px 0;
        margin:  0;
    }
        
    .common-bigheader_label {
        background-image: url("assets/img/common/common-bigheader_label-sp.png");
    }
    
    h1.common-bigheader_label-heading {
    	font-size: 30px;
    }
    
    h1.common-bigheader_label-heading .en {
        font-size: 18px;
        margin: 5px 0 0 0;
    }
}

/* breadcramb ------------------------------------------------*/

.common-breadcramb {
    margin: 15px 0 150px 0;
}

.common-breadcramb ul {
    display: flex;
}

.common-breadcramb li {
    font-size: 14px;
    color: #003d56;
}

.common-breadcramb li::after {
    content: "＞";
    margin: 0 5px;
}

.common-breadcramb li:last-child::after {
    content: "";
}

.common-breadcramb_homeicon {
    width: 25px;
    height: 25px;
    vertical-align: top;
}

@media (max-width: 991px) {

    .common-breadcramb {
        margin: 15px 0 50px 0;
    }
    
    .common-breadcramb li {
        font-size: 14px;
        color: #003d56    }
    
    .common-breadcramb li::after {
        content: "＞";
        margin: 0 2px;
    }
    
    .common-breadcramb_homeicon {
        width: 20px;
        height: 20px;
    }
}

/* separate ------------------------------------------------*/

.common-separate_circle::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-color: #e6b14c;
    margin: 0 auto;
    border-radius: 50%;
}

 .common-circle {
    text-align: center;
}
  
.common-circle::before {
    font-size: 24px;
    content: "●";
    color: #e6b14c;
}
    
@media (max-width: 991px) {

    .common-separate_circle::before {
        width: 12px;
        height: 12px;
    }

    .common-circle::before {
        font-size: 15px;
    }
}

/* container ------------------------------------------------*/

.container.width-850 {
    max-width: 850px;
}

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

/* common ------------------------------------------------*/

.common-style_heading {
	font-size: 40px;
	color: #003d56;
    text-align: center;
	margin: 0 0 50px 0;
    position: relative;
}

.common-style_heading::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #e6b14c;
    margin: 0 auto 15px auto;
}

.common-style_heading .en {
	font-size: 20px;
    display: block;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

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

.top-hero {
    margin: -90px auto 90px auto;
    padding: 0 15px;
    max-width: 1300px;
}

.top-hero .bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    background: none;
    margin-bottom: 0;
}

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

.top-news {
    background: linear-gradient(to right,  #ffffff 0%,#d0e9f1 100%);
	padding: 90px 0;
	margin: 0 0 70px 0;
}

h2.top-news_heading {
    position: relative;
}

h2.top-news_heading .top-news_heading-button {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 70%;
}

.top-news_postlist .row-outer {
    margin: 0 -10px;
}

.top-news_postlist .col-inner {
    padding: 0 10px;
}

.top-news_postlist-list {
    background-color: #ffffff;
    border-radius: 20px;
	padding: 10px 15px;
}

.top-news_postlist-list table {
    width: 100%;
}

.top-news_postlist-list table tr {
    border-bottom: 2px dotted #b0dbe7;
}

.top-news_postlist-list table tr:last-child {
    border-bottom: none;
}

.top-news_postlist-list table td.top-news_postlist-list_date {
	font-size: 18px;
	padding: 10px;
	width: 150px;
}

.top-news_postlist-list table td.top-news_postlist-list_excerpt {
	font-size: 18px;
	padding: 10px;
}

/* about ------------------------------------------------*/

.top-about_overview {
    padding: 80px 0 30px 0;
    background-image: url("assets/img/index/top-about_overview.png");
    margin-right: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
	margin-bottom: 200px;
	background-position: top right;
	background-size: cover;
}

.top-about_overview .row-outer {
    margin: 0 -25px;
}

.top-about_overview .col-inner {
    padding: 0 25px;
}

.top-about_overview-thumb {
    position: relative;
}

.top-about_overview-thumb img {
    width: 650px;
    max-width: 650px;
    position: absolute;
    top: 0;
    right: 0;
}

h3.top-about_overview-heading {
	font-size: 30px;
	color: #ffffff;
	margin: 50px 0 20px 0;
}

p.top-about_overview-text {
	font-size: 18px;
	color: #ffffff;
	margin: 0 0 20px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.top-about_overview-button {
    display: block;
    max-width: 240px;
    margin: 0 0 0 auto;
}

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

.top-guide {
	margin: 0 0 200px 0;
}

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

.top-guide_menu ul {
    display: flex;
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto -60px auto;
}

.top-guide_menu ul li {
    max-width: 250px;
    text-align: center;
    margin: 0 60px;
}

.top-guide_menu ul li img {
    max-width: 150px;
}

.top-guide_menu-icon_text {
	font-size: 26px;
	color: #003d56;
	margin: 10px 0 0 0;
}

/* calender ------------------------------------------------*/

.top-calender {
	margin: 0 0 150px 0;
}

.top-calender_item {
	margin: 0 0 50px 0;
}

h3.top-calender_embed-heading {
    max-width: 130px;
    display: block;
    margin: 0 auto;
}

.top-calender_embed-iframe {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
    background-color: #000000;
}

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

/* bistime ------------------------------------------------*/

.top-bistime {
	margin: 0 0 150px 0;
}

.top-bistime_item {
	margin: 0 0 100px 0;
}

.top-bistime_schedule .row-outer {
    margin: 0 -7.5px;
}

.top-bistime_schedule .col-inner {
    padding: 0 7.5px;
}

.top-bistime_schedule-icon {
	margin: 10px 0 0 0;
}

.top-bistime_schedule-icon_text {
	font-size: 26px;
	color: #003d56;
    text-align: center;
    margin: 5px 0 0 0;
}

.top-bistime_schedule-timetable_text {
	font-size: 17px;
	margin: 10px 0 0 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

h3.top-bistime_notice-heading {
	font-size: 24px;
	color: #003d56;
	margin: 0 0 30px 0;
}

h3.top-bistime_notice-heading .strong {
    color: #e6b14c;
}

h4.top-bistime_notice-heading {
	font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
}

h4.top-bistime_notice-heading .icon {
    color: #e6b14c;
}

p.top-bistime_notice-text {
	font-size: 18px;
	margin: 0 0 30px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

/* credit ------------------------------------------------*/

.top-credit {
	margin: 0 0 150px 0;
}

h2.top-credit_heading {
    border-bottom: 2px dotted #003d56;
    padding: 0 0 30px 0;
	margin: 0 0 20px 0;
}

.top-credit_lead {
	font-size: 24px;
	text-align: center;
	margin: 0 0 20px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

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

.top-info {
	margin: 0 0 100px 0;
}

.top-info_company {
    border-bottom: 1px dotted #003d56;
    padding: 0 0 30px 0;
	margin: 0 0 50px 0;
}

.top-info_company-contact_address {
	font-size: 18px;
	color: #003d56;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.top-info_company-contact_tel {
	font-size: 18px;
	color: #003d56;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.top-info_company-contact_tel img {
	max-width: 270px;
}

.top-info_about .row-outer {
    margin: 0 -50px;
}

.top-info_about .col-inner {
    padding: 0 50px;
}

.top-info_about-list ul li {
	margin: 0 0 40px 0;
}

h3.top-info_about-list_heading {
	font-size: 18px;
	color: #009db8;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 700;
}

h4.top-info_about-list_heading {
	font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

h4.top-info_about-list_heading .icon {
	color: #009db8;
}

p.top-info_about-list_text {
	font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.top-info_about-map {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    border-radius: 30px;
}

.top-info_about-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 1250px) {

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

@media (max-width: 991px) {

    /* common ------------------------------------------------*/
    
    .common-style_heading {
    	font-size: 28px;
    	margin: 0 0 20px 0;
    }
    
    .common-style_heading::before {
        width: 12px;
        height: 12px;
        margin: 0 auto 5px auto;
    }
    
    .common-style_heading .en {
    	font-size: 20px;
        display: block;
        margin: 0 auto;
    }
    
    /* hero ------------------------------------------------*/

    .top-hero {
        margin: 0 auto;
        padding: 0;
    }
    
    /* news ------------------------------------------------*/
    
    .top-news {
    	padding: 50px 0;
    	margin: 0 0 50px 0;
    }
    
    h2.top-news_heading {
    	margin: 0 0 10px 0;
    }
    
    h2.top-news_heading .top-news_heading-button {
        bottom: 35%;
        left: 50%;
        width: 45%;
    }
    
    .top-news_postlist .row-outer {
        margin: 0
    }
    
    .top-news_postlist .col-inner {
        padding: 0;
    }
    
    .top-news_postlist-list {
        border-radius: 10px;
    }
    
    /* about ------------------------------------------------*/
    
    .top-about_overview {
        padding: 50px 15px;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
    	margin-bottom: 50px;
    }
    
    .top-about_overview .row-outer {
        margin: 0;
    }
    
    .top-about_overview .col-inner {
        padding: 0;
    }
    
    .top-about_overview-thumb img {
        width: 100%;
        max-width: 100%;
        position: static;
    }
    
    h3.top-about_overview-heading {
    	font-size: 30px;
    	margin: 30px 0 20px 0;
    }
    
    .top-about_overview-button {
        margin: 0 auto;
    }
    
    /* guide ------------------------------------------------*/
    
    .top-guide {
    	margin: 0 0 100px 0;
    }
    
    .top-guide_item {
    	margin: 0 0 50px 0;
    }
    
    .top-guide_menu ul {
        width: 100%;
        max-width: 350px;
        flex-wrap: wrap;
        margin: 0 auto -50px auto;
    }
    
    .top-guide_menu ul li {
        max-width: 100%;
        width: 50%;
        margin: 0 0 30px 0;
    }
    
    .top-guide_menu ul li img {
        max-width: 130px;
    }
    
    .top-guide_menu-icon_text {
    	font-size: 18px;
    	margin: 2px 0 0 0;
    }
    
    /* calender ------------------------------------------------*/
    
    .top-calender {
    	margin: 0 0 50px 0;
    }
    
    .top-calender_item {
    	margin: 0 0 30px 0;
    }
    
    h3.top-calender_embed-heading {
        max-width: 90px;
    }
    
    /* bistime ------------------------------------------------*/
    
    .top-bistime {
    	margin: 0 0 100px 0;
    }
    
    .top-bistime_item {
    	margin: 0 0 50px 0;
    }
    
    .top-bistime_schedule-icon_text {
    	font-size: 16px;
        margin: 2px 0 0 0;
    }
    
    .top-bistime_schedule-timetable_text {
    	font-size: 13px;
    	margin: 5px 0 0 0;
    }
    
    h3.top-bistime_notice-heading {
    	font-size: 18px;
    	margin: 0 0 20px 0;
    }
    
    h4.top-bistime_notice-heading {
    	font-size: 15px;
    }
    
    p.top-bistime_notice-text {
    	font-size: 15px;
    	margin: 0 0 20px 0;
    }
    
    /* credit ------------------------------------------------*/
    
    .top-credit {
    	margin: 0 0 100px 0;
    }
    
    h2.top-credit_heading {
        padding: 0 0 20px 0;
    	margin: 0 0 10px 0;
    }
    
    .top-credit_lead {
    	font-size: 16px;
    }
    
    /* info ------------------------------------------------*/
    
    .top-info {
    	margin: 0 0 80px 0;
    }
    
    .top-info_company {
        padding: 0 0 20px 0;
    	margin: 0 0 20px 0;
    }
    
    .top-info_company-contact_address {
    	font-size: 16px;
    }
    
    .top-info_company-contact_tel {
    	font-size: 16px;
    }
    
    .top-info_company-contact_tel img {
    	max-width: 200px;
    }
    
    .top-info_about .row-outer {
        margin: 0;
    }
    
    .top-info_about .col-inner {
        padding: 0;
    }
    
    .top-info_about-list ul li {
    	margin: 0 0 20px 0;
    }
    
    h3.top-info_about-list_heading {
    	font-size: 16px;
    }
    
    h4.top-info_about-list_heading {
    	font-size: 16px;
    }
    
    p.top-info_about-list_text {
    	font-size: 16px;
    }
    
    .top-info_about-map {
        border-radius: 20px;
    }
}


/*================================================================================
news
================================================================================*/

.newslist-postlist_time {
    padding: 10px 0;
    width: 150px;
    border-right: 50px solid #ffffff;
}

.newslist-postlist_time .date {
	font-size: 20px;
	color: #009db8;
	border-bottom: 3px solid #b0dbe7;
	display: inline-block;
    padding: 0 0 20px 0;
}

h3.newslist-postlist_excerpt-heading {
	font-size: 32px;
	border-bottom: 4px dotted #b0dbe7;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
	color: #003d56;
}

.newslist-postlist_excerpt-textbox p {
	font-size: 20px;
	text-align: justify;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.newslist-postlist ul li {
	margin: 0 0 50px 0;
}

@media (max-width: 991px) {

    .newslist-postlist_time {
        padding: 0;
        width: 100%;
    	display: block;
        border-right: none;
    }
    
    .newslist-postlist_excerpt {
        width: 100%;
    	display: block;
    }
    
    .newslist-postlist_time .date {
    	font-size: 14px;
    	border-bottom: none;
    	display: block;
        padding: 0;
    }
    
    h3.newslist-postlist_excerpt-heading {
    	font-size: 24px;
    	border-bottom: 2px dotted #b0dbe7;
    	padding: 0 0 5px 0;
    	margin: 0 0 15px 0;
    }
    
    .newslist-postlist_excerpt-textbox p {
    	font-size: 16px;
    	margin: 0 0 15px 0;
    }
    
    .newslist-postlist ul li {
    	margin: 0 0 30px 0;
    }
}

/*================================================================================
qa
================================================================================*/

.qa-scrollmenu_list {
	margin: 0 0 150px 0;
}

.qa-scrollmenu_list ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}

.qa-scrollmenu_list ul li {
    max-width: 320px;
    text-align: center;
    margin: 0 10px 20px 10px;
}

.qa-quesion_item {
	margin: 0 0 100px 0;
}

h2.qa-quesion_heading {
	font-size: 36px;
	text-align: center;
	color: #009db8;
	margin: 0 0 70px 0;
	display: flex;
	align-items: center;
    justify-content: space-around;
}

h2.qa-quesion_heading::before {
    content: "●";
	font-size: 18px;
	color: #e6b14c;
	margin: 0 30px 0 auto;
}

h2.qa-quesion_heading::after {
    content: "●";
	font-size: 18px;
	color: #e6b14c;
	margin: 0 auto 0 30px;
}

.qa-quesion_list ul li {
	margin: 0 0 80px 0;
}

h3.qa-quesion_list-heading {
	font-size: 28px;
	line-height: 1.4;
	color: #003d56;
	border-bottom: 2px dotted #b0dbe7;
	margin: 0 0 15px 0;
	position: relative;
	padding: 0 0 15px 65px;
}

h3.qa-quesion_list-heading::before {
    content: "";
    display: block;
    width: 55px;
    height: 55px;
    background-image: url("assets/img/qa/qa-quesion_list-heading-q.png");
    background-size: 55px 55px;
    position: absolute;
    top: 0;
    left: 0;
}

p.qa-quesion_list-text {
	font-size: 18px;
	text-align: justify;
	position: relative;
	padding: 0 0 0 65px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

p.qa-quesion_list-text::before {
    content: "";
    display: block;
    width: 55px;
    height: 55px;
    background-image: url("assets/img/qa/qa-quesion_list-heading-a.png");
    background-size: 55px 55px;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {

    .qa-scrollmenu_list {
    	margin: 0 0 50px 0;
    }
    
    .qa-scrollmenu_list ul {
        display: block;
        margin: 0 auto;
    }
    
    .qa-scrollmenu_list ul li {
        max-width: 200px;
        text-align: center;
        margin: 0 0 10px 0;
    }
    
    .qa-quesion_item {
    	margin: 0 0 60px 0;
    }
    
    h2.qa-quesion_heading {
    	font-size: 24px;
    	margin: 0 0 20px 0;
    }
    
    h2.qa-quesion_heading::before {
    	font-size: 12px;
    	margin: 0 10px 0 auto;
    }
    
    h2.qa-quesion_heading::after {
    	font-size: 12px;
    	margin: 0 auto 0 10px;
    }
    
    .qa-quesion_list ul li {
    	margin: 0 0 30px 0;
    }
    
    h3.qa-quesion_list-heading {
    	font-size: 24px;
    	margin: 0 0 15px 0;
    	padding: 0 0 5px 45px;
    }
    
    h3.qa-quesion_list-heading::before {
        width: 35px;
        height: 35px;
        background-size: 35px 35px;
        position: absolute;
        top: 5px;
        left: 0;
    }
    
    p.qa-quesion_list-text {
    	font-size: 16px;
    	padding: 0 0 0 45px;
    }
    
    p.qa-quesion_list-text::before {
        width: 35px;
        height: 35px;
        background-size: 35px 35px;
    }
}

/*================================================================================
guide
================================================================================*/

.guide-message {
	margin: 0 0 100px 0;
}

.guide-message_text {
	font-size: 36px;
	color: #003d56;
	text-align: center;
}

.guide-message_text .strong {
	color: #e6b14c;
}

.guide-message .common-separate_circle {
    margin: 80px 0 0 0;
}

.guide-overview {
	margin: 0 0 100px 0;
}

.guide-overview_item {
    background: linear-gradient(to right,  #ffffff 0%,#d0e9f1 100%);
    padding: 80px 0;
}

.guide-overview_item.bg-white {
    background: #ffffff;
}

.guide-overview .row-outer {
    margin: 0 -30px;
}

.guide-overview .col-inner {
    padding: 0 30px;
}

h3.guide-overview_heading {
	font-size: 45px;
	color: #003d56;
	line-height: 1.4;
	margin: 0 0 30px 0;
	display: flex;
	align-items: center;
}

h3.guide-overview_heading .en {
	font-size: 20px;
	display: block;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-weight: 400;
}

.guide-overview_heading-icon {
    max-width: 135px;
    margin: 0 20px 0 0;
}

p.guide-overview_text {
	font-size: 20px;
    text-align: justify;
	margin: 0 0 40px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.guide-overview_thumb {
    margin-right: calc(100% - 50vw);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}

.guide-overview_item.pattern-two .guide-overview_thumb {
    margin-left: calc(100% - 50vw);
    margin-right: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.guide-contact_division {
    border-top: 1px solid #003d56;
    border-bottom: 1px solid #003d56;
    padding: 50px 0;
}

.guide-contact {
	margin: 0 0 100px 0;
}

.guide-contact_division .row-outer {
    margin: 0 -15px;
}

.guide-contact_division .col-inner {
    padding: 0 15px;
}

h3.guide-contact_division-heading {
	font-size: 45px;
	color: #003d56;
	line-height: 1.4;
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
}

h3.guide-contact_division-heading .en {
	font-size: 20px;
	display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.guide-contact_division-icon {
    max-width: 90px;
    margin: 0 20px 0 0;
}

p.guide-contact_division-text {
	font-size: 20px;
    text-align: justify;
	margin: 0 0 20px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.guide-contact_division-bistime {
	display: flex;
	align-items: center;
}

.guide-contact_division-bistime_num {
    max-width: 300px;
    margin: 0 10px 0 0;
}

.guide-contact_division-bistime_text {
	font-size: 20px;
	color: #003d56;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

@media (max-width: 991px) {

    .guide-message {
    	margin: 0 0 50px 0;
    }
    
    .guide-message_text {
    	font-size: 20px;
    }

    .guide-message .common-separate_circle {
        display: none;
    }
    
    .guide-overview {
    	margin: 0 0 60px 0;
    }
    
    .guide-overview_item {
        padding: 60px 0;
    }
    
    .guide-overview .row-outer {
        margin: 0;
    }
    
    .guide-overview .col-inner {
        padding: 0;
    }
    
    h3.guide-overview_heading {
    	font-size: 35px;
    	margin: 0 0 20px 0;
    }
    
    h3.guide-overview_heading .en {
    	font-size: 16px;
    }
    
    .guide-overview_heading-icon {
        max-width: 80px;
        margin: 0 10px 0 0;
    }
    
    p.guide-overview_text {
    	font-size: 16px;
    	margin: 0 0 20px 0;
    }
    
    .guide-overview_symptoms {
    	margin: 0 0 40px 0;
    }
    
    .guide-overview_thumb {
        margin-right: 0;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    
    .guide-overview_item.pattern-two .guide-overview_thumb {
        margin-left: 0;
        margin-right: 0;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    
    .guide-contact_division {
        border-top: 1px solid #003d56;
        border-bottom: 1px solid #003d56;
        padding: 30px 0;
    }
    
    .guide-contact {
    	margin: 0 0 100px 0;
    }
    
    .guide-contact_division .row-outer {
        margin: 0;
    }
    
    .guide-contact_division .col-inner {
        padding: 0;
    }
    
    .guide-contact_division-thumb {
        margin: 0 0 20px 0;
    }
    
    h3.guide-contact_division-heading {
    	font-size: 35px;
    	margin: 0 0 20px 0;
    }
    
    h3.guide-contact_division-heading .en {
    	font-size: 16px;
    }
    
    .guide-contact_division-icon {
        max-width: 80px;
        margin: 0 10px 0 0;
    }
    
    p.guide-contact_division-text {
    	font-size: 16px;
    }
    
    .guide-contact_division-bistime {
    	display: block;
    }
    
    .guide-contact_division-bistime_num {
        max-width: 300px;
        margin: 0 0 5px 0;
    }
    
    .guide-contact_division-bistime_text {
    	font-size: 16px;
    	display: block;
    }
}

/*================================================================================
recruit
================================================================================*/

.recruit-message {
	margin: 0 0 200px 0;
}

.recruit-message_slider {
    margin: 0 0 150px 0; 
}

.recruit-message .common-separate_circle {
	margin: 50px 0 100px 0;
}

h2.recruit-message_heading {
	font-size: 36px;
	color: #003d56;
	text-align: center;
}

p.recruit-message_text {
    font-size: 20px;
    text-align: justify;
	margin: 0 0 50px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.recruit-guideline {
	background-image: url("assets/img/recruit/recruit-guideline_back.png");
	background-size: cover;
    padding: 70px 0 150px 0;
}

.recruit-guideline_outline {
	margin: 0 0 100px 0;
}

.recruit-guideline_outline-inner {
    background-color: #ffffff;
    padding: 50px 40px;
}

.recruit-guideline_outline-table table tr th {
    width: 180px;
    border-bottom: 1px solid #e6b14c;
    padding: 20px 10px;
    font-size: 18px;
    color: #003d56;
    font-weight: 500;
}

.recruit-guideline_outline-table table tr td {
    border-bottom: 1px solid #969696;
    padding: 20px 10px;
    font-size: 18px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.recruit-guideline_outline-table table tr:last-child th {
    border-bottom: none;
}

.recruit-guideline_outline-table table tr:last-child td {
    border-bottom: none;
}

.recruit-action_inner {
    padding: 50px 150px;
    background-color: #ffffff;
}

h3.recruit-action_heading {
    background-color: #003d56;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
	padding: 15px 20px;
}

h4.recruit-action_heading { 
	margin: 0 0 20px 0;
}

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

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

h5.recruit-action_buttons-heading { 
	font-size: 20px;
	color: #293e4d;
	text-align: center;
	margin: 0 0 10px 0;
}

.recruit-action_buttons-button {
	margin: 0 auto 10px auto;
	display: block;
	max-width: 320px;
}

p.recruit-action_buttons-text { 
	font-size: 16px;
	text-align: center;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

@media (max-width: 991px) {

    .recruit-message {
    	margin: 0 0 50px 0;
    }
    
    .recruit-message_slider {
        margin: 0 0 50px 0; 
    }
    
    .recruit-message .common-separate_circle {
    	margin: 50px 0 30px 0;
    }
    
    h2.recruit-message_heading {
    	font-size: 20px;
    }
    
    p.recruit-message_text {
        font-size: 16px;
    	margin: 0 0 30px 0;
    }
    
    .recruit-guideline {
    	background-image: url("assets/img/recruit/recruit-guideline_back.png");
    	background-size: cover;
        padding: 60px 0;
    }
    
    .recruit-guideline_outline {
    	margin: 0 0 40px 0;
    }
    
    .recruit-guideline_outline-inner {
        padding: 30px 20px;
    }
    
    .recruit-guideline_outline-table table tr th {
        width: 110px;
        padding: 10px 0;
        font-size: 16px;
    }
    
    .recruit-guideline_outline-table table tr td {
        padding: 10px 0;
        font-size: 16px;
    }
    
    .recruit-action_inner {
        padding: 30px;
    }
    
    h3.recruit-action_heading {
        font-size: 18px;
    	padding: 10px 15px;
    }
    
    h4.recruit-action_heading { 
    	margin: 0 0 20px 0;
    }
    
    .recruit-action_buttons .row-outer {
        margin: 0;
    }
    
    .recruit-action_buttons .col-inner {
        padding: 0;
    }
    
    .recruit-action_buttons .column-item {
        margin: 0 0 20px 0;   
    }
    
    h5.recruit-action_buttons-heading { 
    	font-size: 18px;
    	margin: 0 0 5px 0;
    }
    
    .recruit-action_buttons-button {
    	margin: 0 auto 5px auto;
    }
    
    p.recruit-action_buttons-text { 
    	font-size: 14px;
    }
}

/*================================================================================
about
================================================================================*/

.about-message {
	margin: 0 0 100px 0;
}

.about-message  .container.width-1000 {
    max-width: 1000px;
}

.about-message .common-separate_circle {
    margin: 80px 0;
}

h2.about-message_heading {
	font-size: 36px;
	color: #003d56;
	text-align: center;
}

h2.about-message_heading .strong {
	color: #e6b14c;
}

.about-message_thumb {
	margin: 0 0 30px 0;
}

p.about-message_text {
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
	font-size: 20px;
	line-height: 1.8;
	text-align: justify;
	margin: 0 0 30px 0;
}

p.about-message_text .strong {
    color: #30acc6;
    font-size: 23px;
    letter-spacing: normal;
   font-weight: 700;
}

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

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

.about-message_top {
    color: #003d56;
	margin: 50px 0 0 0;
}

.about-message_top .pos {
	font-size: 30px;
	display: block;
}

.about-message_top .name {
	font-size: 40px;
}

.about-message_top .kana {
	font-size: 20px;
}

.about-message_top .strong {
    color: #e6b14c;
}

.about-career {
	margin: 0 0 100px 0;
}

h2.about-career_heading {
    max-width: 200px;
    margin: 0 auto 40px auto;
}

.about-career_name {
	font-size: 28px;
	color: #003d56;
	text-align: center;
	margin: 0 0 50px 0;
	border-bottom: 1px solid #e6b14c;
	padding: 0 0 30px 0;
}

h3.about-career_profile-heading {
	font-size: 28px;
	color: #003d56;
    margin: 0 0 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

h3.about-career_profile-heading .label {
	margin: 0 30px;
}

h3.about-career_profile-heading::before {
    content: "●";
	font-size: 18px;
	color: #e6b14c;
}

h3.about-career_profile-heading::after {
    content: "●";
	font-size: 18px;
	color: #e6b14c;
}

.about-career_profile-item {
	margin: 0 0 50px 0;
}

.about-career_profile-table table {
    width: 100%;
    margin: 0 0 20px 0;
}

.about-career_profile-table_year {
    width: 210px;
    font-size: 24px;
    color: #003d56;
    line-height: 1.5;
    padding: 0 0 15px 0;
}

.about-career_profile-table_month {
    width: 70px;
    font-size: 24px;
    color: #003d56;
    line-height: 1.5;
    border-right: 1px solid #e6b14c;
    padding: 0 0 15px 0;
}

.about-career_profile-table_data {
    font-size: 24px;
    color: #003d56;
    line-height: 1.5;
    padding: 0 0 15px 20px;
}

.about-career_profile-table_year {
    padding-bottom: 0;
}

.about-career_profile-table table tr.type2 .about-career_profile-table_month {
    width: 130px;
    padding-bottom: 0;
}

.about-career_profile-table table tr.type2 .about-career_profile-table_data {
    padding-bottom: 0;
}

h2.about-association_heading {
    max-width: 200px;
    margin: 0 auto 40px auto;
}

.about-association_list {
	margin: 0 0 100px 0;
}

.about-association_list ul li {
    font-size: 24px;
    color: #003d56;
	margin: 0 0 15px 0;
    text-indent: -1em;
    padding-left: 1em;
}

.about-association_list ul li::before {
    font-size: 24px;
    content: "●";
    color: #e6b14c;
}

.about-association_movie {
	padding-top: 56.25%;
	width: 100%;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 0 70px 0;
}

.about-association_movie video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}


@media (max-width: 991px) {

    .about-message {
    	margin: 0 0 50px 0;
    }
    
    .about-message .common-separate_circle {
        margin: 40px 0;
    }
    
    h2.about-message_heading {
    	font-size: 20px;
    }
    
    .about-message_thumb {
    	margin: 0 0 20px 0;
    }
    
    p.about-message_text {
    	font-size: 16px;
    	margin: 0 0 15px 0;
    }
    
    .about-message .row-outer {
        margin: 0;
    }
    
    .about-message .col-inner {
        padding: 0;
    }
    
    .about-message_top {
    	margin: 20px 0 0 0;
    }
    
    .about-message_top .pos {
    	font-size: 18px;
    }
    
    .about-message_top .name {
    	font-size: 25px;
    }
    
    .about-message_top .kana {
    	font-size: 16px;
    }
    
    .about-career {
    	margin: 0 0 50px 0;
    }
    
    h2.about-career_heading {
        max-width: 120px;
        margin: 0 auto 20px auto;
    }
    
    .about-career_name {
    	font-size: 20px;
    	margin: 0 0 30px 0;
    	padding: 0 0 15px 0;
    }
    
    h3.about-career_profile-heading {
    	font-size: 20px;
        margin: 0 0 15px 0;
    }
    
    h3.about-career_profile-heading .label {
    	margin: 0 10px;
    }
    
    h3.about-career_profile-heading::before {
    	font-size: 14px;
    }
    
    h3.about-career_profile-heading::after {
    	font-size: 14px;
    }
    
    .about-career_profile-item {
    	margin: 0 0 30px 0;
    }
    
    .about-career_profile-table table {
        width: 100%;
        margin: 0;
    }
    
    .about-career_profile-table table tr {    
        border-bottom: 1px solid #e6b14c;
    }
        
    .about-career_profile-table_year {
        width: 150px;
        display: block;
        float: left;
        font-size: 16px;
        padding: 10px 0 0 0;
    }
    
    .about-career_profile-table_month {
        width: 70px;
        display: block;
        float: left;
        font-size: 16px;
        border-right: none;
        padding: 10px 0 0 0;
    }
    
    .about-career_profile-table_data {
        font-size: 16px;
        display: block;
        clear: both;
        width: 100%;
        padding: 0 0 10px 0;
    }
    
    .about-career_profile-table table tr.type2 .about-career_profile-table_month {
        width: 100px;
    }
    
    .about-career_profile-table table tr.type2 .about-career_profile-table_data {
        padding: 0 0 10px 0;
    }
    
    h2.about-association_heading {
        max-width: 120px;
        margin: 0 auto 20px auto;
    }
    
    .about-association_list {
    	margin: 0 0 50px 0;
    }
    
    .about-association_list ul li {
        font-size: 16px;
    	margin: 0 0 5px 0;
    }
    
    .about-association_list ul li::before {
        font-size: 16px;
    }

    .about-association_movie {
    	border-radius: 10px;
    	margin: 0 0 50px 0;
    }
}

/*================================================================================
feature
================================================================================*/

.feature-environment {
	margin: 0 0 100px 0;
}

h2.feature-environment_heading {
    font-size: 36px;
    color: #003d56;
    line-height: 1.4;
	margin: 0 0 20px 0;
	text-align: center;
}

h2.feature-environment_heading img {
    max-width: 145px;
    display: block;
    margin: 0 auto 30px auto;
}

p.feature-environment_lead {
    font-size: 20px;
    text-align: center;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.feature-environment .row-outer {
    margin: 0 -15px;
}

.feature-environment .col-inner {
    padding: 0 15px;
}

.feature-environment_figure-thumb {
	margin: 0 0 10px 0;
}

.feature-environment_figure-thumb img{
	border-radius: 10px;
}

.feature-environment_figure-caption {
    font-size: 18px;
    text-align: center;
}

.feature-environment .common-circle {
    margin: 40px 0;
}

.feature-detail_item {
	padding: 60px 0;
}

.feature-detail_item.back-sky {
	padding: 60px 0;
	background-image: url("assets/img/feature/feature-detail_back.png");
	background-size: cover;
}

h2.feature-detail_heading {
    font-size: 36px;
    color: #003d56;
    line-height: 1.4;
	margin: 0 0 20px 0;
	text-align: center;
}

h2.feature-detail_heading img {
    max-width: 145px;
    display: block;
    margin: 0 auto 30px auto;
}

p.feature-detail_lead {
    font-size: 20px;
    text-align: center;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

p.feature-detail_lead.textalign-justify {
    text-align: justify;
}

.feature-detail .row-outer {
    margin: 0 -50px;
}

.feature-detail .col-inner {
    padding: 0 50px;
}

.feature-detail_figure-thumb {
	margin: 0 0 10px 0;
}

.feature-detail .common-circle {
    margin: 40px 0;
}

p.feature-detail_text {
    font-size: 20px;
    text-align: justify;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

@media (max-width: 991px) {

    .feature-environment {
    	margin: 0 0 50px 0;
    }
    
    h2.feature-environment_heading {
        font-size: 30px;
        margin: 0 0 15px 0;
    }
    
    h2.feature-environment_heading img {
        max-width: 120px;
        margin: 0 auto 15px auto;
    }
    
    p.feature-environment_lead {
        font-size: 18px;
    }
    
    .feature-environment .row-outer {
        margin: 0 -15px;
    }
    
    .feature-environment .col-inner {
        padding: 0 10px;
    }
    
    .feature-environment .column-item {
        margin: 0 0 20px 0;
    }
    
    .feature-environment_figure-thumb {
    	margin: 0 0 10px 0;
    }
    
    .feature-environment_figure-caption {
        font-size: 16px;
    }
    
    .feature-environment .common-circle {
        margin: 30px 0;
    }
    
    .feature-detail_item {
    	padding: 50px 0;
    }
    
    .feature-detail_item.back-sky {
    	padding: 50px 0;
    }
    
    h2.feature-detail_heading {
        font-size: 30px;
    	margin: 0 0 15px 0;
    }
    
    h2.feature-detail_heading img {
        max-width: 120px;
        margin: 0 auto 15px auto;
    }
    
    p.feature-detail_lead {
        font-size: 18px;
    }
    
    .feature-detail .row-outer {
        margin: 0;
    }
    
    .feature-detail .col-inner {
        padding: 0;
    }
    
    .feature-detail .common-circle {
        margin: 30px 0;
    }
    
    .feature-detail_list {
        margin: 0 0 20px 0;
    }
    
    p.feature-detail_text {
        font-size: 16px;
        margin: 0 0 20px 0;
    }
}

/*================================================================================
camera
================================================================================*/

.camera-about {
	margin: 0 0 100px 0;
}

h2.camera-about_heading {
    font-size: 40px;
    color: #003d56;
	margin: 0 0 20px 0;
	text-align: center;
}

.camera-about_visual-thumb {
	margin: 0 0 10px 0;
}

p.camera-about_visual-caption {
    font-size: 16px;
    text-align: right;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

h2.camera-able_heading {
    color: #ffffff;
}

.camera-able {
    padding: 50px 0 0 0;
    background-image: url("assets/img/index/top-about_overview.png");
	background-position: top right;
	background-size: auto 650px;
	margin-bottom: 200px;
	background-repeat: no-repeat;
}

.camera-able .row-outer {
    margin: 0 -25px;
}

.camera-able .col-inner {
    padding: 0 25px;
}

.camera-able_thumb {
    margin-right: calc(100% - 50vw);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
}

.camera-able_thumb img {
    object-fit: cover;
    height: 500px;
}

p.camera-able_text {
	font-size: 22px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.camera-recommed {
	margin: 0 0 100px 0;
}

.camera-sick {
	margin: 0 0 100px 0;
}

.camera-sick_visual {
    max-width: 730px;
    margin: 0 auto 50px auto;
}

.camera-sick_text {
    max-width: 850px;
	font-size: 22px;
    text-align: justify;
    margin: 0 auto;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.camera-sick_conclusion {
    padding: 50px 0;
    border-top: 2px solid #003d56;
    border-bottom: 2px solid #003d56;
	margin: 100px 0 0 0;
}

h3.camera-sick_conclusion-heading {
    font-size: 33px;
    color: #003d56;
	margin: 0 0 20px 0;
}

h3.camera-sick_conclusion-heading .strong {
    color: #e6b14c;
    font-size: 1.3em;
}

p.camera-sick_conclusion-text {
    font-size: 20px;
    text-align: justify;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.camera-choice {
	margin: 0 0 100px 0;
}

.camera-flow {
	padding: 100px 0;
    background-image: url("assets/img/camera/camera-flow_back.png");
    background-size: cover;
    background-repeat: no-repeat;
}

summary {
	display: block;
	list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary.camera-flow_list-heading {
    cursor: pointer;
}

.camera-flow_list-item {
	margin: 0 0 60px 0;
}

.camera-flow_content {
    position: relative;
    padding: 50px 60px;
    background-color: #ffffff;
    border: solid 3px #009db8;
	margin: 20px auto 0 auto;
	max-width: 1000px;
}

.camera-flow_content:before {
    content: "";
    position: absolute;
    top: -39px;
    left: 50%;
    margin-left: -15px;
    border: 20px solid transparent;
    border-bottom: 20px solid #ffffff;
    z-index: 2;
}

.camera-flow_content:after {
    content: "";
    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: -17px;
    border: 22px solid transparent;
    border-bottom: 22px solid #009db8;
    z-index: 1;
}

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

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

h3.camera-flow_content-heading {
    font-size: 35px;
    color: #003d56;
	margin: 0 0 20px 0;
    display: flex;
    border-bottom: 2px dotted #003d56;
    padding: 0 0 10px 0;
    line-height: 1.4;
}

h3.camera-flow_content-heading .small {
    font-size: 20px;
}

h3.camera-flow_content-heading::before {
    content: "●";
	font-size: 25px;
	color: #e6b14c;
	margin: 10px 10px 0 0;
}

.camera-flow_content-heading_iconlist {
    display: flex;
    margin: 0 0 0 15px;
}

.camera-flow_content-heading_iconlist li {
    margin: 0 3px;
    line-height: 1;
}

.camera-flow_content-heading_iconlist li img {
    width: 45px;
    height: 45px;
}

ul.camera-flow_content-list {
    margin: 0 0 30px 0;
}

ul.camera-flow_content-list li {
    font-size: 22px;
    text-align: justify;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.6;
    margin: 0 0 5px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

ul.camera-flow_content-list li .strong {
    color: #009db8;
}

ul.camera-flow_content-list li .marker {
    background:linear-gradient(transparent 70%, #cdebf1 60%);
}

.camera-flow_content-button {
    max-width: 400px;
    margin: 0 0 50px 0;
}

.camera-flow_content-note {
	margin: 0 0 30px 0;
}

.camera-flow_content-note_item {
	margin: 0 0 30px 0;
}

.camera-flow_content-illust {
    margin: 0 0 30px 0;
}

.camera-flow_content-illust_item {
	margin: 0 0 30px 0;
}

.camera-flow_content-illust.mb-50 .camera-flow_content-illust_item {
	margin: 0 0 50px 0;
}

p.camera-flow_content-text {
    font-size: 22px;
    text-align: justify;
	margin: 0 0 20px 0;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

p.camera-flow_content-text .color-skyblue {
    color: #009db8;
}

.camera-flow_content-graph {
	margin: 0 0 30px 0;
}

.camera-flow_bluecontent {
    position: relative;
    padding: 60px 100px;
    background-color: #d1e9f1;
    border: solid 3px #009db8;
	margin: 40px auto 0 auto;
	max-width: 1000px;
	border-radius: 20px;
}

.camera-flow_bluecontent:before {
    content: "";
    position: absolute;
    top: -39px;
    left: 50%;
    margin-left: -15px;
    border: 20px solid transparent;
    border-bottom: 20px solid #d1e9f1;
    z-index: 2;
}

.camera-flow_bluecontent:after {
    content: "";
    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: -17px;
    border: 22px solid transparent;
    border-bottom: 22px solid #009db8;
    z-index: 1;
}

.camera-flow_bluecontent-list_icon {
    max-width: 140px;
    width: 100%;
    margin: 0 30px 0 0;
}

.camera-flow_bluecontent-list ul li {
    display: flex;
    font-size: 30px;
    text-align: justify;
    color: #003d56;
    padding: 40px 0;
    border-bottom: 5px dotted #ffffff;
}

.camera-flow_bluecontent-list ul li .small {
    font-size: 20px;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

.camera-flow_bluecontent-list ul li .notes {
    font-size: 20px;
    vertical-align: top;
}

.camera-flow_bluecontent-list ul li:first-child {
    padding: 0 0 40px 0;
}

.camera-flow_bluecontent-list ul li:last-child {
    padding: 40px 0 0 0;
    border-bottom: none;
}

@media (max-width: 991px) {

    .camera-about {
    	margin: 0 0 30px 0;
    }
    
    h2.camera-about_heading {
        font-size: 25px;
    	margin: 0 0 15px 0;
    }
    
    p.camera-about_visual-caption {
        font-size: 14px;
        text-align: left;
    }
    
    h2.camera-able_heading {
        margin: 0 0 15px 0;
    }

    .camera-able {
        padding: 50px 0;
    	background-size: cover;
    	margin-bottom: 60px;
    }
    
    .camera-able .row-outer {
        margin: 0;
    }
    
    .camera-able .col-inner {
        padding: 0;
    }
    
    .camera-able_thumb {
        border-radius: 15px;
        margin: 0 0 20px 0;
    }
    
    .camera-able_thumb img {
        height: auto;
    }
    
    p.camera-able_text {
    	font-size: 16px;
    	color: #ffffff;
    }
    
    .camera-recommed {
    	margin: 0 0 60px 0;
    }
    
    .camera-sick {
    	margin: 0 0 60px 0;
    }
    
    .camera-sick_visual {
        max-width: 730px;
        margin: 0 auto 20px auto;
    }
    
    .camera-sick_text {
    	font-size: 16px;
    }
    
    .camera-sick_conclusion {
        padding: 20px 0;
    	margin: 60px 0 0 0;
    }
    
    h3.camera-sick_conclusion-heading {
        font-size: 20px;
    	margin: 0 0 15px 0;
    	text-align: center;
    }
    
    p.camera-sick_conclusion-text {
        font-size: 16px;
    }
    
    .camera-choice {
    	margin: 0 0 50px 0;
    }
    
    .camera-flow {
    	padding: 50px 0;
    }

    summary {
    	display: block;
    }
    
    summary.camera-flow_list-heading {
        cursor: pointer;
    }
    
    .camera-flow_list-item {
    	margin: 0 0 20px 0;
    }
    
    .camera-flow_content {
        padding: 20px;
        border: solid 2px #009db8;
    	margin: 20px 0 0 0;
    }
    
    .camera-flow_content:before {
        content: "";
        position: absolute;
        top: -34px;
        left: 50%;
        margin-left: -14px;
        border: 17px solid transparent;
        border-bottom: 17px solid #ffffff;
        z-index: 2;
    }
    
    .camera-flow_content:after {
        content: "";
        position: absolute;
        top: -40px;
        left: 50%;
        margin-left: -17px;
        border: 20px solid transparent;
        border-bottom: 20px solid #009db8;
        z-index: 1;
    }
    
    .camera-flow_content .row-outer {
        margin: 0;
    }
    
    .camera-flow_content .col-inner {
        padding: 0;
    }
    
    h3.camera-flow_content-heading {
        font-size: 25px;
    	margin: 0 0 10px 0;
        border-bottom: 1px dotted #003d56;
        padding: 0 0 5px 0;
    }
    
    h3.camera-flow_content-heading::before {
    	font-size: 15px;
    	margin: 8px 5px 0 0;
    }
    
    .camera-flow_content-heading_iconlist {
        margin: 0 0 0 10px;
    }
    
    .camera-flow_content-heading_iconlist li {
        margin: 0 2.5px;
    }
    
    .camera-flow_content-heading_iconlist li img {
        width: 30px;
        height: 30px;
    }
    
    .camera-flow_content-illust .row-outer {
        margin: 0 -5px;
    }
    
    .camera-flow_content-illust .col-inner {
        padding: 0 5px;
    }
    
    ul.camera-flow_content-list {
        margin: 0 0 15px 0;
    }
    
    ul.camera-flow_content-list li {
        font-size: 16px;
    }
    
    .camera-flow_content-button {
        max-width: 230px;
        margin: 0 0 30px 0;
    }

    .camera-flow_content-note {
    	margin: 0 0 30px 0;
    }
        
    .camera-flow_content-note_item {
    	margin: 0 0 15px 0;
    }
    
    .camera-flow_content-illust {
        margin: 0 0 30px 0;
    }
    
    .camera-flow_content-illust_item {
    	margin: 0 0 15px 0;
    }
    
    .camera-flow_content-illust.mb-50 .camera-flow_content-illust_item {
    	margin: 0 0 15px 0;
    }
    
    p.camera-flow_content-text {
        font-size: 16px;
    	margin: 0 0 15px 0;
    }

    .camera-flow_bluecontent {
        padding: 20px;
        border: solid 2px #009db8;
    	margin: 40px auto 0 auto;
    	border-radius: 10px;
    }
    
    .camera-flow_bluecontent:before {
        content: "";
        position: absolute;
        top: -34px;
        left: 50%;
        margin-left: -14px;
        border: 17px solid transparent;
        border-bottom: 17px solid #d1e9f1;
        z-index: 2;
    }
    
    .camera-flow_bluecontent:after {
        content: "";
        position: absolute;
        top: -40px;
        left: 50%;
        margin-left: -17px;
        border: 20px solid transparent;
        border-bottom: 20px solid #009db8;
        z-index: 1;
    }
    
    .camera-flow_bluecontent-list_icon {
        max-width: 100px;
        margin: 0 auto 10px auto;
    }
    
    .camera-flow_bluecontent-list ul li {
        display: block;
        font-size: 18px;
        padding: 20px 0;
        border-bottom: 2px dotted #ffffff;
    }
    
    .camera-flow_bluecontent-list ul li .small {
        font-size: 13px;
    }
    
    .camera-flow_bluecontent-list ul li .notes {
        font-size: 13px;
        vertical-align: top;
    }
    
    .camera-flow_bluecontent-list ul li:first-child {
        padding: 0 0 20px 0;
    }
    
    .camera-flow_bluecontent-list ul li:last-child {
        padding: 20px 0 0 0;
    }
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 100px 0;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 991px) {
    .youtube {
    	margin: 0 0 60px 0;
    }
    .youtube iframe {
    	border-radius: 10px;
    }
}
