@charset "UTF-8";
/* ------------------------------------------
アニメーション
------------------------------------------- */
/* タイトルスライドイン
========================================= */
.slide-in {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.slide-in_inner {
  display: inline-block;
  vertical-align: top;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/* svg 線を描くアニメーション */
.stroke path {
  stroke: transparent;
}

.is-stroke path {
  -webkit-animation: stroke 3s ease-in-out forwards;
          animation: stroke 3s ease-in-out forwards;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 2.5;
}

@-webkit-keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 2000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ぼかしフェードイン
======================================== */
.blur {
  opacity: 0;
}

.is-blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: translate(20px, -20px) scale(1.02);
            transform: translate(20px, -20px) scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
/* ふわふわ
======================================== */
.anime-upDown {
  -webkit-animation: 3s upDown infinite;
          animation: 3s upDown infinite;
}

@-webkit-keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* フェードイン（基本）
======================================== */
.fadeIn, .fadeUpDown, .fadeLeftRight, .fadeRightLeft, .fadeInOpacity, .fv_fadeRightLeft, .fv_fadeInOpacity,
.fadeInSP, .fadeUpDownSP, .fadeLeftRightSP, .fadeRightLeftSP {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.fadeIn_PC_TB {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}
@media (max-width: 768px) {
  .fadeIn_PC_TB {
    opacity: 1;
  }
}

.is-fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeInSP {
  -webkit-animation-name: fadeInAnimeSP;
          animation-name: fadeInAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDown {
  -webkit-animation-name: fadeUpDownAnime;
          animation-name: fadeUpDownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeUpDownSP {
  -webkit-animation-name: fadeUpDownAnimeSP;
          animation-name: fadeUpDownAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpDownAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.is-fadeLeftRight {
  -webkit-animation-name: fadeLeftRightAnime;
          animation-name: fadeLeftRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeLeftRightSP {
  -webkit-animation-name: fadeLeftRightAnimeSP;
          animation-name: fadeLeftRightAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftRightAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeft {
  -webkit-animation-name: fadeRightLeftAnime;
          animation-name: fadeRightLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnime {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeRightLeftSP {
  -webkit-animation-name: fadeRightLeftAnimeSP;
          animation-name: fadeRightLeftAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightLeftAnimeSP {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
  }
  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.is-fadeInOpacity {
  -webkit-animation-name: fadeInOpacityAnime;
          animation-name: fadeInOpacityAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInOpacityAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* フェードイン（時間差）
======================================== */
.delayScroll > * {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpSP {
  -webkit-animation-name: fadeUpAnimeSP;
          animation-name: fadeUpAnimeSP;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnimeSP {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*　遅延時間
======================================== */
.delay-time_05s {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time_1s {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_2s {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time_3s {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.delay-time_n1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time_n2 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time_n3 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.delay-time_n4 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

@font-face {
  font-family: fot-udkakugo-large-pr6n;
  font-weight: 400;
  src: url("../fonts/FOT-UDKakugo_large_R.woff2") format("woff2");
}
@font-face {
  font-family: fot-udkakugo-large-pr6n;
  font-weight: 500;
  src: url("../fonts/FOT-UDKakugo_large_M.woff2") format("woff2");
}
@font-face {
  font-family: fot-udkakugo-large-pr6n;
  font-weight: 600;
  src: url("../fonts/FOT-UDKakugo_large_DB.woff2") format("woff2");
}
@font-face {
  font-family: fot-udkakugo-large-pr6n;
  font-weight: 700;
  src: url("../fonts/FOT-UDKakugo_large_B.woff2") format("woff2");
}
@font-face {
  font-family: sawarabi-mincho;
  font-weight: 500;
  src: url("../fonts/sawarabi_mincho_M.woff2") format("woff2");
}
html {
  margin-top: 0 !important;
}

body {
  font-family: fot-udkakugo-large-pr6n, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.111vw, 16px);
  color: #3C3C3C;
  background-color: #EAEEF2;
  line-height: 1.875;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
body h1, body h2, body h3 {
  font-weight: 600;
}

main {
  overflow: hidden;
  margin-top: 186px;
  position: relative;
}
@media (max-width: 1024px) {
  main {
    margin-top: 80px;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #3C3C3C;
}

h2, h3, h4, h5, h6 {
  font-size: 16px;
}

li {
  list-style: none;
}

img, video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: middle;
}

/* utility 
====================================== */
@media (max-width: 1280px) {
  .xl_only {
    display: none;
  }
}

@media (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.tb_only {
  display: none;
}
@media (max-width: 1024px) {
  .tb_only {
    display: block;
  }
}
@media (max-width: 768px) {
  .tb_only {
    display: none;
  }
}

@media (max-width: 768px) {
  .pc_tb {
    display: none;
  }
}

.tb_sp {
  display: none;
}
@media (max-width: 1024px) {
  .tb_sp {
    display: block;
  }
}

.full-size {
  margin: 0 calc(50% - 50vw);
}

.coming {
  text-align: center;
  font-size: 1.333em;
  margin-bottom: 3em;
}

/* section common
====================================== */
.section__inner {
  width: 79.1667%;
  max-width: 1280px;
  margin: auto;
  padding: 7.5em 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 2.5em 0;
    width: 89.75%;
  }
}
.section__inner.--s {
  max-width: 960px;
}
.section__inner.--l {
  max-width: 1520px;
}
.section__inner.--center {
  text-align: center;
}
.section__title {
  position: relative;
  font-size: 2em;
  line-height: 1.333;
  padding-left: 1.25rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.5em;
    margin-bottom: 1.5rem;
  }
}
.section__title.--center {
  text-align: center;
}
.section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #007CCF;
  border-radius: 5px;
}
.section__lead {
  font-weight: 500;
  margin-bottom: 3.125em;
}
@media (max-width: 768px) {
  .section__lead {
    font-size: 0.875em;
  }
}

/* area_map
======================================= */
.area__map-container {
  position: relative;
  margin-bottom: 5em;
}
@media (max-width: 768px) {
  .area__map-container {
    margin-bottom: 2.5em;
  }
}
.area__map-container figure {
  max-width: 608px;
  margin: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .area__map-container figure {
    display: none;
  }
}
.area__map-container figure img.prefecture {
  max-width: 608px;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
}
.area__map-container figure img.prefecture.is-active {
  opacity: 1;
}
@media (max-width: 768px) {
  .area__map-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    max-width: 350px;
    margin: auto;
  }
}
.area__map-item {
  position: absolute;
  height: 50px;
}
@media (max-width: 768px) {
  .area__map-item {
    position: relative;
  }
}
.area__map-item.--01 {
  top: 9%;
  right: 0%;
}
@media (max-width: 768px) {
  .area__map-item.--01 {
    top: inherit;
    right: inherit;
  }
}
.area__map-item.--02 {
  top: 42%;
  right: 7%;
}
@media (max-width: 768px) {
  .area__map-item.--02 {
    top: inherit;
    right: inherit;
  }
}
.area__map-item.--03 {
  top: 27%;
  left: 38%;
}
@media (max-width: 768px) {
  .area__map-item.--03 {
    top: inherit;
    left: inherit;
  }
}
.area__map-item.--04 {
  left: 43%;
  bottom: 3%;
}
@media (max-width: 768px) {
  .area__map-item.--04 {
    left: inherit;
    bottom: inherit;
  }
}
.area__map-item.--05 {
  top: 40%;
  left: 17%;
}
@media (max-width: 768px) {
  .area__map-item.--05 {
    top: inherit;
    left: inherit;
  }
}
.area__map-item.--06 {
  top: 54%;
  left: 7%;
}
@media (max-width: 768px) {
  .area__map-item.--06 {
    top: inherit;
    left: inherit;
  }
}
.area__map-item.--07 {
  right: 5%;
  bottom: 2%;
}
@media (max-width: 768px) {
  .area__map-item.--07 {
    right: inherit;
    bottom: inherit;
  }
}
.area__map-item.--l {
  width: 180px;
}
@media (max-width: 768px) {
  .area__map-item.--l {
    width: 100%;
  }
}
.area__map-item.--m {
  width: 160px;
}
@media (max-width: 768px) {
  .area__map-item.--m {
    width: 100%;
  }
}
.area__map-item.--s {
  width: 141px;
}
@media (max-width: 768px) {
  .area__map-item.--s {
    width: 100%;
  }
}
.area__map-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #007CCF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #007CCF;
  background-color: #fff;
}
.area__map-item a:hover {
  background-color: #EEA70E;
  color: #fff;
}
.area__map-item-text {
  width: calc(100% - 50px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .area__map-item-text {
    width: calc(100% - 35px);
    font-size: 0.875em;
  }
}
.area__map-item-icon {
  width: 50px;
  height: 100%;
  background-color: #007CCF;
  position: relative;
}
@media (max-width: 768px) {
  .area__map-item-icon {
    width: 35px;
  }
}
.area__map-item-icon img {
  width: 0.9375em;
  height: 0.9375em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.area__map-item-icon img.blue {
  display: none;
}

.breadcrumbs {
  width: 100%;
  height: auto;
  font-size: 0.625em;
}
.breadcrumbs.--blue a span {
  color: #007CCF;
  text-decoration: underline;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  padding: 1rem 3.125em;
  line-height: 1;
  color: #ccc;
}
.breadcrumbs .home img {
  display: block;
  width: 13px;
  height: 12px;
}
.breadcrumbs span {
  display: block;
}
.breadcrumbs span[property=name] {
  padding: 0;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ccc;
}

/* e_area
======================================= */
.area__item {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.area__item a:hover .area__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.area__item a:hover .area__item-title {
  background-color: #007CCF;
}
.area__item a:hover .area__item-title-icon {
  background-color: #fff;
}
.area__item a:hover .area__item-title-icon .white {
  display: none;
}
.area__item a:hover .area__item-title-icon .blue {
  display: block;
}
.area__item-image {
  position: relative;
}
.area__item-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.area__item-image img, .area__item-image video, .area__item-image iframe, .area__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.area__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.area__item-cats {
  position: absolute;
  left: 1.875em;
  top: 1.875em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.area__item-cat {
  background-color: #E6F5FF;
  color: #007CCF;
  font-weight: 500;
  border-radius: 5px;
  height: 35px;
  line-height: 35px;
  padding: 0 0.625em;
}
.area__item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.53);
  padding: 1.5625em 1.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.area__item-title-text {
  font-size: 1.5em;
  color: #fff;
}
@media (max-width: 768px) {
  .area__item-title-text {
    font-size: 1.25em;
  }
}

/* column
======================================= */
.column__item {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100% !important;
  border-radius: 12px;
  background-color: #fff;
  overflow: hidden;
}
.column__item a:hover .column__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.column__item a:hover .column__item-title {
  color: #1B357A;
}
.column__item-image {
  overflow: hidden;
  position: relative;
}
.column__item-image::before {
  content: "";
  display: block;
  padding-top: 53.9563%;
}
.column__item-image img, .column__item-image video, .column__item-image iframe, .column__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .column__item-image::before {
    padding-top: 39.667%;
  }
}
.column__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.column__item-contents {
  padding: 1.5em;
}
@media (max-width: 768px) {
  .column__item-contents {
    padding: 1em 1.5em;
  }
}
.column__item-date {
  font-size: 0.8125em;
  color: #EAEEF2;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .column__item-date {
    font-size: 0.75em;
    margin-bottom: 0.5rem;
  }
}
.column__item-title {
  font-size: 1.125em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .column__item-title {
    margin-bottom: 0.5rem;
  }
}
.column__item-text {
  font-size: 0.9375em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .column__item-text {
    font-size: 0.875em;
  }
}
.column__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.column__item-cat {
  font-size: 0.875em;
  color: #1B357A;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  border: 1px solid #1B357A;
  border-radius: 11px;
  padding: 3px 0.75rem;
}
@media (max-width: 768px) {
  .column__item-cat {
    font-size: 0.8125em;
  }
}

/* e_interview
======================================= */
.interview__item {
  width: 100%;
}
.interview__item a:hover .interview__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.interview__item-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}
.interview__item-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.interview__item-image img, .interview__item-image video, .interview__item-image iframe, .interview__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.interview__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.interview__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.interview__item-info.--2 {
  gap: 0;
  margin-bottom: 0;
}
.interview__item-info.--2 > span {
  color: #007CCF;
  font-weight: 400;
}
.interview__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5em 1.25em;
}
.interview__item-cat {
  background-color: #E6F5FF;
  color: #007CCF;
  font-weight: 500;
  border-radius: 5px;
  height: 35px;
  line-height: 35px;
  padding: 0 0.625em;
}
.interview__item-title {
  margin-bottom: 1rem;
}
.interview__item-date {
  font-size: 0.875em;
  color: #aaa;
  font-weight: 400;
}

/* e_news
======================================= */
.news__item:nth-child(n+2) {
  margin-top: 2.5em;
}
.news__item a {
  display: block;
  padding: 0.625em 0;
  border-bottom: 1px dashed #3C3C3C;
}
.news__item a:hover .news__item-title {
  color: #007CCF;
}
.news__item a:hover .news__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news__item.--image a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .news__item.--image a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.news__item.--image a .news__item-image {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.news__item.--image a .news__item-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.news__item.--image a .news__item-image img, .news__item.--image a .news__item-image video, .news__item.--image a .news__item-image iframe, .news__item.--image a .news__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .news__item.--image a .news__item-image {
    width: 100%;
  }
}
.news__item.--image a .news__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news__item.--image a .news__item-contents {
  width: 65%;
}
@media (max-width: 768px) {
  .news__item.--image a .news__item-contents {
    width: 100%;
  }
}
.news__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em 1.25em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 0.75em;
}
.news__item-categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.news__item-category {
  font-size: 0.75em;
  color: #fff;
  padding: 0 1.25em;
  border-radius: 30px;
  background-color: #007CCF;
  font-weight: 400;
}
.news__item-category.--01 {
  background-color: #1B357A;
}
.news__item-category.--02 {
  background-color: #F963A1;
}
.news__item-category.--03 {
  background-color: #EEA70E;
}
.news__item-category.--04 {
  background-color: #EEA70E;
}
.news__item-category.--05 {
  background-color: #49A3BA;
}
.news__item-date {
  line-height: 1.8;
  font-weight: bold;
  color: #007CCF;
}
@media (max-width: 768px) {
  .news__item-date {
    font-size: 0.875em;
  }
}
.news__item-title {
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .news__item-title {
    font-size: 0.875em;
  }
}

/* e_news2
======================================= */
.news2__item {
  width: 100%;
}
.news2__item a:hover .interview__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news2__item-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 1rem;
}
.news2__item-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.news2__item-image img, .news2__item-image video, .news2__item-image iframe, .news2__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news2__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news2__item-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.news2__item-cats {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.25em;
}
.news2__item-cat {
  background-color: #E6F5FF;
  color: #007CCF;
  font-weight: 500;
  border-radius: 5px;
  height: 35px;
  line-height: 35px;
  padding: 0 0.625em;
}
.news2__item-date {
  font-size: 0.875em;
  color: #aaa;
  font-weight: 400;
}

/* options
======================================= */
.option__item a:hover .option__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.option__item a:hover .option__item-title-icon {
  background-color: #fff;
}
.option__item a:hover .option__item-title-icon .white {
  display: none;
}
.option__item a:hover .option__item-title-icon .blue {
  display: block;
}
.option__item-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25em;
  position: relative;
}
.option__item-image::before {
  content: "";
  display: block;
  padding-top: 56%;
}
.option__item-image img, .option__item-image video, .option__item-image iframe, .option__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .option__item-image {
    margin-bottom: 1em;
  }
}
.option__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.option__item-title {
  margin-bottom: 0.75rem;
}
.option__item-title-icon {
  width: 2em;
  height: 2em;
  border: 1px solid #007CCF;
}
.option__item-title-icon img {
  width: 0.75em;
  height: 0.75em;
}
.option__item-title-text {
  color: #007CCF;
  font-weight: 600;
}
.option__item-price {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.option__item-price .yen {
  font-size: 1.5em;
}
.option__item-text {
  line-height: 1.5;
}

/* e_report
======================================= */
.report__item {
  width: 100%;
}
.report__item a:hover .report__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.report__item-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625em 1.25em;
  margin-bottom: 0.5rem;
}
.report__item-tag {
  background-color: #E6F5FF;
  color: #007CCF;
  font-weight: 500;
  border-radius: 5px;
  height: 35px;
  line-height: 35px;
  padding: 0 0.625em;
}
.report__item-date {
  font-size: 0.875em;
  color: #aaa;
  margin-bottom: 0.25rem;
}
.report__item-areas, .report__item-plans {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625em;
}
.report__item-stars {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.25rem;
}
.report__item-stars-title {
  line-height: 1.25;
  font-weight: 600;
}
.report__item-stars .shortcode-star-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
.report__item-stars .dashicons {
  display: block;
  line-height: 1;
}
.report__item-stars .dashicons:nth-child(n+6) {
  display: none;
}
.report__item-stars .dashicons::before {
  font-size: 1.25em;
  display: block;
}
.report__item-stars-num {
  color: #EEA70E;
  font-size: 1.25em;
  line-height: 1;
}
.report__item-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
}
.report__item-image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.report__item-image img, .report__item-image video, .report__item-image iframe, .report__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.report__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* e_schedule
======================================= */
.schedule__item.is-soldOut a {
  cursor: default;
  pointer-events: none;
}
.schedule__item.is-soldOut .schedule__item-btn > span {
  background-color: #aaa;
  border: 2px solid #aaa;
}
.schedule__item a {
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 4.375em 4.1667% 2.875em;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .schedule__item a {
    padding: 2.875em 4.1667% 2.5em;
  }
}
.schedule__item a:hover .schedule__item-btn > span {
  background-color: #fff;
  color: #007CCF;
}
.schedule__item a:hover .schedule__item-btn > span::after {
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
}
.schedule__item-available {
  position: absolute;
  top: 1.25em;
  left: 0;
  font-size: 0.75em;
  font-weight: 400;
  line-height: 2;
  color: #fff;
  padding: 0 0.625rem;
  border-radius: 0 15px 15px 0;
}
.schedule__item-available.is-limited {
  background-color: #EEA70E;
}
.schedule__item-available.is-soldOut {
  background-color: #F963A1;
}
.schedule__item-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.875rem;
}
.schedule__item-date {
  font-size: 2.5em;
  color: #007CCF;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.schedule__item-day {
  line-height: 1;
  margin-bottom: 1.5625rem;
}
.schedule__item-time {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5625rem;
}
.schedule__item-btn {
  width: 250px !important;
  margin: 0 auto;
}

/* headline
========================================= */
.headline {
  position: relative;
  z-index: 0;
  background-color: #007CCF;
}
.headline__inner {
  padding: 0 0 3em;
}
.headline__title {
  font-size: 2em;
  color: #fff;
}
@media (max-width: 768px) {
  .headline__title {
    font-size: 1.5em;
  }
}
.headline__lead {
  margin-top: 1.5rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .headline__lead {
    font-size: 0.875em;
  }
}
.headline__btn {
  margin: 2.1875em auto 0;
}
.headline__btn a {
  border: 2px solid #fff !important;
}

.pagination {
  margin-top: 4em;
}
@media (max-width: 768px) {
  .pagination {
    margin-top: 2em;
  }
}
.pagination .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.pagination .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .page-numbers:hover {
  color: #1B357A;
}
.pagination .page-numbers.current {
  color: #fff;
  border-radius: 20px;
  background-color: #1B357A;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-size: 0.875em;
  letter-spacing: 0.05em;
  width: 5.3125rem;
  line-height: calc(2.5rem - 2px);
  border: 2px solid #1B357A;
  border-radius: 20px;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    font-size: 0;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
  }
}
.pagination .page-numbers.prev::after, .pagination .page-numbers.next::after {
  display: none;
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev::before, .pagination .page-numbers.next::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
  color: #fff;
  background-color: #1B357A;
}
.pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media (max-width: 768px) {
  .pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}
.pagination .page-numbers.prev {
  text-align: right;
}
.pagination .page-numbers.prev::before {
  left: 1rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.pagination .page-numbers.next {
  text-align: left;
}
.pagination .page-numbers.next::before {
  right: 1rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.pagination2 {
  margin-top: 5em;
}
@media (max-width: 768px) {
  .pagination2 {
    margin-top: 2em;
  }
}
.pagination2 .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.pagination2 .page-numbers {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: #EAEEF2;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers:hover {
  color: #1B357A;
}
.pagination2 .page-numbers.current {
  color: #E6F5FF;
}
.pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
  border: 2px solid #1B357A;
  border-radius: 20px;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .pagination2 .page-numbers.prev, .pagination2 .page-numbers.next {
    font-size: 0;
  }
}
.pagination2 .page-numbers.prev::after, .pagination2 .page-numbers.next::after {
  display: none;
}
.pagination2 .page-numbers.prev::before, .pagination2 .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 3px solid #1B357A;
  border-bottom: 3px solid #1B357A;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination2 .page-numbers.prev:hover, .pagination2 .page-numbers.next:hover {
  color: #fff;
  background-color: #1B357A;
}
.pagination2 .page-numbers.prev:hover::before, .pagination2 .page-numbers.next:hover::before {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.pagination2 .page-numbers.prev::before {
  -webkit-transform: translate(-40%, -50%) rotate(135deg);
          transform: translate(-40%, -50%) rotate(135deg);
}
.pagination2 .page-numbers.next::before {
  -webkit-transform: translate(-60%, -50%) rotate(-45deg);
          transform: translate(-60%, -50%) rotate(-45deg);
}

/* contact
======================================= */
.contact {
  padding-bottom: 20em;
  position: relative;
}
@media (max-width: 768px) {
  .contact {
    padding-bottom: 0;
  }
}
.contact__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
@media (max-width: 768px) {
  .contact__bg {
    position: relative;
  }
}
.contact__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 124, 207, 0.6);
}
.contact__inner {
  padding: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
@media (max-width: 768px) {
  .contact__inner {
    width: 100%;
    -webkit-box-shadow: inherit;
            box-shadow: inherit;
  }
}
.contact__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .contact__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__left {
  background-color: #007CCF;
  width: 60%;
  border-radius: 10px 0 0 10px;
  padding: 6.5em 2.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .contact__left {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width: 768px) {
  .contact__left {
    border-radius: 0;
    padding: 3.75em 1.25em;
  }
}
.contact__left-inner {
  max-width: 672px;
  margin: auto;
}
.contact__left-text {
  font-size: 2em;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  margin-bottom: 3.125rem;
}
@media (max-width: 1024px) {
  .contact__left-text {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact__left-text {
    font-size: 1.25em;
  }
}
@media (max-width: 1024px) {
  .contact__left-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.contact__left-item {
  max-width: 480px;
  height: 70px !important;
}
.contact__left-item a {
  font-size: 1.25em;
  border-radius: 10px;
  border: 1px solid #fff !important;
  border-radius: 10px !important;
}
@media (max-width: 768px) {
  .contact__left-item a {
    font-size: 1rem !important;
    gap: 10px;
  }
}
.contact__left-item a:hover {
  background-color: #EEA70E !important;
  color: #fff !important;
}
.contact__left-item.--tel {
  height: auto;
}
.contact__left-item.--tel a {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625em;
  padding: 0.5em 1em;
}
@media (max-width: 768px) {
  .contact__left-item.--tel a {
    gap: 0;
  }
}
.contact__left-item.--tel a img {
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .contact__left-item.--tel a img {
    width: 2.25em;
    height: 1.8125em;
  }
}
.contact__left-item.--tel a span {
  display: block;
}
.contact__left-item.--tel a span.upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625em;
}
@media (max-width: 768px) {
  .contact__left-item.--tel a span.middle {
    font-size: 1em;
  }
}
.contact__left-item.--tel a span.small {
  font-size: 0.75em;
}
.contact__left-item.--tel a::after {
  display: none;
}
.contact__left-item:nth-child(n+2) {
  margin-top: 2.1875em;
}
.contact__right {
  width: 40%;
  padding: 3.75em 2em;
}
@media (max-width: 1024px) {
  .contact__right {
    width: 100%;
    padding: 3.5em 1.25em 3em;
  }
}
.contact__right-inner {
  max-width: 480px;
  margin: auto;
}
.contact__right-text {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.667;
  padding: 0 1rem 1.75rem;
  border-bottom: 1px dashed #3C3C3C;
}
@media (max-width: 1024px) {
  .contact__right-text {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .contact__right-text {
    font-size: 1.25em;
  }
}
.contact__right-list {
  padding: 0 1em;
}
@media (max-width: 1024px) {
  .contact__right-list {
    max-width: 400px;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .contact__right-list {
    max-width: 350px;
  }
}
.contact__right-item {
  margin-top: 3.125em;
}
@media (max-width: 768px) {
  .contact__right-item {
    margin-top: 1.875em;
  }
}
.contact__right-item-title-icon {
  border: 1px solid #007CCF;
}
@media (max-width: 1280px) {
  .contact__right-item-title-icon {
    width: 2.5rem !important;
    height: 2.5rem !important;
  }
}
@media (max-width: 1280px) {
  .contact__right-item-title-icon img {
    width: 0.875rem !important;
    height: 0.875rem !important;
  }
}
.contact__right-item-title-text {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .contact__right-item-title-text {
    font-size: 1em;
  }
}

.ending.is-front .ending__inner {
  padding: 1.25em 5% 1.25em 6.8%;
}
@media (max-width: 1280px) {
  .ending.is-front .ending__inner {
    padding: 1.25em 5%;
  }
}
@media (max-width: 1024px) {
  .ending.is-front .ending__inner {
    padding: 2.1875em 1em 2em;
  }
}
.ending.is-front .ending__title {
  font-size: 2em;
}
@media (max-width: 768px) {
  .ending.is-front .ending__title {
    font-size: 1.1875rem;
  }
}
.ending.is-front .ending__left {
  width: 46.5%;
}
@media (max-width: 1024px) {
  .ending.is-front .ending__left {
    width: 100%;
  }
}
.ending.is-front .ending__right {
  width: 41.5%;
}
@media (max-width: 1024px) {
  .ending.is-front .ending__right {
    width: 100%;
    max-width: 465px;
  }
}
.ending__inner {
  padding: 1.5em 1.875em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/top/plans/lower_bg.png) no-repeat center center/cover, #fff;
  border-radius: 20px;
  border: 2px solid #007CCF;
}
@media (max-width: 1280px) {
  .ending__inner {
    padding: 1.25em 5%;
  }
}
@media (max-width: 1024px) {
  .ending__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.1875em 1em 2em;
    gap: 1.875rem;
  }
}
@media (max-width: 768px) {
  .ending__inner {
    background: url(../img/top/plans/lower_bg-sp.png) no-repeat center center/cover, #fff;
  }
}
.ending__left {
  width: 49.1%;
}
@media (max-width: 1024px) {
  .ending__left {
    width: 100%;
  }
}
.ending__title {
  font-size: 1.5em;
  color: #007CCF;
  line-height: 1.25;
  white-space: nowrap;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .ending__title {
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
  }
}
.ending__text {
  font-weight: 500;
}
@media (max-width: 768px) {
  .ending__text {
    line-height: 1.714;
    font-size: 0.875em;
  }
}
.ending__right {
  width: 46.6%;
}
@media (max-width: 1024px) {
  .ending__right {
    width: 100%;
    max-width: 465px;
  }
}
.ending__right-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 1.5625em;
  gap: 5%;
}
@media (max-width: 1024px) {
  .ending__right-list {
    max-width: 330px;
  }
}
@media (max-width: 768px) {
  .ending__right-list {
    margin-bottom: 1.875em;
  }
}
@media (max-width: 1024px) {
  .ending__right-item {
    width: 93px;
  }
}
@media (max-width: 768px) {
  .ending__btn {
    margin: auto;
  }
}

.footer {
  background-color: #fff;
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    margin-bottom: 100px;
  }
}
.footer__inner {
  position: static;
  padding-bottom: 2em;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-top: 3.75em;
    max-width: 350px !important;
  }
}
.footer__pageTop {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 3.125em;
  width: 5em;
  height: 5em;
}
@media (max-width: 768px) {
  .footer__pageTop {
    width: 3.75rem;
    height: 3.75rem;
    right: 1.2rem;
  }
}
.footer__pageTop a {
  display: block;
  border: 2px solid #fff;
  background-color: #3C3C3C;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s;
}
.footer__pageTop a::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 41%;
  width: 1em;
  height: 1em;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__pageTop a::before {
    width: 0.875rem;
    height: 0.875rem;
    left: 38%;
  }
}
.footer__pageTop a:hover {
  background-color: #fff;
  border: 2px solid #3C3C3C;
}
.footer__pageTop a:hover::before {
  border-left: 3px solid #3C3C3C;
  border-top: 3px solid #3C3C3C;
}
.footer__upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8%;
  margin-bottom: 5em;
}
@media (max-width: 1024px) {
  .footer__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer__upper {
    margin-bottom: 3.2em;
  }
}
.footer__upper-left {
  width: 35%;
  max-width: 432px;
}
@media (max-width: 1024px) {
  .footer__upper-left {
    width: 100%;
    margin-bottom: 2.5em;
  }
}
@media (max-width: 768px) {
  .footer__upper-left {
    margin-bottom: 0;
  }
}
.footer__upper-left-list {
  margin-bottom: 2.625em;
}
.footer__upper-left-item {
  line-height: 1;
}
.footer__upper-left-item.--outer a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer__upper-left-item.--outer a::after {
  content: "";
  width: 0.875em;
  height: 0.875em;
  display: block;
  background: url(../img/common/footer/icon_outer-black.svg) no-repeat center center/contain;
}
.footer__upper-left-item a {
  display: block;
  font-weight: 400;
  padding: 0.5em 0;
}
@media (max-width: 768px) {
  .footer__upper-left-item a {
    font-size: 0.875em;
  }
}
.footer__upper-left-item:nth-child(n+2) {
  margin-top: 0.875em;
}
.footer__upper-right {
  width: 75%;
  max-width: 750px;
}
@media (max-width: 1024px) {
  .footer__upper-right {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer__upper-right {
    display: none;
  }
}
.footer__logo {
  max-width: 238px;
  margin-bottom: 3.125em;
}
.footer__company {
  font-weight: 600;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .footer__company {
    font-size: 0.875em;
  }
}
.footer__info {
  line-height: 2;
  font-weight: 600;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .footer__info {
    font-size: 0.875em;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4.5em;
}
@media (max-width: 1024px) {
  .footer__sns {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2.5em;
  }
}
@media (max-width: 768px) {
  .footer__sns {
    gap: 2em;
  }
}
.footer__sns-icon {
  width: 3.75rem;
  height: 3.75rem;
}
@media (max-width: 768px) {
  .footer__sns-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.footer__sns-icon a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__sns-icon a:hover {
  opacity: 0.7;
}
.footer__jpx {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
}
.footer__jpx-image {
  width: 3.5em;
}
.footer__jpx-text {
  width: calc(100% - 3.5em - 1.25em);
  font-size: 0.75em;
  font-weight: 400;
  line-height: 2;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 7.25%;
}
@media (max-width: 1024px) {
  .footer__columns {
    grid-auto-flow: column;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__columns {
    margin-bottom: 1.5em;
  }
}
.footer__link:nth-child(n+2) {
  margin-top: 0.875rem;
}
.footer__link.pc_mt0 {
  margin-top: 0;
}
.footer__link-title {
  line-height: 1;
  margin-bottom: 0.875rem;
}
@media (max-width: 768px) {
  .footer__link-title {
    margin-bottom: 0.5rem;
  }
}
.footer__link-title a {
  display: block;
  font-weight: 600;
  padding: 0.5rem 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__link-title a:hover {
  color: #007CCF;
}
.footer__link-item {
  line-height: 1;
  margin-bottom: 0.875rem;
}
@media (max-width: 768px) {
  .footer__link-item {
    margin-bottom: 0;
    padding: 0.7rem 0;
  }
}
.footer__link-item.--home a {
  padding: 0.5rem 0;
  font-weight: 600;
}
.footer__link-item.--home a::before {
  display: none;
}
.footer__link-item.--outer a::after {
  content: "";
  width: 0.875em;
  height: 0.875em;
  margin-left: 0.5em;
  display: block;
  background: url(../img/common/footer/icon_outer-black.svg) no-repeat center center/contain;
}
.footer__link-item:last-child {
  margin-bottom: 0;
}
.footer__link-item a {
  padding: 0.5rem 0;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.footer__link-item a:hover {
  color: #007CCF;
}
.footer__link-item a::before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #007CCF;
  display: inline-block;
  margin-right: 1em;
}
.footer__group-title {
  font-size: 1.25em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3em;
  padding-bottom: 1em;
  border-bottom: 1.5px solid #007CCF;
}
@media (max-width: 768px) {
  .footer__group-title {
    font-size: 1em;
    margin-bottom: 1.5em;
  }
}
.footer__middle {
  padding: 4em 0;
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  .footer__middle {
    padding: 2.5em 0;
    margin-bottom: 2em;
  }
}
.footer__middle-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2em;
}
@media (max-width: 1024px) {
  .footer__middle-inner {
    padding: 0;
  }
}
.footer__group-sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 2em;
  padding-bottom: 4em;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .footer__group-sites {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .footer__group-sites {
    gap: 2.5em 1.5em;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .footer__group-sites {
    padding-bottom: 2em;
    gap: 2em;
  }
}
.footer__group-category-title {
  font-size: 0.9375em;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .footer__group-category-title {
    font-size: 0.875em;
  }
}
.footer__group-item {
  line-height: 1;
}
.footer__group-item:nth-child(n+2) {
  margin-top: 0.75em;
}
.footer__group-item a {
  display: inline-block;
  font-size: 0.875em;
  font-weight: 400;
  padding: 0.25em 0;
  color: #007CCF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .footer__group-item a {
    font-size: 0.8125em;
  }
}
.footer__group-item a:hover {
  opacity: 0.7;
}
.footer__banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5em;
  max-width: 1360px;
  margin: auto;
}
@media (max-width: 768px) {
  .footer__banners {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2em 0.625em;
  }
}
.footer__banner a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__banner a:hover {
  opacity: 0.7;
}
.footer__copy {
  font-size: 0.625em;
  font-weight: 400;
  text-align: center;
  color: #fff;
  background-color: #007CCF;
  padding: 1.25em;
}
.footer__fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
  background-color: #1B357A;
  padding: 10px 5px 5px;
  display: none;
}
@media (max-width: 768px) {
  .footer__fixed {
    display: block;
  }
}
.footer__fixed-text {
  text-align: center;
  color: #fff;
  font-size: 0.9375em;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.footer__fixed-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.footer__fixed-link {
  width: 50%;
  height: 55px;
}
.footer__fixed-link a, .footer__fixed-link > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  height: 100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.footer__fixed-link a .upper, .footer__fixed-link > span .upper {
  font-size: 0.75em;
}
.footer__fixed-link a .lower, .footer__fixed-link > span .lower {
  font-size: 0.625em;
}
.footer__fixed-link.--tel a {
  background-color: #F963A1;
  gap: 5px;
}
.footer__fixed-link.--tel a img {
  width: 2rem;
  height: 1.5625rem;
}
.footer__fixed-link.--contact a, .footer__fixed-link.--contact > span {
  background-color: #EEA70E;
  gap: 0.5rem;
}
.footer__fixed-link.--contact a img, .footer__fixed-link.--contact > span img {
  width: 1.25rem;
  height: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 186px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1024px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  height: 100%;
}
.header__upper {
  height: 106px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 6px solid #007CCF;
  position: relative;
  padding-left: 2.6vw;
}
@media (max-width: 1024px) {
  .header__upper {
    height: 80px;
  }
}
.header__upper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 21.875%;
  height: 6px;
  background-color: #1B357A;
}
@media (max-width: 1024px) {
  .header__upper::before {
    width: 100px;
  }
}
.header__upper-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5vw;
}
@media (max-width: 768px) {
  .header__logo {
    width: 160px;
  }
}
.header__logo a {
  display: block;
  width: clamp(160px, 21vw, 303px);
}
.header__logo a:hover {
  opacity: 0.7;
}
.header__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.333vw;
}
.header__info-btn > a, .header__info-btn > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.header__info-btn.--sitemap {
  width: 160px;
  height: 40px;
}
@media (max-width: 1280px) {
  .header__info-btn.--sitemap {
    display: none;
  }
}
.header__info-btn.--sitemap a {
  font-weight: 600;
  gap: 9.7px;
  background-color: #007CCF;
  height: 100%;
  border: 1px solid #007CCF;
  border-radius: 20px;
  color: #fff;
}
.header__info-btn.--sitemap a:hover {
  background-color: #fff;
  color: #007CCF;
}
.header__info-btn.--sitemap a:hover img.blue {
  display: block;
}
.header__info-btn.--sitemap a:hover img.white {
  display: none;
}
.header__info-btn.--sitemap img {
  width: 1.081875em;
  height: 1.125em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__info-btn.--sitemap img.blue {
  display: none;
}
.header__info-btn.--contact {
  width: 240px;
  height: 40px;
}
@media (max-width: 1024px) {
  .header__info-btn.--contact {
    display: none;
  }
}
.header__info-btn.--contact > a, .header__info-btn.--contact > span {
  font-weight: 600;
  gap: 7px;
  height: 100%;
  background-color: #fff;
  border: 1px solid #007CCF;
  border-radius: 20px;
  color: #007CCF;
}
.header__info-btn.--contact > a:hover, .header__info-btn.--contact > span:hover {
  background-color: #007CCF;
  color: #fff;
}
.header__info-btn.--contact > a:hover img.white, .header__info-btn.--contact > span:hover img.white {
  display: block;
}
.header__info-btn.--contact > a:hover img.blue, .header__info-btn.--contact > span:hover img.blue {
  display: none;
}
.header__info-btn.--contact img {
  width: auto;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__info-btn.--contact img.white {
  display: none;
}
@media (max-width: 1024px) {
  .header__info-btn.--line {
    width: 111px;
  }
}
.header__info-btn.--line a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__info-btn.--line a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .header__info-btn.--tel {
    display: none;
  }
}
.header__info-btn.--tel a {
  gap: 9px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__info-btn.--tel a:hover {
  opacity: 0.7;
}
.header__info-btn.--tel img {
  width: 41px;
  height: 33px;
}
.header__info-btn.--tel .num {
  font-size: 1.5em;
  font-weight: 600;
}
.header__info-btn.--tel .hours {
  font-size: 0.75em;
  font-weight: 400;
  line-height: 1.25;
}
.header__btn {
  cursor: pointer;
  position: relative;
  z-index: 8;
  width: 100px;
  height: 100px;
  background: #1B357A;
}
@media (max-width: 1024px) {
  .header__btn {
    width: 74px;
    height: 74px;
  }
}
@media (max-width: 1280px) {
  .header__btn {
    display: block;
  }
}
.header__btn-bar {
  position: absolute;
  left: 50%;
  width: 37.5px;
  height: 3px;
  background-color: #fff;
  display: block;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  .header__btn-bar {
    width: 27.75px;
  }
}
.header__btn-bar:nth-child(1) {
  top: 30px;
}
@media (max-width: 1024px) {
  .header__btn-bar:nth-child(1) {
    top: 20px;
  }
}
.header__btn-bar:nth-child(2) {
  top: 40px;
}
@media (max-width: 1024px) {
  .header__btn-bar:nth-child(2) {
    top: 28px;
  }
}
.header__btn-bar:nth-child(3) {
  top: 50px;
}
@media (max-width: 1024px) {
  .header__btn-bar:nth-child(3) {
    top: 36px;
  }
}
.header__btn-text {
  position: absolute;
  left: 50%;
  color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 60px;
  font-size: 0.75em;
  font-weight: 600;
}
@media (max-width: 1024px) {
  .header__btn-text {
    top: 45px;
    font-size: 0.625em;
  }
}
.header__btn-text.--close {
  display: none;
}
.header__lower {
  height: 80px;
}
@media (max-width: 1024px) {
  .header__lower {
    display: none;
  }
}
.header__nav {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.header__nav-item {
  width: 20%;
  height: 100%;
}
.header__nav-item.--01 > a img {
  width: 2.5rem;
  height: 1.25rem;
}
.header__nav-item.--02 > a img {
  width: 1.31625rem;
  height: 1.5rem;
}
.header__nav-item.--03 > a img {
  width: 1.275rem;
  height: 1.5rem;
}
.header__nav-item.--04 > a img {
  width: 1.5rem;
  height: 1.5rem;
}
.header__nav-item.--05 > a img {
  width: 1.4rem;
  height: 1.5rem;
}
.header__nav-item:hover > .header__nav-item-box {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  -webkit-transition: opacity 0.3s, visibility 0s;
  transition: opacity 0.3s, visibility 0s;
}
.header__nav-item > a {
  font-size: clamp(18px, 1.667vw, 24px);
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.header__nav-item > a:hover {
  color: #fff;
  background-color: #007CCF;
}
.header__nav-item > a:hover img.white {
  display: block;
}
.header__nav-item > a:hover img.black {
  display: none;
}
.header__nav-item > a img.white {
  display: none;
}
.header__nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  height: 50px;
  width: 1px;
  border-right: 1px dashed #3C3C3C;
}
.header__nav-item-box {
  position: absolute;
  top: 186px;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #007CCF;
  padding: 1.5625em;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 5;
}
.header__nav-item-links {
  display: grid;
  gap: 1.5em;
  width: 90%;
  margin: auto;
}
.header__nav-item-links.--col3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}
.header__nav-item-links.--col2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}
.header__nav-item-links.--col1 {
  grid-template-columns: repeat(1, 1fr);
  max-width: 240px;
}
.header__nav-item-link a {
  color: #fff;
}
.header__nav-item-link a:hover .header__nav-item-link-title::after {
  opacity: 1;
}
.header__nav-item-link-icon {
  background-color: #fff !important;
}
.header__nav-item-link-icon .blue {
  display: block !important;
}
.header__nav-item-link-title {
  position: relative;
  width: auto !important;
  padding: 5px 0;
  font-weight: 600;
}
.header__nav-item-link-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-contact a {
  font-size: 1.125em;
  padding: 1rem 1.5rem !important;
}
.header__menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  background-color: #3C3C3C;
}
.header__menu-inner {
  max-width: 1140px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 6.25em 0;
}
@media (max-width: 1024px) {
  .header__menu-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
@media (max-width: 768px) {
  .header__menu-inner {
    gap: 3.75em;
  }
}
.header__menu-main {
  width: 66.6666666667%;
}
@media (max-width: 1024px) {
  .header__menu-main {
    width: 100%;
  }
}
.header__menu-columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .header__menu-columns {
    gap: 3em;
  }
}
@media (max-width: 768px) {
  .header__menu-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.header__menu-column {
  padding-right: 3.75em;
  width: 50%;
  -webkit-padding-start: none;
          padding-inline-start: none;
}
@media (max-width: 1024px) {
  .header__menu-column {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .header__menu-column {
    width: 100%;
  }
}
.header__menu-item {
  margin-bottom: 2.5em;
  border-bottom: 1px solid #fff;
}
.header__menu-item.--home {
  border-bottom: none;
  margin-bottom: 2.7em;
}
.header__menu-item.--home .header__menu-item-title-image {
  width: 1.875em;
  height: 1.875em;
}
.header__menu-item-title {
  margin-bottom: 2.5em;
}
.header__menu-item-title a {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
}
.header__menu-item-title-image {
  border-radius: 5px;
  overflow: hidden;
  width: 60px;
}
.header__menu-item-title-text {
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5;
}
.header__menu-item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  margin-bottom: 1.875em;
}
.header__menu-item-item a {
  color: #fff;
  font-weight: 400;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.header__menu-item-item a::before {
  content: "";
  width: 1em;
  height: 2px;
  display: block;
  background-color: #fff;
}
.header__menu-contact-title {
  font-size: 1.5em;
  color: #fff;
  margin-bottom: 1.875rem;
}
.header__menu-contact-item {
  max-width: 320px;
  height: 70px !important;
}
.header__menu-contact-item a {
  font-size: 1em;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid #fff !important;
  border-radius: 10px !important;
  gap: 0.625rem;
}
@media (max-width: 768px) {
  .header__menu-contact-item a {
    font-size: 1rem !important;
    gap: 10px;
  }
}
.header__menu-contact-item a:hover {
  background-color: #EEA70E !important;
  color: #fff !important;
}
.header__menu-contact-item a img {
  width: 1.25rem;
  height: 1.25rem;
}
.header__menu-contact-item.--tel {
  height: auto;
}
.header__menu-contact-item.--tel a {
  background-color: inherit;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0;
  padding: 0.5em 1em;
}
.header__menu-contact-item.--tel a img {
  width: 2.25em;
  height: 1.8125em;
}
.header__menu-contact-item.--tel a span {
  display: block;
}
.header__menu-contact-item.--tel a span.upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625em;
}
@media (max-width: 768px) {
  .header__menu-contact-item.--tel a span.middle {
    font-size: 1em;
  }
}
.header__menu-contact-item.--tel a span.small {
  font-size: 0.75em;
}
.header__menu-contact-item.--tel a::after {
  display: none;
}
.header__menu-contact-item:nth-child(n+2) {
  margin-top: 2.1875em;
}
.header__menu-sub {
  width: 33.3333333333%;
  padding-left: 3.75em;
  border-left: 1px solid #fff;
}
@media (max-width: 1024px) {
  .header__menu-sub {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}
.header__menu-sub-topics-title {
  color: #fff;
  font-size: 1.5em;
  margin-bottom: 1.875rem;
}
.header__menu-sub-item {
  margin-bottom: 1.25em;
}
.header__menu-sub-item:last-child {
  margin-bottom: 0;
}
.header__menu-sub-item.--outer a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625em;
}
.header__menu-sub-item.--outer a::after {
  content: "";
  width: 0.875em;
  height: 0.875em;
  display: inline-block;
  background: url(../img/common/icons/outer_white.svg) no-repeat center center/contain;
}
.header__menu-sub-item a {
  display: block;
  color: #fff;
  font-weight: 400;
  padding-bottom: 1.25em;
  border-bottom: 1px solid #888;
}

.header.is-open {
  height: 100vh;
}

.is-open .header__menu {
  display: block;
}
.is-open .header__btn {
  background-color: #fff;
}
.is-open .header__btn-bar {
  height: 4px;
  background-color: #3C3C3C;
}
.is-open .header__btn-bar:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% + 10px)) rotate(-45deg);
          transform: translate(-50%, calc(-50% + 10px)) rotate(-45deg);
}
.is-open .header__btn-bar:nth-child(2) {
  opacity: 0;
}
.is-open .header__btn-bar:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% - 10px)) rotate(45deg);
          transform: translate(-50%, calc(-50% - 10px)) rotate(45deg);
}
@media (max-width: 1024px) {
  .is-open .header__btn-bar:nth-child(3) {
    -webkit-transform: translate(-50%, calc(-50% - 6px)) rotate(45deg);
            transform: translate(-50%, calc(-50% - 6px)) rotate(45deg);
  }
}
.is-open .header__btn-text {
  color: #3C3C3C;
}
.is-open .header__btn-text.--menu {
  display: none;
}
.is-open .header__btn-text.--close {
  display: block;
}

/* links
======================================= */
.links {
  background-color: #fff;
}
.links__inner {
  padding: 5em 0;
}
@media (max-width: 768px) {
  .links__inner {
    padding: 2.5rem 0;
  }
}
.links__list {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.175em 0;
}
@media (max-width: 1280px) {
  .links__list {
    max-width: 720px;
    margin: auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .links__list {
    max-width: 350px;
    grid-template-columns: repeat(1, 1fr);
    gap: 2em;
  }
}
.links__item a {
  height: auto;
  padding-bottom: 1.25em;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .links__item a {
    padding-bottom: 1rem;
  }
}
.links__item-icon {
  border: 1px solid #007CCF;
}

.tour__inner {
  padding: 1.5em 2em;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  border: 2px solid #B6265A;
}
@media (max-width: 1280px) {
  .tour__inner {
    padding: 1.25em 5%;
  }
}
@media (max-width: 1024px) {
  .tour__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.1875em 1em 2em;
    gap: 1.875rem;
  }
}
.tour__left {
  width: 49.5%;
}
@media (max-width: 1024px) {
  .tour__left {
    width: 100%;
  }
}
.tour__title {
  font-size: 1.5em;
  color: #B6265A;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .tour__title {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    white-space: nowrap;
  }
}
.tour__text {
  font-weight: 500;
}
@media (max-width: 768px) {
  .tour__text {
    line-height: 1.714;
    font-size: 0.875em;
  }
}
.tour__right {
  width: 43.1%;
}
@media (max-width: 1024px) {
  .tour__right {
    width: 100%;
    max-width: 465px;
  }
}
.tour__image {
  max-width: 110px;
  margin: 0 auto 2em;
}
@media (max-width: 768px) {
  .tour__btn {
    margin: auto;
  }
}

/* utility
======================================= */
.utility__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  line-height: 1;
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .utility__title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.utility__title.--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.utility__title-text {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .utility__title-text {
    font-size: 1.25em;
  }
}
.utility__catch {
  text-align: center;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .utility__catch {
    font-size: 1.5625rem;
    line-height: 1.6;
    margin-bottom: 3.125rem;
  }
}
.utility__catch span {
  color: #007CCF;
}
.utility__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 4em;
}
@media (max-width: 1024px) {
  .utility__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .utility__list {
    max-width: 350px;
    margin: auto;
    grid-template-columns: repeat(1, 1fr);
  }
}
.utility__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.utility__item a:hover .utility__item-title {
  background-color: #007CCF;
}
.utility__item a:hover .utility__item-title-icon {
  background-color: #fff;
}
.utility__item a:hover .utility__item-title-icon .blue {
  display: block;
}
.utility__item a:hover .utility__item-title-icon .white {
  display: none;
}
.utility__item a:hover .utility__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.utility__item-image {
  position: relative;
}
.utility__item-image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.utility__item-image img, .utility__item-image video, .utility__item-image iframe, .utility__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.utility__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.utility__item-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.53);
  color: #fff;
  padding: 1.25em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .utility__item-title-text {
    font-size: 0.875em;
  }
}

.sidebar {
  background-color: #fff;
  padding: 2.5em 1.25em;
  border-radius: 20px;
}
.sidebar__title {
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.75em;
}
@media (max-width: 768px) {
  .sidebar__title {
    font-size: 1.125em;
  }
}
.sidebar__categories-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.sidebar__categories-item a {
  font-size: 0.875em;
  display: block;
  padding: 0.625rem 0;
  border-bottom: 1px solid #ccc;
}
.sidebar__articles {
  margin-top: 2.5em;
}
@media (max-width: 768px) {
  .sidebar__articles {
    margin-top: 1.25em;
  }
}
.sidebar__articles-list {
  display: grid;
  gap: 2.5em 5%;
}
@media (max-width: 1024px) {
  .sidebar__articles-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sidebar__articles-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.sidebar__articles .news2__item-image {
  position: relative;
}
.sidebar__articles .news2__item-image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.sidebar__articles .news2__item-image img, .sidebar__articles .news2__item-image video, .sidebar__articles .news2__item-image iframe, .sidebar__articles .news2__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* topics 共通
========================================= */
.topics__item a:hover .topics__item-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.topics__item a:hover .topics__item-title-icon {
  background-color: #fff;
}
.topics__item a:hover .topics__item-title-icon .white {
  display: none;
}
.topics__item a:hover .topics__item-title-icon .blue {
  display: block;
}
.topics__item-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}
.topics__item-image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.topics__item-image img, .topics__item-image video, .topics__item-image iframe, .topics__item-image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.topics__item-image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* topics header
========================================= */
@media (max-width: 1024px) {
  header .topics__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.875em;
  }
}
@media (max-width: 768px) {
  header .topics__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .topics__item {
  padding-bottom: 1.875em;
  border-bottom: 1px solid #fff;
  margin-bottom: 1.875em;
}
@media (max-width: 1024px) {
  header .topics__item {
    border-bottom: none;
    width: 33.3333333333%;
  }
}
@media (max-width: 768px) {
  header .topics__item {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
}
header .topics__item-image {
  margin-bottom: 1.5rem;
}
header .topics__item-title-text {
  color: #fff;
}

/* topics TOP
========================================= */
main .topics__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  main .topics__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
main .topics__item {
  width: 30%;
}
@media (max-width: 1024px) {
  main .topics__item {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
}
main .topics__item a:hover .topics__item-title-icon {
  background-color: #fff;
}
main .topics__item a:hover .topics__item-title-icon .white {
  display: none;
}
main .topics__item a:hover .topics__item-title-icon .blue {
  display: block;
}
main .topics__item-image {
  margin-bottom: 1.25em;
}
@media (max-width: 768px) {
  main .topics__item-image {
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 768px) {
  main .topics__item-title-text {
    font-size: 0.875em;
  }
}

/* voice
======================================= */
.voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  margin-bottom: 3.125em;
}
@media (max-width: 768px) {
  .voice__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.125em;
    max-width: 350px;
    margin: 0 auto 3.125em;
  }
}
.voice__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.75em;
}
@media (max-width: 768px) {
  .voice__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875em;
  }
}

/* btn 
========================================= */
.btn {
  position: relative;
  height: 60px;
  width: 320px;
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
    max-width: 350px;
    height: 50px;
  }
}
.btn.--s {
  width: 250px;
}
@media (max-width: 768px) {
  .btn.--s {
    width: 100%;
    max-width: 350px;
  }
}
.btn.--l {
  width: 100%;
}
.btn a, .btn > span, .btn input {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  border-radius: 35px;
}
.btn__white a, .btn__white > span {
  padding: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 2px solid #007CCF;
  color: #007CCF;
}
@media (max-width: 768px) {
  .btn__white a, .btn__white > span {
    font-size: 0.875em;
  }
}
.btn__white a::after, .btn__white > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 3px));
          transform: rotate(45deg) translateY(calc(-50% - 3px));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__white a:hover, .btn__white > span:hover {
  background-color: #007CCF;
  color: #fff;
}
.btn__white a:hover::after, .btn__white > span:hover::after {
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
}
.btn__blue a, .btn__blue > span {
  padding: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #007CCF;
  border: 2px solid #007CCF;
  color: #fff;
}
@media (max-width: 768px) {
  .btn__blue a, .btn__blue > span {
    font-size: 0.875em;
  }
}
.btn__blue a::after, .btn__blue > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 3px));
          transform: rotate(45deg) translateY(calc(-50% - 3px));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__blue a:hover, .btn__blue > span:hover {
  background-color: #fff;
  color: #007CCF;
}
.btn__blue a:hover::after, .btn__blue > span:hover::after {
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
}
.btn__blue.--outer a::after, .btn__blue.--outer > span::after {
  width: 0.875rem;
  height: 0.875rem;
  border-top: none;
  border-right: none;
  -webkit-transform: inherit;
          transform: inherit;
  background: url(../img/common/icons/outer_white.svg) no-repeat center center/contain;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__blue.--outer a:hover::after, .btn__blue.--outer > span:hover::after {
  background: url(../img/common/icons/outer_blue.svg) no-repeat center center/contain;
}
.btn__red a, .btn__red > span {
  padding: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #B6265A;
  border: 2px solid #B6265A;
  color: #fff;
}
@media (max-width: 768px) {
  .btn__red a, .btn__red > span {
    font-size: 0.875em;
  }
}
.btn__red a::after, .btn__red > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
  -webkit-transform: rotate(45deg) translateY(calc(-50% - 3px));
          transform: rotate(45deg) translateY(calc(-50% - 3px));
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn__red a:hover, .btn__red > span:hover {
  background-color: #fff;
  color: #B6265A;
}
.btn__red a:hover::after, .btn__red > span:hover::after {
  border-top: 2.5px solid #B6265A;
  border-right: 2.5px solid #B6265A;
}
.btn__red.--outer a::after, .btn__red.--outer > span::after {
  width: 0.875rem;
  height: 0.875rem;
  border-top: none;
  border-right: none;
  -webkit-transform: inherit;
          transform: inherit;
  background: url(../img/common/icons/outer_white.svg) no-repeat center center/contain;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__red.--outer a:hover::after, .btn__red.--outer > span:hover::after {
  background: url(../img/common/icons/outer_red.svg) no-repeat center center/contain;
}
.btn__circle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25em;
}
.btn__circle-icon {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: #007CCF;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn__circle-icon {
    width: 2.25em;
    height: 2.25em;
  }
}
.btn__circle-icon.--anchor img {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.btn__circle-icon img {
  width: 0.875em;
  height: 0.875em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .btn__circle-icon img {
    width: 0.795em;
    height: 0.795em;
  }
}
.btn__circle-icon.--l {
  width: 3.75rem;
  height: 3.75rem;
}
@media (max-width: 1024px) {
  .btn__circle-icon.--l {
    width: 3rem;
    height: 3rem;
  }
}
@media (max-width: 768px) {
  .btn__circle-icon.--l {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.btn__circle-icon.--l img {
  width: 1.3125rem;
  height: 1.3125rem;
}
@media (max-width: 1024px) {
  .btn__circle-icon.--l img {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 768px) {
  .btn__circle-icon.--l img {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.btn__circle-icon .blue {
  display: none;
}
.btn__circle-text {
  width: calc(100% - 3.75rem - 20px);
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .btn__circle-text {
    width: calc(100% - 2.5rem - 20px);
  }
}
.btn__circle:hover .btn__circle-icon {
  background-color: #fff;
}
.btn__circle:hover .btn__circle-icon .blue {
  display: block;
}
.btn__circle:hover .btn__circle-icon .white {
  display: none;
}

.cards__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
}
@media (max-width: 1024px) {
  .cards__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em;
  }
}
.cards__item a {
  background-color: #fff;
  padding: 1.875em;
  height: 100%;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .cards__item a {
    padding: 1.25em 1em;
  }
}
.cards__item a:hover {
  -webkit-transform: translateY(-0.5em);
          transform: translateY(-0.5em);
}
.cards__item a:hover .cards__item-title-icon {
  background-color: #fff;
}
.cards__item a:hover .cards__item-title-icon .white {
  display: none;
}
.cards__item a:hover .cards__item-title-icon .blue {
  display: block;
}
.cards__item-title {
  margin-bottom: 2.25em;
}
@media (max-width: 768px) {
  .cards__item-title {
    margin-bottom: 1em;
  }
}
.cards__item-title-icon {
  border: 1px solid #007CCF;
}
.cards__item-title-text {
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .cards__item-title-text {
    font-size: 1em;
  }
}
@media (max-width: 768px) {
  .cards__item-text {
    font-size: 0.875em;
  }
}

/* category-list
========================================= */
.category__inner {
  padding: 5em 0;
}
@media (max-width: 768px) {
  .category__inner {
    padding: 3.125em 0;
  }
}
.category__container {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.category__title {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #007CCF;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .category__title {
    font-size: 1.25em;
    padding: 1.25rem 1rem 1.25rem 1.25rem;
  }
}
.category__title::after {
  content: "";
  display: block;
  width: 1.828125rem;
  height: 1.828125rem;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../img/common/icons/icon_triangle-white.svg) no-repeat center center/auto;
}
.category__title.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.category__list {
  padding: 2.5rem 1.875rem 3.125rem;
}
@media (max-width: 768px) {
  .category__list {
    padding: 1.875rem 1.25rem;
  }
}
.category__item:nth-child(n+2) {
  margin-top: 3.125rem;
}
.category__item-form {
  border: 1px solid #aaa;
  padding: 0.46875rem 1rem 0.46875rem 1.5rem;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.5rem;
}
.category__item-form input[type=text] {
  width: calc(100% - 2.5rem);
}
.category__item-form input[type=text]::-webkit-input-placeholder {
  color: #aaa;
}
.category__item-form input[type=text]::-moz-placeholder {
  color: #aaa;
}
.category__item-form input[type=text]:-ms-input-placeholder {
  color: #aaa;
}
.category__item-form input[type=text]::-ms-input-placeholder {
  color: #aaa;
}
.category__item-form input[type=text]::placeholder {
  color: #aaa;
}
.category__item-heading {
  font-size: 1.25em;
  line-height: 1;
  font-weight: 600;
  color: #007CCF;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .category__item-heading {
    font-size: 1em;
    margin-bottom: 1.5rem;
  }
}
.category__item-item.--cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1024px) {
  .category__item-item.--cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.category__item-item:nth-child(n+2) {
  margin-top: 1.75rem;
}
.category__item-item-title {
  font-size: 1.25em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .category__item-item-title {
    font-size: 1em;
  }
}
.category__item-item-title.--col {
  width: 15.625%;
  min-width: 140px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 1024px) {
  .category__item-item-title.--col {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.category__item-item-radios {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .category__item-item-radios {
    gap: 0.9375rem 0.625rem;
  }
}
.category__item-item-radios.--col {
  width: 82.8125%;
}
@media (max-width: 1024px) {
  .category__item-item-radios.--col {
    width: 100%;
  }
}
.category__item-item-radios label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 0.5625rem 1.5rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .category__item-item-radios label {
    font-size: 0.875em;
    padding: 0.5625rem 0.9375rem;
  }
}
.category__item-item-radios label::before, .category__item-item-radios label::after {
  content: "";
  display: block;
}
.category__item-item-radios label::before {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #aaa;
}
@media (max-width: 768px) {
  .category__item-item-radios label::before {
    width: 20px;
    height: 20px;
  }
}
.category__item-item-radios label::after {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: calc(1.5rem + 12.5px);
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .category__item-item-radios label::after {
    left: calc(0.9375rem + 10px);
    width: 10px;
    height: 10px;
  }
}
.category__item-item-radios input[type=radio] {
  opacity: 0;
  position: absolute;
}
.category__item-item-radios input[type=radio]:checked + label {
  background-color: #007CCF;
  color: #fff;
  font-weight: 600;
}
.category__item-item-radios input[type=radio]:checked + label::before {
  background-color: #007CCF;
  border: 2.5px solid #fff;
}
.category__item-item-radios input[type=radio]:checked + label::after {
  opacity: 1;
}
.category__item-item-checkboxes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25em;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 768px) {
  .category__item-item-checkboxes {
    gap: 0.9375rem 0.625rem;
  }
}
.category__item-item-checkboxes label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  padding: 0.5625rem 1.5rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  position: relative;
}
@media (max-width: 768px) {
  .category__item-item-checkboxes label {
    font-size: 0.875em;
    padding: 0.5625rem 0.9375rem;
  }
}
.category__item-item-checkboxes label::before, .category__item-item-checkboxes label::after {
  content: "";
  display: block;
}
.category__item-item-checkboxes label::before {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #aaa;
}
@media (max-width: 768px) {
  .category__item-item-checkboxes label::before {
    width: 20px;
    height: 20px;
  }
}
.category__item-item-checkboxes label::after {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: calc(1.5rem + 12.5px);
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .category__item-item-checkboxes label::after {
    left: calc(0.9375rem + 10px);
    width: 10px;
    height: 10px;
  }
}
.category__item-item-checkboxes input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.category__item-item-checkboxes input[type=checkbox]:checked + label {
  background-color: #007CCF;
  color: #fff;
  font-weight: 600;
}
.category__item-item-checkboxes input[type=checkbox]:checked + label::before {
  background-color: #007CCF;
  border: 2.5px solid #fff;
}
.category__item-item-checkboxes input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.a-report {
  background-color: #fff;
}

/* pickup
========================================= */
.pickup__title {
  background: url(../img/common/pickup_title.svg) no-repeat center center/contain;
  max-width: 873px;
  margin: 0 auto 3.125em;
}
.pickup__title-box {
  width: 350px;
  height: 64px;
  margin: auto;
  background-color: #fff;
  border: 2px solid #007CCF;
  border-radius: 35px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .pickup__title-box {
    width: 300px;
    font-size: 1.125em;
  }
}
.pickup__title-box .blue {
  background-color: #007CCF;
  color: #fff;
  width: 125px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5rem;
  position: relative;
  margin-right: 11px;
}
@media (max-width: 768px) {
  .pickup__title-box .blue {
    width: 115px;
  }
}
.pickup__title-box .blue::after {
  content: "";
  position: absolute;
  left: calc(100% - 0.5px);
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 21px solid #007cc0;
  border-right: 0;
}
.pickup__title-box .white {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 204px;
}

/* TOP FV
========================================= */
.fv-swiper {
  overflow: visible !important;
  margin-left: 0 !important;
}
.fv-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* TOP Voice
========================================= */
.voice-swiper {
  overflow: visible !important;
}
@media (max-width: 768px) {
  .voice-swiper {
    display: none !important;
  }
}
.voice-swiper .swiper-button-prev, .voice-swiper .swiper-button-next {
  width: 106px;
  height: 56px;
  font-size: 1.125em;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  background-color: #007CCF;
  border: 1px solid #007CCF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .voice-swiper .swiper-button-prev, .voice-swiper .swiper-button-next {
    display: none !important;
  }
}
.voice-swiper .swiper-button-prev::after, .voice-swiper .swiper-button-next::after {
  display: none;
}
.voice-swiper .swiper-button-prev::before, .voice-swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background: url(../img/common/icons/icon_arrow-white.svg) no-repeat center center/contain;
}
.voice-swiper .swiper-button-prev:hover, .voice-swiper .swiper-button-next:hover {
  background-color: #fff;
  color: #007CCF;
}
.voice-swiper .swiper-button-prev:hover::before, .voice-swiper .swiper-button-next:hover::before {
  background: url(../img/common/icons/icon_arrow-blue4.svg) no-repeat center center/contain;
}
.voice-swiper .swiper-button-prev {
  left: 0;
  border-radius: 0 28px 28px 0;
}
.voice-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.voice-swiper .swiper-button-next {
  right: 0;
  border-radius: 28px 0 0 28px;
}
.voice-swiper .swiper-button-next::before {
  -webkit-transform: inherit;
          transform: inherit;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

/* TOP column
========================================= */
@media (max-width: 768px) {
  .column-swiper {
    display: none !important;
  }
}

/* Single Area gallery
========================================= */
.gallery-swiper {
  padding-bottom: 3em !important;
}
.gallery-swiper .swiper-button-prev, .gallery-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #007CCF;
  border: 1px solid #007CCF;
  border-radius: 25px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .gallery-swiper .swiper-button-prev, .gallery-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.gallery-swiper .swiper-button-prev::after, .gallery-swiper .swiper-button-next::after {
  display: none;
}
.gallery-swiper .swiper-button-prev::before, .gallery-swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
}
@media (max-width: 768px) {
  .gallery-swiper .swiper-button-prev::before, .gallery-swiper .swiper-button-next::before {
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.gallery-swiper .swiper-button-prev:hover, .gallery-swiper .swiper-button-next:hover {
  background-color: #fff;
  color: #007CCF;
}
.gallery-swiper .swiper-button-prev:hover::before, .gallery-swiper .swiper-button-next:hover::before {
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
}
@media (max-width: 768px) {
  .gallery-swiper .swiper-button-prev:hover::before, .gallery-swiper .swiper-button-next:hover::before {
    border-top: 2px solid #007CCF;
    border-right: 2px solid #007CCF;
  }
}
.gallery-swiper .swiper-button-prev {
  left: 0;
}
.gallery-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(225deg) translate(-0.1em, 0.1em);
          transform: rotate(225deg) translate(-0.1em, 0.1em);
}
@media (max-width: 768px) {
  .gallery-swiper .swiper-button-prev::before {
    -webkit-transform: rotate(225deg) translate(-0.05em, 0.05em);
            transform: rotate(225deg) translate(-0.05em, 0.05em);
  }
}
.gallery-swiper .swiper-button-next {
  right: 0;
}
.gallery-swiper .swiper-button-next::before {
  -webkit-transform: rotate(45deg) translate(-0.1em, 0.1em);
          transform: rotate(45deg) translate(-0.1em, 0.1em);
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .gallery-swiper .swiper-button-next::before {
    -webkit-transform: rotate(45deg) translate(-0.05em, 0.05em);
            transform: rotate(45deg) translate(-0.05em, 0.05em);
  }
}
.gallery-swiper .swiper-pagination-bullet {
  background-color: #ccc;
  width: 10px;
  height: 10px;
}
.gallery-swiper .swiper-pagination-bullet-active {
  background: #007CCF;
}
.gallery-swiper .swiper-pagination {
  bottom: 0 !important;
}

/* Single Area places, spots
========================================= */
.places-swiper, .spots-swiper {
  padding-bottom: 3em !important;
}
.places-swiper .swiper-button-prev, .places-swiper .swiper-button-next, .spots-swiper .swiper-button-prev, .spots-swiper .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #007CCF;
  border: 1px solid #007CCF;
  border-radius: 25px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .places-swiper .swiper-button-prev, .places-swiper .swiper-button-next, .spots-swiper .swiper-button-prev, .spots-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.places-swiper .swiper-button-prev::after, .places-swiper .swiper-button-next::after, .spots-swiper .swiper-button-prev::after, .spots-swiper .swiper-button-next::after {
  display: none;
}
.places-swiper .swiper-button-prev::before, .places-swiper .swiper-button-next::before, .spots-swiper .swiper-button-prev::before, .spots-swiper .swiper-button-next::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-top: 2.5px solid #fff;
  border-right: 2.5px solid #fff;
}
@media (max-width: 768px) {
  .places-swiper .swiper-button-prev::before, .places-swiper .swiper-button-next::before, .spots-swiper .swiper-button-prev::before, .spots-swiper .swiper-button-next::before {
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.places-swiper .swiper-button-prev:hover, .places-swiper .swiper-button-next:hover, .spots-swiper .swiper-button-prev:hover, .spots-swiper .swiper-button-next:hover {
  background-color: #fff;
  color: #007CCF;
}
.places-swiper .swiper-button-prev:hover::before, .places-swiper .swiper-button-next:hover::before, .spots-swiper .swiper-button-prev:hover::before, .spots-swiper .swiper-button-next:hover::before {
  border-top: 2.5px solid #007CCF;
  border-right: 2.5px solid #007CCF;
}
@media (max-width: 768px) {
  .places-swiper .swiper-button-prev:hover::before, .places-swiper .swiper-button-next:hover::before, .spots-swiper .swiper-button-prev:hover::before, .spots-swiper .swiper-button-next:hover::before {
    border-top: 2px solid #007CCF;
    border-right: 2px solid #007CCF;
  }
}
.places-swiper .swiper-button-prev, .spots-swiper .swiper-button-prev {
  left: 0;
}
.places-swiper .swiper-button-prev::before, .spots-swiper .swiper-button-prev::before {
  -webkit-transform: rotate(225deg) translate(-0.1em, 0.1em);
          transform: rotate(225deg) translate(-0.1em, 0.1em);
}
@media (max-width: 768px) {
  .places-swiper .swiper-button-prev::before, .spots-swiper .swiper-button-prev::before {
    -webkit-transform: rotate(225deg) translate(-0.05em, 0.05em);
            transform: rotate(225deg) translate(-0.05em, 0.05em);
  }
}
.places-swiper .swiper-button-next, .spots-swiper .swiper-button-next {
  right: 0;
}
.places-swiper .swiper-button-next::before, .spots-swiper .swiper-button-next::before {
  -webkit-transform: rotate(45deg) translate(-0.1em, 0.1em);
          transform: rotate(45deg) translate(-0.1em, 0.1em);
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 768px) {
  .places-swiper .swiper-button-next::before, .spots-swiper .swiper-button-next::before {
    -webkit-transform: rotate(45deg) translate(-0.05em, 0.05em);
            transform: rotate(45deg) translate(-0.05em, 0.05em);
  }
}
.places-swiper .swiper-pagination-bullet, .spots-swiper .swiper-pagination-bullet {
  background-color: #ccc;
  width: 10px;
  height: 10px;
}
.places-swiper .swiper-pagination-bullet-active, .spots-swiper .swiper-pagination-bullet-active {
  background: #007CCF;
}
.places-swiper .swiper-pagination, .spots-swiper .swiper-pagination {
  bottom: 0 !important;
}

/* tab
========================================= */
.tab, .tab3, .all, .all3 {
  cursor: pointer;
}
.panel, .panel2, .panel3 {
  display: none;
}
.panel.is-active, .panel2.is-active, .panel3.is-active {
  display: block;
}

.page__inner {
  padding-top: 6.6875em;
  padding-bottom: 6.6875em;
}
@media (max-width: 768px) {
  .page__inner {
    padding-top: 4.625em;
  }
}
.page__contents h2, .page__contents h3, .page__contents h4 h5, .page__contents h6 {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.7857;
  margin-top: 1.725em;
}
.page__contents p {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  line-height: 1.7857;
  margin-bottom: 1em;
}
.page__contents ol li, .page__contents ul li {
  line-height: 1.625;
}
.page__contents ol {
  padding-left: 1.5rem;
}
.page__contents ol li {
  list-style: auto;
}
.page__contents ol li::marker {
  font-weight: bold;
}
.page__contents ul li {
  padding-left: 1.5rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page__contents ul li::before {
  content: "●";
  position: absolute;
  left: 0.7em;
  top: 0.5em;
  font-size: 0.55em;
  display: block;
}
.page__contents img, .page__contents video {
  display: block;
  margin: 1em auto;
}
.page__contents img.alignleft, .page__contents video.alignleft {
  float: left;
}
.page__contents img.aligncenter, .page__contents video.aligncenter {
  margin: 20px auto;
}
.page__contents img.alignright, .page__contents video.alignright {
  float: right;
}
@media (max-width: 768px) {
  .page__contents .wp-block-columns.is-layout-flex {
    gap: 0;
  }
  .page__contents .wp-block-columns.is-layout-flex img {
    margin: 0;
  }
}
.page__contents figure {
  margin: 0 auto 2em;
}
@media (max-width: 1024px) {
  .page__contents figure.size-full {
    width: 100%;
  }
}
.page__contents figure figcaption {
  font-size: 0.5em;
  line-height: 2;
}
.page__contents .is-type-video, .page__contents .is-type-rich {
  margin: 60px auto;
}
.page__contents .is-type-video .wp-block-embed__wrapper, .page__contents .is-type-rich .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  text-align: center;
}
.page__contents .is-type-video .wp-block-embed__wrapper iframe, .page__contents .is-type-rich .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page__contents .wp-block-media-text {
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
}
.page__contents .wp-block-media-text__content {
  padding: 0 !important;
}
.page__contents .wp-block-media-text__content p {
  margin-bottom: 1em;
}
.page__contents .wp-block-media-text__content img {
  margin: 0;
}
.page__contents cite {
  font-size: 0.8em;
  font-style: normal;
  display: block;
  background-color: #F8F8F8;
  padding: 2em 3.5em;
  margin-bottom: 2em;
  position: relative;
}
.page__contents a:hover {
  color: #EAEEF2;
  text-decoration: underline;
}