@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Shippori+Mincho:wght@400;500;600&display=swap');
html {
	font-size: 62.5%;
	background-color: #FFF;
}
a:link {
	color: #000;
	text-decoration: underline;
	transition: 0.3s;
}
a:visited {
	color: #000;
	text-decoration: underline;
}
a:hover {
	color: #999;
	text-decoration: none;
}
a[href*="tel:"] {
	cursor: default;
	color: #666;
	text-decoration: none;
}
@media (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
	}
}
.center {
	text-align: center;
}
a img {
	transition: 0.3s;
}
a img:hover {
	opacity: 0.7;
}
picture {
	display: block;
}
.marker {
	background: linear-gradient(transparent 60%, #ff6 60%);
}
.pc_none {
	display: none;
}
.att {
	text-indent: -1em;
	margin-left: 1em;
}
body {
	font-size: 1.8rem;
	color: #000;
	line-height: 2;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	transition: background-color 0.5s, color 0.5s;
}
/* 横から1文字ずつアニメーション
------------------------------------------------- */
.text-animation {
	opacity: 0;
}
.text-animation.show {
	opacity: 1;
}
.text-animation.show .text-animation-span {
	display: inline-block;
	overflow: hidden;
}
.text-animation.show .text-animation-span span {
	display: inline-block;
	xletter-spacing: 0.1em;
	animation: showText 1s backwards;
}
@keyframes showText {
	0% {
		opacity: 1;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
/* 上から1文字ずつアニメーション
------------------------------------------------- */
.text-anivertical {
	opacity: 0;
}
.text-anivertical.show {
	opacity: 1;
}
.text-anivertical.show .text-anivertical-span {
	display: inline-block;
	overflow: hidden;
}
.text-anivertical.show .text-anivertical-span span {
	display: inline-block;
	xletter-spacing: 0.1em;
	animation: showText2 1s backwards;
}
@keyframes showText2 {
	0% {
		opacity: 1;
		transform: translateY(100%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
/* 横から1文字ずつアニメーションスクロールなし
------------------------------------------------- */
.text-ani-noscroll {
	opacity: 0;
}
.text-ani-noscroll.show {
	opacity: 1;
}
.text-ani-noscroll.show .text-ani-noscroll-span {
	display: inline-block;
	overflow: hidden;
}
.text-ani-noscroll.show .text-ani-noscroll-span span {
	display: inline-block;
	xletter-spacing: 0.1em;
	animation: showText3 1s backwards;
}
@keyframes showText3 {
	0% {
		opacity: 1;
		transform: translateX(100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
/* マスクアニメーション
------------------------------------------------- */
.img-wrap {
	opacity: 0;
}
.img-animation {
	animation: img-opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	overflow: hidden;
	position: relative;
}
.img-animation::before {
	animation: img-animation 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	background: #fff;
	content: '';
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}
.img-wrap img {
	transform: scale(1.3); /* 最初に画像を大きくしておく */
	transition: transform 2.5s 0.08s ease, opacity 0.8s ease; /* opacity にも適用 */
}
.img-wrap.img-animation img {
	transform: scale(1);
}
.img-wrap.img-animation a img:hover {
	opacity: 0.7;
}
@keyframes img-opacity {
	100% {
		opacity: 1;
	}
}
@keyframes img-animation {
	100% {
		transform: translateX(101%);
	}
}
/* zoomアニメーション
------------------------------------------------- */
.img-zoom {
	opacity: 0;
}
.zoom-animation {
	animation: img-opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	overflow: hidden;
	position: relative;
}
.img-zoom img {
	transform: scale(1.5); /* 最初に画像を大きくしておく */
	transition: transform 2.5s 0.08s ease, opacity 0.8s ease; /* opacity にも適用 */
}
.img-zoom.zoom-animation img {
	transform: scale(1);
}
.img-zoom.zoom-animation a img:hover {
	opacity: 0.7;
}
@keyframes img-opacity {
	100% {
		opacity: 1;
	}
}
/* ページ自体をふわっと表示 */
body {
	animation: fadein 1s forwards;
}
@keyframes fadein {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
.bg_white {
	background-color: #FFF;
	position: relative;
}
/* header
------------------------------------------------- */
header {
	padding: 30px 3% 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 500;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	width: 100%;
}
header h1 {
	position: relative;
	z-index: 1000;
}
header nav {
	width: calc(100% - 300px);
}
ul.global_navi {
	list-style: none;
	display: flex;
}
ul.global_navi li {
	margin-left: 40px;
}
ul.global_navi li:first-child {
	margin-left: 0;
}
ul.global_navi li a {
	text-decoration: none;
}
header .menu_area {
	display: flex;
	justify-content: flex-end;
}
ul.language {
	list-style: none;
	display: flex;
	margin-left: 80px;
}
ul.language li a {
	text-decoration: none;
}
ul.language li:last-child a {
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid #999;
}
/* ローディング
------------------------------------------------- */
.loading_bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	z-index: 99999;
	animation: byeShutter 3s forwards;
	animation-delay: 2s;
	transition-timing-function: ease;
	height: 100vh;
}
.loading_bg.loaded {
	opacity: 0;
	visibility: hidden;
}
@keyframes byeShutter {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
		z-index: -1;
	}
}
.loading_logo {
	width: 80%;
	text-align: center;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999;
	animation: byelogo 1.5s forwards;
	animation-delay: 3s;
	transition-timing-function: ease;
}
@keyframes byelogo {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display: none;
		z-index: -1;
	}
}
/* メインスライダー
------------------------------------------------- */
.slider {
	width: 100%;
	height: calc(100svh - 92px);
}
.slider li {
	list-style: none;
}
.slider li img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
/* 理念
------------------------------------------------- */
section.philosophy {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 250px auto 0;
	max-width: 1920px;
	overflow: hidden;
}
section.philosophy .txt_block {
	width: 40%;
	padding: 4%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
section.philosophy picture {
	width: 55%;
}
section.philosophy picture img {
	object-fit: cover;
	width: 100%;
	height: 750px;
}
.h1_border_left {
	padding-left: 80px;
	font-size: 2.6rem;
	position: relative;
	margin-bottom: 40px;
	font-weight: 500;
}
.h1_border_left:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	top: 50%;
	left: 0;
}
h2.h2_ttl {
	font-size: 50px;
	font-size: 3vw;
	line-height: 1.6;
	margin-bottom: 30px;
}
h2.h2_ttl span.sub {
	font-size: 50%;
	font-weight: 500;
	display: block;
	margin-top: 15px;
}
.btn_more {
	letter-spacing: 0.05em;
	font-size: 1.8rem;
}
.btn_more a {
	padding: 10px 150px 10px 0;
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	position: relative;
	background-image: url("../../../../../../images/common/arrow.svg");
	background-size: 100px 20px;
	background-repeat: no-repeat;
	background-position: right 10px center;
	text-decoration: none;
	display: inline-block;
	margin-top: 20px;
}
.btn_more a:hover {
	background-position: right 0 center;
}
/* 企業ブランド
------------------------------------------------- */
section.brand {
	margin: 200px auto 0;
	text-align: center;
	max-width: 1920px;
	padding: 0 100px;
}
.h1_border_center {
	position: relative;
	display: inline-block;
	padding: 0 80px;
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 40px;
	font-weight: 500;
}
.h1_border_center:before, .h1_border_center:after {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
	width: 50px;
	height: 1px;
	background-color: #ccc;
}
.h1_border_center:before {
	left: 0;
}
.h1_border_center:after {
	right: 0;
}
#splide {
	margin: 30px auto 80px;
	max-width: 1300px;
}
ul.brand_slider {
	list-style: none;
	text-align: left;
}
ul.brand_slider li img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.7s 0.08s ease, opacity 0.8s ease; /* opacity にも適用 */
}
ul.brand_slider li span {
	overflow: hidden;
	display: block;
	margin-bottom: 10px;
}
ul.brand_slider li a {
	text-decoration: none;
}
ul.brand_slider li a:hover img {
	transform: scale(1.1);
}
/* splide.jsの矢印カスタマイズ */
.splide__arrow > svg {
	display: none;
}
.splide__arrow:before {
	content: "";
	display: block;
	width: 20px;
	height: 40px;
	background-image: url("../../../../../../images/common/arrow_next.svg");
	background-repeat: no-repeat;
}
.splide__arrow.splide__arrow--prev:before {
	transform: rotate(-180deg);
}
/* 歴史
------------------------------------------------- */
section.historywrap {
	max-width: 1920px;
	margin: 200px auto 0;
	text-align: center;
}
.history_photo {
	max-width: 1300px;
	margin: 30px auto;
	overflow: hidden;
}
.history_photo img {
	/*filter: grayscale(100%)*/
	transition: 0.3s;
	width: 100%;
	height: 650px;
	object-fit: cover;
}
.history_photo img:hover {}
/* お知らせ
------------------------------------------------- */
section.info {
	max-width: 1300px;
	margin: 200px auto 0;
	padding: 0 4%;
	display: flex;
	justify-content: space-between;
}
.info_ttl {
	width: 50%;
}
.info_list {
	width: 50%;
}
section.info .h1_border_left {
	margin-bottom: 20px;
}
ul.info_new {
	list-style: none;
}
ul.info_new li span {
	display: block;
	color: #999;
	font-family: "Cormorant Garamond", serif;
	line-height: 1.4;
}
ul.info_new li a {
	text-decoration: none;
	padding: 20px 0;
	display: block;
	border-bottom: solid 1px #ccc;
}
/* バナー
------------------------------------------------- */
ul.bnr {
	margin: 200px auto 200px;
	max-width: 1300px;
	padding: 0 4%;
	display: flex;
	justify-content: space-between;
	list-style: none;
	overflow: hidden;
}
ul.bnr li {
	width: 49%;
	overflow: hidden;
}
ul.bnr li img {
	width: 100%;
	height: auto;
	transition: transform 0.7s 0.08s ease, opacity 0.8s ease; /* opacity にも適用 */
}
ul.bnr li a:hover img {
	transform: scale(1.1);
}
/* footer
------------------------------------------------- */
ul.breadcrumbs {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	margin: auto;
	padding: 1px 3%;
	background-color: #FFF;
}
ul.breadcrumbs li {
	margin: 0 20px 10px 0;
}
ul.breadcrumbs li a {
	position: relative;
	padding-right: 20px;
}
ul.breadcrumbs li a:after {
	content: '';
	width: 5px;
	height: 5px;
	border: 0;
	border-top: solid 1px #ccc;
	border-right: solid 1px #ccc;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
footer {
	text-align: center;
	padding: 60px 3%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.6rem;
	border-top: 1px solid #ddd;
	background-color: #fff;
}
.copy {
	font-family: "Cormorant Garamond", serif;
	text-align: right;
}
.footer_navi ul {
	display: flex;
	justify-content: flex-end;
	list-style: none;
	margin-bottom: 10px;
}
.footer_navi ul li a {
	display: block;
	text-decoration: none;
	margin-left: 40px;
}
/* 中ページ
------------------------------------------------- */
h1.page_ttl {
	font-size: 70px;
	font-weight: 500;
	line-height: 1.4;
	text-align: right;
	padding: 100px 4% 100px;
	border-bottom: solid 1px #ddd;
	background-color: #FFF;
}
h1.page_ttl i.sub {
	font-size: 26px;
	display: block;
	color: #999;
	font-style: normal;
	font-family: "Cormorant Garamond", serif;
}
.contents_wrap {
	background-color: #fff;
}
.main_contents {
	max-width: 1200px;
	margin: auto;
	padding: 200px 4%;
	box-sizing: border-box;
	position: relative;
}
dl.cpy {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.6rem;
	line-height: 1.6;
	margin-bottom: 100px;
}
dl.cpy dt {
	width: 200px;
	padding: 30px 0;
	border-right: solid 1px #ddd;
}
dl.cpy dd {
	width: calc(100% - 250px);
	padding: 30px 0 30px 50px;
	box-sizing: border-box;
}
dl.cpy dd ul {
	list-style: none;
}
dl.cpy dd ul li {
	padding-left: 40px;
	margin-bottom: 40px;
	position: relative;
}
dl.cpy dd ul li:before {
	position: absolute;
	top: 0.8em;
	left: 0;
	content: "";
	background-color: #ccc;
	height: 1px;
	width: 15px;
}
dl.cpy dd ul li li {
	margin-bottom: 0;
	margin-top: 10px;
}
.background {
	position: fixed;
	top: -2%;
	left: -2%;
	width: 104%;
	height: 104%;
	background-size: cover;
	background-position: center;
	transition: opacity 0.5s ease-in-out;
	z-index: -1;
	opacity: 0;
}
.company {
	background-image: url("../../../../../../images/company/bg.webp");
}
.history {
	background-image: url("../../../../../../images/history/bg.webp");
}
/* 背景画像用 */
#section2 {
	height: 100vh;
}
.h2_inttl {
	font-size: 3rem;
	font-weight: 500;
	margin-bottom: 50px;
	line-height: 1.6;
}
.h2_inttl span {
	display: block;
	font-size: 2rem;
}
.main_contents p {
	line-height: 2.5;
	margin-bottom: 50px;
}
.phrase {
	margin-bottom: 80px;
}
.h3_inttl {
	padding-left: 50px;
	font-size: 2.4rem;
	position: relative;
	font-weight: 500;
	margin-top: 50px;
}
.h3_inttl:before {
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	background-color: #ccc;
	height: 1px;
	width: 30px;
}
ul.office_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.6rem;
	line-height: 1.6;
	list-style: none;
}
ul.office_list li {
	width: 48%;
	margin: 40px 0;
}
ul.office_list dl {
	display: flex;
}
ul.office_list dl dt {
	width: 100px;
	margin-right: 10px;
	border-right: solid 1px #ddd;
	padding: 15px 0;
}
ul.office_list dl dd {
	width: calc(100% - 110px);
	padding: 15px 0 15px 10px;
	box-sizing: border-box;
}
ul.office_list li h4 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: 500;
}
dl.greeting dt {
	margin-bottom: 50px;
}
dl.greeting dt img {
	width: 100%;
	height: auto;
}
.main_contents dl.greeting dd p {
	line-height: 2;
	margin-bottom: 30px;
}
.sign {
	font-size: 1.6rem;
	line-height: 1.6 !important;
	display: flex;
	justify-content: flex-end;
}
/* 理念
------------------------------------------------- */
.h2_philosophy {
	font-size: 4rem;
	font-weight: 500;
	padding: 0 4% 0;
	padding-left: calc(4% + 80px);
	position: relative;
	margin-top: 50px;
}
.h2_philosophy:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: #ccc;
	position: absolute;
	top: 50%;
	left: 4%;
}
.h2_philosophy span {
	display: inline-block;
	font-size: 2rem;
	margin-left: 20px;
}
.main_philosophy {
	max-width: 1920px;
	padding: 100px 4% 200px;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.statement {
	width: 40%;
	padding: 300px 4%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.main_philosophy .fade_wrap {
	width: 60%;
	height: calc(100svh - 92px);
	position: sticky;
	top: 0;
	align-self: flex-start;
	overflow: hidden;
	background-color: #fff;
}
ul.fade_slider {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	list-style: none;
}
ul.fade_slider li {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	animation: fadeslide 40s linear infinite 0s;
}
ul.fade_slider li:nth-child(2) {
	animation-delay: 10s;
}
ul.fade_slider li:nth-child(3) {
	animation-delay: 20s;
}
ul.fade_slider li:nth-child(4) {
	animation-delay: 30s;
}
ul.fade_slider li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@keyframes fadeslide {
	0% {
		opacity: 0;
		filter: brightness(200%);
		animation-timing-function: ease-in;
	}
	8% {
		opacity: 1;
		filter: brightness(100%);
		animation-timing-function: ease-out;
	}
	20% {
		opacity: 1;
		transform: scale(1.1);
		filter: brightness(100%);
	}
	40%, 80% {
		opacity: 0;
		filter: brightness(200%);
		transform: scale(1.2);
	}
}
/* 中ページ企業ブランド
------------------------------------------------- */
.main_brand {
	max-width: 1920px;
	padding: 200px 4%;
}
.brand_loop {
	display: flex; /* スライドのグループを横並び */
	overflow: hidden; /* はみ出たスライドを隠す */
}
/* スライド3枚のグループ */
.brand_loop ul {
	animation: scroll-left 60s infinite linear .5s both;
	display: flex; /* スライド3枚を横並び */
	list-style: none;
}
/* スライド */
.brand_loop ul li {
	width: calc(100vw / 3); /* 3はスライドの枚数 */
}
/* スライドの画像 */
.brand_loop ul img {
	width: 100%;
	height: auto;
}
/* CSSアニメーション */
@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
ul.brand_list li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	list-style: none;
}
ul.brand_list li:nth-child(odd) {
	flex-direction: row-reverse;
}
ul.brand_list li .dtl {
	width: 50%;
	padding: 4%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
ul.brand_list li .simpleParallax {
	width: 50%;
}
ul.brand_list li .simpleParallax picture {
	height: 100%;
}
ul.brand_list li .simpleParallax a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 2.5s 0.08s ease, opacity 0.8s ease; /* opacity にも適用 */
}
ul.brand_list li .simpleParallax a img:hover {}
ul.brand_list li h2 {
	font-size: 3rem;
	margin-bottom: 30px;
	font-weight: 500;
}
.brand_info {
	max-width: 500px;
}
/* 沿革
------------------------------------------------- */
dl.his {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
dl.his dt {
	width: 200px;
	color: #666;
	margin-right: 50px;
	border-right: 1px #ddd solid;
	padding-right: 50px;
	box-sizing: border-box;
	position: relative;
	padding-bottom: 50px;
}
dl.his dt:before {
	width: 50px;
	content: "";
	height: 1px;
	background-color: #ddd;
	position: absolute;
	right: 0;
	top: 1em;
}
dl.his dt span {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	font-size: 40px;
	color: #000;
	margin-right: 10px;
	line-height: 0.8;
}
dl.his dd {
	width: calc(100% - 250px);
	padding-bottom: 50px;
}
/* 投稿ポスト
------------------------------------------------- */
.main_post {
	max-width: 1024px;
	margin: auto;
	padding: 100px 4%;
	position: relative;
}
.main_post p {
	margin-bottom: 50px;
}
.main_post p.day {
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
	color: #999;
	font-size: 2.2rem;
	margin-bottom: 0;
}

h2.wp-block-heading{
	padding-left: 80px;
    font-size: 2.6rem;
    position: relative;
    margin-bottom: 20px;
    font-weight: 500;
}
h2.wp-block-heading:before{
content: "";
    width: 50px;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    left: 0;
}
.wp-block-image{
	margin-bottom: 80px;
}
.wp-block-image img{
	width: 100%;
	height: auto;
}


.post_graywrap{
	font-size: 1.6rem;
	line-height:1.8;
	margin-bottom: 50px;
	padding: 30px;
	background-color: #fafafa
}

.post_flex{
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
	margin-bottom: 30px;
}
.post_flex dt{
	width: 40%;
}
.post_flex dt img{
	width: 100%;
	height: auto;
}
.post_flex dd{
	width: 55%;
}
.post_flex dd span{
	font-size: 2.6rem;
	font-weight: 500;
}
ul.post_tatephoto{
list-style: none;
display: flex;
justify-content: space-between;
align-items: flex-end;
margin-bottom: 80px;
}
ul.post_tatephoto li{
width: 48%;
}
ul.post_tatephoto li img{
	width: 100%;
	height: auto;
}

ul.post_tatephoto li span{
display: block;
margin: 20px 0 0;
} 

.wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.wp-block-embed__wrapper iframe{
  width: 100%;
  height: 100%;	
}


/* ページネーション
------------------------------------------------- */
ul.page-numbers {
	display: flex;
	justify-content: center;
	font-size: 16px;
	margin-top: 100px;
}
ul.page-numbers li span.current {
	display: block;
	width: 40px;
	height: 40px;
	border: solid 1px #333;
	color: #000;
	line-height: 40px;
	margin: 5px;
	text-align: center;
}
ul.page-numbers li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	margin: 5px;
	text-align: center;
	text-decoration: none;
	border: solid 1px #fff;
}
ul.page-numbers li a:hover {
	background-color: #eee;
	border: solid 1px #eee;
	color: #000;
}
ul.page-numbers li a.next, ul.page-numbers li a.prev {
	border: none;
}
.index_navi {
	position: sticky;
	left: 0;
	top: 40vh;
	font-family: "Cormorant Garamond", serif;
	margin-top: 100px;
}
.index_navi a {
	color: #999;
	text-decoration: none;
	font-size: 2rem;
	padding: 10px 10px 10px 40px;
	position: relative;
}
.index_navi a:before {
	content: "";
	width: 30px;
	height: 1px;
	background-color: #333;
	position: absolute;
	left: 0;
	top: 50%;
}
ul.next_index {
	list-style: none;
	display: flex;
	justify-content: center;
	font-family: "Cormorant Garamond", serif;
	margin: 50px 0;
}
ul.next_index li {
	margin: 0 40px;
}
ul.next_index li:first-child a {
	position: relative;
	display: block;
	padding-left: 30px;
}
ul.next_index li:first-child a:before {
	width: 10px;
	height: 10px;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
ul.next_index li:last-child a {
	position: relative;
	display: block;
	padding-right: 30px;
}
ul.next_index li:last-child a:before {
	width: 10px;
	height: 10px;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
/* デフォルトcss　ページ送りの見出しを消す */
.screen-reader-text {
	display: none;
}


/* 記念動画
------------------------------------------------- */
section.movie {
  margin: 200px auto 200px;
  max-width: 1300px;
  padding: 0 4%;
  text-align: center;
}
ul.movie_modal {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
ul.movie_modal li {
  width: 40%;
  margin: 0 2%;
  line-height: 1.6;
}
ul.movie_modal li img {
  width: 100%;
  height: auto;
}
.youtubelink {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  cursor: pointer;
}
/* アニメーション */
.stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 2px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.icon {
  transform: scale(.7);
  transform-origin: 50% 50%;
  transition: transform 200ms ease-out;
}
.youtubelink:hover .stroke-solid {
  opacity: 1;
  stroke-dashoffset: 300;
}
.youtubelink:hover .icon {
  transform: scale(.8);
}
.youtubelink {
  position: relative;
  display: inline-block;
}
.youtubelink a {
  display: block;
}
.svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  cursor: pointer;
}
/* アニメーション */
.stroke-solid {
  stroke-dashoffset: 0;
  stroke-dashArray: 300;
  stroke-width: 2px;
  transition: stroke-dashoffset 1s ease, opacity 1s ease;
}
.icon {
  transform: scale(.7);
  transform-origin: 50% 50%;
  transition: transform 200ms ease-out;
}
.youtubelink:hover .stroke-solid {
  opacity: 1;
  stroke-dashoffset: 300;
}
.youtubelink:hover .icon {
  transform: scale(.8);
}
