@charset "UTF-8";
/*
Theme Name: 2023 Mid
Author: Author
Author URI: URI
Version: 1.0
*/
/*
@import “_header”;
@import “_main”;
@import “_footer”;

.btn{
  color: #fff;
  background: #000;
}
.btnBlue {
  @extend .btn;
  background: blue;
}
*/
/* ===========================================================
   # BASE
=========================================================== */
* {
  border: none;
  box-sizing: border-box;
  font: inherit;
  outline: none;
  vertical-align: bottom;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 10px;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #fff;
  color: #555;
  font: 400 1.6rem/1 "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: .05em;
}

strong {
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* = CLASS
----------------------------------------------------------- */
.auto {
  margin: auto;
}

.boxradiusAll {
  border-radius: 1rem;
}

.boxShadow {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
}

.clear {
  clear: both;
}

.disNon {
  display: none !important;
}

.hidden {
  overflow: hidden;
}

.mb0 {
  margin-bottom: 0 !important;
}

.serif {
  font-family: YakuHanMPs, 'Noto Serif JP', serif;
}

.small {
  font-size: .9em;
}

.transAll {
  transition: all 500ms 0s ease;
}

.txtShadow {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* ALIGN */
.align_c {
  text-align: center;
}

.align_l {
  text-align: left;
}

.align_r {
  text-align: right;
}

/* DISPLAY */
.noSP, .onPC,
.noSP.flex, .onPC.flex {
  display: none;
}

/* FLEX */
.flex {
  display: flex;
  flex-wrap: wrap;
}

/* POSITION */
.posRe {
  position: relative;
}

.posAb {
  position: absolute;
}

@media (min-width: 768px) {
  .alignleft {
    float: left;
  }
  .alignright {
    float: right;
  }
  .onSP {
    display: none !important;
  }
  .noSP {
    display: block;
  }
  .noSP.flex {
    display: flex;
  }
  img.noSP,
  span.noSP,
  strong.noSP {
    display: inline;
  }
}

@media (min-width: 1025px) {
  .noPC {
    display: none !important;
  }
  .onPC {
    display: block;
  }
  .onPC.flex {
    display: flex;
  }
  img.onPC,
  span.onPC,
  strong.onPC {
    display: inline;
  }
}

@media (min-width: 1520px) {
  body {
    font-size: 1.8rem;
  }
}

/* ===========================================================
   # HREF
=========================================================== */
a {
  color: #555;
  outline: none;
  text-decoration: none;
}

a.linkBtn, a.linkBox {
  border-radius: 0;
  display: inline-block;
  line-height: 4rem;
  padding: 0 1em;
  max-width: 100%;
  min-width: 20rem;
  text-decoration: none !important;
  transition: all 500ms 0s ease;
}

a.linkBtn {
  background: #41A5D8;
  border-radius: 3rem;
  color: #fff !important;
  font-weight: 500;
  padding: 0 11rem 0 2rem;
  position: relative;
}

a.linkBtn::before, a.linkBtn::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 53%;
  transition: all 500ms 0s ease;
}

a.linkBtn::before {
  background: #fff;
  width: 6rem;
  height: 1px;
}

a.linkBtn::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 4px 0 0 6px;
  width: 0;
  height: 0;
  transform: translateY(-3px);
}

a.linkBtn:hover {
  background: #10013F;
}

a.linkBtn:hover::before, a.linkBtn:hover::after {
  right: 2rem;
}

a.linkBtn:hover::before {
  width: 7rem;
}

a.linkBox {
  border: 2px solid #555;
  color: #555;
  font-weight: 500;
}

a.linkBox:hover {
  background: #555;
  border-color: #555;
  color: #fff;
}

.entryBody a {
  color: #7d075a;
  text-decoration: underline;
}

.entryBody a:hover img {
  opacity: 0.9;
}

@media (min-width: 768px) {
  a.linkBtn, a.linkBox {
    font-size: 1.2em;
    line-height: 6rem;
    min-width: 34rem;
  }
  a.linkBtn {
    font-weight: 400;
  }
  a.linkBtn::before, a.linkBtn::after {
    right: 4rem;
  }
  a.linkBtn:hover::before, a.linkBtn:hover::after {
    right: 3rem;
  }
}

/* ===========================================================
   # MAIN
=========================================================== */
.wrap {
  min-height: 100%;
}

.inner {
  width: 124rem;
  max-width: 100%;
}

.innerS {
  width: 98rem;
}

.innerL {
  width: 152rem;
}

.innerLl {
  width: 192rem;
}

.innerP {
  max-width: calc(100% - 2rem);
}

.bgBl {
  background: rgba(65, 165, 216, 0.1);
}

.wave_btm {
  margin-bottom: 0 !important;
  padding-bottom: 3rem;
  position: relative;
}

.wave_btm::after {
  content: "";
  padding-top: 3.7%;
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.wave_btm.wh::after {
  background: url(./img/wave_wh.svg) 0 bottom/cover no-repeat;
}

.wave_btm.bl::after {
  background-color: #EBF6FB;
  -webkit-mask: url("./img/wave_wh.svg");
  mask: url("./img/wave_wh.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
}

.wave_btm + * {
  margin-top: 0 !important;
}

/*
.wave {
  fill: $white;
  width: 100%;
  height: auto;
  left: 0;
  bottom: -1px;

  .homeNews &, .homePickup & {
    fill: $blueL;
  }
  .footBn & {
    fill: $main;
  }
} //.wave
*/
@media (min-width: 768px) {
  .innerS {
    max-width: calc(100% - 5rem);
  }
}

@media (min-width: 1025px) {
  .wrap {
    padding: 0;
  }
  .innerS {
    max-width: 100%;
  }
  .wave_btm {
    padding-bottom: 10rem;
  }
}

/* ===========================================================
   # HEAD
=========================================================== */
.head {
  justify-content: space-between;
  padding: 1.5rem 1rem 5px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

.open .head {
  background: #c8dff0;
}

.head.bgSp {
  background: #fff;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}

.head .logo img {
  width: auto;
  height: 3rem;
}

.headInfo {
  background: #fff;
  width: calc(100% - 5rem);
  position: fixed;
  left: 0;
  bottom: 0;
}

.open .headInfo {
  width: 100%;
}

.headInfo li {
  width: 50%;
}

.headInfo li a {
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: .9em;
  line-height: 1.2;
  height: 5rem;
}

.headInfo li a.tour {
  background: rgba(65, 165, 216, 0.8);
}

.headInfo li a.recruit {
  background: rgba(234, 109, 151, 0.8);
}

.headInfo li a:hover {
  background: #10013F;
}

@media (min-width: 768px) {
  .head {
    align-items: center;
    padding-bottom: 1rem;
  }
  .head .logo img {
    height: 4rem;
  }
  .headInfo {
    width: calc(100% - 6rem);
  }
  .headInfo li a {
    height: 6rem;
  }
}

@media (min-width: 1025px) {
  .head {
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }
  .open .head {
    background: transparent;
  }
  .head.bgSp {
    background: transparent;
    box-shadow: none;
  }
  .head.bg {
    background: #fff;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  }
  .headInfo {
    background: transparent;
    width: auto !important;
    position: static;
  }
  .headInfo li {
    margin-left: 1px;
    width: 13rem;
  }
}

@media (min-width: 1366px) {
  .head {
    padding-left: 3rem;
  }
  .head .logo img {
    height: 5rem;
  }
  .headInfo li {
    width: 16rem;
  }
  .headInfo li a {
    line-height: 1.4;
    height: 8rem;
  }
}

/* ===========================================================
   # SIDE
=========================================================== */
/* ===========================================================
   # FOOT
=========================================================== */
.foot {
  background: #41A5D8;
  color: #fff;
  font-size: .9em;
  padding: 2rem 2rem 7rem;
}

.foot a {
  color: #fff;
}

.footAccess {
  background: #41A5D8;
  background: linear-gradient(180deg, rgba(65, 165, 216, 0.1) 30%, #41a5d8 100%);
  color: #10013F;
}

.footAccess .map {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.footAccess .map iframe {
  width: 100%;
  height: 100%;
}

.footAccess .info {
  padding: 2rem 0;
  line-height: 1.4;
}

.footAccess .infoIn {
  display: inline-flex;
  flex-direction: column;
}

.footAccess .infoIn > * {
  margin: .5em 0;
}

.footAccess .infoIn dl {
  display: flex;
  font-size: .9em;
  margin: 3px 0;
}

.footAccess .infoIn dl dt {
  font-weight: 400;
  width: 8em;
}

.footAccess .infoIn ul li {
  margin-top: 2rem;
}

.footAccess .infoIn ul li .icoLink {
  background: #fff;
  border-radius: 1rem;
  color: #10013F;
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 1.5rem;
  width: 100%;
  height: 6rem;
}

.footAccess .infoIn ul li .icoLink img {
  margin-right: 1.5rem;
  width: 5rem;
}

.footAccess .infoIn ul li .icoLink::after {
  border-top: 3px solid #10013F;
  border-right: 3px solid #10013F;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  right: 3rem;
  transform: rotate(45deg);
  transition: all 500ms 0s ease;
}

.footAccess .infoIn ul li .icoLink:hover {
  background: #10013F;
  color: #fff;
}

.footAccess .infoIn ul li .icoLink:hover::after {
  border-color: #fff;
  right: 2.5rem;
}

.footBn ul {
  justify-content: center;
}

.footBn ul li {
  padding: 0 5px;
  width: 50%;
}

.foot .footBtn {
  background: #fff;
  border-radius: 10rem;
  color: #10013F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 5.6rem;
  margin: 3rem 0;
  width: 100%;
  max-width: 40rem;
}

.foot .footBtn i {
  margin-left: 1rem;
}

.foot .footBtn:hover {
  background: #10013F;
  color: #fff;
}

.foot .copy {
  font-size: 1em;
  letter-spacing: 0.5px;
}

.foot .copy span {
  display: block;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .foot {
    padding-bottom: 8rem;
  }
  .footAccess {
    display: flex;
  }
  .footAccess .map {
    aspect-ratio: auto;
    width: 50%;
  }
  .footAccess .info {
    font-size: 1.1em;
    padding: 3rem 0;
    width: 50%;
  }
  .footBn {
    padding: 3rem 0 5rem;
  }
  .footBn ul li {
    padding: 5px 1rem;
    width: auto;
  }
  .open .footBn {
    padding-top: 1rem;
    bottom: 6rem;
  }
}

@media (min-width: 1025px) {
  .foot {
    display: flex;
    align-items: center;
    padding: 0 1rem 0 0;
  }
  .footAccess .info {
    letter-spacing: 1px;
  }
  .footAccess .infoIn > * {
    margin: .8em 0;
  }
  .footAccess .infoIn dl {
    margin: 5px 0;
  }
  .footAccess .infoIn ul li .icoLink {
    font-size: 2.2rem;
    padding-left: 2rem;
    width: 42rem;
    height: 10rem;
  }
  .footAccess .infoIn ul li .icoLink img {
    margin-right: 2rem;
    width: 7rem;
  }
  .footAccess .infoIn ul li .icoLink::after {
    border-width: 4px 4px 0 0;
    width: 2.2rem;
    height: 2.2rem;
  }
  .footBn {
    padding: 0 !important;
    position: static !important;
  }
  .footBn ul li {
    padding: 5px 3rem;
  }
  .foot .footBtn {
    margin: 5rem 0;
    width: 40rem;
  }
  .foot .footBtn i {
    margin-left: 2rem;
  }
  .foot .copy {
    margin-left: auto;
  }
  .foot .copy span {
    display: inline;
  }
}

.gotoTop {
  background: #fff;
  display: flex;
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.gotoTop svg {
  fill: #10013F;
  width: 2.8rem;
  height: auto;
  opacity: .1;
}

.gotoTop.on svg {
  opacity: 1;
}

@media (min-width: 768px) {
  .gotoTop {
    width: 6rem;
    height: 6rem;
  }
}

@media (min-width: 1025px) {
  .gotoTop {
    opacity: 0;
  }
  .gotoTop.on {
    opacity: 1;
  }
}

/* ===========================================================
   # NAVI
=========================================================== */
body.open {
  position: fixed;
}

@media (min-width: 1025px) {
  body.open {
    position: static;
  }
}

/* = MENU BTN
----------------------------------------------------------- */
.btnMenu {
  cursor: pointer;
  width: 2.8rem;
  height: 2rem;
}

.btnMenu span {
  background: #10013F;
  width: 100%;
  height: 2px;
  left: 0;
}

.btnMenu01 {
  top: 0;
}

.btnMenu02 {
  top: 9px;
}

.btnMenu03 {
  bottom: 0;
}

.open .btnMenu01 {
  transform: translateY(9px) rotate(45deg);
}

.open .btnMenu02 {
  opacity: 0;
}

.open .btnMenu03 {
  transform: translateY(-9px) rotate(-45deg);
}

/* = G NAVI
----------------------------------------------------------- */
.gNav {
  background: white;
  background: linear-gradient(180deg, #c8dff0 50%, #fff 100%);
  display: none;
  overflow: auto;
  width: 100%;
  height: calc(100% - 10rem);
  position: fixed;
  left: 0;
  top: 5rem;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gNav::-webkit-scrollbar {
  display: none;
}

.gNav > ul > li {
  width: 100%;
  position: relative;
}

.gNav > ul > li:not(:first-child)::after {
  background: #10013F;
  content: "";
  margin: auto;
  width: 3rem;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
}

.gNav > ul > li > a {
  color: #10013F;
  display: block;
  font-weight: 500;
  padding: 1.2em 0;
  position: relative;
  transition: all 500ms 0s ease;
}

.gNav_sns {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
  padding: 2rem 0;
  max-width: 70%;
}

.gNav_sns img {
  margin: 0 2rem;
  width: 4rem;
}

@media (min-width: 1025px) {
  .gNav {
    background: transparent;
    display: block !important;
    position: static;
    width: auto;
  }
  .gNav > ul > li {
    width: auto;
  }
  .gNav > ul > li:not(:first-child)::after {
    width: 1px;
    height: 1em;
    right: auto;
    top: 0;
    bottom: 0;
  }
  .gNav > ul > li > a {
    line-height: 6rem;
    font-size: 1.4rem;
    padding: 0 1em;
  }
  .gNav > ul > li > a::after {
    content: "";
    background: #10013F;
    margin: auto;
    width: 3rem;
    height: 2px;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.2rem;
    transition: all 500ms 0s ease;
  }
  .gNav > ul > li > a:hover::after,
  .gNav > ul > li.current-menu-item > a::after {
    opacity: 1;
  }
}

@media (min-width: 1366px) {
  .gNav > ul > li {
    font-size: 1.1em;
  }
  .gNav > ul > li > a {
    line-height: 8rem;
    font-size: 1.6rem;
    padding: 0 1.6em;
  }
  .gNav > ul > li > a::after {
    height: 3px;
    bottom: 1.8rem;
  }
}

@media (min-width: 1520px) {
  .gNav > ul > li > a {
    font-size: 1.8rem;
  }
}

/* ===========================================================
   # HOME
=========================================================== */
.homeCont .homeTtl {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 2rem;
}

.homeCont .homeNews {
  padding-top: 2rem;
}

.homeCont .homeMsg2 {
  background: #fff;
  line-height: 1.4;
  padding: 1em 1rem !important;
  width: 76rem;
  max-width: calc(100% - 2rem);
}

.homeCont .homeMsg2 .ttl {
  font-weight: 500;
  letter-spacing: 3px;
  text-shadow: 0 0 3px rgba(16, 1, 63, 0.2);
}

.homeCont .homeMsg2 .txt {
  font-size: .9em;
}

.homeCont .homeBn {
  display: flex;
  gap: 2px;
  margin: 1px auto !important;
}

.homeCont .homeBn > div {
  width: 50%;
}

.homeCont .homeBn .homeBn_item {
  margin-bottom: 2px;
  overflow: hidden;
  max-height: 16rem;
  position: relative;
}

.homeCont .homeBn .homeBn_item figcaption {
  background: #fff;
  color: #41A5D8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  margin: auto;
  padding: 0 1rem 0 5px;
  pointer-events: none;
  width: 14rem;
  height: 4rem;
  position: absolute;
  bottom: 0;
  transition: all 300ms 0s ease;
}

.homeCont .homeBn .homeBn_item figcaption::after {
  font-family: "Font Awesome 6 Free";
  content: '\f138';
  font-weight: 900;
  margin-top: 3px;
}

.homeCont .homeBn .homeBn_item:hover figcaption {
  background: #41A5D8;
  color: #fff;
}

.homeCont .homeBn2 {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.homeCont .homeBn2 > div {
  width: 50%;
}

.homeCont .homeBn2 .homeBn_item .image-wrapper {
  max-height: 16rem;
}

.homeCont .homeBn2 .homeBn_item .image-wrapper figcaption {
  background: #fff;
  color: #41A5D8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 0 1rem 0 5px;
  width: 14rem;
  height: 4rem;
  bottom: auto;
  transition: all 300ms 0s ease;
}

.homeCont .homeBn2 .homeBn_item .image-wrapper figcaption::after {
  font-family: "Font Awesome 6 Free";
  content: '\f138';
  font-weight: 900;
  margin-top: 3px;
}

.homeCont .homeBn2 .homeBn_item .image-wrapper:hover figcaption {
  background: #41A5D8;
  color: #fff;
}

.homeCont .homeTopics2 {
  counter-reset: number 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  padding: 0 1rem;
  max-width: 100%;
}

.homeCont .homeTopics2 .eb-row-root-container .eb-row-wrapper {
  max-width: 152rem;
}

.homeCont .homeTopics2_item .wp-block-image {
  margin-bottom: 2rem;
  position: relative;
}

.homeCont .homeTopics2_item .wp-block-image::before, .homeCont .homeTopics2_item .wp-block-image::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0;
  transition: all 300ms 0s ease;
}

.homeCont .homeTopics2_item .wp-block-image::before {
  border-color: transparent transparent transparent #41A5D8;
  border-style: solid;
  border-width: 4px 0 0 6px;
  width: 0;
  height: 0;
  transform: translateY(-1px);
}

.homeCont .homeTopics2_item .wp-block-image::after {
  background: #41A5D8;
  width: 6rem;
  height: 1px;
}

.homeCont .homeTopics2_item .wp-block-image a {
  display: block;
  padding-bottom: 3rem;
  transition: all 300ms 0s ease;
}

.homeCont .homeTopics2_item .wp-block-image a::before, .homeCont .homeTopics2_item .wp-block-image a::after {
  color: #41A5D8;
  content: "";
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 2;
  margin: auto;
  text-align: center;
  position: absolute;
  left: 0;
  transition: all 300ms 0s ease;
}

.homeCont .homeTopics2_item .wp-block-image figcaption {
  background: #fff;
  box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.05);
  color: #41A5D8;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  padding-left: 1rem;
  width: 21rem;
  max-width: 90%;
  height: 3rem;
  pointer-events: none;
  position: absolute;
  left: -1rem;
  bottom: 1.5rem;
  z-index: 999;
}

.homeCont .homeTopics2_item .wp-block-image figcaption::before {
  color: #fff;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-size: 2rem;
  margin: -0.1em 1rem 0 0;
  -webkit-text-stroke: 1px rgba(65, 165, 216, 0.8);
}

.homeCont .homeTopics2_item .wp-block-image:hover::before, .homeCont .homeTopics2_item .wp-block-image:hover::after {
  right: 0;
}

.homeCont .homeTopics2_item .wp-block-image:hover::after {
  width: 7rem;
}

.homeCont .homeTopics2_item .wp-block-image:hover a::before {
  background: #fff;
  border-radius: 3rem;
  content: "記事を読む";
  width: 12rem;
  right: 0;
  top: 33%;
  z-index: 1;
}

.homeCont .homeTopics2_item .wp-block-image:hover a::after {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: calc(100% - 3rem);
  top: 0;
}

.homeCont .homeLink2 {
  margin-bottom: 0;
  padding: 3rem 1rem;
}

.homeCont .homeLink2 a {
  background: #fff;
  border: 1px solid #41A5D8;
  color: #41A5D8;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding: 1rem 2rem 1rem 1rem;
  transition: all 500ms 0s ease;
}

.homeCont .homeLink2 a .img {
  margin-right: 1rem;
  width: 5rem;
}

.homeCont .homeLink2 a .en {
  font-size: 1.2rem;
  font-weight: 500;
}

.homeCont .homeLink2 a::after {
  font-family: "Font Awesome 6 Free";
  content: '\f054';
  font-weight: 900;
  margin: 3px 0 0 auto;
  transition: margin 500ms 0s ease;
}

.homeCont .homeLink2 a:hover {
  background: #41A5D8;
  color: #fff;
}

.homeCont .homeLink2 a:hover::after {
  margin-right: -.5rem;
}

@media (min-width: 768px) {
  .homeCont .homeTtl {
    font-size: 3em;
    margin-bottom: 4rem;
  }
  .homeCont .homeMsg2 {
    margin-top: 6rem !important;
  }
  .homeCont .homeMsg2 .ttl {
    font-size: 2.4rem;
    font-weight: 400;
  }
  .homeCont .homeMsg2 .txt {
    font-size: 1em;
  }
  .homeCont .homeBn .homeBn_item figcaption {
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0 2rem;
    width: 21rem;
    height: 5rem;
  }
  .homeCont .homeBn .homeBn_item.support img {
    transform: translateY(-20%);
  }
  .homeCont .homeBn .homeBn_item.tour img {
    transform: translateY(-8%);
  }
  .homeCont .homeBn .homeBn_item:hover figcaption {
    width: 30rem;
  }
  .homeCont .homeBn2 .homeBn_item .image-wrapper figcaption {
    font-size: 1.8rem;
    font-weight: 400;
    padding: 0 2rem;
    width: 21rem;
    height: 5rem;
  }
  .homeCont .homeBn2 .homeBn_item.support img {
    transform: translateY(-40%);
  }
  .homeCont .homeBn2 .homeBn_item:hover figcaption {
    width: 30rem;
  }
  .homeCont .homeTopics2 {
    gap: 2rem;
  }
  .homeCont .homeTopics2_item .wp-block-image {
    padding-bottom: 1rem;
  }
  .homeCont .homeTopics2_item .wp-block-image::before, .homeCont .homeTopics2_item .wp-block-image::after {
    bottom: 2.5rem;
  }
  .homeCont .homeTopics2_item .wp-block-image figcaption {
    height: 4rem;
  }
  .homeCont .homeTopics2_item .wp-block-image figcaption::before {
    font-size: 2.8rem;
  }
  .homeCont .homeTopics2_item .wp-block-image:hover a::before {
    top: 40%;
  }
  .homeCont .homeTopics2_item .wp-block-image:hover a::after {
    height: calc(100% - 4rem);
  }
  .homeCont .homeLink2 {
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  .homeCont .homeLink2 > * {
    flex: 1;
    max-width: 57rem;
  }
}

@media (min-width: 1025px) {
  .homeCont .homeNews {
    padding-top: 5rem;
  }
  .homeCont .homeBn .homeBn_item {
    max-height: 20rem;
  }
  .homeCont .homeTopics2 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .homeCont .homeLink2 {
    padding: 5rem 1rem;
  }
  .homeCont .homeLink2 a {
    font-size: min(1.9vw, 2.4rem);
    line-height: .8;
    padding: 2rem 4rem 2rem 3rem;
  }
  .homeCont .homeLink2 a .img {
    margin-right: 2rem;
    width: 8rem;
  }
  .homeCont .homeLink2 a .en {
    font-size: 1.4rem;
  }
  .homeCont .homeLink2 a:hover::after {
    margin-right: -1rem;
  }
}

@media (min-width: 1366px) {
  .homeCont .homeBn .homeBn_item {
    max-height: 26rem;
  }
  .homeCont .homeBn .homeBn_item figcaption {
    font-size: 2rem;
    top: 0;
  }
  .homeCont .homeBn2 .homeBn_item .image-wrapper {
    max-height: 20rem;
  }
  .homeCont .homeLink2 {
    gap: 8rem;
  }
}

@media (min-width: 1520px) {
  .homeCont .homeBn {
    gap: 4rem;
    margin: 4rem auto;
  }
  .homeCont .homeBn .homeBn_item {
    margin-bottom: 4rem;
  }
  .homeCont .homeBn2 {
    gap: 4rem;
    margin: 4rem auto;
  }
  .homeCont .homeBn2 .homeBn_item .image-wrapper {
    max-height: 26rem;
  }
  .homeCont .homeBn2 .homeBn_item .image-wrapper figcaption {
    font-size: 2rem;
  }
  .homeCont .homeTopics2 {
    padding: 0;
  }
}

/* = MV
----------------------------------------------------------- */
.homeMv {
  height: 40vh;
}

.homeMv ul li picture {
  display: block;
  height: 40vh;
}

.homeMv ul li picture img {
  object-fit: cover;
  object-position: 50% 0;
  width: 100%;
  height: 100%;
}

.homeMv .ttl {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  text-shadow: 1px 1px 0 #10013F, 2px 2px 0 #10013F;
  position: absolute;
  left: 1rem;
  bottom: 2rem;
}

.homeMv .ttl span {
  font-size: 0.6em;
  vertical-align: -0.14em;
}

@media (min-width: 768px) {
  .homeMv {
    height: 60vh;
  }
  .homeMv ul li picture {
    height: 60vh;
  }
  .homeMv .ttl {
    font-size: 4vw;
    left: 2%;
    bottom: 5%;
    bottom: 10%;
  }
}

@media (min-width: 1025px) {
  .homeMv {
    height: 100vh;
  }
  .homeMv ul li picture {
    height: 100vh;
  }
  .homeMv .ttl {
    font-weight: 100;
  }
}

/* ===========================================================
   # NEWS
=========================================================== */
.newsList li {
  border-bottom: 1px solid #ddd;
  padding: 1.2rem 0;
}

.newsList li:first-child {
  border-top: 1px solid #ddd;
}

.newsList li a {
  color: #555;
  align-items: center;
}

.newsList .date {
  color: #999;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.newsList .ttl {
  line-height: 1.4;
  padding-top: 5px;
  width: 100%;
}

.newsList + .more {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .newsList + .more {
    margin-top: 4rem;
  }
}

@media (min-width: 1025px) {
  .newsList li {
    padding: 3rem 0;
  }
  .newsList li a {
    flex-wrap: nowrap;
  }
  .newsList .ttl {
    padding: 0 0 0 3em;
    width: calc(100% - 6em);
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ===========================================================
   # FLEX
=========================================================== */
.flex.column2 li, .flex.column3 li {
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .flex.column2 li {
    width: 48%;
  }
  .flex.column2 li:nth-child(odd) {
    margin-right: 4%;
  }
  .flex.column3 li {
    margin: 0 3.5% 3rem 0;
    width: 31%;
  }
  .flex.column3 li:nth-child(3n) {
    margin-right: 0;
  }
}

@media (min-width: 1025px) {
  .flex.column3 li {
    margin-bottom: 3rem;
  }
}

/* = THUMBNAIL
----------------------------------------------------------- */
.thumbList_img {
  display: block;
}

.thumbList_img img {
  transition: all 1000ms 0s ease;
  width: 100%;
}

.thumbList a {
  display: block;
}

.thumbList a.hasImg:hover img {
  transform: scale(1.1);
}

.thumbList a .cat {
  background: #555;
  color: #fff;
  font-size: .8em;
  line-height: 1.6em;
  width: 6em;
  right: 0;
  top: 0;
}

.thumbList + .more {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .thumbList + .more {
    margin-top: 2rem;
  }
}

/*# sourceMappingURL=style.map */