@CHARSET "UTF-8";
/*
Theme Name: 東友会様
date: 20２5.06.03
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root { 
  --bk: #000;
	--blue: #001253;
	--bg: #EFEFEF;
	--red: #B10E16;
	--group01: #0466A0;
	--group02: #359A33;
	--group03: #FA3467;
}

*{
	-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: 400;
	font-family: "Jost","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: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 700;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1180px;
	margin: 0 auto;
}
.short_wrap{
	max-width: 880px;
}
.section{
	padding: 4rem 0;
}
.page_container{
	padding: 0 0 8rem;
}

.bg{
	background: var(--bg);
}

.section_title{
	font-size: 2.2rem;
	color: var(--blue);
	font-weight: 600;
	line-height: 1.5;
}
.section_title span{
	font-size: 60%;
	display: block;
}

.page_header{
	padding: 5rem 0;
	text-align: center;
	background: #fff;
}
.page_title{
	font-weight: 500;
	font-size: 2.8rem;
	color: var(--blue);
	line-height: 1.4;
	text-transform: uppercase;
}
.page_title span{
	font-size: 40%;
	display: block;
}
#message_404 p{
	text-align: center;
	margin-bottom: 5rem;
}
/* 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;
}

.btn_link{
	background: var(--blue);
	border: var(--blue) solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
  position: relative;
	border-radius: 50px;
	font-weight: 700;
	transition: .3s;
}

.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;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}



/* =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;
}





/* =header
-------------------------------------------------------------- */

#page{
	padding-top: 5rem;
}
#site_header{
  padding: 0 1rem;
	background: var(--blue);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	display: flex;
	align-items: center;
	height: 5rem;
}
.site_logo{
  display: block;
  width: 75%;
	max-width: 25rem;
	margin: 0 auto 1rem;
}
#header_logo{
	width: 50%;
	max-width: 15rem;
  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;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
	width: 30px;
	height: 3px;
	background: #fff;
	border-radius: 3px;
  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: 30rem;
	height: 100%;
	background: var(--blue);
	z-index: 999;
	position: fixed;
	top: 5rem;
	right: -30rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.nav_active #header_nav__inner{
	opacity: 1;
	visibility: visible;
	right: 0;
}
#header_nav__inner .main_navigation{
	position: relative;
	padding: 3rem 0;
}
.main_navigation li a{
	display: block;
	padding: 2rem 1rem;
	color: #fff;
	position: relative;
	text-align: center;
	font-weight: 500;
}
#header_nav__inner .main_navigation li a::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50% 0;
	background: rgba(255,255,255,.7);
	width: 5rem;
	height: 1px;
}
.main_navigation li:last-child a::before{
	content: none;
}
.btn_members{
	border: #fff solid 2px;
	border-radius: 1rem;
	font-weight: 700;
	font-size: 1.6rem;
	width: 90%;
}



/* =footer
-------------------------------------------------------------- */

#site_footer{
	background: var(--blue);
	padding: 3rem 0;
}
#footer_nav .main_navigation{
	display: flex;
	flex-wrap: wrap;
	margin: 5rem 0 3rem;
	border-top: rgba(255,255,255,.7) solid 1px;
}
#footer_nav .main_navigation li{
	width: 50%;
	border-bottom: rgba(255,255,255,.7) solid 1px;
}
#footer_links{
	margin: 5rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
#footer_links li{
	border-right: #fff solid 1px;
	line-height: 1;
	margin: .5rem 0;
}
#footer_links li:last-child{
	border: 0;
}
#footer_links li a{
	font-size: 1.2rem;
	color: #fff;
	display: inline-block;
	padding: 0 1rem;
}
#footer_copy{
	text-align: center;
	font-size: 1rem;
	color: #fff;
	margin-top: 3rem;
}



/* =top
-------------------------------------------------------------- */

#main_visual{
	background: url('images/top/main_sp.jpg') no-repeat center left / cover;
	height: 65vh;
	border-bottom: var(--blue) solid 2rem;
}
#main_visual__txt{
	text-align: center;
	color: #fff;
	padding-top: 5rem;
}
#main_visual__txt h1{
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5;
}
#main_visual__txt p{
	font-weight: 400;
	font-size: 1.2rem;
}
#main_visual__txt p span{
	font-weight: 600;
	font-size: 150%;
}

#top_message__txt{
	margin: 3rem 0;
}
#top_message__txt p{
	font-weight: 700;
}
#top_message__photo{
	width: 100%;
}
#top_message__photo01{
	width: 80%;
}
#top_message__photo02{
	width: 50%;
	margin: 1rem 0 0 auto;
}

.front_title{
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}
#front_info__header .btn_link{
	margin: 0 0 0 auto;
	width: 15rem;
	font-size: 1.2rem;
	padding: 1rem 0;
}

#front_photo{
	height: 25rem;
	background: url('images/top/photo03.jpg') no-repeat center center / cover;
}

.access_map{
	margin-bottom: 3rem;
}
.gmap iframe{
	width: 100%;
	height: 40rem;
}
.access_map p{
	margin: 1rem 0;
	color: var(--blue);
	font-size: 1.6rem;
	font-weight: 600;
}
.access_map p a{
	text-decoration: underline;
}

.access_route__box{
	padding: 1.5rem 0;
	border-bottom: var(--bk) solid 1px;
	color: var(--blue);
}
.access_route__box dt{
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
}
.access_route__box dt img{
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	margin-right: 1rem;
}
.access_route__box h3{
	font-weight: 600;
}
.access_route__box p{
	margin-bottom: 1rem;
}






/* =news
-------------------------------------------------------------- */

.no_posts{
	padding: 1rem;
	text-align: center;
	background: #fff;
	color: var(--blue);
	border: var(--blue) solid 1px;
}

.news_list li{
	border-bottom: var(--bk) solid 1px;
}
.news_box__inner{
	padding: 1.5rem 0;
}
.posted_data{
	color: var(--blue);
	margin-bottom: .5rem;
	font-weight: 500;
}
.posted_cat{
	display: inline-block;
	padding: .1rem 1rem;
	border: var(--blue) solid 1px;
	background: #fff;
	border-radius: .5rem;
	margin-left: 1rem;
	font-size: 1.2rem;
}
.news_box__link{
	display: inline-block;
	margin-top: 1rem;
}

.entry_header{
	padding-bottom: 1rem;
	margin-bottom: 5rem;
	border-bottom: var(--bk) solid 1px;
}
.entry_header h1{
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 400;
	margin-top: 1rem;
}
.entry_content{
	padding-bottom: 3rem;
	border-bottom: var(--bk) solid 1px;
	margin-bottom: 3rem;
}
.entry_content h2{
	margin: 4rem 0 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-left: 1.5rem;
	border-left: var(--blue) solid .4rem;
}
.entry_content h3{
	background: var(--blue);
	padding: 1rem;
	color: #fff;
	font-size: 1.6rem;
	margin: 3rem 0 1rem;
}
.entry_content h4{
	color: var(--blue);
	font-size: 1.6rem;
	margin: 2rem 0;
}
.entry_content p{
	margin: 2rem 0;
}
.entry_content a{
	text-decoration: underline;
	color: var(--blue);
}
.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_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;
	margin: 0 .2rem;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	border: var(--blue) solid 1px;
	color: var(--blue);
	display: flex;
	align-items: center;
	justify-content: center;
}
.page_links a:hover{
	background: var(--bg);
}
.page_links span.current{
	background: var(--blue);
	color: #fff;
}
.page_links a.next{
  margin-left: 1rem;
}
.page_links a.prev{
  margin-right: 1rem;
}





/* =Contact
-------------------------------------------------------------- */

#page_contact{
	background: var(--bg);
}
.form_wrap{
	max-width: 660px;
	padding-top: 5rem;
}
.form_icon{
	display: block;
	width: 4rem;
	margin: 0 auto 3rem;
}
.form_wrap th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
	font-size: 1.4rem;
	font-weight: 600;
}
.form_wrap td{
	display: block;
	margin-bottom: 3rem;
	padding: 0;
}
.require{
	background: #DE5F5F;
	color: #fff;
	font-size: 1.2rem;
	padding: .2rem 1rem;
	border-radius: 2px;
	margin-left: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  border: 0;
	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: 20px;
	height: 20px;
	vertical-align: middle;
}
.form_wrap label{
	cursor: pointer;
}
.form_wrap .wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
	background: #fff;
}
.btn_submit{
	font-size: 1.6rem;
	border: var(--blue) solid 2px;
}
.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
}
.policy_check p{
	margin: 1rem 0;
}

.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}

.form_recaptcha{
	border: #999 solid 1px;
	padding: 20px 5%;
	margin: 0 auto;
	max-width: 500px;
	font-size: 12px;
}
.form_recaptcha p{
	margin: 0;
	text-align: left;
}
.form_recaptcha p a{
	text-decoration: underline;
	margin: 0 5px;
}
.grecaptcha-badge{
	visibility: hidden;
}



/* =about
-------------------------------------------------------------- */

.block{
	margin-bottom: 5rem;
}
.about_title{
	background: var(--blue);
	position: relative;
	color: #fff;
	padding: 1rem 2rem;
	margin-bottom: 2rem;
	font-size: 2rem;
}
.about_title::after{
	content: '';
	background: #1030A2;
	height: 100%;
	width: 9rem;
	position: absolute;
	top: 0;
	right: 0;
	clip-path: polygon(0 0,100% 0,100% 100%);
}
#message_name{
	margin-top: 2rem;
}
#details h3{
	font-size: 1.6rem;
	margin-bottom: 1rem;
	color: var(--blue);
	font-weight: 600;
}
#details p{
	margin-bottom: 3rem;
}
#details p a{
	text-decoration: underline;
}

#service ul li{
	color: var(--blue);
	font-size: 1.6rem;
	font-weight: 600;
}

#history table th{
	background: var(--bg);
	border: var(--bk) solid 1px;
	text-align: center;
	color: var(--blue);
	padding: 1rem .5rem;
}
#history table td{
	border: var(--bk) solid 1px;
	color: var(--blue);
	font-size: 1.2rem;
	vertical-align: middle;
}
#history table td .history_img{
	margin-top: 1rem;
}




/* =group
-------------------------------------------------------------- */

.group_img{
	text-align: center;
	margin: 0 auto;
	max-width: 1040px;
}
#group_structure h2{
	font-size: 2.2rem;
	font-weight: 600;
	color: var(--blue);
	padding-bottom: .5rem;
	border-bottom: var(--blue) solid 1px;
	margin-bottom: 3rem;
}
#group_structure__inner{
	margin: 3rem auto 0;
	max-width: 1040px;
}
#group_structure__inner p{
	margin-bottom: 3rem;
}

.group_title{
	background: var(--group01);
	padding: 1rem 2rem;
	color: #fff;
	font-size: 2.2rem;
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	border-radius: 5px;
}
.group_title span{
	margin: 0 0 0 auto;
	font-size: 80%;
}
.group_en{
	color: var(--group01);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 2rem;
}
.group_inner p{
	margin: 2rem 0;
}
.group_members h3{
	background: var(--group01);
	color: #fff;
	padding: 1rem;
	text-align: center;
	font-size: 1.8rem;
}
.group_members p{
	padding: 1rem;
}
.group_members p a{
	text-decoration: underline;
	display: inline-block;
}
.group_members p a:hover{
	text-decoration: none;
}
#group02 .group_members h3,
#group02 .group_title{
	background: var(--group02);
}
#group02 .group_en{
	color: var(--group02);
}

#group03 .group_members h3,
#group03 .group_title{
	background: var(--group03);
}
#group03 .group_en{
	color: var(--group03);
}





/* =event
-------------------------------------------------------------- */

#event_map,
#event_main{
	text-align: center;
}
#event_message{
	background: var(--red);
	color: #fff;
}
.event_title{
	text-align: center;
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 3rem;
}
.event_pdf{
	background: var(--red);
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.event_pdf img{
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	margin-right: 1rem;
}

#event_entry{
	background: #FFFCDB;
}
.event_entry__block .event_title{
	color: var(--red);
	margin-bottom: 2rem;
}
.event_entry__block .event_title span{
	font-size: 60%;
	display: block;
}

.entry_table__wrap{
	overflow: auto;
	position: relative;
}
.entry_table{
	table-layout: fixed;
}
.entry_table th{
	border: #BEB553 solid 1px;
	background: #008CD7;
	color: #fff;
	font-size: 1.2rem;
	white-space: nowrap;
	text-align: center;
	width: 10rem;
	font-weight: 600;
}
.entry_table th.entry_table__num{
	width: 9rem;
}
.entry_table th.entry_table__title{
	width: 20rem;
}
.entry_table th.entry_table__txt{
	width: 20rem;
}
.entry_table td{
	border: #BEB553 solid 1px;
	background: #fff;
	font-size: 1.2rem;
	vertical-align: middle;
}
.entry_table td a:hover{
	text-decoration: underline;
}
.text_center{
	text-align: center;
}
.btn_more{
	font-size: 1rem;
	padding: .5rem;
	margin-top: .5rem;
	border-radius: .5rem;
}
.btn_more:hover{
	text-decoration: none !important;
}
.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: none;
  animation: scroll-hint-animation 2s infinite ease;
	font-size: 1.2rem;
	border-radius: 50px;
}
@keyframes scroll-hint-animation {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

.scroll-hint--show {
  display: block;
}

.fancybox-slide--html{
	padding: 3rem 5%;
}
.fancybox-content{
	padding: 3rem 5%;
}
.fancybox-content .entry_content{
	border: 0;
}
.fancybox-close-small{
	background: var(--blue);
}
.fancybox-close-small svg path{
	fill: #fff;
}
.btn_close{
	margin-top: 3rem;
}




/* =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;
		color: inherit;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	.section{
		padding: 5rem 0;
	}
	.section_title{
		font-size: 3rem;
	}
	.page_title{
		font-size: 4rem;
	}
	#footer_inner{
		display: flex;
	}
	#footer_logo{
		width: 25rem;
		margin: 0 auto 0 0;
	}
	#footer_nav{
		flex: 1;
	}
	#footer_nav .main_navigation{
		border: 0;
		margin: 1rem 0 2rem;
		justify-content: flex-end;
	}
	#footer_nav .main_navigation li{
		width: auto;
		border: 0;
		margin-left: 2rem;
	}
	#footer_nav .main_navigation li a{
		padding: .5rem 0;
		font-size: 1.2rem;
	}
	#footer_nav .btn_members{
		margin: 0 0 0 auto;
		width: 30rem;
	}
	#footer_links{
		margin: 5rem 0 1rem;
	}
	#main_visual{
		background: url('images/top/main.jpg') no-repeat center center / cover;
		height: 50rem;
	}
	#main_visual__txt h1{
		font-size: 3.4rem;
	}
	#main_visual__txt p{
		font-size: 1.4rem;
	}
	#top_message__txt{
		text-align: center;
		line-height: 2;
	}
	#top_message__photo01{
		width: 65%;
	}
	#top_message__photo02{
		width: 33%;
		margin-top: -15rem;
	}
	.front_inner__wrap{
		display: flex;
		align-items: flex-start;
	}
	.front_title{
		width: 20%;
		margin-right: 5rem;
		display: block;
	}
	.front_inner{
		flex: 1;
	}
	#front_info__header .btn_link{
		width: 100%;
		margin: 3rem 0 0;
	}
	.news_box__inner{
		display: flex;
		padding: 2rem 0;
	}
	.posted_data{
		width: 20%;
		margin-right: 3rem;
	}
	.posted_title{
		flex: 1;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.pasted_date{
		display: block;
	}
	.posted_cat{
		margin: .5rem 0 0;
		width: 100%;
		display: block;
		text-align: center;
	}
	.entry_header h1{
		font-size: 2.4rem;
		margin: 2rem 0;
	}
	.entry_content{
		padding: 0 5% 3rem;
	}
	.group_inner{
		margin: 2rem 0;
		display: flex;
		align-items: center;
	}
	.group_img{
		flex: 0 0 35%;
		margin-right: 3rem;
	}
	.group_inner p{
		margin: 0;
	}
	.group_members p{
		padding: 2rem 5%;
	}
	#group_structure h2{
		font-size: 3rem;
	}
	.event_title{
		font-size: 3rem;
	}
	#event_message p{
		text-align: center;
		line-height: 2;
		font-size: 1.6rem;
	}
	#history table td .history_img{
		width: 30%;
		margin: 0 0 0 3rem;
		float: right;
	}
}



@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
	#page{
		padding-top: 8rem;
	}
	#site_header{
		height: 8rem;
		padding: 0 3%;
		transition: .3s;
	}
	.scroll #site_header{
		height: 7rem;
	}
	#header_logo{
		max-width: 30rem;
		width: 25%;
	}
	.scroll #header_logo{
		width: 20%;
	}
	#header_nav{
		flex: 1;
	}
	#header_nav__btn{
		display: none;
	}
	#header_nav__inner{
		position: static;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		overflow: visible;
		opacity: 1;
		visibility: visible;
		background: none;
		max-width: 100%;
		width: auto;
	}
	.main_navigation{
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	.main_navigation li{
		margin-left: 2rem;
	}
	.main_navigation li a{
		padding: .5rem 0;
		font-size: 1.2rem;
	}
	#header_nav__inner .main_navigation li a::before{
		content: none;
	}
	.main_navigation li a::after{
		content: '';
		width: 0;
		left: 0;
		position: absolute;
		bottom: 0;
		background: #fff;
		transition: .3s;
		opacity: 0;
		height: 2px;
	}
	.main_navigation li.current a::after,
	.main_navigation li a:hover::after{
		width: 100%;
		opacity: 1;
	}
	.btn_members{
		width: 12rem;
		margin: 0 0 0 3rem;
		font-size: 1.2rem;
		padding: 1rem 0;
	}
	#footer_logo{
		width: 30rem;
		max-width: 30rem;
	}
	#history table th{
		width: 25%;
	}
	.group_title{
		padding: 1rem 3rem;
		font-size: 3rem;
	}
	.group_en{
		font-size: 5rem;
	}
	#front_photo{
		height: 30rem;
		background-attachment: fixed;
	}
}



@media screen and (min-width: 1200px){
	.main_navigation li{
		margin-left: 3rem;
	}
}



@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{
		background: #fff;
		color: var(--blue);
	}
	#details p a:hover{
		text-decoration: none;
	}
	.posted_title a:hover,
	#footer_links li a:hover{
		text-decoration: underline;
	}
	.event_pdf:hover{
		background: #000;
		color: #fff;
	}
}