@charset "UTF-8";
/* CSS Document */
/*　共通設定　*/
body {
	font-size: calc(1.5rem + ((1vw - (960 / 100 * 0.1rem)) * 100 * (18 - 15) / (1920 - 960)));
/*  font-size: 1.6rem;*/
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
/*  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif; */
	line-height: 1.625;
	overflow-wrap: break-word;
	word-wrap: break-word;
	text-align: justify;
}
@media only screen and (min-width: 1920px) {
	body {
		font-size: 1.8rem;
}
}
@media only screen and (max-width: 959px) {
	body {
		font-size: 1.5rem;
}
}
b{
	font-weight:bold;
	}

header > div {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
header .heading-site a {
	display: flex;
	flex-direction: column;
	line-height: 1;
}
header .heading-site a .name-sub {
	font-size: 1.2rem;
	font-weight: bold;
	width: 100%;
	display: inline-block;
	text-align: center;
	background: var(--blue);
	color: var(--white);
	padding: .5em;
}
header .heading-site a .name-main {
	display: flex;
	font-weight: bold;
	align-items: center;
	background: var(--red);
	color: var(--white);
	padding: .25em .5em;
}
header .heading-site a .name-main > span {
	font-size: .5em;
	line-height: 1.2;
	margin-right: 1em;
}
@media only screen and (min-width: 1921px) {
	header .heading-site a .name-main {
		font-size: 3.6rem;
	}
}
@media (min-width: 768px) and (max-width: 1920px) {
header .heading-site a .name-main {
	font-size: calc(2.4rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (36 - 24) / (1920 - 768)));
}
}
.wrap-g-nav {
	display: flex;
}
.g-nav {
}
.btn-g-nav {
	display: none;
}
.wrap-bread {
	background: var(--blue);
	color: var(--white);
	position: relative;
	padding: .5em 1em;
	display: flex;
	justify-content: flex-end;
	font-size: .8em;
}
.wrap-bread li:not(:last-child)::after {
	content: '|';
	margin-left: .75em;
	margin-right: .75em;
	color: var(--white);
}
.wrap-bread a {
	color: var(--white);
	text-decoration: underline;
}
.wrap-bread a:hover {
	text-decoration: none;
}
footer {
	padding: 4em 4vw;
	text-align: center;
}
footer .nav-footer {
	margin-bottom: 2em;
}
footer .nav-footer a:hover {
	text-decoration: underline;
}
footer .copy {
	font-size: .8em;
}
.con-inner {
	max-width: 1500px;
	width: calc(100% - 4vw);
	margin: 0 auto;
}
@media only screen and (min-width: 960px) {
	header {
	position: fixed;
	width: 100%;
	top: 0;
	backdrop-filter: blur(4px);
		z-index: 10;
}
.top	header {
	backdrop-filter: none;
}
.top .wrap-g-nav {
	display: none;
}
.g-nav {	
	display: flex;
}
.g-nav a {	
	font-weight: bold;
	padding: .25em .5em;
	display: block;
	border-bottom: 2px solid var(--blue);
	margin-left: 1em;
	transition: .3s;
}
	.g-nav a:hover {	
	border-bottom: 2px solid var(--red);
	color: var(--red);
	}
	.g-nav .none a {
	border-bottom: 2px solid var(--gray-c);
		color: #999;
	}
}
@media only screen and (max-width: 959px) {
	header .sp-only {
		display: inherit;
	}
header .heading-site a {
		flex-direction: row;
    align-items: center;
}
	header .heading-site a .name-main {
		width: 11em;
		font-size: 2rem;
		background: none;
		color: var(--red);
		flex-direction: column;
		align-items: flex-start;
		padding: 0 .5em;
	}
	header .heading-site a .name-main br {
		display: none;
	}
header .heading-site a .name-sub {
	font-size: 1rem;
	width: 8em;
	}
	.con-inner {
	width: calc(100% - 2em);
	}
	.wrap-bread {
		display: block;
		padding: 1em;
	}
	.wrap-bread li {
		display: inline;
	}
	/* SP-ハンバーガーメニュー 
----------------------------------------*/
  .btn-g-nav {
  background: var(--red);
  width: 50px;
    height: 50px;
    display: block;
    margin-left: auto;
    position: fixed;
    right: 0;
    top: 0;
    padding: 12px;
    cursor: pointer;
    z-index: 100;
}
.btn-g-nav.active .btn-g-nav_line {
    background-color: transparent;
}
.btn-g-nav.active .btn-g-nav_line::before {
    top: 0;
    transform: rotate(45deg);
}
.btn-g-nav.active .btn-g-nav_line::after {
    top: 0;
    transform: rotate(-45deg);
}
.btn-g-nav_line {
    display: block;
    height: 1px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    background-color: var(--white);
    transition: all 0.3s ease;
}
.btn-g-nav_line:before,
.btn-g-nav_line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: var(--white);
    transition: inherit;
}
.btn-g-nav_line:before {
    top: -8px;
}
.btn-g-nav_line:after {
    top: 8px;
}
.btn-g-nav_text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.btn-g-nav_text::before {
    content: 'MENU';
    color: var(--white);
    position: absolute;
    width: 50px;
    right: 0;
    bottom: .5em;
    font-size: 1rem;
    text-align: center;
}
/* SP-メニュー表示 
----------------------------------------*/
.wrap-g-nav nav {
  background: var(--white);
position: fixed;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    width: 0;
    height: 100%;
    top: 0;
    right: -100%;
    transition: all 0.3s ease;
	z-index: 10;
}
.wrap-g-nav nav.active {
    width: 100%;
    height: 100%;
    right: 0;
    overflow-y: auto;
  }
.wrap-g-nav {
  padding: 0 6vw 3em;
  display: block;
  width: 100%;
  max-width: 1000px;
  margin:  0 auto;
  overflow-y: auto;
}
  .g-nav {
    max-width: 480px;
    width: calc(100% - 4em);
    margin: 0 auto;
		text-align: center;
  }
.g-nav > li a {
	display: inline-block;
	padding: .25em .25em;
	position: relative;
	margin: .75em auto;
	font-weight: bold;
	}
		.g-nav .none a {
			color: #999;
	}
}

.btn-pagetop {
  z-index: 9;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  display: none;
}
.btn-pagetop a {
  background: #666;
  height: 100%;
  width: 100%;
  display: block;
  position: relative;
}
.btn-pagetop a::before {
  content: '';
  width: 15px;
  height: 15px;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  position: absolute;
  transform: rotate(-45deg);
  top: calc((100% - 8px) / 2);
  left: calc((100% - 15px) / 2);
}
.btn-pagetop a:hover {
  background-color: #333;
}
.text-bold {
	font-weight: bold;
}
.text-left {
  text-align: left; 
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right; 
}

@media only screen and (min-width: 768px) {
.sp-only {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
	.btn-pagetop {
		width: 50px;
		height: 50px;
	}
	.sp-scroll {
		overflow-x: scroll;
	}
}

/*　webフォント　*/
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Barlow';
  src: url('../fonts/Barlow-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

/*　アイコンフォント　*/
@font-face {
  font-family: 'iconset';
  src:
    url('../fonts/iconset.ttf?olw93l') format('truetype'),
    url('../fonts/iconset.woff?olw93l') format('woff'),
    url('../fonts/iconset.svg?olw93l#iconset') format('svg');
  font-weight: normal !important;
  font-style: normal;
  font-display: block;
}

[class^="icon-"]::after, [class*=" icon-"]::after, a[href*=".pdf"]::after, a[target="_blank"]::after,
[class^="icon-"]::before, [class*=" icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'iconset' !important;
  speak: never;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
	text-decoration: none !important;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.no-icon::after {
	display: none !important;
}
.icon-blank::after,
a[target="_blank"]::after {
  content: "\e900";
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.link-file a[target="_blank"]::after {
  display: none !important;
}
a[href*=".pdf"]::after,
.icon-file::after {
  content: "\e901" !important;
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.icon-link::after {
  content: "\e902" !important;
	font-size: 1em;
	margin-left: .5em;
	margin-right: .25em;
	display: inline-block;
}
.icon-up::after {
  content: "\e903";
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.icon-down::after {
  content: "\e904";
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.icon-pagetop::after {
  content: "\e905";
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.btn-link {
	background: var(--white);
	padding-bottom: 3em;
	text-align: center;
}
.btn-link a {
	display: inline-block;
	padding: .5em 1em .5em 1.5em;
	background: #666;
	color: var(--white);
	font-size: .85em;
}
.btn-link a:hover {
}

/*--------------------------------------------
トップページ
---------------------------------------------*/
body::after {
	content: '';
	background: linear-gradient(0deg, rgba(var(--blue-rgb), .5) 0%, rgba(var(--blue-rgb),.1) 100%);
	width: 100%;
	height: 100%;
	min-height: 1000px;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -2;
}
.top main {
	max-height:  700px;
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 120px;
	padding-top: 0;
}
.top main::after {
	content: '';
	width: 100%;
	height: 100%;
	max-width: 1500px;
	margin: auto;
	display: block;
	position: absolute;
	background: url(../img/index_bg_img.png) center top no-repeat;
	background-size: contain;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.top main > section {
	width: 100%;
	margin: 28vw 0 8vw;
}
.top h2 {
	font-size: 3.2rem;
  text-align: center;
	margin-bottom: 1em;
}
.nav-area {
	display: flex;
	justify-content: space-around;
	font-weight: bold;
	flex-wrap: wrap;
	max-width: 80rem;
	gap: 1em;
}
.nav-area li {
	width: calc((100% - 3em) / 4);
}
.nav-area li.none {
	position: relative;
}
.nav-area li.none::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(var(--blue-rgb), .5);
}
.nav-area li a {
	background: var(--white);
	display: block;
	padding: .5em 0;
	text-align: center;
}
.nav-area li a span {
	color: var(--red);
	font-size: .6em;
	display: block;
}
.nav-area li a:hover {
	color: var(--white);
	background: var(--red);
	border-radius: 1em;
}
.nav-area li a:hover span {
	color: var(--white);
}
.top .notes {
	max-width: 80rem;
	margin: 3em auto 0;
}
.top .notes span {
	font-size: .85em;
}
@media only screen and (max-width: 767px) {
	.top main {
		margin-top: 60px;
	}
	.top main > section {
		margin-top: 40vw;
	}
.top h2 {
	font-size: 2.4rem;
	}
.nav-area {
	font-size: 1.8rem;
	gap: .5em;
	justify-content: flex-start;
	}
	.nav-area li {
		width: calc((100% - 1em) / 3);
	}
}

/*--------------------------------------------
地域
---------------------------------------------*/
main {
	padding-top: 120px;
}
.wrap-area h1 {
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 1em;
	line-height: 1.4;
}
.wrap-area h1 .flag {
	background: var(--white);
	border: 1px solid var(--gray-c);
	margin-right: .5em;
}
.wrap-area h1 .flag img {
	object-fit: cover;
	max-height: 2em;
}
.wrap-area h1 .wrap-name span {
	display: block;
	font-size: .5em;
	color: var(--red);
	}
.nav-country {
	background: var(--white);
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: flex-start;
	padding: 4%;
}
.nav-country > * {
	width: 48%;
}
.nav-country > figure {
	background: rgba(var(--blue-rgb), .2);
	border: 1px solid var(--gray-c);
	position: sticky;
  top: 100px;
}
.nav-country > ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 4%;
	line-height: 1.5;
}
.nav-country > ul li {
	width: calc(96% / 2);
}
.nav-country > ul li a {
	border-bottom: 1px solid var(--gray-c);
	display: flex;
	padding: .5em 0;
	height: 100%;
	align-items: baseline;
}
.nav-country > ul span {
	width: 100%;
}
.nav-country > ul figure {
	border: 1px solid #666;
	display: inline-flex;
	width: 1.5em;
	margin-right: .5em;
}
.nav-country > ul li a:hover {
	border-bottom: 1px solid  var(--red);
	color: var(--red);
}
@media only screen and (min-width: 1921px) {
.wrap-area h1 {
	font-size: 3.6rem;
}
}
@media only screen and (min-width: 1201px) {
	.nav-area {
		font-size: 2.4rem;
	}
}
@media (min-width: 768px) and (max-width: 1920px) {
.wrap-area h1 {
	font-size: calc(2.4rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (36 - 24) / (1920 - 768)));
}
}
@media (min-width: 768px) and (max-width: 1200px) {
.nav-area {
	font-size: calc(1.6rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (24 - 16) / (1200 - 768)));
}
}
@media only screen and (max-width: 767px) {
main {
	padding-top: 50px;
}
	.wrap-area h1 {
	font-size: 2.4rem;
	flex-direction: column;
	text-align: center;
}
.wrap-area h1 .flag {
	margin-right: 0;
	margin-bottom: .5em;
}
.nav-country > ul li a {
	padding: .75em 0;
}
}
@media only screen and (max-width: 479px) {
.nav-country > ul li {
	width: 100%;
	}
}
/*--------------------------------------------
国
---------------------------------------------*/
.wrap-country {
	background: var(--white);
	padding: 4%;
}
.list-event {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
}
.list-event li {
	font-size: 1.1em;
	font-weight: bold;
	width: calc(50% - 1em);
}
.list-event li a {
	border-bottom: 1px solid var(--gray-c);
	display: flex;
	flex-direction: column;
	padding-bottom: .75em;
	height: 100%;
}
.list-event li a:hover {
	color: var(--red);
	border-bottom: 1px solid var(--red);
}
.list-event li .day {
	font-size: .75em;
	font-weight: normal;
	margin-bottom: .5em;
}
.wrap-country section:has(h3, .list-about):not(:last-child) {
	margin-bottom: 5em;
}
.wrap-country section:has(h3) p {
	line-height: 1.8;
}
.list-about {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.5em;
	border-top: 1px solid var(--gray-c);
}
.list-about dt,
.list-about dd {
	padding: .75em 1em;
	border-bottom: 1px solid var(--gray-c);
}
.list-about dt {
	background: #eee;
	width: 10em;
	text-align: center;
	font-weight: bold;
}
.list-about dd {
	width: calc(100% - 10em);
}
.wrap-country > div {
	width: 60%;
}
.wrap-country > div > section > section:not(:last-child) {
	margin-bottom: 3em;
}
.wrap-country h2 {
	font-size: 1.8em;
	font-weight: bold;
	margin-bottom: 1.5em;
	padding-left: .5em;
	border-left: 8px solid var(--blue);
	line-height: 1.5;
}
.wrap-country h2 .day {
	font-size: .6em;
	font-weight: normal;
	display: block;
	margin-bottom: .5em;
}
.wrap-country h3 {
	background: rgba(var(--blue-rgb), .1);
	font-size: 1.2em;
	font-weight: bold;
	padding: .5em 1em;
	margin-bottom: 1em;
}
.wrap-file a {
	color: var(--blue);
	text-decoration: underline;
}
.wrap-file a:hover {
	color: var(--red);
	text-decoration: underline;
}
.wrap-country .btn-contact {
	background: var(--blue);
	color: var(--white);
	font-size: 1.2em;
	font-weight: bold;
	display: block;
	text-align: center;
	margin: auto;
	padding: 1em;
	max-width: 48rem;
	width: 100%;
}
.wrap-country .btn-contact:hover {
	background: var(--red);
	border-radius: .75em;
}
@media only screen and (max-width: 767px) {
.nav-country,
.wrap-country {
	flex-direction: column-reverse;
	align-items: center;
	padding: 2em 1em;
}
.nav-country > figure,
.nav-country > ul ,
.wrap-country > div {
	width: 100%;
}
.nav-country > figure {
	max-width: 240px;
	margin-bottom: 2em;
	position: relative;
	top: 0;
}
	.wrap-country h2 {
		font-size: 1.8rem;
	border-left: 4px solid var(--blue);
	}
	.wrap-country h2 .day {
		font-size: 1.2rem;
	}
	.wrap-country h3 {
		font-size: 1em;
		padding: .5em;
		text-align: center;
	}
.list-event {
	gap: 1em 0;
}
.list-event li {
	font-size: 1em;
	width: 100%;
}
.list-event li .day {
	font-size: .85em;
}
.list-about dt {
	width: 4em;
}
.list-about dd {
	width: calc(100% - 4em);
}
}
/*--------------------------------------------
レイアウト
---------------------------------------------*/
img {
	width: 100%;
	height: auto;
}
.wrap-outside iframe {
	border: 1px solid var(--gray-c);
	width: 100%;
	min-height: 48rem !important;
	max-height: 64rem !important;
	height: calc(100vh - 160px) !important;
}
.max-1200 {
	max-width: 1200px !important;
}
.max-1000 {
	max-width: 1000px !important;
}

.mt-0 {
  margin-top: 0 !important;
}
.mt-05 {
  margin-top: .5em !important;
}
.mt-1 {
  margin-top: 1em !important;
}
.mt-2 {
  margin-top: 2em !important;
}
.mt-3 {
  margin-top: 3em !important;
}
.mt-4 {
  margin-top: 4em !important;
}
.mt-5 {
  margin-top: 5em !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-05 {
  margin-bottom: .5em !important;
}
.mb-1 {
  margin-bottom: 1em !important;
}
.mb-2 {
  margin-bottom: 2em !important;
}
.mb-3 {
  margin-bottom: 3em !important;
}
.mb-4 {
  margin-bottom: 4em !important;
}
.mb-5 {
  margin-bottom: 5em !important;
}

.ml-auto {
	margin-left: auto;
}
.mr-auto {
	margin-right: auto;
}

:root {
/*  赤  */
  --red: #d20000;
  --red-rgb: 210, 0, 0;
/*  白  */
  --white: #fff;
  --white-rgb: 255, 255, 255;
/*  グレー  */
  --gray-c: #ccc;
/*  青  */
  --blue: #0078f3;
  --blue-rgb: 0, 120, 243;
	/*  グレー  */
  --gray: #454545;
}

