@charset "UTF-8";
/************************************
base
************************************/
html,body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1.6;
  letter-spacing: 0.05em;
	color: #131213;
	/* background: #F1F8FF; */
	word-wrap: break-word;
	overflow-wrap: break-word
}
* {
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all  0.3s;
	color:#131213;
}
p{
	line-height: 1.7;
}
img {
	vertical-align: bottom;
	width: 100%;
	height: auto;
}

.mobile {
	display: none;
}
.desktop {
	display: block;
}

.flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.inner{
	width: 85%;
	max-width: 1200px;
	margin: 0 auto;
}
/************************************
header
************************************/
header {
	position: fixed;
	top: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
	width: 95%;
	background: #fff;
	box-shadow: 2px 2px 16px 0px #A5B8C952;
	border-radius: 8px;
	padding: 20px;
	z-index: 100;
}

.logo_item{
	justify-content: flex-start;
}

.logo{
	width: 200px;
}

.logo:hover{
	opacity: 0.7;
}

.logo_item .site_catch{
	font-size: 12px;
	margin-left: 20px;
}

.nav ul.flex{
	align-items: center;
}

.nav li{
	margin-left: 25px;
}

.nav li:first-child{
	margin-left: 0;
}

.nav li a{
	font-size: 12px;
	font-weight: 800;
}

.nav li a:hover{
	color: #19BDB2;
}

.nav .contact_btn a{
	display: block;
	position: relative;
	width: 230px;
	/* height: 45px; */
	line-height: 45px;
	border: 2px solid #19BDB2;
	/* color: #19BDB2; */
	border-radius: 23px;
	text-align: center;
	font-size: 12px;
	color: #fff;
	background: #19BDB2;
}

.nav .contact_btn a:hover{
	/* background: #19BDB2;
	color: #fff; */
	background: #fff;
	color: #19BDB2;
}

.nav .contact_btn a svg{
	vertical-align: middle;
	margin: 0 5px 2px 0;
}

.nav .contact_btn.line_btn{
	margin-left: 15px;
}

.nav .contact_btn.line_btn a{
	color: #fff;
	background: #19BDB2;
}

.nav .contact_btn.line_btn a:hover{
	color: #19BDB2;
	background: #fff;
}

.nav .contact_btn.web_btn svg path{
	stroke: #fff;
}

.nav .contact_btn.web_btn:hover svg path{
	stroke: #19BDB2;
}

.nav .contact_btn.line_btn a:hover svg path{
	fill: #19BDB2;
}

.nav .contact_btn a .contact_btn_sub_text{
	display: block;
	width: 150px;
	height: 25px;
	line-height: 20px;
	font-size: 12px;
	border: 2px solid #fff;
	color: #fff;
	background: #19BDB2;
	border-radius: 20px;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.nav .contact_btn.line_btn a .contact_btn_sub_text{
	background: #fff;
	color: #19BDB2;
	border: 2px solid #19BDB2;
}

.nav .contact_item_group{
	margin-left: 25px;
}

.nav .contact_item_group p{
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
}
/************************************
main
************************************/
main {
	width: 100%;
}

#content{
	/* margin-top: 120px; */
}

#top .main_img_content{
	width: 100%;
	height: 100svh;
	height: 100dvh;
	margin-bottom: 80px;
	position: relative;
	background-image: url(../img/top/main_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.mission_text, .main_img {
  opacity: 0;
  transform: translateY(20px);
	transition: opacity 0.8s ease;
}
/* 表示時に適用するクラス */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatUpDown {
	0%   { transform: translateY(0); }
  50%  { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

.movement {
	animation-name: floatUpDown;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.main_img-01.movement {
  animation-duration: 5s;
  animation-delay: 0s;
}

.main_img-02.movement {
  animation-duration: 6s;
  animation-delay: 1s;
}

.main_img-03.movement {
  animation-duration: 4.5s;
  animation-delay: 0.5s;
}

.main_img-04.movement {
  animation-duration: 5.5s;
  animation-delay: 1.2s;
}

.main_img-05.movement {
  animation-duration: 6.2s;
  animation-delay: 0.8s;
}

.main_img-06.movement {
  animation-duration: 4.8s;
  animation-delay: 1.5s;
}

#top .main_img_content .mission_text{
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
	font-size: 48px;
	font-weight: 900;
	text-align: center;
	z-index: 10;
	width: 100%;
	letter-spacing: 4px;
}

#top .main_img_content .mission_text .small{
	font-size: 36px;
}

#top .main_img_content .main_img{
	position: absolute;
	width: auto;
	max-width: 100%;
}

#top .main_img_content .main_img.main_img-01{
	width: 8vw;
	max-width: 215px;
	top: 120px;
	left: 3%;
}

#top .main_img_content .main_img.main_img-02{
	width: 10vw;
	max-width: 220px;
	top: 220px;
	left: 14%;
}

#top .main_img_content .main_img.main_img-03{
	width: 15vw;
	max-width: 390px;
	bottom: 40px;
	left: 5%;
}

#top .main_img_content .main_img.main_img-04{
	width: 17vw;
	max-width: 425px;
	top: 160px;
	right: 5%;
}

#top .main_img_content .main_img.main_img-05{
	width: 10vw;
	max-width: 215px;
	top: 540px;
	right: 3%;
}

#top .main_img_content .main_img.main_img-06{
	width: 12vw;
	max-width: 280px;
	bottom: 20px;
	right: 16%;
}

.scroll_down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
	color: #A5B8C9;
	font-size: 12px;
}

.scroll_text {
  font-size: 12px;
  color: #A5B8C9;
  margin-bottom: 5px;
  display: block;
}

.scroll_arrow_wrap{
	display: block;
  animation: bounce_down 1.5s infinite;
  margin-top: 3px;
}

.scroll_arrow_wrap_second {
	display: block;
	animation-name: bounce_down;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-delay: 0.1s;
}

/* 矢印共通 */
.scroll_arrow {
	display: block;
  width: 10px;
  height: 10px;
  border-left: 1.5px solid #A5B8C9;
  border-bottom: 1.5px solid #A5B8C9;
  transform: rotate(-45deg);
	margin: 0 auto;
}

/* 上下にふわっと動くアニメーション */
@keyframes bounce_down {
  0%, 100% { transform: translateY(0); }
  50%     { transform: translateY(5px); }
}

#top .main_img_content .mission_text .eng{
	font-size: 18px;
	color: rgba(165, 184, 201, 1);
	display: block;
}

#top .headline{
	text-align: center;
	margin-bottom: 30px;
}

#top .headline h2{
	font-size: 30px;
	line-height: 2;
}

#top .headline h2 .eng{
	color: #19BDB2;
	font-size: 18px;
	font-weight: 600;
	display: block;
}

#top .main_copy .main_message .headline{
	text-align: left;
	position: relative;
}

#top .main_copy .main_message .headline .big{
	font-size: 38px;
	font-weight: 900;
}

#top .main_copy .main_message .headline .dot{
	background-image: radial-gradient(circle at center, #8ABDEC 25%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top left; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .4em; /* 縦方向の位置調整 */
	font-weight: 800;
}

#top .main_copy .main_message .headline .ul_wave{
	background-image: url(../img/top/main_message_title_ul.svg);
	background-size: auto;
	background-position: bottom;
	background-repeat: no-repeat;
	padding-bottom: 5px;
}

#top .main_copy .main_message .headline .ul_line{
	background-image: url(../img/top/main_message_ul.svg);
	background-size: auto;
	background-position: bottom;
	background-repeat: no-repeat;
}

#top .main_copy .main_message .section_text .dot{
	background-image: radial-gradient(circle at center, #8ABDEC 25%, transparent 20%);
	background-position: top left;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .4em;
	/* font-size: 18px; */
	/* font-weight: 800; */
}

#top .main_copy .main_message .section_text .bold{
	/* font-size: 18px; */
	font-weight: 800;
}

#top .main_copy .main_message .section_text .ul_wave{
	background-image: url(../img/top/main_message_text_ul.svg);
	background-size: 100%;
	background-position: bottom;
	background-repeat: no-repeat;
	padding-bottom: 5px;
	/* text-decoration: underline wavy #FF8358;
  text-underline-offset: 0.2em; */
}

#top .main_copy .main_message .section_text .ul_wave.ul_wave_b{
	background-image: url(../img/top/main_message_title_ul.svg);
}

#top .main_copy .section_text .underline{
	border-bottom: 3px solid rgba(25, 189, 178, 0.4);
}

#top .main_copy .section_text .underline_blue{
	/* border-bottom: 3px solid #8ABDEC; */
}

#top .main_copy .section_text p{
	font-size: 16px;
	font-weight: 500;
	line-height: 2.6;
}

#top .headline_sub{
	text-align: center;
	margin-bottom: 40px;
}

#top .headline_sub h2{
	font-size: 32px;
}

#top .headline_sub h2 .big{
	font-weight: 900;
}

#top .headline_sub h2 .small{
	font-size: 28px;
}

#top .reason{
	margin-top: 120px;
}

#top .features_items{
	align-items: stretch;
}

#top .features_items .features_item{
	width: 31%;
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 6px 6px 28px 0px rgba(165, 184, 201, 0.2);
}

#top .features_items .features_item .num{
	color: #fff;
	background: #19BDB2;
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 4px;
	font-weight: 800;
	font-size: 16px;
	text-align: center;
}

#top .features_items .features_item img{
	width: 160px;
  height: 160px;
  margin: 0 auto;
  display: block;
}

#top .features_items .features_item h3{
	font-size: 24px;
	margin: 20px 0 10px;
	text-align: center;
}

.btn_more{
	width: 250px;
	margin: 40px auto 0;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #C4D1DC;
  padding: 10px 10px;
  align-items: center;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn_more:hover{
  color: #19BDB2;
  border-color: #19BDB2;
	font-weight: bold;
}

.arrow{
  width: 24px;
  height: 24px;
  background: #19BDB2;
  background-image: url(../img/icon/icon_arrow_w.svg);
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;
  transition: transform 0.2s ease-in-out;
}

.btn_more:hover .arrow{
  transform: translateX(5px);
}

.link_banner{
	margin-top: 160px;
}

.link_banner .link_banner_item{
	color: #fff;
	width: 32%;
	height: 185px;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	border-radius: 8px;
}

.link_banner .link_banner_item:hover{
	transform: scale(1.025);
}

.link_banner .link_banner_item:nth-of-type(1){
	background-image: url(../img/top/top_banner-01.png);
}

.link_banner .link_banner_item:nth-of-type(2){
	background-image: url(../img/top/top_banner-02.png);
}

.link_banner .link_banner_item:nth-of-type(3){
	background-image: url(../img/top/top_banner-03.png);
}

.link_banner .link_banner_item h2{
	font-size: 20px;
	position: absolute;
	left: 30px;
	bottom: 40px;
}

.link_banner .link_banner_item h2 .eng{
	font-size: 12px;
	font-weight: 600;
	display: block;
}

#top .news,
#top .column{
	width: 100%;
	margin-top: 120px;
}

#top .activities{
	margin: 80px 0 120px;
}

#top .column .section_head h2,
#top .news .section_head h2,
#top .instagram .section_head h2,
#single .articles .section_head h2{
	font-size: 32px;
}

#top .column .section_head .eng,
#top .news .section_head .eng,
#top .instagram .section_head .eng,
#single .articles .section_head .eng{
	font-size: 18px;
	color: #19BDB2;
	display: block;
}

#top .news .section_head{
	align-items: center;
}

.news_item{
	position: relative;
}

.news_item a{
	display: block;
	border-top: 1px solid rgba(165, 184, 201, 0.4);
	padding: 20px 0;
}

.news_item a:hover{
	color: #19BDB2;
}

.news_item:last-child a{
	border-bottom: 1px solid rgba(165, 184, 201, 0.4);
}

.news_item .news_date{
	font-size: 12px;
}

.news_item h3{
	width: 90%;
	margin-top: 5px;
}

.news_item .arrow{
	position: absolute;
	top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

#top .column .section_head,
#top .activities .section_head{
	text-align: center;
}

#top .column .section_head .intro_txt,
#top .activities .section_head .intro_txt{
	font-size: 16px;
	margin: 20px 0 40px;
	font-weight: bold;
}

#top .activities_item{
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 20px;
	margin: 0 10px;
	box-shadow: 0px 3px 9px 1px rgba(165, 184, 201, 0.54);
}

#top .activities_item:hover{
	border: 1px solid #19BDB2;
}

#top .activities_item a:hover h3{
	color: #19BDB2;
}

#top .activities_item a .activities_img img{
	transition: all 0.25s;
}

#top .activities_item a:hover .activities_img img{
	transform: scale(1.03);
}

#top .activities_content{
	visibility: hidden;
	/* padding-right: 40px; */
}

#top .slick-initialized.activities_content{
	visibility: visible;
}

.activities_content .slick-track{
	display: flex !important;
}

.activities_content .slick-slide{
	height: auto !important;
}

/* .activities_content .slick-list {
  padding-right: 10% !important;
} */

.activities_content button{
	background: none;
	border: none;
}

.slick-arrow{
	position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.slick-next{
	right: -45px;
}

.slick-prev{
	left: 0;
	display: none !important;
}

#top .activities_item h3{
	font-size: 16px;
	margin-bottom: 5px;
}

#top .activities_item .activities_img{
	margin-bottom: 15px;
}

#top .activities_item .activities_img img{
	height: 150px;
	object-fit: cover;
}

/* #top .activities_item time{
	font-size: 12px;
} */

.intro_txt_content{
	margin: 5px 0;
	font-size: 14px;
}

.column_items{
	flex-wrap: wrap;
}

.column_item{
	width: 49%;
	margin-bottom: 25px;
}

.column_item a{
	/* border: 1px solid #C4D1DC; */
	border-radius: 8px;
	padding: 20px;
	display: block;
	box-shadow: 6px 5px 20px 0px rgba(165, 184, 201, 0.24);
}

.column_item a:hover{
	box-shadow: 6px 5px 20px 0px rgba(165, 184, 201, 0.24);
}

.column_item a img{
	transition: all 0.25s;
}

.column_item a:hover img{
	transform:scale(1.03);
}

.column_item a:hover h3{
	color: #19BDB2;
}

.column_category{
	font-size: 12px;
  padding: 3px 6px;
  border-radius: 4px;
  background: #19BDB2;
	color: #fff;
	font-weight: 500;
}

.column_item .column_img{
	width: 100%;
	margin-bottom: 15px;
	/* height: 500px;
  overflow: hidden;
	border-radius: 6px; */
}

.column_item .column_img img{
	/* width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
	transition: transform 0.3s ease-in-out; */
}

.column_item:hover .column_img img {
    /* transform: scale(1.15); */
}

.column_item .column_text{
	width: 100%;
}

.column_item .column_text h3{
	font-size: 18px;
	margin-top: 10px;
}

.column_item .column_text p{
	font-size: 14px;
	margin-bottom: 10px;
}

.column_item .column_text time{
	font-size: 10px;
}

.column_item .arrow{
	position: absolute;
	right: 15px;
	bottom: 15px;
}
/************************************
下層ページ共通
************************************/
.bg{
	width: 100%;
	height: 70vh;
	background: #F5FDF9;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#page,
#single{
	padding-top: 160px;
	width: 85%;
	margin: 0 auto;
}

#page .headline{
	text-align: center;
	margin-bottom: 35px;
}

#page .headline h1,
#page .headline h2{
	font-size: 40px;
}

#page .headline h1 .eng,
#page .headline h2 .eng{
	color: #19BDB2;
	font-size: 18px;
	font-weight: 600;
	display: block;
}
/************************************
service 提供サービス
************************************/
#service .feature{
	margin-top: 80px;
}

#service .headline_sub{
	text-align: center;
	margin-bottom: 40px;
}

#service .headline_sub h2{
	font-size: 32px;
}

#service .headline_sub h2 .big{
	font-weight: 900;
}

#service .headline_sub h2 .small{
	font-size: 28px;
}

#service .features_items{
	align-items: stretch;
}

#service .features_items .features_item{
	width: 31%;
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 6px 6px 28px 0px rgba(165, 184, 201, 0.2);
}

#service .features_items .features_item .num{
	color: #fff;
	background: #19BDB2;
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 4px;
	font-weight: 800;
	font-size: 16px;
	text-align: center;
}

#service .features_items .features_item img{
	width: 110px;
	height: 110px;
	margin: 0 auto;
	display: block;
}

#service .features_items .features_item h3{
	font-size: 24px;
	margin: 20px 0 15px;
	text-align: center;
}

#service .about_text-01{
	margin: 20px 0 60px;
}

#service .about_text-01 p{
	line-height: 2.2;
}

#service .hl_group{
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 60px 0;
}

#service .hl_group .hl_group_item{
	justify-content: center;
}

#service .hl_group .hl_group_item img{
	max-width: 300px;
}

#service .hl_group .hl_group_item p{
	border-left: 1px solid #C4D1DC;
	padding-left: 30px;
	margin-left: 30px;
}

#service .service{
	margin-top: 120px;
}

#service .intro_text{
	margin-bottom: 40px;
}

#service .service_items{
	align-items: stretch;
}

#service .service_item{
	width: 48%;
	border: 1px solid #C4D1DC;
	border-radius: 12px;
	box-shadow: 6px 6px 28px 0px rgba(165, 184, 201, 0.2);
}

#service .service_item img{
	border-radius: 6px 6px 0 0;
}

#service .service_item .service_item_content{
	position: relative;
	padding: 50px 30px 40px;
}

#service .service_item .service_icon{
	position: absolute;
	top: -30px;
	width: 58px;
	height: 58px;
	box-shadow: 4px 4px 16px 0px rgba(165, 184, 201, 0.38);
	border-radius: 8px;
}

#service .service_item h3{
	font-size: 24px;
	margin-bottom: 10px;
}

#service .service_item h4{
	margin: 15px 0 5px;
	font-size: 20px;
	border-top: 1px solid #C4D1DC;
	padding-top: 15px;
}

#service .service_item .point_text{
	height: 90px;
}

#service .service_item p span{
	font-size: 10px;
}

.line_register_btn{
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	color: #fff;
	background: #19BDB2;
	font-weight: 700;
	border-radius: 4px;
	text-align: center;
	margin: 20px 0 0;
	border: 1px solid #19BDB2;
}

.line_register_btn svg{
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-right: 5px;
}

.line_register_btn:hover{
	background: #fff;
	color: #19BDB2;
}

.line_register_btn:hover svg path{
	fill: #19BDB2;
}
/************************************
store_information 店舗案内
************************************/
#store_information .access{
	margin-top: 80px;
}

#store_information .company_access .access_map{
	width: 43%;
}

#store_information .company_access .access_map iframe{
	width: 100%;
	height: 390px;
	border-radius: 8px;
}

#store_information .company_access .access_text{
	width: 55%;
}

#store_information .company_access h2{
	font-size: 24px;
	margin-bottom: 25px;
}

#store_information .company_access .access_text dl{
	font-size: 16px;
}

#store_information .company_access .access_text dl dt{
	font-weight: 700;
	margin-bottom: 5px;
}

#store_information .company_access .access_text dl dd{
	margin-bottom: 15px;
}

#store_information .company_access .access_text dl dd a{
	color: #19BDB2;
	text-decoration: underline;
}

#store_information .company_access .access_text dl dd a:hover{
	text-decoration: none;
}

#store_information .company_access .access_text dl dd .reserve_btn{
	margin-top: 10px;
	display: inline-block;
}

#store_information .company_access .company_access_img{
	margin-top: 40px;
}

#store_information .company_access .company_access_img img{
	width: 31%;
}
/************************************
company 会社概要
************************************/
#company .about_text-01{
	margin: 40px 0;
}

#company .about_text-01 p{
	line-height: 2.2;
}

#company .hl_group{
	/* border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 60px 0; */
}

#company .hl_group .hl_group_item{
	justify-content: center;
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 60px;
}

#company .hl_group .hl_group_item:hover{
	opacity: 0.7;
	border: 1px solid #19BDB2;
}

#company .hl_group .hl_group_item img{
	max-width: 300px;
}

#company .hl_group .hl_group_item p{
	border-left: 1px solid #C4D1DC;
	padding-left: 30px;
	margin-left: 30px;
}

#company .about_pmv{
	margin-top: 80px;
}

#company .about_pmv .about_pmv_title{
	font-size: 24px;
	text-align: center;
	margin-bottom: 40px;
}

#company .about_pmv .about_pmv_items{
	align-items: stretch;
}

#company .about_pmv .about_pmv_item{
	width: 31%;
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	padding: 40px;
}

#company .about_pmv .about_pmv_item h3{
	font-size: 14px;
	text-align: center;
}

#company .about_pmv .about_pmv_item h3 .eng{
	font-size: 10px;
	display: block;
	color: #19BDB2;
}

#company .about_pmv .about_pmv_item .about_pmv_item_title{
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	margin: 20px 0;
}

#company .company{
	margin-top: 120px;
}

#company .company_info{
	margin: 0 0 80px;
	align-items: stretch;
}

#company .company_info dl{
	width: 47%;
	display: flex;
  flex-direction: column;
}

#company .company_info dl div{
	border-top: 1px solid #C4D1DC;
	display: flex;
 flex-direction: column;
 justify-content: center;
 height: 130px;
}

#company .company_info dl div:last-child{
	border-bottom: 1px solid #C4D1DC;
}

#company .company_info dl dt{
	font-weight: 700;
	margin-bottom: 5px;
}

#company .company_info dl dd a{
	color: #19BDB2;
	text-decoration: underline;
}

#company .company_info dl dd.affiliation{
	font-size: 12px;
}

#company .company_info dl dd.affiliation img{
	width: 35%;
}

#company .company_access .access_map{
	width: 47%;
}

#company .company_access .access_map iframe{
	width: 100%;
	height: 340px;
	border-radius: 8px;
}

#company .company_access .access_text{
	width: 47%;
}

#company .company h2{
	font-size: 24px;
	margin-bottom: 30px;
}

#company .company_access .access_text dl dt{
	font-weight: 700;
	margin-bottom: 5px;
}

#company .company_access .access_text dl dd a{
	color: #19BDB2;
	text-decoration: underline;
}

img.external{
	width: 15px;
	height: 15px;
	vertical-align: middle;
}

#company .company_access .company_access_img{
	margin-top: 40px;
}

#company .company_access .company_access_img img{
	width: 31%;
}
/************************************
column お役立ち情報
************************************/
#column .headline .intro_txt,
#activities .headline .intro_txt{
	font-size: 16px;
	margin: 20px 0 40px;
	font-weight: bold;
}

#column .hot_topics .hot_topics_bg{
	background-image: url(../img/column/column_bg.png);
  background-size: 100% 70%;
	background-position: left top;
  background-repeat: no-repeat;
}

#column .hot_topics .hot_topics_inner{
	width: 90%;
	margin: 0 auto;
	padding-top: 80px;
}

#column .hot_topics .hot_topics_inner .section_head h2,
#column .hot_topics .hot_topics_inner .section_head .eng{
	color: #fff;
}

#column .hot_topics .column_item{
	width: 32%;
}

#column .hot_topics .column_item .column_img{
	height: 350px;
}

#column .hot_topics .column_item .column_text{
	top: 110px;
}

#column .hot_topics .column_text .ranking{
	display: block;
	text-align: center;
	width: 90px;
	background-color: rgba(241, 248, 255, 0.4);
	font-size: 10px;
	font-weight: 600;
	border-radius: 4px;
	padding: 3px 0;
	margin-bottom: 10px;
}

#column .column_category_list ul{
	justify-content: center;
}

#column .column_category_list li{
	margin-left: 15px;
}

#column .column_category_list li:first-child{
	margin-left: 0;
}

#column .column_category_list li a{
	display: block;
	width: 175px;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	background: #fff;
	border: 1px solid #C4D1DC;
	border-radius: 6px;
	text-align: center;
	font-weight: 500;
}

#column .column_category_list li.current a{
	background: #19BDB2;
	color: #fff;
}

#column .column_category_list li a:hover{
	background: #19BDB2;
	color: #fff;
}

#column .articles{
	margin-top: 40px;
}

/* #column .articles .articles_inner{
	width: 90%;
	margin: 0 auto;
}

.articles .column_items{
	flex-wrap: wrap;
}

.articles .column_item{
	width: 49%;
	margin-top: 20px;
}

.articles .column_item a{
	border: 1px solid #A5B8C9;
	border-radius: 8px;
	align-items: center;
	padding: 8px;
}

.articles .column_item .column_category{
	top: 8px;
	left: 8px;
}

.articles .column_item .column_img{
	width: 20%;
	min-width: 180px;
	height: 180px;
	margin-right: 10px;
}

.articles .column_item .column_text{
	position: static;
	width: 70%;
	max-width: 70%;
	color: #131213;
}

.articles .column_item .column_text h3{
	font-size: 16px;
}

.articles .column_item:nth-of-type(1),
.articles .column_item:nth-of-type(2){
	margin-top: 0;
} */


.pagination{
	margin-top: 80px;
	text-align: center;
}

.pagination .wp-pagenavi span,
.pagination .wp-pagenavi a{
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	border: 1px solid #A5B8C9;
	border-radius: 8px;
	margin: 0 10px;
}

.pagination .wp-pagenavi .current{
	background: #19BDB2;
	border: 1px solid #19BDB2;
	color: #fff;
	font-weight: 700;
}
/************************************
コラム詳細
************************************/
.single_column{
	width: 85%;
	margin: 0 auto;
}

.single_column .single_column_cat_time .column_category{

}

.single_column .single_column_cat_time time{
	margin-left: 10px;
}

.single_column .single_column_ttl{
	margin: 10px 0 20px;
}

.single_column .single_column_ttl h1{
	font-size: 32px;
}

.single_column .single_column_main_img{

}

.single_column .single_column_main_img img{

}

#ez-toc-container{
	width: 100% !important;
	background: #fff !important;
	margin-top: 40px;
	border: 1px solid #C4D1DC !important;
	border-radius: 8px !important;
	padding: 40px !important;
}

.ez-toc-title-container{
	margin-bottom: 20px;
}

/* タイトル */
#ez-toc-container .ez-toc-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 16px;
  display: block;
}

/* 各リスト（階層1） */
#ez-toc-container ul.ez-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
	position: relative;
}

/* 第一階層（h2） */
#ez-toc-container ul.ez-toc-list > li {
  margin-bottom: 15px;
  font-weight: bold;
}

#ez-toc-container ul.ez-toc-list > li:last-child{
	margin-bottom: 0;
}

/* 第二階層（h3） */
#ez-toc-container ul.ez-toc-list li ul li {
  font-weight: normal;
  margin-top: 4px;
  position: relative;
}

/* 第1階層 */
#ez-toc-container li.ez-toc-heading-level-2 {
  position: relative;
  padding-left: 24px;
  font-weight: bold;
  margin-bottom: 16px;
	font-size: 18px;
}

/* 第1階層の先頭アイコン */
#ez-toc-container li.ez-toc-heading-level-2::before {
  content: "";
	background-image: url(../img/icon/icon-arrow_right.svg);
	background-size: cover;
	background-repeat: no-repeat;
	width: 18px;
	height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}

#ez-toc-container li:not(.ez-toc-heading-level-2){
	font-size: 16px;
}

#ez-toc-container li:not(.ez-toc-heading-level-2) > a::before {
  content: '・' !important;
}

#ez-toc-container ul ul,
.ez-toc div.ez-toc-widget-container ul ul{
	margin-left: 1em !important;
}

#ez-toc-container a{
	border-bottom: none;
}

#ez-toc-container a:visited{
	color: inherit !important;
}

/* ホバー効果 */
#ez-toc-container a:hover {
  color: #19BDB2 !important;
}


.single_column .single_column_text{
	margin-top: 40px;
}

.single_column .single_column_text h2{
	font-size: 28px;
	margin-top: 40px;
	margin-bottom: 20px;
	position: relative;
	background: #ECF1F6;
	border-left: 12px solid #19BDB2;
	padding: 20px;
	border-radius: 4px;
}

.single_column .single_column_text h2:first-child{
	margin-top: 0;
}

.single_column .single_column_text h3{
	position: relative;
	font-size: 20px;
	margin: 30px 0 25px;
	border-left: 6px solid #19BDB2;
	padding-left: 10px;
}

.single_column .single_column_text h3::after{
	content: '';
	width: 105%;
	height: 1px;
	background: #C4D1DC;
	position: absolute;
	left: -10px;
	bottom: -10px;
}

.single_column .single_column_text h4{
	font-size: 18px;
	margin: 10px 0 5px;
}

.single_column .single_column_text .blue_line{
	font-weight: 700;
	background: linear-gradient(transparent 70%, rgba(8, 186, 175, 0.24) 70%);
}

.single_column .single_column_text a{
	color: #3772CE;
	text-decoration-line: underline;
	text-decoration-style: dotted;
	text-decoration-skip-ink: none;
	text-decoration-color: #3772CE;
	text-decoration-thickness: 7%;
	text-underline-offset: 23%;
	text-underline-position: from-font;
}

.single_column .single_column_text a:hover{
	text-decoration: none;
}

.single_column .single_column_text p{
	line-height: 2.2;
	font-size: 16px;
}

.single_column .single_column_text ul{
	list-style: disc;
	padding-left: 20px;
	font-size: 16px;
}

.single_column .single_column_text ul li{
	margin: 10px 0;
}

.single_column .single_column_text img{
	width: 80%;
	height: auto;
	max-width: 100%;
	margin: 10px auto;
	display: block;
}

/* テーブル共通スタイル */
.single_column .single_column_text table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.6;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
  border: 1px solid #ddd;
  overflow-x: auto;
}

/* セル内の余白とボーダー */
.single_column .single_column_text table th,
.single_column .single_column_text table td {
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: middle;
}

/* ヘッダー行の背景 */
.single_column .single_column_text table th {
  background-color: #f3f5f7;
  font-weight: bold;
}

/* 偶数行に薄い背景色 */
.single_column .single_column_text table tr:nth-child(even) {
  background-color: #fafafa;
}

/* スマホ対策（テーブルがはみ出す時） */
.single_column .single_column_text {
  /* overflow-x: auto;
  -webkit-overflow-scrolling: touch; */
}

.single_column .custom_style-01_head{
	color: #fff;
	background: #19BDB2;
	border-radius: 8px 8px 0 0;
	padding: 20px;
	font-size: 18px;
	font-weight: 700;
}

.single_column .custom_style-01_head h4{
	margin: 0;
}

.single_column .custom_style-01_content{
	background: #E8F6F5;
	border-radius: 0 0 8px 8px;
	padding: 20px;
	line-height: 2;
	font-size: 16px;
}

.single_column .custom_text_orange{
	color: #D45225;
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-style: dotted;
	text-decoration-skip-ink: auto;
	text-decoration-color: #FAC8B7;
	text-decoration-thickness: 18.5%;
	text-underline-offset: 25%;
	text-underline-position: from-font;
}

.single_column .custom_text_blue{
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-color: #A3E5E0;
	text-decoration-thickness: 24%;
	text-underline-offset: 13.5%;
	text-underline-position: from-font;
}

.single_column .custom_text_blue-02{
	color: #1986BD;
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-style: dotted;
	text-decoration-skip-ink: auto;
	text-decoration-color: #AED8EC;
	text-decoration-thickness: 18.5%;
	text-underline-offset: 25%;
	text-underline-position: from-font;
}

.single_column .single_column_overview{
	border: 1px solid #A3E5E0;
	padding: 40px;
	margin-top: 40px;
	border-radius: 4px;
	background: #F5FDF9;
}

.single_column .single_column_overview p{
	line-height: 2;
}

.single_column .single_column_overview .column_overview_ttl{
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 10px;
}

.single_column .single_column_overview .column_overview_ttl img{
	width: 25px;
	vertical-align: middle;
	margin: 0 5px 2px 0;
}

.single_column .single_column_overview ul{
	list-style: disc;
	padding-left: 20px
}

.single_column .single_column_overview ul li{
	margin: 10px 0;
}

#single .articles .section_head{
	margin-bottom: 40px;
}
/************************************
news お知らせ
************************************/
.news_item{
	width: 80%;
	margin: 0 auto;
}

.news_item h2{
	width: 90%;
}

.news .wp-pagenavi{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
}

.news .wp-pagenavi span,
.news .wp-pagenavi a{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	display: block;
	margin: 0 10px;
}

.news .wp-pagenavi .current{
	background: #19BDB2;
	color: #fff;
}
/************************************
news お知らせ詳細
************************************/
.single_news_item{
	width: 70%;
	margin: 0 auto;
	border-bottom: 1px solid rgba(165, 184, 201, 0.4);
	padding-bottom: 40px;
}

.single_news_item h1{
	font-size: 24px;
	border-bottom: 1px solid rgba(165, 184, 201, 0.4);
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.single_news_item .single_news_text{
	width: 85%;
	margin: 0 auto;
}

.single_news_item .single_news_text h2{
	font-size: 20px;
	margin: 15px 0 5px;
}

.single_news_item .single_news_text h3{
	font-size: 18px;
	margin: 10px 0 5px;
}

.single_news_item .single_news_text img{
	width: 65%;
	max-width: 100%;
	margin: 10px 0 20px;
}

.single_news_item .single_news_text p{
	font-size: 16px;
	line-height: 2.2;
}

.single_news_item .single_news_text a{
	color: #19BDB2;
	text-decoration: underline;
	font-weight: 700;
	display: inline-block;
	margin: 3px 0;
}

.single_news_item .single_news_text img.activities_03{
	width: 100%;
}

.single_news_item .btn_back{
	font-size: 12px;
	display: block;
	width: 145px;
	margin: 50px auto 0;
	text-align: center;
	border: 1px solid #A5B8C9;
	border-radius: 6px;
	padding: 10px 0;
}
/************************************
CTA
************************************/
.cta{
	background-image: url(../img/column/column_cta_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 80px;
	border-radius: 8px;
	margin: 120px 0;
}

.cta .section_head{
	text-align: center;
	margin-bottom: 20px;
}

.cta .section_head h2{
	font-size: 28px;
	margin-bottom: 30px;
	font-weight: normal;
}

.cta .section_head h2 span{
	font-size: 32px;
	font-weight: 900;
}

.cta .section_head .intro_txt{
	font-size: 18px;
	font-weight: bold;
}

.cta .section_head .intro_txt span{
	font-size: 24px;
}

.cta .cta_items{
	justify-content: center;
	align-items: stretch;
}

.cta .cta_item{
}

.cta .cta_item a{
	display: block;
	border-radius: 25px;
}

.cta .cta_item a:hover{
	transform: translateY(-4px);
}

.cta .cta_item a img{
	display: block;
	width: 40px;
	margin: 0 auto;
}

.cta .cta_item .nav_text{
	display: block;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
}

.cta .cta_item:last-child .nav_text{
	font-size: 28px;
}

.cta .cta_item .nav_text .nav_sub_text{
	font-size: 12px;
	font-weight: normal;
}


.cta_item a{
	display: block;
	position: relative;
	width: 240px;
	/* height: 45px; */
	line-height: 50px;
	border: 2px solid #19BDB2;
	/* color: #19BDB2; */
	border-radius: 23px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	background: #19BDB2;
	color: #fff;
}

/* .cta_item.web_btn a{
	background: #fff;
} */

/* .cta_item a:hover{
	background: #19BDB2;
	color: #fff;
} */

.cta_item a:hover{
	color: #19BDB2;
	background: #fff;
}

.cta_item a svg{
	vertical-align: middle;
	margin-right: 5px;
}

.cta_item.web_btn a svg path{
	stroke: #fff;
}

.cta_item.line_btn{
	margin-left: 15px;
}

/* .cta_item.line_btn a{
	color: #fff;
	background: #19BDB2;
} */

/* .cta_item.line_btn a:hover{
	color: #19BDB2;
	background: #fff;
} */

.cta_item.web_btn:hover svg path{
	stroke: #19BDB2;
}

.cta_item.line_btn a:hover svg path{
	fill: #19BDB2;
}

.cta_item a .contact_btn_sub_text{
	display: block;
	width: 150px;
	height: 25px;
	line-height: 20px;
	font-size: 12px;
	border: 2px solid #fff;
	color: #fff;
	background: #19BDB2;
	border-radius: 20px;
	text-align: center;
	position: absolute;
	top: -15px;
	left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.cta_item a .contact_btn_sub_text{
	background: #fff;
	color: #19BDB2;
	border: 2px solid #19BDB2;
}
/************************************
property 物件
************************************/



/************************************
property 物件詳細
************************************/



/************************************
フォーム関連
************************************/



/************************************
contact お問い合わせ
************************************/
#contact{
	padding-bottom: 80px;
}

#contact .bg{
	height: 60vh;
}

#contact .bg_form{
	height: 90vh;
}

#contact .intro_text{
	text-align: center;
	margin-bottom: 20px;
}

#contact .intro_text p{
	font-size: 16px;
	line-height: 1.8;
}

#contact .intro_text p span{
	font-size: 16px;
}

#contact .intro_text a{
	color: #19BDB2;
	text-decoration: underline;
}

#contact .intro_text .caution_text{
	font-size: 12px;
}

#contact .intro_text .intro_text_sub{
	font-size: 12px;
}

#contact .contact_tab_items{
	align-items: stretch;
}

#contact .contact_tab_item{
	width: 31%;
	position: relative;
}

#contact .contact_tab_item a{
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	box-shadow: 6px 6px 28px 0px rgba(165, 184, 201, 0.2);
	padding: 40px;
	border-radius: 8px;
}

#contact .contact_tab_item a img{
	width: 40px;
	height: 40px;
}

#contact .contact_tab_item a h2{
	text-align: left;
	font-size: 18px;
	margin: 30px 0 10px;
}

#contact .contact_tab_item a .arrow{
	position: absolute;
	right: 15px;
	bottom: 15px;
}

#contact .contact_tab_item a:hover h2{
	color: #19BDB2;
}

#contact .contact_tab_item a:hover .arrow{
	transform: translateX(5px);
}

#contact h2{
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
}

#contact .contact_flow_items{
	align-items: stretch;
	margin-top: 40px;
}

#contact .contact_flow_item{
	background: #fff;
	border: 1px solid #C4D1DC;
	border-radius: 8px;
	width: 30%;
	padding: 30px;
	box-shadow: 6px 6px 28px 0px rgba(165, 184, 201, 0.2);
}

#contact .contact_flow_item img{
	width: 120px;
	height: 120px;
	margin: 0 auto;
	display: block;
}

#contact .contact_flow_item h3{
	font-size: 16px;
	margin: 30px 0 10px;
	text-align: center;
}

#contact .contact_flow_item p a{
	/* color: #19BDB2;
	text-decoration: underline; */
	margin-top: 10px;
}

#contact .contact_flow_items .arrow_b{
	align-self: center;
	font-weight: 700;
	font-size: 24px;
}

#contact .caution_text{
	text-align: center;
	margin-top: 20px;
}

#contact .caution_text a{
	color: #19BDB2;
	text-decoration: underline;
	font-weight: 700;
}

#contact .google_form{
	margin-top: 30px;
}

#contact .google_form p{
	text-align: center;
	margin-bottom: 25px;
}

#contact .google_form iframe{
	width: 100%;
	display: block;
}

#contact .line_register_btn{
	color: #fff;
	text-decoration: none;
	width: 200px;
	margin: 0 auto;
}

#contact .line_register_btn:hover{
	color: #19BDB2;
}

#contact .caution_text_item{
	text-align: center;
	margin-top: 40px;
}
/************************************
プライバシーポリシー
************************************/
#privacypolicy section{
	background: #fff;
	border-radius: 8px;
}

#privacypolicy h2{
	margin: 30px 0 5px;
}

#privacypolicy ul{
	list-style: disc;
	padding-left: 20px;
}

#privacypolicy li{
	margin-top: 5px;
}
/************************************
404
************************************/
#not_found{
	padding-top: 180px;
}

#not_found h1{
	font-size: 16px;
	text-align: center;
}
/************************************
footer
************************************/
footer{
	width: 100%;
	font-size: 12px;
	border-top: 1px solid rgba(196, 209, 220, 1);
	padding: 20px 0;
	margin-top: 80px;
}

.footer_item{
	width: 85%;
	margin: 0 auto;
}

.footer_item img:hover{
	opacity: 0.7;
}

.footer_item_nav a{
	margin-right: 15px;
}

.footer_item_nav a:nth-of-type(4){
	margin-right: 0;
}

.footer_item_nav a:hover{
	font-weight: 500;
}

.copyright{
	text-align: center;
	margin-left: 20px;
}
/************************************
画面幅 1400px以下
************************************/
@media screen and (max-width:1400px){

	/* #top .main_img_content .mission_text{
		font-size: 40px;
	} */

	#top .main_img_content .main_img.main_img-01{
		width: 10vw;
		top: 120px;
		left: 3%;
	}

	#top .main_img_content .main_img.main_img-02{
		width: 12vw;
		top: 230px;
		left: 14%;
	}

	#top .main_img_content .main_img.main_img-03{
		width: 19vw;
		bottom: 40px;
		left: 4%;
	}

	#top .main_img_content .main_img.main_img-04{
		width: 19vw;
		top: 160px;
		right: 5%;
	}

	#top .main_img_content .main_img.main_img-05{
		width: 12vw;
		top: 470px;
		right: 3%;
	}

	#top .main_img_content .main_img.main_img-06{
		width: 15vw;
		bottom: 20px;
		right: 16%;
	}

	#top .main_copy .main_message .section_text .bold{
		font-size: 16px;
	}





}
/************************************
画面幅 1300px以下
************************************/
@media screen and (max-width:1300px){

	.logo{
		width: 150px;
	}

	.logo_item .site_catch{
		font-size: 10px;
		margin-left: 10px;
	}

	.nav li{
		margin-left: 15px;
	}

	/* .nav li a{
		font-size: 12px;
	} */

	.nav .contact_btn a{
		width: 220px;
		/* height: 40px; */
		line-height: 40px;
	}

	#top .main_copy .main_message{
		display: block;
		text-align: center;
	}

	#top .main_copy .main_message .headline{
		text-align: center;
	}

	#service .service_item .point_text{
		height: 120px;
	}





}
/************************************
画面幅 1200px以下
************************************/
@media screen and (max-width:1200px){

	header{
		padding: 20px 15px;
	}

	.nav li a{
		font-size: 12px;
	}

	.nav .contact_btn a{
		width: 190px;
		/* font-size: 10px; */
	}

	.nav .contact_btn.line_btn{
		margin-left: 5px;
	}

	.nav .contact_item_group{
		margin-left: 10px;
	}

	.nav .contact_item_group p{
		font-size: 10px;
	}

	#top .main_copy .main_message{
		display: block;
		text-align: center;
	}

	#top .main_copy .main_message .headline{
		text-align: center;
	}

	#top .features_items .features_item h3{
		font-size: 18px;
	}

	#service .features_items .features_item h3{
		font-size: 18px;
	}

	#service .service_item .point_text{
		height: 140px;
	}



}
/************************************
画面幅 1024px以下
************************************/
@media screen and (max-width:1024px){

	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}

	header{
		width: 98%;
		z-index: 9997;
		padding: 20px;
	}

	.logo{
		width: 200px;
	}

	.logo_item .site_catch{
		font-size: 10px;
	}

	.nav_trigger {
		position: fixed;
		width: 40px;
		height: 40px;
		top: 20px;
		right: 15px;
		z-index: 9999;
		cursor: pointer;
	}
	.nav_trigger span{
		position: absolute;
		right: 10px;
		width: 20px;
		height: 2px;
		border-radius: 1px;
		transition: all .4s;
		background: #000;
	}
	.nav_trigger span:nth-of-type(1) {
		top: 12px;
	}
	.nav_trigger span:nth-of-type(2) {
		top: 18px;
	}
	.nav_trigger span:nth-of-type(3) {
		top: 24px;
	}
	.nav_trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(6px) rotate(-45deg);
		transform: translateY(6px) rotate(-45deg);
	}
	.nav_trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.nav_trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-6px) rotate(45deg);
		transform: translateY(-6px) rotate(45deg);
	}

	nav.nav {
		width: 100%;
		padding: 40px 0;
		position: absolute;
		top: 70px;
		right: -110%;
		transition: all .4s;
		background-color: #fff;
		z-index: 9998;
		border-radius: 0 0 8px 8px;
	}

	nav.nav.open {
		right: 0;
	}

	nav.nav ul{
		text-align: center;
		display: block;
	}

	.nav li{
		margin: 35px 0 0;
	}

	.nav li:first-child{
		margin-top: 0;
	}

	.nav li a{
		font-size: 16px;
	}

	.nav .contact_btn a{
		width: 230px;
		margin: 0 auto;
		font-size: 14px;
		/* height: 50px; */
    line-height: 50px;
		border-radius: 50px;
	}

	.nav .contact_btn.line_btn{
		margin-left: 0;
	}

	.nav .contact_item_group{
		margin-top: 40px;
	}

	.nav .contact_item_group .flex{
		display: block;
	}

	.nav .contact_item_group p{
		font-size: 16px;
		margin-bottom: 20px;
	}

	#top .main_img_content .mission_text{
		font-size: 32px;
	}

	#top .main_copy .main_message{
		text-align: left;
	}

	#top .main_img_content .mission_text .small{
		font-size: 28px;
	}

	#top .main_img_content .main_img.main_img-01{
		width: 22vw;
		top: 120px;
		left: 2%;
	}

	#top .main_img_content .main_img.main_img-02{
		width: 24vw;
		top: 360px;
		left: 10%;
	}

	#top .main_img_content .main_img.main_img-03{
		width: 31vw;
		bottom: 40px;
		left: 4%;
	}

	#top .main_img_content .main_img.main_img-04{
		width: 31vw;
		top: 160px;
		right: 5%;
	}

	#top .main_img_content .main_img.main_img-05{
		width: 24vw;
		top: 570px;
		right: 3%;
	}

	#top .main_img_content .main_img.main_img-06{
		width: 27vw;
		bottom: 20px;
		right: 16%;
	}

	#top .features_items{
		display: block;
	}

	#top .features_items .features_item{
		width: 100%;
		margin-top: 25px;
	}

	.link_banner .link_banner_items{
		display: block;
	}

	.link_banner .link_banner_item{
		display: block;
		width: 100%;
		border-radius: 8px;
	}

	.link_banner .link_banner_item:nth-of-type(1){
		background-image: url(../img/top/top_banner-01_sp.png);
	}

	.link_banner .link_banner_item:nth-of-type(2){
		background-image: url(../img/top/top_banner-02_sp.png);
		margin-top: 20px;
	}

	.link_banner .link_banner_item:nth-of-type(3){
		background-image: url(../img/top/top_banner-03_sp.png);
		margin-top: 20px;
	}

	#top .column .column_items{
		display: block;
	}

	#top .column .section_head{
		width: 100%;
	}

	#top .column .section_head .intro_txt{
		margin-bottom: 30px;
	}

	#top .column .column_item{
		width: 100%;
	}

	#top .column .column_item:nth-child(2),
	#top .column .column_item:nth-child(3){
		width: 100%;
		margin-top: 20px;
	}

	#top .activities_item .activities_img img{
		height: 200px;
	}

	#service .features_items{
		display: block;
	}

	#service .features_items .features_item{
		width: 100%;
	}

	#service .features_item:nth-of-type(2){
		margin: 25px 0;
	}

	#service .service_items{
		display: block;
	}

	#service .service_item{
		width: 100%;
	}

	#service .service_item:last-child{
		margin-top: 25px;
	}

	#service .service_item .point_text{
		height: auto;
	}

	/* #company .hl_group{
		padding: 30px;
	} */

	#company .hl_group .hl_group_item{
		padding: 30px;
	}

	#company .hl_group .hl_group_item{
		display: block;
		text-align: center;
	}

	#company .hl_group .hl_group_item p{
		margin: 20px 0 0;
		padding: 0;
		border-left: none;
	}

	#company .about_pmv .about_pmv_items{
		display: block;
	}

	#company .about_pmv .about_pmv_item{
		width: 100%;
		margin-top: 25px;
	}

	#company .company{
		margin-top: 80px;
	}

	#company .company h2{
		font-size: 20px;
		margin-bottom: 25px;
	}

	#company .company_info{
		margin: 0 0 80px;
		display: block;
	}

	#company .company_info dl{
		width: 100%;
	}

	#company .company_info dl div{
		padding: 40px 0;
		height: auto;
	}

	#company .company_info dl div:last-child{
		border-bottom: none;
	}

	#company .company_info dl:last-child div:last-child{
		border-bottom: 1px solid #C4D1DC;
	}

	#company .company_info dl dd.affiliation{
		font-size: 14px;
	}

	#company .company_info dl dd.affiliation img{
		width: 45%;
	}

	#contact .contact_tab_items{
		display: block;
	}

	#contact .contact_tab_item{
		width: 100%;
	}

	#contact .contact_tab_item:nth-of-type(2){
		margin: 20px 0;
	}

	#contact .contact_flow_items{
		display: block;
	}

	#contact .contact_flow_item{
		width: 100%;
		margin-top: 25px;
	}

	#contact .contact_flow_items .arrow_b{
		text-align: center;
		margin-top: 25px;
	}

	.column_items{
		display: block;
	}

	#column .hot_topics .hot_topics_bg{
		background-image: url(../img/column/column_bg_sp.png);
	}

	#column .hot_topics .column_item{
		width: 100%;
	}

	#column .hot_topics .column_item:nth-of-type(even){
		margin: 20px 0;
	}

	#column .column_category_list{
		width: 95%;
	}

	.articles .column_item{
		width: 100%;
	}

	.articles .column_item .column_text{
		/* width: 75%;
		max-width: none; */
	}

	.pagination{
		margin-top: 40px;
	}

	.single_column .single_column_main_img .single_column_ttl{
		width: 90%;
	}

	.single_column .single_column_main_img .single_column_ttl h1{
		margin-top: 10px;
		font-size: 24px;
	}

	.single_column .single_column_text{
		width: 100%;
		margin: 40px auto 0;
	}

	.single_column .single_column_text h2{
		font-size: 22px;
	}

	.single_news_item .single_news_text p{
		font-size: 14px;
	}

	.cta{
		margin: 60px 0;
	}

	.cta .section_head .intro_txt{
		font-size: 16px;
	}

	.cta .cta_items{
		display: block;
		width: 85%;
		margin: 0 auto;
	}

	.cta .cta_item{
		width: 100%;
		margin-top: 20px;
	}

	.cta_item.line_btn{
		margin: 40px 0 0;
	}

	.cta .cta_item a{
		margin: 0 auto;
	}

	.cta .cta_item .nav_text{
		font-size: 22px;
	}

	.cta .cta_item:last-child .nav_text{
		font-size: 24px;
	}





}
/************************************
画面幅 768px以下
************************************/
@media screen and (max-width:768px){

	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}

	.logo{
		width: 120px;
	}

	.logo_item .site_catch{
		font-size: 8px;
		margin-left: 10px;
	}

	.nav_trigger{
		top: 15px;
	}

	nav.nav{
		top: 65px;
	}

	.nav .contact_btn a{
		width: 250px;
	}

	.inner{
		width: 95%;
	}

	.bg{
		height: 40vh;
	}

	/* #contact .bg{
		display: none;
	} */

	#top .main_img_content{
		margin-bottom: 70px;
		background-image: url(../img/top/main_bg_sp.png);
	}

	#top .main_img_content .main_img.main_img-01{
		width: 23vw;
		top: 120px;
		left: 2%;
	}

	#top .main_img_content .main_img.main_img-02{
		width: 13vw;
		top: 350px;
		left: 5%;
	}

	#top .main_img_content .main_img.main_img-03{
		width: 32vw;
		bottom: 80px;
		left: 0;
	}

	#top .main_img_content .main_img.main_img-04{
		width: 32vw;
		top: 160px;
		right: 0%;
	}

	#top .main_img_content .main_img.main_img-05{
		width: 25vw;
		top: 500px;
		right: 0%;
	}

	#top .main_img_content .main_img.main_img-06{
		width: 28vw;
		bottom: 20px;
		right: 10%;
	}

	#top .main_img_content .mission_text .eng{
		font-size: 12px;
	}

	#top .main_img_content .mission_text{
		font-size: 24px;
	}

	#top .main_img_content .mission_text .small{
		font-size: 20px;
	}

	#top .headline{
		margin-bottom: 20px;
	}

	#top .headline h2{
		font-size: 20px;
	}

	#top .column .section_head h2,
	#top .news .section_head h2,
	#top .instagram .section_head h2,
	#single .articles .section_head h2{
		font-size: 20px;
	}

	#top .headline h2 .eng{
		font-size: 14px;
		margin-bottom: 5px;
		line-height: 1;
	}

	#top .main_copy .main_message .headline h2{
		font-size: 20px;
	}

	#top .main_copy .main_message .headline .big{
		font-size: 24px;
	}

	#top .main_copy .main_message img{
		width: 60%;
	}

	#top .main_copy .section_text{
		margin-bottom: 80px;
	}

	#top .main_copy .section_text p{
		font-size: 14px;
		text-align: left;
		line-height: 2;
	}

	#top .main_copy .main_message .section_text .bold{
		font-size: 14px;
	}

	#top .headline_sub{
		margin-bottom: 30px;
	}

	#top .headline_sub h2{
		font-size: 20px;
	}

	#top .headline_sub h2 .small{
		font-size: 16px;
	}

	.slick-next{
		right: -10px;
	}

	#top .activities_content{
		padding-right: 40px;
	}

	.link_banner{
		margin-top: 80px;
	}

	.link_banner .link_banner_item:nth-of-type(2){
		background-image: url(../img/top/top_banner-02_sp.png);
		margin-top: 10px;
	}

	.link_banner .link_banner_item:nth-of-type(3){
		background-image: url(../img/top/top_banner-03_sp.png);
		margin-top: 10px;
	}

	.link_banner .link_banner_item h2{
		font-size: 20px;
		left: 30px;
		bottom: 30px;
	}

	.link_banner .link_banner_item h2 .eng{
		font-size: 10px;
	}

	#top .reason{
		margin-top: 80px;
	}

	#top .news{
		margin-top: 80px;
	}

	#top .activities{
		margin: 80px 0;
	}

	#page,
	#single{
		width: 95%;
		padding-top: 120px;
	}

	#page .headline{
		margin-bottom: 30px;
	}

	#page .headline h1,
	#page .headline h2{
		font-size: 24px;
	}

	#page .headline h1 .eng,
	#page .headline h2 .eng{
		font-size: 12px;
	}

	#about .service{
		margin-top: 80px;
	}

	#about .service_items{
		display: block;
	}

	#about .service_item{
		width: 100%;
		margin-top: 25px;
	}

	#about .service_item h3{
		font-size: 18px;
	}

	#about .service_item .service_item_content{
		padding: 40px 30px 30px;
	}

	#service .headline_sub h2{
		font-size: 20px;
	}

	#service .headline_sub h2 .small{
		font-size: 16px;
	}

	#service .service{
		margin-top: 80px;
	}

	#service .service_item h3{
		font-size: 18px;
	}

	#service .service_item .service_item_content{
		padding: 40px 30px 30px;
	}

	#company .about_text-01{
		margin: 20px 0 70px;
	}

	#company .about_pmv{
		margin-top: 80px;
	}

	#company .about_pmv .about_pmv_title{
		font-size: 20px;
		margin-bottom: 25px;
	}

	#company .about_pmv .about_pmv_item{
		padding: 30px;
	}

	#company .company_info dl dd.affiliation{
		display: block;
	}

	#company .company_info dl dd.affiliation img{
		display: block;
		width: 50%;
		margin: 10px 0 0;
	}

	#store_information .company_access_content{
		display: block;
	}

	#store_information .company_access .access_map{
		width: 100%;
	}

	#store_information .company_access .access_text{
		width: 100%;
		margin-bottom: 20px;
	}

	#store_information .company_access .access_text h2{
		font-size: 20px;
		margin-bottom: 20px;
	}

	#store_information .company_access .company_access_img{
		display: block;
	}

	#store_information .company_access .company_access_img img{
		width: 100%;
	}

	#store_information .company_access .company_access_img img:nth-of-type(2){
		margin: 15px 0;
	}

	.single_news_item h1{
		font-size: 20px;
	}

	.single_news_item .single_news_text{
		width: 95%;
	}

	.single_news_item .single_news_text h2{
		font-size: 18px;
	}

	.single_news_item .single_news_text h3{
		font-size: 16px;
	}

	#contact .intro_text{
		margin-bottom: 20px;
	}

	#contact h2{
		font-size: 20px;
		margin-bottom: 15px;
	}

	#contact .contact_tab_item a{
		padding: 30px;
	}

	#contact .contact_flow_item{
		padding: 30px;
	}

	.footer_item{
		width: 90%;
		display: block;
	}

	.footer_item img{
		width: 50%;
	}

	.footer_item_nav{
		margin-top: 15px;
	}

	.column_item .column_text h3{
		/* font-size: 14px; */
	}

	.column_category{
		font-size: 10px;
	}

	#top .column .section_head .intro_txt,
	#top .activities .section_head .intro_txt{
		font-size: 14px;
	}

	#top .activities_item .activities_img img{
		height: 150px;
	}

	#column .headline .intro_txt,
	#activities .headline .intro_txt{
		font-size: 14px;
	}

	#column .hot_topics .hot_topics_inner{
		padding-top: 40px;
	}

	#column .column_category_list{
		width: 100%;
		display: block;
	}

	#column .column_category_list ul{
		justify-content: center;
		flex-wrap: wrap;
	}

	#column .column_category_list li{
		margin: 5px;
	}

	#column .column_category_list li:first-child{
		margin-left: 5px;
	}

	#column .column_category_list li a{
		font-size: 12px;
	}

	#column .column_category_list p{
		margin: 0 0 10px 0;
		text-align: center;
	}

	.articles .column_item a{
		/* display: block; */
	}

	.articles .column_item .column_img{
		/* width: 100%;
		margin-right: 0; */
	}

	.articles .column_item .column_text{
		/* width: 100%; */
	}

	.articles .column_item .column_text h3{
		/* margin: 10px 0; */
	}

	.single_column{
		width: 100%;
	}

	.single_column .single_column_ttl h1{
		font-size: 20px;
	}

	#ez-toc-container{
		padding: 20px !important;
	}

	#ez-toc-container li.ez-toc-heading-level-2::before{
		top: 3px;
	}

	#ez-toc-container li.ez-toc-heading-level-2{
		font-size: 14px;
	}

	#ez-toc-container li:not(.ez-toc-heading-level-2){
		font-size: 12px;
	}

	.single_column .single_column_text h2{
		font-size: 18px;
		padding: 15px;
	}

	.single_column .single_column_text h3{
		font-size: 16px;
	}

	.single_column .single_column_text h4{
		font-size: 14px;
	}

	.single_column .single_column_text table{
		font-size: 14px;
	}

	.single_column .single_column_text table th,
	.single_column .single_column_text table td{
		padding: 10px;
	}

	.single_column .custom_style-01_head{
		font-size: 14px;
		padding: 15px;
	}

	.single_column .custom_style-01_content{
		padding: 15px;
	}

	.single_column .single_column_overview{
		padding: 20px;
	}

	.single_column .single_column_overview .column_overview_ttl{
		font-size: 18px;
	}

	#single .articles .section_head{
		margin-bottom: 30px;
	}

	#single .articles .section_head h2{
		font-size: 20px;
	}

	#single .articles .section_head .eng{
		font-size: 12px;
	}

	.cta{
		padding: 30px;
		background-image: url(../img/column/column_cta_bg_sp.png);
	}

	#single .cta .section_head h2{
		font-size: 20px;
	}

	.cta .section_head h2 span{
		font-size: 20px;
	}

	#single .cta .section_head h2 br{
		display: none;
	}

	.cta .section_head .intro_txt{
		font-size: 16px;
	}

	.cta .section_head .intro_txt span{
		font-size: 20px;
	}

	.cta .cta_items{
		width: 100%;
	}

	.cta_item a{
		margin: 0 auto;
	}

	.cta_item.line_btn{
		margin: 40px 0 0;
	}

	.cta .cta_item .nav_text{
		font-size: 18px;
	}

	.cta .cta_item:last-child .nav_text{
		font-size: 20px;
	}

	.footer_item_nav a{
		font-size: 10px;
	}



}

/************************************
画面幅 480px以下
************************************/
@media screen and (max-width:480px){

	#top .main_img_content{
		height: 700px;
	}

	#top .main_img_content .mission_text{
		font-size: 20px;
	}

	#top .main_img_content .main_img.main_img-01{
		width: 30vw;
		top: 120px;
		left: 2%;
	}

	#top .main_img_content .main_img.main_img-02{
		width: 20vw;
		top: 280px;
		left: 5%;
	}

	#top .main_img_content .main_img.main_img-03{
		width: 30vw;
		bottom: 120px;
		left: 0;
	}

	#top .main_img_content .main_img.main_img-04{
		width: 30vw;
		top: 130px;
		right: 0%;
	}

	#top .main_img_content .main_img.main_img-05{
		width: 25vw;
		top: 380px;
		right: 0%;
	}

	#top .main_img_content .main_img.main_img-06{
		width: 30vw;
		bottom: 60px;
		right: 10%;
	}

	#top .main_copy .main_message .headline .ul_wave{
		background-size: contain;
	}

	#top .main_copy .main_message .headline .ul_line{
		background-size: contain;
	}

	#top .main_copy .section_text p{
		line-height: 2.2;
	}

	#top .features_items .features_item h3{
		font-size: 20px;
	}

	#top .activities_item .activities_img img{
		height: 180px;
	}

	#service .service_item h4{
		font-size: 18px;
	}

	.activities_content .slick-list{
		padding-right: 0 !important;
	}

	.slick-next{
		right: -5px;
	}

	.intro_txt_content{
		font-size: 12px;
	}

	.column_item a{
		display: block;
	}

	.column_item .column_text{
		width: 100%;
	}

	.articles .column_item a{
		display: block;
	}

	.column_item .column_img{
		width: 100%;
		margin-bottom: 15px;
	}

	.articles .column_item .column_text{
		width: 100%;
	}

	.column_item .column_text h3{
		font-size: 18px;
		margin-top: 5px;
	}

	.column_item .column_text .intro_txt_content{
		font-size: 12px;
	}

	#column .column_category_list li a{
		width: 155px;
	}

	.news_item{
		width: 100%;
	}

	.single_news_item{
		width: 100%;
	}

	.single_news_item .single_news_text img{
		width: 100%;
	}

	.footer_item_nav{
		display: block;
	}

	.footer_item_nav a{
		font-size: 10px;
		margin-right: 7px;
	}

	.copyright{
		margin: 10px 0 0;
		font-size: 10px;
	}








}
