/*
Theme Name: 極東開発工業
Theme URI: https://example.com/my-original-theme
Author: YI
Author URI: https://example.com
Description: 自分で作成したオリジナルテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 極東開発工業
*/

@charset "utf-8";
/*　font
-----------------------------------------------------*/
@font-face {
	font-family: 'NotoSans';
	src: url("/wp-content/themes/kyokutoukk/lib/font/en/NotoSans-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'NotoSans';
	src: url("/wp-content/themes/kyokutoukk/lib/font/en/NotoSans-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'NotoSans';
	src: url("/wp-content/themes/kyokutoukk/lib/font/en/NotoSans-Bold.ttf") format("truetype");
	font-weight: bold;
	font-style: normal;
}

body#top {
	overflow-x: hidden;
	font-family: 'NotoSans',sans-serif;
}


@media (min-width: 1000px) {
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*                                           */
/* min-width: 1000px                         */
/*                                           */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

	/* general framework */
	.wrap {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100%;
	}

	a {
		text-decoration: none;
	}


	/* メインのコンテンツ */
	.mainContentsWrap {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 1940px;
		margin: 0 auto;
	}
	.sectionTitle {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		font-size: 30px;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 40px;
	}
	.sectionTitle span {
		font-size: 16px;
		line-height: 1.6;
		color: #E91D25;
		margin-top: 5px;
	}
	.mainMovieWrap {
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	#videoPlay {
		content:"";
		position: absolute;
		width: 40px;
		height: 40px;
		bottom: 30px;
		right: 30px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/btn_videoplay.png) no-repeat;
		background-size: contain;
		cursor: pointer;
	}
	#videoPlay:hover {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/btn_videoplay_hov.png) no-repeat;
		background-size: contain;
	}
	#videoPlay.pause {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/btn_videopause.png) no-repeat;
		background-size: contain;
	}
	#videoPlay.pause:hover {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/btn_videopause_hov.png) no-repeat;
		background-size: contain;
	}

	.mainMovieWrap video {
		width: 100%;
		aspect-ratio: 16 / 9;
	}

	.sideMenuWrap {
		position: fixed;
		display: flex;
		top: 100px;
		right: 0;
		transform: translateX(295px);
		transition: transform 0.3s 0s ease-in-out;
		z-index: 999;
	}
	.sideMenuWrap.active {
		transform: translateX(0);
	}
	.sideMenuWrap .menuTab {
		position: absolute;
		width: 39px;
		left: -39px;
		top: 0;
		height: fit-content;
		background: #E10013;
		border-radius: 5px 0 0 5px;
		cursor: pointer;
	}
	.sideMenuWrap .menuTab::after {
		content: "";
		position: absolute;
		bottom: 35px;
		right: 44%;
		width: 20px;
		height: 20px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow01.png) no-repeat;
		background-size: contain;
		transform: rotate(180deg) translateX(-50%);
	}

	.sideMenuWrap.active .menuTab::after {
		left: 50%;
		transform: rotate(0deg) translateX(-50%);
	}
	.sideMenuWrap .menuTab p {
		display: inline-block;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.0;
		color: #fff;
		padding: 40px 10px 60px 15px;
		writing-mode: vertical-rl;
		letter-spacing: 0.1em;
	}
	.sideMenuWrap .sideMenuListArea {
		width: 295px;
		background: #E10013;
		padding: 10px 15px 10px 20px;
		border-radius: 0 0 0 5px;
		overflow-y: auto;
	}
	.overScroll {
		height: auto;
		overflow-y: auto;
	}
	.sideMenuWrap .listGroup {
		border-bottom: 1px solid #fff;
	}
	.sideMenuWrap .listGroup:last-child {
		border-bottom: none;
	}
	.sideMenuWrap .listGroup li:not(:last-child) {
		border-bottom: 1px dotted #fff;
	}
	.sideMenuWrap .listGroup li a {
		display: flex;
		align-items: center;
		font-size: 13px;
		font-weight: bold;
		color: #fff;
		line-height: 1.4;
		padding: 14px 0;
	}
	.sideMenuWrap .listGroup li a:hover {
		opacity: 0.7;
	}
	.sideMenuWrap .listGroup li span:first-child {
		display: inline-block;
		width: 50px;
		margin-right: 10px;
	}
  .sideMenuWrap .listGroup li span:last-child {
    display: inline-block;
    width: 200px;
  }
	.sideMenuWrap .listGroup li span img {
		width: 100%;
	}
	.sideMenuOverlay {
		display: none;
		position: fixed;
		background: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: calc(100% - 80px);
		left: 0;
		top: 80px;
		z-index: 888;
	}
	.sideMenuOverlay.active {
		display: block;
	}

	.topNewsWrap {
		margin-top: 80px;
		margin-bottom: 5svw;
	}

	.news__tab {
		max-width: 940px;
		width: 100%;
		margin: 0 auto;
	}
	.tab-wrap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin: 20px 0;
	}
	
	.tab-label {
		white-space: nowrap;
		text-align: center;
		padding: 10px .5em;
		order: -1;
		position: relative;
		z-index: 1;
		cursor: pointer;
		border-radius: 5px 5px 0 0;
		flex: 1;
		border-bottom: 1px solid #CCCCCC;
		font-size: 16px;
		line-height: 1.2;
	}
	.tab-label:not(:last-of-type) {
		padding-right: 5px;
	}
	.tab-label:hover::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f00;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		border-radius: 0 0 5px 5px;
		transition: .5s background-color;
	}
	.tab-label:hover {
		color: #f00;
	}
	
	/* Tab Switch */
	.tab-switch:checked + .tab-label {
		color: #f00;
	}
	.tab-switch:checked + .tab-label::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f00;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		border-radius: 0 0 5px 5px;
		transition: .5s background-color;
	}
	.tab-switch:checked + .tab-label + .tab-content {
		height: auto;
		overflow: auto;
		padding: 15px 15px 0;
		margin-top: 30px;
		margin-bottom: 40px;
		opacity: 1;
		transition: .5s opacity;
	}
	
	.tab-content {
		width: 100%;
	}
	.tab-content li {
		border-bottom: 1px solid #E0E0E0;
	}
	.tab-content li:has(a:hover) {
		background: rgba(240, 240, 240, 0.7);
	}
	.tab-content li a {
		display: block;
		position: relative;
	}
	.tab-content li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 19px;
		height: 19px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}
	.tab-content li a.pdf::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 5px;
		width: 24px;
		height: 24px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_pdf.png) no-repeat;
		background-size: contain;
	}
	.news-item {
		height: 100%;
		display: flex;
		align-items: center;
		font-size: 16px;
		line-height: 1.25;
		padding: 24px 50px 24px 0;
	}
	.news-item dt {
		display: flex;
		align-items: center;
		padding-left: 20px;
		margin-right: 30px;
	}
	.news-item dt span {
		width: 125px;
	}
	.news-item dd {
		line-height: 1.2;
	}
	.new-item::after {
		content: "NEW";
		display: inline-block;
		width: 35px;
		height: 18px;
		margin: 0 0 0 10px;
		background: #e91d25;
		font-family: "Open Sans", sans-serif;
		font-size: 12px;
		text-align: center;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}
	.new-item::after {
		content: "NEW";
		display: inline-block;
		width: 35px;
		height: 18px;
		margin: 0 0 0 10px;
		background: #e91d25;
		font-family: "Open Sans", sans-serif;
		font-size: 12px;
		text-align: center;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}
	
	.tab-switch {
		display: none;
	}
	
	.news__header {
		position: relative;
		height: 80px;
	}
	
	.news__sort {
		position: absolute;
		top: 20px;
		right: 0px;
	}
	.news__sort .dropdown-menu {
		width: 100%;
		margin: 0;
		border: none;
		font-size: 0.91rem;
		font-weight: bold;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		z-index: 1;
	}
	.news__sort .dropdown-menu li {
		border-left: 2px solid #222;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
	}
	
	.btn-dropdown {
		display: inline-block;
		width: 180px;
		height: 40px;
		padding: 12px 0 0 10px;
		border: 2px solid #222;
		background: #fff;
		background-position: top 16px right 10px;
		background-size: 16px 8px;
		font-size: 0.92rem;
		font-weight: bold;
		text-decoration: none;
		color: #222;
	}
	
	.dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: none;
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0;
		font-size: 14px;
		text-align: left;
		list-style: none;
		background-color: #fff;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: 1px solid #ccc;
		border: 1px solid rgba(0, 0, 0, .15);
		border-radius: 4px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
		box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	}
	.tab-more {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.tab-more a {
		width: 270px;
		background: #fff;
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
		border-radius: 10px;
		display: block;
		padding: 17px 0;
		text-align: center;
		transition: 0.2s background ease, 0.2s color ease;
	}
	.tab-more a:hover {
		background: #E10013;
		color: #fff;
	}


	body:not(.ios) .topKyokutoGroupWrap {
		padding-top: 80px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-attachment: fixed;
		background-position: top;
		background-size: cover;
		background-repeat: no-repeat;
	}
	body.ios .topKyokutoGroupWrap {
		padding-top: 80px;
    position: relative;
    clip-path: inset(0);
	}
	body.ios .topKyokutoGroupWrap::after {
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 120svh;
		z-index: -1;
	}
	.topKyokutoGroupWrap .sectionTitle {
		color: #fff;
	}
	.categoryListWrap {
		max-width: 1200px;
		width: 100%;
		margin: 0 auto 80px;
		padding: 0 116px;
	}
	.categoryListWrap ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		transform:skewX(-30deg);
		border-left: 2px solid #fff;
	}
	.categoryListWrap > ul li {
		width: 20%;
		border-right: 2px solid #fff;
		background: rgba(0, 0, 0, 0);
		transition: background .4s ease;
		cursor: pointer;
	}
	.categoryListWrap > ul li:nth-child(-n+5) {
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:hover {
		background: rgba(0, 0, 0, 0.4);
	}
	.categoryListWrap > ul li .categoryIcon {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 60px 0;
	}
	.categoryListWrap > ul li .categoryIcon img {
		display: block;
		width: 30%;
		margin-bottom: 26px;
		transform: skewX(30deg);
	}
	.categoryListWrap > ul li .categoryIcon figcaption {
		display: block;
		font-size: 18px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		color: #fff;
		transform:skewX(30deg);
	}
	.whiteBgArea {
		background: #fff;
		padding: 80px 0;
	}
	body:not(.ios) .transBgFlex {
		max-width: 1280px;
		width: 100%;
		display: flex;
		justify-content: space-around;
		gap: 55px;
		margin: 0 auto;
		padding: 0 30px;
		position: relative;
		z-index: 0;
	}
	body:not(.ios) .transBgFlex .transBox {
		position: relative;
		width: calc(100% / 3);
		padding: 30px;
		border-radius: 10px;
		overflow: hidden;
	}
	body:not(.ios) .transBgFlex .transBox .bgImg {
		width: 100%;
		height: 100%;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg);
		background-attachment: fixed;
		background-position: top;
		background-size: cover;
		background-repeat: no-repeat;
		filter: blur(4px);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -2;
	}
	body:not(.ios) .transBgFlex .transBox .bgBlur {
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	body.ios .transBgFlex {
		max-width: 1280px;
		width: 100%;
		display: flex;
		justify-content: space-around;
		gap: 55px;
		margin: 0 auto;
		padding: 0 30px;
	}
	body.ios .transBgFlex .transBox {
		position: relative;
		width: calc(100% / 3);
		padding: 30px;
		clip-path: inset(0 0 round 10px 10px 10px 10px);
	}
	body.ios .transBgFlex .transBox::before {
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 120svh;
		z-index: -1;
	}
	body.ios .transBgFlex .transBox::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(4px);
		border-radius: 10px;
		z-index: 0;
	}
	.transBoxTitle {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		font-size: min(2.4vw, 30px);
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 30px;
		z-index: 1;
	}
	.transBoxTitle span {
		font-size: 16px;
		line-height: 1.6;
		color: #E91D25;
		margin-top: 5px;
	}
	.transBox ul {
		position: relative;
		z-index: 1;
	}
	.transBox li {
		border-bottom: 1px solid #E0E0E0;
	}
	.transBox li a {
		position: relative;
		display: block;
		padding: 20px 30px 20px 10px;
		font-size: 16px;
		line-height: 1.4;
		font-weight: bold;
		color: #000;
	}
	.transBox li a:hover {
		color: #E10013;
		background: rgba(240, 240, 240, 0.7);
	}
	.transBox li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 1.2vw;
		height: 1.2vw;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}


	.mediaContentsWrap {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_media.png) no-repeat;
		background-size: cover;
		background-position: center;
		padding: 80px 0;
	}
	.mediaFlexWrap {
		display: flex;
		justify-content: center;
		gap: 40px;
		max-width: 1200px;
		width: 100%;
		padding: 0 80px;
		margin: 0 auto;
	}
	.mediaBox {
		width: 320px;
		background: #fff;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
	}
	.mediaBox figcaption {
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
		padding: 16px 24px 24px;
	}
	.mediaBox a:hover figure {
		position: relative;
	}
	.mediaBox a:hover figure::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.2);
	}
	.mediaBox a:hover figcaption {
		color: #E10013;
	}

	/* モーダルCSS */
	body.openModal {
		overflow-y: hidden;
	}
	.modalContents {
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		opacity: 0;
		transition: 0.3s ease-out;
	}
	.modalContents.modalactive {
		visibility: visible;
		opacity: 1;
	}
	#overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: -1;
	}
	#overlay.disable {
		pointer-events: none;
	}
	.categoryModal {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 75%;
		max-width: 1100px;
		min-height: 500px;
		padding-left: 60px;
		background: #fff;
	}
	.categoryModal .describe {
		display: flex;
		align-items: flex-end;
		gap: 35px;
		margin-bottom: 60px;
	}
	.categoryModal .describe .modalIcon {
		width: 180px;
		background: #E91D25;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		transform:skewX(-30deg);
	}

	.categoryModal .describe figure {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		padding: 30px 0;
	}
	.categoryModal .describe figure img {
		display: block;
		width: 30%;
		margin-bottom: 20px;
		transform: skewX(30deg);
	}
	.categoryModal .describe figure figcaption {
		display: block;
		font-size: 18px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		color: #fff;
		transform:skewX(30deg);
	}
	.categoryModal .describe p {
		width: 420px;
		font-size: 16px;
		line-height: 1.5;
		padding-bottom: 10px;
	}
	.categoryLink {
		width: 60%;
		display: flex;
		flex-wrap: wrap;
		gap: 0 30px;
		padding-left: 30px;
	}
	.categoryLink li {
		width: calc(50% - 15px);
		border-bottom: 1px dotted #CCC;
    font-size: min(1.2vw, 18px);
		line-height: 1.3;
	}
	.categoryLink li:not(:has(a)) {
		padding: 10px 28px 10px 0;
	}
	.categoryLink a {
		display: inline-flex;
		align-items: center;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 10px 28px 10px 0;
    line-height: 1.3;
	}
	.categoryLink a:hover {
		color: #E10013;
	}
	.categoryLink a[target="_blank"]::after {
		position: absolute;
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_link.png) no-repeat;
		width: 18px;
		height: 16px;
		margin-left: 10px;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.modalBg {
		position: absolute;
    right: 0;
    bottom: 0;
		max-width: 40%;
		z-index: -1;
	}
	@media (max-width: 1200px) {
		.modalBg {
			max-width: 35%;
		}
	}
	.modalCloseBtn {
		position: absolute;
    right: 0;
    top: 0;
		width: 30px;
		height: 30px;
		background: #CCC;
		cursor: pointer;
	}
	.modalCloseBtn::before, .modalCloseBtn::after { /* 共通設定 */
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 2px;
		height: 15px;
		background: #fff;
	}
	.modalCloseBtn::before {
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.modalCloseBtn::after {
		transform: translate(-50%,-50%) rotate(-45deg);
	}

	
	/* moveArea */
	.scrollMoveWrap {
		position: relative;
		overflow: hidden;
		padding-bottom: 5svw;
	}

	.scrollBlock01 {
		position: relative;
		width: 100%;
		height: 60svw;
	}
	.scrollBlock02 {
		position: relative;
		width: 100%;
		height: 60svw;
	}
	.scrollBlock03 {
		position: relative;
		width: 100%;
		height: 100svw;
	}
	.fixedBox {
		position: fixed!important;
	}
	.moveContainer {
		position: relative;
		width: 100%;
		height: 100%;
	}
	.scrollBlock03 .moveContainer  {
		position: absolute;
		bottom: 0;
		height: 100svh;
	}

	.moveImgWrap {
		position: absolute;
		top: 50%;
		bottom: unset;
		transform: translateY(-50%);
		left: 0;
		width: 75%;
		z-index: 0;
	}
	.moveImgWrap .dark {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
	.moveRedWrap {
		position: absolute;
		top: 50%;
		bottom: unset;
		transform: translateY(-50%);
		right: -3vw;
		width: 53%;
		z-index: 0;
		margin-top: 6%;
	}
	.moveBoxTitle {
		position: absolute;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		top: 50%;
		bottom: unset;
		transform: translateY(-50%);
		left: 13vw;
		width: 40%;
		z-index: 0;
		margin-top: 14%;
	}
	.moveBoxTitle h2 {
		font-size: min(2.5vw, 52px);
		font-weight: bold;
		line-height: 1.3;
		color: #fff;
		text-align: right;
	}

	.moveBoxText {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		flex-direction: column;
		top: 50%;
		bottom: unset;
		transform: translateY(-50%);
		right: 4vw;
		width: 26%;
		z-index: 0;
		margin-top: 12%;
	}
	.moveBoxText h3 {
		font-size: min(2.0vw, 40px);
		font-weight: bold;
		line-height: 1.2;
		text-align: right;
		color: #fff;
		margin-bottom: 5svh;
	}
	.moveBoxText h3 span {
		display: inline-block;
		width: 100%;
		font-size: min(1.2vw, 20px);
	}
	.moveBoxText ul {
		width: 100%;
	}
	.moveBoxText li {
		border-bottom: 1px solid #fff;
	}
	.moveBoxText li a {
		position: relative;
		display: block;
		padding: 7% 0.5vw;
		font-size: min(1.2vw, 20px);
		font-weight: bold;
		color: #fff;
	}
	.moveBoxText li a:hover {
		color: #E10013;
		background: rgba(240, 240, 240, 0.7);
	}
	.moveBoxText li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 1.2vw;
		height: 1.2vw;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow01.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}
	.moveBoxText li a:hover::after {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}

	
}


/* タブレット */
@media (max-width: 999px) and (min-width: 661px) {
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*                                           */
/* max-width: 999px  min-width: 661px        */
/*                                           */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	.sideMenuWrap {
		z-index: 888;
	}

	/* メインのコンテンツ */
	.mainContentsWrap {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0 auto;
	}
	.sectionTitle {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		font-size: 22px;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 40px;
	}
	.sectionTitle span {
		font-size: 12px;
		line-height: 1.6;
		color: #E91D25;
		margin-top: 5px;
	}
	.mainMovieWrap {
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	#videoPlay {
		display: none;
	}

	/* ダミー用画像 */
	.mainMovieWrap img {
		width: 100%;
	}

	.sideMenuWrap {
		position: fixed;
		display: flex;
		top: 100px;
		right: 0;
		transform: translateX(295px);
		transition: transform 0.3s 0s ease-in-out;
		z-index: 888;
	}
	.sideMenuWrap.active {
		transform: translateX(0);
	}
	.sideMenuWrap .menuTab {
		position: absolute;
		width: 39px;
		left: -39px;
		top: 0;
		height: fit-content;
		background: #E10013;
		border-radius: 5px 0 0 5px;
		cursor: pointer;
	}
	.sideMenuWrap .menuTab::after {
		content: "";
		position: absolute;
		bottom: 35px;
		right: 44%;
		width: 20px;
		height: 20px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow01.png) no-repeat;
		background-size: contain;
		transform: rotate(180deg) translateX(-50%);
	}

	.sideMenuWrap.active .menuTab::after {
		left: 50%;
		transform: rotate(0deg) translateX(-50%);
	}
	.sideMenuWrap .menuTab p {
		display: inline-block;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.0;
		color: #fff;
		padding: 40px 10px 60px 15px;
		writing-mode: vertical-rl;
		letter-spacing: 0.1em;
	}
	.sideMenuWrap .sideMenuListArea {
		width: 295px;
		background: #E10013;
		padding: 10px 15px 10px 20px;
		border-radius: 0 0 0 5px;
	}
	.sideMenuWrap .listGroup {
		border-bottom: 1px solid #fff;
	}
	.sideMenuWrap .listGroup:last-child {
		border-bottom: none;
	}
	.sideMenuWrap .listGroup li:not(:last-child) {
		border-bottom: 1px dotted #fff;
	}
	.sideMenuWrap .listGroup li a {
		display: flex;
		align-items: center;
		font-size: 13px;
		font-weight: bold;
		color: #fff;
		line-height: 1.4;
		padding: 12px 0;
	}
	.sideMenuWrap .listGroup li a:hover {
		opacity: 0.7;
	}
	.sideMenuWrap .listGroup li span:first-child {
		display: inline-block;
		width: 50px;
		margin-right: 10px;
	}
  .sideMenuWrap .listGroup li span:last-child {
    display: inline-block;
    width: 200px;
  }
	.sideMenuWrap .listGroup li span img {
		width: 100%;
	}
	.sideMenuOverlay {
		display: none;
		position: fixed;
		background: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: calc(100% - 60px);
		left: 0;
		top: 60px;
		z-index: 887;
	}
	.sideMenuOverlay.active {
		display: block;
	}

	.topNewsWrap {
    margin-top: 80px;
		margin-bottom: 160px;
		padding: 0 55px;
	}

	.news__tab {
		max-width: 940px;
		width: 100%;
		margin: 0 auto;
	}
	.tab-wrap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin: 20px 0;
	}
	
	.tab-label {
		white-space: nowrap;
		text-align: center;
		padding: 10px .5em;
		order: -1;
		position: relative;
		z-index: 1;
		cursor: pointer;
		border-radius: 5px 5px 0 0;
		flex: 1;
		border-bottom: 1px solid #CCCCCC;
		font-size: 16px;
		line-height: 1.2;
	}
	.tab-label:not(:last-of-type) {
		padding-right: 5px;
	}
	.tab-label:hover::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f00;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		border-radius: 0 0 5px 5px;
		transition: .5s background-color;
	}
	.tab-label:hover {
		color: #f00;
	}
	
	/* Tab Switch */
	.tab-switch:checked + .tab-label {
		color: #f00;
	}
	.tab-switch:checked + .tab-label::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f00;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		border-radius: 0 0 5px 5px;
		transition: .5s background-color;
	}
	.tab-switch:checked + .tab-label + .tab-content {
		height: auto;
		overflow: auto;
		padding: 15px 15px 0;
		margin-top: 30px;
		margin-bottom: 40px;
		opacity: 1;
		transition: .5s opacity;
	}
	
	.tab-content {
		width: 100%;
	}
	.tab-content li {
		border-bottom: 1px solid #E0E0E0;
	}
	.tab-content li:has(a:hover) {
		background: rgba(240, 240, 240, 0.7);
	}
	.tab-content li a {
		display: block;
		position: relative;
	}
	.tab-content li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 19px;
		height: 19px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}
	.tab-content li a.pdf::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 5px;
		width: 24px;
		height: 24px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_pdf.png) no-repeat;
		background-size: contain;
	}
	.news-item {
		height: 100%;
		display: flex;
		align-items: center;
		font-size: 16px;
		line-height: 1.25;
		padding: 24px 50px 24px 0;
	}
	.news-item dt {
		display: flex;
		align-items: center;
		padding-left: 20px;
		margin-right: 30px;
	}
	.news-item dt span {
		width: 125px;
	}
	.news-item dd {
		line-height: 1.2;
	}
	.new-item::after {
		content: "NEW";
		display: inline-block;
		width: 35px;
		margin: 0 0 0 10px;
		background: #e91d25;
		font-family: "Open Sans", sans-serif;
		font-size: 12px;
		text-align: center;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}
	
	.tab-switch {
		display: none;
	}
	
	.news__header {
		position: relative;
		height: 80px;
	}
	
	.news__sort {
		position: absolute;
		top: 20px;
		right: 0px;
	}
	.news__sort .dropdown-menu {
		width: 100%;
		margin: 0;
		border: none;
		font-size: 0.91rem;
		font-weight: bold;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		z-index: 1;
	}
	.news__sort .dropdown-menu li {
		border-left: 2px solid #222;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
	}
	
	.btn-dropdown {
		display: inline-block;
		width: 180px;
		height: 40px;
		padding: 12px 0 0 10px;
		border: 2px solid #222;
		background: #fff;
		background-position: top 16px right 10px;
		background-size: 16px 8px;
		font-size: 0.92rem;
		font-weight: bold;
		text-decoration: none;
		color: #222;
	}
	
	.dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: none;
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0;
		font-size: 14px;
		text-align: left;
		list-style: none;
		background-color: #fff;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: 1px solid #ccc;
		border: 1px solid rgba(0, 0, 0, .15);
		border-radius: 4px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
		box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	}
	.tab-more {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.tab-more a {
		width: 270px;
		background: #fff;
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
		border-radius: 10px;
		display: block;
		padding: 17px 0;
		text-align: center;
	}
	.tab-more a:hover {
		background: #E10013;
		color: #fff;
	}

	
	/* moveArea */
	.scrollMoveWrap {
		position: relative;
		overflow: hidden;
		padding-bottom: 125px;
	}

	.scrollBlock01 {
		position: relative;
		width: 100%;
	}
	.scrollBlock02 {
		position: relative;
		width: 100%;
	}
	.scrollBlock03 {
		position: relative;
		width: 100%;
	}
	.fixedBox {
		position: fixed!important;
	}
	.moveContainer {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.moveImgWrap {
		position: relative;
		width: 100%;
		z-index: 0;
	}
	.moveImgWrap .dark {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
	.moveRedWrap {
		position: relative;
		width: 78%;
		z-index: 0;
		margin-top: -7%;
		margin-left: auto;
	}
	.moveBoxTitle {
		position: absolute;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		bottom: 53%;
		right: 50px;
		width: 100%;
		z-index: 0;
	}
	.moveBoxTitle h2 {
		font-size: min(4.5vw, 44px);
		font-weight: bold;
		line-height: 1.3;
		color: #fff;
		text-align: right;
	}

	.moveBoxText {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		flex-direction: column;
		bottom: 8%;
		right: 50px;
		width: 47%;
		z-index: 0;
	}
	.moveBoxText h3 {
		font-size: min(3.5vw, 30px);
		font-weight: bold;
		line-height: 1.2;
		text-align: right;
		color: #fff;
		margin-bottom: 20px;
	}
	.moveBoxText h3 span {
		display: inline-block;
		width: 100%;
		font-size: min(2.0vw, 16px);
	}
	.moveBoxText ul {
		width: 100%;
	}
	.moveBoxText li {
		border-bottom: 1px solid #fff;
	}
	.moveBoxText li a {
		position: relative;
		display: block;
		padding: 7% 0.5vw;
		font-size: min(2.2vw, 16px);
		font-weight: bold;
		color: #fff;
	}
	.moveBoxText li a:hover {
		color: #E10013;
		background: rgba(240, 240, 240, 0.7);
	}
	.moveBoxText li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow01.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}
	.moveBoxText li a:hover::after {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}



	body:not(.ios) .topKyokutoGroupWrap {
		padding-top: 80px;
    position: relative;
    clip-path: inset(0);
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg);
		background-attachment: fixed;
		background-position: 54% 12%;
		background-size: 166%;
		background-repeat: no-repeat;
	}
	body.ios .topKyokutoGroupWrap {
		padding-top: 80px;
    position: relative;
    clip-path: inset(0);
	}
	body.ios .topKyokutoGroupWrap::after {
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 120svh;
		z-index: -1;
	}

	.topKyokutoGroupWrap .sectionTitle {
		color: #fff;
	}

	.categoryListWrap {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-bottom: 50px;
		overflow-x: hidden;
	}
	.categoryListWrap ul {
		display: flex;
		flex-wrap: wrap;
		width: 70%;
		transform: skewX(-30deg);
		padding-right: 10%;
	}
	.categoryListWrap > ul li {
		width: 25%;
		box-sizing: border-box;
		cursor: pointer;
	}
	.categoryListWrap > ul li:nth-child(odd) {
		border-left: 2px solid #fff;
		border-right: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(-n+5) {
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:hover {
		background: rgba(0, 0, 0, 0.4);
	}
	.categoryListWrap > ul li .categoryIcon {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		padding: 20px 0;
		height: 100%;
	}
	.categoryListWrap > ul li .categoryIcon img {
		display: block;
		width: 46%;
		margin-bottom: 12px;
		transform: skewX(30deg);
	}
	.categoryListWrap > ul li .categoryIcon figcaption {
		display: block;
    font-size: min(2.0vw, 18px);
		line-height: 1.4;
		text-align: center;
		color: #fff;
		transform:skewX(30deg);
	}
	.categoryListWrap > ul li:nth-child(3) {
		margin-right: 25%;
	}
	.categoryListWrap > ul li:nth-child(4) {
		margin-left: 25%;
		border-left: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(5) {
		margin-right: 25%;
	}
	.categoryListWrap > ul li:nth-child(6) {
		margin-left: 25%;
		border-left: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(7) {
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(8) {
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(9) {
		margin-left: 50%;
	}
	.categoryListWrap > ul li:nth-child(10) {
		border-right: 2px solid #fff;
	}


	.whiteBgArea {
		background: #fff;
		padding: 80px 0;
	}
	body:not(.ios) .transBgFlex {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin: 0 auto;
		padding: 0 30px;
		position: relative;
		z-index: 0;
	}
	body:not(.ios) .transBgFlex .transBox {
		position: relative;
		width: calc(100% / 2 - 15px);
		padding: 20px;
		border-radius: 10px;
		overflow: hidden;
	}
	body:not(.ios) .transBgFlex .transBox .bgImg {
		width: 100%;
		height: 100%;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg);
		background-attachment: fixed;
		background-position: 54% 12%;
		background-size: 166%;
		background-repeat: no-repeat;
		filter: blur(4px);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -2;
	}
	body:not(.ios) .transBgFlex .transBox .bgBlur {
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	body.ios .transBgFlex {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin: 0 auto;
		padding: 0 30px;
	}
	body.ios .transBgFlex .transBox {
		position: relative;
		width: calc(100% / 2 - 15px);
		padding: 20px;
		clip-path: inset(0 0 round 10px 10px 10px 10px);
	}
	body.ios .transBgFlex .transBox::before {
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-size: cover;
		background-position: center;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 120svh;
		z-index: -1;
	}
	body.ios .transBgFlex .transBox::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(4px);
		border-radius: 10px;
		z-index: 0;
	}
	.transBoxTitle {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		font-size: 22px;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 32px;
		z-index: 1;
	}
	.transBoxTitle span {
		font-size: 12px;
		line-height: 1.6;
		color: #E91D25;
		margin-top: 5px;
	}
	.transBox ul {
		position: relative;
		z-index: 1;
	}
	.transBox li {
		border-bottom: 1px solid #E0E0E0;
	}
	.transBox li a {
		position: relative;
		display: block;
		padding: 12px 30px 12px 0;
		font-size: 16px;
		line-height: 1.2;
		font-weight: bold;
		color: #000;
	}
	.transBox li a:hover {
		color: #E10013;
		background: rgba(240, 240, 240, 0.7);
	}
	.transBox li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 19px;
		height: 19px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}


	.mediaContentsWrap {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_media_tb.png) no-repeat;
		background-size: cover;
		background-position: center;
		padding: 80px 0;
	}
	.mediaFlexWrap {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 40px;
		width: 100%;
		padding: 0 70px;
		margin: 0 auto;
	}
	.mediaBox {
		width: calc(100% / 2 - 20px);
		background: #fff;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
	}
	.mediaBox figcaption {
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
		padding: 16px 24px 24px;
	}
	.mediaBox a:hover figure {
		position: relative;
	}
	.mediaBox a:hover figure::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.2);
	}
	.mediaBox a:hover figcaption {
		color: #E10013;
	}

	/* モーダルCSS */
	body.openModal {
		overflow-y: hidden;
	}
	.modalContents {
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		opacity: 0;
		transition: 0.3s ease-out;
		overflow-y: auto;
	}
	.modalContents.modalactive {
		visibility: visible;
		opacity: 1;
	}
	#overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: -1;
	}
	#overlay.disable {
		pointer-events: none;
	}
	.categoryModal {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50%;
		min-height: 600px;
		background: #fff;
	}
	.categoryModal .describe {
		position: relative;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		margin-bottom: 20px;
	}
	.categoryModal .describe .modalIcon {
		position: absolute;
		bottom: 0;
		right: 61%;
		width: 25%;
		background: #E91D25;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		transform:skewX(-30deg);
	}

	.categoryModal .describe figure {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 15px 0;
	}
	.categoryModal .describe figure img {
		display: block;
		width: 65%;
		margin-bottom: 10px;
		transform: skewX(30deg);
	}
	.categoryModal .describe figure figcaption {
		display: block;
		font-size: 12px;
		line-height: 1.4;
		text-align: center;
		color: #fff;
		transform:skewX(30deg);
	}
	.categoryModal p {
		width: 100%;
		font-size: 16px;
		line-height: 1.4;
		padding: 0 15px;
		margin-bottom: 20px;
	}
	.categoryLink {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding: 0 15px 30px;
	}
	.categoryLink li {
		width: 100%;
		border-bottom: 1px dotted #CCC;
		font-size: min(4.3vw ,18px);
		line-height: 1.3;
	}
	.categoryLink li:not(:has(a)) {
		padding: 13px 28px 13px 0;
	}
	.categoryLink a {
		display: inline-block;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 13px 28px 13px 0;
		line-height: 1.3;
	}
	.categoryLink a:hover {
		color: #E10013;
	}
	.categoryLink a[target="_blank"]::after {
		position: absolute;
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_link.png) no-repeat;
		width: 18px;
		height: 16px;
		margin-left: 10px;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.modalBg {
		width: 65%;
	}
	.modalCloseBtn {
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
		height: 30px;
		background: #CCC;
		cursor: pointer;
	}
	.modalCloseBtn::before, .modalCloseBtn::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 2px;
		height: 15px;
		background: #fff;
	}
	.modalCloseBtn::before {
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.modalCloseBtn::after {
		transform: translate(-50%,-50%) rotate(-45deg);
	}
}



@media (max-width:660px) {	
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/*                                           */
/* max-width: 767px                          */
/*                                           */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	/* general framework */
	.wrap {
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100%;
	}
	.mainContentsWrap {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column-reverse;
	}
	body {
		overflow-x: hidden;
	}
	body.hidden {
		overflow-y: hidden;
	}

	/* サイドメニュー */
	.sideMenuWrap {
		position: fixed;
		display: flex;
		top: 90px;
		right: 0;
		transform: translateX(295px);
		transition: transform 0.3s 0s ease-in-out;
		z-index: 888;
	}
	.sideMenuWrap.active {
		transform: translateX(0);
	}
	.sideMenuWrap .menuTab {
		position: absolute;
		width: 39px;
		left: -39px;
		top: 0;
		height: fit-content;
		background: #E10013;
		border-radius: 5px 0 0 5px;
		cursor: pointer;
	}
	.sideMenuWrap.active .menuTab::after {
		left: 50%;
		transform: rotate(0deg) translateX(-50%);
	}
	.menuTab::after {
		content: "";
		position: absolute;
		bottom: 35px;
		right: 44%;
		width: 20px;
		height: 20px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow01.png) no-repeat;
		background-size: contain;
		transform: rotate(180deg) translateX(-50%);
	}
	.sideMenuWrap .menuTab p {
		display: inline-block;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.0;
		color: #fff;
		padding: 40px 10px 60px 15px;
		writing-mode: vertical-rl;
		letter-spacing: 0.1em;
	}
	.sideMenuWrap .sideMenuListArea {
		width: 295px;
		background: #E10013;
		padding: 10px 15px 10px 20px;
		border-radius: 0 0 0 5px;
	}
	.sideMenuWrap .listGroup {
		border-bottom: 1px solid #fff;
	}
	.sideMenuWrap .listGroup:last-child {
		border-bottom: none;
	}
	.sideMenuWrap .listGroup li:not(:last-child) {
		border-bottom: 1px dotted #fff;
	}
	.sideMenuWrap .listGroup li a {
		display: flex;
		align-items: center;
		font-size: 13px;
		font-weight: bold;
		color: #fff;
		line-height: 1.4;
		padding: 2vw 0;
	}
	.sideMenuWrap .listGroup li a:hover {
		opacity: 0.7;
	}
	.sideMenuWrap .listGroup li span:first-child {
		display: inline-block;
		width: 50px;
		margin-right: 10px;
	}
  .sideMenuWrap .listGroup li span:last-child {
    display: inline-block;
    width: 200px;
  }
	.sideMenuWrap .listGroup li span img {
		width: 100%;
	}

	.sideMenuOverlay {
		display: none;
		position: fixed;
		background: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: calc(100% - 60px);
		left: 0;
		top: 60px;
		z-index: 887;
	}
	.sideMenuOverlay.active {
		display: block;
	}

	/* メインのコンテンツ */
	.mainMovieWrap {
		position: relative;
		width: 100%;
		overflow: hidden;
	}
	#videoPlay {
		display: none;
	}

	/* ダミー用画像 */
	.mainMovieWrap img {
		width: 100%;
	}

	.topTopicsWrap {
		padding-top: 50px;
		margin-bottom: 50px;
	}
	.sectionTitle {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		font-size: 22px;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 40px;
	}
	.sectionTitle span {
		font-size: 12px;
		line-height: 1.6;
		color: #E91D25;
		margin-top: 5px;
	}

	.topNewsWrap {
		padding: 50px 20px 0 20px;
    margin-top: 50px;
		margin-bottom: 100px;
	}
	.news__tab {
		width: 100%;
		margin: 0 auto;
	}
	.tab-wrap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	
	.tab-label {
		white-space: nowrap;
		text-align: center;
		padding: 11px 1.2em;
		margin-bottom: 10px;
		order: -1;
		position: relative;
		z-index: 1;
		cursor: pointer;
		border-radius: 5px 5px 0 0;
		flex: 1;
		border-bottom: 1px solid #CCCCCC;
		font-size: 16px;
		line-height: 1.2;
	}
	.tab-label:hover::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f00;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		border-radius: 0 0 5px 5px;
		transition: .5s background-color;
	}
	.tab-label:hover {
		color: #f00;
	}
	
	/* Tab Switch */
	.tab-switch:checked + .tab-label {
		color: #f00;
	}
	.tab-switch:checked + .tab-label::after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #f00;
		position: absolute;
		bottom: 0;
		left: 0;
		z-index: 0;
		border-radius: 0 0 5px 5px;
		transition: .5s background-color;
	}
	.tab-switch:checked + .tab-label + .tab-content {
		height: auto;
		overflow: auto;
		margin-top: 30px;
		margin-bottom: 40px;
		opacity: 1;
		transition: .5s opacity;
	}
	
	.tab-content {
		width: 100%;
	}
	.tab-content li {
		border-bottom: 1px solid #E0E0E0;
	}
	.tab-content li:has(a:hover) {
		background: rgba(240, 240, 240, 0.7);
	}
	.tab-content li a {
		display: block;
		position: relative;
	}
	.tab-content li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 19px;
		height: 19px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}
	.tab-content li a.pdf::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 5px;
		width: 24px;
		height: 24px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/common/ico_pdf.png) no-repeat;
		background-size: contain;
		background-position: center;
	}
	.news-item {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		font-size: 16px;
		line-height: 1.25;
		padding: 24px 50px 24px 0;
	}
	.news-item dt {
		display: flex;
		align-items: center;
		gap: 20px;
		margin-bottom: 10px;
	}
	.news-item dt span {
		width: 125px;
	}
	.news-item dd {
		font-size: 16px;
		line-height: 1.625;
	}
	.new-item::after {
		content: "NEW";
		display: inline-block;
		width: 35px;
		margin: 0 0 0 10px;
		background: #e91d25;
		font-family: "Open Sans", sans-serif;
		font-size: 12px;
		text-align: center;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}
	
	.tab-switch {
		display: none;
	}
	
	.news__header {
		position: relative;
		height: 80px;
	}
	
	.news__sort {
		position: absolute;
		top: 20px;
		right: 0px;
	}
	.news__sort .dropdown-menu {
		width: 100%;
		margin: 0;
		border: none;
		font-size: 0.91rem;
		font-weight: bold;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		z-index: 1;
	}
	.news__sort .dropdown-menu li {
		border-left: 2px solid #222;
		border-right: 2px solid #222;
		border-bottom: 2px solid #222;
	}
	
	.btn-dropdown {
		display: inline-block;
		width: 180px;
		height: 40px;
		padding: 12px 0 0 10px;
		border: 2px solid #222;
		background: #fff;
		background-position: top 16px right 10px;
		background-size: 16px 8px;
		font-size: 0.92rem;
		font-weight: bold;
		text-decoration: none;
		color: #222;
	}
	
	.dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 1000;
		display: none;
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0;
		font-size: 14px;
		text-align: left;
		list-style: none;
		background-color: #fff;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: 1px solid #ccc;
		border: 1px solid rgba(0, 0, 0, .15);
		border-radius: 4px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
		box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	}
	.tab-more {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.tab-more a {
		width: 270px;
		background: #fff;
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
		border-radius: 10px;
		display: block;
		padding: 17px 0;
		text-align: center;
	}

	
	/* moveArea */
	.scrollMoveWrap {
		position: relative;
		overflow: hidden;
		padding-bottom: 125px;
	}

	.scrollBlock01 {
		position: relative;
		width: 100%;
	}
	.scrollBlock02 {
		position: relative;
		width: 100%;
	}
	.scrollBlock03 {
		position: relative;
		width: 100%;
	}
	.fixedBox {
		position: fixed!important;
	}
	.moveContainer {
		position: relative;
		width: 100%;
	}
	
	.moveImgWrap {
		position: relative;
		width: 100%;
		z-index: 0;
	}
	.moveImgWrap .dark {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
	.moveRedWrap {
		position: relative;
		width: 100%;
		z-index: 0;
		margin-top: -34%;
	}
	.moveBoxTitle {
		position: absolute;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		top: 50%;
		bottom: unset;
		transform: translateY(-50%);
		right: 50px;
		width: 100%;
		z-index: 0;
		margin-top: -30%;
	}
	.moveBoxTitle h2 {
		font-size: min(6.2vw, 30px);
		font-weight: bold;
		line-height: 1.3;
		color: #fff;
		text-align: right;
	}

	.moveBoxText {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		flex-direction: column;
		top: 50%;
		bottom: unset;
		transform: translateY(-50%);
		right: 0;
		width: 100%;
		padding: 0 50px;
		z-index: 0;
		margin-top: 40%;
	}
	.moveBoxText h3 {
		font-size: min(7.2vw, 30px);
		font-weight: bold;
		line-height: 1.3;
		text-align: right;
		color: #fff;
		margin-bottom: 7%;
	}
	.moveBoxText h3 span {
		display: inline-block;
		width: 100%;
		font-size: min(4.5vw, 16px);
	}
	.moveBoxText ul {
		width: 100%;
	}
	.moveBoxText li {
		border-bottom: 1px solid #fff;
	}
	.moveBoxText li a {
		position: relative;
		display: block;
		padding: 5vw 2.5%;
		font-size: min(4.8vw, 16px);
		line-height: 1.0;
		font-weight: bold;
		color: #fff;
	}
	.moveBoxText li a:hover {
		color: #E10013;
		background: rgba(240, 240, 240, 0.7);
	}
	.moveBoxText li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow01.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}
	.moveBoxText li a:hover::after {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}

	body:not(.ios) .topKyokutoGroupWrap {
		padding-top: 80px;
    position: relative;
    clip-path: inset(0);
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg);
		background-attachment: fixed;
		background-position: 52% 15%;
		background-size: 228%;
		background-repeat: no-repeat;
	}
	body.ios .topKyokutoGroupWrap {
		padding-top: 80px;
    position: relative;
    clip-path: inset(0);
	}
	body.ios .topKyokutoGroupWrap::after {
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-size: cover;
		background-position: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 120svh;
		z-index: -1;
	}
	
	.topKyokutoGroupWrap .sectionTitle {
		color: #fff;
	}
	.categoryListWrap {
		width: 100%;
		margin-bottom: 50px;
		overflow-x: hidden;
	}
	.categoryListWrap ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		transform: skewX(-30deg);
		margin-left: -8%;
	}
	.categoryListWrap > ul li {
		width: 25%;
		box-sizing: border-box;
		cursor: pointer;
	}
	.categoryListWrap > ul li:nth-child(odd) {
		border-left: 2px solid #fff;
		border-right: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(-n+5) {
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:hover {
		background: rgba(0, 0, 0, 0.4);
	}
	.categoryListWrap > ul li .categoryIcon {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		padding: 20px 0;
		height: 100%;
	}
	.categoryListWrap > ul li .categoryIcon img {
		display: block;
		width: 60%;
		margin-bottom: 12px;
		transform: skewX(30deg);
	}
	.categoryListWrap > ul li .categoryIcon figcaption {
		display: block;
		font-size: 12px;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		color: #fff;
		transform:skewX(30deg);
	}
	.categoryListWrap > ul li:nth-child(3) {
		margin-right: 25%;
	}
	.categoryListWrap > ul li:nth-child(4) {
		margin-left: 25%;
		border-left: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(5) {
		margin-right: 25%;
	}
	.categoryListWrap > ul li:nth-child(6) {
		margin-left: 25%;
		border-left: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(7) {
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(8) {
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}
	.categoryListWrap > ul li:nth-child(9) {
		margin-left: 50%;
	}
	.categoryListWrap > ul li:nth-child(10) {
		border-right: 2px solid #fff;
	}

	.whiteBgArea {
		background: #fff;
		padding: 50px 20px;
	}
	body:not(.ios) .transBgFlex {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 50px;
		margin: 0 auto;
		position: relative;
		z-index: 0;
	}
	body:not(.ios) .transBgFlex .transBox {
		position: relative;
		width: 100%;
		padding: 20px;
		border-radius: 10px;
		overflow: hidden;
	}
	body:not(.ios) .transBgFlex .transBox .bgImg {
		width: 100%;
		height: 100%;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg);
		background-attachment: fixed;
		background-position: 52% 15%;
		background-size: 228%;
		background-repeat: no-repeat;
		filter: blur(4px);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -2;
	}
	body:not(.ios) .transBgFlex .transBox .bgBlur {
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
	}
	body.ios .transBgFlex {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 50px;
		margin: 0 auto;
	}
	body.ios .transBgFlex .transBox {
		position: relative;
		width: 100%;
		padding: 20px;
    clip-path: inset(0 0 round 10px 10px 10px 10px);
	}
	body.ios .transBgFlex .transBox::before {
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_parallax.jpg) no-repeat;
		background-size: cover;
		background-position: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 120svh;
		z-index: -1;
	}
	body.ios .transBgFlex .transBox::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(4px);
		border-radius: 10px;
		z-index: 0;
	}
	.transBoxTitle {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		font-size: 22px;
		font-weight: bold;
		line-height: 1.3;
		margin-bottom: 30px;
		z-index: 1;
	}
	.transBoxTitle span {
		font-size: 12px;
		line-height: 1.33;
		color: #E91D25;
		margin-top: 5px;
	}
	.transBox ul {
		position: relative;
		z-index: 1;
	}
	.transBox li {
		border-bottom: 1px solid #E0E0E0;
	}
	.transBox li a {
		position: relative;
		display: block;
		padding: 12px 30px 12px 0;
		font-size: 16px;
		line-height: 1.4;
		font-weight: bold;
		color: #000;
	}
	.transBox li a:hover {
		color: #E10013;
		background: rgba(240, 240, 240, 0.7);
	}
	.transBox li a::after {
		content: "";
		position: absolute;
		top: 50%;
		right: 5px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/img_arrow02.png) no-repeat;
		background-size: contain;
		background-position: center;
		transform: translateY(-50%);
	}

	
	/* モーダルCSS */
	body.openModal {
		overflow-y: hidden;
	}
	.modalContents {
		visibility: hidden;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		opacity: 0;
		transition: 0.3s ease-out;
		overflow-y: auto;
	}
	.modalContents.modalactive {
		visibility: visible;
		opacity: 1;
	}
	#overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: -1;
	}
	#overlay.disable {
		pointer-events: none;
	}
	.categoryModal {
		display: none;
		position: absolute;
		top: 20px;
		left: 50%;
		transform: translateX(-50%);
		width: 90%;
		min-height: 650px;
		background: #fff;
	}
	.categoryModal .describe {
		position: relative;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
		margin-bottom: 20px;
	}
	.categoryModal .describe .modalIcon {
		position: absolute;
		bottom: 0;
		right: 61%;
		width: 25%;
		background: #E91D25;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		transform:skewX(-30deg);
	}

	.categoryModal .describe figure {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 15px 0;
	}
	.categoryModal .describe figure img {
		display: block;
		width: 65%;
		margin-bottom: 10px;
		transform: skewX(30deg);
	}
	.categoryModal .describe figure figcaption {
		display: block;
		font-size: 12px;
		line-height: 1.4;
		text-align: center;
		color: #fff;
		transform:skewX(30deg);
	}
	.categoryModal p {
		width: 100%;
		font-size: 16px;
		line-height: 1.4;
		padding: 0 15px;
		margin-bottom: 20px;
	}
	.categoryLink {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding: 0 15px 30px;
	}
	.categoryLink li {
		width: 100%;
		border-bottom: 1px dotted #CCC;
		font-size: min(4.3vw ,18px);
		line-height: 1.3;
	}
	.categoryLink li:not(:has(a)) {
		padding: 13px 28px 13px 0;
	}
	.categoryLink a {
		display: inline-block;
		position: relative;
		width: 100%;
		height: 100%;
		padding: 13px 28px 13px 0;
		line-height: 1.3;
	}
	.categoryLink a:hover {
		color: #E10013;
	}
	.categoryLink a[target="_blank"]::after {
		position: absolute;
		content: "";
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_link.png) no-repeat;
		width: 18px;
		height: 16px;
		margin-left: 10px;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
	}
	.modalBg {
		width: 65%;
	}
	.modalCloseBtn {
		position: absolute;
		right: 0;
		top: 0;
		width: 30px;
		height: 30px;
		background: #CCC;
		cursor: pointer;
	}
	.modalCloseBtn::before, .modalCloseBtn::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 2px;
		height: 15px;
		background: #fff;
	}
	.modalCloseBtn::before {
		transform: translate(-50%,-50%) rotate(45deg);
	}
	.modalCloseBtn::after {
		transform: translate(-50%,-50%) rotate(-45deg);
	}


	.mediaContentsWrap {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/bg_media_sp.png) no-repeat;
		background-size: cover;
		background-position: center;
		padding: 50px 20px 100px;
	}
	.mediaFlexWrap {
		display: flex;
		flex-direction: column;
		gap: 20px;
		width: 100%;
		margin: 0 auto;
		padding: 0 7.5px;
	}
	.mediaBox {
		background: #fff;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
	}
	.mediaBox figcaption {
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5;
		padding: 16px 24px 24px;
	}
	.mediaBox a:hover figure {
		position: relative;
	}
	.mediaBox a:hover figure::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.2);
	}
	.mediaBox a:hover figcaption {
		color: #E10013;
	}

}




/* ----------- news ----------- */
body#news {
	overflow-x: hidden;
	font-family: 'NotoSans',sans-serif;
}
@media (min-width: 1000px) {
	/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	/*                                           */
	/* min-width: 1000px                         */
	/*                                           */
	/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	.newsHeadTitleWrap {
		width: 100%;
		margin-top: 80px;
		background: #F5F5F5;
	}
	.titleInner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 1200px;
		padding: 39px 30px;
		margin: 0 auto;
	}
	.newsHeadTitleWrap .mainTitle {
		font-size: 30px;
		font-weight: bold;
		line-height: 1.0;
	}
	.newsHeadTitleWrap .breadCrumbsWrap {
		font-size: 12px;
		line-height: 1.8;
		color: #929497;
	}
	.newsHeadTitleWrap .breadCrumbsWrap ul {
		display: flex;
	}
	.newsHeadTitleWrap .breadCrumbsWrap ul li:not(:last-child)::after {
		content:" ／ ";
	}
	.news-area .news__header {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.news-area .news__sort {
		padding-right: 0;
	}
	.news-area .newsMainInner {
		width: 100%;
		max-width: 940px;
		margin: 0 auto 160px;
	}
	.news-area .btn-dropdown {
		position: relative;
		display: inline-flex;
		align-items: center;
		font-size: 13px;
		padding: 0 0 0 10px;
	}
	.news-area .btn-dropdown::after {
		content:"";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow01.png) no-repeat;
		background-size: contain;
	}
	.news-area .btn-dropdown:hover {
		background: #000;
		color: #fff;
		transition: all .2s ease-in-out;
	}
	.news-area .btn-dropdown:hover::after {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow02.png) no-repeat;
		background-size: contain;
	}
	.news-area .dropdown-menu {
		display: none;
	}
	.news-area .dropdown-menu.selectOn {
		display: block;
	}
	.news-area .news__sort .dropdown-menu {
		width: 180px;
	}
	.news-area .news__sort .dropdown-menu > li > a {
		display: block;
		padding: 12px 10px;
		font-size: 13px;
	}
	body#news .common__news__list li {
		border-bottom: 1px solid #E0E0E0;
	}
	body#news .common__news__list li > a {
		display: block;
		position: relative;
	}
	body#news .common__news__list li > a:hover {
		background: rgba(240, 240, 240, 0.7);
	}
	body#news .common__news__list li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow03.png) no-repeat;
		background-size: contain;
	}
	body#news li a.pdf .news-item dd::after {
		content: "";
		display: inline-block;
		width: 24px;
		height: 24px;
		margin: 0 0 0 10px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_pdf.png) no-repeat;
		background-size: contain;
		font-size: 12px;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}

}

@media (max-width: 999px) and (min-width: 661px) {
	/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	/*                                           */
	/* max-width: 999px  min-width: 661px        */
	/*                                           */
	/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	.newsHeadTitleWrap {
		width: 100%;
		margin-top: 60px;
		background: #F5F5F5;
	}
	.titleInner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 29px 55px 29px 20px;
		margin: 0 auto;
	}
	.newsHeadTitleWrap .mainTitle {
		font-size: 30px;
		font-weight: bold;
		line-height: 1.0;
	}
	.newsHeadTitleWrap .breadCrumbsWrap {
		font-size: 12px;
		line-height: 1.8;
		color: #929497;
	}
	.newsHeadTitleWrap .breadCrumbsWrap ul {
		display: flex;
	}
	.newsHeadTitleWrap .breadCrumbsWrap ul li:not(:last-child)::after {
		content:" ／ ";
	}
	.news-area .news__header {
		width: 100%;
		margin: 0 auto;
	}
	.news-area .news__sort {
		padding-right: 55px;
	}
	.news-area .newsMainInner {
		width: 100%;
		margin: 0 auto 160px;
		padding: 0 55px;
	}
	.news-area .btn-dropdown {
		position: relative;
		display: inline-flex;
		align-items: center;
		font-size: 13px;
		padding: 0 0 0 10px;
	}
	.news-area .btn-dropdown::after {
		content:"";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow01.png) no-repeat;
		background-size: contain;
	}
	.news-area .btn-dropdown:hover {
		background: #000;
		color: #fff;
		transition: all .2s ease-in-out;
	}
	.news-area .btn-dropdown:hover::after {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow02.png) no-repeat;
		background-size: contain;
	}
	.news-area .dropdown-menu {
		display: none;
	}
	.news-area .dropdown-menu.selectOn {
		display: block;
	}
	.news-area .news__sort .dropdown-menu {
		width: 180px;
	}
	.news-area .news__sort .dropdown-menu > li > a {
		display: block;
		padding: 12px 10px;
		font-size: 13px;
	}
	.news-area .common__news__list li {
		border-bottom: 1px solid #E0E0E0;
	}
	.news-area .common__news__list li > a {
		display: block;
		position: relative;
	}
	.news-area .common__news__list li > a:hover {
		background: rgba(240, 240, 240, 0.7);
	}
	.news-area .common__news__list li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow03.png) no-repeat;
		background-size: contain;
	}
	.common__news__list li a.pdf .news-item dd::after {
		content: "";
		display: inline-block;
		width: 24px;
		height: 24px;
		margin: 0 0 0 10px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_pdf.png) no-repeat;
		background-size: contain;
		font-size: 12px;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}
}

@media (max-width:660px) {
	/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	/*                                           */
	/* max-width: 767px                          */
	/*                                           */
	/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
	.newsHeadTitleWrap {
		width: 100%;
		margin-top: 60px;
		background: #F5F5F5;
	}
	.titleInner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 29px 55px 29px 20px;
		margin: 0 auto;
	}
	.newsHeadTitleWrap .mainTitle {
		font-size: 30px;
		font-weight: bold;
		line-height: 1.0;
	}
	.newsHeadTitleWrap .breadCrumbsWrap {
		font-size: 12px;
		line-height: 1.8;
		color: #929497;
	}
	.newsHeadTitleWrap .breadCrumbsWrap ul {
		display: flex;
	}
	.newsHeadTitleWrap .breadCrumbsWrap ul li:not(:last-child)::after {
		content:" ／ ";
	}
	.news-area .news__header {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	.news-area .news__sort {
		width: 100%;
		padding: 0 45px;
	}
	.news-area .newsMainInner {
		width: 100%;
		padding: 0 45px;
		margin-bottom: 100px;
	}
	.news-area .btn-dropdown {
		width: 100%;
		position: relative;
		display: inline-flex;
		align-items: center;
		font-size: 13px;
		padding: 0 0 0 10px;
	}
	.news-area .btn-dropdown::after {
		content:"";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 10px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow01.png) no-repeat;
		background-size: contain;
	}
	.news-area .btn-dropdown:hover {
		background: #000;
		color: #fff;
		transition: all .2s ease-in-out;
	}
	.news-area .btn-dropdown:hover::after {
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow02.png) no-repeat;
		background-size: contain;
	}
	.news-area .dropdown-menu {
		display: none;
	}
	.news-area .dropdown-menu.selectOn {
		display: block;
	}
	.news-area .news__sort .dropdown-menu {
		width: 100%;
		padding: 0 45px;
	}
	.news-area .news__sort .dropdown-menu > li > a {
		display: block;
		padding: 12px 10px;
		font-size: 13px;
	}
	.news-area .common__news__list li {
		border-bottom: 1px solid #E0E0E0;
	}
	.news-area .common__news__list li > a {
		display: block;
		position: relative;
	}
	.news-area .common__news__list li > a:hover {
		background: rgba(240, 240, 240, 0.7);
	}
	.news-area .common__news__list li > a::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
		width: 18px;
		height: 18px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/news/img_sort_arrow03.png) no-repeat;
		background-size: contain;
	}
	.common__news__list li a.pdf .news-item dd::after {
		content: "";
		display: inline-block;
		width: 24px;
		height: 24px;
		margin: 0 0 0 10px;
		background: url(/wp-content/themes/kyokutoukk/lib/img/en/common/ico_pdf.png) no-repeat;
		background-size: contain;
		font-size: 12px;
		color: #fff;
		vertical-align: middle;
		padding: 3px;
	}
}
