@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html{
	width:100%;
	margin:0;
	padding:0;
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	width:100%;
	font-family: "Noto Sans JP", sans-serif;
	font-weight:300;
	font-size:1.6rem;
	color:#222;
	line-height:1.4;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	margin:0;
	padding:0;
}
body.open {
	overflow:hidden;
	height:100%;
	z-index:1;
}
/*--common--*/
header,
main,
aside,
section{
	width:100%;
	margin:0 auto;
	position:relative;
}
section{
	margin:5vh auto;
}
.inner {
	box-sizing:border-box;
	width:100%;
	padding:0 5%;
}
h2 {
	text-align:center;
	font-size:2.6rem;
	color:#fff;
	font-weight:500;
}
img {
	width:100%;
	height:auto;
}
ul {
	list-style:none;
}
ul.list1 {
	list-style:disc outside;
	margin-bottom:1.5em ;
	margin-left:5%;
}
ul.list1 li{
	margin-bottom:0.4em;
}
ul.list1 li::marker{
	color:#433f9d;
}
a {
	display:block;
	text-decoration:none;
}
.txt_link {
	font-size:1.5rem;
	color:#e25f40;
	text-align:right;
}
.txt_link img{
	display:inline-block;
	width:1.2rem;
	margin-left:0.4em;
	vertical-align:middle;
}
.txt_link2 {
	display:inline;
	color:#e25f40;
	text-decoration:underline;
	vertical-align:middle;
}
.txt_link2:after {
	content:"";
	display:inline-block;
	background:url("/assets/img/arrow-link-orange.svg") no-repeat;
	width:0.9em;
	height:0.9em;
	margin-left:0.5em;	
}
.btn {
	box-sizing:border-box;
	width:80%;
	margin:0.6em auto 0.8em;
}
.btn a,
.btn button{
	width:100%;
	display:block;
	border-radius:20px;
	padding:0.5em 1.5em 0.5em 0;
	text-align:center;
	font-weight:400;
	cursor:pointer;
}
.btn_link a{
	background:url("/assets/img/arrow-link-w.svg") #e25f40 no-repeat;
	border:1px solid #e25f40;
	background-position:85% center;
	background-size:0.95em;
	color:#fff;
}
.btn_show button{
	background:url("/assets/img/icon_plus.png") #fff no-repeat;
	border:1px solid #e25f40;
	background-position:85% center;
	background-size:0.8em;
	color:#e25f40;
}
.btn_show.open{
	display:none;
}
.btn_hide{
	width:85%;
	margin:1.0em auto 0;
}
.btn_hide button{
	background:url("/assets/img/icon_minus.png") #fff no-repeat;
	border:1px solid #555;
	background-position:90% center;
	background-size:0.7em;
	color:#555;
}
p.caption {
	background:#efefef;
	font-size:1.4rem;
	padding:0.6em 0.6em 0.6em 1.1em;
	text-indent:-0.5em;
	margin-bottom:1.0em;
}
ul.caption {
	padding:0.6em;
	background:#efefef;
	margin-bottom:1.0em;
}
ul.caption li{
	font-size:1.4rem;
	text-indent:-0.5em;
	padding-left:0.5em;
}

.pc {
	display:none;
}
.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.5s, transform 1s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}
/*--header--*/
header {
	width:100%;
	height:12vh;
	padding:2vh 0 0;
	background:#fff;
	border-bottom:4px solid #ccc;
	position:fixed;
	top:0;
	z-index:2;
}
header .inner {
	display:flex;
	justify-content:space-between;
	align-items:center;
}
h1{
	width:40%;
}
h1 img{
	width:auto;
	height:auto;
	max-height:8vh;
}
header .inner > div{
	margin:0;
	padding:0;
}
#dw_btn {
	box-sizing:border-box;
	width:30px;
	height:20px;
	position:relative;
	z-index:4;
	padding:4px 0;
	border-top:1px solid #222;
	border-bottom:1px solid #222;
}
#dw_btn:before,
#dw_btn:after {
	display:block;
	content:"";
	width:30px;
	height:1px;
	background:#222;
    transform: rotate(0deg);
	transition:all 0.4s ease;
	position:absolute;
}
#dw_btn:before{
	top:9px;
}
#dw_btn:after {
	top:9px;
}

#dw_btn.open{
	border-top:none;
	border-bottom:none;
}
#dw_btn.open::before {
    transform: rotate(45deg);
	background:#fff;
}
#dw_btn.open::after {
    transform: rotate(-45deg);
	background:#fff;
}
header nav{
	position:absolute;
	top:0;
	left:105%;
	width:100%;
	max-width:100%;
	height:100vh;
	padding:16vh 10% 0;
	margin:0;
	background:rgba(85,85,85,1.0);
	z-index:3;
	transition: all 0.3s ease;
	color:#fff;
}
header nav.open{
	left:0;
}
header nav ul{
	border-top:1px solid #fff;
}
header nav li a{
	width:100%;
	text-align:center;
	padding:1.0em 0;
	border-bottom:1px solid #fff;
	position:relative;
}
header nav p a{
	text-align:center;
	width:80%;
	padding:0.6em 0;
	margin:2.4em auto 0;
	border:1px solid #fff;
	border-radius:4.0em;
}
header nav li a:after{
	content:"";
	display:block;
	width:1.0em;
	height:1.0em;
	background:url("/assets/img/arrow_w.png") no-repeat;
	background-size:100%;
	position:absolute;
	bottom: 50%;
	right:10%;
	transform: translateY(50%) rotate(-90deg);
	-webkit-transform: translateY(50%) rotate(-90deg);
	-ms-transform: translateY(50%) rotate(-90deg);
}
/*--form parts--*/
section.form .inner{
	width:90%;
	margin:5vh 5%;
	border:1px solid #ccc;
	padding:0 5% 1.5em;
}
fieldset{
	padding:1.0em 0;
	border-bottom:1px dotted #ccc;
	position:relative;
}
fieldset label{
	font-weight:400;
}
input[type=text], input[type=email], input[type=tel], input[type=password], select, textarea{
	margin-top:0.5em;
	padding:0.4em 0.8em;
	border:1px solid #aaa;
	border-radius:3px;
	width:100%;
	color:inherit;
}
textarea::placeholder{
	font-size:1.3rem;
}
.radio legend,.checkbox legend{
	display:contents;
	padding:1.5em 0 0;
	margin:0;
	font-weight:400;
}
.radio legend + div,.checkbox legend + div{
	margin:0.5em 0 0;
	padding:0;
}
.radio label,
.checkbox label{
	display:block;
	margin:0 0 0 1.0em;
	padding:0.5em 0 0;
	font-weight:300;
}
.radio input,
.checkbox input{
	margin-right:0.3em;
	accent-color:#444;
}
.required {
	background:#e25f40;
	border-radius:2px;
	color:#fff;
	font-size:1.2rem;
	margin-left:0.8em;
	padding:0 0.5em;
}
.error {
	font-size:1.3rem;
	color:#e25f40;
	font-weight:400;
	margin:0.8em 0 0 !important;
	padding:0 0 0 1.0em;
	text-indent:-1.0em;
}
.submit,.reset {
	margin:0 auto;
	padding:0;
	margin-top:1.0em;
	text-align:center;
}
.submit button,.reset button{
	width:80%;
	background:#e25f40;
	border:1px solid #e25f40;
	border-radius:20px;
	padding:0.5em 0;
	color:#fff;
	font-weight:400;
	font-size:1.5rem;
}
.reset button{
	background:#bbb;
	border:1px solid #bbb;
	color:inherit;
}
/*--breadcrumb--*/
.breadcrumb__list{
	padding:14vh 5% 1.5em;
}
.breadcrumb__item{
	display:inline;
	font-size:1.2rem;
	margin-right:0.6em;
	color:#555;
}
.breadcrumb__item a{
	display:inline;
	text-decoration:underline;
}
.breadcrumb__item:not(:last-child):after{
	content:">";
	margin-left:0.6em;
}
/*--aside--*/
/*--footer--*/
aside h2 {
	color:#08037e;
	font-wight:400;
	text-align:left;
	margin:10vh 0 4vh;
	padding-top:2vh;
	border-top:1px solid #08037e;
}
aside ul ,.link_banner{
	margin:0 5%;
}
aside li ,.link_banner li{
	margin-bottom:2vh;
}
footer{
	width:100%;
	background:#555;
	margin-top:5vh;
	text-align:center;
}
footer .inner {
	padding:4vh 5% 2vh;
}
footer ul.link_sns{
	display:flex;
	justify-content:space-around;
	width:75%;
	margin:4vh auto 0;
}
footer ul.link_sns li{
	width:20%;
}
footer ul.link_sns a{
	width:50%;
	margin:0 auto;
}
footer p{
	font-size:1.2rem;
	color:#fff;
	margin:4vh auto 0;
	padding-top:2vh;
	border-top:1px solid #ccc;
}
p.to_top {
	display:none;
}
/*--.index, .article--*/
.index .topVP {
	box-sizing:border-box;
	width:100%;
	height:auto;
	background:url("/assets/img/top_bg_sp.png") no-repeat;
	background-size:100% 100%;
	padding:4vh 0 0;
	text-align:center;
	position:relative;
	margin-top:12vh; /*2506 add*/
}
.index .topVP h2{
	display:inline-block;
	width:auto;
	outline:1px solid #08037e;
	outline-offset:4px;
	background:rgba(8,3,126,0.75);
	padding:0.5em ;
	margin:0 5%;
	font-size:2.4rem;
}
.index .topVP ul {
	position:relative;
	bottom:0;
	width:100%;
	display:flex;
	justify-content:space-between;
	align-items: flex-end;/*2506 add*/
	text-align:center;
	margin-top:4vh;
}
.index .topVP ul li{
	width:32.5%;
}
.index .topVP ul li a{
	display:block;
	width:100%;
	height:3.8em;
	background:rgba(255,255,255,0.75);
	padding:0.2em 0 1.2em;
	text-decoration:none;
	color:#08037e;
	font-size:1.8rem;
	font-weight:400;
	line-height:1.0;
	position:relative;
	z-index:1;
}
.index .topVP ul li:nth-child(-n+2) a{
	padding-top:0.8em;
}
.index .topVP ul li a:after{
	content:"";
	display:block;
	width:10vw;
	height:5vw;
	background:url("/assets/img/arrow_w.png") #08037e no-repeat center/30%;
	border-radius: 50% / 100% 100% 0 0;
	position:absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
#new-arrival h2{
	color:#e25f40;
	font-weight:400;
}
#new-arrival .flex_area {
	width:100%;
	margin:2vh auto;
	display:flex;
	flex-wrap:nowrap;
	gap:4vw;
	overflow-x:auto;
}
#new-arrival .panel {
	flex-grow: 1;
	min-width: 80%;
	max-width: calc(50% - 20px);
}
#new-arrival .panel1{
	min-width:100%;
}
#new-arrival .panel a{
	display:block;
	border:1px solid #ccc;
	text-decoration:none;
}
#new-arrival .panel p{
	font-size:1.3rem;
	color:#888;
	padding:0.5em 0.5em 0;
}
#new-arrival .panel p img{
	display:innline-block;
	vertical-align:text-top;
	width:1.3rem;
	margin-right:0.4em;
	padding-top:0.3em;
}
#new-arrival .panel h3{
	padding:0.2em 0.5em 0.5em;
	font-weight:inherit;
	font-size:1.6rem;
}
.index .title-content h2,
.article .title-content h2{
	background:#08037e;
	margin:10vh 0 0;
	padding:0.1em 0;
	position:relative;
}
.index .title-content h2:before,
.article .title-content h2:before{
	display:block;
	content:"";
	width:100%;
	height:1px;
	background:#08037e;
	position:absolute;
	top:-4px;
	left:0;
}
.index .list a,
.article .list a{
	border-bottom:1px solid #ccc;
	padding:4vh 5% 1.5vh;
}
.index .list dl,
.article .list dl {
	margin-top:0.4em;
}
.index .list dt,
.article .list dt {
	font-weight:400;
	font-size:2.0rem;
}
.index .list dd ,
.article .list dd {
	margin-top:0.8em;
}
.index .list dd:nth-of-type(1),
.article .list dd:nth-of-type(1){
	display:none;
}
/*--.article--*/
.article .title1 {
	background:url("/assets/img/subtitle_bg_1.png") #f5f3ea;
	background-size:75px;
	padding:5vh 5%;
}
.article .title2 {
	background:url("/assets/img/subtitle_bg_2.png") #f5f3ea;
	background-size:75px;
	padding:5vh 5%;
}

.article .title1 h2,
.article .title2 h2{
	text-align:left;
	color:#08037e;
	font-weight:500;
	font-size:3.0rem;
}
/*--.detail--*/
.detail .content-area {
	margin-top:1.25vh;
}
.detail .title-content {
	box-sizing:border-box;
	width:100%;
	background:#f5f3ea;
	padding:5vh 5%;
}
.detail .title-content h2{
	text-align:left;
	color:#08037e;
	line-height:1.3;
	margin-bottom:4vh;
}
.detail .inner h3 {
	font-weight:400;
	color:#08037e;
	font-size:2.0rem;
	margin-bottom:0.6em;
}
.detail section .inner p {
	margin-bottom:1.5em;
}
.detail section .inner figure {
	margin:5vh auto;
}
.detail section .inner figcaption {
	font-size:1.3rem;
}
.detail section .video-area {
	padding:1.0em 5%;
	background:#f5f3ea;
}
.detail section .video-area iframe,.detail section .video-area video{
	display:block;
	width:100% !important;
	height:auto;
	aspect-ratio: 16/9;
}
.detail .back_to_list {
	padding:0 5%;
	margin:0;
}
.detail .back_to_list a{
	text-decoration:underline;
}
.detail .back_to_list img{
	width:0.9em;
	display:inline-block;
	vertical-align:middle;
	margin-right:0.5em;
}
/*--2506 add--*/
.title-content table td{
	display:inline-block;
	width:100%;
}
/*--tab--*/
.detail .lang-ja {
	background:#fff;
	border:1px solid #e25f40;
	padding:0.8em;
	flex-wrap: wrap;
	gap: 0 5px;
	margin-top:0;
	display: none;
}
.detail .lang-area.open .lang-ja {
	display: flex;
}

.lang-ja > label {
	flex: 1 1;
	order: -1;
	min-width: 70px;
	padding: 0.5em 1em;
	border-radius: 10px 0 0 0;
	border:1px solid #e25f40;
	background-color: #fff;
	color: #e25f40;
	font-weight:400;
	text-align: center;
	cursor: pointer;
}

.lang-ja input {
display: none;
}

.lang-ja label + div {
	display: none;
	width: 100%;
	padding: 0.6em 0.6em 0;
	margin-top:0.4em;
	background-color: #efefef;
	font-size:1.4rem;
	line-height:1.6;
}
.lang-ja > div h3{
	font-size:1.6rem !important;
}
.lang-ja > div p.caption {
	padding:0 0 0 0.5em;
	font-size:1.3rem;
}
.lang-ja > div ul.caption {
	padding:0em;
}
.lang-ja > div ul.caption li{
	font-size:1.3rem;
}

.lang-ja label:has(:checked) {
	background-color: #e25f40;
	color: #fff;
}

.lang-ja label:has(:checked) + div {
	display: block;
}
}
@media screen and (min-width: 420px) {
/*--header--*/
.index .topVP h2 {
	padding:0.5em 1.6em;
}
.index .topVP ul li a:after{
	width:10vw;
	height:5vw;
}
}

@media screen and (min-width: 550px) {
aside h2 {
	text-align:center;
}
/*--header--*/
.index .topVP ul li a:after{
	width:8vw;
	height:4vw;
}
#new-arrival .panel {
	min-width:33%;
}
}

@media screen and (min-width: 768px) {
.sp {
	display:none;
}
.pc {
	display:inline-block;
}
h2:not(.topVP) {
	font-size:2.8rem;
}
section:not(.topVP) {
	margin:80px auto;
}
.btn {
	width:50%;
}
.btn_hide {
	width:60%;
}
/*--header--*/
header nav.open{
	left:25%;
	max-width:75%;
	box-shadow:0 0px 20px rgba(38,47,55,0.35);
}
/*--form parts--*/
section.form .inner {
	padding:2.0em 5%;
}
fieldset{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;

}
fieldset label{
	width:40% ;
}
input[type=text], input[type=email], input[type=tel], input[type=password], select, textarea, legend + div{
	margin-top:0;
	width:60%;
}
fieldset legend {
	display:contents;
	width:40% !important;
}
.radio label,
.checkbox label{
	width:100%;
	margin-left:0;
}
.required {
	display:block;
	width:5.4em;
	margin-left:0;
	margin-top:0.3em;
	text-align:center;
}
.error {
	box-sizing:border-box;
	width:100%;
	padding-left:40%;
	margin:0.8em 0 0 1.0em !important;
}
.submit button,.reset button{
	width:50%;
}

/*--aside--*/
/*--footer--*/
aside ul ,.link_banner{
	width:100%;
	box-sizing:border-box;
	display:flex;
	flex-wrap:wrap;
	margin:0;
}
aside li,.link_banner li{
	width:32%;
	margin-bottom:0.6em;
	margin-right:2%;
}
aside li:nth-of-type(3n),
.link_banner li:nth-of-type(3n){
	margin-right:0;

}
footer ul.link_sns{
	width:40%;
}
footer p{
	font-size:1.3rem;
}
/*--index--*/
.index .topVP h2 {
	font-size:3.2rem;
}

.index .topVP ul li a{
	height:auto;
	padding:0.4em 0 1.6em;
}
.index .topVP ul li:nth-child(-n+2) a{
	padding-top:0.4em;
}
.index .topVP ul li a:after{
	width:5vw;
	height:2.5vw;
}
.index .list a,
.article .list a{
	display:flex;
	align-items:start;
	gap:4vw;
	padding:4vh 0;
}
.index .list .photo,
.article .list .photo{
	width:40%;
	 height:auto;
}
.index .list a dl,
.article .list a dl{
	width:60%;
	margin-top:0;
	margin-right:4%;
}
.index .list a dt,
.article .list a dt{
	text-decoration:underline;
}
.index .list dd:nth-of-type(1),
.article .list dd:nth-of-type(1){
	display:block;
}
/*--detail--*/
.detail .title-content figure{
	max-width:640px;
	margin:0 auto;
}
.detail .lang-ja {
	padding: 1.5em; 
}
.lang-ja > label {
	max-width:300px;
}
.lang-ja > div {
	padding: 0.6em 1.5em 0;
}
.lang-ja > label span{
	margin-left:0.5em;
}
.detail section .inner figure {
	max-width:640px;
}
.detail section .video-area {
	margin-bottom:5vh;
}
}
@media screen and (min-width: 1024px) {
section:not(.topVP) {
	margin:100px auto;
}
a ,
.btn button{
	transition: all 0.5s ease;
}
.photo {
	overflow:hidden;
}
a .photo img{
	transition: transform 0.5s ease;
}
a:hover .photo img{
	transform: scale(1.05);
	opacity:0.75;
}
h2:not(.topVP) {
	font-size:3.0rem;
}
.txt_link2:hover {
	text-decoration:none;
	opacity:0.7;
}
.btn{
	width:35%;
	max-width:300px;
	margin:1.2em 0 1.2rem auto;
}
.btn_hide{
	width:60%;
	max-width:400px;
	margin:1.2em auto 0;
}
.btn_link a:hover{
	background:url("/assets/img/arrow-link-orange.svg") #fff no-repeat;
	background-position:85% center;
	background-size:0.95em;
	color:#e25f40;
}
.btn_show button:hover{
	background:url("/assets/img/icon_plus_w.png") #e25f40 no-repeat;
	background-position:85% center;
	background-size:0.8em;
	color:#fff;
}
.btn_hide button:hover{
	background:url("/assets/img/icon_minus_w.png") #555 no-repeat;
	background-position:90% center;
	background-size:0.7em;
	color:#fff;
}
/*--header--*/
header {
	height:110px;
}

h1{
	width:20%;
/*	max-width:240px;*/
}
h1 img{
	max-width:240px;
	height:auto;
	max-height:auto;
}
header .inner > div{
	margin:0 0 0 5%;
	padding:0;
	width:80%;
	position:relative;
}
#dw_btn {
	display:none;
}
header nav{
	position:static;
	background:inherit;
	width:auto;
	height:auto;
	color:inherit;
	margin:16px 0 0;
	padding:0;
	font-weight:400;
}
header nav ul{
	display:flex;
	justify-content:space-between;
}
header nav li a{
	width:auto;
	padding:0;
	border-bottom:none;
}
header nav li a:after{
	width:0;
	height:0;
	background:#e25f40;
	bottom: -8px;
	right:0;
	left:0;
	transform: none;
	transition: all 0.3s ease;
}
header nav li a:hover::after{
	width:100%;
	height:2px;
}
header nav p {
	position:absolute;
	top:-52px;
	right:0;
	width:auto;
}
header nav p a{
	text-align:center;
	width:100%;
	padding:0em 1.4em;
	border:2px solid #08037e;
	background:#08037e;
	color:#fff;
	font-size:1.5rem;
}
header nav p a:hover{
	background:#fff;
	color:#08037e;
}
/*--Form Parts--*/
.submit button,.reset button{
	width:35%;
}

/*--breadcrumb--*/
.breadcrumb__list{
	padding-top:130px;
}
/*--aside,footer--*/
aside a:hover,
footer a:hover {
	opacity:0.75;
}
/*--index--*/
.index .topVP {
/*	height:480px;*/
	background:url("/assets/img/top_bg_pc.png") no-repeat;
	background-size:cover;
	padding-top:80px;
	margin-top:110px;
}
.index .topVP h2{
	padding:1.0em 2.4em;
	font-size:3.4rem;
}
.index .topVP ul {
	width:100%;
	max-width:1500px;
	padding:0 8%;
	bottom:10px;
	margin:8vh auto 0;
	justify-content:center;
	gap:20px;
}
.index .topVP ul li{
	width:400px;
}
.index .topVP ul li a{
	padding:0.4em 0 1.4em;
	font-size:2.0rem;
	border:1px solid #08037e;
}
.index .topVP ul li a:hover{
	background:#08037e;
	color:#fff;
}
.index .topVP ul li a:after{
	width:48px;
	height:24px;
}
#new-arrival .panel {
	min-width:28%;
}
#new-arrival .panel .photo{
	max-height:200px;
	overflow:hidden;
}
#new-arrival .panel p{
	padding:0.6em 1.0em 0;
}
#new-arrival .panel h3{
	padding:0.2em 1.0em 0.8em;
}
.index #sec01,
.index #sec02,
.index #sec03{
	display:flex;
	justify-content:stretch;
	gap:50px;
	margin-top:-140px;
	padding-top:140px;
}
.index #sec02 {
	flex-direction: row-reverse;
}
.index .title-content {
	box-sizing:border-box;
	width:30%;
	max-width:300px;
	background:url("/assets/img/subtitle_bg_1.png") #f5f3ea;
	background-size:40%;
}
.index #sec02 .title-content {
	background:url("/assets/img/subtitle_bg_2.png") #f5f3ea;
	background-size:30%;
}
.index .title-content h2{
	margin:36px 20px 0;
	padding:0.6em ;
}
.index .list-content ,
.article .list-content{
	width:70%;
	border-top:1px solid #ccc;
}
.index .list dd ,
.article .list dd {
	margin-top:1.0em;
}
.index .list .photo ,
.article .list .photo {
	width:35%;
}
.index .list a,
.article .list a{
	background:rgba(255,255,255,1.0);
}
.index .list a:hover,
.article .list a:hover  {
	background:rgba(245,243,234,0.4);
}
/*--.article--*/
.article main .inner {
	display:flex;
	justify-content:stretch;
	gap:50px;
}
.article .title-content {
	box-sizing:border-box;
	width:30%;
	max-width:300px;
}
.article .title-content h2 {
	margin:4px 0 0;
	padding:0.6em 0.5em;
	background:none;
	color:inherit;
	text-align:left;
	font-size:2.8rem;
}
/*--.detail--*/
.detail .content-area {
	margin-top:40px;
}
.detail .title-content {
	background:none;
	margin-top:0;
}
.detail .title-content h2{
	box-sizing:border-box;
	margin-bottom:60px;
	background:#f5f3ea;
	padding:5vh 5%;
}
.detail .lang-ja {
	padding:36px 60px;
}
.lang-ja label + div {
	padding: 1.2em 3.0em 0;
}
.detail section.image-right {
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	flex-direction: row-reverse;
	width:100%;
	margin-bottom:0;
}
.detail section.image-right h3,
.detail section.image-right .lang-area{
	width:100%;
}
.detail section.image-right figure {
	width:45%;
	margin:0;
}
.detail section.image-right .text-inner{
	width:45%;
}
.detail section .video-area {
	padding:50px 8% ;
	background:#f5f3ea;
	margin: 80px auto;
}
.detail section .video-area iframe,
.detail section .video-area video{
	max-width:640px !important;
	margin:0 auto;
}
.detail .back_to_list {
	padding-left:8%;
}
/*--2506 add--*/
.title-content table tr {
	display:flex;
	gap:0 16px;
}
.title-content table td:first-child{
	width:35%;
}
.title-content table td:nth-child(2){
	width:65%;
}
}
@media screen and (min-width: 1280px) {
.inner ,.detail .back_to_list {
	width:100%;
	max-width:1500px;
	padding:0 8%;
	margin-left:auto;
	margin-right:auto;
}

/*--form parts--*/
section.form ,section.form .inner{
	width:100%;
	max-width:1500px;
	padding:0 8%;
	margin-left:auto;
	margin-right:auto;
}
section.form .inner{
	padding:50px 8%;
}
.submit button,.reset button{
	width:30%;
}
/*--breadcrumb--*/
.breadcrumb__list{
	padding:130px 8% 0.5em;
	max-width:1500px;
	margin-left:auto;
	margin-right:auto;
}
/*--aside--*/
/*--footer--*/
aside li,.link_banner li{
	width:23.5%;
	margin-right:0;
}
aside li:not(:nth-of-type(4n)),
.link_banner li:not(:nth-of-type(4n)){
	margin-right:2%;
}
footer .inner{
/*	display:flex;
	justify-content:space-between;
	align-items:end;
*/
	padding:4vh 8%;
}
footer ul.link_sns{
	display:flex;
	justify-content:start;
	width:300px;
/*	margin:0;*/
}
footer ul.link_sns li{
	width:25%;
}
footer ul.link_sns a{
	width:30px;
/*	margin:0;*/
}
p.to_top {
	display:block;
	position:fixed;
	right:30px;
	bottom:40px;
}
p.to_top a{
	box-sizing:border-box;
	width:40px;
	height:40px;
	background:#555;
	border-radius:50%;
	border:2px solid #fff;
	padding:0.6em;
	transform:rotate(180deg);
}
/*--.article--*/
.article .title1 ,
.article .title2 {
	box-sizing:border-box;
	background-size:90px;
	padding:30px 8%;
	margin:0 auto;
}
.article .title1 h2,
.article .title2 h2{
	max-width:1500px;
	text-align:center;
	margin:0 auto;
}
.detail .content-area {
	margin-top:100px;
}
.detail .title-content {
	width:100%;
	max-width:1500px;
	padding:0 8%;
	margin-left:auto;
	margin-right:auto;

}
.detail .title-content h2{
	padding:20px 8%;
}
}
@media screen and (min-width: 1500px) {
header {
	height:120px;
	padding:25px 0;
}
.index .topVP {
	margin-top:120px; 
}
}