@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}
/* End hide from IE-mac */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
	font-family: 'Noto Sans JP', sans-serif;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
li {
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
	*font-size:100%;
}
legend {
	color:#222000;
}
img {
    max-width: 100%;
	vertical-align:bottom;
}

area,map{
	outline: none;
	border: none;
}

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

common

-----------------------------------------------------------------------------  ***/
html {
	overflow-y:scroll;
    scroll-padding-top: 130px;
}
@media screen and (max-width: 768px){
    html {
        scroll-padding-top: 75px;
    }   
}
body {
	background-color: #f4f4f4;
	color:#222;
	line-height: 2;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
	counter-reset: section;
}
aside#secondary{
	display: none !important;
}
@media screen and (max-width: 768px){
	.spbr{
		display: block;
	}
}
.pc-none{
	display: none;
}
@media screen and (max-width: 768px){
	.pc-none{
		display: block;
	}
}

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

色

-----------------------------------------------------------------------------  ***/
:root {
    --color_main: #0054A7;
    --color_sub: #00A0E9;
    --color_bg: #F4F4F4;
    --color_border: #D9D9D9;
}



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

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	outline:none;
	color: #222;
}
a:link {
	text-decoration:none;
	transition: 0.3s;
}
a:visited {
}
a:hover {
	text-decoration:none;
}
a:active {
	text-decoration:none;
}
@media (min-width: 769px){
	a:link:hover{
		opacity: 0.6;
		text-decoration:none;
	}
}

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

input

-----------------------------------------------------------------------------  ***/
/* input[type="text"] {
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
}
input[type="radio"] {
	display: none;
}
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	outline: none;
	background: transparent;
}
textarea {
	width: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	resize: none;
	padding: 0;
	border: 0;
	outline: none;
	background: transparent;
}
button,
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	outline: none;
	background: transparent;
} */


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

l-inner

-----------------------------------------------------------------------------  ***/
.l-inner{
    max-width: 1060px;
    width: 90%;
    margin: 0 auto;
}
.l-inner--w{
    max-width: 1280px;
    width: 90%;
    margin: 0 auto;
}


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

l-header

-----------------------------------------------------------------------------  ***/
.l-header{
    position: fixed;
    left: 0;
    top: 0;
    height: 130px;
    box-sizing: border-box;
    z-index: 10;
    width: 100%;
    padding: 15px 0;
    background: #fff;   
    display: flex;
    align-items: center;
    transition: 0.3s;
}
@media screen and (max-width: 768px){
    .l-header{
        height: 75px;
        padding: 4px 0 0;
        box-sizing: border-box;
        display: flex;
        align-items: center;
    }   
}
.l-header.is-hide {
    transform: translateY(-100%);
}
@media screen and (max-width: 768px){
    .l-header.is-hide {
        transform: translateY(0);
    }   
}
.l-header .l-inner--w{
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 1050px){
    .l-header .l-inner--w{
        width: 95%;
    }
}
.l-header__logo{
    max-width: 287px;
}
@media screen and (max-width: 1050px){
    .l-header__logo{
        max-width: 100%;
        width: 27.5%;
    }
}
@media screen and (max-width: 768px){
    .l-header__logo{
        max-width: 215px;
        width: 100%;
        margin: 0 90px 0 0;
    }
}
.l-header nav{
    width: calc(100% - 287px);
    padding: 0 0 0 20px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
@media screen and (max-width: 1050px){
    .l-header nav{
        width: calc(100% - 27.5%);
    }
}
@media screen and (max-width: 768px){
    .l-header nav{
        position: fixed;
        right: -200%;
        top: 75px;
        z-index: 1;
        padding: 0;
        display: block;
        width: 100%;
        height: calc(100% - 75px);
        background: var(--color_main);
        transition: 0.3s;
    }
    .l-header nav.is-active{
        right: 0;
    }
}
.l-header__contact{
    width: 160px;
}
@media screen and (max-width: 768px){
    .l-header__contact{
        width: 100%;
    }
}
.l-header__contact a{
    display: block;
    text-align: center;
    background: var(--color_main);
    padding: 5px 10px;
    box-sizing: border-box;
    font-weight: 700;
    color: #fff;
    border-radius: 35px;
}
.l-header nav .nav-cont{
    width: calc(100% - 160px);
    padding: 0 6.5% 0 20px;
    box-sizing: border-box;
}
@media screen and (max-width: 1050px){
    .l-header nav .nav-cont{
        padding: 0 5% 0 20px;
    }
}
@media screen and (max-width: 768px){
    .l-header nav .nav-cont{
        width: 100%;
        padding: 0;
    }
}
.l-header__privacy{
    text-align: center;
    line-height: 1.0;
    margin: 0 0 15px;
}
.l-header__privacy a{
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color_main);
    background: url("../img/icon-arrow-blue.svg") no-repeat left center;
    padding: 0 0 0 12px;
}
.l-header__list{
    display: flex;
    gap: 0 10.0%;
    justify-content: flex-end;
    padding: 0 0 5px;
}
@media screen and (max-width: 1050px){
    .l-header__list{
        gap: 0 5.0%;
    }   
}
@media screen and (max-width: 768px){
    .l-header__list{
        flex-wrap: wrap;
        padding: 0;
    }
    .l-header__list-item{
        width: 100%;
        border-bottom: 1px solid #fff;
    }
}
.l-header__list-item a{
    font-size: 1.125rem;
    font-weight: 700;
}
@media screen and (max-width: 950px){
    .l-header__list-item a{
        font-size: 1.0rem;
    }
}
@media screen and (max-width: 768px){
    .l-header__list-item a{
        display: block;
        padding: 15px 20px 15px 35px;
        color: #fff;
        background: url("../img/icon-arrow.svg") no-repeat left 17px center / 8px auto;
    }   
}

@media screen and (max-width: 768px){
    .l-header #menu{
		position: fixed;
		right:0;
		top:0;
		z-index:9999;
		background: var(--color_main);
		color:#FFFFFF;
		font-size:0.76em;
		height:75px;
		overflow:hidden;
	}
	.l-header #menu:before{
		content:"";
		display:block;
		position:absolute;
		left:0;
		top:37px;
		width:75px;
		text-align: center;
		font-size:1.167em;
		z-index:999;
	}
	.l-header #menu.close{
		background: url(../img/#header_menu_bg02.png) center 40px no-repeat #664397;
		background-size: auto 7px ;
	}
	.l-header #menu a{
	  display: inline-block;
	  position: relative;
	  width: 75px;
	  height:75px;
	  overflow:hidden;
	}
	.l-header #menu a span{
	  display: block;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 28px;
	  height: 2px;
	  margin: -2px 0 0 -12px;
	  background: #FFF;
	  transition: .2s;
	  text-indent:-9999px;
	}
	.l-header #menu a span:before,
    .l-header #menu a span:after{
	  display: block;
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 0;
	  width: 28px;
	  height: 2px;
	  background: #FFF;
	  transition: .3s;
	}
	.l-header #menu a span:before{
	  margin-top: -9px;
	}
	.l-header #menu a span:after{
	  margin-top: 7px;
	}
	.l-header #menu a .close{
	  background: transparent;
	}
	.l-header #menu a .close:before,
    .l-header #menu a .close:after{
	  margin-top: 0;
	}
	.l-header #menu a .close:before{
	  transform: rotate(-45deg);
	  -webkit-transform: rotate(-45deg);
	}
	.l-header #menu a .close:after{
	  transform: rotate(-135deg);
	  -webkit-transform: rotate(-135deg);
	}
}


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

.l-topic-pass

-----------------------------------------------------------------------------  ***/
.l-topic-pass{
    border-top: 1px solid var(--color_border);
    padding: 20px 0;
    background: #fff;
}
@media screen and (max-width: 768px){
    .l-topic-pass{
        padding: 10px 0;
    }   
}
.l-topic-pass__list{
    display: flex;
    flex-wrap: wrap;
}
.l-topic-pass__list-item{
    font-size: calc(0.0625rem * 12);
    line-height: 1.6;
    letter-spacing: 0.02vw;
    position: relative;
}
.l-topic-pass__list-item a{
    text-decoration: underline;
    color: var(--color_main);
    position: relative;
}
.l-topic-pass__list-item:first-child a{
    padding: 0 0 0 25px;
}
.l-topic-pass__list-item:first-child a::before{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 15px;
    height: 15px;
    background: url("../img/icon-topic-pass.svg") no-repeat left center / 15px auto;
}
.l-topic-pass__list-item:has(a){
    margin: 0 15px 0 0;
}
.l-topic-pass__list-item:has(a)::after{
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    content: '>';
    color: #000;
}


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

.l-mv

-----------------------------------------------------------------------------  ***/
.l-mv{
    padding: 80px 0;
    background: url("../img/mv-bg.jpg") no-repeat center center / cover;
}
@media screen and (max-width: 768px){
    .l-mv{
        padding: 40px 0;
    }   
}
.l-mv__title{
    text-align: center;
}
.l-mv__title span{
    display: inline-block;
    background: #fff;
    border-radius: 35px;
    padding: 17px 45px;
    font-size: calc(0.0625rem * 22);
    font-weight: 700;
    line-height: 1.6;
    color: var(--color_main);
}
@media screen and (max-width: 768px){
    .l-mv__title span{
        border-radius: 35px;
        padding: 8px 30px;
        font-size: calc(0.0625rem * 18);
    }
}
.l-mv__catch{
    text-align: center;
    font-size: calc(0.0625rem * 40);
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    margin: 0.5em 0 0;
}
@media screen and (max-width: 768px){
    .l-mv__catch{
        font-size: min( 7.5vw, calc(0.0625rem * 28));
    }   
}
.l-mv__text{
    text-align: center;
    font-size: calc(0.0625rem * 22);
    line-height: 1.6;
    color: #fff;
    margin: 1.75em 0 0;
}
.l-mv__btn{
    background: var(--color_main);
    max-width: 410px;
    margin: 2.0em auto 0;
    border-radius: 10px;
}
.l-mv__btn a{
    margin: 0 auto;
    position: relative;
}



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

main

-----------------------------------------------------------------------------  ***/
main.main-content section .inner{
	display: block;
	width: 100%;
	max-width: 1024px;
	padding: 0px 0px 110px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
main.main-content .lead{
	margin: 30px 0 0 0;
}
main.main-content .section-ttl{
	display:block;
	width:100%;
	padding:0px 0px 45px;
	text-align: center;
	font-size: 48px;
	line-height: 1.6;
	font-weight: 900;
}
#page.case main.main-content .single-content h4{
	padding: 10px 15px;
	margin-bottom: 20px;
	background: #595757;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
}
/*main.main-content .section-ttl:first-letter{
	color: #00a0e9;
}*/
main.main-content .section-ttl .section-sub{
	display: block;
	margin-bottom: 5px;
	position: relative;
	font-size: 12px;
	font-weight: 300;
}
main.main-content .section-sub:before{
	counter-increment: section;
	content: counter(section);
	display: block;
  	position: relative;
  	white-space: pre;
  	font-size: 40px;
  	font-weight: bold;
  	line-height: 1.3;
  	color: #fff;
}
main.main-content .section-ttl span{
	display: inline-block;
	padding:0px;
	font-size: 40px;
	letter-spacing: 1.5px;
}
main.main-content .section-ttl span:not(.section-sub){
	color: #FFE600;
}
@media screen and (max-width: 1130px){
	main{
		margin-top: 65px;
	}
	main.main-content section .inner{
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media screen and (max-width: 768px){
	main.main-content .section-ttl{
		padding-bottom: 30px;
		font-size: 36px;
	}
	#home .select .section-ttl ~ p{
		padding: 0px 20px;
		margin-bottom: 40px;
		font-weight: bold;
	}
	main.main-content section .inner{
		padding-bottom: 70px;
	}
}

main.main-content .point-catch{
	width: 100%;
	padding: 120px 20px 200px;
	background: url('../../img/point1-back.jpg')no-repeat center center;
	background-size: cover;
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 1.7;
	box-sizing: border-box;
}
main.main-content .point-catch span{
	display: inline-block;
	margin-bottom:20px;
	font-size: 24px;
	font-weight: bold;
}

@media screen and (max-width: 768px){
	main.main-content .point-catch{
		padding: 70px 20px 110px;
		font-size: 15px;
	}
	main.main-content .point-catch span{
		font-size: 20px;
	}
}

.back-white{
	background-color: #fff;
}

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

.l-main-content

-----------------------------------------------------------------------------  ***/
.main-content,
.l-main-content{
    margin: 130px 0 0;
}
@media screen and (max-width:768px){
    .main-content,
    .l-main-content{
        margin: 75px 0 0;
    }   
}


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

.l-footer

-----------------------------------------------------------------------------  ***/
.l-footer{
    background: #1E2F4A;
    padding: 80px 0 130px;
}
@media screen and (max-width:825px){
    .l-footer{
        padding: 50px 0 60px;
    }
    .l-footer .l-inner--w{
        width: 100%;
    }
    .l-footer__flex{
        flex-wrap: wrap;
    }
}
.l-footer__flex-info{
    width: 480px;
}
@media screen and (max-width:825px){
    .l-footer__flex-info{
        width: 90%;
        margin: 0 auto 35px;
        text-align: center;
    }   
}
.l-footer__flex-info .info-text{
    color: #fff;
    line-height: 1.6;
    margin: 25px 0 0;
}
@media screen and (max-width:825px){
    .l-footer__flex-info .info-text{
        font-size: min(3.25vw, 0.750rem);
    }   
}
.l-footer__flex-nav{
    width: calc(100% - 480px);
}
@media screen and (max-width:825px){
    .l-footer__flex-nav{
        width: 100%;
    }   
}
.l-footer__flex-nav nav{
    display: flex;
    justify-content: center;
    gap: 0 12.5%;
}
@media screen and (max-width:950px){
    .l-footer__flex-nav nav{
        padding: 0 0 0 10%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
@media screen and (max-width:825px){
    .l-footer__flex-nav nav{
        padding: 0;
        border-top: 1px solid #fff;
    }
}
@media screen and (max-width:825px){
    .l-footer__flex-nav .l-footer__flex-nav-list {
        width: 100%;
    }
}
.l-footer__flex-nav .l-footer__flex-nav-list .l-footer__flex-nav-list-item{
    line-height: 1.8;
    margin: 0 0 0.5em;
}
@media screen and (max-width:825px){
    .l-footer__flex-nav .l-footer__flex-nav-list .l-footer__flex-nav-list-item{
        width: 100%;
        border-bottom: 1px solid #fff;
        margin: 0;
    }
}
.l-footer__flex-nav .l-footer__flex-nav-list .l-footer__flex-nav-list-item a{
    color: #fff;
    position: relative;
}
@media screen and (max-width:825px){
    .l-footer__flex-nav .l-footer__flex-nav-list .l-footer__flex-nav-list-item a{
        padding: 15px 20px 15px 35px;
        display: block;
        box-sizing: border-box;
    }
}
.l-footer__flex-nav .l-footer__flex-nav-list .l-footer__flex-nav-list-item a::before{
    position: absolute;
    left: -15px;
    top: 50%;
    content: '';
    transform: translateY(-50%);
    width: 7px;
    height: 12px;
    background: url("../img/icon-arrow.svg") no-repeat center center / 7px 100%;
}
@media screen and (max-width:825px){
    .l-footer__flex-nav .l-footer__flex-nav-list .l-footer__flex-nav-list-item a::before{
        left: 20px;
    }   
}
.l-footer__flex-nav .copy-right{
    font-size: 0.875rem;
    text-align: right;
    line-height: 1.6;
    color: #fff;
    margin: 3.0em 0 0;
}
@media screen and (max-width:950px){
    .l-footer__flex-nav .copy-right{
        font-size: 0.6875rem;
    }   
}
@media screen and (max-width:825px){
    .l-footer__flex-nav .copy-right{
        text-align: center;
        width: 90%;
        margin: 2.0em auto 0;
    }   
}



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

.l-flex

-----------------------------------------------------------------------------  ***/
.l-flex{
    display: flex;
}

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

.u-text-center

-----------------------------------------------------------------------------  ***/
.u-text-center{
    text-align: center;
}

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

.u-text-blue

-----------------------------------------------------------------------------  ***/
.u-text-blue{
    color: var(--color_main);
}

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

.u-text-light-blue

-----------------------------------------------------------------------------  ***/
.u-text-light-blue{
    color: #00A1D5;
}

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

.u-text-bold

-----------------------------------------------------------------------------  ***/
.u-text-bold{
    font-weight: 700;
}

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

.u-mt-20

-----------------------------------------------------------------------------  ***/
.u-mt-20{
    margin-top: 20px;
}

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

.u-pc

-----------------------------------------------------------------------------  ***/
.u-pc{
    display: block;
}
@media screen and (max-width:768px){
    .u-pc{
        display: none;
    }   
}

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

.u-sp

-----------------------------------------------------------------------------  ***/
.u-sp{
    display: none;
}
@media screen and (max-width:768px){
    .u-sp{
        display: block;
    }   
}


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

.c-title

-----------------------------------------------------------------------------  ***/
.c-title{
    font-size: 2.5rem;
    line-height: 1.4;
    margin: 0 0 1.0em;
}
@media screen and (max-width:768px){
    .c-title{
        font-size: min( 6.5vw, 1.4375rem);
    }   
}


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

.c-button-box

-----------------------------------------------------------------------------  ***/
.c-button-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.c-button-box .c-button{
    display: inline-block;
    width: 410px;
    max-width: 100%;
    padding: 23px 29px;
    background: #fff;
    border: solid 1px #fff;
    border-radius: 10px;
    box-sizing: border-box;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    color: #0054A7;
    transition: .3s;
}
.c-button-box .c-button:link:hover{
    opacity: 1.0;
}
@media screen and ( any-hover: hover){
    .c-button-box .c-button:hover{
        background: #0054A7;
        color: #fff;
        opacity: 1;
    }
}
@media screen and (max-width:768px){
    .c-button-box .c-button{
        font-size: 20px;
    }
}
.c-button-box  .c-button__txt{
    display: inline-block;
    width: 100%;
    padding: 9px 60px 9px 0;
    box-sizing: border-box;
    text-align: left;
    position: relative;
    transition: .3s;
}
@media screen and (max-width:768px){
    .c-button-box  .c-button__txt{
        padding: 0 60px 0 0;
    }
}
.c-button-box .c-button__txt:after {
    content: '';
    display: block;
    width: 40px;
    height: 100%;
    background: url(../img/arrow-btn-b--line.svg) no-repeat center center / contain;
    position: absolute;
    top: 0;
    right: 0;
    transition: .3s;
}
@media (any-hover: hover) {
    .c-button-box .c-button:hover .c-button__txt::after{
        background: url(../img/arrow-btn--line.svg) no-repeat center center / contain;
    }
}

.c-button-box .c-button--blue{
    background: var(--color_main);
    border: solid 1px  var(--color_main);
}
.c-button--blue .c-button__txt{
    color: #fff;
}
.c-button--blue .c-button__txt:after{
    background: url(../img/arrow-btn--line.svg) no-repeat center center / contain;
}
@media (any-hover: hover) {
    .c-button-box .c-button--blue:hover {
        border: solid 1px #fff;
        background: var(--color_sub);
    }
}

.c-button-box .c-button--light-blue{
    background: var(--color_sub);
    border: solid 1px  var(--color_sub);
}
.c-button--light-blue .c-button__txt{
    color: #fff;
}
.c-button--light-blue .c-button__txt:after{
    background: url(../img/arrow-btn--line.svg) no-repeat center center / contain;
}
@media (any-hover: hover) {
    .c-button-box .c-button--light-blue:hover {
        border: solid 1px #fff;
        background: var(--color_main);
    }
}



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

.c-black-btn

-----------------------------------------------------------------------------  ***/
.c-black-btn{
    display: block;
    max-width: 160px;
    background: #222;
    margin: 0 auto;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1.0rem;
    color: #fff;
    line-height: 1.2;
    text-align: center;
}
.c-black-btn::after{
    content: '';
    display: inline-block;
    width: 7px;
    height: 12px;
    background: url("../img/icon-arrow.svg") no-repeat center center / 7px 100%;
    margin: 0 0 0 15px;
}



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

.p-form-box

-----------------------------------------------------------------------------  ***/
.p-form-box{
    border: 4px solid var(--color_main);
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
}
.p-form-box__title{
    text-align: center;
    font-size: calc(0.0625rem * 32);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: var(--color_main);
    padding: 20px 20px 25px;
}
@media screen and (max-width:768px){
    .p-form-box__title{
        padding: 20px 10px;
        font-size: calc(0.0625rem * 22);
        line-height: 1.4;
    }  
}
.p-form-box__title span{
    font-size: calc(0.0625rem * 36);
    color: #FFAE51;
}
@media screen and (max-width:768px){
    .p-form-box__title span{
        font-size: calc(0.0625rem * 24);
    }   
}
.p-form-box__inner{
    padding: 43px 20px 40px;
}
@media screen and (max-width:768px){
    .p-form-box__inner{
        padding: 30px 20px;
    }   
}
.p-form-box__catch{
    text-align: center;
    font-size: calc(0.0625rem * 20);
    line-height: 1.6;
    letter-spacing: 0.03vw;
    margin: 0 0 2.0em;
}
@media screen and (max-width:768px){
    .p-form-box__catch{
        font-size: calc(0.0625rem * 16);
        margin: 0 0 1.5em;
    }   
}
.p-form-box__flex{
    max-width: 938px;
    width: 100%;
    margin: 0 auto 80px;
    position: relative;
}
@media screen and (max-width:768px){
    .p-form-box__flex{
        display: block;
        margin: 0 auto 50px;
    }
}
.p-form-box__flex::after{
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translate(-50%, 100%);
    content: '';
    width:0;
    height:0;
    border-style:solid;
    border-width: 40px 50px 0 50px;
    border-color: #0054A7 transparent transparent transparent;
}
@media screen and (max-width:768px){
    .p-form-box__flex::after{
        border-width: 20px 25px 0 25px;
        bottom: -15px;
    }   
}
.p-form-box__flex-img{
    width: 45%;
    text-align: right;
    padding: 0 4% 0 0;
    box-sizing: border-box;
}
@media screen and (max-width:768px){
    .p-form-box__flex-img{
        width: 100%;
        text-align: center;
        margin: 0 auto 20px;
        padding: 0;
    }   
}
.p-form-box__flex-img img{
    max-width: 335px;
    width: 100%;
}
@media screen and (max-width:768px){
    .p-form-box__flex-img img{
        max-width: 280px;
    }   
}
.p-form-box__flex-text{
    width: 55%;
    text-align: left;
    padding: 0 2%;
    box-sizing: border-box;
}
@media screen and (max-width:768px){
    .p-form-box__flex-text{
        width: 100%;
        padding: 0;
    }   
}
.p-form-box__ballon{
    text-align: center;
    border-radius: 30px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    font-size: calc(0.0625rem * 20);
    font-weight: bold;
    line-height: 1.6;
    margin: 0 0 35px;
    padding: 10px 15px;
    position: relative;
}
@media screen and (max-width:768px){
    .p-form-box__ballon{
        font-size: calc(0.0625rem * 18);
    }   
}
.p-form-box__ballon::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,50%);
    content: '';
    width:0;
    height:0;
    border-style:solid;
    border-width: 20px 15px 0 15px;
    border-color: #FFFFFF transparent transparent transparent;
}
.p-form-box__list{
    padding: 0 0 0 20px;
}
@media screen and (max-width:768px){
    .p-form-box__list{
        padding: 0;
    }   
}
.p-form-box__list-item{
    font-size: calc(0.0625rem * 20);
    font-weight: bold;
    color: var(--color_main);
    margin: 0 0 0.75em;
    padding: 0 0 0 22px;
    line-height: 1.5;
    position: relative;
}
@media screen and (max-width:768px){
    .p-form-box__list-item{
        font-size: calc(0.0625rem * 16);
    }   
}
.p-form-box__list-item::before{
    position: absolute;
    left: 0;
    top: 8px;
    content: '';
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--color_main);
}
.p-form-box__text{
    margin: 0 0 1.0em;
    padding: 0 0 0 22px;   
    font-size: calc(0.0625rem * 18);
    line-height: 1.6;
}
@media screen and (max-width:768px){
    .p-form-box__text{
        padding: 0;
        font-size: calc(0.0625rem * 16);
        margin: 20px 0;
    }   
}
.p-form-box__table{
    max-width: 938px;
    width: 100%;
    margin: 0 auto;
}
.p-form-box__table-th{
    width: 250px;
    font-size: calc(0.0625rem * 16);
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    padding: 8px 90px 35px 0;
    box-sizing: border-box;
    vertical-align: top;
}
@media screen and (max-width:768px){
    .p-form-box__table-th{
        display: block;
        width: 100%;
        padding: 0 60px 10px 0;
        float: left;
    }   
}
.p-form-box__table-th .require{
    position: absolute;
    right: 25px;
    top: 7px;
    padding: 5px 15px 7px;
    display: inline-block;
    background: #CF1212;
    font-size: calc(0.0625rem * 14);
    color: #fff;
    line-height: 1.0;
    border-radius: 15px;
}
@media screen and (max-width:768px){
    .p-form-box__table-th .require{
        right: 0;
        top: 2px;
    }   
}
.p-form-box__table-td{
    width: calc(100% - 250px);
    padding: 0 0 35px 0;
    box-sizing: border-box;
    text-align: left;
}
@media screen and (max-width:768px){
    .p-form-box__table-td{
        display: block;
        width: 100%;
        padding: 0 0 15px;
        float: left;
    }   
}
.p-form-box__table-td input[type=text],
.p-form-box__table-td input[type=tel],
.p-form-box__table-td input[type=email]{
    width: 100%;
    border: 1px solid #D9D9D9;
    background: #F4F4F4;
    padding: 7px 10px;
    box-sizing: border-box;
}
@media screen and (max-width:768px){
    .p-form-box__table-td input[type=text],
    .p-form-box__table-td input[type=tel],
    .p-form-box__table-td input[type=email]{
        font-size: calc(0.0625rem * 17);
    }   
}
.p-form-box__table-td input::placeholder {
  color: #B8B8B8;
}
.p-form-box__button{
    justify-content: center;
    margin: 15px auto;
}
@media screen and (max-width:768px){
    .p-form-box__button{
        margin: 25px auto 15px;
    }   
}
.p-form-box__button input[type=submit]{
    max-width: 410px;
    width: 100%;
    border: 1px solid var(--color_main);
    border-radius: 10px;
    box-sizing: border-box;
    background: var(--color_main);
    font-size: calc(0.0625rem * 22);
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 28px 10px;
    transition: 0.3s;
    cursor: pointer;
}
@media (any-hover: hover){
    .p-form-box__button input[type=submit]:hover{
        background: #fff;
        color: var(--color_main);
    }   
}
@media screen and (max-width:768px){
    .p-form-box__button input[type=submit]{
        font-size: calc(0.0625rem * 16);
    }
}


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

.p-infomation-content

-----------------------------------------------------------------------------  ***/
.p-infomation-content{
    background: url("../img/infomation-content-bg.jpg") no-repeat center center / cover;
    padding: 150px 0 170px;
}
@media screen and (max-width:768px){
    .p-infomation-content{
        padding: 65px 0 70px;
    }
}
.p-infomation-content .p-infomation-content__title{
    line-height: 1.4;
    color: #fff;
}
@media screen and (max-width:768px){
    .p-infomation-content .p-infomation-content__title{
        line-height: 1.4;
        margin: 0 0 0.75em;
    }   
}
.p-infomation-content__text{
    font-size: 1.25rem;
    color: #fff;
}
@media screen and (max-width:768px){
    .p-infomation-content .p-infomation-content__text{
        font-size: 1.0rem;
        font-weight: 400;
        line-height: 1.6;
    }
}
.p-infomation-content__list{
    margin: 60px auto 0;
    justify-content: center;
    align-items: flex-start;
}
@media screen and (max-width:768px){
   .p-infomation-content__list{
       flex-wrap: wrap;
    }
}
.p-infomation-content__list-item{
    width: calc(100% / 3);
    background: var(--color_main);
    border-radius: 10px;
}
@media screen and (max-width:768px){
    .p-infomation-content__list-item{
        width: 100%;
        background: none;
    }
    .p-infomation-content__list-item a{
        margin: 0 auto;
    }
}





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

共通設定

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

.more-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 480px;
	max-width: 100%;
	margin: 0 auto;
	padding: 35px 40px;
	background-color: rgba(0, 84, 167, 1);
	color: #fff;
	line-height: 1.7;
	font-weight: bold;
	font-size: 16px;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	transition: 0.3s ease-out;
	cursor: pointer;
}
.more-btn:before{
	content: '';
	display: block;
	position: absolute;
	width: 16px;
	height: 100%;
	top: 0;
	right: 24px;
	background: url('../img/arrow-btn.svg')no-repeat center center;
	background-size: contain;
	transition: 0.3s ease-out;
}

p.more-btn{
	padding: 0px;
}
.more-btn input[type="submit"],
.more-btn button{
	display: block;
	width: 100%;
	height: 100%;
	padding: 35px 40px;
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s ease-out;
	font-family: 'Noto Sans JP', sans-serif;
}
.more-btn button{
	display: block;
	width: 100%;
	height: 100%;
	padding: 35px 40px;
	margin: 0;
	color: #fff;
	cursor: pointer;
	transition: 0.3s ease-out;
}

@media screen and (min-width:769px){
	.pc_none,
	footer .footer-content.contact ul li a.pc_none,
	header nav ul#nav-content > li.pc_none{
		display: none;
	}

	a:link.more-btn:hover,
	.more-btn:hover,
	.more-btn:hover input[type="submit"],
	.more-btn:hover button{
		background:  #00a1d5;
		border-radius:25px;
		opacity: 1;
	}
	.more-btn:hover:before{
		right: 10px;
		background-size: contain;
	}
}
@media screen and (max-width:768px){
	.sp_none,
	footer .footer-content.contact ul li a.sp_none{
		display: none;
	}
	.more-btn{
		font-size: 16px;
		padding: 25px 40px;
		text-align: center;
	}
	.more-btn input[type="submit"],
	.more-btn button{
		padding: 25px 35px 25px 20px;
		line-height: 1.7;
	}
	.more-btn:before{
		width: 15px;
		right: 15px;
	}
}

@media screen and (max-width:320px){
	.more-btn,
	.more-btn input[type="submit"],
	.more-btn button{
		padding: 25px 20px 25px 15px;
	}
	.more-btn:before{
		width: 10px;
		right: 7px;
	}
}


  /* フォーム */
.form-content input[type="checkbox"]{
	display: none;
}

.form-content table{
	width: 100%;
	box-sizing: border-box;
	border-collapse: collapse;
    table-layout: fixed;
}
.form-content tr,
.form-content tr th,
.form-content tr td{
	box-sizing: border-box;
}
.form-content tr th,
.form-content tr td{
	padding: 15px 40px;
}

.form-content tr th{
	width: 30%;
	font-size: 16px;
	font-weight: bold;
}
.form-content tr td{
	width: 70%;
}
.form-content tr td p{
	font-size: 16px;
	font-weight: 400;
}
.form-content tr td select{
	width: 100%;
	padding: 15px;
	border-radius: 5px;
	background: url('../img/arrow.svg')no-repeat center right 15px;
	background-size: 13px;
	background-color: #EBEBEB;
	box-sizing: border-box;
}


.form-content tr.form-checkbox div{
	display: flex;
}
.form-content td.check-area .mwform-checkbox-field-text{
	display: flex;
	align-items: center;
	align-content: center;
}
.form-content td.check-area p{
	margin-right: 20px;
}
.form-content td.check-area .mwform-checkbox-field-text:before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	margin-right: 7px;
	background:  #EBEBEB;
	border-radius: 3px;
}
.form-content input[type="radio"]:checked + .mwform-checkbox-field-text:before {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 20px;
	height: 20px;
	background:#0054a7;
}

.form-content input[type="text"]{
	padding: 15px;
	border-radius: 5px;
	width: 100%;
	max-width: 100%;
	background: #EBEBEB;
	box-sizing: border-box;
}

.form-content .textarea-area th{
	display: flex;
	justify-content: flex-end;
	width: 100%;
	padding-top: 25px;
}

.form-content input[type="textarea"]{
	outline: none;
	border: none;
	padding: 15px;
	border-radius: 5px;
	width: 100%;
	height: 100px;
	max-width: 100%;
	background: #EBEBEB;
	box-sizing: border-box;
}

.form-content tr.clm4-text td div{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form-content tr.clm4-text td p{
	width: 22%;
}
.form-content tr.clm4-text td input[type="text"]{
	background-color: #EBEBEB;
}


.form-content tr.min-text td input[type="text"]{
	width: 22%;
}
.form-content span.hiss{
	display: inline-block;
	padding: 3px 5px;
	margin-right: 10px;
	border: solid 1px #EA5515;
	font-size: 14px;
	font-weight: normal;
	color: #EA5515;
	line-height: 1.7;
}

@media (max-width: 768px){
	.form-content tr {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}
	.form-content tr th,
	.form-content tr td{
		width: 100%;
		padding-top: 5px;
		padding-bottom: 5px;
	}
	.form-content tr td,
	.form-content tr td p{
		font-size: 14px;
	}
	.form-content tr.clm4-text td p{
		font-size: 12px;
	}
	.form-content tr td select,
	.form-content input[type="text"]{
		font-size: 16px;
	}
}


@media (max-width: 320px){
	.form-content tr.clm4-text td p{
		font-size: 1vw;
	}
}

/* 投稿詳細 */
.article-post.clearfix {
	max-width: 900px;
	width: 100%;
	margin: 80px auto;
}
.article-post.clearfix h1{
	padding-bottom:20px;
	font-size: 26px;
}
.article-post.clearfix h2{
	padding-bottom:20px;
	font-size: 24px;
}
.article-post.clearfix h3{
	padding-bottom:20px;
	font-size: 20px;
}
.article-post.clearfix h4{
	padding-bottom:20px;
	font-size: 18px;
}
.article-post.clearfix h5{
	padding-bottom:20px;
}
.article-post.clearfix a{
	text-decoration: underline;
	color: #e52325;
}
.article-post.clearfix p{
	margin: 0 0 1.5em;
	font-size: 16px;
}

.article-post.clearfix br{
	font-size: 0.8em;
}
.article-post.clearfix .alignnone {
	padding: 4px;
	margin: 0px 15px 30px 0px;
}
.article-post.clearfix .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	padding: 4px;
}
.article-post.clearfix .alignright {
	float: right;
	display: inline;
	padding: 4px;
	margin: 0px 0px 30px 40px;
	vertical-align: top;
}
.article-post.clearfix .alignleft {
	float: left;
	display: inline;
	padding: 4px;
	margin: 0px 40px 30px 0px;
	vertical-align: top;
}
.article-post.clearfix .clear {
	clear: both;
}
#event .article-post.clearfix img.alignleft{
	width:248px;
	height: 248px;
	object-fit: cover;
}
@media screen and (max-width:900px){
	.article-post.clearfix .alignnone,
	.article-post.clearfix .aligncenter,
	.article-post.clearfix .alignright,
	.article-post.clearfix .alignleft{
		max-width: 80%;
		display: block;
		margin: 0 auto 0px;
		float: none;
	}
	article-post.clearfix strong{
		font-size: 20px;
	}
	.article-post.clearfix .clear {
		margin-bottom: 30px;
	}
	.article-post.clearfix video{
		width: 100%;
	}
}

@media screen and (max-width:768px){
	.article-post.clearfix img{
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}
/************************************

** レスポンシブページネーション

************************************/
.pagination{
  list-style-type: none;
  padding-left: 0;
  margin: 30px auto;
}
.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration:none;
  border: 1px solid #ddd;
  border-left-width: 0;
  min-width:36px;
  min-height:36px;
  color: #333;
}
.pagination li:not([class*="current"]) a:hover {
  background-color: #eee;
}
.pagination li:first-of-type a {
  border-left-width: 1px;
}
.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: Fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.pagination li.first a::before { content: "\f100"; }
.pagination li.last a::after { content: "\f101"; }
.pagination li.previous a::before { content: "\f104"; }
.pagination li.next a::after { content: "\f105"; }
.pagination li.current a {
 background-color: #ddd;
 cursor: default;
 pointer-events: none;
}
.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
@media only screen and ( max-width: 680px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .pagination li.previous a { border-left-width: 1px; }
}
@media only screen and ( max-width: 500px ) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next{
    position: initial;
    top: initial;
    left: initial;
  }
  .pagination li.previous a { border-left-width: 0; }
}
@media only screen and ( max-width: 400px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .pagination li.previous a { border-left-width: 1px; }
}
@media only screen and ( max-width: 240px ) { /* For watches? */
  .pagination li { width: 50%;}
  .pagination li.current {
    order: 2;
    width: 100%;
    border-left-width: 1px;
  }
}
