@charset "utf-8";
@import url("global-hamburger.css");
@import url("global-nav_button.css");

/*-----------------
共通 CSS
-----------------*/

:root {
    --indigo-color:#123466;
    --lightgray-color:#f8f8f2;
    --dark-color:#1b282d;
    --gray-color:#4e4d4d;
    --beige-color:#f8f8f2;
    --lightbeige-color:#f8f8f2;
    --lightblue-color:#f0f4f7;
}


.bg-beige {
    background-color: var(--beige-color);
}

.bg-lightbeige {
    background-color: var(--lightbeige-color);
}

.bg-lightgray{
    background-color: var(--lightgray-color);
}

.bg-lightblue {
    background-color: var(--lightblue-color);
}

.img-rounded {
    border-radius: 8px;
}

.img-circle {
    border-radius: 1000px;
}

.btn-outlined {
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    color: var(--gray-color);
    padding:8px 32px;
    border-radius: 100px;
    border: 1px var(--gray-color) solid;
    transition: 0.3s;
}
.btn-outlined:hover {
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none;
    background-color: var(--gray-color);
    color: white;
    padding:8px 32px;
    border-radius: 100px;
    border: 1px var(--gray-color) solid;
}

.btn-jiseki {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    text-decoration: none;
    color: #FFF;
    padding: 8px 74px;
    border-radius: 100px;
    border: 1px #F7931E solid;
    background-color: #F7931E;
    transition: 0.3s;
    font-weight: 700;
}
.btn-jiseki::after {
	content: '';
    position: absolute;
    top: 25%;
    right: 20px;
    transform: rotate(135deg) translateY(-50%);
    width: 10px;
    height: 10px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #FFF;
}

.btn-jiseki:hover {
    transition: 0.3s;
    text-decoration: none;
    background-color: #F7811E;
    color: white;
    border: 1px #F7811E solid;
}

.btn-blue {
    display: inline-block;
    position: relative;
    transition: 0.3s;
    font-size: 22px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: white;
    padding:0px 32px;
    z-index: 0;
}

.btn-blue:hover {
    text-decoration: none;
    color: white;
}

.btn-blue::before {
    content:"";
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0099e0+0,0070b4+100 */
    background: #0099e0; /* Old browsers */
    background: -moz-linear-gradient(left,  #0099e0 0%, #0070b4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #0099e0 0%,#0070b4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #0099e0 0%,#0070b4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0099e0', endColorstr='#0070b4',GradientType=1 ); /* IE6-9 */
    z-index: -1;
}

.btn-blue::after {
    content:"";
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0099e0+0,0070b4+100 */
    background: #0070b4; /* Old browsers */
    background: -moz-linear-gradient(left,  #0070b4 0%, #0070b4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #0070b4 0%,#0070b4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #0070b4 0%,#0070b4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0099e0', endColorstr='#0070b4',GradientType=1 ); /* IE6-9 */
    z-index: -2;
}

.btn-blue:hover::before {
    opacity: 0;
}

.btn-blue span {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    text-align: center;
    transform : translateY(-50%);
}
.col-w-300 {
	min-width: 300px;
	width: 25%;
	margin:5px auto;
}
.col-w-240 {
	min-width: 240px;
	width: 25%;
	margin:5px auto;
}
.col-h-50 {
	height: 50px;
}
@media (max-width: 575px) {
	.col-w-300 {
		width: 70%;
	}
}

.gray-text {
    color: var(--gray-color);
}

.indigo-text{
    color: var(--indigo-color);
}

.h1 {
    font-size: 30px;
}
.h2 {
    font-size: 24px;
}
.h2-bold {
    font-size: 24px;
    font-weight: bold;
}
.h3 {
    font-size: 18px;
}
.h3-bold {
    font-size: 18px;
    font-weight: bold;
}

.h4 {
    font-size: 18px;
}
@media (min-width: 576px) {
    .h4-md {
        font-size: 18px;
    }

    .h3, .h3-bold {
        font-size: 22px;
    }
}

.h5 {
    font-size: 16px;
}


.caption {
    font-size: 12px !important;
    line-height: 14px;
}

.asterisk {
    font-size: 50%;
    vertical-align:0.3rem;
}

.gradation-blue {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#009be4+0,0071b7+100 */
    background: #009be4; /* Old browsers */
    background: -moz-linear-gradient(left,  #009be4 0%, #0071b7 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #009be4 0%,#0071b7 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #009be4 0%,#0071b7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009be4', endColorstr='#0071b7',GradientType=1 ); /* IE6-9 */
}

/*-----------------
共通CSS (HTML Tag)
-----------------*/

body {
    color: #1b282d;
    font-size: 14px;
    font-family: "Hiragino Kaku Gothic ProN","メイリオ", sans-serif;
}

section {
    padding-top: 72px;
    padding-bottom: 24px;
}

@media (min-width: 576px) {
    section {
        padding-top: 96px;
    }
}

img {
    width: 100%;
}

p {
    line-height: 28px;
}

.sub-menu-body p {
    line-height: 28px;
}

sup {
    font-size: 11px;
    top: -0.1em;
}

/*-----------------
共通 パーツ
-----------------*/
.breadcrumb-list {
    display: none;
}

@media (min-width: 576px) {
    .breadcrumb-list {
        display: block;
        width: 100%;
        height: 40px;
        background-color: #fff;
        letter-spacing: 1px;
        font-size: 12px;
    }
}

.breadcrumb-list>a {
    text-decoration: none;
    color: #000;
}

.breadcrumb-active {
    pointer-events:none !important;
}

.title-section {
    padding-top: 24px;
}

.main-header-title {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-header-title h1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
}
@media (min-width: 576px) {
    .main-header-title h1 {
        font-size: 30px;
    }
}

/*-----------------
フェードインアニメーション用
-----------------*/

.fadeInUp {
    opacity : 0;
    transform: translateY(20px);
    transition: 1s;
}

/*-----------------
header パーツ
-----------------*/

body {
    padding-top: 80px;
}

.global-nav {
    position: fixed;
    left: -105%;
    top: 0;
    width: 100%;
    height: 100vh;
    padding-top: 40px;
    background-color: #fff;
    transition: all var(--hamburger-animation-sec);
    z-index: 200;
    overflow-y: auto;
    padding-left:20px;
}
@media (min-width: 576px) {
    .global-nav {
        left: -85%;
        width: 80%;
        padding-left:80px;
    }
}
@media (min-width: 930px) {
    .global-nav {
        left: -55%;
        width: 50%;
        padding-left:120px;
    }
}

.global-nav_title {
    width: 84px;
    margin-left: 94px;
}

@media (min-width: 576px) {
    .global-nav_title {
        margin-left: 64px;
    }
}

.global-nav_title img {
    width: 100%;
}

.global-nav__logo {
    width: 172px;
}
.global-nav__logo img {
    width: 100%;
    height: auto;
}

.global-nav__list {
    margin-top: 24px;
    margin-bottom: 64px;
    padding: 0;
    list-style: none;
}
.global-nav__item a {
    font-size: 20px;
    color: white;
    display: block;
    padding: 8px 0;
    text-decoration: none;
    transition: .3s;
}

.global-nav__item__active a,
.global-nav__item a:hover {
    font-size: 20px;
    color: rgba(255,255,255,0.3);
    transition: .3s;
}

.global-nav__item__active {
    position: relative;
}

.global-nav__item__active::before {
    content: "▶︎";
    position: absolute;
    top: 50%;
    left: 0;
    color: rgba(255,255,255,0.3);
    transform: translate(-1rem, -50%);
    font-size: 0.8em;
}


.header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
}

.header-content {
    height: 100%;
}

.header-content-div{
    width: 150px;
    position: relative;
}

.header-content-title{
    max-width: 400px;
}
.header-content-title img{
	width: 90%;
}
@media (min-width: 840px) {
	.header-content-title img{
    	width: 100%;
	}
}
.header-content-logo{
    text-align: right;
    width: 150px;
    height: 40px;
}

.header-content-logo img {
    height: 100%;
    width: auto;
}

/*-----------------
footer パーツ
-----------------*/

.footer-container {
    padding-top: 80px;
}

@media (min-width: 576px) {
    .footer-container {
        padding-top: 120px;
    }
}

.footer-button {
    display: inline-block;
    position: relative;
    transition: 0.3s;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: white;
    width: 100%;
    height: 66px;
    z-index: 0;
}

.footer-button:hover {
    text-decoration: none;
    color: white;
}

.footer-button::before {
    content:"";
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0099e0+0,0070b4+100 */
    background: #0099e0; /* Old browsers */
    background: -moz-linear-gradient(left,  #0099e0 0%, #0070b4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #0099e0 0%,#0070b4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #0099e0 0%,#0070b4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0099e0', endColorstr='#0070b4',GradientType=1 ); /* IE6-9 */
    z-index: -1;
}

.footer-button::after {
    content:"";
    transition: 0.3s;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 8px;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0099e0+0,0070b4+100 */
    background: #0070b4; /* Old browsers */
    background: -moz-linear-gradient(left,  #0070b4 0%, #0070b4 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #0070b4 0%,#0070b4 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #0070b4 0%,#0070b4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0099e0', endColorstr='#0070b4',GradientType=1 ); /* IE6-9 */
    z-index: -2;
}

.footer-button:hover::before {
    opacity: 0;
}

.footer-button span {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    text-align: center;
    transform : translateY(-50%);
}

.footer-phone-number {
    width: 100%;
}

.ajs_movie{
    position:relative;
    width:100%;
/*    height:0;*/
/*    padding-top:57%;*/
}
.ajs_movie iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media screen and (min-width: 576px){
	/* pc表示用 */
	.pc { display:block; }
	.sp { display:none; }
	.boxText01{
		height: 150px;
	}
	.topic-content{
		height: 215px;
	}
}
@media screen and (max-width: 575px){   
	/* sp表示用 */
  .pc { display:none; }
  .sp { display:block; }
	.boxText01{
		height: auto;
	}
	.topic-content{
		height: auto;
	}
}
a {
    color: #999999;
}
a:hover {
    text-decoration: none;
}