/*
Theme Name:original
Author:SolabotSchool
Version:1.00
*/

/*全体設定*/
/*ヘッダー*/
/*フッター*/
/*トップページ*/
/*アーカイブページ*/
/*NEWS詳細*/
/*PROGRAM詳細*/
/*メディアクエリ・ブレイクポイント*/

/*-----------------------------------------------全体設定-----------------------------------------------*/
/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

img {
	display: block;
    width: 100%;
    height: auto;
}

/*全体幅*/
*, *:before, *:after { box-sizing: border-box;}


/*フォント*/
@font-face {
	font-family: "DotGothic16-Regular";
	src: url("/wp-content/themes/original/fonts/DotGothic16-Regular.woff") format("woff");
	font-display: swap;
}

div,a,p,span {
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

}
h1,h2,h3,h4,h5 {
	font-family:"Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;

}

/*フォントちらつき対策*/

/*テキストリンクアニメーション*/
.header_nav_container a,
.program_item_title a,
.news_item_title a {
  position: relative;
  background-color: #fff;
  padding: 0.1vw 0.5vw;
}
.header_nav_container a:before,
.program_item_title a:before,
.news_item_title a:before{
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  mix-blend-mode: difference;
  transition: 0.3s;
}
.header_nav_container a:hover:before,
.program_item_title a:hover:before,
.news_item_title a:hover:before{
  width: 100%;
}

/*ボタン*/
.btn {
  position: relative;
  background: #000;
  width: 14.287vw;
  height: 3.572vw;
  display: flex;
  justify-content: center;
  border-radius: 0.572vw;
  transition: all 0.2s;
  border: 1px solid #000;
  overflow: hidden;
}
.btn a {
  font-size: 1.072vw;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: bold;
  transition: all 0.2s;
  position: relative;
}
.btn a img {
  width: 1.43vw;
  margin-right: 0.572vw;
  margin-top: 2px;
  transition: all 0.2s;
}

.fv_contents .btn img {
  width: 2.144vw;
  margin-right: 0.715vw;
}
.fv_contents .btn a {
  font-size: 1.287vw;
}

/*ボタンアニメーション*/
.btn:hover a {
  color: #000;
}
.btn:hover a img {
  filter: brightness(0);
}
.btn:hover a {
  color: #000;
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  border-radius: 0.572vw;
}
.btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease;
  transition-property: transform;
}

/*アニメーション*/
.zoomin.animate {
  opacity: 0;
  animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*フェードインアニメーション*/
.scroll_in {
  opacity: 0;
}
.scroll_in.active {
  opacity: 0;
  animation-name: fadein;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateY(20px);
  }
  100% {
     opacity: 1;
     transform: translateY(0px);
  }
}

/*ローディング*/
.loading {
  width: 100vw;
  height: 100vh;
  background: #000;
  animation: bgAnime 1s linear 1.8s forwards;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loading_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin: auto; 
  z-index: 7;
  width: 15.6vw;
}
.loading_logo::after {
  content: "";
  width: 18vw;
  height: 8vw;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  animation: textAnime1 1.3s linear forwards;
}
.loading_logo img {
  filter: contrast(0%) brightness(500%);
}

/*keyframe*/
@keyframes textAnime1 {
  0% {
    transform: translateX(0); /* ここも translateX(-50%) にすると、中央から動かなくなります */
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes bgAnime {
  0% {
    opacity: 1;
    width: 100vw;
    height: 100vh;
  }
  99% {
    opacity: 0;
    width: 100vw;
    height: 100vh;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
}

/*-----------------------------------------------ヘッダー-----------------------------------------------*/
.main-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-branding {
  position: fixed;
  top: 1.43vw;
  left: 1.644vw;
  z-index: 999;
  mix-blend-mode: difference;
}
.site-logo {
  width: 12.144vw;
}
.header_contents {
  position: fixed;
  top: 1.43vw;
  right: 0.787vw;
  z-index: 999;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #000;
  border-radius: 0.715vw;
  padding: 0.43vw 0.43vw 0.43vw 2.287vw;
}
.header_nav {
  margin-left: auto;
}
.header_nav_container {
  display: flex;
  height: 100%;
}
.header_nav_container {
  margin-right: 0.715vw;
}
.nav_item {
  margin-right: 1vw;
}
.nav_item a {
  font-size: 1.072vw;
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.nav_item a img {
  width: 0.644vw;
  margin-right: 0.43vw;
}

.header_cta .btn {
  width: 15vw;
  height: 3.43vw;
}

/* Drawer Button */
.drawer-hamburger {
  background-color: transparent;
  box-sizing: content-box;
  display: block;
  outline: 0;
  padding: 3.201vw;
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  width: 9.334vw;
  min-width: 9.334vw;
  z-index: 102;
  z-index: 9999;
  height: 4.268vw;
  border: 1px solid #000;
  background: #fff;
  border-radius: 2.134vw;
  position: fixed;
  top: 4.268vw;
  right: 5vw;
}
.drawer-hamburger::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 65px;
  transform: translate(-50%,-50%);
}
.drawer-hamburger-icon {
	position: relative;
	display: block;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
	background-color: #111;
	height: 2px;
	transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	width: 100%;
}
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
	position: absolute;
	left: 0;
	content: ' ';
}
.drawer-hamburger-icon:before {
	top: -2.134vw;
}
.drawer-hamburger-icon:after {
	top: 2.134vw;
}
.drawer-opened .drawer-hamburger-icon {
	background-color: transparent;
}
.drawer-opened .drawer-hamburger-icon:before,
.drawer-opened .drawer-hamburger-icon:after {
	top: 0;
}
.drawer-opened .drawer-hamburger-icon:before {
	transform: rotate(45deg);
}
.drawer-opened .drawer-hamburger-icon:after {
	transform: rotate(-45deg);
}

/* Drawer Navigation */
.drawer-overlay {
	display: none;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}
.drawer-navigation {
  background: #000;
  height: 48vw;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  width: 41.334vw;
  z-index: 101;
  -webkit-overflow-scrolling: touch;
  border-radius: 5.334vw 0 5.334vw 5.334vw;
  padding-top: 20.001vw;
  padding-left: 6.401vw;
}
.drawer-navigation-content {
	box-sizing: border-box;
	height: 100%;
	overflow-y: auto;
	padding: 60px 75px 60px 40px;
	width: 100%;
}
.drawer-opened .drawer-overlay {
	display: block;
}
.drawer-opened .drawer-navigation {
	box-shadow: 0 0 90px rgba(0, 0, 0, 0.2);
	transform: translateX(0);
}

/*ドロワーオープン時スクロール禁止*/
html.overflow_hidden {
  overflow: hidden;
}

/*-----------------------------------------------フッター-----------------------------------------------*/
.bottom_kv_outer {
  position: relative;
  overflow: hidden;
}
.bottom_kv_outer::before {
  content: "";
  display: block;
  background: url(/wp-content/themes/original/images/bottom_kv_bg.webp);
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(8px);
  transition: all 0.5s;
}
.bottom_kv_outer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000d6;
}
.home .bottom_kv_outer::after {
  background: #00000047;
}
.bottom_kv_outer:hover:before {
  transform: scale(1.4);
}
.bottom_kv_container {
  position: relative;
  z-index: 1;
  display: flex;
  width: 78.5vw;
  margin: auto;
  padding-top: 6.43vw;
  padding-bottom: 5vw;
}
.bottom_kv_image {
  width: 41.6vw;
  margin-right: 4.215vw;
}
.bottom_kv_contents {
}
.bottom_kv_title {
  font-size: 2.858vw;
  line-height: 3.93vw;
  color: #fff;
  font-weight: bold;
  margin-bottom: 2.358vw;
  padding-bottom: 2.858vw;
  border-bottom: 1px solid #ffffff4d;
}
.narrow_text {
  letter-spacing: -0.1vw;
}
.bottom_kv_cta {
  display: flex;
  margin-bottom: 2.072vw;
  width: auto;
  gap: 1vw;
}
.btn.bottom_kv_btn {
  width: auto;
  flex-shrink: 0;
  padding: 0 1vw;
  border: 1px solid #004FFF;
}
.bottom_kv_cta .sns_item:first-child {
  margin: 0;
}
.bottom_kv_cta .sns_items {
  gap: 0.4vw;
}
.sns_items {
  display: flex;
  align-items: center;
}
.sns_item {
  width: 2.787vw;
}
.sns_item a {
  transition: all 0.3s;
}
.sns_item a:hover {
  opacity: 0.5;
}
.sns_item:first-child {
  margin-right: 0.572vw;
}
.bottom_kv_caption {
  font-size: 0.858vw;
  line-height: 1.572vw;
  color: #fff;
}

/*リンクグループ*/
.link_group {
  position: relative;
  z-index: 998;
  width: 78.5vw;
  margin: 0 auto 5vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 2.3vw;
}

.link_item {
  max-width: 30.4vw;
  margin-bottom: 5vw;
}
.link_item:nth-last-child(1),.link_item:nth-last-child(2) {
  margin-bottom: 0;
}

#footer {
  border-top: 1px solid #fff;
  background: #000;
  position: relative;
  z-index: 1;
}
.footer_container {
  display: flex;
  justify-content: space-between;
  width: 92.9vw;
  margin: auto;
  padding-top: 5.715vw;
  padding-bottom: 5.858vw;
  align-items: center;
}
.footer_contents {
  display: flex;
  align-items: center;
}
.footer_logo {
  width: 19.215vw;
  margin-right: 3.001vw;
}
.btn.footer_btn {
  border: 1px solid #004FFF;
}
.footer_nav ul {
  display: flex;
  justify-content: center;
}
.footer_nav ul li:not(.footer_nav ul li:last-child) {
  margin-right: 2vw;
}
.footer_nav ul li a {
  font-size: 0.858vw;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 0.1vw 0.5vw;
}
.footer_nav ul li a:before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  mix-blend-mode: difference;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}
.footer_nav ul li a:hover::before {
  width: 100%;
}
.footer_meta {
  width: 20.001vw;
  margin-left: auto;
}
.footer_nav {
  margin-bottom: 1.072vw;
}
.copyright {
  font-size: 0.715vw;
  color: #fff;
  opacity: 0.8;
  text-align: center;
}

/*-----------------------------------------------トップページ-----------------------------------------------*/
/*FV*/
.fv_container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #f2f2f2;
}
.fv_bg {
  height: 100%;
  opacity: 0;
}
.fv_bg img {
  height: 100%;
  object-fit: cover;
}
.fv_bg2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.fv_bg2 img {
  height: 100%;
  object-fit: cover;
}

.fv_contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0.8) translate(-50%,-50%);
  transform-origin: left center;
  opacity: 0;
  z-index: 0;
}
/*fv_contents用*/
.fv_contents_zoomin.animate {
  animation: fvContentsZoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes fvContentsZoomIn {
  0% {
    transform: scale(0.8) translate(-50%,-50%);
    opacity: 0;
    transform-origin: left center; /* アニメーション開始時にも明示的に指定 */
  }
  100% {
    opacity: 1;
    transform: scale(1) translate(-50%,-50%);
    transform-origin: left center; /* アニメーション終了時にも明示的に指定 */
  }
}
.fv_logo {
  width: 59.1vw;
  margin-bottom: 0.715vw;
}
.fv_contents .btn {
  margin: auto;
  width: 19.215vw;
  height: 4.715vw;
}

.fv_image_man {
  position: absolute;
  bottom: -7vw;
  left: 0;
  width: 46.4vw;
  z-index: 9999;
  opacity: 0;
}
.fv_image_woman {
  position: absolute;
  bottom: -3.5vw;
  right: 1.501vw;
  width: 38.4vw;
  z-index: 9999;
  opacity: 0;
}

.scroll_image {
  position: absolute;
  right: 1.5vw;
  bottom: 1.5vw;
  cursor: pointer;
}
.scroll_image_wrap {
  position: relative;
  width: 9.787vw;
  cursor: pointer;
  z-index: 99999;
  height: 9.787vw;
}
.scroll_image img {
  position: absolute;
}
.scroll_image1 {
  top: 0;
  right: 13px;
  animation: 10s linear infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(-360deg); }
}
.scroll_image2 {
  width: 7.5vw;
  top: 1.4vw;
  left: 2.3vw;
}
.scroll_image2 {
  width: 7.5vw;
  top: 1.3vw;
  left: 2.5vw;
}

/*FVアニメーション遅延まとめ*/
.fv_contents_zoomin.zoomin {
  animation-delay: 0.3s;
}
.fv_bg.zoomin {
  animation-delay: 0.5s;
}
.fv_bg2.zoomin {
  animation-delay: 0.8s;
}
.fv_image_man.zoomin {
  animation-delay: 0.8s;
}
.fv_image_woman.zoomin {
  animation-delay: 0.8s;
}

/*home about*/
.home_about {
  position: relative;
}
.home #page::before {
  content: "";
  display: block;
  background: url(/wp-content/themes/original/images/home_about_bg.webp);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
}
.home #page::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.76;
  z-index: 0;
}
.home_about_container {
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home_about_inner {
  padding-top: 20vw;
  padding-bottom: 20vw;
  position: relative;
  z-index: 1;
}
.home_about_title {
  margin-bottom: 12vw;
}
.home_about_title .home_h2 {
  font-size: 3vw;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  line-height: 1.5;
}
.adjust {
  margin-right: 3vw;
}
.home_about_contents p {
  font-weight: bold;
  font-size: 1.43vw;
  line-height: 2.5;
}
.home_about_image {
  position: absolute;
}
.home_about_image.home_about_image1 {
  width: 20.501vw;
  top: 50%;
  left: -1.858vw;
}
.home_about_image.home_about_image2 {
  width: 9.43vw;
  top: 60%;
  left: 12.787vw;
}
.home_about_image.home_about_image3 {
  width: 12.072vw;
  top: 50%;
  right: 9.287vw;
}
.home_about_image.home_about_image4 {
  width: 11.287vw;
  top: 60%;
  right: 2.787vw;
}
.home_about_image.home_about_image5 {
  width: 19.787vw;
  top: 70%;
  right: 0;
}

/*ドットアニメーション*/
#dot_bg {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 0.7;
}

/*背景切り替え*/
.home_about_container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 1.5s;
  opacity: 1;
}
.home_about_container.active::before {
  opacity: 0;
}

/*home program*/
.home_program_container {
  position: relative;
  padding-top: 10.6vw;
  background: #fff;
}
.home_program_container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 21.2vw;
  background: url(/wp-content/themes/original/images/home_program_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.home_program .home_title_label {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: bold;
  font-size: 1.287vw;
  letter-spacing: 0.06em;
  color: #000;
}
.home_program .home_title {
  text-align: center;
  margin-bottom: 4.644vw;
}
.home_program .home_h2 {
  font-size: 3.8vw;
  letter-spacing: 0.01em;
  color: #000;
}
.program_items {
  display: flex;
  flex-wrap: wrap;
  width: 78.5vw;
  margin: auto;
  justify-content: space-between;
}
.program_items.scroll_in.active {
  animation-delay: 1.2s;
}
.program_item {
  width: 25.4vw;
  margin-bottom: 3.644vw;
}
.program_items::after {
  content: "";
  width: 25.4vw;
}
.program_item_image {
  position: relative;
  margin-bottom: 1.287vw;
}
.program_item_image img {
  border: 1px solid #ddd;
}
.program_item_cat {
  position: absolute;
  top: 0.572vw;
  left: 0.644vw;
  background: #FFF451;
  border: 1px solid #000;
  border-radius: 0.215vw;
  font-weight: bold;
  font-size: 0.572vw;
  line-height: 1;
  text-align: center;
  color: #000;
  padding: 0.287vw 0.787vw 0.144vw;
}
.program_item_title a {
  font-size: 1.144vw;
  line-height: 1.787vw;
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

/*home news*/
.home_news_container {
  padding-top: 7.001vw;
  padding-bottom: 8.644vw;
  background: #fff;
  position: relative;
}

.home_news_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 27.5vw;
  animation-delay: 0.8s !important;
  opacity: 0;
}

.home_news_inner {
  display: flex;
  width: 78.5vw;
  margin: auto;
  position: relative;
  z-index: 1;
}
.home_news_header {
  width: 20.644vw;
}
.home_title {
  margin-bottom: 2.501vw;
}
.home_news .home_title {
  margin-bottom: 1vw;
}
.home_h2 {
  font-size: 4.287vw;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.6vw;
}
.home_news .home_h2 {
  color: #000;
}
.home_title_label {
  font-size: 1.287vw;
  letter-spacing: 0.06em;
  color: #000;
  font-weight: bold;
}

.home_news .btn {
  border-radius: 0.572vw;
  background: #fff;
  border: 1px solid #000;
  position: relative;
  width: 12.858vw;
  height: 3.358vw;
}
.home_news .btn a {
  color: #000;
  padding-left: 10px;
}
.btn.more_btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2.001vw;
  transform: translateY(-50%);
  background: #000;
  width: 0.572vw;
  height: 0.572vw;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.home_news .btn:hover a {
  color: #fff;
}
.home_news .btn:hover:after {
  background: #fff;
}

/*白ボタン用アニメーション*/
.btn.more_btn::before {
  background: #000;
}

.home_news .news_items {
  flex-grow: 1;
}
.news_item {
  padding: 2.144vw 0;
  border-bottom: 1px solid #ddd;
}
.news_item:first-child {
  padding-top: 0;
}
.news_item_meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.215vw;
}
.news_item_date {
  font-size: 1.001vw;
  line-height: 1.644vw;
  color: #000;
  margin-right: 1.001vw;
}
.news_item_cat a {
  background: #004FFF;
  border-radius: 0.215vw;
  font-weight: bold;
  font-size: 0.572vw;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 0.287vw 0.787vw 0.144vw;
  text-decoration: none;
  display: block;
}
.news_item_title a {
  font-size: 1.144vw;
  line-height: 1.787vw;
  color: #000;
  text-decoration: none;
}

/*-----------------------------------------------アーカイブページ-----------------------------------------------*/
.post-type-archive #page,.tax-news_cat #page,.single #page {
  position: relative;
  z-index: 1;
}
.post-type-archive #page:before,.tax-news_cat #page:before {
  content: "";
  display: block;
  background: url(/wp-content/themes/original/images/page_header_bg.webp);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22vw;
  z-index: -1;
  background-size: cover;
  background-position: center;
}
.single #content:before {
  content: "";
  display: block;
  background: url(/wp-content/themes/original/images/page_header_bg.webp);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 55vw;
  z-index: 0;
  background-size: cover;
}
.single #content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 0;
  opacity: 0.5;
}
#content {
  position: relative;
  z-index: 1;
}
.single #main {
  position: relative;
  z-index: 1;
}


.page_header {
  text-align: center;
  padding-top: 7vw;
  margin-bottom: 0;
  padding-bottom: 4vw;
}
.archive_title {
  font-size: 5.287vw;
  letter-spacing: 0.06em;
  color: #000;
  line-height: 1;
}
.page_header_label {
  font-size: 1.287vw;
  letter-spacing: 0.06em;
  color: #000;
  font-weight: bold;
}
.cat_selector {
  width: 58vw;
  margin: 0 auto 3.287vw;
}
.cat_selector ul {
  display: flex;
}
.cat_selector ul li a {
  font-weight: bold;
  font-size: 1.001vw;
  line-height: 2.287vw;
  color: #000;
  text-decoration: none;
  display: block;
  border: 1px solid #000;
  padding: 0.072vw 1.215vw;
  line-height: 1.4;
  border-radius: 0.215vw;
}
.cat_selector ul li {
  margin-right: 1.144vw;
}
.cat_selector ul li:last-child {
  margin-right: 0;
}
.cat_selector ul li.current a {
  background: #004FFF;
  color: #fff;
  border-color: #004FFF;
}

#primary {
  position: relative;
}
#primary::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}
#main {
  width: 58vw;
  margin: auto;
}

.list_wrapper {
  margin-bottom: 5.715vw;
}

.navigation.pagination {
  margin-bottom: 7.572vw;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-numbers img {
  width: 1.43vw;
}
.page-numbers {
  font-size: 1.144vw;
  line-height: 1.644vw;
  color: #000;
  text-decoration: none;
  width: 2.858vw;
  height: 2.858vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 50%;
}
.prev.page-numbers,.next.page-numbers {
  border: 0;
}
.page-numbers:not(.prev,.next) {
  margin: 0 0.287vw;
}
.page-numbers.current {
  background: #004FFF;
  border-color: #004FFF;
  color: #fff;
}


/*-----------------------------------------------NEWS詳細-----------------------------------------------*/
.single #primary {
  padding-top: 7vw;
}
.single .news_item_meta {
  margin-bottom: 0;
}
.entry-title {
  font-weight: bold;
  font-size: 1.43vw;
  line-height: 1.4;
  color: #000;
}
.entry-header {
  padding-bottom: 1vw;
  margin-bottom: 1vw;
  border-bottom: 1px solid #0006;
}
.entry-content {
  position: relative;
  padding-bottom: 8.215vw;
}
.entry-content:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #0006;
  width: 100%;
  height: 1px;
  margin: 0 calc(50% - 50vw + 10px);
  width: calc(100vw - 20px);
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content p {
  font-size: 1.144vw;
  line-height: 1.787vw;
  color: #000;
  margin-bottom: 1.2vw;
}
.wp-block-image {
  margin-bottom: 2.858vw;
}

.latest_news {
  padding-top: 3.715vw;
  padding-bottom: 10.072vw;
}
.latest_news_title {
  margin-bottom: 5.43vw;
}
.latest_news_h2 {
  font-size: 5.287vw;
  letter-spacing: 0.06em;
  color: #000;
}
.latest_news_label {
  font-size: 1.287vw;
  letter-spacing: 0.06em;
  color: #000;
  font-weight: bold;
}

/*-----------------------------------------------PROGRAM詳細-----------------------------------------------*/
.single-program #main {
  width: 78.5vw;
}
.single-program .entry-content {
  width: 58vw;
  margin: auto;
  padding-bottom: 6.858vw;
}
.single-program .entry-header {
  border-bottom: 0;
}
.single .program_item_cat {
  position: static;
  margin-left: 1vw;
}
.program_item_meta {
  display: flex;
  align-items: center;
  width: 58vw;
  margin: auto;
}
.single-program .entry-title {
  width: 58vw;
  margin: 0 auto 3.072vw;
}
.single-program .btn.return_btn {
  margin: 0 auto 8.144vw;
}
.single-program .navigation.p-post-nav {
  display: none;
}
.single-program .entry-content::before {
  display: none;
}


/*-------------------------------------メディアクエリ750以下【SPのみ】-------------------------------------*/
@media only screen and (max-width: 750px) {
	.pc_only {
		display: none !important;
	}
	/*ヘッダー*/
    .header_contents {
        display: none;
    }
    .site-logo {
        width: 42.134vw;
    }
    .site-branding {
        top: 3.734vw;
        left: 2.934vw;
    }
	.site-branding:not(.home .site-branding) {
		mix-blend-mode: unset;
		filter: brightness(0);
	}
	/*bottom kv*/
    .bottom_kv_container {
        width: 90.5vw;
        padding-top: 16.001vw;
        padding-bottom: 15.468vw;
        display: block;
    }
    .bottom_kv_image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 7.201vw;
    }
    .bottom_kv_title {
        font-size: 7.468vw;
        text-align: center;
        line-height: 10.401vw;
        padding-bottom: 5.334vw;
        margin-bottom: 6.668vw;
    }
    .bottom_kv_cta {
        width: 100%;
        display: block;
        margin-bottom: 4.801vw;
    }
    .btn.bottom_kv_btn {
        margin: 0 auto 3.468vw;
    }
    .sns_items {
        justify-content: center;
    }
	.bottom_kv_cta .sns_items {
		gap: 3vw;
	}
    .sns_item {
        width: 8.801vw;
    }
    .sns_item:first-child {
        margin-right: 1.868vw;
    }
    .bottom_kv_caption {
        font-size: 10px;
        line-height: 18px;
    }
	/*リンクグループ*/
	.link_group {
		width: 90.5vw;
		padding: 0;
		margin-bottom: 12vw;
	}
	.link_item {
		max-width: 100%;
	}
	/*footer*/
    .footer_container {
        padding-top: 16.001vw;
        padding-bottom: 16.001vw;
        display: block;
    }
    .footer_contents {
        display: block;
        margin-bottom: 10.668vw;
    }
    .footer_logo {
        width: 41.601vw;
        margin: 0 auto 8.001vw;
    }
    .btn.footer_btn {
        margin: auto;
    }
    .footer_meta {
        width: 74.668vw;
        margin: auto;
    }
    .footer_nav {
        margin-bottom: 5.334vw;
    }
    .footer_nav ul li a {
        font-size: 3.201vw;
    }
    .copyright {
        font-size: 2.668vw;
    }
	/*ドロワーメニュー*/
	.drawer-navigation .header_nav_container {
        display: block;
        margin-right: 0;
    }
    .drawer-navigation .nav_item {
        margin-bottom: 3vw;
        margin-right: 0;
    }
    .drawer-navigation .nav_item a {
        font-size: 4.001vw;
        color: #fff;
        line-height: 1.3;
    }
    .drawer-opened .drawer-hamburger {
        background: #000;
        border: 1px solid #fff;
    }
    .drawer-opened .drawer-hamburger-icon::before, .drawer-opened .drawer-hamburger-icon::after {
        background: #fff;
    }
	.drawer-navigation .header_nav_container a {
		background: transparent;
	}
	.drawer-navigation .header_nav_container a::before {
		display: none;
	}
    /*ボタン*/
    .btn {
        width: 56.001vw;
        height: 13.334vw;
        border-radius: 2.134vw;
    }
    .btn a {
        font-size: 4.001vw;
        color: #fff;
    }
    .btn a img {
        width: 6.668vw;
        margin-right: 1.868vw;
    }
    .fv_contents .btn {
        width: 56.001vw;
        height: 13.334vw;
    }
    .fv_contents .btn a {
        font-size: 4.001vw;
    }
    .fv_contents .btn img {
        width: 6.668vw;
        margin-right: 1.868vw;
    }
	/*ローディング*/
	.loading_logo {
		width: 60vw;
	}
	.loading_logo::after {
		height: 25vw;
		width: 68vw;
	}
	/*トップページ*/
	.fv_image_man {
        width: 59.201vw;
        bottom: -4.2vw;
    }
    .fv_image_woman {
        width: 40.801vw;
        right: 0;
        bottom: 13.601vw;
    }
	.fv_logo {
        width: 89vw;
        margin-bottom: 3.734vw;
    }
	.fv_container .btn {
		z-index: 9999;
		position: absolute;
		top: calc(50% + 15vw);
		left: 50%;
		transform: translate(-50%,-50%);
		opacity: 0;
	}
	.scroll_image {
        right: 3vw;
        bottom: 5.334vw;
    }
	.scroll_image_wrap {
        width: 28vw;
        height: 28vw;
    }
    .scroll_image2 {
        width: 20vw;
        top: 4vw;
        left: 6.4vw;
    }
	/*about*/
	.home_about_inner {
        padding-top: 42.668vw;
        padding-bottom: 42.668vw;
        width: 89.4vw;
        margin: auto;
    }
    .home_about_title {
        margin-bottom: 8.001vw;
    }
    .home_about_title .home_h2 {
        font-size: 6vw;
    }
    .home_about_contents p {
        font-size: 15px;
        line-height: 30px;
        text-align: left;
    }
	/*about 背景*/
	.home_about_image.home_about_image1 {
        width: 46.668vw;
        top: 160vw;
        left: 5.334vw;
    }
    .home_about_image.home_about_image2 {
        width: 24.001vw;
        left: auto;
        right: 0;
        top: 175vw;
    }
    .home_about_image.home_about_image3 {
        width: 29.601vw;
        right: 5.334vw;
        top: 0vw;
    }
    .home_about_image.home_about_image4 {
        width: 30.401vw;
        top: 13.334vw;
        right: auto;
        left: 0;
    }
    .home_about_image.home_about_image5 {
        width: 50.668vw;
        right: auto;
        left: 15.201vw;
        top: 208vw;
    }
	/*home program*/
	.home_program_container {
        padding-top: 20.268vw;
		padding-bottom: 16vw;
    }
    .home_program .home_title {
        text-align: left;
    }
	.home_program_inner {
        width: 89.3vw;
        margin: auto;
    }
    .home_program .home_title {
        margin-bottom: 7.201vw;
    }
    .home_program .home_h2 {
        font-size: 10vw;
		letter-spacing: 0.4vw;
    }
    .home_program .home_title_label {
        font-size: 4.268vw;
    }
    .program_items {
        width: 100%;
    }
    .program_item {
        width: 42vw;
        width: 100%;
        margin-bottom: 6vw;
    }
    .program_item_cat {
        font-size: 2.668vw;
        border-radius: 0.6vw;
    }
    .program_item_title a {
        font-size: 4.001vw;
    }
	/*home news*/
    .home_news_container {
        padding-top: 20.268vw;
        padding-bottom: 21.334vw;
    }
    .home_news_inner {
        width: 89.3vw;
        margin: ;
        display: block;
    }
    .home_news_header {
        width: 100%;
    }
    .home_news .home_title {
        margin-bottom: 7.201vw;
    }
    .home_h2 {
        font-size: 12.534vw;
    }
    .home_title_label {
        font-size: 4.268vw;
    }
    .news_item {
        padding-bottom: 4.268vw;
        padding-top: 5.334vw;
    }
    .news_item_meta {
        margin-bottom: 3.734vw;
    }
    .news_item_date {
        font-size: 3.201vw;
        margin-right: 2.668vw;
    }
    .news_item_cat a {
        font-size: 2.668vw;
        border-radius: 0.6vw;
    }
    .news_item_title a {
        font-size: 4.001vw;
    }
	.home_news_bg_sp {
        width: 36.268vw;
        position: absolute;
        top: -6vw;
        right: 0;
		z-index: 1;
    }
	.home_news_bg_sp.scroll_zoomin.zoomin.animate {
		animation-delay: 1.5s;
	}
	.home_news .btn {
        width: 53.334vw;
        height: 13.334vw;
        margin: 8.001vw auto 0;
        border-radius: 2.134vw;
    }
    .btn.more_btn::after {
        width: 2.401vw;
        height: 2.401vw;
        left: 10vw;
        margin-top: 0.2vw;
    }
	/*NEWS一覧*/
    .page_header {
        padding-top: 32vw;
        margin-bottom: 10vw;
    }
    .archive_title {
        font-size: 12vw;
    }
    .page_header_label {
        font-size: 4vw;
    }
    .post-type-archive #page::before, .tax-news_cat #page::before {
        height: 128vw;
        background-position: center center;
		background: url(/wp-content/themes/original/images/page_header_bg_sp.webp);
		background-size: auto;
		background-size: cover;
		opacity: 0.4;
    }
    .cat_selector {
        width: 90vw;
        margin: 0 auto 17vw;
    }
    .cat_selector ul li {
        margin-right: 3vw;
    }
    .cat_selector ul li a {
        font-size: 3.8vw;
        border-radius: 0.8vw;
    }
	.header_nav_container a, .program_item_title a, .news_item_title a {
		background: transparent;
	}
    #main {
        width: 90vw;
    }
    .list_wrapper {
        margin-bottom: 13.6vw;
    }
	.navigation.pagination {
		margin-bottom: 23vw;
	}
    .page-numbers {
        font-size: 4.3vw;
		width: 13.4vw;
		height: 13.4vw;
    }
    .page-numbers:not(.prev, .next) {
        margin: 0 1vw;
    }
    .page-numbers img {
        width: 8vw;
    }
	.header_nav_container a, .program_item_title a, .news_item_title a {
		background: transparent;
	}
	#primary::before {
		background: transparent;
	}
	.nav-links {
		position: relative;
	}
	.next.page-numbers {
		position: absolute;
		right: 0;
	}
	.prev.page-numbers {
		position: absolute;
		left: 0;
	}
	/*NEWS詳細*/
	.single #content::before {
		height: 128vw;
		background-position: center center;
		background: url(/wp-content/themes/original/images/page_header_bg_sp.webp);
		background-size: cover;
	}
    .single #primary {
        padding-top: 33.4vw;
        margin-bottom: 10vw;
    }
    .entry-title {
        font-size: 4.2vw;
        line-height: 2.2;
    }
    .entry-header {
        padding-bottom: 8.6vw;
		margin-bottom: 10.6vw;
    }
    .entry-content {
        padding-bottom: 10vw;
    }
    .entry-content p {
        font-size: 4vw;
        line-height: 1.5;
        margin-bottom: 6vw;
    }
    .wp-block-image {
        margin-bottom: 6vw;
    }
	.latest_news {
		padding-top: 8.5vw;
	}
	.latest_news_h2 {
		font-size: 13.3vw;
		line-height: 1.1;
		margin-bottom: 4vw;
	}
	.latest_news_title {
		margin-bottom: 15vw;
	}
    .latest_news_label {
        font-size: 4.3vw;
    }
	/*Program詳細*/
    .single-program #main {
        width: 92vw;
    }
    .program_item_meta {
        width: 100%;
    }
    .single-program .entry-title {
        width: 100%;
    }
    .single-program .entry-content {
        width: 100%;
		margin-bottom: 9vw;
    }
	.single-program .btn.return_btn {
		margin-bottom: 21.4vw;
	}
	/*FASTchボタン*/
	.fastch_btn_sp {
		width: 28.001vw;
		right: 3.6vw;
		bottom: 4.8vw;
		position: fixed;
		z-index: 0;
		transition: all 0.5s;
		opacity: 0;
	}
	.fastch_btn_sp.show {
		opacity: 1;
		z-index: 999;
	}
}
/*--------------------------------メディアクエリ750以上【タブレット以上】---------------------------------*/
@media only screen and (min-width: 751px) {
	.sp_only {
		display: none !important;
	}
	/*ドロワーメニュー非表示*/
	.drawer-hamburger, .drawer-overlay, .drawer-navigation {
		display: none;
	}
}

/*--------------------------------メディアクエリ750以上1024未満【タブレットのみ】---------------------------------*/
@media screen and (min-width:751px) and ( max-width:1024px) {
	.site-logo {
		width: 20vw;
	}
	.nav_item a {
		font-size: 1.7vw;
	}
	.header_contents {
		padding: 1vw 0.8vw 1vw 1vw;
	}
	.header_cta .btn {
		width: 23vw;
		height: 4.3vw;
		border-radius: 0.8vw;
	}
	.btn a {
		font-size: 1.7vw;
	}
	.btn a img {
		width: 2.6vw;
		margin-right: 1vw;
		margin-top: 0;
	}
	/*ローディング画面*/
	.loading_logo {
		width: 30vw;
	}
	.loading_logo::after {
		width: 30vw;
	}
	/*FV*/
	.fv_image_man {
		width: 60vw;
		left: -6vw;
	}
	.fv_image_woman {
		width: 45vw;
		bottom: -4vw;
		right: 0;
	}
	.fv_logo {
		width: 76vw;
	}
	/*About*/
	.home_about_image.home_about_image1 {
		width: 30vw;
	}
	.home_about_image.home_about_image2.scroll_in.active {
		width: 20vw;
	}
	.home_about_image.home_about_image3 {
		width: 22vw;
	}
	.home_about_image.home_about_image4 {
		width: ;
		width: 21vw;
	}
	.home_about_image.home_about_image5 {
		width: 30vw;
	}
	.home_about_title .home_h2 {
		font-size: 4vw;
	}
	.home_about_contents p {
		font-size: 2vw;
	}
	/*HOME Program*/
	.home_program .home_h2 {
		font-size: 4vw;
	}
	.home_program .home_title_label {
		font-size: 2.6vw;
	}
	.program_item_title a {
		font-size: 1.6vw;
	}
	/*HOME News*/
	.home_news .btn {
		width: 18vw;
	}
	.btn.more_btn::after {
		width: 1vw;
		left: 1vw;
		height: 1vw;
	}
	.news_item_date {
		font-size: 2vw;
	}
	.news_item_cat a {
		font-size: 1.2vw;
	}
	.news_item_title a {
		font-size: 2vw;
	}
	.home_news .news_items {
		max-width: 56vw;
	}
	/*サイト下部*/
	.bottom_kv_cta {
		width: 100%;
	}
	.btn.bottom_kv_btn {
		width: 21vw;
		height: 4vw;
		border-radius: 0.6vw;
	}
	.bottom_kv_caption {
		font-size: 1.3vw;
	}
	.btn.footer_btn {
		width: 21vw;
		height: 5vw;
		border-radius: 0.6vw;
	}
	.footer_nav ul li a {
		font-size: 1.6vw;
	}
	.footer_meta {
		width: 30vw;
	}
	.copyright {
		font-size: 1.3vw;
	}
	/*ページ*/
	.page_header_label {
		font-size: 1.8vw;
	}
	#main {
		width: 80vw;
	}
	.cat_selector ul li a {
		font-size: 1.8vw;
		border-radius: 0.4vw;
	}
	.cat_selector {
		width: 80vw;
	}
	.page-numbers {
		font-size: 1.8vw;
		width: 4vw;
		height: 4vw;
		margin: 0 1vw;
	}
	.page-numbers img {
		width: 3vw;
	}
	.entry-title {
		font-size: 2vw;
	}
	.entry-content p {
		font-size: 2vw;
		line-height: 1.6;
	}
}