@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

body{
	background-color: #E8E6E2;
}

/* Google翻訳のトップバー（iframe）を完全に非表示にする */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* ユーザーが提示した特定のクラスのiframeも念のため非表示 */
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

/* Googleがbodyタグに付与する位置ズレを強制的にリセットする */
body {
    top: 0px !important;
}

/* ウィジェットの見た目を完全に隠す（iframe は残す） 
.skiptranslate {
    width: 1px !important;
    height: 1px !important;
    max-width: 1px !important;
    max-height: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    opacity: 0 !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.skiptranslate iframe {
    width: 1px !important;
    height: 1px !important;
    max-width: 1px !important;
    max-height: 1px !important;
    opacity: 0 !important;
    border: 0 !important;
    display: block !important;
}*/

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
    height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 768x ~ 1300px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
    html {
        font-size: 0.83vw;
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: #2C2C2C;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 500;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    a:hover {
        opacity: 0.7;
    }

    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .7;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.is-hide {
    display: none;
}

/*** pc ***/
@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}
/*** sp ***/
@media only screen and (max-width : 767px){
	.is-pc {
		display: none;
	}
}



/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
	background: #E8E6E2;
}

/* !header
---------------------------------------------------------- */

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #E8E6E2;
	z-index: 99999999;
}

#header {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 99;
	border-bottom: 1px solid;
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 0 3.2rem;
	height: 10rem;
}
.header-logo img {
	width: 27.5rem;
}

#header .right {
	display: flex;
}

.headlinks {
	display: flex;
	align-items: center;
	gap: 0 1.4rem;
	padding: 0 3rem;
}
.headlinks .head-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1.5rem;
	height: 5.4rem;
	border: 1px solid #2C2C2C;
	border-radius: 3rem;
}
.headlinks .language {
	font-size: 1.4rem;
	min-width: 118px;
}
.headlinks .language .gtranslate_wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
}
.headlinks .language .press {
	margin-left: 1rem;
	padding-left: 1rem;
	border-left: 1px solid;
}
.headlinks .contact {
	background: #2C2C2C;
	color: #fff;
	font-weight: 700;
}
.headlinks .language a{
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.4rem;
	height: 5.4rem;
	border: 1px solid #2C2C2C;
	border-radius: 3rem;
}
.headlinks .language a:first-child{
	margin-right: 10px;
}
.btn-menu {
	display: none;
}

#g-navi ul {
	display: flex;
	border-left: 1px solid #2C2C2C;
}
#g-navi li {
	border-right: 1px solid #2C2C2C;
}
#g-navi li a {
	display: block;
	height: 10rem;
	padding-top: 4.6rem;
	width: 15.2rem;
	background: no-repeat center top 1.6rem;
	text-align: center;
	line-height: 1.2667;
}
#g-navi li .tit {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
}

.icon_event {
	background-image: url(../img/common/icon_events.png) !important;
	background-size: 33px 22px !important;
}
.icon_shop {
	background-image: url(../img/common/icon_shopping.png) !important;
	background-size: 22px 22px !important;
}
.icon_sport {
	background-image: url(../img/common/icon_sports.png) !important;
	background-size: 26px 25px !important;
}
.icon_company {
	background-image: url(../img/common/icon_company.png) !important;
	background-size: 22px 22px !important;
}
.end-submit .wpcf7-spinner{
	display: block;
}
.wpcf7-not-valid-tip{
	color:#E85400;
	display: block;
	padding-top: 3px;
}



/*** hover ***/
@media screen and (min-width: 960px) {
	.headlinks .contact:hover {
		opacity: 1;
	    background: #fff;
	    color: #2C2C2C;
	}
	/*.headlinks .language:hover {
		opacity: 1;
		background: #2C2C2C;
		color: #fff;
	}*/
	
	
}

/* !footer
---------------------------------------------------------- */
#footer {
	overflow: hidden;
	padding: 8.5rem 8rem;
	background: #2C2C2C;
	color: #fff;
}
.footer-inner {
	display: flex;
	justify-content: space-between;
}

.foot-logo {
	width: 46%;
	max-width: 39rem;
}

.footlinks {
	display: flex;
	gap: 0 3rem;
}
#footer .view-btn {
	position: relative;
	z-index: 2;
	margin-top: 7rem;
	text-align: right;
}
#footer .view-btn a {
	display: inline-flex;
	align-items: center;
	padding: 1rem 4rem 1rem 2rem;
	height: 5.4rem;
	background: url(../img/common/icon_view.svg)no-repeat right 2rem center #fff;
	border-radius: 5rem;
	border: 1px solid #fff;
	color: #2C2C2C;
}

#copyright {
	opacity: 0.5;
	margin-top: 2rem;
	font-size: 1.2rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
	#footer .view-btn a:hover {
		background-color: #2C2C2C;
		color: #fff;
	}
}


/* !COMMON
---------------------------------------------------------- */
.notice-swiper {
	overflow: hidden;
	padding: 1.3rem 0;
	border-bottom: 1px solid;
	margin-top: 10rem;
}
.notice-swiper .swiper-wrapper,
.main-swiper .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.notice-swiper .swiper-slide {
	width: auto;
	font-size: 1.4rem;
}
.notice-swiper .dot:before {
	content: "";
	display: inline-block;
	margin: 0 1.1rem 0.2rem 0;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 100%;
	background: #E85400;
}

#main-visual {
	overflow: hidden;
	padding: 9.6rem 0 6.8rem;
	background: url(../img/common/bg_square01.png)no-repeat center;
	background-size: 97.4rem;
}

/*
.main-swiper {
	margin: 0 auto 9rem;
	max-width: 91rem;
}

.main-swiper .swiper-slide {flex-shrink: 0;}
.main-swiper .swiper-slide img {
    display: block;
    width: 100%;
}
*/

.main-swiper {
  margin: 0 auto 9rem;
  max-width: 91rem;
}

.main-swiper .swiper-wrapper {
  display: flex;
}

.main-swiper .swiper-slide {
  width: 440px;
  flex-shrink: 0; 
}


.main-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}


.main-head-swiper .swiper-slide {
    width: 53.7rem;
}


#teaser {
	position: relative;
	z-index: 2;
	padding: 9.5rem 0 10.6rem;
}
#teaser:before {
	content: "";
	position: absolute;
	top: 0;
	z-index: -1;
	background: no-repeat center;
	background-size: 100%;
}
#events #teaser:before {
	left: calc(50% - 22rem);
	width: 103.6rem;
	height: 70rem;
	background-image: url(../img/events/teaser.png);
}
#sports #teaser:before {
	left: calc(50% + 6rem);
	width: 70rem;
	height: 66.6rem;
	background-image: url(../img/sports/teaser.png);
}
#shopping #teaser:before {
	left: calc(50% + 3rem);
	width: 70rem;
	height: 70rem;
	background-image: url(../img/shopping/teaser.png);
}
#company #teaser:before {
	left: calc(50% + 4.6rem);
	width: 70rem;
	height: 70rem;
	background-image: url(../img/company/teaser.png);
}

#contents {
	overflow: hidden;
	margin-top: 10rem;
}

#breadcrumb {
	padding: 1rem 3rem;
	border-bottom: 1px solid;
}

#contact #breadcrumb {margin-top: 10rem;}

#breadcrumb ul {
	display: flex;
}
#breadcrumb li {
	margin-right: 1.1rem;
	font-size: 1.4rem;
}
#breadcrumb li + li:before {
	content: "";
	display: inline-block;
	margin: 0 1.1rem 0.2rem 0;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 100%;
	background: #E85400;
}

.inner {
	margin: 0 auto;
	padding: 0 5rem;
	max-width: 130rem;
}

.font-outfit {
	font-family: "Outfit", sans-serif;
}

.head-large {
	line-height: 1.25;
}
.head-large .eng {
	margin-bottom: 1rem;
	font-size: 6.4rem;
	font-weight: 600;
}
.head-large .jap {
	font-size: 2rem;
	font-weight: 700;
}
.head-large .jap:before {
	content: "";
	display: inline-block;
	margin: 0 1.2rem 0.5rem 0;
	width: 0.6rem;
	height: 0.6rem;
	border-radius: 100%;
	background: #E85400;
}

.nav-links {
	border-top: 1px solid;
	border-bottom: 1px solid;
	position: relative;
	z-index: 3;
	background-color: #E8E6E2;
}
.nav-links ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-left: 1px solid;
}
.nav-links li {
	border-right: 1px solid;
}
.nav-links li a {
	display: flex;
	align-items: center;
	padding: 1rem 4rem 1rem 3rem;
	height: 14rem;
	background: url(../img/common/icon_link_orange.svg)no-repeat right 2rem center;
}
.nav-links li .tit {
	display: flex;
	align-items: center;
	padding-left: 5.2rem;
	background: no-repeat left center;
	background-size: auto 3.6rem !important;
	line-height: 1.35;
	font-size: 2rem;
	font-weight: 700;
}
.nav-links li .icon_event {
	padding-left: 7.2rem;
}
#contact .contact-wrap {border-top: 1px solid #000;}
.contact-wrap {
	position: relative;
	z-index: 3;
	padding: 10rem 0;
	background-color: #E8E6E2;
	background-image: url(../img/common/bg_contact.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	text-align: center;
}
.contact-wrap .head-large {
	margin-bottom: 2.6rem;
}
.contact-wrap .sub {
	line-height: 1.889;
	font-size: 1.8rem;
}
.contact-wrap .btn {
	margin-top: 5rem;
	text-align: center;
}

.btn-link {
	display: inline-flex;
	align-items: center;
	padding: 0 4rem 0 3.2rem;
	height: 7rem;
	width: 22rem;
	background: url(../img/common/icon_link_orange.svg)no-repeat right 2.4rem center #2C2C2C;
	border-radius: 5rem;
	border: 1px solid #2C2C2C;
	color: #fff;
	font-size: 1.5rem;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	gap: 0 2rem;
	margin-top: 8rem;
	font-size: 1.4rem;
}
.wp-pagenavi .pages,
.wp-pagenavi .first,
.wp-pagenavi .last {
	display: none;
}
.wp-pagenavi .page,
.wp-pagenavi .current {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	border-radius: 50%;
}
.wp-pagenavi .page {
	background: #fff;
	font-family: "Outfit", sans-serif;
}
.wp-pagenavi .current {
	background: #2C2C2C;
	color: #fff;
	font-family: "Outfit", sans-serif;
}
.previouspostslink,
.nextpostslink {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 1rem;
	padding: 0 1.7rem;
	height: 4.8rem;
	border-radius: 5rem;
	width: auto;
	border: 1px solid;
	border-radius: 5rem;
}
.previouspostslink:before,
.nextpostslink:after {
	content: "";
	width: 2.2rem;
	height: 0.6rem;
	background: url(../img/common/icon_link_orange.svg) no-repeat center;
	background-size: 100%;
}
.previouspostslink:before {
	transform: scaleX(-1);
}


/*** hover ***/
@media screen and (min-width: 960px) {
	.btn-link:hover {
		opacity: 1;
		background-color: #fff;
		color: #2C2C2C;
	}
	
	.wp-pagenavi .page:hover, 
	.previouspostslink:hover,
	.nextpostslink:hover {
		opacity: 1;
		background: #2C2C2C;
		color: #fff;
	}
}


/* !page
---------------------------------------------------------- */
.top-news {
	padding: 8rem 0;
	background: url(../img/common/bg_square02.png)no-repeat left -35rem top 8rem;
	background-size: auto 48rem;
}
.top-news .head-large {
	margin-bottom: 6rem;
}

.news-item {
	position: relative;
}
.news-item .pickup {
	position: absolute;
	left: -1rem;
	top: -4.2rem;
	z-index: 3;
	width: 98px;
}

.news-item .img {
	margin-bottom: 1.9rem;
	overflow: hidden;
	border-radius: 15px;
	border: 1px solid #2C2C2C;
}
.news-item .img img{
	height: 250px;
	object-fit: cover;
	width: 100%;
	border-radius: 15px;
	transition: transform .6s ease;
}

.news-item .img:hover img {
	transform: scale(1.1);
	border-radius: 15px;
}

#main-visual .news-item .img img{
	height: 330px;
	transition: transform .6s ease;
	width: 100%;
}

#main-visual .news-item .img:hover img {
	transform: scale(1.1);
	border-radius: 15px;
}

.news-item .info {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.9rem;
}
.news-item .info span {
	padding: 0.7rem 1.2rem;
	border-radius: 2rem;
	line-height: 1;
	font-size: 1.4rem;
}
.news-item .cate {
	background: #E85400;
	color: #fff;
} 
.news-item .date {
	background: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
}
.news-item .tit {
	line-height: 1.52;
}
/*
.news-item .tit span {
	padding: 0 0.5rem;
	background: linear-gradient(0deg,#2C2C2C);
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}
*/

.news-item .tit span {
    padding: 0.4rem 0.5rem;
    background: #2C2C2C;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


.news-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 3rem;
}

.top-about {
	background: url(../img/common/bg_square03.png) no-repeat right -21.8rem top #D9D8D4;
	background-size: 63.4rem;
	border-top: 1px solid;
	border-bottom: 1px solid;
}
.top-about .display {
	position: relative;
	overflow: hidden;
}
.top-about .display .info {
	margin-left: auto;
	padding: 12rem 0 12rem 12.8rem;
	width: calc(50% + 0.2rem);
}
.top-about .display .head {
	margin-bottom: 5rem;
	font-weight: 700;
}
.top-about .display .head .eng {
	line-height: 1;
	color: #E85400;
	font-size: 4.4rem;
}
.top-about .display .head .logo {
	display: block;
	margin-top: 2rem;
	font-size: 0;
}
.top-about .display .head .jap {
	margin-top: 5rem;
	line-height: 1.733;
	font-size: 3rem;
}
.top-about .display .txt {
	line-height: 2;
}
.top-about .display .txt p + p {
	margin-top: 1em;
}

.about-img-swiper {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	height: 100%;
	width: 28rem;
}
.about-img-swiper .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	transition-timing-function: linear !important;
}
.about-img-swiper .swiper-slide {
	height: 28rem;
}
.about-img-swiper .swiper-slide img {
    object-fit: cover;
    width: 100%;
	height: 100%;
	border-radius: 2rem;
}
.about-img-swiper.swiper2 {
	left: 31rem;
    transform: scaleY(-1);
}
.about-img-swiper.swiper2 .swiper-slide {
    transform: scaleY(-1);
}

.event-wrap {
	position: relative;
	z-index: 3;
	padding: 0 0 8rem;
}

.detail-style {
	padding: 10rem 0 6.5rem;
}
.detail-style .inner {
	max-width: 90rem;
}
.detail-style .title {
	margin-bottom: 6rem;
}
.detail-style .title .info {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.9rem;
}
.detail-style .title .info span {
	padding: 0.4rem 1.8rem;
	border-radius: 3rem;
}
.detail-style .title .cate {
	background: #E85400;
	color: #fff;
}
.detail-style .title .date {
    background: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
}

/*
.detail-style .title h3 span {
    padding: 0 0.5rem;
    background: linear-gradient(0deg, #2C2C2C);
	line-height: 1.48;
    color: #fff;
    font-size: 4.4rem;
    font-weight: 700;
}
*/
.detail-style .title h3 span {
	padding: 0.4rem 0.5rem;
    background: #2C2C2C;
    color: #fff;
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.4;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
p.calendar_txt{
	padding-bottom: 5px;
	font-size: 1.4rem;
}



.detail-style figure {
	margin: 0 auto 6rem;
}

#inner-mv{
	padding-bottom: 6rem;
}
.detail-style figure img{
	/*
	width: 100%;
	height: auto;
	*/
	width: 800px;
    height: 600px;
    object-fit: cover;
	border-radius: 20px;
}
#inner-mv img {
	width: 800px;
	height: 600px;
	border-radius: 20px;
	object-fit: cover;
}


.detail-style .detail p {
	margin-bottom: 3.2rem;
	line-height: 2;
	font-weight: 400;
	padding-top: 6rem;
	border-top: 1px solid;
}

.sns-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	margin-top: 6.4rem;
	text-align: center;
}
.sns-links .site {
	margin-left: 1.4rem;
	background-image: url(../img/common/icon_view.svg);
	font-size: 1.6rem;
}

.end-link {
	padding: 5.5rem 2rem;
	border-top: 1px solid;
	border-bottom: 1px solid;
	text-align: center;
}
.end-link a {
	display: inline-flex;
	align-items: center;
	gap: 0 1.6rem;
	padding: 1rem 3.2rem 1rem 2.4rem;
	height: 7rem;
	border-radius: 5rem;
	border: 1px solid;
}
.end-link .prev:before {
	content: "";
	transform: scaleX(-1);
	width: 2.2rem;
	height: 1rem;
	background: url(../img/common/icon_link_orange.svg)no-repeat center;
	background-size: 100%;
}

/* contact.html */
#contact .inner {max-width: 150rem;}
@media screen and (min-width: 1600px) {
	#contact .inner {max-width: 163rem;}
}


.contact-wrap-content {
	display: flex;
	position: relative;
	border-top: 1px solid;
}
.contact-wrap-content .side {
	width: calc(30% + 0.4rem);
	border-right: 1px solid;
}
.contact-wrap-content .main {
	width: calc(70% - 0.4rem);
}
.contact-wrap-content .side .con {
	padding: 6rem 3rem;
	margin-left: auto;
	max-width: 41.4rem;
	height: 100%;
}
.contact-wrap-content .side ul {
	position: sticky;
	top: 6rem;
}
.contact-wrap-content .side li {
	padding-left: 1.1em;
	text-indent: -1.1em;
	margin-bottom: 2rem;
	opacity: 0.5;
	font-weight: 700;
}
.contact-wrap-content .side li:before {
    content: "";
    display: inline-block;
    margin: 0 1.1rem 0.2rem 0;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 100%;
    background: #E85400;
}
.contact-wrap-content .side li.current {
	opacity: 1;
}
.contact-wrap-content .side li:first-of-type.current {
    padding-top: 6rem;
}


.contact-wrap-content .main .con {
	padding: 0 5rem 0 8rem;
	max-width: 90rem;
}
.contact-form {
	padding: 5rem 0;
	line-height: 2;
}
.contact-form + .contact-form {
	border-top: 1px solid;
}
.contact-form .head {
	margin-bottom: 5rem;
	padding-left: 1.2em;
	text-indent: -1.2em;
	line-height: 1.46;
	font-size: 3.12rem;
	font-weight: 700;
}
.contact-form .head:before {
    content: "";
    display: inline-block;
    margin: 0 1.4rem 0.6rem 0;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 100%;
    background: #E85400;
}
.contact-form .banner {
	overflow: hidden;
	margin-bottom: 3rem;
	border-radius: 1.2rem;
}

.publication-rule {
	overflow: hidden;
	margin: 3.2rem 0;
	border-radius: 1.2rem;
}
.publication-rule .th {
	padding: 1rem;
	background: #2C2C2C;
	text-align: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
}
.publication-rule .td {
	padding: 2.4rem 2.6rem;
	background: #D9D8D4;
	font-weight: 400;
}
.publication-rule .td a{
	text-decoration: underline;
}
.publication-rule .td a:hover{
	text-decoration: none;
}
.publication-rule .scrollbar {
	overflow-y: auto;
	height: 19.2rem;
}
	.publication-rule .scrollbar::-webkit-scrollbar {
  		width: 0.7rem; 
	}
	.publication-rule .scrollbar::-webkit-scrollbar-track {
		border-radius: 20px;
	}
	.publication-rule .scrollbar::-webkit-scrollbar-thumb{
		background: #fff;
		border-radius: 20px;
	}
.contact-form .must {
	color: #E85400;
}
.contact-form .foucs {
	margin-bottom: 2.4rem;
	font-size: 1.4rem;
}
.contact-form table {
	width: 100%;
}
.contact-form th {
	vertical-align: top;
	padding: 1.6rem 0;
	width: 18rem;
	text-align: left;
	font-weight: 700;
}
.contact-form th .must {
	margin-left: 0.5rem;
}
.contact-form th .note {
	color: #484848;
	font-size: 1.4rem;
	font-weight: 500;
}
.contact-form td {
	vertical-align: top;
	padding: 1rem 0;
	line-height: 1.5;
	font-size: 1.4rem;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel]{
	padding: 0 1.8rem;
	width: 100%;
	height: 4.8rem;
	background: #fff;
	border: 0;
	border-radius: 0.8rem;
}
.contact-form td .note {
	margin-top: 1rem;
	color: #484848;
}
.contact-form textarea {
	resize: none;
	display: block;
	padding: 1rem 1.8rem;
	width: 100%;
	height: 17.2rem;
	border-radius: 0.8rem;
	border: 0;
}

.wpcf7-list-item{
	margin: 0px !important;
}

.select-radio label {
	display: inline-flex;
	align-items: center;
	gap: 0 1rem;
	margin-right: 2rem;
}
.select-radio input {
	display: inline-block;
	width: 2.2rem;
	height: 2.2rem;
	background: url(../img/common/icon_radio.svg)no-repeat center;
	background-size: 100%;
	border: 0;
}
.select-radio input:checked {
	background: url(../img/common/icon_radio_checked.svg);
}

.btn-file {
	display: inline-block;
	position: relative;
	min-width: 25.4rem;
}
.btn-file input[type=file] {
	opacity: 0;
	cursor: pointer;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.btn-file p br {display: none}
.btn-file label {
	display: flex;
	align-items: center;
	padding: 1rem 1.8rem;
	height: 4.8rem;
	background: #fff;
	border-radius: 0.8rem;
	border: 1px solid;
}

.btn-article {
	display: flex;
	align-items: center;
	gap: 0 2.5rem;
	margin: 2.5rem 0 2.5rem 18rem;
}
.btn-article .btn {
	cursor: pointer;
	display: flex;
	align-items: center;
	position: relative;
	width: 17.7rem;
	padding: 0 3rem 0 2rem;
	height: 5.4rem;
	background: url(../img/common/icon_plus_wh.svg)no-repeat right 2rem center #E85400;
	border-radius: 3rem;
	color: #fff;
	font-size: 1.6rem;
}

#article-table .num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 0.2rem;
	margin-left: 0.2rem;
	width: 1.6rem;
	height: 1.6rem;
	background: none;
	border-radius: 50%;
	border: 1px solid;
	text-align: center;
	line-height: 1;
	font-weight: 700;
}

.link-setting li {
	display: flex;
	align-items: center;
	margin-bottom: 1.4rem;
}
.link-setting li .th {
	width: 16rem;
}
.link-setting li .td {
	width: calc(100% - 16rem);
}
.link-setting li .select-radio label {
	margin-right: 0;
}

.end-submit {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact-form .agree input {
	display: inline-block;
	vertical-align: middle;
	margin: 0 0.8rem 0.5rem 0;
	width: 2.4rem;
	height: 2.4rem;
	background: url(../img/common/icon_checkbox.svg)no-repeat center;
	background-size: 100%;
	border: 0;
}
.contact-form .agree input:checked {
	background-image: url(../img/common/icon_checkbox_checked.svg);
}
.contact-form .btns input {
	border-radius: 5rem;
	text-align: left;
	font-weight: 500;
}

.contact-form .calendar {
	margin-top: 3.6rem;
}
.contact-form .calendar iframe {
	width: 100%;
	height: 45rem;
}

/* 元のテキストを非表示にする */
.glink[data-gt-lang="en"],
.glink[data-gt-lang="ja"] {
	color: inherit;        /* 元の色を維持 */
	text-indent: 0;        /* 元テキストを隠さずに上書き */
	width: auto;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	border: 2px solid #E85400;
}

/*** hover ***/
@media screen and (min-width: 960px) {
	.end-link a:hover {
		opacity: 1;
		background: #2C2C2C;
		color: #fff;
	}
	
	.news-list li a:hover,
	.swiper-slide a:hover {opacity: 1 !important;}
}


.btn-file_01 {
    position: relative;
    display: inline-block;
}

.btn-file_01 input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 15px 45px 15px 20px;
    width: 260px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

.btn-file_01 input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0; 
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0; 
    top: 0;
    cursor: pointer;
}

.btn-file_01::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 24 24'%3E%3Cpath d='M7 10h5v5H7z'/%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-1.99.9-1.99 2L3 21a2 2 0 002 2h14a2 2 0 002-2V5c0-1.1-.9-2-2-2zm0 18H5V8h14v13z'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    pointer-events: none; /* ← これも重要：アイコンはクリックを邪魔しない */
}

p.calendar_txt {
	font-size: 1.4rem;
	margin-bottom: 3rem;
}