@charset "utf-8";
/*
Theme Name: yonetani
Description: yonetani
Theme URI:
Author: hagihara
Version: 1.0
License: ライセンス
License URI: ライセンスの URL
*/
/* ----------------------------------------------------------------------
 user reset
---------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
table {
  border-collapse: collapse;
	box-sizing: border-box;
}
ul {
    list-style: none;
}
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
h5 {
	font-weight: 500;
}

/* ----------------------------------------------------------------------
 media query

@media (min-width: 768px) {

}
@media (min-width: 1025px) {

}
---------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
 base
---------------------------------------------------------------------- */
html {
	scroll-behavior: smooth;
    font-size: 50%;
}
@media (min-width: 1025px) {
html {
    font-size: 62.5%;
}
}

body {
    color: #4C4948;
    font-family: YakuHanJP, "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    font-size: 1.8rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
body {
    font-size: 1.8rem;
}
}
@media (min-width: 1025px) {
}

a {
	text-decoration: none;
	outline:none;
	cursor: pointer;
	word-break: break-all;
}
a:hover {
    transition: .3s;
}


/* 例外 */
.icon-non-link a[target="_blank"]::after,
.top-slider a[target="_blank"]::after,
.top-sns a[target="_blank"]::after,
.link-area a[target="_blank"]::after {
	content: " ";
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
}

a img.shirokuro:hover {
	opacity: 1;
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	transition: all .3s;
}

a img:hover {
  opacity: .8;
}

img.scale, img.responsive {
	max-width: 100%;
	height: auto;
}
img{
    -webkit-backface-visibility: hidden;
    vertical-align: bottom;
}

/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */

.yumel-flex{
	display: flex;
	justify-content: center;
	flex-direction: column;
}
@media (min-width:768px) {
	.yumel-flex{
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}
}


.yumel-flex02{
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}


.web-flex{
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.web-flex02{
	display: flex;
	justify-content: center;
	flex-direction: column;
}
@media (min-width:768px) {
.web-flex{
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.web-flex02{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}	
}



/* sub-page */
.col-2-web {
    width: 100%;
	margin-top: 30px;
}
@media (min-width:768px) {
.col-2-web {
    width: 48.5%;
	margin-top: 60px;	
}
}




.flex{
    display: flex;
}

.fl-reverse {
	flex-direction: row-reverse;
}

.fl-wrap{
    flex-wrap: wrap;
}
.fl-column {
    flex-direction: column;
}
.fl-center{
    justify-content: center;
    align-items: center;
}
.fl-between{
    flex-wrap: wrap;
    justify-content: space-between;
}
.fl-justify{
    justify-content: center;
}
.fl-around{
    justify-content: space-around;
}
.fl-end{
	justify-content: flex-end;
}
.fl-start{
	justify-content: flex-start;
}

.fl-align-center {
    align-items: center;
}
.fl-align-start {
    align-items: flex-start;
}
.fl-align-self-start-only {
	align-self: flex-start;
}

.fl-align-self-end {
	align-self: center;
}
@media (min-width: 768px) {	
.fl-align-self-end {
	align-self: flex-end;
}
}

.fl-align-self-start {
	align-self: center;
}
@media (min-width: 768px) {	
.fl-align-self-start {
	align-self: flex-start;
}
}


.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.grid-column{
    padding: 1.5rem 1rem;
}

/* 3つ */
.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}
@media (min-width:768px) {
	.grid-3 {
		display: grid;
		gap: 3rem;
		grid-template-columns: 1fr 1fr 1fr;
}
}
/* 7つ */
.grid-7 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media (min-width:768px) {
	.grid-7 {
		display: grid;
		gap: 2rem;
		grid-template-columns: repeat(auto-fit, minmax(12%, 1fr));
}
}




.col-2 {
    width: 100%;
}
@media (min-width:768px) {
	.col-2 {
		width: 50%;
	}
}

.col-xs-2 {
    width: 50%;
}

.col-3{
    width: 100%;
}
@media (min-width:768px) {
	.col-3 {
		width: 31.5%;
	}
}

.col-xs-3 {
    width: 48%;
}
@media (min-width:768px) {
	.col-xs-3 {
		width: 31%;
	}
}

.col-4{
    width: calc(50% - 1px);
}
@media (min-width:768px) {
	.col-4 {
		width: calc(25% - 1px);
	}
}

.col-5 {
    width: calc(50% - 1px);
}
@media (min-width:768px) {
	.col-5 {
		width: calc(20% - 3px);
	}
}


/* sub-page */
.col-2-sub {
    width: 100%;
}
@media (min-width:768px) {
.col-2-sub {
    width: 48.5%;
}
}

.col-4-sub {
    width: calc(50% - 10px);
}
@media (min-width:768px) {
	.col-4-sub {
		width: calc(25% - 10px);
	}
}
@media (min-width:1025px) {
.col-4-sub {
    width: calc(25% - 20px);
}
}


/* per */
.col-2-10p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-10p {
    width: 10%;
}
}

.col-2-15p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-15p {
    width: 15%;
}
}

.col-2-20p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-20p {
    width: 20%;
}
}

.col-2-30p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-30p {
    width: 30%;
}
}

.col-2-35p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-35p {
    width: 35%;
}
}


.col-2-45p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-45p {
    width: 45%;
}
}


.col-2-55p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-55p {
    width: 55%;
}
}

.col-2-65p {
    width: 100%;
}
@media (min-width:768px) {
	.col-2-65p {
		width: 65%;
	}
}


.col-2-75p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-75p {
    width: 75%;
}
}


.col-2-80p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-80p {
    width: 80%;
}
}

.col-2-90p {
    width: 100%;
}
@media (min-width:768px) {
.col-2-90p {
    width: 90%;
}
}







.contents,.contents-02{
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
	box-sizing: border-box;
}
@media (min-width:768px) {
	.contents{
        width: 94%;
    }
    .contents-02{
        width: 90%;
    }
}

@media (min-width: 1025px) {
	.contents{
        width: 80rem;
    }
    .contents-02{
        width: 100rem;
    }
}



.text-c{
    text-align: center;
}
.text-r{
    text-align: right;
}
.text-lc,.text-l{
    text-align: left;
}
.text-cl{
    text-align: center;
}

@media (min-width:768px) {
.text-lc{
    text-align: center;
}
.text-cl{
    text-align: left;
}
}

/* ----------------------------------------------------------------------
 スマホ特例
---------------------------------------------------------------------- */
@media (max-width:767px) {
.sp-column {
    flex-direction: column;
}
.sp-center{
    text-align: center;
}
.sp-mgn {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.sp-mt-1 {
	margin-top: 1rem;
}
.sp-mt-2 {
	margin-top: 2rem;
}
.sp-mt-3 {
	margin-top: 3rem;
}
.sp-mt-5 {
	margin-top: 5rem;
}
.sp-mt-6 {
	margin-top: 6rem;
}
.sp-mt-7 {
	margin-top: 7rem;
}
.sp-mt-10 {
	margin-top: 10rem;
}
.sp-mt-m3{
    margin-top: -3rem;
}
.sp-pd-r3 {
	padding-right: 3rem;
}
.sp-pd-l3 {
	padding-left: 3rem;
}
}

/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.mtb-1{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mtb-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-1{
    margin-top: 1rem;
}


.mt-2{
    margin-top: 2rem;
}

.mt-3{
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
	.mt-3{
	   	margin-top: 3rem;
	}
}

.mt-4{
    margin-top: 2rem;
}
@media (min-width: 768px) {
	.mt-4{
	   	margin-top: 4rem;
	}
}

.mt-5 {
	margin-top: 2.5rem;
}
@media (min-width: 768px) {
	.mt-5{
	   	margin-top: 5rem;
	}
}
.mt-6 {
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.mt-6{
	   	margin-top: 6rem;
	}
}


.mt-7 {
	margin-top: 3.5rem;
}
@media (min-width: 768px) {
	.mt-7{
	   	margin-top: 7rem;
	}
}


.mt-8 {
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.mt-8{
	   	margin-top: 8rem;
	}
}

.mt-10{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-10{
	   	margin-top: 10rem;
	}
}


.mt-15{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-15{
	   	margin-top: 15rem;
	}
}


.mt-20{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-20{
	   	margin-top: 20rem;
	}
}

.mb-10{
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
	.mb-10{
	   	margin-bottom: 10rem;
	}
}

.mb-15{
    margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
	.mb-15{
	   	margin-bottom: 15rem;
	}
}

.mb-20{
    margin-bottom: 10rem;
}
@media (min-width: 768px) {
	.mb-20{
	   	margin-bottom: 20rem;
	}
}

.ml-04{
    margin-left: .4rem;
}
.ml-05{
    margin-left: .5rem;
}
.ml-1{
    margin-left: 1rem;
}
.ml-2{
    margin-left: 2rem;
}
.ml-3{
    margin-left: 3rem;
}

.mr-1{
    margin-right: 1rem;
}
.m-auto {
	margin-left : auto;
	margin-right: auto; 
}

.pt-1{
    padding-top: 1rem;
}


.pt-1-sp-0 {
    padding-top: 0rem;
}
@media (min-width: 768px) {
	.pt-1-sp-0 {
		padding-top: 1rem;
	}
}


.pt-2{
    padding-top: 2rem;
}


.pt-10 {
	padding-top: 5rem;
}
@media (min-width: 768px) {
	.pt-10 {
		padding-top: 10rem;
	}
}


.pd-1 {
    padding: 1rem;
}
.pd-2 {
    padding: 2rem;
}
.pd-3 {
    padding: 3rem;
}
.pd-4 {
    padding: 4rem;
}
.pd-5 {
    padding: 3.5rem;
}
@media (min-width: 768px) {
	.pd-5 {
		padding: 5rem;
	}
}


.pb-05{
    padding-bottom: .5rem;
}
.pb-1{
    padding-bottom: 1rem;
}
.pb-2{
    padding-bottom: 2rem;
}
.pb-3{
    padding-bottom: 3rem;
}

.pb-6{
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
	.pb-6{
		padding-bottom: 6rem;
	}
}

.pb-20 {
	padding-bottom: 10rem;
}
@media (min-width: 1025px) {
.pb-20 {
	padding-bottom: 20rem;
}
}

.pd-bm-4 {
	padding-bottom: 2.5rem;
}
@media (min-width: 1025px) {
	.pd-bm-4 {
		padding-bottom: 4rem;
	}
}

.pd-tb-1 {
	padding: 1rem 0;
}
.pd-tb-2 {
	padding: 2rem 0;
}
.pd-tb-3 {
	padding: 3rem 0;
}

.pd-tb-4 {
	padding: 4rem 0;
}

.mg-lr-3 {
	margin-left: 3rem;
	margin-right: 3rem;
}

.mt-m1{
    margin-top: -1rem;
}


.mt-animation{
    margin-top: .5rem;
}
@media (min-width: 1025px) {
	.mt-animation {
		margin-top: -1.5rem;
	}
}

.height-100p {
	height: 100%;
}
.width-86p {
	width: 86%;
}

.width-40px{
    width: 40px;
}



	
/* ----------------------------------------------------------------------
 フォント関連
---------------------------------------------------------------------- */
/* サイズ */
.fs-100{
    font-size: 7.5rem;
    line-height: 1;
}
@media (min-width: 768px) {
	.fs-100{
    	font-size: 10rem;
	}
}


.fs-75{
    font-size: 5.625rem;
}
@media (min-width: 768px) {
	.fs-75{
    	font-size: 7.5rem;
	}
}

.fs-60{
    font-size: 4.02rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-60{
    	font-size: 6rem;
	}
}


.fs-45{
    font-size: 3.375rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-45{
    	font-size: 4.5rem;
	}
}

.fs-30 {
	font-size: 2.25rem;
	line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-30 {
		font-size: 3rem;
	}
}

.fs-25{
    font-size: 1.875rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-25{
    	font-size: 2.5rem;
	}
}

.fs-20{
    font-size: 1.8rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-20{
    	font-size: 2rem;
	}
}


.fs-16{
    font-size: 1.5rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-16{
    	font-size: 1.6rem;
	}
}


.fs-15{
    font-size: 1.3rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-15{
    	font-size: 1.5rem;
	}
}

.fs-bold{
    font-weight: 600;
}


.fs-80p {
    font-size: 80%;
}
.fs-90p {
    font-size: 90%;
}
.fs-110p {
    font-size: 110%;
}
.fs-120p {
    font-size: 120%;
}


/* 見出し */
.heading-60 {
	font-size: 4rem;
	line-height: 1.7;
	font-weight: 700;
}
@media (min-width: 768px) {
	.heading-60 {
		font-size: 6rem;
	}
}

.heading-50 {
	font-size: 3rem;
	line-height: 1.7;
	font-weight: 500;
}
@media (min-width: 768px) {
	.heading-50 {
		font-size: 5rem;
	}
}

.heading-40 {
	font-size: 2.75rem;
	line-height: 1.7;
	font-weight: 700;
}
@media (min-width: 768px) {
	.heading-40 {
		font-size: 4rem;
	}
}
.heading-40-a {
	border-bottom: 1px solid;
	padding-bottom: 1.5rem;
	color: #235A9F;
}


.heading-30 {
	font-size: 2.25rem;
	line-height: 1.7;
	font-weight: 500;
}
@media (min-width: 768px) {
	.heading-30 {
		font-size: 2.7rem;
	}
}
.heading-30-a {
	border-left: 7px solid #235A9F;
	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #235A9F;
	background: #F7F7F7;
}
@media (min-width: 768px) {
	.heading-30-a {
		border-left: 9px solid #235A9F;
	}
}
.heading-30-b {
	background: #235A9F;
	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #fff;
}
@media (min-width: 768px) {
	.heading-30-b {
	}
}


.heading-30-wb {
	background: #0583c9;
	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #fff;
}
@media (min-width: 768px) {
	.heading-30-wb {
	}
}


.heading-30-wy {
	background: #fce940;
	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #0583c9;
}
@media (min-width: 768px) {
	.heading-30-wy {
	}
}

.heading-30-chara {
	background: #ea6383;
	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #fff;
}
@media (min-width: 768px) {
	.heading-30-wb {
	}
}

.heading-30-border-wb {
	border: 1px solid #0583c9;
	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	color: #0583c9;
}
@media (min-width: 768px) {
	.heading-30-border {
	}
}

/* fukidashi */
.heading-30-fuki{
    position:relative;
    background:#0583C9;
    text-align:center;
    color:#FFFFFF;
    	padding-left: 1.8rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
}
.heading-30-fuki:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(5, 131, 201, 0);
    border-top-width:20px;
    border-bottom-width:20px;
    border-left-width:21px;
    border-right-width:21px;
    margin-left: -21px;
    border-top-color:#0583C9;
    top:100%;
    left:50%;
}

.line-10 {
    line-height: 1;
}
.line-15 {
	line-height: 1.5;
}
.line-16 {
	line-height: 1.6;
}
.line-20 {
	line-height: 2;
}
.line-25 {
	line-height: 2.5;
}

/* 色*/

.main-color{
    color: #235A9F;
}
.white{
    color: #fff;
}
.black{
    color: #111;
}
.gray {
	color: #4C4948;
}
.gray2 {
	color: #F1F1F1;
}
.gray3 {
	color: #676767;
}
.red {
	color: #b94433;
}
.pink {
	color: #ea6383;
}

/* インデント */
.indent-1 {
    padding-left:1em;
    text-indent:-1em;
}

/* position */
.p-relative {
	position: relative;
}


/* ----------------------------------------------------------------------
 背景色
---------------------------------------------------------------------- */

.bg-main {
    background: #235A9F;
}
.bg-yellow {
    background: #FEE100;
}

.bg-pink {
	background: #ea6383;
}

/* padding */
.bg-pd {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
@media (min-width: 1025px) {
.bg-pd {
	padding-top: 15rem;
	padding-bottom: 15rem;
}
}


/* ----------------------------------------------------------------------
 ページ内リンク
---------------------------------------------------------------------- */
.page-link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media (min-width: 768px) {
	.page-link {
		justify-content: flex-start;
	}
}

.btn-page-link {
	display: flex;
	align-items: center;
	justify-content: center;
    
	text-align: center;
    font-weight: 700;
	font-size: 12px;
	margin-left: .5rem;
	margin-right: .5rem;
	
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: .5rem;
	padding-right: .5rem;
	
	
	color: #fff;
	background: #235A9F;
	border: 2px solid #235A9F;	
	width: 43%;
}
@media (min-width: 768px) {
	.btn-page-link {
		font-size: 16px;
		width: auto;
		padding-left: 2rem;
		padding-right: 2rem;
    }
}

.btn-page-link::after {
	font-family: "Font Awesome 5 Free";
	content: "\f13a";
    font-size: 0.8em;
    margin-left: 12px;
	margin-right: 0px;
	margin-top: 0px;
    font-weight: 700;
}


.btn-page-link:first-child {
	margin-left: .5rem;
}
@media (min-width: 768px) {
	.btn-page-link:first-child {
		margin-left: 0rem;
	}
}
.btn-page-link:hover {
	transition: all .2s;
	background: none;
	color: #235A9F;
}


/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
.btn{
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 700;
	border-radius: 60px;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	min-width: 280px;
}
@media (min-width: 1025px) {
	.btn{
		height: 60px;
		line-height: 60px;
		width: 435px;
		margin-left: auto;
		margin-right: auto;
    }
}
.btn:hover {
  transition: all .2s;
}
/* +under arrow ver */
.btn-2 {
	display: block;
    text-align: center;
    font-weight: 700;
	border-radius: 60px;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem;
	min-width: 280px;
}
@media (min-width: 1025px) {
	.btn-2 {
		width: 435px;		
    }
}
.btn-2:hover {
  transition: all .2s;
}

/* size-min */
.btn-min {
	display: block;
    height: 50px;
	line-height: 46px;
	text-align: center;
    font-weight: 700;
	border-radius: 60px;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	min-width: 130px;
}
@media (min-width: 1025px) {
	.btn-min {
		margin-left: auto;
		margin-right: auto;
    }
}


/* size-min */
.btn-2-min {
	display: block;
    text-align: center;
    font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	min-width: 140px;
}
@media (min-width: 1025px) {
	.btn-2-min {
		padding-top: 3rem;
		padding-bottom: 3rem;
    }
}
.btn-2:hover {
  transition: all .2s;
}


/* PCで左よせボタン */
.btn-free {
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 700;
	border-radius: 60px;
	width: 280px;
}
@media (min-width: 1025px) {
	.btn-free {
		height: 60px;
		line-height: 60px;
		width: 435px;
    }
}
.btn-free:hover {
  transition: all .2s;
}

/* PCで左よせボタン */
.btn-pc-left {
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 700;
	border-radius: 60px;
	margin-left: 1.5rem;
	margin-right: 1.5rem;
	min-width: 280px;
}
@media (min-width: 1025px) {
	.btn-pc-left {
		height: 60px;
		line-height: 60px;
		width: 320px;
		margin-left: 0;
    }
}
.btn-pc-left:hover {
  transition: all .2s;
}

/* ancor-btn */
.ancor-btn{
	display: block;
    height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 10.5px;
    font-weight: 700;
	border-radius: 50px;
	min-width: 15rem;
}
@media (min-width: 768px) {
	.ancor-btn{
		font-size: 13px;
    }
}
@media (min-width: 1025px) {
	.ancor-btn{
		height: 50px;
		line-height: 50px;
		font-size: 15px;
		width: 90%;
    }
}
.ancor-btn:hover {
  transition: all .2s;
}


/* メインカラー */
.btn-main-color {
	color: #fff;
	background: #235A9F;
	border: 2px solid #235A9F;	
}
.btn-main-color:hover {
  background: none;
  color: #235A9F;
}

/* 白色 */
.btn-white {
	color: #235A9F;
	background: #fff;
	border: 2px solid #fff;
	
}
.btn-white:hover {
  background: none;
  color: #fff;
}


/* 印刷 */
.btn-printing {
	color: #fff;
	background: #7274E4;
	border: 2px solid #7274E4;
	
}
.btn-printing:hover {
  background: none;
  color: #7274E4;
}

/* 透明 */
.btn-tomei {
	color: #4C4948;
	background: none;
	border: 1px solid #4C4948;
}
.btn-tomei:hover {
	color: #fff;
	background: #235A9F;
	border: 1px solid #235A9F;
}


/* 透明-2 +arrow ver */
.btn-tomei-2 {
	color: #235A9F;
	background: none;
	border: 1px solid #235A9F;
}
.btn-tomei-2:hover {
	color: #fff;
	background: #235A9F;
	border: 1px solid #235A9F;
}
/* 透明 */
.btn-tomei-blue {
	color: #225b9f;
	background: none;
	border: 1px solid #225b9f;
}
.btn-tomei-blue:hover {
	color: #fff;
	background: #235A9F;
	border: 1px solid #235A9F;
}

/* 透明-red */
.btn-tomei-red {
	color: #b94433;
	background: none;
	border: 1px solid #b94433;
}
.btn-tomei-red:hover {
	color: #fff;
	background: #b94433;
	border: 1px solid #b94433;
}
/* 透明-pink */
.btn-tomei-pink {
	color: #ea6383;
	background: none;
	border: 1px solid #ea6383;
}
.btn-tomei-pink:hover {
	color: #fff;
	background: #ea6383;
	border: 1px solid #ea6383;
}







/* btn-hero */
.btn-hero{
	display: block;
    height: 50px;
	line-height: 45px;
	text-align: center;
    font-weight: 700;
	border-radius: 60px;
	min-width: 280px;
	color: #fff;
	background: #235A9F;
	border: 2px solid #235A9F;	
}
@media (min-width: 1025px) {
	.btn-hero{		
		width: 300px;
    }
}
.btn-hero:hover {
	background: none;
	color: #235A9F;
	transition: all .2s;
}

/* web-btn */
.btn-web {
	position: relative;
	color: #fff;
	background: none;
	border-bottom: 2px solid #fff;
	
	display: block;
    height: 50px;
	line-height: 50px;
    margin-left: 1.5rem;
	margin-right: 1.5rem;
	min-width: 180px;
	
	padding-left: 3rem;
}
@media (min-width: 1025px) {
	.btn-web{
		height: 55px;
		line-height: 55px;
		max-width: 250px;
		padding-left: 12%;
	}
}
.btn-web .arrow-web::before{
    content: '';
    width: 50px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 55%;
    right: 8.2%;
}
.bg-web:hover .btn-web .arrow-web::before{    
    right: 3.2%;
	transition: all .2s;
}

.btn-web .arrow-web::after{
    content: '';
    width: 9px;
    height: 9px;
    border: 0px;
    border-top: 1px solid #fff;
    /*border-right: 0px solid #fff;*/
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 55%;
    right: 9%;
    margin-top: -5px;
}
.bg-web:hover .btn-web .arrow-web::after{    
    right: 4%;
	transition: all .2s;
}


/* ----------------------------------------------------------------------
 表示・非表示
---------------------------------------------------------------------- */
.sp-only-on {
    display: block;
   }
@media (min-width: 768px) {
	.sp-only-on {
        display: none;
    }
}

.sp-on {
    display: block;
   }
@media (min-width: 1025px) {
	.sp-on {
        display: none;
    }
}

.tab-on {
    display: none;
}
@media (min-width: 768px) {
.tab-on {
    display: block;
}

}
.pc-on {
    display: none;
}
@media (min-width: 1025px) {
.pc-on {
    display: block;
}
}


/* ----------------------------------------------------------------------
 header
---------------------------------------------------------------------- */
header{
    width: 100%;
    height: 8.5rem;
    position: fixed;
    z-index: 99;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	display: flex;
	justify-content: space-between;
	padding: 10px 10px;
	align-items: center;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	header{
        height: 9rem;
    }
}


header a{
        color: #235A9F;
}
 

#link{
	font-size:12px;
}

.logo_head{
	width: 100%;
	max-width: 250px;
	height: auto;
}


.header_innner{
	display: none;
	align-items: center;
}
@media (min-width: 768px) {
	.header_innner{
	display: flex;
	align-items: center;
}
}

.pc_nav{
	display: flex;
	font-size: 16px;
	font-weight: 600;
}

.pc_nav li{
margin-right: 16px;
}


.entry_btn{
	background: #EC86A9;
	color:#FFFFFF;
	display: block;
	padding: 12px;
	border-radius: 50vw;
	width: 180px;
	text-align: center;
			transition: all 0.5s ease-in;	
}

.entry_btn:hover{
			transition: all 0.5s ease-in;
		background: #1F5BA2;
		color: #FFFFFF;
}


.main_wrapper{
	padding-top: 9rem;
}










/* ----------------------------------------------------------------------
 footer
---------------------------------------------------------------------- */
footer{
	padding:60px 0; 
}


.logo_footer_center{
	text-align: center;
}


.logo_footer{
	width: 100%;
	max-width: 280px;
	height: auto;
	
}

.footer_inctext{
	text-align: center;
	margin-top: 20px;
	font-size: 20px;
}
.footer_text{
	text-align: center;
	margin-top: 20px;
}









/* ----------------------------------------------------------------------
 content01
---------------------------------------------------------------------- */
.main_backimages{
	background: url("images/main_images_sp.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 80vh;	
}

@media (min-width: 768px) {
.main_backimages{
	background: url("images/main_images.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 80vh;
	
}
}

.main_content{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	height: 70vh;	
	align-content: center;	
}

.main_title{
	display: block;
	width: 100%;
	max-width: 900px;
}







/* スクロールダウンの位置 */
.scroll {
  padding-bottom: 20px;
  position: relative;
  text-align: center;
	color: #EC86A9;
}
/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 3px solid #EC86A9;
  border-left: 3px solid #EC86A9;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20px;
}
/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}





.main_btn{
	display: block;
	width: 100%;
	padding: 10px;
	background: #EC86A9;
	color: #FFFFFF;
	text-align: center;
	border-radius: 50vw;
	transition: all 0.5s ease-in;
	margin: 30px auto 0;	
}


.main_btn:hover{
		transition: all 0.5s ease-in;
		background: #1F5BA2;
		color: #FFFFFF;
}


.footer_btn{
	display: block;
	width: 100%;
	max-width: 260px;
	padding: 10px;
	background: #EC86A9;
	color: #FFFFFF;
	text-align: center;
	border-radius: 50vw;
	transition: all 0.5s ease-in;
	margin: 60px auto 0;
}


.footer_btn:hover{
		transition: all 0.5s ease-in;
		background: #1F5BA2;
		color: #FFFFFF;
}



.backimages02{
	background: url("images/back02.jpg") right;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px 0;	
}


.backimages03{
	background: url("images/back03.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	padding: 60px 0;	
}


.backimages04{
	background: #FBE93F;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 60px 0;
}

.backimages05{
	background: url("images/back04.jpg") center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 60px 0;	
}



.title_maincolor{
	font-size: 20px;
	color: #215B9F;
	padding-bottom: 16px;
	position: relative;
}
@media (min-width: 768px) {
	.title_maincolor{
		font-size: 30px;
		color: #215B9F;
		padding-bottom: 16px;
		position: relative;
	}

}


.title_maincolor::before{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: #215B9F;
	width: 100%;
	height: 2px;
}


.title_pinkcolor{
	font-size: 18px;
	color: #EC86A9;
	padding-bottom: 16px;
	position: relative;
}
@media (min-width: 768px) {
	.title_pinkcolor{
		font-size: 26px;
		color: #EC86A9;
		padding-bottom: 16px;
		position: relative;
	}

}

.title_pinkcolor::before{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: #EC86A9;
	width: 100%;
	height: 2px;
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:-120%;
    left:0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#215B9F;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center; 
}

#g-nav li a{
  color: #FFFFFF;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
	display: block;
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
}
@media (min-width: 768px) {
.openbtn1{	
		display: none;
	}
}

  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #215B9F;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

