@charset "utf-8";
/*
ページごとの設定や、位置調整、テキスト装飾などで使用する汎用的なものとを記述します。
Anything used for general purpose such as setting for every page, position adjustment, and text decoration will be written.

接頭辞はUtilityの頭文字を取って【u_】とします。
Prefix will take the "Utility" first letter and use it as "u_".

clearfixのみ、例外的に接頭辞をつけてません。
This not apply to "clearfix".

フォントサイズはremで指定します。
"rem" will be used for font-size.
*/

.u_mat0 { margin-top: 0; }
.u_mat5 { margin-top: 5px; }
.u_mat10 { margin-top: 10px; }
.u_mat20 { margin-top: 20px; }
.u_mat30 { margin-top: 30px; }
.u_mat40 { margin-top: 40px; }
.u_mat50 { margin-top: 50px; }

.u_mab0 { margin-bottom: 0; }
.u_mab5 { margin-bottom: 5px; }
.u_mab10 { margin-bottom: 10px; }
.u_mab15 { margin-bottom: 15px; }
.u_mab20 { margin-bottom: 20px; }
.u_mab25 { margin-bottom: 25px; }
.u_mab30 { margin-bottom: 30px; }
.u_mab40 { margin-bottom: 40px; }
.u_mab50 { margin-bottom: 50px; }
.u_mab60 { margin-bottom: 60px; }
.u_mab70 { margin-bottom: 70px; }
.u_mab80 { margin-bottom: 80px; }
.u_mab90 { margin-bottom: 90px; }
.u_mab100 { margin-bottom: 100px; }
.u_mab120 { margin-bottom: 120px; }
.u_mab150 { margin-bottom: 150px; }

.u_mar10 { margin-right: 10px; }
.u_mar20 { margin-right: 20px; }

.u_mal10 { margin-left: 10px; }
.u_mal20 { margin-left: 20px; }
.u_mal30 { margin-left: 30px; }
.u_mal50 { margin-left: 50px; }

.u_malm1rem { margin-left: -1rem; }

.u_ALcenter { text-align: center!important; }
.u_ALright { text-align: right!important; }
.u_ALleft { text-align: left!important; }
.u_ALtop { vertical-align: top; }
.u_ALmiddle { vertical-align: middle; }
.u_ALbottom { vertical-align: bottom; }
.u_ALsub{
  font-size: 80%;
  vertical-align:baseline;
}

.u_float_left { float: left; }
.u_float_right { float: right; }

.u_red { color: #e60012; }
.u_black { color: #333; }
.u_white { color: #fff; }
.u_yellow { color: #f8e187; }

.u_bold { font-weight: bold; }
.u_fw_normal { font-weight: normal!important; }
.u_underline { text-decoration: underline; }
.u_strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.u_img_floatL { float: left; margin-right: 20px; }
.u_img_floatR { float: right; margin-left: 20px; }

.u_fs11 { font-size: 1.1rem; }
.u_fs12 { font-size: 1.2rem; }
.u_fs13 { font-size: 1.3rem; }
.u_fs14 { font-size: 1.4rem; }
.u_fs15 { font-size: 1.5rem; }
.u_fs16 { font-size: 1.6rem; }
.u_fs17 { font-size: 1.7rem; }
.u_fs18 { font-size: 1.8rem; }
.u_fs19 { font-size: 1.9rem; }
.u_fs20 { font-size: 2rem; }
.u_fs21 { font-size: 2.1rem; }
.u_fs22 { font-size: 2.2rem; }
.u_fs23 { font-size: 2.3rem; }
.u_fs24 { font-size: 2.4rem; }
.u_fs28 { font-size: 2.8rem; }
.u_fs30 { font-size: 3rem; }
.u_fs50 { font-size: 5rem; }

.u_line_height1{ line-height: 1.5; }
.u_line_height2{ line-height: 2; }
.u_line_height3{ line-height: 3; }

.u_inline { display: inline; }
.u_inlineblock { display: inline-block; }

.u_disable { pointer-events: none; }

.u_hover:hover { opacity: .7; }

.u_sp {
  display: none;
}

.u_nowrap{
  white-space: nowrap;
}

/*----------------------------------------------
	.u_indent
---------------------------------------------*/
.u_indent01 {
	padding-left: 1em;
	text-indent: -1em;
}
.u_indent02 {
	padding-left: 2em;
	text-indent: -2em;
}
.u_indent03 {
	padding-left: 3em;
	text-indent: -3em;
}

/*----------------------------------------------
	.u_flex
---------------------------------------------*/
.u_flex {
	display: flex;
}

.u_flex.is_jc_end { 
  flex-wrap: wrap;
	justify-content: flex-end;
}
.u_flex.is_jc_center { 
	flex-wrap: wrap;
	justify-content: center;
}
.u_flex.is_jc_spBetween { 
	flex-wrap: wrap;
	justify-content: space-between;
}
.u_flex.is_jc_spAround { 
	flex-wrap: wrap; 
	justify-content: space-around;
}
.u_flex.is_jc_spEvenly { 
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.u_flex.is_nowrap {
  flex-wrap: nowrap;
}

.u_flex.is_column {
	flex-direction: column;
	flex-wrap: wrap;
}
.u_flex.is_ai_end { 
	align-items: flex-end;
}
.u_flex.is_ai_center { 
	align-items: center;
}

.u_gap5, .u_flex.is_gap5 { gap: 5px; }
.u_gap20, .u_flex.is_gap20 { gap: 20px; }
.u_gap30, .u_flex.is_gap30 { gap: 30px; }
.u_gap50, .u_flex.is_gap50 { gap: 50px; }
.u_gap80, .u_flex.is_gap80 { gap: 80px; }

.u_shrink0{ flex-shrink: 0; }

.u_w100per{ width: 100%; }

/*----------------------------------------------
	width
---------------------------------------------*/
.u_w300{
  width: 100%;
  max-width: 300px;
 }
.u_w500{
  width: 100%;
  max-width: 500px;
 }

/*----------------------------------------------
	.clearfix
---------------------------------------------*/
.clearfix:after {
    display: block;
    clear: both;
    content: " ";
}

.u_logo{
  flex-shrink: 0;
  transition: 0.2s
}
.u_logo:hover{
  opacity: 0.7;
}
.u_logo img{
  height: 44px;
}
.u_logo img:hover{
  opacity: 1;
}
.u_logo p{
  color: #333;
}
.u_logo .is_sm{
  display: none;
}
/* スクロール時 */
/* .l_header_area.is_active .u_logo img{
  width: 80px;
}
.l_header_area.is_active .u_logo p{
  font-size: 1.6rem;
} */
/* フッター */
.l_footer .u_logo{
  justify-content: flex-start;
}
.l_footer .u_logo:hover{
  opacity: 1;
}
.l_footer .u_logo img{
  height: unset;
  width: 270px;
}

.u_mv_copy{
  width: 530px;
  position: absolute;
  top: calc(50% - (180px - 130px) / 2);
  z-index: 2;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.u_link_policy a{
  color: #fff!important;
  text-decoration: underline;
  font-size: 1.2rem;
  display: block;
  font-weight: normal;
}
.u_link_policy a:hover{
  opacity: 0.7;
}

.u_copy{
  color: #333;
  font-size: 1.2rem;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.u_tel a{
  color: #fff!important;
  text-decoration: underline;
}

.u_news_ttl{
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
}
.u_news_ttl span{
  font-size: 3rem;
}
.u_news_ttl::after{
  content: '';
  background: var(--color);
  width: 15%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.u_news_ttl::before{
  content: '';
  background: #A3A3A3;
  width: 84%;
  height: 2px;
  border-radius: 100px;
  position: absolute;
  right: 0;
  bottom: -8px;
}

.u_member_card{
  box-shadow: 0 0 10px #00000012;
  width: 100%;
  max-width: 570px;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  /* height: 450px; */
}
.u_member_card:hover{
  opacity: 0.7;
}
.u_member_card *{
  display: block;
}
.u_member_card .is_ttl{
  background: var(--color);
  padding: 15px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 3.5rem;
}
.u_member_card .is_inner{
  background: #fff;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 3.5rem;
  position: relative;
  padding-left: 6%;
  height: 366px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.u_member_card .is_inner::after{
  content: '';
  background: url(../images/icon_arrow_green.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.u_member_card .is_inner img{
  max-width: 450px;
  width: 80%;
  height: auto;
  margin: 0 auto;
  transform: scale(1);
  transition: 0.2s;
}
.u_member_card:hover .is_inner img{
  transform: scale(1.1);
}
.u_member_card .is_inner img:hover{
  opacity: 1;
}

.u_pamph_card{
  background: #fff;
  box-shadow: 0 0 10px #00000012;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 200px;
  display: block;
  margin-bottom: 50px;
}
.u_pamph_card:hover{
  opacity: 0.7;
}
.u_pamph_card .is_inner{
  border-top: 5px solid var(--color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.u_pamph_card *{
  display: block;
}
.u_pamph_card .is_ttl{
  font-size: 3.2rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
  margin-bottom: 20px;
}
.u_pamph_card img{
  width: 190px;
  height: auto;
  transform: scale(1);
  transition: 0.2s;
}
.u_pamph_card:hover img{
  transform: scale(1.1);
}
.u_pamph_card img:hover{
  opacity: 1;
}
.u_pamph_card .c_link_arrow:hover{
  opacity: 1;
}
.u_pamph_card .c_link_arrow:hover span::after{
  content: '';
  content: '';
  background: #707070;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.u_lecture_card{
  box-shadow: 0 0 10px #00000012;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  display: block;
  height: 200px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.u_lecture_card img{
  transform: scale(1);
  transition: 0.2s;
  position: absolute;
  top: 0;
  left: 0;
}
.u_lecture_card::before{
  content: '';
  background: #00000047;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.u_lecture_card:hover{
  opacity: 0.7;
}
.u_lecture_card:hover img{
  transform: scale(1.1);
}
.u_lecture_card::after{
  content: '';
  background: url(../images/icon_arrow_white.svg) no-repeat;
  width: 40px;
  height: 40px;
  background-size: contain;
  position: absolute;
  top: calc(50% - 40px / 2);
  right: 40px;
  z-index: 2;
}
.u_lecture_card *{
  display: block;
}
.u_lecture_card .is_ttl{
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}


.u_pagetop{
  position: fixed;
  right: 50px;
  z-index: 99;
  opacity: 1;
  transition: unset;
}

.u_maru{
  color: #F38200;
  font-size: 2rem;
}

.u_komemark{
  font-size: 2rem;
}

.u_batsu{
  font-size: 2rem;
}

.u_download{
  position: relative;
  padding-right: 1.2em;
  display: inline-block;
}
.u_download::before{
  content: '';
  background: url(../images/icon_download.svg) no-repeat;
  width: 1em;
  height: 1em;
  background-size: contain;
  position: absolute;
  top: calc(50% - 1em / 2);
  right: 0;
}

.u_triangle{
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  display: block;
  background: #E2E2E2;
  width: 50px;
  height: 30px;
  margin: 0;
  margin: 50px auto;
}

/*----------------------------------------------
  block editor
---------------------------------------------*/
.block-editor-iframe__body h1{
  font-size: 4rem;
  font-weight: bold;
  color: var(--color);
  margin-bottom: 50px;
}

.block-editor-iframe__body :where(.wp-block){
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  max-width: 1300px;
}

.block-library-spacer__resize-container.has-show-handle,
.wp-block-spacer.is-hovered .block-library-spacer__resize-container,
.wp-block-spacer.is-selected.custom-sizes-disabled {
  background: #ff000021;
}

.wp-block-table{
  margin: 0;
}

.editor-styles-wrapper :where(:not(.is-layout-flex,.is-layout-grid))>.wp-block{
  margin-left: unset;
  margin-right: unset;
}


.wp-block-group.is-style-grid02 .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 5%;
}


/*----------------------------------------------
  slick
---------------------------------------------*/
/* MV */
.slider .slick-dots {
  bottom: 0;
}
.slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 30px 10px;
}
.slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
}
.slider .slick-dots li button:before {
  font-size: 12px;
  line-height: 1;
  width: 12px;
  height: 12px;
  color: #fff;
}
.slider .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* WORKS */
.slider_works .slick-dots {
  bottom: -60px;
}
.slider_works .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 10px;
}
.slider_works .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
}
.slider_works .slick-dots li button:before {
  font-size: 10px;
  line-height: 1;
  width: 10px;
  height: 10px;
  color: #D3D3D3;
  opacity: 1;
}
.slider_works .slick-dots li button:hover:before {
  opacity: 0.7;
}
.slider_works .slick-dots li.slick-active button:before {
  color: var(--color);
}