@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: #C2381D;
  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 span {
  font-size: 12px;
  display: block;
  font-weight: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #C2381D;
  border-right: solid 2px #C2381D;
  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: 150px;
  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); /* 元の位置に移動 */
}

.follow__btn {
  position: fixed;
  bottom: 5px;
  right: -10px;
  z-index: 1001;
  background-image: url(../img/cta__btn__bg.png);
  background-size: cover;
  background-position: center;
  height: 136px;
  width: 210px;
}
.follow__btn:hover {
  cursor: pointer;
  background-image: url(../img/cta__btn__bg__h.png);
}
.follow__btn a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5em;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 33px 10px;
}
.follow__btn a span {
  font-size: 24px;
  font-weight: bold;
}

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

                        モーダル

----------------------------------------------------------------*/
.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: #C2381D;
}
.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: #C2381D;
  cursor: pointer;
  border: 1px solid #C2381D;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
.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;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.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;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        イントロ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.introduction {
  padding-top: 60px;
}
.introduction .introduction__top {
  background-color: #b09453;
  padding: 30px;
}
.introduction .introduction__top p {
  padding: 30px 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;
}
.introduction .introduction__top ul {
  width: auto;
  margin: 0 auto;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px 60px;
}
.introduction .introduction__top ul li {
  text-align: left;
  color: #fff;
  width: auto;
  align-items: normal;
  display: block;
  position: relative;
  margin-top: 0;
}
.introduction .introduction__top ul li::first-letter {
  margin-left: -1em;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        概要
----------------------------------------------------------------*
----------------------------------------------------------------*/
.back__red {
  background-image: url(../img/bg__01.jpg);
  background-repeat: repeat-y;
}
.back__red .modal-content {
  background-color: #C2381D;
  background-blend-mode: multiply;
  background-repeat: repeat;
}
.back__red .overview__list {
  background-color: #C2381D;
  background-blend-mode: multiply;
  background-repeat: repeat;
  transition: 0.5s;
  animation: 3s;
}
.back__red .overview__list .overview__icon {
  border: 5px solid #C2381D;
}
.back__red .overview__top {
  background-color: #C2381D;
}
.back__red table {
  background-color: #fff;
}
.back__red table tr th {
  background-blend-mode: multiply;
  background-repeat: repeat;
  color: #C2381D;
}
.back__red table tr td {
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #C2381D;
}
.back__red table tr td dl dt {
  background-color: #C2381D;
  background-blend-mode: multiply;
  background-repeat: repeat;
}

.back__red .overview__top {
  background-color: #C2381D;
}

.back__orange .overview__top {
  background-color: #D98801;
}
.back__orange .overview__top h2 span {
  font-size: 24px;
}

.overview {
  padding-bottom: 60px;
  overflow-x: hidden;
}
.overview .overview__top {
  position: relative;
  width: calc(var(--vw, 1vw) * 100);
  margin: 0 calc(50% - 50vw);
  padding-right: 7px;
}
.overview .overview__top h2 {
  padding: 20px 0;
  font-size: 40px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.overview table {
  margin-top: 60px;
  background-color: #fff;
  position: relative;
  width: 100%;
}
.overview table tr {
  padding: 15px;
}
.overview table tr th {
  width: 30%;
  padding: 15px;
  color: #C2381D;
  text-align: left;
  vertical-align: middle;
  font-size: 22px;
  border-bottom: 1px solid #C2381D;
  border-right: #C2381D 1px solid;
}
.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 span {
  color: #C2381D;
}
.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: #C2381D;
}
.overview table tr td span {
  font-size: 14px;
  line-height: 24px;
}
.overview table tr td span a {
  display: block;
}
.overview .overview__list__wrap {
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.overview .overview__list__wrap li {
  width: auto;
  align-items: stretch;
  display: flex;
  position: relative;
  margin-top: 120px;
}
.overview .overview__list__wrap li .overview__list {
  border-radius: 15px;
  padding: 60px;
}
.overview .overview__list__wrap li .overview__list h3 {
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.overview .overview__list__wrap li .overview__list dl {
  display: flex;
  justify-content: space-between;
}
.overview .overview__list__wrap li .overview__list dl dt {
  width: 70%;
  font-size: 24px;
  line-height: 1.5em;
  color: #fff;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.overview .overview__list__wrap li .overview__list dl dd {
  width: 30%;
}
.overview .overview__list__wrap li .overview__list dl dd a {
  display: block;
  width: auto;
  text-decoration: none;
  font-size: 24px;
  line-height: 72px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 15px;
}
.overview .overview__list__wrap li .overview__list dl dd a:hover {
  background-color: #fff;
  color: #C2381D;
}
.overview .overview__list__wrap li .overview__list .border__bottom dl {
  border-bottom: 1px solid #fff;
  margin-top: 30px;
  padding-bottom: 30px;
}
.overview .overview__list__wrap li .overview__list .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 .overview__icon p {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: bold;
  font-size: 50px;
  text-align: center;
  line-height: 90px;
  text-shadow: none;
  color: #C2381D;
  padding: 0;
}
.overview .overview__list__wrap li .overview__list .overview__icon p span {
  font-size: 24px;
  line-height: 30px;
  display: block;
  margin-top: -20px;
}
.overview .overview__apply {
  margin-top: 60px;
}
.overview .overview__apply a {
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  font-size: 24px;
  line-height: 60px;
  color: #C2381D;
  background-color: #fff;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #C2381D;
}
.overview .overview__apply a:hover {
  background-color: #C2381D;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}

.showcase__wrap {
  margin-top: 60px;
}
.showcase__wrap ul li {
  border: 2px solid #D98801;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.showcase__wrap ul li h4 {
  font-size: 18px;
  line-height: 1.5em;
  color: #333;
  text-align: center;
  padding-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.showcase__wrap ul li .showcase__inner {
  display: flex;
  justify-content: space-between;
}
.showcase__wrap ul li .showcase__inner .thumbnail {
  width: 48%;
}
.showcase__wrap ul li .showcase__inner .thumbnail img {
  width: 100%;
  height: auto;
}
.showcase__wrap ul li .showcase__inner .showcase__text {
  position: relative;
  width: 48%;
}
.showcase__wrap ul li .showcase__inner .showcase__text p {
  font-size: 18px;
  line-height: 1.5em;
  color: #333;
}
.showcase__wrap ul li .showcase__inner .showcase__text .showcase__btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.showcase__wrap ul li .showcase__inner .showcase__text .showcase__btn a {
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #D98801;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 18px;
}
.showcase__wrap ul li .showcase__inner .showcase__text .showcase__btn a:hover {
  background-color: rgb(166.2339449541, 104.1834862385, 0.7660550459);
  cursor: pointer;
}

.showcase__more {
  margin-top: 30px;
  text-align: center;
  background-color: #b09453;
  padding: 60px;
  border-radius: 15px;
}
.showcase__more p {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 0;
}
.showcase__more a {
  display: block;
  width: 300px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 50px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 60px;
}
.showcase__more a:hover {
  background-color: #D98801;
  color: #fff;
  cursor: pointer;
}

.showcase__column {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: auto;
}
.showcase__column .showcase__more {
  width: 45%;
}

.showcase__red {
  background-color: #C2381D;
}

.showcase__brown {
  background-color: #6B4300;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.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: #D98801;
  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 */