@charset "utf-8";

/*--------------------------------------------

Theme Name: bestmode
Theme URI: https://www.bestmode.info/
Description: ベストモード
Version: 1.0
Author: Kazuhiro Moriya (Sato Printing)
Author URI: http://www.satoprinting.co.jp/

---------------------------------------------*/

/* CSS Document */

/*
	=============================== 共通 ===============================
*/
html {
  font-size: clamp(16px, 1rem + 0.2vw, 18px);
}

body {
	font-family: "M PLUS Rounded 1c", sans-serif;
	color: #6a3906;
	background-image: url('../images/main_bg_01.png'); 
	background-attachment: fixed; /* 背景画像を固定 */
	background-size: cover; /* 画面全体に表示 */
	background-repeat: no-repeat; /* 繰り返しを防止 */
	background-position: center center; /* 中央に配置 */
	margin: 0;
    padding: 0;
}

html,
body{
    overflow-x:hidden;
}

a {
  color: inherit;      /* 親要素の文字色を引き継ぐ */
  text-decoration: none; /* 下線を消す */
}

.sub_page{
	font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

:root {
  --bg-header: #00a0e9;
  --link-header-active: #00a0e9;
  --bg-footer: var(--bg-header);
  --intro-title-bg: #6eb9dc;
  --intro-title-line: #6a3906;
  --main-wrapp-line: #6eb9dc;	
  --main-wrapp-bg: #ffffff;	
  --main-wrapp-item-bg: #fdf6dd;
  --news-update: #fd8ca0;
  --link-btn-bg: #fd8ca0;
  --link-btn-text: #ffffff;	
  --header-height: clamp(60px, 9vw, 100px);
  --wave-height: 20px;
}

/* 本文に可変の行間と余白を適用 */
p {
  font-size: clamp(16px, 12.8px + 0.667vw, 20px);
  line-height: clamp(1.4em, 1.22em + 0.37vw, 1.6em);/* 行間を1.5から1.8の間で可変 */
  margin-bottom: clamp(1rem, 0.8rem + 1vw, 2rem); /* 余白を1remから2remの間で可変 */
}

p:last-child {
  margin-bottom: 0;
}

/*
	=============================== top戻るボタン ===============================
*/

#page_top2 {
  width: 50px;
  height: 50px;
  position: fixed;
  right: -50px;
  bottom: 50px;
  background: #00a0e9;
  opacity: 0.7;
  border-radius: 50%;
}
#page_top2 a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top2 a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*
	=============================== ヘッダー ===============================
*/
#header {
	height: 0;
}


.header_body {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--bg-header);
	z-index: 100;
	overflow: visible;
}

.header_body::after{
	content:"";
	position:absolute;
	top:98%;
	left:50%;

	width:1920px;
	height:20px;

	transform:translateX(-50%);

	background:url("../images/header_under_01.svg") no-repeat center top;
	background-size:1920px 20px;
}

.header_flex_warpp {
	width: min(100%, 1080px);
	height: var(--header-height);
    margin: 0 auto;
    padding: 10px 20px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}

.header_flex_item1 {
    flex-shrink: 1;
    min-width: 0;
}

.header_flex_item2 {
    flex-shrink: 1;
    min-width: 0;
}

.header_logo img {
	height: clamp(50px, 7vw, 80px);
    width: auto;
}

.header_flex_item2 ul {
	display: flex;
	justify-content: flex-end;
	gap: clamp(10px, 1vw, 16px);
	list-style: none;
    margin: 0;
    padding: 0;
	font-size: clamp(10px, 1vw + 5.5px, 16px);
	font-weight: 700;
}

.header_flex_item2 li{
	display: flex;
	align-items: center;
	justify-content: center;

	background: #ffffff;
	text-align: center;
	min-width: 70px;
	padding: 8px 14px;
	border-radius: 20px;
	box-sizing: border-box;
}

.header_flex_item2 li img {
	display: inline-block;
	width: 18px;
	padding: 0 5px 0 0;
	vertical-align: -2px;
}

.header_flex_item2 a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	height: 100%;
}

.group_company,
.group_company_menu {
    display: none;
}

.header_flex_item2 a:hover {
	color: var(--link-header-active);
	text-decoration: none;
	opacity:0.7;
	transition : .5s;
}


/*
	=============================== ハンバーガー ===============================
*/
/* ハンバーガー */
.hamburger {
    display: none;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #fff;
    transition: .3s;
}

/* × */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/*
	=============================== TOPビジュアル ===============================
*/

.normal_top{
	position: relative;

	height:min(700px, calc(100vh - var(--header-height)));
	min-height:500px;

	margin-top:var(--header-height);

	background:url("../images/top_bg_01.png") no-repeat center center;
	background-size:cover;

	overflow:hidden;
}

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

	width:min(95vw, 1200px);
	height:100%;

	display:flex;
	align-items:center;
	justify-content:center;
}

.normal_top_main img{
	display:block;
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}

.pc_img{
	display:block !important;
}

.sp_img{
	display:none !important;
}

@media screen and (max-width: 768px){

	.normal_top{
		height: clamp(
			480px,
			calc(480px + (100vw - 480px) * 0.09),
			500px
		);
		min-height: auto;
	}
	
.normal_top_main img{
	display:block;
	max-width:90%;
	max-height:90%;
	width:auto;
	height:auto;
}
	
	.pc_img{
		display:none !important;
	}

	.sp_img{
		display:block !important;
	}

}

@media screen and (max-width: 480px){

	.normal_top{
		height: 480px;
	}

}


/*
	=============================== MV ===============================
*/
.mv {
	position: relative;
	height:min(700px, calc(100vh - var(--header-height)));
	min-height: 500px;
    margin-top: var(--header-height);
	overflow:hidden;
}

.mv video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv_logo {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: min(95vw, 900px);
    height: 90%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

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

@media screen and (max-width: 480px){

	.mv{
		height: 480px;
	}

}

/*
	=============================== notice ===============================
*/

.notice_top{
	position: relative;

	height:min(700px, calc(100vh - var(--header-height)));
	min-height:500px;

	margin-top:var(--header-height);

	background:url("../images/top_bg_notice_01.png") no-repeat center center;
	background-size:cover;

	overflow:hidden;
}

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

	width:min(95vw, 1200px);
	height:100%;

	display:flex;
	align-items:center;
	justify-content:center;
}

.notice_top_main img{
	display:block;
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}

.pc_img{
	display:block !important;
}

.sp_img{
	display:none !important;
}


@media screen and (max-width: 768px){

.notice_top{
		height: clamp(
			480px,
			calc(480px + (100vw - 480px) * 0.09),
			500px
		);
		min-height: auto;
	}
	
.notice_top_main img{
	display:block;
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
}


}

@media screen and (max-width: 480px){

	.notice_top{
		height: 480px;
	}

	.pc_img{
		display:none !important;
	}

	.sp_img{
		display:block !important;
	}	
	
}

/*
	=============================== intro ===============================
*/

.intro_area{
    position:relative;
    background:url("../images/introduce_bg_01.png") repeat-x center top;
    padding: clamp(60px, 12px + 10vw, 120px) 0px;
}

.intro_area::before{
    content:"";
    position:absolute;
    top:-10px;
    left:0;
    width:100%;
    height:46px;
    background:url("../images/intro_top_border.svg") repeat-x center top;
	background-size: auto 46px;
}

.intro_area::after{
    content:"";
    position:absolute;
    bottom:-10px;
    left:0;
    width: 100%;
    height:46px;
    background:url("../images/intro_bottom_border.svg") repeat-x center bottom;
	background-size: auto 46px;
}

.intro_box{
	position: relative;
	
	max-width:1080px;
	margin:0 auto;

	background:#fff;
	border-radius:40px;

	padding: clamp(20px, 4px + 3.333vw, 40px); /* 白背景内の余白 */
	box-sizing:border-box;
}

.intro_title_box {
	background: var(--intro-title-bg);
	border: clamp(4px, 0.5vw + 1px, 6px) solid var(--intro-title-line);
	border-radius: 60px;
	box-sizing: border-box;
	margin-bottom: 30px;
    padding: 10px 20px;
}

.intro_title_box img {
	width: 520px;
	margin: 0 auto;
}

.intro_text p {
    font-size: clamp(20px, 3vw + 8px, 40px);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}

.intro_chara_left,
.intro_chara_right{
    position:absolute;
    width:180px;
    height:auto;
}

.intro_chara_left{
    left:-70px;
    bottom:40px;
}

.intro_chara_right{
    right:-70px;
    bottom:40px;
}

.intro_chara_pc{
	display:block;
}

.intro_chara_sp{
	display:none;
}

@media screen and (max-width:768px){
	
	.intro_chara_pc{
		display:none;
	}

    .intro_chara_sp{
        display:flex;
        justify-content:center;
        gap:30px;
        margin-top:30px;
    }

    .intro_chara_left,
    .intro_chara_right{
        position:static;
        width:140px;
    }
	
	.intro_text p {
	text-align: left;
}
	
}

/*
	=============================== prize ===============================
*/

.prize_area {
	padding: clamp(50px, 10px + 8.333vw, 100px) 0 clamp(25px, 5px + 4.167vw, 50px) 0;
}

.prize_flex_item {
	box-sizing: border-box;

	display: flex;
	flex-direction: column;
	gap: 14px;

	background: var(--main-wrapp-item-bg);
	border-radius: 16px;
	padding: clamp(10px, 2vw, 20px);
}

.prize_flex_item_img {
	width: 100%;
}

.prize_flex_item_img img{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
}

.news_flex_box > * {
    min-width: 0;
}

.news_flex_item_title p {
    overflow-wrap: anywhere;
}

/*
	=============================== news ===============================
*/

.news_area {
	padding: clamp(25px, 5px + 4.167vw, 50px) 0 clamp(25px, 5px + 4.167vw, 50px) 0;
}

.news_flex_box {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 3vw, 35px);
}

.news_flex_item {
	box-sizing: border-box;

	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: stretch;

	background: var(--main-wrapp-item-bg);
	border-radius: 16px;
	padding: clamp(10px, 2vw, 20px);
	
	text-decoration:none;
	color:inherit;
}

.news_flex_item_img {
	width: 100%;
	overflow:hidden;
}

.news_flex_item_img img{
	display:block;
	width:100%;
	transition:transform .3s ease;
}

.news_flex_item:hover .news_flex_item_img img{
	transform: scale(1.08);
}

.news_flex_item_img a:hover {
	transition: opacity .3s;
}

.news_flex_item_title p {
	font-weight: 700;
	font-size: clamp(15px, 9.6px + 1.333vw, 22px);
}

.news_flex_item_updated p {
	font-weight: 500;
	font-size: clamp(14px, 9.2px + 1vw, 20px);
	color: var(--news-update);
}


@media screen and (max-width: 768px) {

	.news_flex_box {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}


/*
	=============================== special ===============================
*/

.special_area {
	padding: clamp(25px, 5px + 4.167vw, 50px) 0 clamp(25px, 5px + 4.167vw, 50px) 0;
}

.special_inner_box {
    background: var(--main-wrapp-item-bg);
    border-radius: 20px;
	box-sizing: border-box;
	padding: clamp(20px, 4px + 3.333vw, 40px);
}

.special_inner_box p {
	text-align: center;
	font-weight: 500;
	font-size: clamp(14px, 1vw + 13px, 24px);
	
}

@media screen and (max-width: 480px) {
	
.special_inner_box p {
	text-align: left;
}

}

/*
	=============================== place ===============================
*/

.place_area {
	padding: clamp(25px, 5px + 4.167vw, 50px) 0 clamp(50px, 10px + 8.333vw, 100px) 0;
}

.place_inner_box {
	display: flex;
	align-items: stretch;
	gap: 50px;
    background: var(--main-wrapp-item-bg);
    border-radius: 20px;
	height: auto;
	box-sizing: border-box;
}

.place_map {
	width:min(400px, 40%);
	flex-shrink:1;
}

.place_map iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
	display: block;
	border-radius: 20px;
}

.place_text {
	flex:1;
	padding: 30px 0px 30px 0;
	margin: 0;
}

.place_text p {
	font-weight: 500;
	font-size: clamp(15px, 9.4px + 1.167vw, 22px);
}

.place_text_title {
	font-weight: 600;
	font-size: clamp(18px, 10px + 1.667vw, 28px);
}

@media (max-width: 768px){

	.place_inner_box{
		flex-direction: column;
		gap: 30px;
	}

	.place_map{
		flex-basis: auto;
		width: 100%;
	}

	.place_text{
		padding: 00px 30px 0px;
	}
	
.place_text {
	padding: 0px 20px 0px 20px;
}

}

/*
	=============================== フッター ===============================
*/
#footer {
	width: 100%;
	background-color: var(--bg-footer);
}

.footer_body {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 30px 20px 20px;
    box-sizing: border-box;
}

.footer_flex_warpp {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer_flex_item1 {
	width: 340px;
}

.footer_flex_item1_h {
  font-size: clamp(16px, 1rem + 0.2vw, 18px);
}

.footer_flex_item1 p {
	font-size: 14px;
	line-height: 1.5;
	color: #FFFFFF;
}

.footer_logo {
	width: 180px;
	margin: 0 0 20px 0;
}

.footer_flex_item2 {
	width: 340px;
}

.footer_flex_item2 li {
	font-size: 14px;
	line-height: 1.5;
	color: #FFFFFF;
}

.footer_flex_item2_wrapp ul {
    display: flex;
	flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_flex_item2_wrapp_tate ul {
    display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.Copyright p {
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
	padding: 30px 0 0;
}

.footer_flex_item2 a {
	color: #FFFFFF;
	text-decoration: none;
}

.footer_flex_item2 a:hover,
.footer_flex_item2 a:active,
.footer_flex_item2 a:visited {
	color: #FFFFFF;
	text-decoration: none;
	opacity:0.7;
	transition : .5s;
}

.fooret_sns_box{
	display: flex;
	gap: 20px;
}

.fooret_sns_box img{
	width: 20px;
}

.fooret_sns_box img:hover{
	opacity:0.7;
	transition : .5s;}


@media screen and (max-width: 768px) {
	
.fooret_sns_box{
	justify-content: center;
	margin: o auto;
}
	
}


/*
	=============================== page ===============================
*/

.page_top {
	position: relative;
	width: 100%;
	height: clamp(150px, 105.56px + 9.26vw, 200px);
	background: #fff;
    margin: var(--header-height) auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	box-sizing:border-box;
}

.page_top::after{
	content:"";
	position:absolute;
	top:99%;
	left:50%;

	width:1920px;
	height:20px;

	transform:translateX(-50%);

	background:url("../images/page_h_under_01.svg") no-repeat center top;
	background-size:1920px 20px;
}

.page_top_title img {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
}

.page_top_title p {
	font-size: clamp(30px, 6.25vw, 60px);
	font-weight: 600;
	padding: 15px 0 0 0;
}

.page_contents_box {
	max-width:1080px;
	margin:0 auto;

	background: var(--main-wrapp-bg);
	border-radius:40px;
	border: clamp(6px, 0.5vw + 4.5px, 10px) solid var(--main-wrapp-line);

	padding: clamp(14px, 4px + 3.333vw, 40px); /* 白背景内の余白 */
	box-sizing:border-box;
}

.page_contents_title p {
	font-size: clamp(24px, 11.2px + 2.67vw, 40px);
	font-weight: 700;
	text-align: center;
	margin: 0 0 clamp(15px, 3px + 2.5vw, 30px) 0;
}

.page_contents_area {
	padding: clamp(50px, 10px + 8.333vw, 100px) 0 ;
}

/*
	=============================== news detail ===============================
*/


.news_detail_inner_box {
    background: var(--main-wrapp-item-bg);
    border-radius: 20px;
	box-sizing: border-box;
	padding: clamp(20px, 4px + 3.333vw, 40px);
}

.news_detail_inner_box img {
	width: 100%;
}

.news_detail_update {
	font-weight: 500;
    margin: 0 0 20px 0;
}

.news_detail_title p {
	font-size: clamp(24px, 11.2px + 2.67vw, 40px);
	font-weight: 700;
	text-align: center;
	margin: 0 0 clamp(15px, 3px + 2.5vw, 30px) 0;
}

.news_detail_inner_box p {
	font-weight: 500;
	font-size: clamp(16px, 12.8px + 0.667vw, 20px);
}

.news_navigation {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	margin-top: clamp(20px, 4px + 3.333vw, 40px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.news_navigation a:hover{
    color: #6eb9dc;
}

.news_navigation_prev {
	
}

.news_navigation_back {
	
}

.news_navigation_next {
	
}


@media screen and (max-width: 480px) {
	
.news_detail_title p {
	text-align: left;
}
	
}

/*
	=============================== sub_page ===============================
*/

.sub_page_title p {
	font-size: clamp(24px, 11.2px + 2.67vw, 40px);
	font-weight: 700;
	text-align: center;
	margin: 0 0 clamp(15px, 3px + 2.5vw, 30px) 0;
}

.sub_page_inner_box {
    background: var(--main-wrapp-item-bg);
    border-radius: 20px;
	box-sizing: border-box;
	padding: clamp(20px, 4px + 3.333vw, 40px);
}

.sub_page_inner_box p {
	font-weight: 400;
	font-size: clamp(16px, 12.8px + 0.667vw, 20px);
}





/*
	=============================== company_table ===============================
*/

.company_table{
	width:100%;
	border-collapse:collapse;
}

.company_table tr{
	border-bottom: 0.5px solid #6a3906;
}

.company_table tr:first-child{
	border-top: 0.5px solid #6a3906;
}

.company_table th,
.company_table td{
	padding: 10px 10px;
	line-height: 1.8;
	font-size: clamp(16px, 12.8px + 0.667vw, 20px);
	text-align: left;
}

.business_item{
	display:flex;
	gap:30px;
	margin-bottom:20px;
}

.business_title{
	flex:0 0 120px;
	font-weight:600;
}

.business_text{
	flex:1;
}

@media screen and (max-width: 768px){

	.company_table,
	.company_table tbody,
	.company_table tr,
	.company_table th,
	.company_table td{
		display:block;
		width:100%;
	}

	.company_table th{
		padding-bottom:10px;
		border:none;
	}

	.company_table td{
		padding-top:0;
	}

}

.company_table th {
	padding: 10px 10px 0;
}

/*
	=============================== access ===============================
*/

.access_inner_box {
    background: var(--main-wrapp-item-bg);
    border-radius: 20px;
	height: auto;
	box-sizing: border-box;
}

.access_inner_flex {
	display: flex;
	align-items: stretch;
	gap: 50px;
	margin-bottom: 30px
}

.access_company_photo {
	width:min(320px, 30%);
	flex-shrink:1;
}

.access_company_photo img {
	border-radius: 20px;
}

.access_map iframe {
	width: 100%;
	height: 400px;
	min-height: 300px;
	display: block;
	border-radius: 20px;
}

.access_text {
	flex:1;
	padding: 30px 40px 0px 0;
	margin: 0;
}

.access_text p {
	font-weight: 400;
	font-size: clamp(16px, 12.8px + 0.667vw, 20px);
}

.place_sns_box{
	display: flex;
	gap: clamp(20px, 1.67vw + 12px, 30px);
}

.place_sns_box img{
    width: clamp(30px, 1.67vw + 22px, 40px);
}

.place_sns_box img:hover{
  	opacity:0.8;
	transition : .5s;  
}


@media (max-width: 768px){

	.access_inner_flex {
		flex-direction: column;
		gap: 30px;
	}

	.access_company_photo {
		width: 80%;
		margin: 0 auto
	}
	.access_company_photo img {
		width: 100%
	}

	.access_text {
		padding: 00px 30px 0px;
	}
	
.place_text {
	padding: 0px 20px 20px 20px;
}

}

@media (max-width: 480px){

	.access_company_photo {
		width: 100%;
		margin: 0 auto
	}

}


/*
	=============================== メイン 全体===============================
*/

.wrapper {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.h_title {
	max-width: 420px;
	margin: 0 auto clamp(20px, 4px + 3.333vw, 40px);
}

.contents_box {
	max-width:1080px;
	margin:0 auto;

	background: var(--main-wrapp-bg);
	border-radius:40px;
	border: clamp(6px, 0.5vw + 4.5px, 10px) solid var(--main-wrapp-line);

	padding:clamp(10px, 2px + 1.667vw, 20px) clamp(14px, 4px + 3.333vw, 40px) clamp(20px, 4px + 3.333vw, 40px) clamp(14px, 4px + 3.333vw, 40px); /* 白背景内の余白 */
	box-sizing:border-box;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.text-align-r {
	text-align: right;
}

.link_btn {
	text-align: center;
	margin-top: clamp(20px, 4px + 3.333vw, 40px);
}

.link_btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	width: clamp(200px, 50vw, 360px);
	height: 50px;

	margin: 0 auto;

	background: var(--link-btn-bg);
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	font-size: clamp(14px, 1vw + 13px, 22px);
	border-radius: 999px;

	transition: opacity .3s;
	box-sizing: border-box;
}

.link_btn a:hover {
	opacity: .8;
}

.link_btn a::after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;

	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}

.bth_link a {
	text-decoration: none;
	color: #fd8ca0;
}

.bth_link a:hover {
	opacity: .8;
}

.t-center {
	text-align: center;
}

.indent_1em {
	display:inline-block;
	margin-left:1em;
}

.mg_t40 {
	margin-top: 40px;
}

.mg_t10 {
	margin-top: 10px;
}

.mg_t100_v {
	margin-top: clamp(50px, 10px + 8.333vw, 100px);
}

.mg_b30 {
	margin-bottom: 30px;
}

.sp_non_768 {
	display: block;
}

.pc_non_768 {
	display: none;
}

@media screen and (max-width: 768px) {
	
.link_btn a::after {
		display: none;
}
	
.sp_non_768 {
	display: none;
}
	
.pc_non_768 {
	display: block;
}	
		
}

@media screen and (max-width: 480px) {
	
.wrapper {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

}




@media screen and (max-width: 768px) {

  /* 768px以下で適用したいCSS */
	
.header_flex_item2 {
        display: none;
    }
	
	
.footer_flex_warpp {
	display: flex;
	justify-content: center;
	text-align: center;
}
	
.footer_logo {
	margin: 0 auto 20px;
}
	
.footer_flex_item2 {
	display: none;
}

    /* ハンバーガー表示 */
    .hamburger {
        display: block;
    }

    /* ドロワー初期状態 */
    .header_flex_item2 {
        display: block;
        position: fixed;
        top: var(--header-height); /* ヘッダーの高さ */
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));

        background: #d9f1fc;

        opacity: 0;
        visibility: hidden;

        transition: opacity .3s ease;
        z-index: 1000;
    }

    /* 開いた状態 */
    .header_flex_item2.active {
        opacity: 1;
        visibility: visible;
    }

    /* メニュー縦並び */
    .header_flex_item2 ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
	    font-size: clamp(14px, 2px + 2.5vw, 20px);
    }

    .header_flex_item2 li {
        width: 100%;
        min-width: auto;
        padding: 15px;
        border-radius: 0;
        border-bottom: 1px solid #0e6eb8;
        background: none;
        text-align: center;
        box-sizing: border-box;
    }
	
    .header_flex_item2 li img {
        display: none;
    }	
	
    .group_company,
    .group_company_menu {
        display: block;
    }

	.group_company h3 {
		width: 100%;
		background: #0e6eb8;
		padding: 15px 0;
		text-align: center;
	    font-size: clamp(14px, 2px + 2.5vw, 20px);
	    color: #ffffff;
	}	
	

}	

/* ============================== レスポンシブ（480pxより広い場合） ============================== */
@media screen and (min-width: 481px) {

.pc_non {
	display: none;
}
.sp_non {
	display: block;
}
.tellink { /* PCでは電話リンクを動作させない場合 */
    pointer-events: none;
}

}