@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@400;700&family=BIZ+UDPGothic:wght@400;700&family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;500;700&display=swap");
.slider_area {
  width: 100%;
  max-width: 2560px;
  margin: auto;
  height: 700px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .slider_area {
    height: 640px;
  }
}
.slider_area .swiper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4800px;
  margin: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .slider_area .swiper {
    width: 768px;
  }
  .slider_area .swiper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.slider_area .frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 700px;
  background: url(../img/top/cover_2560_700.png) center bottom/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .slider_area .frame {
    height: 640px;
  }
}
.slider_area_inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slider_area_inner_inner {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: auto;
  padding-top: 20px;
  box-sizing: border-box;
  position: relative;
}
.slider_area_inner_inner .header {
  box-sizing: border-box;
  padding-left: 38px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .slider_area_inner_inner .header {
    padding-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .slider_area_inner_inner .header {
    padding: 0 10px;
  }
}
.slider_area_inner_inner .header h1 {
  width: 334px;
}
.slider_area_inner_inner .header .form {
  width: 240px;
  height: 48px;
  border-radius: 24px;
  background: #004098;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
}
.slider_area_inner_inner .header .form:hover {
  filter: brightness(115%);
}
.slider_area_inner_inner .header .form ul {
  display: grid;
  grid-template-columns: auto 20px;
  grid-template-rows: 20px;
  justify-self: center;
  align-items: center;
  gap: 0.5em;
}
.slider_area_inner_inner .header .form ul li:first-child {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.slider_area_inner_inner .header .form ul li:last-child {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #fff;
  position: relative;
}
.slider_area_inner_inner .header .form ul li:last-child .triangle {
  height: 0;
  width: 0;
  border-left: 7px solid #004098;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  left: 8px;
  top: 5px;
}
.slider_area_inner_inner .panel {
  position: absolute;
  right: 160px;
  width: 362px;
  bottom: 100px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .slider_area_inner_inner .panel {
    right: 40px;
    bottom: 60px;
  }
}
.slider_area_inner_inner .panel.action {
  animation-name: slideUpAnime; /*アニメーションの定義名*/
  animation-duration: 1s; /*アニメーション変化時間 ※デフォルト*/
  animation-fill-mode: forwards; /*アニメーションの開始と終了時の状態を指定*/
}
@keyframes slideUpAnime {
  0% {
    transform: translateY(-100px);
    opacity: 0;
    @media screen and (max-width: 768px) {
      .slider_area_inner_inner .panel.action {
        transform: translateY(60px);
      }
    }
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.area01 {
  padding: 70px 0;
}
.area01_inner {
  width: 93.75%;
  max-width: 800px;
  margin: auto;
}
.area01_inner .headline {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .area01_inner .headline {
    width: 428px;
    margin: auto;
  }
}
.area01_inner .read {
  width: 100%;
  max-width: 720px;
  margin: 34px auto 0;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .area01_inner .read {
    font-size: 27px;
    margin-top: 50px;
  }
}
.area01_inner .click_a {
  color: #004098;
  font-weight: 700;
}
.area01_inner .click_a .click {
  background: #fff;
  width: 250px;
  height: 52px;
  box-sizing: border-box;
  border: 2px solid #004098;
  padding: 9px 0 0;
  margin: 50px auto 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  .area01_inner .click_a .click {
    width: 375px;
    height: 78px;
    border-width: 3px;
    padding: 13px 0 0;
  }
}
.area01_inner .click_a .click:hover {
  background: #ffc;
}
.area01_inner .click_a .click .click_ico {
  width: 82px;
  position: absolute;
  top: -11px;
  left: -2px;
}
@media screen and (max-width: 640px) {
  .area01_inner .click_a .click .click_ico {
    width: 123px;
    top: -17px;
    left: -3px;
  }
}
.area01_inner .click_a .click_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .area01_inner .click_a .click_inner {
    font-size: 24px;
  }
}

.area02 {
  padding: 50px 0;
  background: #f9f1d9;
}
.area02_inner {
  width: 93.75%;
  max-width: 900px;
  margin: auto;
  background: #fff;
  box-sizing: border-box;
  padding: 40px 0 20px;
}
@media screen and (max-width: 640px) {
  .area02_inner {
    padding: 50px 0 30px;
  }
}
.area02_inner .title .info_ico {
  width: 91px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .area02_inner .title .info_ico {
    width: 136.5px;
  }
}
.area02_inner .title .info_title {
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .area02_inner .title .info_title {
    font-size: 33px;
  }
}
.area02_inner #newsWrap {
  width: 93.75%;
  max-width: 800px;
  margin: 30px auto 0;
  padding: 30px 0;
  border: dotted #61754e;
  border-width: 2px 0;
}
@media screen and (max-width: 640px) {
  .area02_inner #newsWrap {
    border-width: 3px 0;
  }
}
.area02_inner #newsWrap #newsList {
  --red: #ea5550;
  width: 93.75%;
  max-width: 600px;
  margin: auto;
}
.area02_inner #newsWrap #newsList .date {
  font-size: 12px;
  color: var(--red);
}
@media screen and (max-width: 640px) {
  .area02_inner #newsWrap #newsList .date {
    font-size: 18px;
  }
}
.area02_inner #newsWrap #newsList .title {
  font-size: 20px;
  line-height: 1.5;
  margin-top: 0.375em;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .area02_inner #newsWrap #newsList .title {
    font-size: 30px;
  }
}
.area02_inner #newsWrap #newsList .title a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}
.area02_inner #newsWrap #newsList .comment {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 0.5em;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .area02_inner #newsWrap #newsList .comment {
    font-size: 21px;
  }
}
.area02_inner .backnumber {
  width: 90%;
  max-width: 800px;
  margin: 1em auto 0;
}
@media screen and (max-width: 640px) {
  .area02_inner .backnumber {
    font-size: 24px;
  }
}
.area02_inner .backnumber a {
  display: grid;
  grid-template-columns: auto 20px;
  grid-template-rows: 20px;
  gap: 12px;
  justify-content: end;
  color: #004098;
}
@media screen and (max-width: 640px) {
  .area02_inner .backnumber a {
    grid-template-columns: auto 30px;
    grid-template-rows: 30px;
  }
}
.area02_inner .backnumber a:hover {
  text-decoration: underline;
}
.area02_inner .backnumber a .item01 {
  font-family: "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 20px;
}
@media screen and (max-width: 640px) {
  .area02_inner .backnumber a .item01 {
    line-height: 30px;
  }
}
.area02_inner .backnumber a .item02 {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #00ac97;
  position: relative;
  padding: 0;
  margin-top: -1px;
}
@media screen and (max-width: 640px) {
  .area02_inner .backnumber a .item02 {
    height: 30px;
    border-radius: 15px;
  }
}
.area02_inner .backnumber a .item02 .triangle {
  height: 0;
  width: 0;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  left: 8px;
  top: 5px;
}
@media screen and (max-width: 640px) {
  .area02_inner .backnumber a .item02 .triangle {
    border-left: 11px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    position: absolute;
    left: 11px;
    top: 7px;
  }
}

.area03 {
  padding: 50px 0 70px;
  background: url(../img/top/bg03.png);
}
@media screen and (max-width: 768px) {
  .area03 {
    padding: 50px 0 70px;
  }
}
.area03_inner {
  width: 93.75%;
  margin: auto;
}
.area03_inner .icon {
  width: 90px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .area03_inner .icon {
    width: 135px;
  }
}
.area03_inner .support_title {
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  text-align: center;
  font-size: 22px;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .area03_inner .support_title {
    font-size: 33px;
  }
}
.area03_inner .info_area {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area {
    grid-template-columns: 600px;
    gap: 10px;
  }
}
.area03_inner .info_area .items {
  width: 100%;
  height: 300px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items {
    height: inherit;
    border-radius: 0;
  }
}
.area03_inner .info_area .items:nth-child(1) {
  background: #77aede;
}
.area03_inner .info_area .items:nth-child(2) {
  background: #f4a57a;
}
.area03_inner .info_area .items:nth-child(3) {
  background: #a9d06b;
}
.area03_inner .info_area .items_inner {
  text-align: center;
  position: relative;
}
.area03_inner .info_area .items_inner .first {
  font-family: "Kaisei Opti", serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items_inner .first {
    width: 600px;
  }
}
.area03_inner .info_area .items_inner .first .close_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items_inner .first .close_btn {
    display: block;
    position: absolute;
    right: 0 !important;
    top: 0;
    width: 70px;
    height: 100%;
    transform: rotate(0);
    transition: all 0.4s;
  }
}
.area03_inner .info_area .items_inner .first.open {
  position: relative;
}
.area03_inner .info_area .items_inner .first.open .close_btn {
  transform: rotate(180deg);
}
.area03_inner .info_area .items_inner .column {
  position: relative;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items_inner .column {
    margin: inherit;
    padding: 10px 20px 20px;
    display: none;
  }
}
.area03_inner .info_area .items_inner .column .text {
  line-height: 1.625;
  height: 130px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items_inner .column .text {
    height: inherit;
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .area03_inner .info_area .items_inner .column .text {
    font-size: 24px;
  }
}
.area03_inner .info_area .items_inner .column .click_a {
  display: block;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 100%);
  color: #004098;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items_inner .column .click_a {
    position: static;
    bottom: inherit;
    left: inherit;
    transform: none;
    margin-top: 1.5em;
  }
}
.area03_inner .info_area .items_inner .column .click_a .click {
  background: #fff;
  width: 250px;
  height: 52px;
  box-sizing: border-box;
  border: 2px solid #004098;
  padding: 9px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .area03_inner .info_area .items_inner .column .click_a .click {
    margin: auto;
  }
}
@media screen and (max-width: 640px) {
  .area03_inner .info_area .items_inner .column .click_a .click {
    width: 375px;
    height: 78px;
    border-width: 3px;
    padding: 13px 0 0;
  }
}
.area03_inner .info_area .items_inner .column .click_a .click:hover {
  background: #ffc;
}
.area03_inner .info_area .items_inner .column .click_a .click .click_ico {
  width: 82px;
  position: absolute;
  top: -11px;
  left: -2px;
}
@media screen and (max-width: 640px) {
  .area03_inner .info_area .items_inner .column .click_a .click .click_ico {
    width: 123px;
    top: -17px;
    left: -3px;
  }
}
.area03_inner .info_area .items_inner .column .click_a .click_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 640px) {
  .area03_inner .info_area .items_inner .column .click_a .click_inner {
    font-size: 24px;
  }
}
.area03_inner .info_area .items_inner .column .click_a .click_inner .arrow {
  position: absolute;
  width: 20px;
  right: 30px;
  top: 50%;
  transform: translateY(-55%);
}
@media screen and (max-width: 640px) {
  .area03_inner .info_area .items_inner .column .click_a .click_inner .arrow {
    width: 30px;
  }
}
.area03_inner .visit {
  margin: 110px auto 0;
  width: 350px;
  height: 40px;
  position: relative;
  background: #f09abf;
}
.area03_inner .visit:hover {
  filter: brightness(110%);
}
@media screen and (max-width: 768px) {
  .area03_inner .visit {
    margin-top: 50px;
  }
}
@media screen and (max-width: 640px) {
  .area03_inner .visit {
    width: 525px;
    height: 60px;
  }
}
.area03_inner .visit a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 20px;
  place-content: center;
  place-items: center;
  gap: 0.5em;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area03_inner .visit a {
    grid-template-columns: auto 30px;
    font-size: 24px;
  }
}

.area04 {
  box-sizing: border-box;
  padding-top: 90px;
  height: 440px;
  background: url(../img/top/bg01.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .area04 {
    background-image: url(../img/top/bg01s.jpg);
    height: 660px;
    padding-top: 60px;
  }
}
.area04_inner {
  width: 93.75%;
  max-width: 920px;
  margin: auto;
}
.area04_inner .box {
  box-sizing: border-box;
  width: 100%;
  max-width: 660px;
  background: rgba(255, 255, 255, 0.75);
  padding: 10px;
  --yellow: #fabf13;
}
@media screen and (max-width: 768px) {
  .area04_inner .box {
    margin: auto;
  }
}
@media screen and (max-width: 640px) {
  .area04_inner .box {
    padding: 15px;
  }
}
.area04_inner .box_inner {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--yellow);
  padding: 20px 0 12px;
}
@media screen and (max-width: 640px) {
  .area04_inner .box_inner {
    border-width: 3px;
    padding: 30px 0 18px;
  }
}
.area04_inner .box_inner .title {
  width: 414px;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .area04_inner .box_inner .title {
    width: 532px;
  }
}
.area04_inner .box_inner .copy {
  margin-top: 1em;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .area04_inner .box_inner .copy {
    font-size: 20px;
  }
}
.area04_inner .box_inner .btn {
  width: 240px;
  height: 30px;
  border-radius: 15px;
  background: var(--yellow);
  margin: 1.25em auto 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  .area04_inner .box_inner .btn {
    font-size: 24px;
    width: 360px;
    height: 45px;
    border-radius: 22.5px;
  }
}
.area04_inner .box_inner .btn:hover {
  filter: brightness(110%);
}
.area04_inner .box_inner .btn a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 20px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area04_inner .box_inner .btn a {
    grid-template-columns: auto 30px;
    font-size: 21px;
  }
}

.area05 {
  background: url(../img/top/bg02.jpg) center center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .area05 {
    height: 714px;
    position: relative;
  }
}
.area05_inner {
  width: 100%;
  max-width: 1085px;
  height: 440px;
  margin: auto;
  display: grid;
  grid-template-columns: 725px 360px;
  grid-template-rows: 440px;
}
@media screen and (max-width: 1024px) {
  .area05_inner {
    width: 93.75%;
    margin: auto;
    grid-template-columns: 1fr 360px;
  }
}
@media screen and (max-width: 768px) {
  .area05_inner {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 364px;
    display: block;
  }
}
.area05_inner .img {
  align-self: end;
}
@media screen and (max-width: 768px) {
  .area05_inner .img {
    position: absolute;
    width: 584px;
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
  }
}
.area05_inner .copy {
  align-self: center;
  width: 360px;
  height: 360px;
  border-radius: 180px;
  background: rgba(241, 156, 166, 0.7);
  display: grid;
  grid-template-columns: auto;
  place-content: center;
  place-items: center;
  padding-top: 0.75em;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .area05_inner .copy {
    position: absolute;
    right: inherit;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }
}
.area05_inner .copy .h2 {
  display: grid;
  grid-template-columns: auto 17px;
  gap: 20px;
  align-items: center;
}
.area05_inner .copy .h2 .arrow {
  transform: translateX(0);
  transition: all 0.4s;
}
@media screen and (max-width: 640px) {
  .area05_inner .copy .h2 {
    grid-template-columns: auto 21px;
    gap: 24px;
  }
}
.area05_inner .copy .h2 h2 {
  font-size: 40px;
  color: #004098;
}
@media screen and (max-width: 640px) {
  .area05_inner .copy .h2 h2 {
    font-size: 48px;
  }
}
.area05_inner .copy .h2:hover .arrow {
  transform: translateX(50%);
}
.area05_inner .copy .text {
  margin-top: 1.25em;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .area05_inner .copy .text {
    font-size: 30px;
    margin-top: 0.75em;
  }
}

.access {
  padding: 60px 0;
  background: #c5d0e1;
}
@media screen and (max-width: 640px) {
  .access {
    padding: 90px 0;
  }
}
.access_inner {
  width: 93.75%;
  max-width: 1080px;
  height: 360px;
  margin: auto;
  position: relative;
}
.access_inner iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.access_inner .title {
  font-size: 30px;
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translate(-50%, -100%);
}
@media screen and (max-width: 640px) {
  .access_inner .title {
    font-size: 45px;
    top: -20px;
  }
}
.access_inner .bus_stop {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 360px;
  height: 60px;
  border-radius: 30px;
  background: #00ac97;
}
@media screen and (max-width: 640px) {
  .access_inner .bus_stop {
    width: 540px;
    height: 90px;
    border-radius: 45px;
  }
}
.access_inner .bus_stop:hover {
  filter: brightness(110%);
}
.access_inner .bus_stop a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 26px auto;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 640px) {
  .access_inner .bus_stop a {
    grid-template-columns: 39px auto;
    gap: 18px;
  }
}
.access_inner .bus_stop a .bus_info {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  .access_inner .bus_stop a .bus_info {
    font-size: 21px;
  }
}/*# sourceMappingURL=style.css.map */