@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

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

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  cursor: pointer;
  border: 3px solid #b09453;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #b09453;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #b09453;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #c52922;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #c52922;
  border-right: solid 2px #c52922;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative;
}
header .header__inner .header_logo {
  width: 60px;
}

.hamburger-menu .sns__nav {
  width: 200px;
}
.hamburger-menu .sns__nav ul {
  margin-top: 15px;
  padding-top: 0;
}
.hamburger-menu .sns__nav ul li {
  border: none;
}
.hamburger-menu .sns__nav ul li a::before {
  display: none;
}
.hamburger-menu .sns__nav ul li a img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content .modal-content__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-content .modal-content__wrap .modal--text {
  width: 100%;
  font-size: 20px;
}
.modal .modal-content .modal-content__wrap .modal--text .anchor {
  text-align: center;
}
.modal .modal-content .modal-content__wrap .modal--text a {
  font-weight: 500;
  color: #fff;
}
.modal .modal-content .modal-content__wrap .modal--text a:hover {
  color: #c52922;
}
.modal .modal-content .modal-content__wrap .modal--text p {
  font-weight: 500;
  line-height: 30px;
  color: #fff;
  text-align: center;
  padding: 0 30px;
  font-size: 20px;
}
.modal .modal-content .modal-content__wrap .modal--text dl {
  margin-top: 30px;
}
.modal .modal-content .modal-content__wrap .modal--text dl dt {
  font-weight: 500;
  display: block;
  line-height: 40px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
  border: 1px solid #fff;
  width: 300px;
  margin: 0 auto;
  font-size: 20px;
}
.modal .modal-content .modal-content__wrap .modal--text dl dd {
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 30px;
  line-height: 30px;
  display: block;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}
.modal .modal-content .modal-content__wrap .modal--text .overview__date ul {
  background-color: #fff;
  margin: 0 auto;
  width: 240px;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.modal .modal-content .modal-content__wrap .modal--text .overview__date ul li {
  color: #333;
  font-weight: bold;
  width: auto;
  align-items: normal;
  display: block;
  position: relative;
  margin-top: 0;
  font-size: 16px;
}
.modal .modal-content .modal-content__wrap .modal--text .overview__list__detail ul {
  width: 80%;
  margin: 30px auto;
}
.modal .modal-content .modal-content__wrap .modal--text .overview__list__detail ul li {
  text-align: left;
  color: #fff;
  width: auto;
  align-items: normal;
  display: block;
  position: relative;
  margin-top: 0;
}
.modal .modal-content .modal-content__wrap .modal--text .overview__list__detail ul li::first-letter {
  margin-left: -1em;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  color: #fff;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #fff;
}
.modal .close p:hover {
  background-color: #c52922;
  cursor: pointer;
  border: 1px solid #c52922;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: 80%;
  max-width: 1800px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
header .header__inner .sns__nav {
  width: 200px;
  margin-left: 100px;
  position: absolute;
  right: 10px;
}
header .header__inner .sns__nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .sns__nav ul li {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 100%;
  padding: 10px;
}
header .header__inner .sns__nav ul li:hover {
  background-color: #b09453;
}
header .header__inner .sns__nav ul li a img {
  width: 100%;
  height: auto;
}

.hamburger-menu {
  display: block;
}
.hamburger-menu .sns__nav {
  width: 200px;
}
.hamburger-menu .sns__nav ul {
  display: flex;
  justify-content: space-between;
}
.hamburger-menu .sns__nav ul li {
  width: 50px;
  height: 50px;
}
.hamburger-menu .sns__nav ul li a {
  width: 50px;
  height: 50px;
}
.hamburger-menu .sns__nav ul li a img {
  width: 100%;
  height: auto;
}
.hamburger-menu .header_logo__wrap {
  width: 60px;
  margin-left: 20px;
}
.hamburger-menu .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.hamburger-menu .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

.back__01 {
  background-color: #fff;
}

.back__02 {
  background-image: url(../img/mic__bg.png);
  background-size: cover;
  background-position: center bottom;
}

.back__03 {
  background-image: url("../img/top__bg.png"), url("../img/bottom__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 40%, 40%;
  background-color: #fff;
}

.back__04 {
  background-color: #4B9FC0;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  width: auto;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
}
.mainvisual .mainvisual__inner .mainvisual__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.section__title {
  width: auto;
  margin: 0 auto;
}
.section__title h2 {
  padding: 15px 0;
  display: block;
  width: auto;
  margin: 0 auto;
}
.section__title h2 img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction {
  padding-top: 30px;
}
.introduction .introduction__top {
  background-color: #b09453;
  background-image: url("../img/top__bg__w.png"), url("../img/bottom__bg__w.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  background-size: 40%, 40%;
  border: 5px solid #fff;
}
.introduction .introduction__top p {
  padding: 60px 0;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 0 #b09453, -1px 1px 0 #b09453, -1px -1px 0 #b09453, 1px -1px 0 #b09453;
  font-weight: bold;
}
.introduction ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.introduction ul li {
  width: 48%;
  margin-top: 60px;
  border-radius: 15px;
  border: solid 5px #fff;
}
.introduction ul li:nth-child(1) {
  background-color: #BBC03A;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.introduction ul li:nth-child(1):hover {
  background-color: #fff;
  border: solid 5px #b09453;
}
.introduction ul li:nth-child(2) {
  background-color: #DB4A12;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.introduction ul li:nth-child(2):hover {
  background-color: #fff;
  border: solid 5px #b09453;
}
.introduction ul li:nth-child(3) {
  background-color: #4B9FC0;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.introduction ul li:nth-child(3):hover {
  background-color: #fff;
  border: solid 5px #b09453;
}
.introduction ul li:nth-child(4) {
  background-color: #c52922;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.introduction ul li:nth-child(4):hover {
  background-color: #fff;
  border: solid 5px #b09453;
}
.introduction ul li a {
  text-decoration: none;
}
.introduction ul li a .introduction__txt {
  position: relative;
}
.introduction ul li a .introduction__txt .ribbon__wrap {
  position: absolute;
  width: 250px;
  left: calc(50% - 146px);
  top: -31px;
  z-index: 2;
}
.introduction ul li a .introduction__txt .ribbon__wrap .ribbon {
  display: inline-block;
  position: relative;
  height: 45px;
  text-align: center;
  box-sizing: border-box;
  margin: 0 auto;
}
.introduction ul li a .introduction__txt .ribbon__wrap .ribbon::before {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -35px;
  z-index: -2;
  border: 20px solid #005b5a;
  border-left-color: transparent; /*山形に切り抜き*/
}
.introduction ul li a .introduction__txt .ribbon__wrap .ribbon::after { /*右側のリボン端*/
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -35px;
  z-index: -2;
  border: 20px solid #005b5a;
  border-right-color: transparent; /*山形に切り抜き*/
}
.introduction ul li a .introduction__txt .ribbon__wrap .ribbon h3 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0 20px;
  line-height: 45px;
  font-size: 18px;
  color: #FFF;
  background: #005b5a; /*真ん中の背景色*/
  width: 250px;
}
.introduction ul li a .introduction__txt .ribbon__wrap .ribbon h3::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px #013332; /*左の折り返し部分*/
}
.introduction ul li a .introduction__txt .ribbon__wrap .ribbon h3::after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 15px #013332; /*右の折り返し部分*/
}
.introduction ul li a .introduction__txt p {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  padding-top: 60px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.introduction ul li a .introduction__txt .arrow {
  position: relative;
  display: block;
  width: 26.6px;
  height: 15.3px;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
}
.introduction ul li a .introduction__txt .arrow::before,
.introduction ul li a .introduction__txt .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 20px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% calc(100% - 2px);
}
.introduction ul li a .introduction__txt .arrow::before {
  transform: rotate(45deg);
}
.introduction ul li a .introduction__txt .arrow::after {
  transform: rotate(-45deg);
}
.introduction ul li a:hover .introduction__txt p {
  color: #b09453;
}
.introduction ul li a:hover .introduction__txt .arrow::before,
.introduction ul li a:hover .introduction__txt .arrow::after {
  background-color: #b09453;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        概要
----------------------------------------------------------------*
----------------------------------------------------------------*/
.back__green .modal-content {
  background-color: #BBC03A;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.back__green .overview__list {
  background-color: #BBC03A;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
  transition: 0.5s;
  animation: 3s;
}
.back__green .overview__list .overview__icon {
  border: 5px solid #BBC03A;
}
.back__green .overview__list:hover {
  background-color: #c52922;
}
.back__green .overview__list:hover .overview__icon {
  border: 5px solid #c52922;
}
.back__green .overview__top {
  background-color: #BBC03A;
  background-image: url("../img/title__bg.png"), url("../img/title__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: 20%, 20%;
}
.back__green .overview__sub {
  background-color: #BBC03A;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.back__green table {
  background-color: #fff;
  border: 5px solid #BBC03A;
}
.back__green table tr th {
  background-color: #BBC03A;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.back__green table tr td {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #BBC03A;
}
.back__green table tr td dl dt {
  background-color: #BBC03A;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}

.back__orange .modal-content {
  background-color: #DB4A12;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.back__orange .overview__list {
  background-color: #DB4A12;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
  transition: 0.5s;
  animation: 3s;
}
.back__orange .overview__list .overview__icon {
  border: 5px solid #DB4A12;
}
.back__orange .overview__list:hover {
  background-color: #c52922;
}
.back__orange .overview__list:hover .overview__icon {
  border: 5px solid #c52922;
}
.back__orange .overview__top {
  background-color: #DB4A12;
  background-image: url("../img/title__bg_y.png"), url("../img/title__bg_y.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: 20%, 20%;
}
.back__orange .overview__sub {
  background-color: #DB4A12;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.back__orange table {
  background-color: #fff;
  border: 5px solid #DB4A12;
}
.back__orange table tr th {
  background-color: #DB4A12;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.back__orange table tr td {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #DB4A12;
}

.back__blue .overview__list {
  background-color: #4B9FC0;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
  transition: 0.5s;
  animation: 3s;
}
.back__blue .overview__list .overview__icon {
  border: 5px solid #4B9FC0;
}
.back__blue .overview__list:hover {
  background-color: #c52922;
}
.back__blue .overview__list:hover .overview__icon {
  border: 5px solid #c52922;
}
.back__blue .overview__top {
  background-color: #4B9FC0;
  background-image: url("../img/title__bg.png"), url("../img/title__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: 20%, 20%;
}
.back__blue .overview__sub {
  background-color: #4B9FC0;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.back__blue table {
  background-color: #fff;
  border: 5px solid #4B9FC0;
}
.back__blue table tr th {
  background-color: #4B9FC0;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.back__blue table tr td {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #4B9FC0;
}
.back__blue table tr td dl dt {
  background-color: #4B9FC0;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}

.overview .back__sub {
  position: relative;
  background-color: #005b5a;
  background-image: url(../img/bg_pattern.webp);
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.overview .back__sub .overview__sub {
  padding: 60px;
}
.overview .back__sub .overview__sub p {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  text-align: center;
}
.overview .back__sub .overview__detail {
  border-bottom: none;
  border-top: none;
  margin-top: 0;
  width: 80%;
  margin: 0 auto;
}
.overview .back__sub .overview__detail a {
  color: #fff;
}
.overview .back__sub .overview__detail p {
  font-size: 18px;
  color: #fff;
  font-weight: normal;
  text-align: left;
}

.back__red .overview__top {
  background-color: #b09453;
  background-image: url("../img/title__bg.png"), url("../img/title__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: 20%, 20%;
}

.overview {
  padding-top: 60px;
  padding-bottom: 60px;
}
.overview .overview__top {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  width: calc(var(--vw, 1vw) * 100);
  margin: 0 calc(50% - 50vw);
  padding-right: 7px;
}
.overview .overview__top .overview__top__hat img {
  width: 100%;
  height: auto;
}
.overview .overview__top h3 {
  padding: 15px 0;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.overview .overview__sub {
  padding: 30px;
  margin-top: 30px;
}
.overview .overview__sub p {
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  text-align: center;
}
.overview .overview__detail {
  margin-top: 30px;
  border-top: #333 1px dotted;
  border-bottom: #333 1px dotted;
}
.overview .overview__detail p {
  padding: 15px 0;
  font-size: 24px;
  line-height: 40px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.overview .overview__detail p span {
  font-size: 18px;
  line-height: 30px;
  display: block;
  margin-top: 15px;
}
.overview .overview__link {
  margin-top: 30px;
  text-align: center;
}
.overview .overview__link ul {
  display: flex;
  justify-content: space-evenly;
}
.overview .overview__link ul li a {
  position: relative;
  padding-right: 30px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #b09453;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 70px;
  transition: background-color 0.3s ease;
  width: 100%;
  box-shadow: 0px 5px 0px 0px #736139;
}
.overview .overview__link ul li a:hover {
  background-color: #c52922;
}
.overview .overview__link ul li a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-135deg);
  box-sizing: content-box;
  transition: 0.6s cubic-bezier;
}
.overview table {
  margin-top: 60px;
  background-color: #fff;
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
.overview table tr {
  padding: 15px;
}
.overview table tr th {
  width: 30%;
  padding: 15px;
  color: #fff;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
  font-size: 22px;
  border-bottom: 1px solid #fff;
}
.overview table tr td {
  padding: 15px;
  background-color: #fff;
  color: #333;
  font-weight: normal;
  text-align: left;
  font-size: 20px;
  line-height: 30px;
}
.overview table tr td dl dt {
  display: block;
  color: #fff;
  padding: 15px;
  font-size: 22px;
}
.overview table tr td dl dd {
  display: block;
  margin-left: 10px;
  font-weight: normal;
  color: #333;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 30px;
}
.overview table tr td dl dd strong {
  font-size: 24px;
  line-height: 30px;
  font-weight: bold;
  color: #c52922;
}
.overview table tr td span {
  font-size: 14px;
  line-height: 24px;
}
.overview table tr td span a {
  display: block;
}
.overview .overview__list__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.overview .overview__list__wrap li {
  width: 48%;
  align-items: stretch;
  display: flex;
  position: relative;
  margin-top: 120px;
}
.overview .overview__list__wrap li .overview__list {
  border-radius: 15px;
}
.overview .overview__list__wrap li .overview__list a {
  display: block;
  padding: 60px 5%;
  padding-top: 0;
  padding-bottom: 150px;
  margin-top: 80px;
  text-decoration: none;
}
.overview .overview__list__wrap li .overview__list a h4 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.overview .overview__list__wrap li .overview__list a .overview__more {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
.overview .overview__list__wrap li .overview__list a .overview__more p {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  line-height: 60px;
  border: 1px solid #fff;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.overview .overview__list__wrap li .overview__list a .overview__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: -50px;
  left: -10px;
}
.overview .overview__list__wrap li .overview__list a .overview__icon p {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: bold;
  font-size: 50px;
  text-align: center;
  line-height: 89px;
  text-shadow: none;
  color: #c52922;
  padding: 0;
}
.overview .overview__list__second {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.overview .overview__list__second .second__detail {
  margin: 15px;
  width: 40%;
  background-color: #b09453;
  border-radius: 15px;
  padding: 30px;
}
.overview .overview__list__second .second__detail h3 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.overview .overview__list__second .second__detail p {
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.overview .overview__apply {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../img/kansya__left__bg.png"), url("../img/kansya__right__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left, right;
  background-size: 10%, 10%;
  background-color: #fff;
}
.overview .overview__apply h3 {
  margin-top: 60px;
  font-size: 40px;
  line-height: 50px;
  color: #b09453;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.overview .overview__apply a.btn--yellow {
  margin: 0 auto;
  margin-top: 0;
  display: block;
  color: #fff;
  background-color: #c52922;
  border-bottom: 10px solid #7a1b16;
  text-decoration: none;
  font-size: 40px;
  text-align: center;
  line-height: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  width: 60%;
  position: relative;
  border-radius: 60px;
  height: 110px;
  padding-top: 10px;
}
.overview .overview__apply a.btn--yellow::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border-left: 5px solid #fff;
  border-bottom: 5px solid #fff;
  transform: rotate(-135deg);
  box-sizing: content-box;
  transition: 0.6s cubic-bezier;
}
.overview .overview__apply a.btn--yellow:hover {
  color: #fff;
  background: #b09453;
  border-bottom: 10px solid #736139;
}
.overview .overview__apply p {
  font-size: 16px;
  line-height: 30px;
  color: #333;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.overview .overview__apply dl {
  width: 50%;
  margin: 0 auto;
  border: 1px solid #b09453;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.overview .overview__apply dl dt {
  display: block;
  font-size: 16px;
  line-height: 50px;
  color: #fff;
  text-align: left;
  background-color: #b09453;
  padding: 0 15px;
}
.overview .overview__apply dl dd {
  margin-top: 15px;
  display: block;
  margin-left: 10px;
  font-weight: normal;
  color: #333;
  font-size: 14px;
  line-height: 24px;
}

.campaign04 p {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
.campaign04 ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
}
.campaign04 ul li {
  width: 42%;
  background-color: #fff;
  border-radius: 15px;
  border: 5px solid #b09453;
  padding: 30px;
  padding-bottom: 200px;
  margin-top: 30px;
  position: relative;
}
.campaign04 ul li .campaign04__link {
  width: 50%;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.campaign04 ul li .campaign04__link a {
  display: block;
  padding: 30px 0;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  background-color: #b09453;
  border-radius: 15px;
}
.campaign04 ul li .campaign04__link a:hover {
  background-color: #c52922;
}
.campaign04 ul li h4 {
  display: block;
  width: auto;
  width: 60%;
  margin: 0 auto;
}
.campaign04 ul li h4 img {
  width: 100%;
  height: auto;
}
.campaign04 ul li dl {
  width: 80%;
  margin: 0 auto;
}
.campaign04 ul li dl dt {
  font-size: 24px;
  line-height: 40px;
  color: #c52922;
  text-align: center;
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.campaign04 ul li dl dd {
  font-size: 20px;
  line-height: 34px;
  color: #333;
  text-align: left;
  margin-top: 30px;
}

.precautions h4 {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  margin-top: 60px;
  border-bottom: #fff 1px solid;
  padding-bottom: 30px;
}
.precautions p {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.precautions p a {
  color: #fff;
}
.precautions ul {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}
.precautions ul li {
  width: auto;
  align-items: normal;
  display: block;
  position: relative;
  margin-top: 0;
  text-align: left;
  color: #fff;
  font-size: 18px;
}
.precautions ul li a {
  color: #fff;
}
.precautions ul li::first-letter {
  margin-left: -1em;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer {
  border-top: 1px solid #333;
  margin-top: 60px;
}
.footer .ponsorship__wrap {
  padding: 30px;
}
.footer .ponsorship__wrap .section__wrap {
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
}
.footer .ponsorship__wrap .section__wrap ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  margin: 0 auto;
}
.footer .ponsorship__wrap .section__wrap ul li {
  width: 30%;
  font-size: 11px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 20px;
}
.footer .ponsorship__wrap .section__wrap ul li a {
  color: #333;
}
.footer .ponsorship__wrap .section__wrap p {
  font-size: 11px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 20px;
}

.app__area__wrap {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
}
.app__area__wrap h2 {
  width: auto;
  display: flex;
  font-size: 40px;
  color: #DB4A12;
  text-align: center;
  width: 650px;
  margin: 0 auto;
  font-weight: bold;
}
.app__area__wrap h2 span {
  display: block;
  width: 200px;
  margin-top: -20px;
}
.app__area__wrap h2 span img {
  width: 100%;
  height: auto;
}
.app__area__wrap .app__area {
  margin-top: 47px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: flex-end;
}
.app__area__wrap .app__area .icon--app {
  width: 72px;
}
.app__area__wrap .app__area .icon--app img {
  width: 100%;
  height: auto;
}
.app__area__wrap .app__area ul {
  width: 250px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
}
.app__area__wrap .app__area ul li {
  width: 108px;
}
.app__area__wrap .app__area ul li img {
  width: 100%;
  height: auto;
}
.app__area__wrap .app__area ul li p {
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  font-size: 16px;
}
.app__area__wrap .app__area ul li a img {
  width: 100%;
  height: auto;
}
.app__area__wrap .app__area ul li:nth-child(2) {
  width: 134px;
}

.footer__icon--sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  margin-top: 30px;
}
.footer__icon--sns ul li {
  width: 47px;
}
.footer__icon--sns ul li a img {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=common.css.map */