@charset "UTF-8";

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

	base

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

* {
	box-sizing: border-box;
	word-break: break-all;
    leading-trim: both;
    text-edge: cap;
}

html {
	overflow-x: hidden;
	font-size: 62.5%;
}

body {
	background-color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
    font-style: normal;
	color: #222;
	line-height: 1.8;
}

@media (max-width: 768px) {
    
    body {
    }
    
}

p {
    margin-bottom: 2rem;
}

#cmsMobileButton {
    display: none !important;
}


.py-10 { padding-top: 10rem; padding-bottom: 10rem;}


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

	link

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

a {
    transition: all .3s ease;
}

a:hover, a:focus {
    opacity: .6;
}

img {
  transition: transform 0.3s ease;
  vertical-align: bottom;
}


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

	badge

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

.badge {
    display: flex;
    padding: .8rem;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    background-color: #FF3141;
    color: #fff;
    text-align: center;
    line-height: 1;
}


.badge--31059 { background-color: #57AFDF;}
.badge--31060 { background-color: #FD9150;}
.badge--31061 { background-color: #7BD03C;}

.category-nav .badge:hover,
.category-nav .badge:focus {
    opacity: 1;
}

.category-nav .badge { background-color: #ffebeb; color: #745151;}
.category-nav .badge.badge--31059 { background-color: #EBF8FF; color: #516874;}
.category-nav .badge.badge--31060 { background-color: #FFF4ED; color: #827268;}
.category-nav .badge.badge--31061 { background-color: #EEFAE6; color: #6E845E;}

.category-nav .badge.is-active { background-color: #FF3141; color: #fff;}
.category-nav .badge.badge--31059.is-active { background-color: #57AFDF; color: #fff;}
.category-nav .badge.badge--31060.is-active { background-color: #FD9150; color: #fff;}
.category-nav .badge.badge--31061.is-active { background-color: #7BD03C; color: #fff;}


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

	list

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

ul {
}

ol {
}


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

	table

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

table {
    width: 100%;
    margin-bottom: 3.2rem;
}

tr + tr {
    border-top: 1px solid #23B9CA;
}

th,
td {
    padding: 2.4rem 1rem;
    border: 1px solid #D1EBF9;
    vertical-align: middle;
}

th {
    background-color: #23B9CA;
    color: #fff;
    text-align: center;
}

th > :last-child,
td > :last-child {
    margin-bottom: 0;
}

caption {
  margin-top: 16px;
  margin-bottom: 16px;
  text-align: left;
}


.table {
    width: 100%;
}

.table tr + tr {
    border-top: 1px solid #23B9CA;
}

.table th,
.table td {
    padding: 3.2rem;
    border: 1px solid none;
}

.table th {
    background-color: transparent;
    color: #23B9CA;
    text-align: right;
}


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

	

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

.left { float: left;}
.right { float: right;}

.textC { text-align: center;}
.textR { text-align: right;}

/*
　outline
--------------------------------------*/

[class*="dec-btn-ol"] {
}

/*
　size
--------------------------------------*/

.dec-btn--size-lg { padding: 1.875rem 10rem;}
.dec-btn--size-md { padding: 1.5rem 5rem;}
.dec-btn--size-sm { padding: 1.25rem 1.875rem;}


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

	color

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

/*
　text
--------------------------------------*/

.dec-txt--primary,
.dec-txt-pe--primary::before,
.dec-txt-pe--primary::after {
    color: #1445AD;
}

.dec-txt--secondary,
.dec-txt-pe--secondary::before,
.dec-txt-pe--secondary::after {
    color: #23B9CA;
}

.dec-txt--attention,
.dec-txt-pe--attention::before,
.dec-txt-pe--attention::after {
    color: #E00112;
}

.dec-txt--dark,
.dec-txt-pe--dark::before,
.dec-txt-pe--dark::after {
}

.dec-txt--light,
.dec-txt-pe--light::before,
.dec-txt-pe--light::after {
    color: #FFF8E6;
}

.dec-txt--grey,
.dec-txt-pe--grey::before,
.dec-txt-pe--grey::after {
}

/*
　background
--------------------------------------*/

.dec-bg--primary,
.dec-bg-pe--primary::before,
.dec-bg-pe--primary::after {
    background-color: #1445AD;
    color: #fff;
}

.dec-bg--secondary,
.dec-bg-pe--secondary::before,
.dec-bg-pe--secondary::after {
    background-color: #23B9CA;
}

.dec-bg--attention,
.dec-bg-pe--attention::before,
.dec-bg-pe--attention::after {
    background-color: #E00112;
}

.dec-bg--dark,
.dec-bg-pe--dark::before,
.dec-bg-pe--dark::after {
}

.dec-bg--light,
.dec-bg-pe--light::before,
.dec-bg-pe--light::after {
    background-color: #FFF8E6;
}

.dec-bg--grey,
.dec-bg-pe--grey::before,
.dec-bg-pe--grey::after {
}

.dec-bg--white,
.dec-bg-pe--white::before,
.dec-bg-pe--white::after {
    background-color: #fff;
}


/*
　border
--------------------------------------*/

.dec-line--primary,
.dec-line-pe--primar::before,
.dec-line-pe--primar::after {
    border-color: #1445AD;}



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

	container

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

.wrapper {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.inner {
    padding: 8rem 8.8rem;
    background-color: #fff;
    border: 1px solid #C6C6C6;
    border-radius: 2rem;
}

.home .inner {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

@media (max-width: 768px) {
    
    .inner {
        padding: 2rem 1rem;
        border-radius: 1rem;
    }
    
}


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

	HEADER

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

.siteblock-header {
    position: relative;
    z-index: 1000;
}

.header-box {
    position: relative;
    background-color: #fff;
}

.header-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 4px;
    width: 100%;
    border-top: 1px solid #308DF5;
    border-bottom: 1px solid #E00112;
}


.header-box__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.header-logo > :last-child {
    margin-bottom: 0;
}

.header-sup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 640px;
}

@media (max-width: 768px) {
    
    .header-box__row {
        padding: 1.8rem 1rem 1.8rem 1.8rem;
    }
    
    .header-logo {
        width: 210px;
    }
    
    .header-sup {
        display: none;
    }
    
}


.header-info {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.header-info__head {
    margin: 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.43;
}

.header-info__tel {
    text-align: center;
}

.header-info__tel dt {
    margin: 0 0 0.4rem;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
}

.header-info__tel dd {
    color: #222;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
}

.header-sup__cta {
    width: 316px;
}

.header-cta {
    display: flex;
    align-items: center;
    margin: 0 -0.8rem;
}

.header-cta__col {
    width: 50%;
    padding: 0 0.8rem;
}

.header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'palt' on;
    width: 100%;
    padding: 17px 0 14px;
    border-radius: 3px;
    font-weight: 700;
    color: #fff;
    line-height: 115%;
    text-align: center;
}



.header-nav {
    padding: 2.8rem 0 3.2rem;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.header-nav .menu-root {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    list-style: none;
}

.header-nav li {
    margin: 0;
    padding: 0 1.6rem;
}

.header-nav a {
    display: flex;
    align-items: center;
    column-gap: 6px;
    color: #222;
}

.header-nav img {
    vertical-align: middle;
    line-height: 1;
}

@media (max-width: 768px) {
    
    .header-nav {
        display: none;
    }
    
}


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

	topicpath

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

.sitedesign-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 2rem 0;
    font-variant-position: 1.4rem;
    list-style: none;
}

.sitedesign-breadcrumb li {
    margin: 0;
    padding: 0;
}

.sitedesign-breadcrumb li + li:before {
    content: '＞';
    display: inline-block;
    padding: 0 .2rem;
    font-weight: 400;
}

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

	スマートフォンメニュー

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

.btn-spnav {
	position: relative;
	display: none;
	width: 44px;
	height: 44px;
	background-color: #23B9CA;
    border-radius: 50%;
	cursor: pointer;
}

.btn-spnav span {
	display: inline-block;
	position: absolute;
	left: 13px;
	width: 18px;
	height: 2px;
	background-color: #fff;
	border-radius: 1px;
	transition: all .3s;
}

.btn-spnav span:nth-of-type(1) {
	top: 16px;
}

.btn-spnav span:nth-of-type(2) {
	top: 21px;
}

.btn-spnav span:nth-of-type(3) {
	top: 26px;
}

.btn-spnav.is-active span:nth-of-type(1) {
	top: 22px;
	left: 10px;
	width: 24px;
	transform: rotate(-45deg);
}

.btn-spnav.is-active span:nth-of-type(2) {
	opacity: 0;
}

.btn-spnav.is-active span:nth-of-type(3){
	top: 22px;
	left: 10px;
	width: 24px;
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	
	.btn-spnav {
		display: block;
	}
	
}


.sp-nav {
	position: fixed;
	z-index: 999;
	top: -120%;
	left: 0;
	width: 100%;
	height: 100vh;
    background-color: #fff;
	transition: all .3s;
}

.sp-nav.is-active {
	top: 0;
}

.sp-nav.is-active .sp-nav__body {
	position: fixed;
	z-index: 999;
	overflow: auto;
    display: flex;
    align-items: center;
	width: 100%;
	height: 100vh;
    padding: 3rem;
	-webkit-overflow-scrolling: touch;
}

.sp-nav__contents {
	width: 100%;
	margin: 0;
}

.nav-sp {
	margin: 0 0 4rem;
	padding: 0;
	list-style: none;
}

.nav-sp > li {
    margin: 0;
    padding: 0;
}

.nav-sp > li + li {
    margin-top: 1.6rem;
}

.nav-sp a {
	display: flex;
    align-items: center;
    column-gap: 6px;
	width: 100%;
	padding: 1rem 0;
	color: #222;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-sp-footer ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0 -0.8rem;
    padding: 0;
    list-style: none;
}

.nav-sp-footer li {
    width: 50%;
    padding: 0 0.8rem;
}

.snav-sp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'palt' on;
    width: 100%;
    padding: 17px 0 14px;
    border-radius: 3px;
    font-weight: 700;
    color: #fff;
    line-height: 115%;
    text-align: center;
}


/* FOR_EDITOR */
/* /FOR_EDITOR */
