@charset "UTF-8";
/*----------------------------------------
	clearfix
----------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, hgroup, nav, menu, figure, figcaption, time {
  display: block;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  right: 0;
  width: 100%;
  line-height: 1.8;
  color: #222222;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.8;
  }
}

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

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

/*----------------------------------------
	Google Web Font
----------------------------------------*/
/**
 * Roboto
 * regular, bold
 * font-family: 'Roboto', sans-serif;
 */
/**
 * Montserrat
 * regular, bold
 * font-family: 'Montserrat', sans-serif;
 */
/**
 * Noto Sans Jp
 * regular, bold
 * font-family: font-family:'Noto Sans JP',"Noto Sans Japanese";
 */
/*----------------------------------------
	fontSize
----------------------------------------*/
html {
  /* font-size: 10px;  ← これを下の行に変更 */
  font-size: 62.5%;
}

body {
  font-size: 1.7rem; /* ここはそのまま（16px相当）でOK */
}

.u-wrapper-l {
  max-width: 1000px;
  margin: 0 auto;
}

.u-wrapper-m {
  max-width: 800px;
  margin: 0 auto;
}

.u-wrapper-s {
  max-width: 500px;
  margin: 0 auto;
}

.u-device-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-device-sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-device-pc {
    display: none;
  }
}

/* ==================================================
   アニメーション定義
================================================== */
@-webkit-keyframes fadeUpText {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpText {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes scaleXLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scaleXLine {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/* ==================================================
   ヒーローセクション
================================================== */
.p-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-hero {
    min-height: 650px;
  }
}
.p-hero {
  /* --- 背景スライダー --- */
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background-color: #000;
}
.p-hero__bg-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-in-out;
  transition: opacity 1.5s ease-in-out;
}
.p-hero__bg-item.is-active {
  opacity: 1;
  z-index: 1;
}
.p-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.p-hero {
  /* --- コンテンツエリア (縦に分割) --- */
}
.p-hero__inner {
  position: relative;
  width: 100%;
  height: 71%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-hero__inner {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}
.p-hero {
  /* --- 各段の設定 --- */
}
.p-hero__row {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .p-hero__row:nth-child(1) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
  }
  .p-hero__row:nth-child(2) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5%;
            flex: 0 0 5%;
  }
  .p-hero__row:nth-child(3) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .p-hero__row:nth-child(4) {
    display: none;
  }
}
.p-hero__row.-parallel {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-hero__row.-parallel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.p-hero {
  /* --- 伸びる横線 --- */
}
.p-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-animation: scaleXLine 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: scaleXLine 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.p-hero__row:nth-child(1) .p-hero__line {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.p-hero__row:nth-child(2) .p-hero__line {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.p-hero__row:nth-child(3) .p-hero__line {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.p-hero {
  /* --- 英語キャッチコピー --- */
}
.p-hero__en-text {
  font-size: 9vw;
  font-weight: bold;
  line-height: 0.8;
  letter-spacing: -0.03em;
}
.p-hero__en-text.-pos1 {
  width: 100%;
  text-align: left;
}
.p-hero__en-text.-pos2 {
  width: 100%;
  padding-left: 27%;
  text-align: left;
}
.p-hero__en-text.-pos3 {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-hero__en-text {
    font-size: 18vw;
    line-height: 0.85;
  }
  .p-hero__en-text.-pos2 {
    padding-left: 15%;
  }
  .p-hero__en-text.-pos3 {
    width: 100%;
    text-align: right;
    font-size: 24vw;
    line-height: 0.9;
  }
}
.p-hero__br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-hero__br-sp {
    display: block;
  }
}
.p-hero {
  /* --- 日本語キャッチとコントローラーのラッパー --- */
}
@media screen and (max-width: 768px) {
  .p-hero__ja-wrap {
    margin-bottom: auto;
  }
}
.p-hero__ja-catch {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .p-hero__ja-catch {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
  }
}
.p-hero {
  /* --- コントローラー --- */
}
.p-hero__controls {
  position: absolute;
  bottom: calc(-100% + 30px);
  left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .p-hero__controls {
    position: static;
    margin-top: 15px;
  }
}
.p-hero__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-hero__dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-hero__dots li.is-active {
  background-color: #fff;
}
.p-hero__pause-btn {
  cursor: pointer;
  background-color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding: 0;
}
.p-hero__pause-btn:hover {
  opacity: 0.8;
}
.p-hero__pause-btn img {
  width: 10px;
  height: auto;
  display: block;
}
.p-hero .js-fade-up {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-animation: fadeUpText 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: fadeUpText 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.p-hero__row:nth-child(1) .js-fade-up {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.p-hero__row:nth-child(2) .js-fade-up {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.p-hero__row:nth-child(3) .js-fade-up {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.p-hero {
  /* --- NEWSエリア --- */
}
.p-hero__news {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  background-color: rgba(217, 217, 217, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .p-hero__news {
    width: 100%;
    padding: 15px 5%;
  }
}
.p-hero__news-label {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-hero__news-label {
    margin-bottom: 10px;
  }
}
.p-hero__news-border {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-hero__news-border {
    margin-bottom: 15px;
  }
}
.p-hero__news-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .p-hero__news-link {
    gap: 15px;
  }
}
.p-hero__news-link:hover {
  opacity: 0.7;
}
.p-hero__news-date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-hero__news-title {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========
  PageTop
========= */
.c-pagetop {
  position: absolute;
  right: 60px;
  top: -45px;
  z-index: 40;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  width: 96px;
  height: auto;
  opacity: 0; /* 透明にする */
  visibility: hidden; /* クリック判定も消す */
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s; /* 0.3秒かけて変化 */
}
.c-pagetop img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
          filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}
@media screen and (max-width: 768px) {
  .c-pagetop {
    right: 8px;
    bottom: 12px;
    top: auto;
    width: 96px;
    height: 96px;
    position: fixed;
  }
}

.c-pagetop.is-show {
  opacity: 1; /* 不透明（見える） */
  visibility: visible; /* クリック判定を戻す */
}

.m-heading__wrap {
  border-bottom: 1px solid #D3D3D3;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*----------------------------------------
	m-heading01
----------------------------------------*/
.m-heading01 {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .m-heading01 {
    font-size: 2.1rem;
  }
}
/*----------------------------------------
	m-table
----------------------------------------*/
/*----------------------------------------
	m-list
----------------------------------------*/
.m-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 10px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .m-list dl {
    font-size: 1.6rem;
  }
}
.m-list dl dt, .m-list dl dd {
  padding: 12px 0;
}
@media screen and (max-width: 768px) {
  .m-list dl dt, .m-list dl dd {
    padding: 0;
  }
}
.m-list dl dt {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .m-list dl dt {
    border-bottom: none;
    color: #271477;
  }
}
.m-list dl dt {
  position: relative;
}
.m-list dl dt:before {
  content: "";
  width: 60px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #333;
}
@media screen and (max-width: 768px) {
  .m-list dl dt:before {
    display: none;
  }
}
.m-list dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .m-list dl dd {
    border-bottom: 0;
  }
}
.m-list dl dd ul {
  margin: 0;
  list-style: disc;
}
.m-list dl dd ul li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.m-list dl dd ul li:last-child {
  margin-bottom: 0;
}
.m-list dl dd small {
  font-size: 0.85em;
  color: inherit;
  display: block;
  margin-top: 0.5em;
}
.m-list dl:last-child {
  border-bottom: 0;
}
.m-list dl:last-child dt, .m-list dl:last-child dd {
  border-bottom: 0;
}
.m-list dl:last-child dt:before, .m-list dl:last-child dd:before {
  display: none;
}
@media (max-width: 768px) {
  .m-list dl {
    display: block;
    border-top: 1px solid #BCBCBC;
    padding: 10px 20px;
  }
  .m-list dl dt {
    width: 100%;
    margin-bottom: 8px;
  }
  .m-list dl dd {
    width: 100%;
    padding-left: 0;
  }
}

/*----------------------------------------
	共通部分
----------------------------------------*/
/* 共通幅 */
body {
  overflow-x: clip;
}

.l-wrapper {
  overflow-x: clip;
  width: 100%;
}

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

.m-wrap {
  width: 1152px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .m-wrap {
    width: 100%;
    padding: 0 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-wrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .m-wrap {
    padding: 0 20px;
  }
}
.m-wrap.-small {
  max-width: 1072px;
}
.m-wrap.-big {
  width: 1400px;
}
@media screen and (max-width: 768px) {
  .m-wrap.-big {
    width: 98%;
  }
}

.m-wrap-small {
  width: 1072px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .m-wrap-small {
    width: 100%;
    padding: 0 0;
  }
}

.m-wrap__contents {
  width: 1152px;
}
@media screen and (max-width: 768px) {
  .m-wrap__contents {
    width: 100%;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1151px) {
  .m-wrap__contents {
    padding: 0 20px;
  }
}

.u-ta-c {
  text-align: center;
  margin-bottom: 20px;
}

.strong_title {
  font-weight: 500;
  font-size: 1.8rem;
}

.c-sec-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-sec-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

.c-sec-title {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .c-sec-title {
    font-size: 24px;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2E2E2E;
  color: #fff;
  padding: 12px 20px 12px 30px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url("../img/common/icon-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.header.is-fixed {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  padding-right: 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 60px;
    padding-right: 10px;
  }
}
.header__logo {
  margin: 0;
  background-color: #E66616;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  border-radius: 0 0 30px 0;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 0 15px;
    width: 65%;
    border-radius: 0 0 15px 0;
  }
}
.header__logo a {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header__nav-item {
  font-weight: bold;
  position: relative;
  padding: 30px 0;
}
.header__nav-item > a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-item > a:hover {
  color: #E66616;
}
.header__nav-item.has-mega:hover .header__mega-menu, .header__nav-item.has-mega.is-active .header__mega-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.header__mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(40px);
          transform: translateX(-50%) translateY(40px);
  width: 800px;
  background-color: #f7f9f9;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s, -webkit-transform 0.4s ease;
  padding: 30px;
  border-radius: 8px;
  pointer-events: none;
}
.header__nav-item.has-mega:hover .header__mega-menu, .header__nav-item.has-mega.is-active .header__mega-menu {
  pointer-events: auto;
}
.header__mega-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.header__mega-head {
  width: 200px;
}
.header__mega-title {
  font-size: 20px;
  margin-bottom: 15px;
}
.header__mega-btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header__mega-btn:hover {
  background-color: #E66616;
}
.header__mega-btn .arrow {
  margin-left: 10px;
}
.header__mega-links {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.header__mega-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__mega-links a .icon {
  color: #E66616;
  background: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__mega-links a:hover {
  color: #E66616;
}
.header__utils {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn--reserve {
  background-color: #E66616;
}
.header__btn--contact {
  background-color: #3A7CBD;
}
.header__btn .arrow {
  background: #fff;
  color: #333;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 8px;
  font-size: 10px;
}
.header__hamburger {
  background-color: #E66616;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header__hamburger:hover {
  background-color: rgb(183.4523809524, 81.3571428571, 17.5476190476);
}
.header__hamburger .icon {
  width: 20px;
  height: 2px;
  background: #fff;
  margin-bottom: 4px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__hamburger .icon::before, .header__hamburger .icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__hamburger .icon::before {
  top: -6px;
}
.header__hamburger .icon::after {
  top: 6px;
}
.header__hamburger .text {
  font-size: 10px;
  margin-top: 4px;
}
.header__hamburger.is-active .icon {
  background: transparent;
}
.header__hamburger.is-active .icon::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.is-active .icon::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.side-nav {
  position: fixed;
  left: 0;
  top: 150px;
  z-index: 90;
  background: #fff;
  border-radius: 0 10px 10px 0;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .side-nav {
    display: none;
  }
}
.side-nav__list, .side-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.side-nav__list a, .side-nav__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.side-nav__list a:hover, .side-nav__social a:hover {
  opacity: 0.7;
}
.side-nav__list a .icon, .side-nav__social a .icon {
  font-size: 20px;
  color: #E66616;
  margin-bottom: 5px;
}
.side-nav__social {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.c-sitemap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .c-sitemap {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}
.c-sitemap__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.c-sitemap__head {
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 8px;
  margin: 0 0 15px 0;
}
.c-sitemap__list li:last-child {
  margin-bottom: 0;
}
.c-sitemap__list a {
  font-size: 12px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: inline-block;
}
.c-sitemap__list a:hover {
  opacity: 0.7;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(123, 119, 112, 0.95);
  z-index: 90;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.drawer.is-active {
  opacity: 1;
  visibility: visible;
}

body.is-noscroll {
  overflow: hidden;
}

.footer__top {
  background-color: #7b7770;
  padding: 60px 0;
}
.footer__bottom {
  background-color: #fff;
  padding: 60px 0 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding: 40px 0 20px;
  }
}
.footer .totop {
  position: absolute;
  top: -25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #E66616;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  transition: background-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.footer .totop:hover {
  background-color: rgb(183.4523809524, 81.3571428571, 17.5476190476);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.footer .totop::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(2px) rotate(-45deg);
          transform: translateY(2px) rotate(-45deg);
}
.footer__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .footer__banners {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    margin-bottom: 40px;
  }
}
.footer__banners a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__banners a:hover {
  opacity: 0.8;
}
.footer__banners a img {
  max-width: 200px;
  height: auto;
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.footer__logo {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 220px;
  }
}
.footer__address {
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .footer__address {
    margin-left: 0;
  }
}
.footer__meta {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__meta {
    text-align: left;
  }
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer__links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__links a {
  font-size: 12px;
  font-weight: bold;
  color: #333;
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__copy {
  margin: 0;
  font-size: 10px;
  color: #333;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.m-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .m-wrap {
    padding: 0 15px;
  }
}

.mv {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .mv {
    height: calc(100vh - 70px);
    min-height: 800px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 650px;
  }
}
.mv {
  background: #333;
  overflow: hidden;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-bottom: 310px;
  }
}
.mv__slider {
  width: 100%;
  height: 100%;
}
.mv__slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
.mv__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__copy {
  position: absolute;
  top: 40%;
  left: 50%;
  text-align: center;
  z-index: 10;
  color: #fff;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.mv__copy-sub {
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .mv__copy-sub {
    font-size: 16px;
  }
}
.mv__copy-main {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mv__copy-main {
    font-size: 28px;
  }
}
.mv__controls {
  position: absolute;
  bottom: 120px;
  left: 80px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  z-index: 80;
}
@media screen and (max-width: 768px) {
  .mv__controls {
    display: none;
    left: 20px;
    bottom: 200px;
  }
}
.mv__ctrl-btn {
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.mv__ctrl-btn span {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.mv__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .mv__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mv__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  width: 51%;
  border-top-right-radius: 12px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv__info {
    border-top-right-radius: 0;
    width: 100%;
    height: auto;
  }
}
.mv__news {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F9EFE7;
}
.mv__news-label {
  background: #E66616;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mv__news-label {
    padding: 15px;
    display: none;
  }
}
.mv__news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .mv__news-content {
    padding: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.mv__news-content time {
  font-weight: bold;
  font-size: 14px;
}
.mv__news-content a {
  font-size: 14px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mv__news-content a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
.mv__study {
  background: #A0A5A9;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  font-weight: bold;
  gap: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mv__study:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .mv__study {
    padding: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.mv__study .arrow {
  background: #fff;
  color: #333;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
}
.mv__status {
  width: 27%;
  background: #fff;
  border-radius: 12px 0 0 0;
  padding: 12px;
  -webkit-box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .mv__status {
    width: 100%;
    margin-right: 0;
    border-radius: 0;
    padding: 20px 15px;
  }
}
.mv__status .clock {
  width: 16px;
  height: auto;
  position: relative;
  top: -6px;
  display: inline-block;
}
.mv__status-head {
  background: #E66616;
  color: #fff;
  border-radius: 6px;
  padding: 5px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.mv__status-head .title {
  font-size: 24px;
  margin: 0;
}
.mv__status-head .time {
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}
.mv__status-head .time .note {
  font-size: 12px;
  margin: 0;
  font-weight: normal;
}
.mv__status-body .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.mv__status-body .row .label {
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2px 10px;
  margin-right: 15px;
  font-size: 12px;
  min-width: 110px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv__status-body .row .label {
    min-width: 108px;
    margin-right: 10px;
  }
}
.mv__status-body .row .val {
  font-weight: bold;
}
.mv__status-body .row .num {
  font-size: 24px;
}
.mv__status-body .btn-wrap {
  text-align: center;
  margin-top: 15px;
}
.mv__status-body .modal-btn {
  background: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 5px 20px;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.mv__status-body .modal-btn:hover {
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .mv__status-body .modal-btn {
    font-size: 16px;
  }
}

.m-event {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .m-event {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.m-event__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .m-event__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.m-event__item a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.m-event__item a:hover {
  opacity: 0.7;
}
.m-event__thumb {
  position: relative;
  margin-bottom: 15px;
}
.m-event__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.m-event__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E60012;
  color: #fff;
  padding: 6px 16px;
  font-weight: bold;
  z-index: 2;
}
.m-event__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.m-event__tags li {
  border: 1px solid #333;
  padding: 4px 12px;
  font-weight: bold;
  font-size: 14px;
}
.m-event__title {
  font-weight: bold;
  margin: 0 0 10px 0;
  line-height: 1.4;
}
.m-event__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  color: #333;
  font-size: 14px;
}
.m-event__date .icon {
  position: relative;
  top: -4px;
  margin-right: 8px;
}

.m-about {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #FDFaf6;
  background-image: url("../img/front/bg-about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .m-about {
    padding-top: 35px;
    padding-bottom: 60px;
  }
}
.m-about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .m-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.m-about__content {
  width: 32%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  position: sticky;
  top: 0;
}
@media screen and (max-width: 768px) {
  .m-about__content {
    position: relative;
    width: 100%;
  }
}
.m-about__label {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 30px;
}
.m-about__label::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-right: 20px;
  width: 50vw;
  height: 1px;
  background-color: #333;
}
.m-about__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .m-about__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.m-about__desc {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .m-about__desc {
    margin-bottom: 0;
  }
}
.m-about__desc p {
  margin: 0 0 1.5em 0;
}
.m-about__desc p:last-child {
  margin-bottom: 0;
}
.m-about__gallery {
  width: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 2%;
}
@media screen and (max-width: 768px) {
  .m-about__gallery {
    width: 100%;
    gap: 20px 4%;
  }
}
.m-about__item {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .m-about__item {
    width: 48%;
  }
}
.m-about__item figure {
  margin: 0;
}
.m-about__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 6px;
}
.m-about__item figcaption {
  font-size: 14px;
}

.m-news {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .m-news {
    padding-top: 35px;
    padding-bottom: 60px;
  }
}
.m-news__box {
  background-color: #fff;
  padding: 20px 60px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 768px) {
  .m-news__box {
    padding: 15px 20px;
  }
}
.m-news__item {
  border-bottom: 1px solid #EAEAEA;
}
.m-news__item:last-child {
  border-bottom: none;
}
.m-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 0;
  gap: 30px;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
}
.m-news__link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .m-news__link {
    padding: 20px 0;
    gap: 15px;
  }
}
.m-news__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.m-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .m-news__meta {
    font-size: 12px;
    gap: 10px;
  }
}
.m-news__meta time {
  font-weight: bold;
  color: #333;
}
.m-news__cat {
  border: 1px solid #333;
  padding: 2px 10px;
  font-size: 12px;
  background-color: #fff;
}
.m-news__new {
  color: #E60012;
  font-weight: bold;
  font-size: 12px;
}
.m-news__title {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media screen and (max-width: 768px) {
  .m-news__title {
    font-size: 14px;
  }
}
.m-news__arrow {
  width: 30px;
  height: 30px;
  background-color: #E66616;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.m-news__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.m-tour {
  position: relative;
  background-color: #E66616;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .m-tour {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.m-tour::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("../img/common/fukuoka_illust.svg");
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.m-tour .m-wrap {
  position: relative;
  z-index: 2;
}
.m-tour__header {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .m-tour__header {
    width: 62%;
    margin: 0 auto 20px;
  }
}
.m-tour__header img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.m-tour__slider {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .m-tour__slider {
    padding: 0 30px;
  }
}
.m-tour__item {
  padding: 0 10px;
}
.m-tour__item a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.m-tour__item a:hover {
  opacity: 0.8;
}
.m-tour__item figure {
  margin: 0;
}
.m-tour__item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.m-tour__item figcaption {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .m-tour__item figcaption {
    font-size: 12px;
  }
}
.m-tour .slick-arrow {
  position: absolute;
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #333;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.m-tour .slick-arrow:hover {
  background-color: #555;
}
.m-tour .slick-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.m-tour .slick-arrow.slick-prev {
  left: -10px;
}
.m-tour .slick-arrow.slick-prev::after {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.m-tour .slick-arrow.slick-next {
  right: -10px;
}
.m-tour .slick-arrow.slick-next::after {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .m-tour .slick-arrow {
    width: 36px;
    height: 36px;
  }
  .m-tour .slick-arrow.slick-prev {
    left: 15px;
  }
  .m-tour .slick-arrow.slick-next {
    right: 15px;
  }
}

.m-access {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .m-access {
    padding-top: 35px;
    padding-bottom: 60px;
  }
}
.m-access__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .m-access__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
.m-access__info {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .m-access__info {
    width: 100%;
  }
}
.m-access__hr {
  width: 100%;
  height: 3px;
  background-color: #E66616;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .m-access__hr {
    margin-bottom: 20px;
  }
}
.m-access__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .m-access__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }
}
.m-access__row:last-child {
  margin-bottom: 0;
}
.m-access__label {
  width: 120px;
  font-weight: bold;
  color: #333;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .m-access__label {
    width: auto;
  }
}
.m-access__val {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.m-access__map {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .m-access__map {
    width: 100%;
  }
}
.m-access__map-iframe {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
.m-access__map-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .c-sec-header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px;
  }
  .c-sec-header__btn a {
    text-align: center;
    width: 92%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .m-about__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px;
  }
  .m-about__btn a {
    width: 92%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}