/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
	scroll-behavior: smooth;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#111;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#111;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

p,h1,h2,h3,h4,ul,ol,li,table,td,th,figure{
	font-family:"Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size:16px;
	font-weight:normal;
	padding:0;
	line-height:1.8;
	margin:0;
}
a img{
	transition:0.3s;
}
a img:hover{
	opacity:0.8;
}

.grecaptcha-badge { visibility: hidden; }

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}

/* ローディング画面 */
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: #00a3af;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.loaded {
	opacity: 0;
	visibility: hidden;
}
.sk-folding-cube {
	margin: 0 auto;
	width: 40px;
	height: 40px;
	position: relative;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	top:calc(50% - 20px);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}


/* スクロールエフェクト */
.fadein {
	opacity: 0; /* 最初は透明 */
	transform: translateY(30px); /* 少し下にずらす */
	transition: all 0.6s ease-out; /* 変化をなめらかに */
}

.fadein.show {
	opacity: 1; /* 表示 */
	transform: translateY(0); /* 元の位置に戻す */
}

/* menu */
.menu-btn {
    position: fixed;
    top: calc(50% - 50px);
    right: 0;
    display: flex;
    height: 100px;
    width: 100px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #111;
	cursor: pointer;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 40px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 12px;
}
.menu-btn span:after {
    top: 12px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
	align-items:center;
	display:flex;
	width: 50%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color:#00a3af;
	transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
	margin:0 auto;
	width:90%;
	max-width:400px;
}
.menu-content ul li {
	border-bottom: solid 1px #fff;
	font-family:"Montserrat";
	font-weight:bold;
	line-height:1.2;
	list-style-type:none;
	padding:0 35px;
}
.menu-content ul li:first-child{
	border-top: solid 1px #fff;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 20px;
	box-sizing: border-box;
	color:#fff;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
	transition:0.3s;
	line-height:1.6;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 22px;
}
.menu-content ul li a:hover{
	letter-spacing:0.1em;
}
.menu-content ul li a span{
	color:#3584bb;
	font-size:12px;
}
#menu-btn-check:checked ~ .menu-content {
	left: 50%;/*メニューを画面内へ*/
}

/* header */
#side_area{
	background-color:#00a3af;
	height:100%;
	position:fixed;
	right:0;
	top:0;
	width:100px;
	z-index:10;
}
#side_area p.title{
	color:#fff;
	font-family:"Montserrat";
	font-weight:bold;
	line-height:1.4;
	margin:20px 0 0 28px;
	writing-mode: vertical-rl;
}
#side_area .icon_area{
	height:100%;
	position:absolute;
	top:calc(100% - 210px);
	left:calc(50% - 20px);
}
#side_area .icon_area p{
	margin-top:10px;
}
#side_area .icon_area p:first-child{
	margin-top:0;
}

#main {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	width: 100%;
}
#main .marquee-right {
	overflow: hidden;
	width: 100%;
	background: black; /* 上下余白が出た場合の背景色（好みで変更） */
}
#main .marquee-right ul {
	animation: marquee-right 80s linear infinite; /* 速度は画像幅に合わせて調整（遅めに） */
	display: flex;
	margin: 0;
	padding: 0;
	width: max-content;
}
#main .marquee-right ul li {
	list-style: none;
	flex-shrink: 0; /* 追加：縮まないように */
}
#main .marquee-right img {
	display: block;
	height: auto;     /* 変更：自然な高さに */
	width: auto;      /* アスペクト比維持 */
	max-height: 100vh; /* 追加：画面より画像が高すぎる場合に上限（トリミングなしで縮小） */
}

@keyframes marquee-right {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.header {
	position:absolute;
	width:100%;
	z-index:1;
}
/* logo */
.header .logo{
	position:absolute;
	left:50px;
	top:50px;
	width:320px;
}
.header .nav{
	background-color:#111;
	border-radius:40px;
	filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
	padding:15px 30px;
	position:absolute;
	top:50px;
	right:150px;
}
.header .nav ul{
	display:flex;
	justify-content:space-around;
}
.header .nav ul li{
	font-family:"Montserrat";
	font-size:20px;
	font-weight:bold;
	list-style-type:none;
	padding:0 10px;
}
.header .nav ul li a.link_text{
	color:#fff;
	position: relative;
	padding: 5px 10px; /* 見た目調整用の余白 */
	background-color: #111;
}

.header .nav ul li a.link_text::before {
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	background-color: #fff;
	mix-blend-mode: difference; /* difference（差分） */
	transition: 0.3s;
}

.header .nav ul li a.link_text:hover::before {
	width: 100%;
}

@media only screen and (max-width:1200px) {
	.header .nav{
		display:none;
	}
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/
#contents01{
	background-image:url(img/top_back01.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:top center;
	background-attachment: fixed;
	padding:100px 0 200px 0;
	position: relative;
	width:calc(100% - 100px);
	clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
#contents01 .title{
	margin-left:5%;
}
#contents01 .title h2{
	color:#fff;
	font-family:"Montserrat";
	font-size:24px;
	font-weight:bold;
}
#contents01 .title .line{
	background-color:#cecece;
	height:5px;
	margin-top:8px;
	width:30px;
}
#contents01 .news_area{
	margin:20px auto 0 auto;
	width:90%;
	max-width:1280px;
}
#contents01 .news_area .news_block{
	display:flex;
	flex-wrap:wrap;
	justify-content:start;
}
#contents01 .news_area a{
	background-color:#00a3af;
	filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
	margin-top:20px;
	margin-right:20px;
	width:calc((100% - 40px) / 3);
	transition:0.3s;
}
#contents01 .news_area a:hover{
	background-color:#03919c;
	filter: drop-shadow(4px 4px 0 rgba(200,200,200,1));
}
#contents01 .news_area a:hover .post_photo img{
	opacity:0.9;
}
#contents01 .news_area a:nth-child(3n){
	margin-right:0;
}
#contents01 .news_area .post_photo img {
	height: auto !important;
	width: 100% !important;
	max-width:630px;
}
#contents01 .news_area .post_text{
	min-height:140px;
	padding:15px;
}
#contents01 .news_area .post_text p.sub_text{
	background-color:#fff;
	border-radius:5px;
	display: inline-block;
	font-size:15px;
	padding:2px 10px 4px 10px;
}
#contents01 .news_area .post_text p.news_title{
	color:#fff;
	font-weight:bold;
	margin-top:10px;
}
@media only screen and (max-width:1200px) {
	#contents01 .news_area .news_block{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
	}

	#contents01 .news_area a{
		background-color:#00a3af;
		filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
		margin-top:20px;
		margin-right:0;
		width:calc(50% - 10px);
		transition:0.3s;	
	}
}

#contents01 .link_area{
	display:flex;
	justify-content:space-between;
	margin:60px auto 0 auto;
	width:94%;
	max-width:1280px;
}
#contents01 .link_area .youtube{
	flex: 800;
}
#contents01 .link_area .youtube .video-wrapper {
	position: relative;
	width: 100%;              /* 親要素（左側）の幅にフィット */
	padding-bottom: 56.25%;   /* 16:9比率（9 ÷ 16 = 0.5625 → 56.25%） */
	height: 0;                 /* 高さを0にすることでpaddingで比率維持 */
	overflow: hidden;
}

#contents01 .link_area .youtube .responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}
#contents01 .link_area .link_list{
	flex: 440;
	margin-left:40px;
}
#contents01 .link_area .link_list p{
	background-color:#00a3af;
	border-radius:60px;
	filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
	margin-top:10px;
	width:100%;
	transition:0.3s;
}
#contents01 .link_area .link_list p:first-child{
	margin-top:0;
}
#contents01 .link_area .link_list p:hover{
	background-color:#03919c;
	filter: drop-shadow(3px 3px 0 rgba(200,200,200,1));
}
#contents01 .link_area .link_list p a{
	align-items:center;
	background-position:30px center;
	background-repeat:no-repeat;
	background-size:40px;
	color:#fff;
	display:flex;
	font-size:18px;
	font-weight:bold;
	height:80px;
	padding:0 0 0 100px;
}
#contents01 .link_area .link_list p:hover a img{
	opacity:1;
}
#contents01 .link_area .link_list p:first-child a{
	background-image:url(img/link_icon01.png);
}
#contents01 .link_area .link_list p:nth-child(2) a{
	background-image:url(img/link_icon02.png);
}
#contents01 .link_area .link_list p:nth-child(3) a{
	background-image:url(img/link_icon03.png);
}
#contents01 .link_area .link_list p:nth-child(4) a{
	background-image:url(img/link_icon04.png);
}
#contents01 .link_area .link_list p:nth-child(5) a{
	background-image:url(img/link_icon05.png);
}
@media only screen and (max-width:1200px) {
	#contents01 .link_area .link_list p a{
		background-size:30px;
		background-position:20px center;
		font-size:16px;
		height:60px;
		padding:0 0 0 60px;
	}
}

#contents02{
	background-image:url(img/top_back02.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:top center;
	background-attachment: fixed;
	padding:160px 0 100px 0;
	position: relative;
	width:calc(100% - 100px);
	margin-top: -150px;
	clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}
#contents02::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 30%;                 /* 三角形の横幅 */
	height: 60px;                /* 三角形の縦幅 */
	background: black;
	clip-path: polygon(100% 100%, 0 100%, 100% 0);
  /* 
    座標の意味：
    右下(100% 100%) → 左下(0 100%) → 右上(100% 0)
    → これで右下を頂点にした直角三角形になる
  */
}
#contents02 .title{
	margin-left:5%;
}
#contents02 .title h2{
	color:#111;
	font-family:"Montserrat";
	font-size:24px;
	font-weight:bold;
}
#contents02 .title .line{
	background-color:#111;
	height:5px;
	margin-top:8px;
	width:30px;
}
#contents02 .profile_area{
	display:flex;
	justify-content:space-between;
	margin:40px auto 0 auto;
	width:90%;
	max-width:1280px;
}
#contents02 .profile_area .yago_visual{
	flex:500;
}
#contents02 .profile_area .profile_section{
	display:flex;
	flex:740;
	justify-content:space-between;
	margin-left:40px;
}
#contents02 .profile_area .profile_section .name{
	writing-mode: vertical-rl;
}
#contents02 .profile_area .profile_section .name p.hurigana{
	color:#111;
	font-family:"Montserrat";
	font-size:22px;
	font-weight:bold;
}
#contents02 .profile_area .profile_section .name h3{
	color:#111;
	font-size:50px;
	font-weight:bold;
	line-height:1.2;
}
#contents02 .profile_area .profile_section .profile_block{
	margin-left:40px
}
#contents02 .profile_area .profile_section .profile_block p.text{
	margin-left:30px;
}
#contents02 .profile_area .profile_section .profile_block .profile_table{
	align-items:center;
	border-bottom:1px solid #111;
	display:flex;
	justify-content:start;
	padding:20px 0;
}
#contents02 .profile_area .profile_section .profile_block .profile_table:first-of-type{
	border-top:1px solid #111;
	margin-top:30px;
}
#contents02 .profile_area .profile_section .profile_block .profile_table p:first-child{
	font-size:16px;
	font-weight:bold;
	flex:160;
	padding-left:30px;
	padding-right:30px;
}
#contents02 .profile_area .profile_section .profile_block .profile_table p:nth-child(2){
	line-height:1.6;
	flex:370;
}
@media only screen and (max-width:1200px) {
	#contents02 .profile_area .profile_section{
		display:inline;
	}
	
	#contents02 .profile_area .profile_section .name{
		writing-mode: unset;
	}
	
	#contents02 .profile_area .profile_section .name p.hurigana{
		font-size:16px;
	}
	
	#contents02 .profile_area .profile_section .name h3{
		color:#111;
		font-size:30px;
		font-weight:bold;
		line-height:1.2;
	}
	
	#contents02 .profile_area .profile_section .profile_block{
		margin-left:0;
		margin-top:20px;
	}
	
	#contents02 .profile_area .profile_section .profile_block p.text{
		margin-left:0;
	}
	
	#contents02 .profile_area .profile_section .profile_block .profile_table p:first-child{
		padding-left:0;
		padding-right:20px;
	}
}
#contents02 .profile_area p.button{
	background-color:#00a3af;
	border-radius:60px;
	filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
	margin:40px 0 0 auto;
	width:240px;
	transition:0.3s;
}
#contents02 .profile_area p.button:hover{
	background-color:#03919c;
	filter: drop-shadow(3px 3px 0 rgba(20,20,20,1));
}
#contents02 .profile_area p.button a{
	align-items:center;
	background-position:calc(100% - 30px) center;
	background-repeat:no-repeat;
	background-size:24px;
	background-image:url(img/arrow01.png);
	color:#fff;
	display:flex;
	font-size:18px;
	font-weight:bold;
	padding:15px 0 15px 35px;
	transition:0.3s;
}
#contents02 .profile_area p.button a:hover{
	background-position:calc(100% - 20px) center;
}

#contents03{
	display:flex;
	width:calc(100% - 100px);
}
#contents03 p{
	width:50%;
}
#contents03 p img{
	width:100%;
}

#contents04{
	background-image:url(img/top_back03.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:top center;
	background-attachment: fixed;
	padding:100px 0 180px 0;
	position:relative;
	width:calc(100% - 100px);
	clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
#contents04::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 30%;                 /* 三角形の横幅 */
	height: 60px;                /* 三角形の縦幅 */
	background: #111;
	clip-path: polygon(0 0, 100% 0, 0 100%);
  /* 
    座標の意味：
    右下(100% 100%) → 左下(0 100%) → 右上(100% 0)
    → これで右下を頂点にした直角三角形になる
  */
}
#contents04 .title{
	margin-left:5%;
}
#contents04 .title h2{
	color:#111;
	font-family:"Montserrat";
	font-size:24px;
	font-weight:bold;
}
#contents04 .title .line{
	background-color:#111;
	height:5px;
	margin-top:8px;
	width:30px;
}
#contents04 .history_area{
	display:flex;
	justify-content:space-between;
	margin:40px auto 0 auto;
	width:90%;
	max-width:1280px;
}
#contents04 .history_area .history_block{
	width:calc(50% - 20px);
}
@media only screen and (max-width:1200px) {
	#contents04 .history_area{
		display:block;
		justify-content:space-between;
		margin:40px auto 0 auto;
		width:90%;
		max-width:1280px;
	}

	#contents04 .history_area .history_block{
		width:100%;
	}
	
	#contents04 .history_area .history_block:nth-child(2){
		margin-top:24px;
	}
}
#contents04 .history_area .history_block h3{
	background-color:#111111;
	border-left:5px solid #df14e3;
	color:#fff;
	font-family:"Montserrat";
	font-size:20px;
	font-weight:bold;
	padding:5px 0 5px 20px;
}
#contents04 .history_area .history_block .live_table{
	align-items:center;
	border-bottom:1px solid #111;
	display:flex;
	justify-content:start;
	padding:20px 0;
}
#contents04 .history_area .history_block .live_table p:first-child{
	background-color:#00a3af;
	border-radius:20px;
	color:#fff;
	font-size:14px;
	line-height:1;
	margin-right:20px;
	padding:5px 0;
	text-align:center;
	width:100px;
}
#contents04 .history_area .history_block .live_table p:nth-child(2) a{
	text-decoration:underline;
}
#contents04 .history_area .history_block .live_table p:nth-child(2) a[href]::after {
	content: "";
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	margin-left: 0.4em;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='currentColor'%3E%3Cpath d='M320 0H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L9.4 329.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L320 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zM480 256c-17.7 0-32 14.3-32 32v96c0 35.3-28.7 64-64 64H160c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160C71.6 32 0 103.6 0 192v192c0 88.4 71.6 160 160 160h224c88.4 0 160-71.6 160-160V288c0-17.7-14.3-32-32-32z'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
	vertical-align: middle;
}
#contents04 .history_area .history_block .media_table{
	align-items:center;
	border-bottom:1px solid #111;
	padding:20px 0;
}
#contents04 .history_area .history_block h3.top_margin{
	margin-top:24px;
}
#contents04 p.button{
	background-color:#00a3af;
	border-radius:60px;
	filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
	margin:60px auto 0 auto;
	width:240px;
	transition:0.3s;
}
#contents04 p.button:hover{
	background-color:#03919c;
	filter: drop-shadow(3px 3px 0 rgba(20,20,20,1));
}
#contents04 p.button a{
	align-items:center;
	background-position:calc(100% - 30px) center;
	background-repeat:no-repeat;
	background-size:24px;
	background-image:url(img/arrow01.png);
	color:#fff;
	display:flex;
	font-size:18px;
	font-weight:bold;
	padding:15px 0 15px 35px;
	transition:0.3s;
}
#contents04 p.button a:hover{
	background-position:calc(100% - 20px) center;
}

#contents05{
	background-image:url(img/top_back04.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:top center;
	background-attachment: fixed;
	padding:160px 0 100px 0;
	position:relative;
	width:calc(100% - 100px);
	margin-top: -150px;
	clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}
#contents05 .title{
	margin-left:5%;
}
#contents05 .title h2{
	color:#fff;
	font-family:"Montserrat";
	font-size:24px;
	font-weight:bold;
}
#contents05 .title .line{
	background-color:#fff;
	height:5px;
	margin-top:8px;
	width:30px;
}
#contents05 .link_area{
	margin:0 auto;
	width:90%;
	max-width:1280px;
}
#contents05 .link_area .link_block{
	border-bottom:1px solid #00a3af;
	display:flex;
	justify-content:space-between;
	padding:40px 0;
}
#contents05 .link_area .link_block .link_logo{
	width:180px;
}
#contents05 .link_area .link_block .link_info{
	width:calc(100% - 210px);
}
#contents05 .link_area .link_block .link_info h3{
	color:#fff;
	font-size:20px;
	font-weight:bold;
}
#contents05 .link_area .link_block .link_info p.text{
	color:#fff;
	margin-top:10px;
}
#contents05 .link_area .link_block .link_info .button_area{
	display:flex;
	flex-wrap:wrap;
	justify-content:start;
	margin-top:10px;
}
#contents05 .link_area .link_block .link_info .button_area p{
	background-color:#00a3af;
	border-radius:60px;
	filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
	margin-top:10px;
	margin-right:10px;
	width:200px;
	transition:0.3s;
}
#contents05 .link_area .link_block .link_info .button_area p:hover{
	background-color:#03919c;
	filter: drop-shadow(3px 3px 0 rgba(200,200,200,1));
}
#contents05 .link_area .link_block .link_info .button_area p:last-child{
	margin-left:0;
}
#contents05 .link_area .link_block .link_info .button_area p a{
	align-items:center;
	background-position:20px center;
	background-repeat:no-repeat;
	background-size:30px;
	color:#fff;
	display:flex;
	font-size:16px;
	height:60px;
	padding:0 0 0 65px;
}
#contents05 .link_area .link_block .link_info .button_area p.icon01 a{
	background-image:url(img/link_icon01.png);
}
#contents05 .link_area .link_block .link_info .button_area p.icon02 a{
	background-image:url(img/link_icon02.png);
}
#contents05 .link_area .link_block .link_info .button_area p.icon03 a{
	background-image:url(img/link_icon03.png);
}
#contents05 .link_area .link_block .link_info .button_area p.icon04 a{
	background-image:url(img/link_icon04.png);
}
#contents05 .link_area .link_block .link_info .button_area p.icon05 a{
	background-image:url(img/link_icon05.png);
}
#contents05 .link_area .link_block .link_info .button_area p.icon07 a{
	background-image:url(img/link_icon07.png);
}
#contents05 .link_area .link_block .link_info .button_area p.icon08 a{
	background-image:url(img/link_icon08.png);
}

#contact{
	background-image:url(img/contact_back.jpg);
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}
#contact .contact_area{
	background-color:rgba(255,255,255,0.85);
	padding:80px 0 100px 0;
	width:50%;
}
#contact .contact_area .title{
	margin-left:10%;
}
#contact .contact_area .title h2{
	color:#111;
	font-family:"Montserrat";
	font-size:24px;
	font-weight:bold;
}
#contact .contact_area .title .line{
	background-color:#111;
	height:5px;
	margin-top:8px;
	width:30px;
}
#contact .contact_area .text_area{
	margin:50px auto 0 auto;
	width:90%;
	max-width:520px;
}
#contact .contact_area .text_area .button_area{
	margin-top:35px;
}
#contact .contact_area .text_area .button_area p{
	background-color:#00a3af;
	border-radius:60px;
	filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
	font-size:18px;
	font-weight:bold;
	margin-top:15px;
	text-align:center;
	width:100%;
	transition:0.3s;
}
#contact .contact_area .text_area .button_area p:hover{
	background-color:#03919c;
	filter: drop-shadow(3px 3px 0 rgba(20,20,20,1));
}
#contact .contact_area .text_area .button_area p:first-child{
	margin-top:0;
}
#contact .contact_area .text_area .button_area p a{
	align-items:center;
	background-position:30px center;
	background-repeat:no-repeat;
	background-size:40px;
	color:#fff;
	display:flex;
	font-size:16px;
	justify-content:center;
	height:80px;
	padding:0 0 0 40px;
}
#contact .contact_area .text_area .button_area p:first-child a{
	background-image:url(img/link_icon01.png);
}
#contact .contact_area .text_area .button_area p:nth-child(2) a{
	background-image:url(img/link_icon06.png);
}

.footer{
	background-color:#003c40;
}
.footer p.logo{
	margin:0 auto;
	padding:60px 0 40px 0;
	width:240px;
}
.footer .nav{
	background-color:#111;
	border-radius:40px;
	filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
	padding:15px 30px;
	position:absolute;
	top:50px;
	right:150px;
}
.footer .foot_menu{
	background-color:#111;
	border-radius:30px 30px 0 0;
	margin:0 auto;
	padding:15px 20px 10px 20px;
	width:90%;
	max-width:720px;
}
.footer .foot_menu ul{
	display:flex;
	justify-content:space-around;
}
.footer .foot_menu ul li{
	font-family:"Montserrat";
	font-size:20px;
	font-weight:bold;
	list-style-type:none;
}
.footer .foot_menu ul li a{
	color:#fff;
	position: relative;
	padding: 5px 10px; /* 見た目調整用の余白 */
	background-color: #111;
}

.footer .foot_menu ul li a::before {
	position: absolute;
	left: 0;
	width: 0;
	height: 100%;
	content: "";
	background-color: #fff;
	mix-blend-mode: difference; /* difference（差分） */
	transition: 0.3s;
}

.footer .foot_menu ul li a:hover::before {
	width: 100%;
}
p.copyright{
	background-color:#111;
	border-bottom:5px solid #df14e3;
	color:#fff;
	font-size:15px;
	padding:15px 10px;
	text-align:center;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/
#sub_head{
	align-items:center;
	background-color:#003c40;
	display:flex;
	justify-content:center;
	height:420px;
	width:calc(100% - 100px);
}
#sub_head .sub_main_in{
	margin-top:120px;
}
#sub_head .sub_main_in h2{
	color:#fff;
	font-family:"Montserrat";
	font-size:36px;
	font-weight:bold;
}
#sub_head .sub_main_in .line{
	background-color:#fff;
	border-bottom:4px solid #df14e3;
	height:8px;
	margin:10px auto 0 auto;
	width:100px;
}

#sub_area{
	background-image:url(img/top_back03.jpg);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:top center;
	background-attachment: fixed;
	padding:20px 0 220px 0;
	position:relative;
	width:calc(100% - 100px);
	clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
}
#sub_area .pan_area{
	margin:0 auto;
	width:90%;
	max-width:800px;
}
#sub_area .pan_area span{
	font-size:15px;
}
#sub_contents{
	margin:60px auto 0 auto;
	width:90%;
	max-width:800px;
}
#sub_contents h2{
	background-color:#111111;
	border-left:5px solid #df14e3;
	color:#fff;
	font-family:"Montserrat";
	font-size:20px;
	font-weight:bold;
	margin-top:60px;
	padding:5px 0 5px 20px;
}
#sub_contents h2:first-child{
	margin-top:0;
}
#sub_contents p{
	margin-top:20px;
}
#sub_contents figure{
	margin-top:20px;
}
#sub_contents p.link_button{
	background-color:#00a3af;
	border-radius:60px;
	filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
	margin:60px auto 0 auto;
	width:240px;
	transition:0.3s;
}
#sub_contents p.link_button:hover{
	background-color:#03919c;
	filter: drop-shadow(3px 3px 0 rgba(20,20,20,1));
}
#sub_contents p.link_button a{
	align-items:center;
	background-position:calc(100% - 30px) center;
	background-repeat:no-repeat;
	background-size:24px;
	background-image:url(img/arrow01.png);
	color:#fff;
	display:flex;
	font-size:18px;
	font-weight:bold;
	padding:15px 0 15px 35px;
	transition:0.3s;
}

#sub_contents .profile_section .profile_block .profile_table{
	align-items:center;
	border-bottom:1px solid #111;
	display:flex;
	justify-content:start;
	padding:20px 0;
}
#sub_contents .profile_section .profile_block .profile_table:first-of-type{
	border-top:1px solid #111;
	margin-top:30px;
}
#sub_contents .profile_section .profile_block .profile_table p{
	margin-top:0;
}
#sub_contents .profile_section .profile_block .profile_table p:first-child{
	font-size:16px;
	font-weight:bold;
	flex:200;
	padding-right:30px;
}
#sub_contents .profile_section .profile_block .profile_table p:nth-child(2){
	line-height:1.6;
	flex:600;
}

#sub_contents .history_area .history_block .live_table{
	align-items:center;
	border-bottom:1px solid #111;
	display:flex;
	justify-content:start;
	padding:20px 0;
}
#sub_contents .history_area .history_block .live_table p{
	margin-top:0;
}
#sub_contents .history_area .history_block .live_table p:first-child{
	background-color:#00a3af;
	border-radius:20px;
	color:#fff;
	font-size:14px;
	line-height:1;
	margin-right:20px;
	padding:5px 0;
	text-align:center;
	width:100px;
}
#sub_contents .history_area .history_block .live_table p:nth-child(2) a{
	text-decoration:underline;
}
#sub_contents .history_area .history_block .live_table p:nth-child(2) a[href]::after {
	content: "";
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	margin-left: 0.4em;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='currentColor'%3E%3Cpath d='M320 0H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L9.4 329.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L320 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zM480 256c-17.7 0-32 14.3-32 32v96c0 35.3-28.7 64-64 64H160c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160C71.6 32 0 103.6 0 192v192c0 88.4 71.6 160 160 160h224c88.4 0 160-71.6 160-160V288c0-17.7-14.3-32-32-32z'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
	vertical-align: middle;
}
#sub_contents .history_area .history_block .media_table{
	align-items:center;
	border-bottom:1px solid #111;
	padding:20px 0;
}
#sub_contents .history_area .history_block .media_table p{
	margin-top:0;
}

#sub_contents table.contact_table{
	margin-top:20px;
	width:100%;
}
#sub_contents table.contact_table tr td{
	background-color:#fff;
	border:1px solid #ccc;
	padding:15px;
	width:65%;
}
#sub_contents table.contact_table tr td:first-child{
	background-color:#f6f6f6;
	width:35%;
}
#sub_contents table.contact_table tr td p{
	margin-top:0;
}
#sub_contents table.contact_table tr td:first-child p span{
	color:#d80000;
}
#sub_contents table.contact_table tr td input{
	border:1px solid #aaa;
	border-radius:3px;
	padding:5px;
}
#sub_contents table.contact_table tr td textarea{
	border:1px solid #aaa;
	border-radius:3px;
	height:150px;
	padding:5px;
}
#sub_contents table.contact_table tr td span.wpcf7-list-item{
	margin:0;
	width:100%;
}
#sub_contents .submit{
	height:60px;
	margin:40px auto 0 auto;
	width:240px;
}
#sub_contents .submit input{
	background-color:#3d342d;
	border:none;
	color:#fff;
	font-size:16px;
	font-weight:bold;
	padding:16px;
	width:240px;
	transition:0.3s;
}
#sub_contents .submit input:hover{
	background-color:#706256;
}


/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:919px) {
	/* menu */
	.menu-btn {
	    position: fixed;
	    top: 0;
	    right: 0;
	    display: flex;
	    height: 100px;
	    width: 100px;
	    justify-content: center;
	    align-items: center;
	    z-index: 90;
	    background-color: #111;
		cursor: pointer;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
	    content: '';
	    display: block;
	    height: 3px;
	    width: 40px;
	    border-radius: 3px;
	    background-color: #ffffff;
	    position: absolute;
	}

	.menu-btn span:before {
	    bottom: 12px;
	}

	.menu-btn span:after {
	    top: 12px;
	}

	#menu-btn-check:checked ~ .menu-btn span {
	    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}

	#menu-btn-check:checked ~ .menu-btn span::before {
	    bottom: 0;
	    transform: rotate(45deg);
	}

	#menu-btn-check:checked ~ .menu-btn span::after {
	    top: 0;
	    transform: rotate(-45deg);
	}

	#menu-btn-check {
	    display: none;
	}

	.menu-content {
		align-items:center;
		display:flex;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;/*leftの値を変更してメニューを画面外へ*/
		z-index: 80;
		background-color:#00a3af;
		transition: all 0.5s;/*アニメーション設定*/
	}

	.menu-content ul {
		margin:0 auto;
		width:90%;
		max-width:400px;
	}

	.menu-content ul li {
		border-bottom: solid 1px #fff;
		font-family:"Montserrat";
		font-weight:bold;
		line-height:1.2;
		list-style-type:none;
		padding:0 30px;
	}

	.menu-content ul li:first-child{
		border-top: solid 1px #fff;
	}

	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 20px;
		box-sizing: border-box;
		color:#fff;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
		transition:0.3s;
		line-height:1.6;
	}

	.menu-content ul li a::before {
	    content: "";
	    width: 7px;
	    height: 7px;
	    border-top: solid 2px #fff;
	    border-right: solid 2px #fff;
	    transform: rotate(45deg);
	    position: absolute;
	    right: 10px;
	    top: 22px;
	}

	.menu-content ul li a span{
		color:#3584bb;
		font-size:12px;
	}

	#menu-btn-check:checked ~ .menu-content {
		left: 0%;/*メニューを画面内へ*/
	}

	/* header */
	#side_area{
		align-items:center;
		background-color:#00a3af;
		display:flex;
		height:80px;
		justify-content:space-between;
		position:fixed;
		right:0;
		top:auto;
		bottom:0;
		width:100%;
		z-index:10;
	}

	#side_area p.title{
		color:#fff;
		font-family:"Montserrat";
		font-size:15px;
		font-weight:bold;
		line-height:1.4;
		margin:0 0 0 20px;
		writing-mode: unset;
	}

	#side_area .icon_area{
		align-items:center;
		height:100%;
		display:flex;
		margin-right:20px;
		position:relative;
		top:auto;
		left:auto;
	}

	#side_area .icon_area p{
		margin-top:0;
		margin-left:5px;
	}

	#side_area .icon_area p:first-child{
		margin-top:0;
		margin-left:0;
	}
	
	#side_area .icon_area p img{
		width:30px;
	}

	#main {
		height:460px;
		margin: 0;
		padding: 0;
		overflow-x: hidden;
		width: 100%;
	}

	#main .marquee-right {
		overflow: hidden;
		width: 100%;
		background: black; /* 上下余白が出た場合の背景色（好みで変更） */
	}

	#main .marquee-right ul {
		animation: marquee-right 80s linear infinite; /* 速度は画像幅に合わせて調整（遅めに） */
		display: flex;
		margin: 0;
		padding: 0;
		width: max-content;
	}

	#main .marquee-right ul li {
		list-style: none;
		flex-shrink: 0; /* 追加：縮まないように */
	}

	#main .marquee-right img {
		display: block;
		height: auto;     /* 変更：自然な高さに */
		width: auto;      /* アスペクト比維持 */
		max-height: 460px; /* 追加：画面より画像が高すぎる場合に上限（トリミングなしで縮小） */
	}

	@keyframes marquee-right {
		from { transform: translateX(0); }
		to { transform: translateX(-50%); }
	}

	.header {
		position:absolute;
		width:100%;
		z-index:1;
	}

	/* logo */
	.header .logo{
		position:absolute;
		left:20px;
		top:20px;
		width:160px;
	}

	.header .nav{
		display:none;
	}

	/*------------------------------------*\
	    PAGES
	\*------------------------------------*/
	#contents01{
		background-image:url(img/top_back01.jpg);
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
		background-attachment: fixed;
		padding:60px 0 200px 0;
		position: relative;
		width:100%;
		clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
	}

	#contents01 .title{
		margin-left:5%;
	}

	#contents01 .title h2{
		color:#fff;
		font-family:"Montserrat";
		font-size:20px;
		font-weight:bold;
	}

	#contents01 .title .line{
		background-color:#cecece;
		height:5px;
		margin-top:8px;
		width:30px;
	}

	#contents01 .news_area{
		margin:20px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#contents01 .news_area .news_block{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
	}

	#contents01 .news_area a{
		background-color:#00a3af;
		filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
		margin-top:20px;
		margin-right:0;
		width:100%;
		transition:0.3s;	
	}

	#contents01 .news_area .post_photo img {
		height: auto !important;
		width: 100% !important;
		max-width:460px;
	}

	#contents01 .news_area .post_text{
		height:auto;
		min-height:100px;
		padding:15px;
	}

	#contents01 .news_area .post_text p.sub_text{
		background-color:#fff;
		border-radius:5px;
		display: inline-block;
		font-size:15px;
		padding:2px 10px 4px 10px;
	}

	#contents01 .news_area .post_text p.news_title{
		color:#fff;
		font-weight:bold;
		margin-top:10px;
	}

	#contents01 .link_area{
		display:block;
		justify-content:space-between;
		flex-wrap::wrap;
		margin:40px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#contents01 .link_area .youtube{
		flex: 800;
	}

	#contents01 .link_area .youtube .video-wrapper {
		position: relative;
		width: 100%;              /* 親要素（左側）の幅にフィット */
		padding-bottom: 56.25%;   /* 16:9比率（9 ÷ 16 = 0.5625 → 56.25%） */
		height: 0;                 /* 高さを0にすることでpaddingで比率維持 */
		overflow: hidden;
	}

	#contents01 .link_area .youtube .responsive-iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: none;
	}

	#contents01 .link_area .link_list{
		flex: 440;
		margin-left:0;
		margin-top:20px;
	}

	#contents01 .link_area .link_list p{
		background-color:#00a3af;
		border-radius:60px;
		filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
		margin-top:10px;
		width:100%;
		transition:0.3s;
	}

	#contents01 .link_area .link_list p:first-child{
		margin-top:0;
	}

	#contents01 .link_area .link_list p a{
		align-items:center;
		background-position:20px center;
		background-repeat:no-repeat;
		background-size:30px;
		color:#fff;
		display:flex;
		font-size:16px;
		font-weight:bold;
		height:60px;
		padding:0 0 0 70px;
	}

	#contents02{
		background-image:url(img/top_back02.jpg);
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
		background-attachment: fixed;
		padding:100px 0 60px 0;
		position: relative;
		width:100%;
		margin-top: -150px;
		clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
	}

	#contents02::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 30%;                 /* 三角形の横幅 */
		height: 60px;                /* 三角形の縦幅 */
		background: black;
		clip-path: polygon(100% 100%, 0 100%, 100% 0);
	}

	#contents02 .title{
		margin-left:5%;
	}

	#contents02 .title h2{
		color:#111;
		font-family:"Montserrat";
		font-size:20px;
		font-weight:bold;
	}

	#contents02 .title .line{
		background-color:#111;
		height:5px;
		margin-top:8px;
		width:30px;
	}

	#contents02 .profile_area{
		display:block;
		justify-content:space-between;
		margin:40px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#contents02 .profile_area .yago_visual{
		flex:500;
		margin:0 auto;
		width:260px;
	}

	#contents02 .profile_area .profile_section{
		display:block;
		flex:740;
		justify-content:space-between;
		margin-left:0;
	}

	#contents02 .profile_area .profile_section .name{
		margin-top:20px;
		writing-mode: unset;
	}

	#contents02 .profile_area .profile_section .name p.hurigana{
		color:#111;
		font-family:"Montserrat";
		font-size:15px;
		font-weight:bold;
		margin-top:5px;
		text-align:center;
	}

	#contents02 .profile_area .profile_section .name h3{
		color:#111;
		font-size:24px;
		font-weight:bold;
		line-height:1.2;
		text-align:center;
	}

	#contents02 .profile_area .profile_section .profile_block{
		margin-left:0;
		margin-top:20px;
	}

	#contents02 .profile_area .profile_section .profile_block p.text{
		margin-left:0;
	}

	#contents02 .profile_area .profile_section .profile_block .profile_table{
		align-items:center;
		border-bottom:1px solid #111;
		display:block;
		justify-content:start;
		padding:16px 0;
	}

	#contents02 .profile_area .profile_section .profile_block .profile_table:first-of-type{
		border-top:1px solid #111;
		margin-top:30px;
	}

	#contents02 .profile_area .profile_section .profile_block .profile_table p:first-child{
		font-size:16px;
		font-weight:bold;
		flex:160;
		padding-left:0;
		padding-right:0;
	}

	#contents02 .profile_area .profile_section .profile_block .profile_table p:nth-child(2){
		line-height:1.6;
		flex:370;
		margin-top:10px;
	}

	#contents02 .profile_area p.button{
		background-color:#00a3af;
		border-radius:60px;
		filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
		margin:40px 0 0 auto;
		width:200px;
		transition:0.3s;
	}

	#contents02 .profile_area p.button a{
		align-items:center;
		background-position:calc(100% - 30px) center;
		background-repeat:no-repeat;
		background-size:24px;
		background-image:url(img/arrow01.png);
		color:#fff;
		display:flex;
		font-size:16px;
		font-weight:bold;
		padding:15px 0 15px 35px;
		transition:0.3s;
	}

	#contents03{
		display:block;
		width:100%;
	}

	#contents03 p{
		width:100%;
	}

	#contents04{
		background-image:url(img/top_back03.jpg);
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
		background-attachment: fixed;
		padding:60px 0 100px 0;
		position:relative;
		width:100%;
		clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
	}

	#contents04::after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 30%;                 /* 三角形の横幅 */
		height: 60px;                /* 三角形の縦幅 */
		background: #111;
		clip-path: polygon(0 0, 100% 0, 0 100%);
	}

	#contents04 .title{
		margin-left:5%;
	}

	#contents04 .title h2{
		color:#111;
		font-size:20px;
		font-weight:bold;
	}

	#contents04 .title .line{
		background-color:#111;
		height:5px;
		margin-top:8px;
		width:30px;
	}

	#contents04 .history_area{
		display:block;
		justify-content:space-between;
		margin:40px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#contents04 .history_area .history_block{
		width:100%;
	}
	
	#contents04 .history_area .history_block:nth-child(2){
		margin-top:24px;
	}

	#contents04 .history_area .history_block h3{
		background-color:#111111;
		border-left:5px solid #df14e3;
		color:#fff;
		font-family:"Montserrat";
		font-size:18px;
		font-weight:bold;
		padding:5px 0 5px 20px;
	}

	#contents04 .history_area .history_block .live_table{
		align-items:center;
		border-bottom:1px solid #111;
		display:block;
		justify-content:start;
		padding:20px 0;
	}

	#contents04 .history_area .history_block .live_table p:first-child{
		background-color:#00a3af;
		border-radius:20px;
		color:#fff;
		font-size:14px;
		line-height:1.2;
		margin-right:0;
		padding:2px 0 5px 0;
		text-align:center;
		width:100px;
	}
	
	#contents04 .history_area .history_block .live_table p:nth-child(2){
		font-size:15px;
		line-height:1.5;
		margin-top:5px;
	}

	#contents04 .history_area .history_block .live_table p:nth-child(2) a{
		text-decoration:underline;
	}

	#contents04 .history_area .history_block .live_table p:nth-child(2) a[href]::after {
		content: "";
		display: inline-block;
		width: 0.9em;
		height: 0.9em;
		margin-left: 0.4em;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='currentColor'%3E%3Cpath d='M320 0H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L9.4 329.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L320 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zM480 256c-17.7 0-32 14.3-32 32v96c0 35.3-28.7 64-64 64H160c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160C71.6 32 0 103.6 0 192v192c0 88.4 71.6 160 160 160h224c88.4 0 160-71.6 160-160V288c0-17.7-14.3-32-32-32z'/%3E%3C/svg%3E") no-repeat center;
		background-size: contain;
		vertical-align: middle;
	}

	#contents04 .history_area .history_block .media_table{
		align-items:center;
		border-bottom:1px solid #111;
		padding:20px 0;
	}
	
	#contents04 .history_area .history_block .media_table p{
		font-size:15px;
		line-height:1.5;
	}

	#contents04 .history_area .history_block h3.top_margin{
		margin-top:24px;
	}
	
	#contents04 .button_area{
		margin:0 auto;
		width:90%;
		max-width:460px;
	}

	#contents04 p.button{
		background-color:#00a3af;
		border-radius:60px;
		filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
		margin:40px 0 0 auto;
		width:200px;
		transition:0.3s;
	}

	#contents04 p.button a{
		align-items:center;
		background-position:calc(100% - 30px) center;
		background-repeat:no-repeat;
		background-size:24px;
		background-image:url(img/arrow01.png);
		color:#fff;
		display:flex;
		font-size:16px;
		font-weight:bold;
		padding:15px 0 15px 35px;
		transition:0.3s;
	}

	#contents05{
		background-image:url(img/top_back04.jpg);
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
		background-attachment: fixed;
		padding:80px 0 60px 0;
		position:relative;
		width:100%;
		margin-top:-60px;
		clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 100%);
	}

	#contents05 .title{
		margin-left:5%;
	}

	#contents05 .title h2{
		color:#fff;
		font-family:"Montserrat";
		font-size:20px;
		font-weight:bold;
	}

	#contents05 .title .line{
		background-color:#fff;
		height:5px;
		margin-top:8px;
		width:30px;
	}

	#contents05 .link_area{
		margin:0 auto;
		width:90%;
		max-width:460px;
	}

	#contents05 .link_area .link_block{
		border-bottom:1px solid #00a3af;
		display:block;
		justify-content:space-between;
		padding:40px 0;
	}

	#contents05 .link_area .link_block .link_logo{
		margin:0 auto;
		width:120px;
	}

	#contents05 .link_area .link_block .link_info{
		width:100%;
	}

	#contents05 .link_area .link_block .link_info h3{
		color:#fff;
		font-size:18px;
		font-weight:bold;
		margin-top:20px;
		text-align:center;
	}

	#contents05 .link_area .link_block .link_info p.text{
		color:#fff;
		margin-top:10px;
	}

	#contents05 .link_area .link_block .link_info .button_area{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		margin-top:10px;
	}

	#contents05 .link_area .link_block .link_info .button_area p{
		background-color:#00a3af;
		border-radius:60px;
		filter: drop-shadow(3px 3px 0 rgba(223,20,227,1));
		margin-top:10px;
		margin-right:0;
		width:calc(50% - 5px);
		transition:0.3s;
	}

	#contents05 .link_area .link_block .link_info .button_area p a{
		align-items:center;
		background-position:15px center;
		background-repeat:no-repeat;
		background-size:26px;
		color:#fff;
		display:flex;
		font-size:15px;
		height:50px;
		padding:0 0 0 50px;
	}

	#contact{
		background-image:url(img/contact_back.jpg);
		background-size:cover;
		background-position:right center;
		background-repeat:no-repeat;
	}

	#contact .contact_area{
		background-color:rgba(255,255,255,0.85);
		padding:60px 0;
		width:100%;
	}

	#contact .contact_area .title{
		margin-left:5%;
	}

	#contact .contact_area .title h2{
		color:#111;
		font-family:"Montserrat";
		font-size:20px;
		font-weight:bold;
	}

	#contact .contact_area .title .line{
		background-color:#111;
		height:5px;
		margin-top:8px;
		width:30px;
	}

	#contact .contact_area .text_area{
		margin:40px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#contact .contact_area .text_area .button_area{
		margin-top:20px;
	}

	#contact .contact_area .text_area .button_area p{
		background-color:#00a3af;
		border-radius:60px;
		filter: drop-shadow(4px 4px 0 rgba(223,20,227,1));
		font-size:16px;
		font-weight:bold;
		margin-top:10px;
		text-align:center;
		width:100%;
		transition:0.3s;
	}

	#contact .contact_area .text_area .button_area p:first-child{
		margin-top:0;
	}

	#contact .contact_area .text_area .button_area p a{
		align-items:center;
		background-position:20px center;
		background-repeat:no-repeat;
		background-size:30px;
		color:#fff;
		display:flex;
		font-size:16px;
		justify-content:center;
		height:60px;
		padding:0 0 0 30px;
	}

	.footer{
		background-color:#003c40;
	}

	.footer p.logo{
		margin:0 auto;
		padding:60px 0 40px 0;
		width:160px;
	}

	.footer .foot_menu{
		display:none;
		background-color:#111;
		border-radius:30px 30px 0 0;
		margin:0 auto;
		padding:15px 20px 10px 20px;
		width:90%;
		max-width:720px;
	}

	p.copyright{
		background-color:#111;
		border-bottom:5px solid #df14e3;
		color:#fff;
		font-size:15px;
		margin-bottom:80px;
		padding:15px 10px;
		text-align:center;
	}
	
	/*------------------------------------*\
	    IMAGES
	\*------------------------------------*/
	#sub_head{
		align-items:center;
		background-color:#003c40;
		display:flex;
		justify-content:center;
		height:260px;
		width:100%;
	}

	#sub_head .sub_main_in{
		margin-top:70px;
	}

	#sub_head .sub_main_in h2{
		color:#fff;
		font-family:"Montserrat";
		font-size:26px;
		font-weight:bold;
	}

	#sub_head .sub_main_in .line{
		background-color:#fff;
		border-bottom:3px solid #df14e3;
		height:5px;
		margin:10px auto 0 auto;
		width:60px;
	}

	#sub_area{
		background-image:url(img/top_back03.jpg);
		background-repeat:no-repeat;
		background-size:cover;
		background-position:top center;
		background-attachment: fixed;
		padding:20px 0 120px 0;
		position:relative;
		width:100%;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}	

	#sub_area .pan_area{
		margin:0 auto;
		width:90%;
		max-width:460px;
	}

	#sub_area .pan_area span{
		font-size:15px;
	}

	#sub_contents{
		margin:60px auto 0 auto;
		width:90%;
		max-width:460px;
	}

	#sub_contents h2{
		background-color:#111111;
		border-left:5px solid #df14e3;
		color:#fff;
		font-family:"Montserrat";
		font-size:20px;
		font-weight:bold;
		margin-top:60px;
		padding:5px 0 5px 20px;
	}

	#sub_contents h2:first-child{
		margin-top:0;
	}

	#sub_contents p{
		margin-top:20px;
	}

	#sub_contents figure{
		margin-top:20px;
	}
	
	#sub_contents .profile_section .profile_block .profile_table{
		align-items:center;
		border-bottom:1px solid #111;
		display:block;
		justify-content:start;
		padding:16px 0;
	}

	#sub_contents .profile_section .profile_block .profile_table:first-of-type{
		border-top:1px solid #111;
		margin-top:30px;
	}

	#sub_contents .profile_section .profile_block .profile_table p:first-child{
		font-size:16px;
		font-weight:bold;
		flex:160;
		padding-left:0;
		padding-right:0;
	}

	#sub_contents .profile_section .profile_block .profile_table p:nth-child(2){
		line-height:1.6;
		flex:370;
		margin-top:10px;
	}
	
	#sub_contents .history_area .history_block .live_table{
		align-items:center;
		border-bottom:1px solid #111;
		display:block;
		justify-content:start;
		padding:20px 0;
	}

	#sub_contents .history_area .history_block .live_table p:first-child{
		background-color:#00a3af;
		border-radius:20px;
		color:#fff;
		font-size:14px;
		line-height:1.2;
		margin-right:0;
		padding:2px 0 5px 0;
		text-align:center;
		width:100px;
	}
	
	#sub_contents .history_area .history_block .live_table p:nth-child(2){
		font-size:15px;
		line-height:1.5;
		margin-top:5px;
	}

	#sub_contents .history_area .history_block .live_table p:nth-child(2) a{
		text-decoration:underline;
	}

	#sub_contents .history_area .history_block .live_table p:nth-child(2) a[href]::after {
		content: "";
		display: inline-block;
		width: 0.9em;
		height: 0.9em;
		margin-left: 0.4em;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='currentColor'%3E%3Cpath d='M320 0H192c-17.7 0-32 14.3-32 32s14.3 32 32 32h82.7L9.4 329.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L320 109.3V192c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32zM480 256c-17.7 0-32 14.3-32 32v96c0 35.3-28.7 64-64 64H160c-35.3 0-64-28.7-64-64V160c0-35.3 28.7-64 64-64h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H160C71.6 32 0 103.6 0 192v192c0 88.4 71.6 160 160 160h224c88.4 0 160-71.6 160-160V288c0-17.7-14.3-32-32-32z'/%3E%3C/svg%3E") no-repeat center;
		background-size: contain;
		vertical-align: middle;
	}

	#sub_contents .history_area .history_block .media_table{
		align-items:center;
		border-bottom:1px solid #111;
		padding:20px 0;
	}
	
	#sub_contents .history_area .history_block .media_table p{
		font-size:15px;
		line-height:1.5;
	}

#sub_contents table.contact_table{
		border-top:1px solid #aaa;
		margin-top:20px;
		width:100%;
	}

	#sub_contents table.contact_table tr td{
		display:block;
		padding:15px;
		width:100%;
	}
	
	#sub_contents table.contact_table tr td:first-child{
		border-top:none;
		border-bottom:none;
		display:block;
		width:100%;
	}

	#sub_contents table.contact_table tr td input{
		border:1px solid #aaa;
		border-radius:3px;
		padding:5px;
		width:100%;
	}
	
	#sub_contents table.contact_table tr td.radio input{
		width:10px;
	}

	#sub_contents table.contact_table tr td textarea{
		border:1px solid #aaa;
		border-radius:3px;
		height:120px;
		padding:5px;
		width:100%;
	}
}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
