@charset "UTF-8";
/*------------------
	FLEXBOX
------------------*/
/*------------------
	フォント
------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*------------------
	ブレイクポイント
------------------*/
/*--------------
	アニメ
--------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes faderight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes arrow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30px);
  }
}
@keyframes reveal {
  to {
    -webkit-mask-position: 0% 0%;
    mask-position: 0% 0%;
  }
}
@keyframes rev_reveal {
  to {
    -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;
  }
}
img {
  max-width: 100%;
}

html {
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: min(3.8vw, 22px);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.forsp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .forsp {
    display: inline-block;
  }
}

.forpc {
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .forpc {
    display: none;
  }
}

.myset {
  width: 1140px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .myset {
    width: 95%;
    max-width: 750px;
  }
}

/*--------------
    フレーム
--------------*/
:root {
  --frame: 1.05vw;
}

@media screen and (max-width: 1200px) {
  :root {
    --frame: 2.6vw;
  }
}
.myframe {
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  height: 100vh;
  height: 100dvh;
  padding: var(--frame); /* 枠の太さ */
  pointer-events: none; /* クリック不可 */
  z-index: 9998;
  transition: height 0.3s ease;
  /* ストライプ */
  background-image: repeating-linear-gradient(135deg, #00afc2, #00afc2 7px, #ffffff 7px, #ffffff 11px);
  /* 中央だけをくり抜くマスク（継ぎ目なし） */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; /* Chrome/Edge/Safari/iOS */
  mask-composite: exclude; /* Firefox */
  /* モバイルでのズレ対策（独立レイヤー化） */
  will-change: transform;
  transform: translateZ(0);
  contain: paint; /* 余計な再描画を抑える */
}

/* マスク非対応環境では要素を出さない */
@supports not ((-webkit-mask-composite: xor) or (mask-composite: exclude)) {
  .myframe {
    display: none;
  }
}
.scroll-active .myframe {
  height: 100vh; /* fallback */
  height: 100lvh;
}

/*--------------
    MV
--------------*/
header {
  width: 100%;
}
header figure {
  max-width: 1920px;
  margin: auto;
  text-align: center;
}

.fixbtn {
  position: fixed;
  bottom: 1.5vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9999;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .fixbtn {
    gap: 3px;
    bottom: 3.5vw;
  }
}
.fixbtn > a {
  color: #00afc2;
  border: 3px #00afc2 solid;
  box-sizing: border-box;
  border-radius: 9999px;
  position: relative;
  height: 3.2em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 275px;
  background-color: #fff;
  font-size: 1.2rem;
}
.fixbtn > a:after {
  content: "";
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
  height: 8.6602540378px;
  width: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 1200px) {
  .fixbtn > a:after {
    right: 0.3em;
  }
}
.fixbtn > a:hover {
  color: #fff;
  background-color: #61c9d6;
}
.fixbtn > a:hover:after {
  content: none;
}
@media screen and (max-width: 1200px) {
  .fixbtn > a {
    width: 32.6%;
    font-size: 0.75rem;
    border-width: 2px;
  }
  .fixbtn > a:after {
    height: 6.9282032303px;
    width: 8px;
  }
}

/*--------------
    共通
--------------*/
.sec-tit {
  width: 100%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.875rem;
  padding: 0.4em 0;
  background-color: #00afc2;
}
@media screen and (max-width: 1200px) {
  .sec-tit {
    font-size: 1.6rem;
  }
}

/*--------------
    main
--------------*/
.bg {
  background: url("../img/bg.jpg") no-repeat center top;
  background-size: auto;
  background-color: #dff2fc;
}
@media screen and (max-width: 1200px) {
  .bg {
    background: url("../img/sp/bg.jpg") no-repeat center top;
    background-size: contain;
    background-color: #dff2fc;
  }
}

.first {
  padding-top: 90px;
}
@media screen and (max-width: 1200px) {
  .first {
    padding-top: 50px;
  }
}
.first h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #231916;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .first h1 {
    font-size: 1.8rem;
  }
}
.first h1:after {
  content: "";
  position: relative;
  display: block;
  width: 8em;
  height: 3px;
  background-color: #00afc2;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -10px;
}
@media screen and (max-width: 1200px) {
  .first h1:after {
    width: 6em;
  }
}
.first__txt {
  text-align: center;
  line-height: 2;
  letter-spacing: 1px;
  color: #231916;
  padding: 40px 0 30px;
}
@media screen and (max-width: 1200px) {
  .first__txt {
    letter-spacing: 0;
    padding: 30px 0;
  }
}

.area {
  padding-top: 20px;
}
.area__wrap {
  padding: 35px 0 70px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .area__wrap {
    gap: 5px;
    padding: 20px 0 30px;
  }
}
.area__item {
  width: calc((100% - 45px) / 4);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #fff;
  color: #00afc2;
  border: 3px #00afc2 solid;
  box-sizing: border-box;
  border-radius: 9999px;
  position: relative;
  height: 3.2em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.area__item:after {
  content: "";
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
  height: 8.6602540378px;
  width: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 1200px) {
  .area__item:after {
    right: 0.3em;
  }
}
.area__item:hover {
  color: #fff;
  background-color: #61c9d6;
}
.area__item:hover:after {
  content: none;
}
@media screen and (max-width: 1200px) {
  .area__item {
    font-size: 0.9em;
    border: 2px #00afc2 solid;
    width: 8.5em;
    text-align: center;
  }
}
.area__item > span {
  font-size: 1rem;
  display: block;
}
@media screen and (max-width: 1200px) {
  .area__item > span {
    font-size: 0.9em;
  }
}
.area__item.active {
  background-color: #61c9d6;
  color: #fff;
}
.area__item.active:after {
  content: none;
}
.area .linebreak {
  display: none;
}
@media screen and (max-width: 1200px) {
  .area .linebreak {
    display: block;
    flex-basis: 100%;
    height: 0;
  }
}

.pickup {
  padding-top: 20px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .pickup {
    margin-bottom: 40px;
  }
}
.pickup__wrap {
  padding-top: 50px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .pickup__wrap {
    padding-top: 30px;
  }
}
.pickup__wrap.active {
  display: block;
}
.pickup__item {
  background-color: #fff;
  width: 100%;
  padding: 2em;
  box-sizing: border-box;
  margin-bottom: 50px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .pickup__item {
    display: block;
    padding: 1em;
    margin-bottom: 30px;
  }
}
.pickup__img {
  width: 50%;
  padding-right: 2em;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .pickup__img {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
}
.pickup__data {
  width: 50%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .pickup__data {
    width: 100%;
    padding-top: 0.8em;
  }
}
.pickup__data-name {
  color: #00afc2;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.8em;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  .pickup__data-name {
    font-size: 1.3rem;
  }
}
.pickup__data-txt {
  color: #231916;
  line-height: 1.8;
  margin-bottom: 45px;
  flex-grow: 1;
  font-size: 1.1rem;
}
@media screen and (max-width: 1200px) {
  .pickup__data-txt {
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
.pickup__data-txt .chara {
  font-size: 0.85em;
}
.pickup__data-link {
  width: 300px;
  color: #00afc2;
  border: 2px #00afc2 solid;
  box-sizing: border-box;
  border-radius: 9999px;
  position: relative;
  height: 3.2em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pickup__data-link:after {
  content: "";
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
  height: 8.6602540378px;
  width: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 1200px) {
  .pickup__data-link:after {
    right: 0.3em;
  }
}
.pickup__data-link:hover {
  color: #fff;
  background-color: #61c9d6;
}
.pickup__data-link:hover:after {
  content: none;
}
@media screen and (max-width: 1200px) {
  .pickup__data-link {
    width: 13em;
    margin: auto;
  }
}
.pickup__data-link:after {
  width: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.other {
  padding-top: 20px;
  padding-bottom: 85px;
}
@media screen and (max-width: 1200px) {
  .other {
    padding-bottom: 50px;
  }
}
.other__wrap {
  padding-top: 45px;
  flex-flow: row wrap;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 40px;
  width: 100%;
  display: none;
}
@media screen and (max-width: 1200px) {
  .other__wrap {
    -moz-column-gap: 8px;
         column-gap: 8px;
    padding-top: 20px;
  }
}
.other__wrap.active {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.other__item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  width: calc((100% - 50px) / 3);
  background-color: #fff;
  padding: 20px 20px 10px;
}
@media screen and (max-width: 1200px) {
  .other__item {
    width: calc((100% - 8px) / 2);
    padding: 10px;
  }
}
.other__img {
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .other__img {
    text-align: center;
  }
}
.other__data {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.other__data-area {
  background-color: #00afc2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.3em 1.5em;
  margin-bottom: 5px;
  align-self: flex-start;
}
@media screen and (max-width: 1200px) {
  .other__data-area {
    font-size: 0.9rem;
    padding: 0.3em 1em;
  }
}
.other__data-add {
  color: #231916;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .other__data-add {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.other__data-link {
  margin-top: auto;
  width: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}
.other__data-link a {
  width: 200px;
  font-weight: bold;
  color: #00afc2;
  border: 2px #00afc2 solid;
  box-sizing: border-box;
  border-radius: 9999px;
  position: relative;
  height: 2.8em;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.other__data-link a:after {
  content: "";
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
  height: 8.6602540378px;
  width: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 1200px) {
  .other__data-link a:after {
    right: 0.3em;
  }
}
.other__data-link a:hover {
  color: #fff;
  background-color: #61c9d6;
}
.other__data-link a:hover:after {
  content: none;
}
@media screen and (max-width: 1200px) {
  .other__data-link a {
    width: 8.5em;
    height: 2em;
    font-size: 0.9rem;
  }
}
.other__data-link a:after {
  width: 8px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 1200px) {
  .other__data-link a:after {
    width: 6px;
    height: 6.9282032303px;
  }
}

.colorbg {
  background-color: #00afc2;
  padding: 85px 0 75px;
}
@media screen and (max-width: 1200px) {
  .colorbg {
    padding: 40px 0;
  }
}

.point .sec-tit {
  background-color: #fff;
  color: #00afc2;
}
@media screen and (max-width: 1200px) {
  .point .sec-tit {
    line-height: 1.3;
  }
}
.point__txt {
  padding: 35px 0;
  color: #fff;
  text-align: center;
  line-height: 2;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .point__txt {
    padding: 20px 0 30px;
    line-height: 1.8;
    font-size: 1.1rem;
  }
}
.point__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .point__wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }
}
.point__item {
  width: 31.75%;
}
@media screen and (max-width: 1200px) {
  .point__item {
    width: 67%;
  }
}
.point__img {
  margin-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  .point__img {
    margin-bottom: 5px;
  }
}
.point__exp {
  color: #fff;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .point__exp {
    font-size: 0.9em;
  }
}

.mapbg {
  background-color: #fff;
  padding: 80px 0 70px;
}
@media screen and (max-width: 1200px) {
  .mapbg {
    padding: 40px 0;
  }
}

.map__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
}
@media screen and (max-width: 1200px) {
  .map__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.map__img {
  width: 500px;
}
@media screen and (max-width: 1200px) {
  .map__img {
    width: 60%;
    margin-bottom: 20px;
  }
}
.map__linkbox {
  width: calc(100% - 500px);
}
@media screen and (max-width: 1200px) {
  .map__linkbox {
    width: 100%;
  }
}
.map__linkbox-area {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .map__linkbox-area {
    gap: 1em;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.map__linkbox-area:nth-child(1) .map__linkbox-tit {
  background-color: #1e50a2;
}
.map__linkbox-area:nth-child(2) .map__linkbox-tit {
  background-color: #007b43;
}
.map__linkbox-area:nth-child(3) .map__linkbox-tit {
  background-color: #82ae46;
}
.map__linkbox-area:nth-child(4) .map__linkbox-tit {
  background-color: #a1d962;
}
.map__linkbox-area:nth-child(5) .map__linkbox-tit {
  background-color: #fabf14;
}
.map__linkbox-area:nth-child(6) .map__linkbox-tit {
  background-color: #ee7800;
}
.map__linkbox-area:nth-child(7) .map__linkbox-tit {
  background-color: #e95464;
}
.map__linkbox-tit {
  background-color: #1e50a2;
  width: 125px;
  color: #fff;
  text-align: center;
  border-radius: 9999px;
  font-weight: bold;
  padding: 0.3em 0;
}
@media screen and (max-width: 1200px) {
  .map__linkbox-tit {
    width: 6em;
    margin-right: -10px;
  }
}
.map__linkbox-prefbox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .map__linkbox-prefbox {
    -moz-column-gap: 2em;
         column-gap: 2em;
    row-gap: 0.5em;
    width: calc(100% - 6em);
    flex-flow: row wrap;
    align-items: center;
  }
}
.map__linkbox-pref {
  color: #231916;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0;
}
.map__linkbox-pref:not(.nolink):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #00afc2;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.map__linkbox-pref:not(.nolink):hover {
  color: #00afc2;
}
.map__linkbox-pref:not(.nolink):hover:after {
  opacity: 1;
}
.map__linkbox-pref.nolink {
  pointer-events: none;
  cursor: default;
}
.map__linkbox-pref .dropmenubox {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  border: 3px solid #00afc2;
  border-radius: 5px;
  background-color: #fff;
  color: #333333;
  left: 50%;
  translate: -50% 20%;
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .map__linkbox-pref .dropmenubox {
    left: 3em;
  }
}
.map__linkbox-pref .dropmenubox:before, .map__linkbox-pref .dropmenubox:after {
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  width: 30px;
  height: 15px;
  margin: auto;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: "";
}
@media screen and (max-width: 1200px) {
  .map__linkbox-pref .dropmenubox:before, .map__linkbox-pref .dropmenubox:after {
    right: 4em;
  }
}
.map__linkbox-pref .dropmenubox:before {
  background-color: #00afc2;
}
.map__linkbox-pref .dropmenubox:after {
  top: -11px;
  background-color: #fff;
}
.map__linkbox-pref .dropmenubox.active {
  opacity: 1;
  visibility: visible;
}
.map__linkbox-pref .dropmenubox > li {
  width: 100%;
  height: 3em;
  white-space: nowrap;
}
.map__linkbox-pref .dropmenubox > li a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #00afc2;
  padding: 0 3em 0 1.5em;
  position: relative;
}
.map__linkbox-pref .dropmenubox > li a:after {
  content: "";
  position: absolute;
  background: #00afc2;
  height: 10.3923048454px;
  width: 7px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: 1em;
  bottom: 0;
  top: 0;
  margin: auto;
}
.map__linkbox-pref .dropmenubox > li:hover {
  background-color: #61c9d6;
}
.map__linkbox-pref .dropmenubox > li:hover a {
  color: #fff;
}
.map__linkbox-pref .dropmenubox > li:hover a:after {
  content: none;
}
.map__linkbox .dropmenu {
  position: relative;
}
.map__linkbox .dropmenu__switch {
  cursor: pointer;
}

.summarybg {
  background-color: #dff2fc;
  padding: 85px 0;
}
@media screen and (max-width: 1200px) {
  .summarybg {
    padding: 50px 0;
  }
}
.summarybg .summary__box {
  background-color: #fff;
  color: #231916;
  line-height: 2;
  padding: 1.5em;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .summarybg .summary__box {
    padding: 0.8em;
    line-height: 1.8;
  }
}

.footer {
  background-color: #fff;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 65px;
}
.footer__logo {
  width: 345px;
  margin-bottom: 45px;
}
.footer__nav {
  margin-bottom: 20px;
}
.footer__nav > li {
  margin-bottom: 1em;
  text-align: center;
}
.footer__nav > li a {
  color: #00afc2;
  text-align: center;
}
.footer__sns {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 50px;
}
.footer__sns > li {
  width: 2rem;
}
.footer__copy {
  color: #231916;
  text-align: center;
  font-size: 0.875rem;
  padding-bottom: 150px;
}
@media screen and (max-width: 1200px) {
  .footer__copy {
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */