@charset "UTF-8";
/*-----------------------------------------------------
html
-------------------------------------------------------*/
html, body {
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--base);
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    color: #333;
    line-height: 1.0;
    letter-spacing: .1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    z-index: -9999;
    box-sizing: border-box;
    text-align: left;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}
a {
    text-decoration: none !important;
}
a:hover {
    color: #333333;
}

img {
    image-rendering: -webkit-optimize-contrast;
}

/*-----------------------------------------------------
font
-------------------------------------------------------*/

/*baskerville*/
@font-face {
	font-family: 'baskervville';
	src: url('../../fonts/baskervville-variablefont_wght-webfont.woff2') format("woff2"),
		url('../../fonts/baskervville-variablefont_wght-webfont.woff') format("woff");
	font-style: normal;
	font-weight: 400;
	font-display: swap;   
}

/*-----------------------------------------------------
root
-------------------------------------------------------*/ :root {
    /*font-size*/
    font-size: 62.5% !important;
    --base: 1.7rem;
    --s10: 1.0rem;
    --s12: 1.2rem;
    --s13: 1.3rem;
    --s14: 1.4rem;
    --s15: 1.5rem;
    --s16: 1.6rem;
    --s18: 1.8rem;
    --s19: 1.9rem;
    --s20: 2.0rem;
    --s22: 2.2rem;
    --s24: 2.4rem;
    --s26: 2.6rem;
    --s28: 2.8rem;
    --s32: 3.2rem;
    --s34: 3.4rem;
    --s38: 3.8rem;
    --s40: 4.0rem;
    --s42: 4.2rem;
    --s44: 4.4rem;
    --s50: 5.0rem;
    --imgh: 34vw;
    /*line-height*/
    --lh12: 1.2;
    --lh14: 1.4;
    --lh16: 1.6;
    --lh18: 1.8;
    --lh20: 2.0;
    /*color*/
    --color1: #F4F6F7;
    --color2: #F8F6FA;
	--color3: #847B7B;
}
/*-----------------------------------------------------
global
-------------------------------------------------------*/
.g_only_pc {
    display: block;
}
.g_only_tb {
    display: block;
}
.g_only_sp {
    display: none !important;
}
.g_only_pc_in {
    display: inline-block;
}

.g_w1400 {
    max-width: 1400px;
    margin: 0 auto;
}

.g_w1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.g_w1100 {
    max-width: 1100px;
    margin: 0 auto;
}
.g_w1000 {
    max-width: 1000px;
    margin: 0 auto;
}
.g_w960 {
    max-width: 960px;
    margin: 0 auto;
}
.g_w900 {
    max-width: 900px;
    margin: 0 auto;
}
.g_w800 {
    max-width: 800px;
    margin: 0 auto;
}

.g_w700 {
    max-width: 700px;
    margin: 0 auto;
}

.g_font1 {
    font-family: 'baskervville';
	font-weight: normal;
}

.g_t1 {
    text-align: center;
}

.g_t1 h2 {
    font-size: var(--s50);
}

.g_t1 h2 span{
    font-size: var(--s15);
	display: block;
	padding-top: 10px;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif!important;
}

.g_t2 {
    text-align: left;
}

.g_t2 h2 {
    font-size: var(--s38);
}

.g_t2 h2 span{
    font-size: var(--s15);
	display: block;
	padding-top: 10px;
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif!important;
}


.g_t1 h3 {
    text-align: center;
    font-size: var(--s28);
    line-height: var(--lh14);
    font-weight: bold;
}

.g_btn {
    width: 300px;
    height: auto;
    border-radius: 100px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    transition-property: opacity;
    transition-duration: 0.5s;
	border: 1px solid #333;
	background: #fff;
}

.g_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #333;
}

.g_btn a {
    padding: 22px 0;
    display: block;
    font-weight: bold;
    font-size: var(--s16);
}

.g_btn a span.img {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.g_btn2 {
    border-radius: 6px;
    text-align: center;
    position: relative;
    transition-property: opacity;
    transition-duration: 0.5s;
	border: 1px solid var(--bd1);
}
.g_btn2 a {
    padding: 22px 50px;
    display: inline-block;
    font-weight: bold;
    font-size: var(--s16);
    position: relative;
	color: var(--color1);
}
.g_btn2 a span.img {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 15px;
    height: 8px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}


.g_btn:hover {
    opacity: 0.7;
}
.g_mb_a {
    margin-bottom: 26px;
}
.g_mb_b {
    margin-bottom: 36px !important;
}
.g_mb_c {
    margin-bottom: 46px !important;
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
#header_box{
    width: 100%;
}

#header_box .wrap{
    padding: 40px 0px 30px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
	text-align: center;
	position: relative;
}

.header_logo{
    width: 136px;
    height: auto;
	margin: 0 auto;
}

.menu_btn_wrap{
	width: 40px;
	border-radius: 10px;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	z-index: 999;
	transition: top 0.3s ease;
	position: absolute;
	border-radius: 6px;
}

.menu_btn{
	position: relative;
	margin-left: auto;
	cursor: pointer;
	height: 18px;
}

.menu_btn span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 0px;
	height: 2px;
	background: #333;
	z-index: 110;
	border-radius: 6px;
}

.menu_btn span:nth-of-type(1) {
  top:0px; 
  width: 100%;
}

.menu_btn span:nth-of-type(2) {
  top:8px;
  width: 100%;
}

.menu_btn span:nth-of-type(3) {
  top:16px;
  width: 100%;
}

.menu_btn.active span:nth-of-type(1) {
  top: 3px;
  left: 0px;
  transform: translateY(6px) rotate(-135deg);
  width: 100%;
}

.menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.menu_btn.active span:nth-of-type(3){
  top: 15px;
  left: 0px;
  transform: translateY(-6px) rotate(135deg);
  width: 100%;
}

/*-----------------------------------------------------
drawer
-------------------------------------------------------*/
#drawer{
	display: none;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	background: #fff;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100;
}

.drawer_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	max-width: 800px;
	margin: 0 auto;
	overflow-y: auto;
}

.drawer_content{
	width: 100%;
  	display:-webkit-box;
	display: -webkit-flex;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}


.drawer_contact{
	width: 52%;
}

.drawer_contact ul{
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	-webkit-display: flex;
	-moz-display: flex;
	-ms-display: flex;
	-o-display: flex;
	display: flex;
	gap: 16px;
}

 .drawer_contact ul li{
	 width: 100%;
}

.drawer_contact p {
    font-size: var(--s22);
    margin-bottom: 30px;
}

.drawer_contact p span{
    display: block;
    font-size: var(--base);
    padding-top: 12px;
}

.drawer_contact .tel{
	margin-bottom: 20px;
}

.drawer_contact .tel a {
    font-size: var(--s42);
}

.drawer_contact .g_btn{
	width: 70%;
	margin: 0;
}


.drawer_menu{
	width: 36%;
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}


.drawer_menu ul{
	display:-webkit-box;
	display: -webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

.drawer_menu ul li {
	font-weight: bold;
    font-size: var(--s18);
}

.drawer_menu ul li.t {
    font-size: var(--s18);
	color: var(--color3);
}

.drawer_menu ul li.sns img{
	width: 34px;
}



/*-----------------------------------------------------
mv
-------------------------------------------------------*/
.mv {
    max-width: 1400px;
	margin: 0 auto;
}

.mv_box {
	position: relative;
}

.mv_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48%;
}

.mv_img {
  width: 100%;
  height: auto;
}


/*-----------------------------------------------------
box1
-------------------------------------------------------*/

.box1 {
	padding: 80px 0 160px 0;
}

.box1 p{
	line-height: var(--lh20);
	font-weight: bold;
}


/*-----------------------------------------------------
box2
-------------------------------------------------------*/
.box2 {
    padding: 0 0 140px 0;
}

.box2_list{
	padding: 60px 0 0;
}

.box2_list ul{
  	display:-webkit-box;
	display: -webkit-flex;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.box2_list ul li{
	width: 46%;
}

.box2_list ul li .text{
	padding: 26px 0;
}

.box2_list ul li .text h3{
	font-size: var(--s22);
	margin-bottom: 16px;
	font-weight: bold;
}

.box2_list ul li .text p{
	line-height: var(--lh18);
}

.box2_list .img{
	position: relative;
}

.box2_btn{
	width: 90px;
	height: 90px;
	position: absolute;
	right: 40px;
	bottom: 0;
}


/*-----------------------------------------------------
box3
-------------------------------------------------------*/
.box3 {
    padding: 0 0 140px 0;
}

.box3_list {
	padding: 50px 0 0 0;
}

.box3_list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

.box3_list ul li {
    width: 31%;
	border: 1px solid #ccc;
	padding: 36px;
}

.box3_list span {
    font-size: var(--s20);
	font-weight: bold;
	text-align: center;
	display: block;
	margin-bottom: 16px;
}

.box3_list p {
	line-height: var(--lh18);
}


/*-----------------------------------------------------
box4
-------------------------------------------------------*/
.box4{
	padding: 100px 0 100px 0;
	background: var(--color1);
}

.box4_list{
	padding: 80px 0 0 0;
}

.box4_list ul{
	max-width: 600px;
	margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	gap: 56px 0;
	margin-bottom: 46px;
}

.box4_list ul li{
	width: 31.5%;
	background: #fff;
	position: relative;
	text-align: center;
  	display:flex;
    align-items: center;
    justify-content: center;
	height: 140px;

}

.box4_list ul li .ic{
	width: 76px;
	height: 76px;
	border-radius: 200px;
	background: var(--color3);
	color: #fff;
	font-size: var(--s26);
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%); 
  	display:flex;
    align-items: center;
    justify-content: center;
  	flex-direction: column;

}

.box4_list ul li .ic span{
	font-size: var(--s14);
	display: block;
	margin-bottom: 2px;
}

.box4_list ul li p{
	padding-top: 20px;
	font-size: var(--s18);
	line-height: var(--lh16);
	font-weight: bold;
}

/*-----------------------------------------------------
box5
-------------------------------------------------------*/
.box5{
	padding: 140px 0 140px 0;
}


.box5_list{
	padding: 40px 0 0 0;
}

.box5_list ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  	-webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
	gap: 30px;
	margin-bottom: 46px;

}

.box5_list ul li{
	border-bottom: 1px solid #ccc;
	padding-bottom: 20px;
}

.box5_list ul li .q{
	font-size: var(--s20);
	margin-bottom: 10px;
	font-weight: bold;
}

.box5_list ul li .a{
	margin-left: 30px;
	line-height: var(--lh18);
}

/*-----------------------------------------------------
cta
-------------------------------------------------------*/
.cta{
	padding: 60px 0;
	background: var(--color3);
	color: #fff!important;
}

.cta_list{
	padding: 40px 0 0 0;
}

.cta_list p{
	font-size: var(--s20);
	margin-bottom: 40px;
	text-align: center;
}

.cta_list p span{
	display: block;
	font-size: var(--base);
	padding-top: 12px;
}

.cta_list ul{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
	gap: 50px;
}

.cta_list .tel a{
	font-size: var(--s42);
	color: #fff;
}

.cta_list .g_btn{
	border: none!important;
	margin: 0!important;
}

/*-----------------------------------------------------
footer
-------------------------------------------------------*/
footer{
}

#footer_box{
    padding: 140px 0px 0;
	position: relative;
}

.footer_nav{
    margin-bottom: 120px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    font-size: var(--s16);
}

.footer_sns{
	border-bottom: 1px solid #ddd;
	padding-bottom: 26px;
	margin-bottom: 46px;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer_sns .t{
    font-size: var(--s16);
	font-weight: bold;
	margin-right: 26px;
}

.footer_sns .ic{
	width: 26px;
}

.footer_list{
	width: 80%;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 2%;
}

.footer_logo{
	width: 12%;
}


.footer_list ul{
	width: 30%;
}

.footer_list ul li{
	margin-bottom: 16px;
}

.footer_list ul li.t{
    font-size: var(--s16);
	font-weight: bold;
}

.footer_list ul li:last-child{
	margin-bottom: 0px;
}

.footer_list ul li a{
}



.footer_copyright{
    text-align: center;
    font-size: var(--s13);
	line-height: var(--lh16);
	padding: 30px 0;
}

/*-----------------------------------------------------
page-top
-------------------------------------------------------*/

#page_top {
    position: fixed;
    bottom: 0;
    right: 30px;
	z-index: 9999;
	margin: 0 0 32px;
    display: none;
}

#page_top.active{
    display: block;
    transition: 1s all;     
}

#page_top a{
	width: 34px;
    display: inline-block;
}

#page_top a:hover{
    text-decoration: none;
    opacity: 0.8;
}

#page_top a img{
}

/*-----------------------------------------------------
reCAPTCHA
-------------------------------------------------------*/
.grecaptcha-badge {
    visibility: hidden;
}
.recaptcha {
    margin: 54px auto 15px;
    border: 1px solid #cccccc;
    padding: 20px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
}
.recaptcha p {
    font-size: 12px;
    color: #808080;
    line-height: 1.75;
}
.recaptcha a {
    display: inline;
    text-decoration: underline;
    color: #808080;
}
.recaptcha span {
    display: block;
    color: #222222;
}
/*-----------------------------------------------------
translate
-------------------------------------------------------*/
#gt-nvframe {
    display: none;
}