@charset "UTF-8";
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	変数設定

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* color */
/* trans */
/* margin */
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	common
	common　header、nav、footer、main、parts
	一覧ページ【archive】
	記事ページ【single】
	404【404】


//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  background: #1c3041;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", serif;
}

html * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  word-wrap: normal;
  width: 100%;
  overflow: hidden;
}

main,
section,
article {
  overflow: hidden;
}

sup {
  font-size: 0.7rem;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

a {
  text-decoration: none;
  color: #fff;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
a:visited {
  text-decoration: none;
  color: #fff;
}
a:hover {
  text-decoration: none;
  color: #17bbef;
  cursor: pointer;
}

.overflow_hidden {
  overflow: hidden;
}

.clear {
  clear: both;
}

.spBr {
  display: none;
}

.spNoBr {
  display: block;
}

.caution_list {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #666;
}
.caution_list li {
  position: relative;
  padding-left: 1rem;
}
.caution_list li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.decimal_list {
  list-style-type: decimal;
  padding-left: 2rem;
}

.dot_list li {
  position: relative;
  padding-left: 1.5rem;
}
.dot_list li::before {
  position: absolute;
  content: "";
  top: 0.7rem;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #6C6C6C;
  text-indent: -1.5rem;
}

.caution {
  font-size: 0.8rem;
  color: #666;
}

.container {
  width: 96%;
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/* img_box */
.img_box {
  overflow: hidden;
}
.img_box img {
  width: 100%;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}

/*--------------------------------------------------------------
	header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  line-height: 1;
  z-index: 10000002;
  display: flex;
  justify-content: space-between;
  justify-items: center;
  padding: 30px 15px;
  background: #1c3041;
}
header h1 a img {
  width: 125px;
}
header #headerBut {
  display: flex;
  gap: 20px;
  align-items: center;
  /* 三 */
}
header #headerBut #menuBut {
  position: relative;
  display: block;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
header #headerBut #menuBut span {
  position: absolute;
  left: 0;
  margin: 0 auto;
  height: 2px;
  background: #fff;
  transition: 0.35s cubic-bezier(0.2, 0.9, 0.7, 1);
}
header #headerBut #menuBut span:nth-child(1) {
  top: 0px;
  width: 30px;
}
header #headerBut #menuBut span:nth-child(2) {
  top: 6px;
  width: 22px;
}
header #headerBut #menuBut span:nth-child(3) {
  top: 12px;
  width: 30px;
}
header #headerBut #menuBut span:nth-child(4) {
  top: 18px;
  width: 22px;
}
header #headerBut #searchBut a {
  display: block;
  width: 25px;
  height: 25px;
  background: url(../img/common/icon_search_w.svg) no-repeat center;
}
header #headerBut #searchBut a:hover,
header #headerBut #searchBut a:active {
  background: url(../img/common/icon_search_G.svg) no-repeat center;
}

.openNav #menuBut span {
  background: linear-gradient(150deg, rgb(23, 187, 239) 0%, rgb(99, 186, 159) 100%) !important;
  transform-origin: center center;
}
.openNav #menuBut span:nth-child(1) {
  top: 10px !important;
  transform: rotate(-45deg);
}
.openNav #menuBut span:nth-child(2) {
  display: none;
}
.openNav #menuBut span:nth-child(3) {
  top: 10px !important;
  transform: rotate(45deg);
}
.openNav #menuBut span:nth-child(4) {
  display: none;
}
.openNav #globalNavBlock {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
	nav
--------------------------------------------------------------*/
#globalNavBlock {
  position: fixed;
  top: 0;
  left: 0;
  padding: 50px 12%;
  margin-top: 80px;
  width: 100%;
  height: 100%;
  border-top: 2px solid;
  border-image: linear-gradient(to right, #228d8b, #218583) 1;
  z-index: 10000001;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
#globalNavBlock form section #selectZoneList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto 60px;
}
#globalNavBlock form section #selectZoneList li {
  width: calc(50% - 10px);
}
#globalNavBlock form section #selectLanguageList {
  margin: 40px auto;
}
#globalNavBlock form section #selectLanguageList li {
  width: 40%;
  min-width: 150px;
  margin: 0 auto 20px;
}
#globalNavBlock form #survey {
  padding-bottom: 50px;
}
#globalNavBlock form #survey a {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
  border-radius: 50px;
  padding: 20px;
  background: #1c3041;
  border: 1px solid #fff;
  cursor: pointer;
  margin: 40px auto;
  min-width: 150px;
}
#globalNavBlock form #survey a:hover,
#globalNavBlock form #survey a:active {
  background: linear-gradient(90deg, rgb(32, 122, 155) 0%, rgb(36, 147, 143) 100%);
}

#globalNavBlock::before,
#globalNavBlock::after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#globalNavBlock::before {
  background: #4e565d;
  opacity: 0.95;
}

#globalNavBlock::after {
  background: url(../img/common/bg_pattern.png);
  background-size: 3px;
}

/*--------------------------------------------------------------
	footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
	main
--------------------------------------------------------------*/
main {
  padding-top: 80px;
}

#mainBlock {
  text-align: left;
}

/*--------------------------------------------------------------
	parts
--------------------------------------------------------------*/
/*-------------------- title --------------------*/
.headline_1 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, rgb(32, 122, 155) 0%, rgb(36, 147, 143) 100%);
  padding: 10px;
}

.area_name {
  text-align: left;
  margin-bottom: 10px;
}
.area_name h2,
.area_name h3 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  line-height: 1;
  padding: 0 15px;
  background: #1c3041;
}
.area_name h2::before,
.area_name h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 8px;
  height: 18px;
  background: linear-gradient(90deg, rgb(32, 122, 155) 0%, rgb(36, 147, 143) 100%);
}
.area_name h2::after,
.area_name h3::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 100vw;
  height: 2px;
  background: #17bbef;
  z-index: -1;
}

.area_title h3 {
  font-size: 24px;
  font-weight: 700;
  padding: 25px;
}

.segment_title {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px;
}
.segment_title h3 {
  font-size: 18px;
  font-weight: 700;
}

.exhibit_title {
  font-size: 18px;
  font-weight: 800;
  padding: 10px;
  border-bottom: 3px solid #fff;
  background: url(../img/common/bg_pattern.png) #23374a;
}

/*-------------------- breadcrumbs --------------------*/
#breadcrumbsList {
  display: flex;
  margin-bottom: 10px;
}
#breadcrumbsList * {
  font-size: 15px;
  padding: 0;
  margin: 0;
  border: none;
}
#breadcrumbsList li {
  position: relative;
  padding: 0 10px;
}
#breadcrumbsList li:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 0;
  right: 0;
}

/*-------------------- button --------------------*/
button {
  cursor: pointer;
  background: none;
}

button.but_1,
button.but_2 {
  padding: 20px;
  line-height: 1.4;
}

button.but_1,
button.but_2,
button.but_1 *,
button.but_2 * {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  border-radius: 50px;
  line-height: 1.4;
}

button.but_1 {
  background: #1c3041;
  border: 1px solid #fff;
  width: 100%;
}

button.but_1:hover,
button.but_1:active {
  background: linear-gradient(90deg, rgb(32, 122, 155) 0%, rgb(36, 147, 143) 100%);
}

button.but_2 {
  background: linear-gradient(90deg, rgb(32, 122, 155) 0%, rgb(36, 147, 143) 100%);
  width: 130px;
}

button.but_2:hover,
button.but_2:active {
  color: #1c3041;
  background: #fff;
}

/*-------------------- pagenation --------------------*/
#debuBlock {
  display: block;
}

#pagenationBlock {
  padding: 50px 0;
}
#pagenationBlock #backNextBlock {
  margin: 0 auto;
}
#pagenationBlock #backNextBlock button {
  font-size: 0px;
}
#pagenationBlock #backNextBlock button:nth-child(2) {
  margin-left: 40px;
}
#pagenationBlock #backNextBlock button.but_back,
#pagenationBlock #backNextBlock button.but_next {
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px;
  width: 40%;
  height: 20px;
  padding: 15px 20px 20px;
  border: 1px solid #17bbef;
}
#pagenationBlock #backNextBlock button.but_back {
  background-image: url(../img/common/arrow_back_g.svg);
}
#pagenationBlock #backNextBlock button.but_next {
  background-image: url(../img/common/arrow_next_g.svg);
}
#pagenationBlock #backNextBlock button.but_back:hover,
#pagenationBlock #backNextBlock button.but_next:hover {
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #fff;
}
#pagenationBlock #backNextBlock button.but_back:hover {
  background-image: url(../img/common/arrow_back_w.svg);
}
#pagenationBlock #backNextBlock button.but_next:hover {
  background-image: url(../img/common/arrow_next_w.svg);
}
#pagenationBlock #backBlock {
  margin-top: 40px;
}
#pagenationBlock #backBlock button.but_2 {
  font-size: 15px;
  padding: 10px 20px;
}
#pagenationBlock #backBlock a.but_list_back {
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  border: 1px solid #fff;
  background: linear-gradient(90deg, rgb(32, 122, 155) 0%, rgb(36, 147, 143) 100%);
}
#pagenationBlock #backBlock a.but_list_back:hover {
  color: #1c3041;
  background: #fff;
}

/* map */
#mapBlock {
  margin: 0 1%;
}

/*-------------------- box --------------------*/
/*-------------------- modal --------------------*/
/*-------------------- table --------------------*/
/*-------------------- list --------------------*/
/* adjust_box */
.adjust_box {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.adjust_box.box_1x1:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.adjust_box.box_16x9:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.adjust_box.box_3x4:before {
  content: "";
  display: block;
  padding-top: 133%;
}
.adjust_box.box_4x3:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.adjust_box.box_4x5:before {
  content: "";
  display: block;
  padding-top: 125%;
}
.adjust_box.box_2x1:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.adjust_box .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.adjust_box .inner img {
  width: 100%;
  height: auto;
}

/*-------------------- text --------------------*/
/*-------------------- Gutenberg --------------------*/
/* iframe */
.post_text_block {
  margin-bottom: 50px;
}

.post_text_block .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.post_text_block .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*-------------------- transform --------------------*/
/*-------------------- form --------------------*/
form button {
  cursor: pointer;
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

	 404 【404】

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#notfoundBlock {
  margin: 100px auto 0;
}
#notfoundBlock h2,
#notfoundBlock p {
  text-align: center;
  font-weight: 800;
  color: #666;
}
#notfoundBlock h2 {
  font-size: 5rem;
  line-height: 1;
}
#notfoundBlock p {
  margin-bottom: 25px;
}/*# sourceMappingURL=style.css.map */