@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
----------------------------------------------------------------*/
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.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;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #000;
  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 #000;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-weight: 400;
  font-style: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  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: 100px;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.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: 999;
  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: #000;
  text-align: center;
  font-weight: bold;
  line-height: 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); /* 元の位置に移動 */
}

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

                        ぷるんとなる

----------------------------------------------------------------*/
.purin.is-animated {
  animation: poyoyon2 1s ease-in-out forwards;
}

@keyframes poyoyon2 {
  0% {
    transform: scale(1) translateY(0);
  }
  15% {
    transform: scale(0.98, 0.9) translateY(5px);
  }
  30% {
    transform: scale(1.02, 1) translateY(8px);
  }
  50% {
    transform: scale(0.98, 1.05) translateY(-8px);
  }
  70% {
    transform: scale(1, 0.9) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
/* --------------------------------------------------------------

                        ぽよよんとなる

----------------------------------------------------------------*/
.poyoyon {
  opacity: 0;
}

.poyoyon.is-animated {
  animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) forwards;
  animation-delay: 1s;
}

@keyframes poyoyon {
  0% {
    transform: translateY(250px) rotate(-10deg) scale(0.7);
    opacity: 0;
  }
  60% {
    transform: translateY(-60px) rotate(5deg) scale(1.1);
    opacity: 1;
  }
  80% {
    transform: translateY(10px) rotate(-3deg) scale(0.95);
  }
  90% {
    transform: translateY(-5px) rotate(2deg) scale(1.02);
  }
  100% {
    transform: translateY(0) rotate(0) scale(1);
  }
  20%, 100% {
    opacity: 1;
  }
}
/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.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 p {
  font-size: 24px;
  line-height: 30px;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  background-color: #fff;
  color: #000;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #000;
}
.modal .close p:hover {
  color: #fff;
  background-color: #000;
  cursor: pointer;
  border: 1px solid #000;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
header .header__inner {
  width: 80%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header__inner .header_logo {
  width: 250px;
  height: auto;
  z-index: 90;
}
header .header__inner .header_logo a {
  display: block;
}
header .header__inner .header_logo a img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: auto;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
header .header__inner .header_nav ul li a {
  color: #000;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  line-height: 59px;
  transition: all 0.5s ease 0s;
}
header .header__inner .header_nav ul li a:hover {
  color: #c00000;
}

.show .header__inner .header_logo {
  display: none;
}
.show .header__inner .pc {
  display: none;
}
.show .sp {
  display: block;
}
.show .sp .header_logo__wrap {
  width: 125px;
  margin-left: 20px;
}
.show .sp .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.show .sp .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: auto;
  margin-top: 74px;
  position: relative;
}
.mainvisual h1 img {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__link {
  z-index: 10;
  position: absolute;
  bottom: -100px;
  left: 100px;
  width: 200px;
}
.mainvisual .mainvisual__link a {
  text-decoration: none;
  display: block;
}
.mainvisual .mainvisual__link a img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.mainvisual .mainvisual__link a:hover img {
  transform: scale(1.1);
}
.mainvisual .mainvisual__link a p {
  background-color: #fff;
  font-size: 16px;
  color: #000;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  border-radius: 10px;
}

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

.section__title h2 {
  font-size: 48px;
  color: #000;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.apply__link {
  margin-top: 30px;
}
.apply__link a {
  width: 60%;
  max-width: 800px;
  background-color: #c00000;
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  padding: 20px 0;
  border-radius: 60px;
  border: 5px solid #000;
  transition: all 0.5s ease 0s;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  text-decoration: none;
  line-height: 60px;
  width: 100%;
  position: relative;
}
.apply__link a:hover {
  transform: translateY(2px);
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.2509803922);
  background-color: #FFAF09;
}
.apply__link a:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2509803922);
}
.apply__link a::after {
  content: "";
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 50px 50px;
  display: inline-block;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ1
----------------------------------------------------------------*
----------------------------------------------------------------*/
.content_01__wrap {
  background-color: #3D0B85;
  border-radius: 50px 50px 0 0;
  position: relative;
  margin-top: -50px;
  padding-bottom: 100px;
}
.content_01__wrap .application {
  border-radius: 60px;
  border: 5px solid #000;
  background-color: #fff;
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
  padding: 16px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.content_01__wrap .application dl {
  display: flex;
  margin: 0 auto;
  width: 90%;
  max-width: 710px;
}
.content_01__wrap .application dl dt {
  width: 10%;
  font-size: 32px;
  color: #000;
  font-weight: bold;
}
.content_01__wrap .application dl dd {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  align-items: center;
}
.content_01__wrap .application dl dd:last-of-type::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 20px;
  margin-right: 20px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 15px solid #000;
  align-self: center;
}
.content_01__wrap .application dl dd p {
  font-size: 40px;
  color: #000;
  font-weight: bold;
}
.content_01__wrap .application dl dd p strong {
  font-size: 64px;
  font-weight: bold;
}
.content_01__wrap .application dl dd .day_week {
  background-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.content_01__wrap .application dl dd .day_week p {
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-weight: bold;
}
.content_01__wrap .kaki_icon {
  margin: 0 auto;
  padding-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.content_01__wrap .kaki_icon .kaki_icon__img {
  width: 55px;
}
.content_01__wrap .kaki_icon .kaki_icon__img img {
  width: 100%;
  height: auto;
}
.content_01__wrap .kaki_icon h2 {
  font-size: 48px;
  line-height: 50px;
  color: #FFAF09;
  font-weight: bold;
  text-align: center;
  display: block;
}
.content_01__wrap .content_01--text {
  margin-top: 30px;
}
.content_01__wrap .content_01--text p {
  font-size: 32px;
  color: #fff;
  text-align: center;
  line-height: 50px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ2
----------------------------------------------------------------*
----------------------------------------------------------------*/
.content_02__wrap {
  background-color: #fff;
  background-image: url("../img/concentration.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  padding-top: 100px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.content_02__wrap h2 {
  display: block;
  position: relative;
  height: 120px; /*リボンの高さ*/
  line-height: 120px; /*リボンの高さ*/
  text-align: center;
  padding: 0 30px; /*横の大きさ*/
  background: #c00000; /*塗りつぶし色*/
  color: #FFF; /*文字色*/
  box-sizing: border-box;
  font-size: 48px;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
}
.content_02__wrap h2 strong {
  font-size: 64px;
  font-weight: bold;
}
.content_02__wrap h2:before, .content_02__wrap h2:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.content_02__wrap h2:before {
  top: 0;
  left: 0;
  border-width: 60px 0px 60px 30px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.content_02__wrap h2:after {
  top: 0;
  right: 0;
  border-width: 60px 30px 60px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.content_02__wrap h2.h2_purple {
  background: #3D0B85; /*塗りつぶし色*/
}
.content_02__wrap .present__01--wrap {
  border-radius: 30px;
  border: 5px solid #000;
  overflow: hidden;
  margin-top: 30px;
  background-color: #fff;
}
.content_02__wrap .present__01--wrap .present__01 {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
}
.content_02__wrap .present__01--wrap .present__01 .present__01--img {
  width: 80%;
}
.content_02__wrap .present__01--wrap .present__01 .present__01--img img {
  width: 100%;
  height: auto;
}
.content_02__wrap .present__01--wrap .present__01 .present__01--text {
  width: 10%;
  background-color: #c00000;
  height: 154px;
  width: 154px;
  border-radius: 50%;
}
.content_02__wrap .present__01--wrap .present__01 .present__01--text p {
  margin-top: 20px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
}
.content_02__wrap .present__01--wrap .present__01 .present__01--text p strong {
  font-weight: bold;
  font-size: 74px;
}
.content_02__wrap .present__01--wrap h3 {
  border-top: 5px solid #000;
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 100px;
  background-color: #c00000;
}
.content_02__wrap .content_02__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 0;
}
.content_02__wrap .content_02__arrows .arrow {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 40px solid #000;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ3
----------------------------------------------------------------*
----------------------------------------------------------------*/
.content_03__wrap {
  padding-bottom: 100px;
}
.content_03__wrap ul {
  display: block;
  margin-top: 60px;
}
.content_03__wrap ul li {
  width: auto;
  text-align: center;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid #000;
  padding-top: 30px;
}
.content_03__wrap ul li .content_03__item {
  padding: 0 30px;
  position: relative;
}
.content_03__wrap ul li .content_03__item .content_03__item--img {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.content_03__wrap ul li .content_03__item .content_03__item--img img {
  width: 100%;
  height: auto;
}
.content_03__wrap ul li .content_03__item .content_03__item--text {
  position: absolute;
  top: 0px;
  right: 5%;
  width: 154px;
  height: 154px;
  background-color: #c00000;
  border-radius: 50%;
}
.content_03__wrap ul li .content_03__item .content_03__item--text p {
  margin-top: 30px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
}
.content_03__wrap ul li .content_03__item .content_03__item--text p strong {
  font-size: 40px;
  font-weight: bold;
}
.content_03__wrap ul li dl {
  background-color: #CBA6FF;
  display: block;
  padding: 20px;
}
.content_03__wrap ul li dl dd {
  width: 100%;
  font-size: 32px;
  color: #000;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
}
.content_03__wrap ul li:nth-child(2) dl {
  background-color: #FFC650;
}
.content_03__wrap .content_03__text {
  margin-top: 60px;
  margin-bottom: 60px;
  background-color: #FFAF09;
  border-radius: 30px;
  padding: 30px;
}
.content_03__wrap .content_03__text label {
  font-size: 32px;
  color: #000;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  border-bottom: none;
  padding: 0;
}
.content_03__wrap .content_03__text label:hover {
  color: #c00000;
}
.content_03__wrap .content_03__text label span {
  font-size: 24px;
  font-weight: normal;
}

.accordion input {
  display: none;
}
.accordion .accordion__trigger {
  display: block;
  cursor: pointer;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-align: left;
}
.accordion .accordion__trigger::after {
  content: "";
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(#000, #000) center/24px 5px no-repeat, linear-gradient(#000, #000) center/5px 24px no-repeat;
  transition: background-size 0.3s ease;
}
.accordion .accordion__trigger:hover {
  color: #000;
}
.accordion .accordion__inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.accordion .accordion__inner ul {
  border-top: 3px dotted #000;
  padding-top: 30px;
}
.accordion .accordion__inner ul li {
  padding: 0;
  font-size: 16px;
  color: #000;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
  position: relative;
  padding-left: 1em;
  background-color: transparent;
  border: none;
}
.accordion .accordion__inner ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
.accordion input:checked + .accordion__trigger + .accordion__inner {
  max-height: 10000px;
  padding: 15px 0;
}
.accordion input:checked + .accordion__trigger::after {
  background-size: 24px 5px, 0 0;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ4
----------------------------------------------------------------*
----------------------------------------------------------------*/
.content_04__wrap {
  background-color: #fff;
  background-image: url("../img/bg__dotto.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 400px;
}
.content_04__wrap h2 {
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  font-size: 64px;
  line-height: 100px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  background-color: #3D0B85;
  padding: 30px 0;
  width: 100%;
}
.content_04__wrap dl {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
.content_04__wrap dl dt {
  width: 265px;
  height: 60px;
  background-color: #3D0B85;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 60px;
  border-radius: 30px;
}
.content_04__wrap dl dd {
  width: 100%;
  font-size: 24px;
  color: #000;
  line-height: 40px;
  font-weight: bold;
  margin-top: 8px;
}
.content_04__wrap dl dd h4 {
  width: 100%;
  font-size: 24px;
  color: #000;
  line-height: 40px;
  font-weight: bold;
  margin-top: 0px;
}
.content_04__wrap dl dd ul {
  margin-bottom: 30px;
}
.content_04__wrap dl dd ul li {
  padding: 0;
  font-size: 16px;
  color: #000;
  line-height: 24px;
  font-weight: normal;
  text-align: left;
  position: relative;
  padding-left: 1em;
  background-color: transparent;
  border: none;
}
.content_04__wrap dl dd ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ5
----------------------------------------------------------------*
----------------------------------------------------------------*/
.content_05__wrap img {
  width: 100%;
  height: auto;
}
.content_05__wrap {
  position: relative;
  z-index: 2;
  margin-top: -300px;
}
.content_05__wrap .content_05__inner {
  background-color: #FFAF09;
  margin-top: -130px;
  position: relative;
  z-index: 3;
  padding-bottom: 60px;
}
.content_05__wrap .content_05__inner h2 {
  font-size: 64px;
  color: #000;
  font-weight: bold;
  text-align: center;
}
.content_05__wrap .content_05__inner .content_05__item {
  margin-top: 80px;
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
  border: 5px solid #000;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--img {
  width: 40%;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--img img {
  width: 100%;
  height: auto;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--text {
  width: 60%;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--text p {
  font-size: 36px;
  color: #000;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--text p strong {
  font-weight: bold;
  font-size: 40px;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--text .apply__link a {
  background-color: #FDFFCF;
  color: #000;
  font-size: 32px;
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__item--inner .content_05__item--text .apply__link a:hover {
  background-color: #c00000;
  color: #fff;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri {
  margin-top: 30px;
  padding: 30px;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri h4 {
  font-size: 32px;
  color: #fff;
  line-height: 40px;
  font-weight: bold;
  text-align: center;
  background-color: #FFAF09;
  border-radius: 30px;
  padding: 10px 0;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri .content_05__ogiri--content {
  margin-top: 30px;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri .content_05__ogiri--content .content_05__ogiri--text {
  border-radius: 30px;
  padding: 30px;
  width: 80%;
  margin: 0 auto;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri .content_05__ogiri--content .content_05__ogiri--text p {
  border-top: 3px dotted #000;
  padding-top: 30px;
  font-size: 24px;
  color: #000;
  line-height: 1.5em;
  text-align: left;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri .content_05__ogiri--content .content_05__ogiri--img {
  width: 80%;
  margin: 0 auto;
}
.content_05__wrap .content_05__inner .content_05__item .content_05__ogiri .content_05__ogiri--content .content_05__ogiri--img img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ6
----------------------------------------------------------------*
----------------------------------------------------------------*/
.content_06__wrap {
  background-color: #3D0B85;
  padding: 60px 0;
}
.content_06__wrap h2 {
  font-size: 48px;
  line-height: 50px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.content_06__wrap .banner {
  margin-top: 30px;
}
.content_06__wrap .banner a {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}
.content_06__wrap .banner a img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.content_06__wrap .banner a:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        youtube
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap .youtube__wrap {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.section__wrap:has(.youtube) {
  padding-bottom: 60px;
}
.section__wrap .youtube {
  padding: 30px;
  background-color: #fff;
  width: stretch;
  height: 300px;
  width: 42%;
}
.section__wrap .youtube p {
  height: 300px;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #333;
  font-size: 16px;
  color: #fff;
  margin: 0;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
.section__wrap .youtube p span {
  display: block;
  font-size: 24px;
  font-weight: normal;
  line-height: 1.2;
  white-space: pre-wrap;
  word-break: break-word;
  font-weight: bold;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 100px;
  margin-top: 100px;
}
.footer ul li {
  border-right: 1px solid #000;
  padding-right: 20px;
}
.footer ul li:last-child {
  border-right: none;
}
.footer ul li a {
  color: #000;
  font-size: 24px;
  text-decoration: none;
  font-weight: bold;
  line-height: 50px;
  transition: all 0.5s ease 0s;
}
.footer ul li a:hover {
  color: #c00000;
}
.footer p {
  font-size: 20px;
  color: #000;
  text-align: center;
  line-height: 50px;
  margin-bottom: 60px;
}/*# sourceMappingURL=common.css.map */