@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@700&display=swap');

:root{
	--white:#ffffff;
	--text:#000000;
	--gray:;
	--palegray:#;
	--bggray:#f4f5ff;
	--yellow:#dc9f30;
	--blue:#0157b7;
	--lightblue:#2299ff;
	--red: #;
	--pink:#ff678f;
	--purple:#aa77ff;
}

/* styles
-------------------------------------------------------------- */
body,
button,
input,
select {
	padding: 0;
	margin: 0;
	background: var(--white);
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic,"Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, sans-serif;
  font-optical-sizing: auto;
  /*font-weight: 600;*/
  font-style: normal;
    color: var(--text);
}

body{
    background-color: var(--bgpink);
    font-size: 16px;
}
ul,li,dl,dt,dd{
    margin: 0 auto;
    padding:0;
    list-style: none;
}
table{
    border-bottom: 1px solid #b3b3b3;
    font-size: 14px;
}
tr{
    border-top: 1px solid #b3b3b3;
}
th{
    padding: 25px 20px;
    text-align: center;
    font-weight: normal;
}
td{
    padding: 25px 20px;
}
input[type="text"],
textarea{
    border: 1px solid #b3b3b3;
    box-shadow: none;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
}
input[type="checkbox"]{
    margin-right: 5px;
}
img{
    max-width: 100%;
    vertical-align: top;
}
button{
    border: none;
    background-color: transparent;
}
button:hover{
    cursor: pointer;
}

a{
    opacity: 1;
    transition: .3;
}
a:hover{
    opacity: .7;
}

/* sp */
@media only screen and (max-width: 767px) {
    th{
        padding: 20px 5px;
    }
    td{
        padding: 20px 0 20px 15px;
    }
}

/* typography
-------------------------------------------------------------- */
.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

/* Headings */
h1 {
}
main h2{
    position: relative;
    text-align: center;
    margin: 0 auto 30px;
}
h3 {
	font-size: 32px;
    margin: 10px 0 5px;
    line-height: 1.33;
}
h4 {
	font-size: 18px;
    margin: 0 0 15px;
}
h5 {
	font-size: 17px;
    /*font-weight: bold;*/
}
p{
    font-weight: normal;
    letter-spacing: .1em;
}

a{
    color: #444;
    opacity: 1;
    transition: all .3s ease-in-out;
}
a:hover{
    color: #444;
    opacity: .7;
    text-decoration: none;
}
small {
    font-size: 90%;
}

.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}


/* pc */
@media only screen and (min-width: 768px) {
main h2{
	font-size: 88px;
}
main h2 + h3{
    font-size: 24px;
    margin: 15px auto 45px;
}
h3 {
	font-size: 32px;
    margin: 18px 0;
}
}

/* sp */
@media only screen and (max-width: 911px) {
    h2{
        font-size: 18px;
    }
    h3{
        font-size: 19px;
    }
}



/* header
-------------------------------------------------------------- */
header{
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.global-item a{
    color: var(--blue);
    font-size: 15px;
    text-decoration: none;
    padding: 0 20px;
    display: flex;
    width: 100%;height: 100%;
    align-items: center;
}

/* pc */
@media only screen and (min-width: 768px) {
html {
    scroll-padding-top: 110px;
}
header{
    background-color: rgba(255, 255, 255, .8);
    padding: 23px 0;
}
.logo img{
    max-width: 357px;
    margin: 0 28px;
}
ul.global{
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}
.global-item:not(:first-child) {
    border-left: 1px solid rgba(1, 87, 183, .4);
}
}

/* sp */
@media only screen and (max-width: 767px) {
    header{
        justify-content: flex-end;
    }
.navbar-wrapper{
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    display: none;
}
.navbar-wrapper.open{
    display: block;
    width: 100%;
    padding-top: 50px;
}
.navbar-toggler {
	position: relative;
	z-index:60001;
	padding: 0;
	width:48px;
	height:48px;
	background: var(--blue);
    border-radius: 999px;
	color: var(--text);
	padding: 12px 12px;
    margin: 10px;
	appearance: none;
	border: none;
	transition: .3s;
	font-size: 9px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0;
	cursor: pointer;
}
.navbar-toggler-icon {
	display: block;
	width:24px;
	height:18px;
}
.navbar-toggler-icon span {
	display:block;
	height:2px;
	background-color:var(--white);
	padding:0;
	margin:0 0 6px;
	transition: .3s;
}
.navbar-toggler-icon:after {
	content:'';
	display:block;
	height:2px;
	background-color:var(--white);
	margin-bottom: 5px;
}
.navbar-toggler.open .navbar-toggler-icon span {
	width:30px;
	-webkit-transform: translateX(-2px) translateY(5px) rotate(225deg);
	transform: translateX(-2px) translateY(8px) rotate(225deg);
}
.navbar-toggler.open .navbar-toggler-icon span:nth-child(2) {
	opacity:0;
}
.navbar-toggler.open .navbar-toggler-icon:after {
	width:30px;
	-webkit-transform: translateX(-2px) translateY(-7px) rotate(-225deg);
	transform: translateX(-2px) translateY(-8px) rotate(-225deg);
}

.navbar-wrapper h2.sp{
    font-size: 23px;
    color: var(--blue);
    border-bottom: 1px solid var(--blue);
    margin: 0 20px 30px;
    padding-bottom: 5px;
}
.global-item a{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1em;
}
li.global-item a::before{
    content: '';
    display: inline-block;
    width: 11px;
    height: 14px;
    background: url(../../img/icon-headermenu-sp.svg) no-repeat ;
    background-size: contain;
    margin-right: 5px;
}
ul.header-menu{
    display: flex;
    margin-top: 50px;
}
}


/* footer
-------------------------------------------------------------- */
footer{
    position: relative;
    width: 100%;
    background-color: var(--blue);
    color: var(--white);
}
.footer-menu{
    display: flex;
    width: 100%;
}
.footer-menu_item{
    width: 25%;
}
.copyright{
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
}


/* PC */
@media only screen and (min-width: 912px) {
.footer-menu_item{
    width: 25%;
}
.copyright{
    padding: 26px 0 28px;
    font-size: 18px;
    letter-spacing: .24em;
}
}

/* SP */
@media only screen and (max-width: 911px) {
.footer-menu{
    flex-wrap: wrap;
}
.footer-menu_item{
    width: 50%;
}
}



/* Posts/Articles
-------------------------------------------------------------- */
article {
	background: transparent;
}
main section p{
	margin: 0 0 1.5em;
    line-height: 1.75;
}
/* PC */
@media only screen and (min-width: 767px) {
}

/* SP */
@media only screen and (max-width: 768px) {
main section p{
    font-size: 13px;
}
}

/* Misc & mixens
-------------------------------------------------------------- */

/* PC */
@media only screen and (min-width: 769px) {
    .sp{
        display: none !important;
    }
}

/* SP */
@media only screen and (max-width: 768px) {
    .pc{
        display: none !important;
    }
}


/* home
-------------------------------------------------------------- */
main {
    background: #dff2f4;
}
.container{
    max-width: 1200px;
    margin: 0 auto;
}

.mv{
    position: relative;
}

/* pc */
@media only screen and (min-width: 768px) {
}
/* SP */
@media only screen and (max-width: 768px) {
.container{
    padding: 0 30px;
}
}



/* section01 */
#section01{
    background: var(--bggray);
}

/* pc */
@media only screen and (min-width: 768px) {
#section01{
    background: var(--bggray) url(../../img/bg-section01.png) no-repeat top 28px left -58px;
    background-size: 558px auto;
}
.section01-container{
    display: flex;
    gap: 40px;
    padding: 28px 54px 67px 38px;
    border-bottom: 1px solid var(--blue);
}
.section01-container > *{
    width: 50%;
}
.section01-title img{
    width: 70%;
    margin: 45px 0 23px;
}
}

/* sp */
@media only screen and (max-width: 767px) {
    #section01{
        padding-top: 30px;
    }
    .section01-title{
        margin: 0 0 -10px -30px;
    }
    .section01-content{
        margin: 0 -30px 30px;
    }
}


/* section02 1に合併 */
.section02-content{
    padding-bottom: 70px;
}
.section02-content_btn{
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    border-radius: 5px;
    border: 2px solid var(--white);
    box-shadow: 3px 3px 3px 0px rgba(185, 208, 214, 0.45);
    background-color: var(--pink);
    color: var(--white);
    padding: 0 8px 0 5px;
    margin-bottom: 5px;
    text-decoration: none;
    letter-spacing: .1em;
    line-height: 31px;
    font-size: 20px;
}
.section02-content_btn2{
    background-color: var(--lightblue);
}
.section02-content_btn3{
    background-color: var(--yellow);
}
.section02-content_btn4{
    background-color: var(--purple);
}
.section02-content_btn:hover{
    color: var(--white);
    opacity: 1;
    background-color: var(--blue);
}
.section02-content_btn::before{
    content: '';
    display: block;
    width: 23px;
    height: 23px;
    background: url(../../img/icon-section01-1.png) no-repeat;
    background-size: contain;
}
.section02-content_btn2::before{
    content: '';
    display: block;
    width: 17px;
    height: 25px;
    background: url(../../img/icon-section01-2.png) no-repeat;
    background-size: contain;
}
.section02-content_btn3::before{
    content: '';
    display: block;
    width: 26px;
    height: 23px;
    background: url(../../img/icon-section01-3.png) no-repeat;
    background-size: contain;
}
.section02-content_btn4::before{
    content: '';
    display: block;
    width: 30px;
    height: 17px;
    background: url(../../img/icon-section01-4.png) no-repeat;
    background-size: contain;
}
.section02-content_btn::after{
    content: '';
    display: block;
    width: 17px;
    height: 17px;
    background: url(../../img/icon-arrow.png) no-repeat;
    background-size: contain;
    margin-left: auto;
}
.section02-content_btn span{
    padding-bottom: 4px;
}

/* pc */
@media only screen and (min-width: 768px) {
.section02-title img{
    width: 72%;
    margin: 45px auto 55px;
}
.section02-content{
    display: flex;
    gap: 45px;
    width: 100%;
}
.section02-content_item{
}
}

/* sp */
@media only screen and (max-width: 767px) {
.section02-title{
    border-top: 1px solid var(--blue);
    padding-top: 22px;
}
.section02-content{
    margin: 0 -30px;
}
/* slick */
.slick-slide{
    padding: 0 15px;
}
.slick-arrow{
	position: absolute;
	bottom: 50%;
	right: 30px;
	text-indent: -9999px;
	width:38px;
	height:38px;
	background: url(../../img/icon-slick-next.png) no-repeat;
    background-size: contain;
	border: none;
	margin: 0 10px;
	cursor: pointer;
    z-index: 500;
}
.slick-arrow.slick-prev {
	width:38px;
	height:38px;
	background: url(../../img/icon-slick-prev.png) no-repeat;
    background-size: contain;
  position: absolute;
	left: 30px;
	right: auto;
  margin: auto;
}
}

/* section03 */
#section03{
    background: var(--bggray);
}
.section03-title img{
    max-width: 305px;
    margin: 0 auto;
}
.section03-content_title{
    font-size: 23px;
    text-align: center;
    margin-bottom: 5px;
    color: var(--pink);
}
.section03-content_title span{
    position: relative;
    display: inline-block;
}
.section03-content_title span img{
    position: absolute;
}
.section03-content_img{
    margin-top: auto;
}

.section03-content_process h5{
    color: var(--blue);
    font-size: 15px;
    border-bottom: 1px solid var(--blue);
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.section03-content_process ol{
    margin: 0;
    padding: 0 0 0 15px;
}
.section03-content_process ol li{
    font-size: 13px;
    color: var(--blue);
    list-style-type: decimal;
    margin: 0;
    padding: 0;
}
section03-content_date picture,
.section03-content_date img {
    margin-left: auto;
    margin-right: 0;
}
.section03-content_date p{
    font-size: 13px;
    color: var(--blue);
    margin-bottom: 0;
    margin-top: 10px;
}

/* pc */
@media only screen and (min-width: 768px) {
.section03-content{
    margin: 0 auto;
    padding-bottom: 130px;
}
.section03-content_item{
    background-color: var(--white);
    padding: 20px;
    font-size: 18px;
}
#section2-2-1{
    background: url(../../img/bg-section03-1.png) no-repeat center;
    background-size: 1580px auto;
}
#section2-2-2{
    background: url(../../img/bg-section03-2.png) no-repeat center;
    background-size: 1580px auto;
}
#section2-2-3{
    background: url(../../img/bg-section03-3.png) no-repeat center;
    background-size: 1580px auto;
}
#section2-2-4{
    background: url(../../img/bg-section03-4.png) no-repeat center;
    background-size: 1580px auto;
}
.section03-content_item{
    display: flex;
    flex-direction: column;
    padding: 25px 40px 50px;
    font-size: 18px;
}
.section03-content_item .container{
    position: relative;
    width: 1105px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
}
.section03-content_icon{
    position: absolute;
    left: -11px;
    top: -23px;
    width: 203px;
}
.section03-content_left{
    width: 65%;
    padding: 50px 40px 50px 68px;
    font-size: 16px;
}
.section03-content_title img{
    height: 76px;
    margin-bottom: 15px;
}
.section03-content_img{
    max-width: 500px;
}
.section03-content_right{
    width: 35%;
    background-color: #e9faf7;
    padding: 46px 30px 200px 27px;
}
.section03-content_date{
    position: absolute;
    right: -25px;
    bottom: -10px;
}
#section2-2-3 .section03-content_date{
    right: 45px;
}
#section2-2-2 .section03-content_date{
    right: 45px;
    bottom: -35px;
}
.section03-content_date img{
    height: 170px;
}
.section03-content_date p{
    text-align: center;
    margin-top: 0;
}
}

/* sp */
@media only screen and (max-width: 767px) {
    #section03{
        padding-bottom: 30px;
    }
.section03-title img{
    width: 43%;
    margin: 0 auto;
}
.section03-content_item{
    margin: 0 30px 40px;
}
.section03-content_item .container{
    position: relative;
    background-color: var(--white);
    border-radius: 14px;
    padding-top: 35px;
    padding-bottom: 30px;
}
.section03-content_item .container::before{
    content: '';
    display: block;
    width: 114px;
    height: 7px;
    position: absolute;
    left: calc(50% - 57px);
    top: 0;
    background-color: var(--pink);
}
.section03-content_item .container.section03-content_item2::before{
    content: '';
    background-color: var(--lightblue);
}
.section03-content_item .container.section03-content_item3::before{
    content: '';
    background-color: var(--yellow);
}
.section03-content_item .container.section03-content_item4::before{
    content: '';
    background-color: var(--purple);
}
.section03-content_icon {
position: absolute;
left: -30px;
top: -23px;
width: 131px;
}
.section03-content_title img{
    width: auto;
    height: 38px;
    object-fit: contain;
    margin: 0 auto 20px;
}
.section03-content_right{
    margin-top: 15px;
}
.section03-content_process h5{
    margin-top: 5px;
}
.section03-content_date{
    margin-top: 10px;
}
}

#section04{
    background-color: #dff2f4;
    padding: 50px 0;
}
.section04-shoulder{
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
.section04-content_item03{
    margin: 0 auto 30px;
}
.section04-content_item04{
    max-width: 84%;
    margin: 0 auto 10px;
}

/* pc */
@media only screen and (min-width: 768px) {
#section04{
    padding: 75px 0;
}
.section04-container{
    padding: 65px 70px;
    background-color: var(--white);
}
.section04-title{
    padding: 0 50px 0 0;
    margin-bottom: 10px;
}
.section04-shoulder{
    font-size: 25px;
}
.section04-content{
    position: relative;
    padding: 0 15px 0 35px;
}
.section04-content_item01{
    max-width: 85%;
}
.section04-content_item03{
    max-width: 88%;
}
.section04-content_item05{
    margin-right: 20px;
}
.section04-content_item05 a{
    position: relative;
    display: block;
}
.section04-content_item05:hover a{
    opacity: 1;
}
.section04-content_item05 img:last-child{
    position: absolute;
    left: 0;top: 0;
    opacity: 0;
    transition: .3s;
}
.section04-content_item05:hover img:last-child{
    opacity: 1;
}
.section04-content_item06{
    position: absolute;
    right: -150px;
    bottom: -50px;
    width: 246px;
}
}

/* sp */
@media only screen and (max-width: 767px) {
    .section04-title{
        padding-right: 15px;
    }
    .section04-content_item03{
        margin-top: 15px;
        margin-right: -10px;
    }
    .section04-content_item06{
        max-width: 95%;
        margin: -30px auto -10px;
    }
}

.section05-content{
    position: relative;
}
.section05-content_btn{
    position: relative;
    padding-top: 15px;
    padding-bottom: 30px;
}
.section05-content_btn img{
    width: 175px;
    margin: 0 auto;
}

/* pc */
@media only screen and (min-width: 768px) {
#section05{
    background: url(../../img/bg-section05-1.jpg) no-repeat left top 30px;
    background-size: 345px auto;
}
.section05-title{
    width: 46%;
}
.img-section05-1{
    position: absolute;
    right: 0;
    top: -192px;
    width: auto;
    height: 192px;
}
.section05-content a img{
    margin: 0 20px 0 50px;
    width: calc(100% - 70px);
}
.section05-content_btn img{
    width: 300px;
    margin: 0 auto;
}
.section05-content_btn img:last-child{
    position: absolute;
    top: 15px;
    left: calc(50% - 150px);
    opacity: 0;
    transition: .3s;
}
.section05-content_btn:hover img:first-child{
    opacity: 0;
}
.section05-content_btn:hover a,
.section05-content_btn:hover img:last-child{
    opacity: 1;
}
}

/* sp */
@media only screen and (max-width: 767px) {
    .section05-title{
        margin-bottom: 0;
    }
}

#section06{
    background-image: url(../../img/bg-section06-1.png),url(../../img/bg-section06-2.png);
    background-repeat: repeat,no-repeat;
    background-color: var(--white);
    background-size: 270px auto,1750px auto;
    background-position: left top, center top 120px;
    padding: 50px 0;
}

/* pc */
@media only screen and (min-width: 768px) {
.section06-title{
    max-width: 750px;
    margin: 0 auto -45px;
}
.section06-container img{
    margin-bottom: -20px;
}
}

/* sp */
@media only screen and (max-width: 767px) {
.section06-container img{
    margin-bottom: 30px;
}
}

#section07{
    background-color: #f8f9f5;
    padding: 70px 0 0;
}
.section07-title img{
    max-width: 133px;
    margin: 0 auto;
}
.section07-title + p{
    color: var(--blue);
    font-size: 16px;
    font-weight: bold;
}
.section07-lead {
    text-align: left;
    margin: 40px 0 10px;
}
.section07-lead img {
    max-width: 100%;
}

.section7-content_item{
    text-align: center;
}
.section7-content_item dt{
    background-color: var(--blue);
    color: var(--white);
    font-size: 30px;
    letter-spacing: .5em;
}
.section7-content_item dd{
    padding: 22px;
}
.section7-content_img1{
    max-width: 90%;
    margin: 0 auto 12px;
}
.section7-content_txt1{
    font-size: 15px;
    border-top: 1px solid var(--blue);
    padding-top: 10px;
    margin: 10px auto;
    color: var(--blue);
    letter-spacing: 0;
}
.section7-content_subtitle{
    background-color: #07c9a5;
    border-radius: 999px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: var(--white);
    margin: 0 auto 5px;
}
.section7-content_img2 img,
.section7-content_img3{
    max-width: 100%;
    margin: 0 auto;
}
.section7-content_item:last-child .section7-content_img2{
    padding-top: 15px;
}
.section7-content_item:last-child .section7-content_img2 img{
    width: 133px;
}
.section7-content_txt2{
    text-align: center;
    font-size: 17px;
    border-top: 1px solid var(--blue);
    padding-top: 10px;
    margin: 10px auto 0;
    color: var(--blue);
    letter-spacing: 0;
}


.section07-container2{
    max-width: 1070px;
    padding: 30px 0 50px;
}
.section07-container2_img2{
    width: 78%;
    margin: 0 auto;
}

/* pc */
@media only screen and (min-width: 768px) {
#section07{
    padding: 70px 0;
}
.section07-container{
    background-color: var(--white);
    max-width: 1070px;
    padding: 50px 100px;
}
.section07-title img{
    max-width: 265px;
    margin: 0 auto;
}
.section07-title + p{
    font-size: 28px;
}
.section07-lead {
    width: calc(50% - 12.5px);
    margin: 40px 0 10px;
}
.section7-content{
    display: flex;
    gap: 25px;
}
.section7-content_item{
    border: 1px solid var(--blue);
    width: 50%;
}
.section7-content_item dt{
    font-size: 36px;
}
.section7-content_img1{
    max-width: 76%;
}
.section7-content_txt1{
    font-size: 20px;
}
.section7-content_img2{
    height: 123px;
}
.section7-content_img2 img,
.section7-content_img3{
    max-width: 308px;
}
.section7-content_img3{
    height: 110px;
}
.section07-container2_img1{
    margin-left: -25px;
    margin-bottom: 25px;
}
}

/* sp */
@media only screen and (max-width: 767px) {
    .section7-content_item{
        background-color: var(--white);
        margin-bottom: 30px;
    }
.section7-content_img2 img,
.section7-content_img3{
    margin: 5px auto 20px;
    max-height: 100px;
    object-fit: contain;
}
.section07-container2_img1{
    margin: 0 30px 25px 10px;
}
.section07-container2{
    padding-bottom: 10px;
}
.section07-container2_img2{
    max-width: 239px;
}
}