/* ===========================
 1) Design Tokens
=========================== */
:root{

}

/* ===========================
 2) Minimal Reset
=========================== */
*,
*::before,
*::after{ box-sizing: border-box; }

html{ -webkit-text-size-adjust: 100%; }
html{scroll-behavior: smooth;}

body,div,dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,code,form,fieldset,legend,
p,blockquote,table,th,td {margin: 0; padding: 0;}
ul,dl,ol {text-indent: 0;}
li {list-style: none;}
table {border-collapse: collapse; border-spacing: 0; font-size: inherit;}
em{font-style:normal;}

body{
color: #0068ad;
margin: 0 auto;
padding: 0 0 0 0;
position:relative;
text-align:justify;
font-family: "Zen Maru Gothic", sans-serif;
font-weight: 500;
font-style: normal;
font-weight: 500; /* 500 */
line-height:1.75;
letter-spacing:0.02em;
/*font-feature-settings: "palt";自動カーニング */
text-rendering: optimizeLegibility;
overflow-x: hidden;
background-color:#66c6f1;
}

img, svg, video, canvas{
max-width: 100%;
height: auto;

border: 0;
}

a{
color: inherit;
text-decoration: underline;
text-underline-offset: .18em;
}

a:hover{ text-decoration-thickness: 2px; }

:focus{ outline: none; }
:focus-visible{
outline: 2px solid var(--color-primary);
outline-offset: 2px;
}

.palt_none{
font-feature-settings: none; /* 自動カーニング解除 */
}


/* ===========================
 3) Utilities
=========================== */

@media screen and (min-width: 768px) {
.sp{
display:none !important;
}
}
@media screen and (max-width: 767px) {
.pc{
display:none;
}
}

/* ===========================
 4) Layout / Components PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {
/* Layout */
#wrap{
margin: 0 0;
padding: 0 0 0 0;
position:relative;
}

.container{
width: min(1000px, 100% - 40px);
margin-inline: auto;
}

.section{
margin: 0 0 50px;
padding: 0 0;
position:relative;
}

/* header */
header.site-header{
margin: 0 0;
padding: 0 0 0 0;
position:relative;
text-align:center;
width: 100%;
height:62px;
margin-inline: auto;
background-color:#fff;
display: flex;
align-items:center;
justify-content:space-between;
}
header .description{
display:none;
}
header h1{
margin: 0 0;
padding: 0 0 0 15px;
position:relative;
text-align:left;
}
ul.h_nav-list{
margin: 0 0;
padding: 0 0 0 0;
position:relative;
display: flex;
align-items:center;
justify-content:flex-start;
}
ul.h_nav-list > li{
margin: 0 0;
padding: 0 20px 0 0;
position:relative;
text-align:right;
height:62px;
display: flex;
align-items:center;
}
ul.h_nav-list > li > a{
font-weight: 500;
font-size: 16px;
line-height: 1.5;
text-align: left;
color: #0068ad;
text-decoration:none;
display:block;
}
ul.h_nav-list > li:nth-child(1) > a em{
padding: 0 3px;
font-weight: 600;
font-size: 16px;
line-height: 1.5;
background:linear-gradient(transparent 70%, #ff6 70%);
}
ul.h_nav-list > li:nth-child(2) > a em{
padding: 0 3px;
font-weight: 600;
font-size: 16px;
line-height: 1.5;
background:linear-gradient(transparent 70%, #f6c6db 70%);
}
ul.h_nav-list > li > a img{
margin-left:8px;
}
ul.h_nav-list > li:hover > a img{
transition : 0.3s;
transform: scale(1.8);
}
ul.h_nav-list > li:hover:nth-child(1) > a em{
transition : 0.3s;
background:linear-gradient(transparent 0%, #ff6 0%);
}
ul.h_nav-list > li:nth-child(2) > a:hover em{
transition : 0.3s;
background:linear-gradient(transparent 0%, #f6c6db 0%);
}
ul.h_nav-list > li > a:hover_{
transition : 0.3s;
text-decoration: underline dotted #0068ad;
text-underline-offset: .5em;
text-decoration-thickness: 3px; 
}

ul.h_nav-list > li.dropdown:hover ul.dropdown__lists {
display: block;
z-index:10;
}
ul.dropdown__lists {
display: none;
width: auto;
position: absolute;
top: 61px;
right: 15px;
text-align:left;
border-bottom:0px solid #bebebe;
filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
background-color: #0068ad;
animation: fadeInPage 0.3s;
-webkit-animation: fadeInPage 0.3s;
animation-fill-mode: forwards;
width:300px;
}
ul.dropdown__lists > li {
height: auto;
transition: all .3s;
position: relative;
text-align:left;
}
ul.dropdown__lists > li a img{
margin-left:8px;
vertical-align:middle;
width:15px;
}
ul.dropdown__lists > li:hover a img{
transition : 0.3s;
transform: scale(1.4);
}
ul.dropdown__lists > li a {
margin:0 0 0;
padding: 15px 15px;
position:relative;
font-size:16px;
line-height:16px;
color:#fff;
text-decoration:none;
font-weight:500;
text-align:center;
white-space:nowrap;
width:auto;
height:auto;
display: block;
align-items:center;
justify-content:center;
font-family: "Noto Sans JP", sans-serif;
}
ul.dropdown__lists > li a::before{
content: "";
width: 100%;
height: 1px;
border-bottom:1px dashed #fff;
position: absolute;
top: 0;
left: 0;
}
ul.dropdown__lists > li:nth-child(1) a::before{
content: "";
width: 100%;
height: 0px;
background-color: #fff;
position: absolute;
top: 0;
left: 0;
}

.btn_menu{
margin: 0 auto 0;
padding: 25px 25px;
position: fixed;
top:90px;
right:0;
cursor: pointer;
border-radius:10px 0 0 10px;
background: linear-gradient(120deg, #f9eb85 0%, #fabad4 30%,#8ad6f9 57%,#e3bde5 80%,#d6eca8 100%);
z-index:100;
display:none;
}
.btn_menu img{
vertical-align:top;
}

/* g_nav */

.g_nav{
margin: 0;
padding: 0;
position:relative;
display:none;
}

/* fadeInPageアニメーション */
@keyframes fadeInPage {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeInPage {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#drawernav{
display:none;
}

/* Footer */
.site-footer{
margin: 0 auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
}
.f_inner{
margin: 0 auto 0;
padding: 50px 0 30px;
position:relative;
text-align: center;
background-color:#0068ad;
}
.f_inner h3{
margin: 0 auto 20px;
padding: 0 0;
position:relative;
text-align:center;
font-size: 25px;
line-height:25px;
font-weight:600;
color:#fff;
letter-spacing:0.05em;
}
.footer_box{
margin: 0 auto 10px;
padding: 20px 0 ;
position:relative;
text-align: center;
background-color:#fff;
border-radius:15px;
max-width:800px;
display: flex;
align-items:center;
justify-content:center;
font-family: "Noto Sans JP", sans-serif;
width: min(800px, 100% - 40px);
margin-inline: auto;
}
.footer_box .support_icon{
margin: 0 30px 0 0;
padding: 0 0 ;
position:relative;
text-align: center;
width: 55px;
flex-shrink: 0;
}
.footer_box .support_info{
margin: 0 0 0;
padding: 0 0 ;
position:relative;
text-align: left;
}
.footer_box .support_info h4{
display:block;
margin: 0 0 5px;
padding: 0 0px;
position:relative;
font-weight: 600;
font-size: 19px;
line-height: 19px;
text-align: left;
color:#0068ad;
letter-spacing:0.00em;
}
.footer_box .support_info strong{
display:block;
margin: 0 0 10px;
padding: 0 0px;
position:relative;
font-weight: 600;
font-size: 38px;
line-height: 38px;
text-align: left;
color:#0068ad;
letter-spacing:0.00em;
}
.footer_box .support_info strong a{
	text-decoration:none;
}
.footer_box .support_info strong img{
margin-right:5px;
}
.footer_box .support_info small{
display:block;
margin: 0 auto;
padding: 0 0px;
position:relative;
font-weight: 500;
font-size: 13px;
line-height: 13px;
text-align: left;
color:#0068ad;
letter-spacing:0.00em;
}
.f_annotation{
	margin: 0 auto 40px;
	color:#fff;
	font-size:12px;
}
.f_annotation2{
	margin: 0 auto 30px;
	color:#0068ad;
	font-size:12px;
}




ul.f_sns{
margin: 0 auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
max-width:800px;
display: flex;
align-items:center;
justify-content:flex-end;
color:#fff;
width: min(800px, 100% - 40px);
margin-inline: auto;
}
ul.f_sns li {
margin-left:20px;
padding:0;
}
ul.f_sns li h5{
padding: 10px 15px 10px 0;
position:relative;
font-weight: 600;
font-size: 15px;
line-height: 15px;
text-align: left;
letter-spacing:0.00em;
background-image: url(../images/base/f_arr.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
}
ul.f_sns li a:hover{
transition : 0.3s;
transform: scale(1.2);
display: inline-block;
transform-origin: center;
}

.site-footer small{
display:block;
margin: 0 auto;
padding: 30px 0px 50px;
position:relative;
font-weight: 500;
font-size: 13px;
line-height: 13px;
text-align: center;
color:#fff;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}

.backtotop{
position:fixed;
/* bottom:15px; */
/* right:15px; */
bottom: 90px;
right: 23px;
z-index:100;
}
.backtotop a{
display:block;
}
.backtotop a img{
width:55px;
filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.4));
}
.backtotop a:hover{
transition : 0.3s;
opacity:0.7;
}

}

@media screen and (max-width: 1010px) {
ul.h_nav-list > li:nth-child(1) > a span{
display:none;
}
}

/* ===========================
 4) Layout / Components スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width: 767px) {
/* Layout */
#wrap{
margin: 0 0;
padding: 60px 0 0 0;
position:relative;
}

.container{
width: auto;
margin-inline: auto;
}

.section{
margin: 0 0 30px;
padding: 0 0;
position:relative;
}

/* header */
header.site-header{
margin: 0 0;
padding: 0 0;
position: fixed;
top:0;
left:0;
text-align:center;
z-index:10;
width:100%;
height:60px;
margin-inline: auto;
background-color:#fff;
display: flex;
align-items:center;
justify-content:space-between;
}
header .description{
display:none;
}

header h1{
margin: 0 0;
padding: 0 0 0 10px;
position:relative;
text-align:left;
}
header h1 img{
width:170px;
}
ul.h_nav-list{
display:none;
}

.btn_menu{
margin: 0 0;
padding: 0 0;
position: fixed;
top:0;
right:0;
cursor: pointer;
background: #0068ad;
width:60px;
height:60px;
z-index:100;
line-height:18px;
display: flex;
align-items:center;
justify-content:center;
}
.btn_menu img{
width:30px;
height:auto;
}

/* g_nav */

.g_nav{
margin: 0;
padding: 0;
position:relative;
}

/* fadeInPageアニメーション */
@keyframes fadeInPage {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeInPage {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#drawernav{
position: fixed;
top: 60px;
left:0;
width: 100%;
z-index: 102;

background: transparent;
backdrop-filter: blur(8px);
--webkit-backdrop-filter: blur(8px);
background-color: rgba(180, 227, 247, 0.5);
display:none;
}

#humberger_wrap{
}

#humberger{
margin: 0 0;
padding: 0 0;
position: absolute;
top:-60px;
right:0;
cursor: pointer;
background-color: #0068ad;
width:60px;
height:60px;
z-index:100;
display: flex;
align-items:center;
justify-content:center;
}
#humberger img{
vertical-align:top;
width:30px;
height:auto;
}
body.drawer-opened h2.btn_menu{
display:none;
}

/* ドロワー開放時のスタイル */

body.drawer-opened #drawernav{
animation: fadeInPage 0.5s ease 0.5s 1 normal;
-webkit-animation: fadeInPage 0.5s ease 0.1s 1 normal;
animation-fill-mode: forwards;
opacity: 0;
display:block;
}
body.drawer-opened #overlay{

}

.nav_wrap{
overflow-y: auto;
overflow-x: hidden;
margin:0 ;
padding: 0 0;
zoom: 1;
position: relative;
-webkit-overflow-scrolling: touch;
}
.nav_inner{
margin: 0 auto;
padding: 40px 0px 0;
position: absolute;
top:0px;
left:0;
right:0;
background-color:#0068ad;
}
ul.g_nav-list{
margin: 0 auto 50px;
padding: 0 0px;
position:relative;
text-align:center;
width:330px;
}
ul.g_nav-list li{
margin: 0 0 0;
padding: 0 0px;
position:relative;
text-align:center;
}
ul.g_nav-list li h4{
margin: 0 0 10px;
padding: 0 0 10px;
font-weight: 500;
font-size: 20px;
line-height: 1.5;
text-align: center;
color: #fff;
display:block;
border-bottom:1px solid #fff;
}
ul.g_nav-list li a{
padding: 15px 0;
font-weight: 500;
font-size: 17px;
line-height: 17px;
text-align: center;
color: #fff;
text-decoration:none;
display:block;
font-family: "Noto Sans JP", sans-serif;
border-bottom:1px dashed #fff;
}
ul.g_nav-list li a img{
vertical-align:top;
margin-top:4px;
margin-left:4px;
width:12px;
}
ul.g_nav-list li a:hover{
}

/* Footer */
.site-footer{
margin: 0 auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
}
.f_inner{
margin: 0 auto 0;
padding: 40px 0 70px;
position:relative;
text-align: center;
background-color:#0068ad;
}
.f_inner h3{
margin: 0 auto 30px;
padding: 0 0;
position:relative;
text-align:center;
font-size: 20px;
line-height:20px;
font-weight:600;
color:#fff;
letter-spacing:0.05em;
}
.footer_box{
margin: 0 30px 10px;
padding: 20px 0 ;
position:relative;
text-align: center;
background-color:#fff;
border-radius:10px;
font-family: "Noto Sans JP", sans-serif;
}
.footer_box .support_icon{
margin: 0 auto 10px;
padding: 0 0 ;
position:relative;
text-align: center;
width: auto;
}
.footer_box .support_info{
margin: 0 0 0;
padding: 0 0 ;
position:relative;
text-align: center;
}
.footer_box .support_info h4{
display:block;
margin: 0 0 5px;
padding: 0 0px;
position:relative;
font-weight: 600;
font-size: 17px;
line-height: 18px;
text-align: center;
color:#0068ad;
letter-spacing:0.00em;
}
.footer_box .support_info strong{
display:block;
margin: 0 0 10px;
padding: 0 0px;
position:relative;
font-weight: 600;
font-size: 36px;
line-height: 36px;
text-align: center;
color:#0068ad;
letter-spacing:0.00em;
}
.footer_box .support_info strong a{
	text-decoration:none;
}
.footer_box .support_info strong img{
margin-right:5px;
}
.footer_box .support_info small{
display:block;
margin: 0 auto;
padding: 0 0px;
position:relative;
font-weight: 500;
font-size: 13px;
line-height: 18px;
text-align: center;
color:#0068ad;
letter-spacing:0.00em;
}
.f_annotation{
	margin: 0 auto 30px;
	color:#fff;
	font-size:11px;
}
.f_annotation2{
	margin: 0 auto 30px;
	color:#0068ad;
	font-size:11px;
}
ul.f_sns{
margin: 0 auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
max-width:800px;
display: flex;
align-items:center;
justify-content:center;
color:#fff;
}
ul.f_sns li {
margin: 0 8px 0;
padding:0;
}
ul.f_sns li h5{
padding: 10px 10px 10px 0;
position:relative;
font-weight: 600;
font-size: 15px;
line-height: 15px;
text-align: left;
letter-spacing:0.00em;
background-image: url(../images/base/f_arr.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
}
ul.f_sns li img{
width:39px;
}
ul.f_sns li a:hover{
}

.site-footer small{
display:block;
margin: 0 auto;
padding: 20px 0px 30px;
position:relative;
font-weight: 500;
font-size: 11px;
line-height: 11px;
text-align: center;
color:#fff;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}

.backtotop{
position:fixed;
/* bottom:20px; */
/* right:10px; */
bottom:100px;
right:20px;
z-index:100;
}
.backtotop a{
display:block;
}
.backtotop a img{
vertical-align:top;
width:30px;
height:auto;
filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.5));
}

}

/* ===========================
 トップページ PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {

.site-main{
background-image: url(../images/top/round_bg.svg),url(../images/base/bg_cloud.svg),url(../images/top/line_bg.svg);
background-repeat: no-repeat,no-repeat;
background-position: center bottom -100px,center bottom 120px,center top;
background-size: 100% 630px,auto,auto;
background-color:#66c6f1;
}
.kv{
margin: 0 auto 40px;
padding: 0 0;
position:relative;
text-align:center;
}
.kv h2.kv_tit{
margin: 0 auto;
padding: 30px 0px 0;
position:relative;
text-align:center;
}
.kv .kv_tit img{
width:auto;
}

section.nav_area{
margin: 0 auto;
padding: 0 0 0px;
position:relative;
text-align:center;

}
section.nav_area h3{
margin: 0 auto 20px;
padding: 0 0;
position:relative;
text-align:center;
font-size: 20px;
line-height:20px;
font-weight:600;
letter-spacing:0.00em;
}
section.nav_area h3.h3_tit1{
padding: 20px 0 25px;
background-image: url(../images/top/h3_bg1.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
}
section.nav_area h3.h3_tit1 em{
background:linear-gradient(transparent 70%, #ff6 70%);
}
section.nav_area h3.h3_tit2{
padding: 15px 0 20px;
background-image: url(../images/top/h3_bg2.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
}
section.nav_area h3.h3_tit2 em{
background:linear-gradient(transparent 70%, #f6c6db 70%);
}

ul.nav_list{
margin: 0 auto 0;
padding: 0 0 30px;
position:relative;
text-align: center;
display: flex;
align-items:stretch;
justify-content:center;
flex-wrap:wrap;
max-width:840px;
}
ul.nav_list li{
margin: 0 20px 15px;
padding: 0 0;
position:relative;
text-align: center;
width:237px;
}
ul.nav_list li a{
margin: 0 0;
padding: 15px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 18px;
line-height:18px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/base/under_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
}
ul.nav_list li a img{
vertical-align:middle;
margin-top:3px;
margin-left:10px;
}
ul.nav_list li a:hover img{
transition : 0.3s;
transform: scale(1.5);
}
ul.nav_list li.link_style{
margin: 0 0 15px;
padding: 0 0;
position:relative;
text-align: center;
width:346px;
}
ul.nav_list li.link_style a{
margin: 0 0;
padding: 15px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 18px;
line-height:18px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/base/under_wave2.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
white-space:nowrap;
}
ul.nav_list li.link_style a em{
margin-right:10px;
font-size: 20px;
line-height:20px;
font-weight:600;
color:#e84f54;
background:linear-gradient(transparent 60%, #fff 60%);
}


}
/* ===========================
 トップページ スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {

.site-main{
background-image: url(../images/top/round_bg.svg),url(../images/top/sp_line_bg.svg);
background-repeat: no-repeat,no-repeat;
background-position: center bottom -100px,center top;
background-size: 250% 630px,auto;
background-color:#66c6f1;
}
.kv{
margin: 0 auto 20px;
padding: 0 0;
position:relative;
text-align:center;
}
.kv h2.kv_tit{
margin: 0 auto;
padding: 30px 0px 0;
position:relative;
text-align:center;
}
.kv .kv_tit img{
width:100%;
}

section.nav_area{
margin: 0 auto;
padding: 0 0 0px;
position:relative;
text-align:center;

}
section.nav_area h3{
margin: 0 auto 15px;
padding: 0 0;
position:relative;
text-align:center;
font-size: 20px;
line-height:32px;
font-weight:600;
letter-spacing:0.00em;
}
section.nav_area h3.h3_tit1{
padding: 20px 0 25px;
background-image: url(../images/top/sp_h3_bg1.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
}
section.nav_area h3.h3_tit1 em{
background:linear-gradient(transparent 70%, #ff6 70%);
}
section.nav_area h3.h3_tit2{
padding: 15px 0 20px;
background-image: url(../images/top/h3_bg2.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
}
section.nav_area h3.h3_tit2 em{
background:linear-gradient(transparent 70%, #f6c6db 70%);
}

ul.nav_list{
margin: 0 auto 0;
padding: 0 10px 30px;
position:relative;
text-align: center;
display: flex;
align-items:stretch;
justify-content:center;
flex-wrap:wrap;
max-width:430px;
}
ul.nav_list li{
margin: 0 0 10px;
padding: 0 0;
position:relative;
text-align: center;
width:182px;
}
ul.nav_list li a{
margin: 0 0;
padding: 10px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 14px;
line-height:14px;
font-weight:600;
letter-spacing:0.02em;
background-image: url(../images/base/under_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: 182px auto;
white-space:nowrap;
}
ul.nav_list li a img{
vertical-align:middle;
margin-top:3px;
margin-left:5px;
width:15px;
}
ul.nav_list li a:hover img{
}
ul.nav_list li.link_style{
margin: 0 0 15px;
padding: 0 0;
position:relative;
text-align: center;
width:278px;
}
ul.nav_list li.link_style a{
margin: 0 0;
padding: 10px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 14px;
line-height:14px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/base/under_wave2.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: 278px auto;
white-space:nowrap;
}
ul.nav_list li.link_style a em{
margin-right:10px;
font-size: 16px;
line-height:16px;
font-weight:600;
color:#e84f54;
background:linear-gradient(transparent 60%, #fff 60%);
}

}

/* ===========================
 よくある質問 PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {

.site-sub{
padding-bottom:50px;
background-image: url(../images/base/round_bg2.svg),url(../images/base/bg_cloud3.svg);
background-repeat: no-repeat;
background-position: center top 80px, top 180px center;
background-size: 100% 9500px,auto;
background-color:#66c6f1;
}
h2.page_tit{
margin: 0 auto 20px;
padding: 60px 0 150px;
position:relative;
text-align:center;
font-size: 35px;
line-height:35px;
font-weight:600;
letter-spacing:0.10em;
color:#fff;
}
.section_box{
margin: 0 auto 50px;
padding: 50px 0 20px;
position:relative;
text-align:center;
border:4px solid #008cd5;
border-radius:15px;
background-color:#fff;
width: min(1000px, 100% - 30px);
margin-inline: auto;
}
h3.h3_style1{
margin: 0 auto 30px;
padding: 0 0 30px;
position:relative;
font-weight: 600;
font-size: 30px;
line-height: 30px;
text-align: center;
color:#0068ad;
letter-spacing:0.15em;
background-image: url(../images/qa/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
}
ul.qa_anchor_list{
margin: 0 auto 0;
padding: 0 0 30px;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
}
ul.qa_anchor_list li{
margin: 0 10px 0;
padding: 0 0;
position:relative;
text-align: center;
width:220px;
}
ul.qa_anchor_list li a{
margin: 0 0;
padding: 15px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 18px;
line-height:18px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/qa/bg_link.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
font-family: "Noto Sans JP", sans-serif;
}
ul.qa_anchor_list li a img{
transform: rotate(90deg);
margin-left:5px;
vertical-align:middle;
margin-top:3px;
width:15px;
}
ul.qa_anchor_list li a:hover img{
transition : 0.3s;
transform: scale(1.5) rotate(90deg);
}
.qa_area h4{
margin: 0 auto 25px;
padding: 10px 20px;
position:relative;
font-weight: 600;
font-size: 18px;
line-height: 18px;
text-align: left;
color:#fff;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
border-radius:10px;
background-color:#008cd5;
width: min(800px, 100% - 60px);
}
ul.qa_list{
margin: 0 auto 50px;
padding: 0 0;
position:relative;
text-align: left;
font-family: "Noto Sans JP", sans-serif;
width: min(800px, 100% - 60px);
}
ul.qa_list li{
margin: 0 auto 30px;
padding: 0 0;
position:relative;
text-align: left;
}
ul.qa_list li h5{
margin: 0 auto 10px;
padding: 0 0 10px;
position:relative;
font-weight: 600;
font-size: 18px;
line-height: 1.5;
text-align: left;
color:#008cd5;
letter-spacing:0.05em;
border-bottom:2px dotted #008cd5;
display: flex;
align-items:stretch;
justify-content:flex-start;
}
ul.qa_list li p{
margin: 0 auto;
padding: 0 0 0;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:flex-start;
}
ul.qa_list li p em{
margin: 0 0;
padding: 0 10px 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 18px;
line-height: 1.5;
color:#e84f54;
letter-spacing:0.05em;
}
ul.qa_list li p > span{
margin: 0 0 0 0;
padding: 3px 0 0 0;
position:relative;
text-align: justify;
font-weight: 500;
font-size: 15px;
line-height: 1.4;
color:#111;
letter-spacing:0.05em;
}

ul.qa_list li p span.payment_method{
margin: -3px 0 0 0;
padding: 0 0 0 0;
position:relative;
text-align: left;
width:100%;
}
ul.qa_list li p > span.payment_method span{
margin: 0 0 0 0;
padding: 3px 0;
position:relative;
text-align: left;
display: flex;
align-items:center;
justify-content:flex-start;
border-bottom:1px solid #b3b3b3;
}
ul.qa_list li p > span.payment_method span strong{
text-align: left;
font-weight: 500;
font-size: 15px;
line-height: 1.4;
color:#111;
letter-spacing:0.05em;
width:150px;
white-space:nowrap;
}
ul.qa_list li p > span.payment_method img{
	height:35px;
}

}

/* ===========================
 よくある質問 スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {

.site-sub{
padding-bottom:70px;
background-image: url(../images/base/round_bg2.svg);
background-repeat: no-repeat,no-repeat;
background-position: center top 0px;
background-size: 250% 9500px;
background-color:#66c6f1;
}
h2.page_tit{
margin: 0 auto;
padding: 45px 0 90px;
position:relative;
text-align:center;
font-size: 25px;
line-height:25px;
font-weight:600;
letter-spacing:0.10em;
color:#fff;
}
.section_box{
margin: 0 20px;
padding: 30px 20px 20px;
position:relative;
text-align:center;
border:4px solid #008cd5;
border-radius:15px;
background-color:#fff;
}
h3.h3_style1{
margin: 0 auto 20px;
padding: 0 0 15px;
position:relative;
font-weight: 600;
font-size: 18px;
line-height: 18px;
text-align: center;
color:#0068ad;
letter-spacing:0.15em;
background-image: url(../images/qa/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: 248px auto;
}
ul.qa_anchor_list{
margin: 0 auto 0;
padding: 0 0 20px;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
}
ul.qa_anchor_list li{
margin: 0 5px 0;
padding: 0 0;
position:relative;
text-align: center;
min-width:150px;
}
ul.qa_anchor_list li a{
margin: 0 0;
padding: 10px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 13px;
line-height:13px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/qa/bg_link.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: 100% auto;
font-family: "Noto Sans JP", sans-serif;
}
ul.qa_anchor_list li a img{
transform: rotate(90deg);
margin-left:5px;
vertical-align:middle;
margin-top:3px;
width:12px;
}
ul.qa_anchor_list li a:hover img{
}
.qa_area h4{
margin: 0 auto 20px;
padding: 8px 15px;
position:relative;
font-weight: 600;
font-size: 15px;
line-height: 15px;
text-align: left;
color:#fff;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
border-radius:8px;
background-color:#008cd5;
}
ul.qa_list{
margin: 0 auto 30px;
padding: 0 0;
position:relative;
text-align: left;
font-family: "Noto Sans JP", sans-serif;
}
ul.qa_list li{
margin: 0 auto 30px;
padding: 0 0;
position:relative;
text-align: left;
}
ul.qa_list li h5{
margin: 0 auto 8px;
padding: 0 0 8px;
position:relative;
font-weight: 600;
font-size: 16px;
line-height: 1.5;
text-align: left;
color:#008cd5;
letter-spacing:0.03em;
border-bottom:2px dotted #008cd5;
display: flex;
align-items:stretch;
justify-content:flex-start;
}
ul.qa_list li h5 em{
margin: 0 0;
padding: 0 5px 0 0;
position:relative;
text-align: left;
}
ul.qa_list li h5 > span{
margin: 0 0;
padding: 0 0 0 0;
position:relative;
text-align: left;
}
ul.qa_list li p{
margin: 0 auto;
padding: 0 0 0;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:flex-start;
}
ul.qa_list li p em{
margin: 0 0;
padding: 0 10px 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 18px;
line-height: 1.5;
color:#e84f54;
letter-spacing:0.03em;
}
ul.qa_list li p > span{
margin: 0 0 0 0;
padding: 3px 0 0 0;
position:relative;
text-align: justify;
font-weight: 500;
font-size: 14px;
line-height: 1.6;
color:#111;
letter-spacing:0.03em;
}

ul.qa_list li p span.payment_method{
margin: 0 0 0 0;
padding: 0 0 0 0;
position:relative;
text-align: left;
width:100%;
}
ul.qa_list li p > span.payment_method span{
margin: 0 0 0 0;
padding: 8px 0 0;
position:relative;
text-align: left;
display:block;
border-bottom:1px solid #b3b3b3;
}
ul.qa_list li p > span.payment_method span strong{
text-align: left;
font-weight: 500;
font-size: 14px;
line-height: 14px;
color:#111;
letter-spacing:0.05em;
white-space:nowrap;
display:block;
}
ul.qa_list li p > span.payment_method img{
	padding-top:5px;
	height:40px;
}
ul.qa_list li p > span.payment_method img.cvs{
	height:70px;
}
}

/* ===========================
 使えるお店 PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {

.stores_area h4{
width:220px;
margin: 50px auto 30px;
padding: 15px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 18px;
line-height:18px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/qa/bg_link.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
font-family: "Noto Sans JP", sans-serif;
}
.stores_area p{
margin: 0 auto 30px;
padding: 0 0 ;
position:relative;
text-align: center;
font-size: 17px;
line-height:17px;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}
.stores_area img.img1{
position:absolute;
top:-40px;
left:80px;
}
.stores_area img.img2{
position:absolute;
top:40px;
right:90px;
}
.btn_style1{
margin: 0 auto 30px;
padding: 0 0 ;
position:relative;
text-align: center;
}
.btn_style1 a{
margin: 0 auto;
padding: 20px 0 ;
position:relative;
text-align: center;
font-size: 18px;
line-height:18px;
font-weight:500;
color:#fff;
text-decoration:none;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
background-color:#e84f54;
max-width:450px;
border-radius:50px;
display:block;
}
.btn_style1 a img{
margin-left:7px;
vertical-align:top;
margin-top:1px;
width:auto;
}
.btn_style1 a:hover{
filter: saturate(200%);
}
.btn_style1 a:hover img{
transition : 0.3s;
transform: scale(1.5) ;
}

}

/* ===========================
 使えるお店 スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {

.stores_area h4{
max-width:184px;
margin: 0px auto 20px;
padding: 15px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 16px;
line-height:16px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/qa/bg_link.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: 100% auto;
font-family: "Noto Sans JP", sans-serif;
}
.stores_area p{
margin: 0 auto 30px;
padding: 0 0 ;
position:relative;
text-align: center;
font-size: 14px;
line-height:1.8;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}
.stores_area img.img1{
display:none;
}
.stores_area img.img2{
display:none;
}
.btn_style1{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: center;
}
.btn_style1 a{
margin: 0 auto;
padding: 10px 0 ;
position:relative;
text-align: center;
font-size: 16px;
line-height:1.5;
font-weight:500;
color:#fff;
text-decoration:none;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
background-color:#e84f54;
max-width:450px;
border-radius:50px;
display:block;
}
.btn_style1 a img{
position:absolute;
top:20px;
right:15px;
width:20px;
}

}

/* ===========================
 サポート・お問い合わせ PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {

.contact_area {
padding: 50px 30px 20px;
margin-bottom:30px;
}
.contact_area .footer_box{
border:3px solid #008cd5;
margin-bottom:10px;
}
.site-contact .f_sns li h5{
color:#0068ad;
background-image: url(../images/base/f_arr2.svg);
}

.ai-chat-box {
  background: #d4edfb;
  border-radius: 15px;
  padding: 28px 30px 32px;
  text-align: center;
  box-sizing: border-box;
  max-width:800px;
  margin:0 auto 30px;
}
.ai-chat-box__inner {
  max-width: 740px;
  margin: 0 auto;
}
.ai-chat-box__title {
  margin: 0 0 18px;
  color: #00659c;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.ai-chat-box__lead {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.ai-chat-box__lead p {
  margin: 0 0 18px;
}
.ai-chat-box__lead p:last-child {
  margin-bottom: 0;
}

.ai-chat-box__line {
  margin: 28px 0 26px;
  border-top: 1px dashed #00659c;
}

.ai-chat-box__guide {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.ai-chat-box__guide p {
  margin: 0;
}

.ai-chat-box__chat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.biztap-ai-chatbot-biztap-ai-chatbot-icon {
    cursor: pointer;
    fill: #2e3231;
    color: #2e3231;
    border-radius: 66px;
    line-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #edeff1;
    box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, .4);
    width: 66px;
    height: 66px;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

.btn_style2{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: center;
width:260px;
}
.btn_style2 a{
margin: 0 0;
padding: 20px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 19px;
line-height:19px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/contact/bg_link.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: auto;
font-family: "Noto Sans JP", sans-serif;
}
.btn_style2 a img{
transform: rotate(90deg);
margin-left:5px;
vertical-align:middle;
margin-top:3px;
width:15px;
}
.btn_style2 a:hover img{
transition : 0.3s;
transform: scale(1.5) rotate(90deg);
}

}

/* ===========================
 サポート・お問い合わせ スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {
.contact_area {
padding: 30px 15px 30px;
margin-bottom:50px;
}
.contact_area .footer_box{
margin: 30px 10px 10px;
border:2px solid #008cd5;
margin-bottom:10px;
}
.contact_area .footer_box .support_info h4{
font-size: 15px;
line-height: 16px;
}
.contact_area .footer_box .support_icon img{
width: 50px;
}
.contact_area .footer_box .support_info strong{
font-size: 32px;
line-height: 32px;
margin: 0 0 5px;
}
.contact_area .footer_box .support_info strong img{
margin-right:5px;
margin-top:3px;
vertical-align:top;
}
.contact_area .footer_box .support_info small{
font-size: 12px;
line-height: 16px;
}
.site-contact .f_sns li h5{
color:#0068ad;
background-image: url(../images/base/f_arr2.svg);
}

.ai-chat-box {
  background: #d4edfb;
  border-radius: 10px;
  padding: 24px 14px 28px;
  text-align: center;
  box-sizing: border-box;
	margin:0 10px;
}

.ai-chat-box__inner {
  width: 100%;
  margin: 0 auto;
}

.ai-chat-box__title {
  margin: 0 0 16px;
  color: #00659c;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.ai-chat-box__lead {
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

.ai-chat-box__lead p {
  margin: 0 0 28px;
}

.ai-chat-box__lead p:last-child {
  margin-bottom: 0;
}

.ai-chat-box__line {
  margin: 24px 0 18px;
  border-top: 1px dashed #00659c;
}

.ai-chat-box__guide {
  color: #111;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
}

.ai-chat-box__guide p {
  margin: 0;
}

.ai-chat-box__chat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
}

.biztap-ai-chatbot-biztap-ai-chatbot-icon {
    cursor: pointer;
    fill: #2e3231;
    color: #2e3231;
    border-radius: 50px;
    line-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #edeff1;
    box-shadow: 1px 1px 14px 1px rgba(0, 0, 0, .4);
    width: 50px;
    height: 50px;
	font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

.ai-chat-box__chat-row p {
  text-align: left;
}

.btn_style2{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: center;
width:224px;
}
.btn_style2 a{
margin: 0 0;
padding: 20px 0 ;
position:relative;
text-align: center;
display: flex;
align-items:center;
justify-content:center;
text-decoration:none;
font-size: 16px;
line-height:16px;
font-weight:600;
letter-spacing:0.05em;
background-image: url(../images/contact/bg_link.svg);
background-repeat: no-repeat;
background-position: center center ;
background-size: 224px auto;
font-family: "Noto Sans JP", sans-serif;
}
.btn_style2 a img{
transform: rotate(90deg);
margin-left:5px;
vertical-align:middle;
margin-top:3px;
width:15px;
}


}

/* ===========================
 商品券について PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {
h3.h3_style2{
margin: 0 auto 30px;
padding: 0 0 20px;
position:relative;
font-weight: 600;
font-size: 30px;
line-height: 42px;
text-align: center;
color:#0068ad;
letter-spacing:0.05em;
background-image: url(../images/about/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
width: min(800px, 100% - 60px);
}
.about_area{
margin: 0 auto 50px;
padding: 50px 0 20px;
position:relative;
text-align:center;
border:4px solid #008cd5;
border-radius:15px;
background-color:#fff;
width: min(1000px, 100% - 30px);
margin-inline: auto;
}
.about_area p{
margin: 0 auto 30px;
padding: 0 0 ;
position:relative;
text-align: left;
font-size: 17px;
line-height:34px;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
width: min(800px, 100% - 60px);
}
.about_area p a{
font-weight:600;
color:#008cd5;
}
ul.about_list{
margin: 0 auto 30px;
padding: 30px 0 ;
position:relative;
text-align: left;
border-top:2px dotted #0068ad;
border-bottom:2px dotted #0068ad;
max-width:800px;
width: min(800px, 100% - 60px);
}
ul.about_list li{
margin: 0 0 20px;
padding: 0 0 ;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:flex-start;
}
ul.about_list li h4{
margin: 0 0 0;
padding: 0 10px 0 0;
position:relative;
text-align: right;
font-size: 16px;
line-height:28px;
font-weight:500;
color:#0068ad;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
white-space:nowrap;
width:120px;
flex-shrink: 0;
}
ul.about_list li p{
margin: 0 0 0;
padding: 0 0 0 10px;
position:relative;
text-align: justify;
font-size: 16px;
line-height:28px;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
flex-grow: 1;
border-left:2px solid #66c6f1;
}
ul.about_list li p small{
font-size: 14px;
line-height:14px;
font-weight:500;
display:block;
}
ul.about_list li p span{
margin: 0 0 0 0;
padding: 0 0 0 1.0em;
text-indent:-1em;
display:block;
}


}

/* ===========================
 商品券について スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {

.site-about{
padding-bottom:50px;
background-image: url(../images/base/round_bg2.svg);
background-repeat: no-repeat,no-repeat;
background-position: center top 25px;
background-size: 250% 9500px;
background-color:#66c6f1;
}
.site-about h2.page_tit{
margin: 0 auto;
padding: 40px 0 45px;
position:relative;
text-align:center;
font-size: 25px;
line-height:36px;
font-weight:600;
letter-spacing:0.10em;
color:#fff;
}
h3.h3_style2{
margin: 0 auto 20px;
padding: 0 0 15px;
position:relative;
font-weight: 600;
font-size: 18px;
line-height:28px;
text-align: center;
color:#0068ad;
letter-spacing:0.15em;
background-image: url(../images/qa/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: 248px auto;
}
.about_area p{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: justify;
font-size: 14px;
line-height:1.8;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}
.about_area p a{
font-weight:600;
color:#008cd5;
}

ul.about_list{
margin: 0 auto 20px;
padding: 25px 0 10px;
position:relative;
text-align: left;
border-top:2px dotted #0068ad;
border-bottom:2px dotted #0068ad;
}
ul.about_list li{
margin: 0 0 20px;
padding: 0 0 ;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:flex-start;
}
ul.about_list li h4{
margin: 0 0 0;
padding: 0 10px 0 0;
position:relative;
text-align: left;
font-size: 14px;
line-height:1.5;
font-weight:500;
color:#0068ad;
letter-spacing:0.02em;
font-family: "Noto Sans JP", sans-serif;
white-space:nowrap;
width:90px;
flex-shrink: 0;
}
ul.about_list li p{
margin: 0 0 0;
padding: 0 0 0 10px;
position:relative;
text-align: left;
font-size: 14px;
line-height:1.5;
font-weight:500;
color:#000;
letter-spacing:0.02em;
font-family: "Noto Sans JP", sans-serif;
flex-grow: 1;
border-left:2px solid #66c6f1;
}
ul.about_list li p small{
font-size: 12px;
line-height:1.4;
font-weight:500;
display:block;
}
ul.about_list li p span{
margin: 0 0 0 0;
padding: 0 0 0 1.0em;
text-indent:-1em;
display:block;
}

}

/* ===========================
 申し込み方法・使い方 PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {
.site-use{
padding-bottom:10px;
}

h3.h3_style3{
margin: 0 auto 50px;
padding: 0 0 20px;
position:relative;
font-weight: 600;
font-size: 30px;
line-height: 42px;
text-align: center;
color:#0068ad;
letter-spacing:0.05em;
background-image: url(../images/use/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
}

.use_area{
margin: 0 auto 50px;
padding: 50px 0 20px;
position:relative;
text-align:center;
border:4px solid #008cd5;
border-radius:15px;
background-color:#fff;
width: min(1000px, 100% - 30px);
margin-inline: auto;
}

ul.use_flow_list{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
max-width:800px;
width: min(800px, 100% - 60px);
}
ul.use_flow_list li{
margin: 0 0 30px;
padding: 0 0 30px;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:space-between;
border-bottom:1px solid #008cd5;
}
ul.use_flow_list li:after {
content: '';
position: absolute;
bottom: -4px;
left: 34px;
width: 14px;
height: 14px;
border-bottom: 2px solid #008cd5;
border-left: 2px solid #008cd5;
transform: rotate(-45deg);
background-color:#fff;
}
ul.use_flow_list li:before {
content: '';
position: absolute;
bottom: -4px;
left: 20px;
width: 40px;
height: 20px;
background-color:#fff;
}
ul.use_flow_list li:nth-last-child(1){
border-bottom:none;
}
ul.use_flow_list li:nth-last-child(1):after,
ul.use_flow_list li:nth-last-child(1):before {
content: none;
}
ul.use_flow_list li .use_txt{
margin: 0 0 0 10px;
padding: 0 0 ;
position:relative;
text-align: left;
flex-grow: 1;
font-family: "Noto Sans JP", sans-serif;
}
ul.use_flow_list li .use_txt h4{
margin: 10px 0 10px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 22px;
line-height: 1.5;
color:#0068ad;
letter-spacing:0.05em;
}
ul.use_flow_list li .circle{
margin-left: 10px;
flex-shrink: 0;
position: relative;
display: inline-block;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #fff000;
border:2px solid #007cbc;
}
ul.use_flow_list li .circle em{
position: absolute;
display: inline-block;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width :56px;
text-align: center;
font-weight: 600;
font-size: 30px;
line-height: 30px;
color:#007cbc;
}
ul.use_flow_list li .circle em small{
text-align: center;
font-weight: 600;
font-size: 13px;
line-height: 10px;
color:#007cbc;
display:block;
}
ul.use_flow_list li .use_txt p{
margin: 0 0 10px;
padding: 0 0;
position:relative;
text-align: justify;
font-weight: 600;
font-size: 14px;
line-height: 1.8;
color:#0068ad;
letter-spacing:0.05em;
}
ul.use_flow_list li .use_txt p em{
margin: 0 0;
padding: 0 2px;
position:relative;
text-align: left;
font-weight: 500;
font-size: 16px;
line-height: 1.8;
color:#0068ad;
letter-spacing:0.05em;
background-color:#e3eef6;
}
ul.use_flow_list li .use_txt h5{
margin: 0 0 5px;
padding: 0 0;
position:relative;
text-align: left;
}
ul.use_flow_list li .use_txt h5 span{
margin: 0 0;
padding: 2px 10px;
position:relative;
text-align: left;
font-weight: 600;
font-size: 14px;
line-height: 14px;
color:#fff;
letter-spacing:0.00em;
background-color:#0068ad;
border-radius: 5px;
}
ul.use_flow_list li .use_txt h6{
margin: 0 0 10px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 18px;
line-height: 1.5;
color:#0068ad;
letter-spacing:0.05em;
}
ul.use_flow_list li .use_img{
margin: 0 0;
padding: 0 0 ;
position:relative;
text-align: right;
width:180px;
flex-shrink: 0;
}
.information_session{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
max-width:800px;
width: min(800px, 100% - 60px);
display: flex;
align-items:stretch;
justify-content:space-between;
}
.information_session .session_txt{
margin: 0 0 0;
padding: 0 0 ;
position:relative;
text-align: left;
flex-grow: 1;
font-family: "Noto Sans JP", sans-serif;
}
.information_session .session_txt p{
margin: 0 0 20px;
padding: 0 0;
position:relative;
text-align: justify;
font-weight: 600;
font-size: 17px;
line-height: 1.8;
color:#111;
letter-spacing:0.05em;
}
.information_session .session_txt p em{
margin: 0 0;
padding: 0 2px;
position:relative;
text-align: left;
font-weight: 500;
font-size: 17px;
line-height: 1.8;
color:#0068ad;
letter-spacing:0.05em;
background-color:#e3eef6;
}
.information_session .session_img{
margin: -30px 0 0;
padding: 0 0 ;
position:relative;
text-align: right;
width:240px;
flex-shrink: 0;
}

}

/* ===========================
 申し込み方法・使い方 スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {
.site-use{
padding-bottom:10px;
}
.use_area{
margin-bottom: 30px;
}
h3.h3_style3{
margin: 0 auto 30px;
padding: 0 0 15px;
position:relative;
font-weight: 600;
font-size: 18px;
line-height:28px;
text-align: center;
color:#0068ad;
letter-spacing:0.15em;
background-image: url(../images/qa/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: 260px auto;
}

ul.use_flow_list{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
}
ul.use_flow_list li{
margin: 0 0 30px;
padding: 0 0 20px;
position:relative;
text-align: center;
border-bottom:1px solid #008cd5;
}
ul.use_flow_list li:after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
right:0;
margin:auto;
width: 18px;
height: 18px;
border-bottom: 2px solid #008cd5;
border-left: 2px solid #008cd5;
transform: rotate(-45deg);
background-color:#fff;
}
ul.use_flow_list li:before {
content: '';
position: absolute;
bottom: -4px;
left: 0;
right:0;
margin:auto;
width: 40px;
height: 20px;
background-color:#fff;
}
ul.use_flow_list li:nth-last-child(1){
margin: 0 0 0;
padding: 0 0 0;
border-bottom:none;
}
ul.use_flow_list li:nth-last-child(1):after,
ul.use_flow_list li:nth-last-child(1):before {
content: none;
}
ul.use_flow_list li .use_txt{
margin: 0 0 0 10px;
padding: 0 0 ;
position:relative;
text-align: left;
font-family: "Noto Sans JP", sans-serif;
}
ul.use_flow_list li .use_txt h4{
margin: 0 0 10px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 18px;
line-height: 1.5;
color:#0068ad;
letter-spacing:0.05em;
}
ul.use_flow_list li .circle{
margin: 0 auto;
flex-shrink: 0;
position: relative;
display: inline-block;
width: 44px;
height: 44px;
border-radius: 50%;
background-color: #fff000;
border:2px solid #007cbc;
}
ul.use_flow_list li .circle em{
position: absolute;
display: inline-block;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width :40px;
text-align: center;
font-weight: 600;
font-size: 24px;
line-height: 24px;
color:#007cbc;
}
ul.use_flow_list li .circle em small{
text-align: center;
font-weight: 600;
font-size: 10px;
line-height: 5px;
color:#007cbc;
display:block;
}
ul.use_flow_list li .use_txt p{
margin: 0 0 10px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 13px;
line-height: 1.6;
color:#0068ad;
letter-spacing:0.05em;
}
ul.use_flow_list li .use_txt p em{
margin: 0 0;
padding: 0 2px;
position:relative;
text-align: left;
font-weight: 500;
font-size: 15px;
line-height: 1.8;
color:#0068ad;
letter-spacing:0.05em;
background-color:#e3eef6;
}
ul.use_flow_list li .use_txt h5{
margin: 0 0 5px;
padding: 0 0;
position:relative;
text-align: left;
}
ul.use_flow_list li .use_txt h5 span{
margin: 0 0;
padding: 2px 10px;
position:relative;
text-align: left;
font-weight: 600;
font-size: 14px;
line-height: 14px;
color:#fff;
letter-spacing:0.00em;
background-color:#0068ad;
border-radius: 5px;
}
ul.use_flow_list li .use_txt h6{
margin: 0 0 10px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 15px;
line-height: 1.5;
color:#0068ad;
letter-spacing:0.05em;
}
ul.use_flow_list li .use_img{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: center;
}
.information_session{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
}
.information_session .session_txt{
margin: 0 auto 10px;
padding: 0 0 ;
position:relative;
text-align: left;
font-family: "Noto Sans JP", sans-serif;
}
.information_session .session_txt p{
margin: 0 0 15px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 14px;
line-height: 1.8;
color:#111;
letter-spacing:0.05em;
}
.information_session .session_txt p em{
margin: 0 0 15px;
padding: 0 2px;
position:relative;
text-align: left;
font-weight: 500;
font-size: 14px;
line-height: 1.8;
color:#0068ad;
letter-spacing:0.05em;
background-color:#e3eef6;
}
.information_session .session_img{
margin: 0 auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
width:180px;
}

}


/* ===========================
 事業者・参加店舗の方へ PC
=========================== */
/* PC用CSS */
@media screen and (min-width: 768px) {
.site-join{
padding-bottom:40px;
}
h3.h3_style4{
margin: 0 auto 40px;
padding: 0 0 20px;
position:relative;
font-weight: 600;
font-size: 30px;
line-height: 48px;
text-align: center;
color:#0068ad;
letter-spacing:0.05em;
background-image: url(../images/join/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: auto;
}
.join_area{
margin: 0 auto 30px;
padding: 50px 0 20px;
position:relative;
text-align:center;
border:4px solid #008cd5;
border-radius:15px;
background-color:#fff;
width: min(1000px, 100% - 30px);
margin-inline: auto;
}
.container_wrap{
max-width:800px;
width: min(800px, 100% - 60px);
margin-inline: auto;
}
.join_area p{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: left;
font-size: 17px;
line-height:1.9;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}
.join_area .btn_style2{
width:280px;
}
.join_area .btn_style2 a{
padding: 25px 0 ;
background-size: 280px auto;
}
.join_area p.p_center{
text-align:center;
}
.join_area p.p_center a{
color:#008cd5;
}
.join_area .date_box{
margin: 0 auto 20px;
padding: 20px 0 ;
position:relative;
text-align: center;
background-color:#008cd5;
border-radius:5px;
display: flex;
align-items:center;
justify-content:center;
}
.join_area .date_box div{
margin: 0 20px 0 0;
padding: 5px 30px ;
text-align: center;
font-size: 19px;
line-height:19px;
font-weight:700;
color:#008cd5;
letter-spacing:0.05em;
background-color:#fff;
border-radius:8px;
}
ul.join_list{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: center;
display: flex;
align-items:stretch;
justify-content:space-between;
font-family: "Noto Sans JP", sans-serif;
}
ul.join_list li{
margin: 0 0;
padding: 10px 10px 0;
position:relative;
text-align: center;
width:32%;
border-radius:8px;
border:3px solid #008cd5;
}
ul.join_list li div{
margin: 0 0 10px;
padding: 0 0 10px ;
position:relative;
text-align: center;
border-bottom:1px dashed #008cd5;
}
ul.join_list li div h4{
text-align: center;
font-size: 20px;
line-height:1.5;
font-weight:600;
color:#008cd5;
letter-spacing:0.05em;
}
ul.join_list li:nth-child(3) div h4{
line-height:3.0;
}
ul.join_list li p{
text-align: justify;
font-size: 15px;
line-height:1.5;
font-weight:500;
color:#008cd5;
letter-spacing:0.00em;
}
ul.join_list li p b{
font-weight:500;
color:#e84f54;
}

ul.join_flow_list{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
}
ul.join_flow_list:before {
content: '';
position: absolute;
top: 0px;
left: 44px;
width: 3px;
height: 100%;
background-color:#008cd5;
}
ul.join_flow_list li{
margin: 0 0 45px;
padding: 20px 15px 20px 20px;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:space-between;
border-radius:8px;
border:3px solid #008cd5;
background-color:#fff;
}
ul.join_flow_list li:after {
content: '';
position: absolute;
bottom: -35px;
left: 25px;
width: 35px;
height: 15px;
background-color: #008cd5;
clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
ul.join_flow_list li:before {
content: "";
display: block;
position: absolute;
bottom: -32px;
left: 25px;
width: 35px;
height: 15px;
background-color: #fff;
clip-path: polygon(0 0, 100% 0%, 50% 100%);
z-index:1;
}

ul.join_flow_list li:nth-last-child(1):after,
ul.join_flow_list li:nth-last-child(1):before {
content: none;
}
ul.join_flow_list li .join_txt{
margin: 0 0 0 15px;
padding: 0 0 ;
position:relative;
text-align: left;
flex-grow: 1;
font-family: "Noto Sans JP", sans-serif;
}
ul.join_flow_list li .join_txt h4{
margin: 5px 0 10px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 24px;
line-height: 1.2;
color:#008cd5;
letter-spacing:0.05em;
}
ul.join_flow_list li .circle{

flex-shrink: 0;
position: relative;
display: inline-block;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #007cbc;
}
ul.join_flow_list li .circle em{
position: absolute;
display: inline-block;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width :50px;
text-align: center;
font-weight: 600;
font-size: 26px;
line-height: 26px;
color:#fff;
}
ul.join_flow_list li .circle em small{
text-align: center;
font-weight: 600;
font-size: 11px;
line-height: 9px;
color:#fff;
display:block;
}
ul.join_flow_list li .join_txt p{
margin: 0 0 5px;
padding: 0 0;
position:relative;
text-align: justify;
font-weight: 600;
font-size: 14px;
line-height: 1.7;
color:#111;
letter-spacing:0.00em;
}
ul.join_flow_list li .join_txt p em.marker_yellow {
  background: linear-gradient(transparent 50%, #fff176 50%);
}
ul.join_flow_list li .join_txt p span{
margin: 0 0 0 0;
padding: 0 0 0 1.0em;
text-indent:-1em;
display:block;
font-weight: 500;
font-size: 13px;
line-height: 1.6;
}
ul.join_flow_list li .join_img{
margin: 0 0;
padding: 0 0 ;
position:relative;
text-align: right;
width:160px;
flex-shrink: 0;
align-self: center;
}
ul.join_flow_list li .join_img img{
vertical-align:top;
}
ul.join_flow_list li:nth-child(2) .join_img img{
margin:-20px 0 ;
}
.btn_style3{
margin: 0 0;
padding: 0 0 ;
position:relative;
text-align: left;
}
.btn_style3 a{
margin: 0 0;
padding: 10px 20px ;
position:relative;
text-align: center;
font-size: 14px;
line-height:14px;
font-weight:500;
color:#fff;
text-decoration:none;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
background-color:#007cbc;
border-radius:50px;
display:inline-block;
}
.btn_style3 a img{
margin-left:7px;
vertical-align:top;
margin-top:-1px;
width:auto;
}
.btn_style3 a:hover{
filter: saturate(200%);
}
.btn_style3 a:hover img{
transition : 0.3s;
transform: scale(1.3) ;
}
.join_area .btn_style1{
margin-top:-10px;
margin-bottom:10px;
}
.join_area .btn_style1 a{
max-width:520px;
}
.join_area .qr{
margin: 0 0;
padding: 0 0 ;
position:relative;
text-align: center;
}
ul.handling_list{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: center;
font-family: "Noto Sans JP", sans-serif;
}
ul.handling_list li{
margin: 0 0 30px;
padding: 0 0 0;
position:relative;
text-align: left;
}
ul.handling_list li h4{
margin: 0 0 15px;
padding: 0 0 0;
position:relative;
text-align: left;
font-size: 20px;
line-height:20px;
font-weight:600;
color:#008cd5;
letter-spacing:0.05em;
}
ul.handling_list li p{
margin: 0 0 20px;
padding: 0 0 0;
position:relative;
text-align: justify;
font-weight: 500;
font-size: 15px;
line-height: 1.8;
color:#111;
letter-spacing:0.05em;
}
ul.handling_list li p span{
margin: 0 0 0 0;
padding: 0 0 0 1.0em;
text-indent:-1em;
display:block;
}

.join_session{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
display: flex;
align-items:stretch;
justify-content:space-between;
}
.join_session ul.join_session_txt{
margin: 0 0 10px;
padding: 0 0 ;
position:relative;
text-align: left;
flex-grow: 1;
font-family: "Noto Sans JP", sans-serif;
}
.join_session ul.join_session_txt li{
margin: 0 0 40px;
padding: 0 0 ;
position:relative;
text-align: left;
}
.join_session ul.join_session_txt h4{
margin: 0 0 15px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size: 20px;
line-height: 20px;
color:#008cd5;
letter-spacing:0.05em;
}
.join_session ul.join_session_txt p{
margin: 0 0 20px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 500;
font-size: 15px;
line-height: 1.8;
color:#111;
letter-spacing:0.05em;
}
.join_session ul.join_session_txt p em{
margin: 0 0;
padding: 0 2px;
position:relative;
text-align: left;
font-weight: 500;
font-size: 17px;
line-height: 1.8;
color:#111;
}
.join_session .join_session_img{
margin: 20px 0 0;
padding: 0 0 ;
position:relative;
text-align: right;
width:240px;
flex-shrink: 0;
}
.join_area .join_btn_style1{
margin-bottom:30px;
}
.join_area .join_btn_style1 a{
max-width:220px;
}
.join_area .join_btn_style2{
margin-top:30px;
margin-bottom:30px;
}
.join_area .join_btn_style2 a{
max-width:280px;
}

}

/* ===========================
 事業者・参加店舗の方へ スマホ
=========================== */
/* スマホ用CSS */
@media screen and (max-width:767px) {
.site-join{
padding-bottom:10px;
}
.join_area{
margin-bottom: 20px;
}
h3.h3_style4{
margin: 0 auto 20px;
padding: 0 0 15px;
position:relative;
font-weight: 600;
font-size: 18px;
line-height:28px;
text-align: center;
color:#0068ad;
letter-spacing:0.15em;
background-image: url(../images/qa/h3_wave.svg);
background-repeat: no-repeat;
background-position: center bottom ;
background-size: 260px auto;
}
.join_area p{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: left;
font-size: 14px;
line-height:1.8;
font-weight:500;
color:#000;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
}
.join_area .btn_style2 a{
font-size: 14px;
line-height:14px;
}
.join_area p.p_center{
text-align:center;
}
.join_area p.p_center a{
color:#008cd5;
}
.join_area .date_box{
margin: 0 auto 20px;
padding: 10px 0 ;
position:relative;
text-align: center;
background-color:#008cd5;
border-radius:5px;
}
.join_area .date_box div{
margin: 0 auto 10px;
padding: 4px 30px ;
text-align: center;
font-size: 15px;
line-height:15px;
font-weight:500;
color:#008cd5;
letter-spacing:0.05em;
background-color:#fff;
border-radius:5px;
display:inline-block;
}
.join_area .date_box img{
width:80%;
}
ul.join_list{
margin: 0 auto 20px;
padding: 0 0 ;
position:relative;
text-align: center;
font-family: "Noto Sans JP", sans-serif;
}
ul.join_list li{
margin: 0 auto 20px;
padding: 10px 20px 0;
position:relative;
text-align: center;
border-radius:8px;
border:3px solid #008cd5;
}
ul.join_list li div{
margin: 0 0 10px;
padding: 0 0 10px ;
position:relative;
text-align: center;
border-bottom:1px dashed #008cd5;
}
ul.join_list li div h4{
text-align: center;
font-size: 18px;
line-height:1.5;
font-weight:600;
color:#008cd5;
letter-spacing:0.02em;
}
ul.join_list li p{
text-align: justify;
font-size: 13px;
line-height:1.7;
font-weight:500;
color:#008cd5;
letter-spacing:0.00em;
}
ul.join_list li p b{
font-weight:500;
color:#e84f54;
}
ul.join_flow_list{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: center;
}
ul.join_flow_list:before {
content: '';
position: absolute;
top: 0px;
left: 0;
right: 0;
margin:auto;
width: 3px;
height: 100%;
background-color:#008cd5;
}
ul.join_flow_list li{
margin: 0 auto 45px;
padding: 15px 30px;
position:relative;
text-align: center;
border-radius:8px;
border:3px solid #008cd5;
background-color:#fff;
}
ul.join_flow_list li:after {
content: '';
position: absolute;
bottom: -35px;
left: 0;
right: 0;
margin:auto;
width: 35px;
height: 15px;
background-color: #008cd5;
clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
ul.join_flow_list li:before {
content: "";
display: block;
position: absolute;
bottom: -32px;
left: 0;
right: 0;
margin:auto;
width: 35px;
height: 15px;
background-color: #fff;
clip-path: polygon(0 0, 100% 0%, 50% 100%);
z-index:1;
}

ul.join_flow_list li:nth-last-child(1):after,
ul.join_flow_list li:nth-last-child(1):before {
content: none;
}
ul.join_flow_list li .join_txt{
margin: 0 auto 15px;
padding: 0 0 ;
position:relative;
text-align: left;
flex-grow: 1;
font-family: "Noto Sans JP", sans-serif;
}
ul.join_flow_list li .join_txt h4{
margin: 5px 0 10px;
padding: 0 0;
position:relative;
text-align: center;
font-weight: 600;
font-size: 18px;
line-height: 1.4;
color:#008cd5;
letter-spacing:0.05em;
}
ul.join_flow_list li .circle{
margin: 0 auto 5px;
position: relative;
display: inline-block;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #007cbc;
}
ul.join_flow_list li .circle em{
position: absolute;
display: inline-block;
left: 0;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width :50px;
text-align: center;
font-weight: 600;
font-size: 26px;
line-height: 26px;
color:#fff;
}
ul.join_flow_list li .circle em small{
text-align: center;
font-weight: 600;
font-size: 11px;
line-height: 9px;
color:#fff;
display:block;
}
ul.join_flow_list li .join_txt p{
margin: 0 0 15px;
padding: 0 0;
position:relative;
text-align: justify;
font-weight: 600;
font-size: 14px;
line-height: 1.8;
color:#111;
letter-spacing:0.05em;
}
ul.join_flow_list li .join_txt p em.marker_yellow {
  background: linear-gradient(transparent 50%, #fff176 50%);
}
ul.join_flow_list li .join_txt p span{
margin: 0 0 0 0;
padding: 0 0 0 1.0em;
text-indent:-1em;
display:block;
font-weight: 500;
font-size: 12px;
line-height: 1.6;
}
ul.join_flow_list li .join_img{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: center;
max-width:140px;
}
ul.join_flow_list li .join_img img{
width:100%;
vertical-align:top;
}
ul.join_flow_list li:nth-child(2) .join_img img{
margin:-10px 0 0;
}
.btn_style3{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: center;
}
.btn_style3 a{
margin: 0 auto;
padding: 10px 40px ;
position:relative;
text-align: center;
font-size: 14px;
line-height:18px;
font-weight:500;
color:#fff;
text-decoration:none;
letter-spacing:0.05em;
font-family: "Noto Sans JP", sans-serif;
background-color:#007cbc;
border-radius:50px;
display:inline-block;
}
.btn_style3 a img{
margin-left:7px;
vertical-align:top;
margin-top:-1px;
width:auto;
}
.join_area .btn_style1{
margin-top:-10px;
margin-bottom:10px;
}
.join_area .btn_style1 a{
max-width:520px;
}
.join_area .btn_style1 a img{
position:absolute;
top:25px;
right:25px;
width:18px;
}
.join_area .qr{
margin: 0 0;
padding: 0 0 ;
position:relative;
text-align: center;
}

ul.handling_list{
margin: 30px auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
font-family: "Noto Sans JP", sans-serif;
}
ul.handling_list li{
margin: 0 0 30px;
padding: 0 0 0;
position:relative;
text-align: left;
}
ul.handling_list li h4{
margin: 0 0 10px;
padding: 0 0 0;
position:relative;
text-align: left;
font-size: 17px;
line-height:17px;
font-weight:600;
color:#008cd5;
letter-spacing:0.05em;
}
ul.handling_list li p{
margin: 0 0 20px;
padding: 0 0 0;
position:relative;
text-align: justify;
font-weight: 500;
font-size: 14px;
line-height: 1.8;
color:#111;
letter-spacing:0.05em;
}
ul.handling_list li p span{
margin: 0 0 0 0;
padding: 0 0 0 1.0em;
text-indent:-1em;
display:block;
}

.join_session{
margin: 0 auto;
padding: 0 0 ;
position:relative;
text-align: left;
}
.join_session ul.join_session_txt{
margin: 30px 0 10px;
padding: 0 0 ;
position:relative;
text-align: left;
font-family: "Noto Sans JP", sans-serif;
}
.join_session ul.join_session_txt li{
margin: 0 0 30px;
padding: 0 0 ;
position:relative;
text-align: left;
}
.join_session ul.join_session_txt h4{
margin: 0 0 15px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 600;
font-size:17px;
line-height: 17px;
color:#008cd5;
letter-spacing:0.05em;
}
.join_session ul.join_session_txt p{
margin: 0 0 20px;
padding: 0 0;
position:relative;
text-align: left;
font-weight: 500;
font-size: 14px;
line-height: 1.7;
color:#111;
letter-spacing:0.05em;
}
.join_session ul.join_session_txt p em{
margin: 0 0;
padding: 0 2px;
position:relative;
text-align: left;
font-weight: 500;
font-size: 14px;
line-height: 1.7;
color:#111;
}
.join_session .join_session_img{
margin: 0 auto 0;
padding: 0 0 ;
position:relative;
text-align: center;
width:210px;
}
.join_session .join_session_img img{
width:100%;
vertical-align:top;
}
.join_area .join_btn_style1{
margin-bottom:20px;
}
.join_area .join_btn_style1 a{
max-width:220px;
padding: 15px 0 ;
}
.join_area .join_btn_style1 a img{
position:relative;
top:2px;
left:4px;
width:15px;
}

}

