@charset "UTF-8";


/***************************************************

	共通コンテンツ部

***************************************************/

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

:root {
	--text: #222;
	--text2: #555;
	--color1: #0262d6;
	--color2: #0098d8;
	--categoryBg: #F7F7F7;
	--BG_gray1: #DADEE6;
}


html, body{margin:0; padding:0}

body{
	position: relative;
	background: #ffffff;
	font-size: 16px;
	font-weight: 500;
	color: var(--text);
	line-height: 1.625;
	font-family: "Noto Sans JP", sans-serif;
	word-wrap: break-word;
	word-break: break-all;
}

.en{
	font-family: "Roboto", sans-serif;
}

.mincho{
	font-family: "Noto Serif JP", serif;
}

a{
	color: var(--color1);
	transition: all 0.2s linear;
}

img{
	max-width: 100%;
	height: auto;
}

ul{
	list-style-type: none;
}

.pc-on{display: block;}
.sp-on{display: none;}



/* --------- ヘッダー ---------- */

header{
	padding-top: 24px;
}

header .header_wrapper{
	width: 1300px;
	margin: 0 auto 24px;
}

header .header_wrapper .head_logo{
	width: 250px;
	margin: 0 0 28px 35px;
}

header .header_wrapper .st_g_menu{
	width: 1080px;
	margin: 0 auto;
}

header .header_wrapper .st_g_menu ul{
	width: 100%;
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}

header .header_wrapper .st_g_menu ul li{
	width: 154px;
	height: 30px;
	box-sizing: border-box;
}

header .header_wrapper .st_g_menu ul li a{
	display: block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	text-align: center;
	border-left: 1px solid var(--color1);
}

header .header_wrapper .st_g_menu ul li:last-child a{
	border-right: 1px solid var(--color1);
}

header .header_wrapper .st_g_menu ul li.current a,
header .header_wrapper .st_g_menu ul li a:hover{
	background: var(--color1);
	color: #fff;
}


.navi_menu{
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-115px);
	z-index: 10;
}

.navi_menu .nav_btn{
	width: 115px;
	height: 115px;
	background: var(--color1);
	position: relative;
	cursor: pointer;
}

.navi_menu .nav_btn .btn_wrapp{
	width: 52px;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    text-align: center;
}

.navi_menu .nav_btn .btn_wrapp span{
	display: block;
	width: 100%;
	height: 3px;
	background: #fff;
	position: absolute;
	left: 0;
	transition: all 0.2s linear;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(1){
	top: 0;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(2){
	top: 16px;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(3){
	top: 31px;
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(1){
	top: 16px;
	transform: rotate(45deg);
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(2){
	display: none;
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(3){
	top: 16px;
	transform: rotate(-45deg);
}


.navi_menu .nav_btn .btn_wrapp strong{
	display: block;
	font-size: 17px;
	color: #fff;
	font-weight: 700;
	margin-top: 50px;
}

#Gnavigation{
	width: 200px;
	box-sizing: border-box;
	background: var(--color1);
	padding: 24px;
	position: fixed;
	top: calc(50% + 55px);
	left: -200px;
	transition: all 0.2s linear;
	z-index: 10;
}

#Gnavigation.active{
	left: 0;
}

#Gnavigation ul li{
	border-bottom: 1px solid #fff;
}

#Gnavigation ul li:last-child{
	border-bottom: none;
}

#Gnavigation ul li a{
	display: block;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	padding: 10px 12px;
}

#Gnavigation ul li.current a,
#Gnavigation ul li a:hover{
	background: #fff;
	color: var(--color1);
}

header .contact_btn{
	width: 115px;
	height: 115px;
	position: fixed;
	top: calc(50% + 115px);
	left: 0;
	transform: translateY(-115px);
	z-index: 5;
	background: #fff;
}

header .contact_btn a{
	display: block;
	height: 100%;
	background: #f38f1e;
	position: relative;
}

header .contact_btn a:hover{
	opacity: 0.8;
}

header .contact_btn a .btn_wrapp{
	display: block;
	width: 79px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#page-top{
    width: 70px;
    height: 60px;
    background: var(--color1);
    position: fixed;
    bottom: 0;
    right: 40px;
    border-radius: 10px 10px 0 0;
    z-index: 5;
    cursor: pointer;
}

#page-top::before{
    content: '';
    border: 12px solid transparent;
    border-bottom: 20px solid #fff;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);;
}


footer{
	padding: 60px 0 16px;
	position: relative;
	background-color: #efefef;
	background-repeat: no-repeat;
	background-position: right 36px bottom -114px;
	background-size: 294px;
	background-image: url('../images/common/footer_bgicon.png');
	margin-top: 180px;
	position: relative;
}

footer::before{
	content: '';
	display: block;
	width: 100%;
	height: 148px;
	background-repeat: repeat-x;
	background-position: 0 0;
	background-size: auto 148px;
	background-image: url('../images/common/footer_headbg.png');
    position: absolute;
    top: -148px;
    left: 0;
}

footer .copyright{
	font-size: 13px;
	color: var(--color1);
	line-height: 1;
	text-align: center;
}

footer .footer_wrapp{
	width: 1096px;
	margin: 0 auto 50px;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

footer .footer_wrapp .info_data{
	width: 600px;
}

footer .footer_wrapp .info_data .logo{
	width: 250px;
	margin-bottom: 34px;
}

footer .footer_wrapp .info_data .add{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin: 0 0 30px;
}

footer .footer_wrapp .info_data .phone_box{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	margin-left: 0;
	display: flex;
}

footer .footer_wrapp .info_data .phone_box p{
	margin-right: 30px;
}

footer .footer_wrapp .link_box{
	width: calc(100% - 600px);
	padding-top: 26px;
}

footer .footer_wrapp .link_box ul{
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

footer .footer_wrapp .link_box ul:last-of-type{
    margin-bottom: 0;
}

footer .footer_wrapp .link_box ul li{
	width: 192px;
}

footer .footer_wrapp .link_box ul li:nth-child(3n + 3){
	width: auto;
}

footer .footer_wrapp .link_box ul li a{
	display: inline-block;
	font-size: 16px;
	color: var(--text);
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	padding-left: 1em;
	position: relative;
}

footer .footer_wrapp .link_box ul li a:hover{
	opacity: 0.8;
}

footer .footer_wrapp .link_box ul li a::before{
	content: '';
	display: inline-block;
	border: 6px solid transparent;
	border-left: 10px solid var(--color1);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}


.page_head{
	width: 1300px;
	height: 495px;
	margin: 0 auto 70px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
}

.page_head .p_head_wrapp{
	width: 1000px;
	height: 100%;
	margin: 0 auto;
	position: relative;
}

.page_head .p_head_wrapp .text_wrapp{
	position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    line-height: 1;
    color: #fff;
}

.page_head .p_head_wrapp .text_wrapp h1{
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin-bottom: 40px;
}

.page_head .p_head_wrapp .text_wrapp h1 small{
	display: block;
	font-size: 15px;
	font-weight: 500;
	margin-top: 18px;
}

.page_head .p_head_wrapp .text_wrapp .h_caption{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.1em;
}



.maruka100th{
	padding-top: 110px;
	text-align: center;
}

.maruka100th .sub{
	font-size: 21px;
	color: #f38f1e;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 24px;
}

.maruka100th .main{
	font-size: 37px;
	color: var(--color1);
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.06em;
	margin-bottom: 65px;
}

.maruka100th .image{
	width: 395px;
	margin: 0 auto 58px;
}

.maruka100th .link{
	text-align: center;
}

.maruka100th .link a{
	display: inline-block;
	height: 34px;
	line-height: 34px;
	background: #f38f1e;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-decoration: none;
	padding: 0 30px 0 16px;
	position: relative;
}

.maruka100th .link a:hover{
	opacity: 0.8;
}

.maruka100th .link a::after{
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translate(0, -50%) rotate(45deg);
}


.anchor_link{
	margin-bottom: 80px;
}

.anchor_link ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.anchor_link ul li{
	margin: 0 16px;
	line-height: 1;
}

.anchor_link ul li a{
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: var(--text);
	letter-spacing: 0.04em;
	padding-right: 18px;
	text-decoration: none;
	position: relative;
}

.anchor_link ul li a::after{
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 2px var(--color1);
  border-right: solid 2px var(--color1);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;	
}

.cont_wrapp{
	margin-bottom: 100px;
	padding: 80px 0
}

.cont_wrapp:last-of-type{
	margin-bottom: 0;
}

.cont_wrapp:nth-of-type(even){
	background: #e6effb;
}

.cont_wrapp h2{
	line-height: 1;
	text-align: center;
	margin-bottom: 100px;
}

.cont_wrapp h2 strong{
	font-size: 32px;
	font-weight:500;
	letter-spacing: 0.3em;
	position: relative;
}

.cont_wrapp h2 strong::after{
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/circle_h.png');
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translate(-50%, 0);
}

.in_cont{
	width: 950px;
	margin: 0 auto 60px;
}

.in_cont:last-of-type{
	margin-bottom: 0;
}

.in_cont h3{
	font-size: 25px;
	font-weight: 500;
	color: var(--color1);
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 40px;
}










/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1300px){

body{
	font-size: 1.230769vw;
}


/* --------- ヘッダー ---------- */

header{
	padding-top: 1.846154vw;
}

header .header_wrapper{
	width: 100%;
	margin: 0 auto 1.846154vw;
}

header .header_wrapper .head_logo{
	width: 19.230769vw;
	margin: 0 0 2.153846vw 2.692308vw;
}

header .header_wrapper .st_g_menu{
	width: 83.076923vw;
}

header .header_wrapper .st_g_menu ul li{
	width: 11.846154vw;
	height: 2.307692vw;
}

header .header_wrapper .st_g_menu ul li a{
	height: 2.307692vw;
	line-height: 2.307692vw;
	font-size: 1.153846vw;
}

.navi_menu{
	transform: translateY(-8.846154vw);
}

.navi_menu .nav_btn{
	width: 8.846154vw;
	height: 8.846154vw;
}

.navi_menu .nav_btn .btn_wrapp{
	width: 4vw;
}

.navi_menu .nav_btn .btn_wrapp span{
	height: 0.230769vw;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(2){
	top: 1.230769vw;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(3){
	top: 2.384615vw;
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(1){
	top: 1.230769vw;
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(3){
	top: 1.230769vw;
}


.navi_menu .nav_btn .btn_wrapp strong{
	font-size: 1.307692vw;
	margin-top: 3.846154vw;
}

#Gnavigation{
	width: 15.384615vw;
	padding: 1.846154vw;
	top: calc(50% + 4.230769vw);
	left: -15.384615vw;
}

#Gnavigation ul li a{
	font-size: 1.230769vw;
	padding: 0.769231vw 0.923077vw;
}

header .contact_btn{
	width: 8.846154vw;
	height: 8.846154vw;
	top: calc(50% + 8.846154vw);
	transform: translateY(-8.846154vw);
}

header .contact_btn a .btn_wrapp{
	width: 6.076923vw;
}


#page-top{
    width: 5.384615vw;
    height: 4.615385vw;
    right: 40px;
    border-radius: 0.769231vw 0.769231vw 0 0;
}

#page-top::before{
    border: 0.923077vw solid transparent;
    border-bottom: 1.538462vw solid #fff;
}


footer{
	padding: 4.615385vw 0 1.230769vw;
	background-position: right 2.769231vw bottom -8.769231vw;
	background-size: 22.615385vw;
	margin-top: 13.846154vw;
}

footer::before{
	height: 11.384615vw;
	background-size: auto 11.384615vw;
    top: -11.384615vw;
}

footer .copyright{
	font-size: 1vw;
}

footer .footer_wrapp{
	width: 84.307692vw;
	margin: 0 auto 3.846154vw;
}

footer .footer_wrapp .info_data{
	width: 46.153846vw;
}

footer .footer_wrapp .info_data .logo{
	width: 19.230769vw;
	margin-bottom: 2.615385vw;
}

footer .footer_wrapp .info_data .add{
	font-size: 1.230769vw;
	margin: 0 0 2.307692vw;
}

footer .footer_wrapp .info_data .phone_box{
	font-size: 1.230769vw;
	margin-left: 0;
}

footer .footer_wrapp .info_data .phone_box p{
	margin-right: 2.307692vw;
}

footer .footer_wrapp .link_box{
	width: calc(100% - 46.153846vw);
	padding-top: 2vw;
}

footer .footer_wrapp .link_box ul{
    margin-bottom: 2.307692vw;
}

footer .footer_wrapp .link_box ul li{
	width: 14.769231vw;
}

footer .footer_wrapp .link_box ul li a{
	font-size: 1.230769vw;
}

footer .footer_wrapp .link_box ul li a::before{;
	border: 0.461538vw solid transparent;
	border-left: 0.769231vw solid var(--color1);
}



.page_head{
	width: 100%;
	height: 38.076923vw;
	margin: 0 auto 5.384615vw;
}

.page_head .p_head_wrapp{
	width: 76.923077vw;
}

.page_head .p_head_wrapp .text_wrapp h1{
	font-size: 2.692308vw;
	margin-bottom: 3.076923vw;
}

.page_head .p_head_wrapp .text_wrapp h1 small{
	font-size: 1.153846vw;
	margin-top: 1.384615vw;
}

.page_head .p_head_wrapp .text_wrapp .h_caption{
	font-size: 1.538462vw;
}



.maruka100th{
	padding-top: 8.461538vw;
}

.maruka100th .sub{
	font-size: 1.615385vw;
	margin-bottom: 1.846154vw;
}

.maruka100th .main{
	font-size: 2.846154vw;
	margin-bottom: 5vw;
}

.maruka100th .image{
	width: 30.384615vw;
	margin: 0 auto 4.461538vw;
}

.maruka100th .link a{
	height: 2.615385vw;
	line-height: 2.615385vw;
	font-size: 1.153846vw;
	padding: 0 2.307692vw 0 1.230769vw;
}

.maruka100th .link a::after{
    width: 0.615385vw;
    height: 0.615385vw;
    right: 1.076923vw;
}


.anchor_link{
	margin-bottom: 6.153846vw;
}

.anchor_link ul li{
	margin: 0 1.230769vw;
}

.anchor_link ul li a{
	font-size: 1.384615vw;
	padding-right: 1.384615vw;
}

.anchor_link ul li a::after{
  width: 0.615385vw;
  height: 0.615385vw;
  border-bottom: solid 0.153846vw var(--color1);
  border-right: solid 0.153846vw var(--color1);
}

.cont_wrapp{
	margin-bottom: 7.692308vw;
	padding: 6.153846vw 0
}

.cont_wrapp h2{
	margin-bottom: 7.692308vw;
}

.cont_wrapp h2 strong{
	font-size: 2.461538vw;
}

.cont_wrapp h2 strong::after{
	width: 2.307692vw;
	height: 2.307692vw;
    bottom: -3.230769vw;
}

.in_cont{
	width: 73.076923vw;
	margin: 0 auto 4.615385vw;
}

.in_cont h3{
	font-size: 1.923077vw;
	margin-bottom: 3.076923vw;
}













}



/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

body{
	font-size: 3.733333vw
}

.pc-on{display: none;}
.sp-on{display: block;}


/* --------- ヘッダー ---------- */

header{
	padding-top: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 14.666667vw;
	background: #fff;
	z-index: 999;
	
}

header .header_wrapper{
	width: auto;
	margin: 0 auto 0;
}

header .header_wrapper .head_logo{
	width: 31.466667vw;
	margin: 0;
	position: fixed;
	top: 3.466667vw;
	left: 5.333333vw;
}

header .header_wrapper .st_g_menu{
	display: none;
}



.navi_menu{
	position: fixed;
	top: 0;
	left: unset;
	right: 0;
	transform: translateY(0);
	z-index: 999;
}

.navi_menu .nav_btn{
	width: 14.666667vw;
	height: 14.666667vw;
}

.navi_menu .nav_btn .btn_wrapp{
	width: 6.933333vw;
}

.navi_menu .nav_btn .btn_wrapp span{
	height: 0.533333vw;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(1){
	top: 0;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(2){
	top: 2.133333vw;
}

.navi_menu .nav_btn .btn_wrapp span:nth-of-type(3){
	top: 4.266667vw;
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(1){
	top: 2.133333vw;
}

.navi_menu .nav_btn.active .btn_wrapp span:nth-of-type(3){
	top: 2.133333vw;
}


.navi_menu .nav_btn .btn_wrapp strong{
	font-size: 2.4vw;
	margin-top: 6.133333vw;
}

#Gnavigation{
	width: 53.333333vw;
	padding: 3.2vw;
	position: fixed;
	top: 14.666667vw;
	left: unset;
	right: -53.333333vw;
}

#Gnavigation.active{
	left: unset;
	right: 0;
}

#Gnavigation ul li a{
	font-size: 3.733333vw;
	padding: 2.666667vw 3.2vw;
}

#Gnavigation ul li.current a,
#Gnavigation ul li a:hover{
	background: var(--color1);
	color: #fff;
}

header .contact_btn{
	width: 14.666667vw;
	height: 14.666667vw;
	top: 0;
	left: unset;
	right: 14.666667vw;
	transform: translateY(0);
	z-index: 999;
}

header .contact_btn a:hover{
	opacity: 1;
}

header .contact_btn a .btn_wrapp{
	width: 9.6vw;
}


#page-top{
    width: 10.666667vw;
    height: 10.666667vw;
    right: 5.333333vw;
    border-radius: 1.6vw 1.6vw 0 0;
}

#page-top::before{
    border: 2.4vw solid transparent;
    border-bottom: 4.266667vw solid #fff;
}


footer{
	padding: 8vw 0 13.333333vw;
	background-position: right -14.4vw bottom -25.066667vw;
	background-size: 53.333333vw;
	margin-top: 21.333333vw;
}

footer::before{
	height: 16vw;
	background-size: auto 16vw;
    top: -16vw;
}

footer .copyright{
	font-size: 2.666667vw;
}

footer .footer_wrapp{
	width: auto;
	margin: 0 auto 6.4vw;
	display: block;
}

footer .footer_wrapp .info_data{
	width: auto;
}

footer .footer_wrapp .info_data .logo{
	width: 48vw;
	margin: 0 auto 4.8vw;
}

footer .footer_wrapp .info_data .add{
	font-size: 3.733333vw;
	margin: 0 0 4.8vw;
	text-align: center;
}

footer .footer_wrapp .info_data .phone_box{
	font-size: 3.733333vw;
	margin-left: 0;
	display: block;
	text-align: center;
}

footer .footer_wrapp .info_data .phone_box p{
	margin-right: 0;
}

footer .footer_wrapp .link_box{
	display: none;
}

main{
	padding-top: 14.666667vw;
}

.page_head{
	width: auto;
	height: 48vw;
	margin: 0 auto 8vw;
}

.page_head .p_head_wrapp{
	width: auto;
	margin: 0 5.333333vw;
}

.page_head .p_head_wrapp .text_wrapp h1{
	font-size: 6.4vw;
	margin-bottom: 4.8vw;
}

.page_head .p_head_wrapp .text_wrapp h1 small{
	font-size: 3.733333vw;
	margin-top: 2.666667vw;
}

.page_head .p_head_wrapp .text_wrapp .h_caption{
	font-size: 3.733333vw;
}



.maruka100th{
	padding: 16vw 5.333333vw 0;
}

.maruka100th .sub{
	font-size: 4.266667vw;
	margin-bottom: 4.8vw;
}

.maruka100th .main{
	font-size: 5.333333vw;
	line-height: 1.6;
	margin-bottom: 5.333333vw;
}

.maruka100th .image{
	width: 60%;
	margin: 0 auto 8vw;
}

.maruka100th .link a{
	height: 9.066667vw;
	line-height: 9.066667vw;
	font-size: 3.733333vw;
	padding: 0 8vw 0 4.266667vw;
}

.maruka100th .link a:hover{
	opacity: 1;
}

.maruka100th .link a::after{
    width: 2.133333vw;
    height: 2.133333vw;
    right: 3.733333vw;
}


.anchor_link{
	margin-bottom: 5.333333vw;
}

.anchor_link ul{
	flex-wrap: wrap;
}

.anchor_link ul li{
	margin: 0 3.733333vw 4.266667vw;
}

.anchor_link ul li a{
	font-size: 3.733333vw;
	padding-right: 4.8vw;
}

.anchor_link ul li a::after{
  width: 1.6vw;
  height: 1.6vw;
  border-bottom: solid 0.533333vw var(--color1);
  border-right: solid 0.533333vw var(--color1);
}

.cont_wrapp{
	margin-bottom: 13.333333vw;
	padding: 8vw 0
}

.cont_wrapp h2{
	margin-bottom: 16vw;
}

.cont_wrapp h2 strong{
	font-size: 6.4vw;
}

.cont_wrapp h2 strong::after{
	width: 5.866667vw;
	height: 5.866667vw;
    bottom: -7.466667vw;
}

.in_cont{
	width: auto;
	margin: 0 auto 10.666667vw;
}

.in_cont h3{
	font-size: 5.333333vw;
	margin-bottom: 5.333333vw;
}







}
