@CHARSET "UTF-8";
/*
Theme Name: 公益社団法人東京都建設事業協会様
date: 2025.11.10
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
	--bk: #000;
  --light_green: #4ACBAE; 
	--deep_green: #208930;
	--txt_green: #189F94;
	--red: #E36B52;
	--bg: #F0F0EA;
}


*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 500;
	font-family: "Poppins","Noto Sans JP", sans-serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}


/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 500;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 500;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 500;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}



/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}



/* =slick base
-------------------------------------------------------------- */

.slick-arrow{
	width: 1rem;
  height: 1rem;
  z-index: 10;
}
.slick-prev{
  left: -5px;
}
.slick-next{
  right: -5px;
}
.slick-arrow::before{
	content: '' !important;
  width: 100%;
  height: 100%;
  border-top: #000 solid 1px;
  border-left: #000 solid 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 1;
}
.slick-prev:before{
  transform: translate(-35%,-50%) rotate(-45deg);
}
.slick-next:before{
  transform: translate(-65%,-50%) rotate(135deg);
}
.slick-slide:focus{
  outline: 0;
}
.slick-dots > li:first-child:last-child {
   display: none;
}
.slick-dots{
	bottom: 1rem;
	z-index: 10;
}
.slick-dots li{
	width: 3rem;
	height: 1rem;
}
.slick-dots li button{
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 50px;
}
.slick-dots li.slick-active button{
	background: #ccc;
}
.slick-dots li button:before{
	content: none;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}


.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--grad);
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}





/* =entry base
-------------------------------------------------------------- */

.no_posts{
	padding: 3rem 0;
	text-align: center;
	background: var(--bg);
}
.column_list{
	margin-bottom: 3rem;
}
.column_box{
	padding: 1rem 0;
	border-bottom: var(--bk) solid 1px;
	display: flex;
}
.column_box__thumb{
	flex: 0 0 10rem;
	margin-right: 1rem;
}
.column_box__inner{
	flex: 1;
	font-size: 1.2rem;
}
.column_cat{
	background: #999;
	color: #fff;
	padding: 0 1rem;
	display: inline-block;
	margin-left: .5rem;
}

.entry_header{
	padding-bottom: 1rem;
	margin-bottom: 5rem;
	border-bottom: var(--bk) solid 1px;
}
.entry_header .posted_date{
	font-size: 1.2rem;
	margin-bottom: 1rem;
}
.entry_header h1{
	font-size: 2rem;
	line-height: 1.5;
}
.posted_title{
	line-height: 1.5;
	margin-top: 1rem;
}

.entry_content{
	padding-bottom: 5rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--deep_green) solid .4rem;
}
.entry_content h3{
	background: var(--deep_green);
	padding: 1rem;
	border-radius: .5rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--bk);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--red);
}
.entry_content a:hover{
	text-decoration: none;
}
.entry_content table tr{
	border: 0;
}
.entry_content table th,
.entry_content table td{
	border: #999 solid 1px;
}

.entry_content ul,
.entry_content ol{
  padding: 2rem 5%;
  margin: 3rem 0;
  background: var(--bg);
}
.entry_content li{
  margin: .5rem 0;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}
.entry_content ul li::before{
  content: '・';
  position: absolute;
  top: 2px;
  left: 0;
}
.entry_content ol{
  counter-reset: number;
}
.entry_content ol li::before{
  counter-increment: number;
  content: counter(number)'.';
  top: 0;
  left: 0;
  position: absolute;
}

.wp-block-image{
	margin-bottom: 2rem;
	margin-top: 2rem;
}
.wp-block-image img{
	overflow: hidden;
}
.wp-block-image figcaption{
	font-size: 1.2rem;
	margin: .5rem 0 0;
	text-align: center;
}
.wp-block-gallery{
	display: flex;
	flex-wrap: wrap;
	gap: 0 !important;
}
.wp-block-gallery .wp-block-image{
	width: 50%;
	padding-right: 1rem;
	margin: .5rem 0;
}
.wp-block-embed{
	margin: 2rem 0;
}




/* =page nav
-------------------------------------------------------------- */

.page_links{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}
.page_links a, 
.page_links span{
  text-decoration: none;
	font-size: 1.4rem;
	padding: 0 .5rem;
}
.page_links span.current{
	color: var(--orange);
}
.page_links a:hover{
	text-decoration: underline;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}


.nav_single{
	clear: both;
	display: flex;
	align-items: center;
  justify-content: center;
  margin: 5rem 0;
	font-size: 1.2rem;
}
.nav_single li{
	width: 33.33%;
}
.nav_single li.nav_next{
	text-align: right;
}
.nav_single li a{
	display: block;
	padding: 1.5rem 0;
	color: var(--light_green);
}
.nav_single .btn_link{
	font-size: 1.2rem;
	padding: 1rem;
}








/* =site basic
-------------------------------------------------------------- */

.btn_link{
	background: #fff;
	border: var(--light_green) solid 1px;
	color: var(--light_green);
	display: block;
	padding: 1.5rem 1rem;
	font-size: 1.6rem;
	width: 100%;
	max-width: 33rem;
	margin: 0 auto;
	text-align: center;
  position: relative;
	border-radius: 50px;
}
.arrow{
	position: absolute;
	width: 2.5rem;
	height: 2rem;
	left: 2rem;
	top: 50%;
	translate: 0 -50%;
	background: url('images/common/arrow.svg') no-repeat center center / contain;
	transition: .3s;
}
.arrow_white{
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	background: url('images/common/arrow_white.svg') no-repeat center center / contain;
	transition: .3s;
	background: url('images/common/arrow_white.svg') no-repeat center center / contain;
	right: 1rem;
	width: 1rem;
	height: 1rem;
}
.btn_link__blank{
	color: var(--bk);
	border: var(--red) solid 2px;
	border-radius: 1rem;
	padding: 1rem;
	max-width: 100%;
}
.btn_link__blank::after{
	content: '';
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 1.5rem;
	height: 1.5rem;
	background: url('images/common/icon_blank.svg') no-repeat center center / contain;
}

#main_container{
	display: contents;
}
.page_container{
	padding-bottom: 8rem;
}
.wrapper{
	width: 90%;
	max-width: 950px;
	margin: 0 auto;
}
.short_wrap{
	max-width: 850px;
}
.section{
	padding: 4rem 0;
}
.block{
	margin-bottom: 5rem;
}
.bg{
	background: var(--bg);
}

.section_title{
	margin-bottom: 3rem;
	line-height: 1;
	font-size: 1.4rem;
}
.section_title span{
	font-size: 300%;
	display: block;
	margin-bottom: 1rem;
}
.title_center{
	text-align: center;
}

.page_header{
	position: relative;
	background: #000;
	height: 22rem;
	margin-bottom: 5rem;
	padding: 0 5% 2rem;
	display: flex;
	align-items: flex-end;
	z-index: 5;
}
.page_header::before{
	content: '';
	background: url('images/common/header.jpg') no-repeat center center / cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: .7;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.page_title{
	color: #fff;
	margin: 0 !important;
	line-height: 1;
}
.page_title span{
	margin-bottom: .5rem;
	text-transform: uppercase;
}
.block_title{
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 3rem;
	font-weight: 700;
}
.title_center{
	text-align: center;
}
.title_bg{
	padding: 1rem 2rem;
	color: #fff;
	background: var(--red);
	border-radius: .8rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 2rem;
}
.title_border{
	font-size: 2rem;
	margin-bottom: 2rem;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: .5rem;
	border-bottom: var(--bk) solid 1px;
}
#message_404 .btn_link{
	margin: 5rem 0 0;
}




/* =header
-------------------------------------------------------------- */

#site_header{
  padding: 1rem;
}
.site_description{
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
.site_description br{
	display: none;
}
#header_logo{
  display: block;
	width: 75%;
  max-width: 300px;
  margin: 0 auto 0 0;
}
#header_nav__btn{
	position: fixed;
	top: 0;
	right: 0;
	width: 5rem;
	height: 5rem;
	text-align: center;
	z-index: 9999;
  cursor: pointer;
	background: var(--light_green);
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	width: 50%;
}
#header_nav__btn .border{
	width: 100%;
	height: 3px;
	background: #fff;
  display: block;
  margin-bottom: 5px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
.nav_active #header_nav__btn .border{
  background: #fff;
}
.nav_active #header_nav__btn .border:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav_active #header_nav__btn .border:nth-of-type(2) {
	opacity: 0;
}
.nav_active #header_nav__btn .border:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}


#header_nav__inner{
	width: 80%;
	max-width: 40rem;
	background: #fff;
	z-index: 999;
	position: fixed;
	top: 0;
	right: -40rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	border-bottom-left-radius: 2rem;
	border: var(--light_green) solid .5rem;
	padding: 3rem 5%;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
	right: 0;
}
.main_navigation{
	position: relative;
}
.main_navigation li a{
	display: flex;
	align-items: center;
	height: 6rem;
	position: relative;
	line-height: 1.5;
	font-size: 1.6rem;
	border-bottom: var(--bk) dotted 2px;
}
.main_navigation li a::before{
	content: '';
	background: url('images/common/icon_plus.svg') no-repeat center center / contain;
	width: 2rem;
	height: 2rem;
	display: block;
	margin-right: 1rem;
}

#header_contact{
	margin: 3rem 0 2rem;
}
#header_contact li{
	margin-bottom: 1rem;
}
.header_contact__link{
	display: block;
	background: var(--deep_green);
	color: #fff;
	border-radius: 1rem;
	padding: 1rem;
	text-align: center;
}
.header_contact__link h2{
	font-size: 1.2rem;
	font-weight: 400;
	padding-bottom: .5rem;
	border-bottom: #fff solid 1px;
	margin-bottom: .5rem;
	line-height: 1.4;

}
.header_contact__link p{
	font-size: 1.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.header_contact__link p .icon{
	width: 2rem;
	margin-right: .5rem;
}

.sns_link{
	display: flex;
	justify-content: center;
}
.sns_link li{
	margin: 0 1rem;
}
.sns_link a img{
	width: 3rem;
}




/* =footer
-------------------------------------------------------------- */

#footer_contact__inner li{
	margin-bottom: 1rem;
}
.footer_contact__link{
	border-radius: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	overflow: hidden;
	height: 15rem;
}
.footer_contact__link p{
	font-size: 1.6rem;
}
#footer_contact__tel{
	background: #1F6E91;
	justify-content: flex-start
}
#footer_contact__tel h2{
	padding: 1rem;
	background: #093859;
	line-height: 1.4;
	align-self: stretch;
	margin-bottom: 1rem;
}
#footer_contact__mail{
	background: #208930;
}
#footer_contact__mail .icon{
	display: block;
	margin: 0 auto 1rem;
	width: 4rem;
}
.footer_contact__link p#footer_contact__txt{
	font-size: 3rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
}
#footer_contact__txt .icon{
	width: 2.5rem;
	margin-right: .5rem;
}

#site_footer__inner{
	padding: 3rem 0;
}
#footer_logo p{
	font-size: 1.2rem;
	margin-bottom: .5rem;
}
#footer_logo__img{
	width: 80%;
	max-width: 35rem;
	display: block;
}

#footer_address{
	margin-top: 2rem;
	font-size: 1.2rem;
	line-height: 1.5;
}
#footer_address__tel{
	font-size: 120%;
}
#footer_address__tel a{
	font-size: 150%;
	text-decoration: underline;
}




/* =FAQ
-------------------------------------------------------------- */

.faq_section .section_title{
	margin-bottom: 2rem;
}
.icon_plus{
	width: 1rem;
	height: 2px;
	background: var(--bk);
	margin: 0 0 0 auto;
	position: relative;
}
.icon_plus::after{
	content: '';
	width: 1rem;
	height: 2px;
	background: var(--bk);
	position: absolute;
	top: 0;
	left: 0;
	rotate: 90deg;
	transition: .3s;
}
.faq_box[open] .icon_plus::after{
	rotate: none;
}
.faq_box{
	padding: 2rem 0;
	border-bottom: #727272 dotted 1px;
}
.faq_question{
	display: flex;
	align-items: center;
}
.faq_question .faq_q{
	width: 5rem;
	color: var(--bg);
	font-size: 4rem;
	line-height: 1;
	font-weight: 700;
}
.faq_question__txt{
	flex: 1;
	line-height: 1.5;
	padding-right: 1rem;
	font-weight: 700;
	font-size: 1.6rem;
}
.faq_answer{
	background: var(--bg);
	padding: 2rem 5%;
	margin-left: 5rem;
	border-radius: 1rem;
	margin-top: 2rem;
}





/* =TOP
-------------------------------------------------------------- */

#main_visual{
	margin-bottom: 5rem;
	position: relative;
}
#main_visual__txt{
	position: absolute;
	bottom: 2rem;
	left: 5%;
	font-size: 1.6rem;
	z-index: 5;
	font-weight: 700;
}
#main_visual__txt span{
	display: inline-block;
	color: #fff;
	background: var(--red);
	padding: 0 1rem;
	margin-top: .5rem;
	line-height: 1.4;
}

.front_about__txt h3{
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-weight: 700;
}
.front_about__txt p{
	margin-bottom: 3rem;
}
#front_about__flex figure{
	margin: 2rem auto;
	width: 80%;
}

#top_strong .wrapper{
	border-top: var(--bk) solid 2px;
	padding-top: 3rem;
}
#top_strong__wrap{
	padding-bottom: 3rem;
	border-bottom: var(--bk) solid 2px;
	margin-bottom: 3rem;
}
#top_strong__wrap li{
	margin-top: 2rem;
}
.top_strong__box{
	background: var(--bg);
	border-radius: 1rem;
	padding: 2rem 5%;
	border-radius: 1rem;
	position: relative;
}
.top_strong__num{
	font-size: 4rem;
	line-height: 1;
	position: absolute;
	top: -1rem;
	right: 1rem;
	z-index: 5;
}
.top_strong__box h3{
	font-size: 1.8rem;
	line-height: 1.5;
	border-bottom: #fff solid 1px;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}
#top_strong__img{
	display: flex;
	margin: 0 -.5rem;
}
#top_strong__img li{
	width: 50%;
	padding: 0 .5rem;
}
#top_strong__img li:last-child{
	display: none;
}
.top_program__block{
	padding-bottom: 3rem;
	border-bottom: #fff solid 1px;
	margin-bottom: 3rem;
}
.top_program__block figure{
	overflow: hidden;
	border-radius: 1rem;
	margin-bottom: 2rem;
}
.top_program__block h3{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
#top_program03{
	border: 0;
	padding: 0;
}
#top_program03__support{
	font-size: 1.2rem;
	margin-bottom: 5rem;
}

.link_handling{
	display: block;
	text-align: center;
	padding: 4rem 0;
	border-radius: 1.5rem;
	color: #fff;
	background: var(--red);
	width: 100%;
	max-width: 50rem;
	margin: 3rem auto;
	font-size: 2rem;
	position: relative;
	font-weight: 700;
}
.link_handling img{
	display: block;
	width: 10rem;
	margin: 0 auto 2rem;
}
.link_handling .arrow_white{
	translate: none;
	top: auto;
	bottom: 1rem;
	width: 2rem;
	height: 2rem;
}







/* =service
-------------------------------------------------------------- */

#page_service .page_header::before{
	background: url('images/service/header.jpg') no-repeat center center / cover;
}
.service_links{
	margin-bottom: 3rem;
}
.service_links li{
	margin-bottom: 1rem;
}
.service_link__box{
	display: flex;
	align-items: center;
	border: var(--bk) solid 2px;
	border-radius: 1rem;
	padding: 2rem 5%;
}
.service_link__img{
	margin-right: 2rem;
	position: relative;
	z-index: 5;
	width: 8rem;
	height: 8rem;
	transition: .3s;
}
.service_link__img img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.service_link__txt{
	text-align: center;
	flex: 1;
	font-size: 1.6rem;
}
.service_link__box .btn_link{
	background: var(--red);
	color: #fff;
	border: 0;
	font-size: 1.2rem;
	padding: .5rem;
	margin: 1rem auto 0;
	width: 90%;
}

#service01_message h3{
	font-size: 2rem;
	font-weight: 700;
	margin: 4rem 0 2rem;
}
#service01_message p{
	margin-bottom: 2rem;
}
#service01_message__inner{
	margin-top: 5rem;
}
#service01_message ul{
	margin-top: 3rem;
}
#service01_message ul li{
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 1.4rem;
}
#service01_system__links li{
	margin-bottom: 1rem;
}
#service01_system__links li .btn_link::after{
	content: none;
}
#service01_about{
	padding: 3rem 5%;
}
#service01_about p{
	margin-bottom: 2rem;
}
#service01_about__inner{
	background: #fff;
	margin-top: 3rem;
	border-radius: 2rem;
	padding: 2rem 5%;
}

#service01_support h4{
	font-size: 1.6rem;
	color: var(--txt_green);
	margin: 3rem 0 1rem;
	font-weight: 700;
}
#service01_support h5{
	font-size: 1.4rem;
	font-weight: 700;
	margin: 2rem 0 1rem;
}
#service01_support p{
	margin-bottom: 2rem;
}

#service02_list{
	margin-top: 3rem;
}
#service02_list li{
	margin-bottom: .5rem;
}
#service02_list li p{
	background: var(--bg);
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 8rem;
	font-size: 1.6rem;
	border-radius: .5rem;
}
#service02_list li#service02_list__last p{
	background: #F0CEC7 !important;
	height: 10rem;
}
#service03 p{
	margin-bottom: 2rem;
}
#service03 .btn_link{
	margin-top: 4rem;
	max-width: 45rem;
}





/* =about
-------------------------------------------------------------- */

#page_about .page_header::before{
	background: url('images/about/header.jpg') no-repeat center center / cover;
}
.about01_inner{
	margin-bottom: 5rem;
}
.about01_inner h2{
	font-size: 1.6rem;
	margin-bottom: 1rem;
	font-weight: 700;
}
.about01_inner p{
	margin-bottom: 2rem;
}
.about02_inner{
	margin-bottom: 3rem;
}
.about02_inner h3{
	font-size: 1.6rem;
	color: var(--red);
	margin-bottom: .5rem;
	font-weight: 700;
}
#about_profile{
	margin-top: 5rem;
}
.profile_block dt{
	color: var(--red);
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.profile_block dd{
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: var(--bk) solid 1px;
}
.profile_block .gmap{
	margin-top: 1rem;
}
.gmap iframe{
	width: 100%;
	height: 35rem;
}

#about_history .profile_block dt{
	color: var(--light_green);
}





/* =program
-------------------------------------------------------------- */

#page_program .page_header::before{
	background: url('images/program/header.jpg') no-repeat center center / cover;
}

#program_nav{
	margin-bottom: 8rem;
}
#program_nav li{
	margin-bottom: 1rem;
}
#program_nav .btn_link{
	background: #E59685;
	color: #fff;
	padding: 1rem;
	font-size: 1.4rem;
	border: 0;
	max-width: 100%;
}

#program01_img{
	margin-top: 3rem;
}
.program02_box{
	margin-top: 3rem;
}
.program02_box h3{
	font-size: 1.8rem;
	margin-bottom: 2rem;
}
.program02_box h3 span{
	color: var(--red);
	font-size: 150%;
	display: block;
	line-height: 1.5;
	font-weight: 700;
}
.program02_box h4{
	margin: 2rem 0 1rem;
	border-bottom: var(--deep_green) solid 2px;
	padding-bottom: .5rem;
	line-height: 1.5;
	font-size: 1.6rem;
	color: var(--deep_green);
}
.program02_box p{
	margin-bottom: 1rem;
}

.program04_img{
	margin: 3rem 0;
}

#program06_inner{
	background: var(--bg);
	padding: 3rem 5%;
	border-radius: 1rem;
	margin: 3rem 0;
}
#program07 .btn_link{
	margin: 3rem auto;
	max-width: 50rem;
}
#program08_list{
	margin: 3rem -.5rem;
	display: flex;
	flex-wrap: wrap;
}
#program08_list li{
	width: 50%;
	padding: 0 .5rem;
	margin-bottom: 1rem;
}
.program08_list__box{
	height: 100%;
	background: var(--bg);
	border-radius: 1rem;
	overflow: hidden;
}
.program08_list__img .img_clip::before{
	padding-top: 50%;
}
.program08_list__txt{
	padding: 1rem 1rem 2rem;
}
.program08_list__txt h3{
	font-size: 1.4rem;
	text-align: center;
	border-bottom: var(--red) solid 1px;
	margin-bottom: 1rem;
	padding-bottom: .5rem;
}
.program08_list__txt p{
	font-size: 1rem;
}




/* =rule
-------------------------------------------------------------- */

#page_rule .page_header::before{
	background: url('images/rule/header.jpg') no-repeat center center / cover;
}
#page_rule .page_title{
	font-size: 2.4rem;
}
.rule_block{
	margin-bottom: 4rem;
}
.rule_block h2{
	font-size: 1.6rem;
	margin-bottom: 1em;
	font-weight: 700;
}
.rule_block p{
	margin-bottom: 2rem;
}







/* =Contact
-------------------------------------------------------------- */

#page_contact .page_header::before{
	background: url('images/contact/header.jpg') no-repeat center center / cover;
}
#contact_tel{
	max-width: 660px;
	position: relative;
	z-index: 5;
}
#contact_tel #footer_contact__tel{
	height: auto;
	padding-bottom: 1rem;
}
#contact_tel .footer_contact__link p{
	font-size: 1.2rem;
}
#contact_tel .footer_contact__link p#footer_contact__txt{
	font-size: 3rem;
}

#contact_wrap{
	width: 100%;
	padding: 10rem 5% 3rem;
	margin-top: -5rem;
}
#contact_wrap h2{
	margin-bottom: 3rem;
}
.form_header{
	text-align: center;
}
.form_header .required{
	color: #FF0000;
}
.form_step{
	margin: 3rem 0 5rem;
}
.form_step ul{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.form_step ul li{
	position: relative;
	width: 31%;
}
.form_step ul li p{
	background: #0074AC;
	border-radius: 50px;
	border: #0074AC solid 1px;
	text-align: center;
	color: #fff;
	display: flex;
	align-items: center;
	overflow: hidden;
	font-size: 1.2rem;
	position: relative;
}
.form_step ul li:not(:last-child)::after{
	content: '';
	background: #000;
	width: .8rem;
	height: .8rem;
	clip-path: polygon(0 0,100% 50%,0 100%);
	position: absolute;
	left: 103%;
	top: 50%;
	translate: 0 -50%;
}
.form_step ul li span{
	width: 50%;
	text-align: center;
	padding: 1rem 0;
}
.form_step__num{
	background: #fff;
	color: #0074AC;
	align-self: stretch;
}
.form_step01 .form_step__num{
	background: #0189CA;
	color: #fff;
}
.form_wrap table{
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
.form_wrap .required{
	background: #FF0000;
	color: #fff;
	font-size: 1rem;
	padding: .2rem 1rem;
	border-radius: 5px;
	margin-left: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
	font-size: 1.4rem;
  border: #707070 solid 1px;
	min-height: 4rem;
	background: #fff;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 2rem;
	height: 2rem;
	vertical-align: middle;
}

input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.form_wrap label{
	cursor: pointer;
}

.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}

.form_wrap th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
	font-size: 1.6rem;
}
.form_wrap td{
	display: block;
	padding: 0 0 3rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 2rem;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.form_policy{
	margin: 3rem 0;
	border: #707070 solid 1px;
	border-radius: 1rem;
	padding: 3rem 5%;
	font-size: 1.2rem;
}
.form_policy h3{
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
	font-size: 1.6rem;
}
.policy_check{
	text-align: center;
	margin: 2rem 0 5rem;
}
.policy_check p{
	margin: 1rem 0;
}
.form_wrap .btn_link{
	font-size: 1.6rem;
	font-weight: 700;
}
.form_wrap .btn_back{
	margin-top: 1rem;
	scale: .8;
	background: #ccc;
	border: 0;
	color: #fff;
}
.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}

.step02_message{
	display: none;
}
.mw_wp_form_confirm .step01_message,
.mw_wp_form_confirm .form_policy,
.mw_wp_form_confirm .policy_check{
	display: none;
}
.mw_wp_form_confirm .step02_message{
	display: block;
}
.mw_wp_form_confirm .form_step02 .form_step__num{
	background: #0189CA;
	color: #fff;
}

#contact_thanks__message{
	color: #094D80;
	text-align: center;
	margin-bottom: 3rem;
}
#contact_thanks__message h2{
	font-size: 2rem;
	margin-bottom: 3rem;
	font-weight: 700;
}
#contact_thanks__message h2 span{
	display: block;
	font-size: 250%;
	line-height: 1;
}
#contact_thanks__inner{
	background: #fff;
	padding: 3rem 5%;
	border-radius: 1rem;
	margin-bottom: 3rem;
	text-align: center;
	font-size: 1.2rem;
}
#contact_thanks__attention{
	border-top: #D0D0D0 solid 1px;
	border-bottom: #D0D0D0 solid 1px;
	padding: 2rem 0;
	margin-top: 3rem;
}
#contact_thanks__attention h3{
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: center;
}




/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.wp-block-gallery.columns-3 .wp-block-image{
		width: 33.33%;
	}
	.wp-block-gallery.columns-4 .wp-block-image{
		width: 25%;
	}
	.wp-block-gallery.columns-5 .wp-block-image{
		width: 20%;
	}
	.section{
		padding: 5rem 0;
	}
	.block{
		margin-bottom: 8rem;
	}
	.section_title{
		font-size: 1.8rem;
		margin-bottom: 5rem;
	}
	.page_header{
		height: 35rem;
		padding-bottom: 3rem;
	}
	.block_title{
		font-size: 2.4rem;
		margin-bottom: 5rem;
	}
	.title_bg{
		font-size: 2.2rem;
	}
	.title_border{
		font-size: 2.2rem;
	}
	.block_flex{
		display: flex;
		justify-content: space-between;
	}
	.block_flex__title{
		width: 40%;
	}
	.block_flex__inner{
		width: 55%;
	}
	#footer_contact__inner{
		display: flex;
		justify-content: space-between;
	}
	#footer_contact__inner li{
		margin: 0;
		width: 49%;
	}
	#site_footer__inner{
		display: flex;
	}
	#footer_logo{
		width: 50%;
	}
	#footer_address{
		width: 50%;
		margin: 0;
		padding-left: 3rem;
	}
	#main_visual__txt{
		font-size: 3rem;
		bottom: 10rem;
	}
	.service_links{
		display: flex;
		margin: 0 -1rem 3rem;
	}
	.service_links li{
		width: 33.33%;
		padding: 0 1rem;
		margin: 2rem 0 0;
	}
	.service_link__box{
		display: block;
	}
	.service_link__img{
		margin: -3rem auto 1rem;
	}
	#front_about__flex{
		display: flex;
		flex-direction: row-reverse;
	}
	#front_about__flex figure{
		flex: 0 0 40%;
		margin-right: 3rem;
	}
	.front_about__txt{
		flex: 1;
	}
	#top_strong__wrap{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: -5rem;
	} 
	#top_strong__wrap li{
		width: 49%;
		margin-top: 4rem;
	}
	.top_strong__box{
		height: 100%;
		padding: 3rem;
	}
	.top_strong__box h3{
		height: 7.5rem;
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
	.top_strong__num{
		top: -2rem;
		right: 3rem;
	}
	#top_strong__img li{
		width: 33.33%;
	}
	#top_strong__img li:last-child{
		display: block;
	}
	.top_program__block{
		display: flex;
		align-items: flex-start;
		padding-bottom: 5rem;
		margin-bottom: 5rem;
	}
	.top_program__block figure{
		width: 45%;
		margin: 0 3rem 0 0;
	}
	.top_program__txt{
		flex: 1;
	}
	.link_handling{
		margin: 8rem auto;
	}
	.link_handling img{
		width: 15rem;
	}
	.gmap iframe{
		height: 25rem;
	}
	#about_profile{
		margin-top: 8rem;
	}
	#service01_message h3{
		font-size: 2.2rem;
	}
	#service01_system__links{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#service01_system__links li{
		width: 49%;
	}
	#service02_list{
		display: flex;
		flex-wrap: wrap;
		margin: 3rem -.5rem 0;
	}
	#service02_list li{
		width: 33.33%;
		padding: 0 .5rem;
		margin-bottom: 1rem;
	}
	#service02_list li p{
		height: 15rem;
	}
	#service02_list li#service02_list__last{
		width: 66.66%;
	}
	#service02_list li#service02_list__last p{
		height: 15rem;
	}
	#service01_about{
		padding-top: 5rem;
	}
	#program_nav{
		display: flex;
		flex-wrap: wrap;
	}
	#program_nav li{
		width: 50%;
		padding: 0 1rem;
	}
	#program08_list li{
		width: 33.33%;
	}
	.program02_box h3{
		font-size: 2.2rem;
	}
	.program08_list__txt h3{
		font-size: 1.6rem;
	}
	.program08_list__txt p{
		font-size: 1.2rem;
	}
	#page_rule .page_title{
		font-size: 3rem;
	}
	.form_step ul li p{
		font-size: 1.4rem;
	}
	.form_policy{
		text-align: center;
	}
	#contact_tel .footer_contact__link p{
		font-size: 1.6rem;
	}
	#contact_tel .footer_contact__link p#footer_contact__txt{
		font-size: 4rem;
	}
	#contact_tel #footer_contact__tel{
		padding-bottom: 2rem;
	}
	#contact_tel #footer_contact__tel h2{
		padding: 1.5rem 0;
		font-size: 1.6rem;
	}
	#contact_tel #footer_contact__txt .icon{
		width: 3rem;
	}
}




@media screen and (min-width: 1180px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
	#page{
		display: flex;
		flex-direction: row;
	}
	#main_container{
		flex: 1;
		display: flex;
		flex-direction: column;
		min-height: 100vh;
		width: calc(100% - 320px);
	}
	.column_box__thumb{
		margin-right: 3rem;
	}
	#site_header{
		width: 320px;
		padding: 0;
	}
	#site_header__sticky{
		position: sticky;
		top: 0;
		padding: 1rem 3rem;
		overflow: auto;
		height: 100vh;
	}
	.site_description{
		font-size: 1.2rem;
	}
	.site_description br{
		display: block;
	}
	#header_logo{
		width: 100%;
	}
	#header_nav__btn{
		display: none;
	}
	#header_nav__inner{
		width: auto;
		opacity: 1;
		visibility: visible;
		position: static;
		background: none;
		border: 0;
		padding: 0;
	}
	.main_navigation li a{
		font-size: 1.4rem;
	}
	.header_contact__link h2{
		font-size: 1rem;
		align-self: stretch;
	}
	#header_contact{
		margin: 2rem 0 1rem;
	}
	.header_contact__link{
		height: 8rem;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: .5rem 1rem 0;
		flex-direction: column;
	}
	#footer_logo__img{
		width: 100%;
	}
	.service_link__img{
		width: 11rem;
		height: 11rem;
		margin-top: -5rem;
	}
	.service_link__box .btn_link{
		margin-top: 3rem;
	}
	
}


@media screen and (min-width: 1300px){
	.block_flex__title{
		width: 35%;
	}
	.block_flex__inner{
		width: 60%;
	}
}



@media screen and (min-width: 1180px) and (min-height: 800px){
	#site_header__sticky{
		padding: 3rem;
	}
	.main_navigation{
		margin: 3rem 0;
	}
}

@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn_link:hover .arrow{
		left: 2.5rem;
	}
	.service_link__box:hover .btn_link .arrow{
		right: .5rem;
		left: auto;
	}
	.service_link__box:hover .service_link__img{
		translate: 0 -5px;
	}
}