@charset "UTF-8";
/*
@font-face {
  font-family: 'Zen Maru Gothic';
  font-display: swap;
  src: url('../fonts/ZenMaruGothic-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Zen Maru Gothic Light';
  font-display: swap;
  src: url('../fonts/ZenMaruGothic-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Zen Maru Gothic Medium';
  font-display: swap;
  src: url('../fonts/ZenMaruGothic-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Zen Maru Gothic Bold';
  font-display: swap;
  src: url('../fonts/ZenMaruGothic-Bold.ttf') format('truetype');
}*/
body {
  font-family: YakuHanRP, "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*$font-bold: YakuHanRP, 'Zen Maru Gothic Bold', sans-serif;
$font-medium: YakuHanRP, 'Zen Maru Gothic Medium', sans-serif;
$font-normal: YakuHanRP, 'Zen Maru Gothic', sans-serif;
$font-light: YakuHanRP, 'Zen Maru Gothic Light', sans-serif;*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
figure,
th,
td,
dl,
dt,
dd {
  line-height: 1.75rem;
  margin: 0;
  padding: 0;
  font-weight: normal;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/*a:active,
a:hover {
  outline-width: 0;
*/
ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  border: none;
  outline: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
  outline: none;
  border: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

html {
  font-size: 16px;
}

body {
  font-feature-settings: "palt";
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/*
::selection {
  color: c.$color-reverse-txt;
  background: c.$color-reverse-bg;
}*/
/*
::-moz-selection {
  color: c.$color-reverse-txt;
  background: c.$color-reverse-bg;
}*/
sub,
sup {
  font-size: 0.6rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: 0;
}

sup {
  top: -0.25rem;
}

hr {
  height: 1px;
  background-color: #4d4d4d;
  border: none;
  color: #4d4d4d;
  margin: 10px 0;
}

/*読み込みアニメーション*/
/* スクロールアニメーション１ */
.effect-fade-1 {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 1s ease 0.5s;
}
.effect-fade-1.effect-scroll-1 {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロールアニメーション２ */
.effect-fade-2 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1.5s ease 0.4s;
}
.effect-fade-2.effect-scroll-2 {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロールアニメーション３ */
.effect-fade-3 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 0.9s ease 0.5s;
}
.effect-fade-3.effect-scroll-3 {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロールアニメーション４ */
.effect-fade-4 {
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 1.1s ease 0.7s;
}
.effect-fade-4.effect-scroll-4 {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロールアニメーション左から */
.effect-fade-left {
  opacity: 0;
  transform: translate(-20px, 0px);
  transition: all 1s ease 0.4s;
}
.effect-fade-left.effect-scroll-left {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロールアニメーション右から */
.effect-fade-right {
  opacity: 0;
  transform: translate(20px, 10px);
  transition: all 0.8s ease 0.3s;
}
.effect-fade-right.effect-scroll-right {
  opacity: 1;
  transform: translate(0, 0);
}

/* スクロールアニメーション拡大 */
.effect-fade-up {
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease 0.5s;
}
.effect-fade-up.effect-scroll-up {
  opacity: 1;
  transform: scale(1);
}

/* １文字ずつじんわり */
.movetext {
  opacity: 0;
}
.movetext span {
  opacity: 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  animation-name: modalopen;
  animation-duration: 0.5s;
}
@keyframes modalopen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal .modal__box {
  background-color: #fff;
  width: min(90%, 800px);
  border-radius: 20px;
  position: relative;
  top: max(50%, 500px);
  left: 50%;
  margin-bottom: 30%;
  transform: translate(-50%, -50%);
}
.modal .modal__box .modal__box__inner .modal__logo {
  background: #000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 50px 0 30px 0;
}
.modal .modal__box .modal__box__inner .modal__logo img {
  width: 320px;
}
.modal .modal__box .modal__box__inner .modal__point {
  background-color: #ff7300;
}
.modal .modal__box .modal__box__inner .modal__point p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 0.75rem;
  line-height: 0.9rem;
  font-weight: 700;
}
.modal .modal__box .modal__box__inner .modal__point p span {
  font-size: 1.25rem;
}
.modal .modal__box .modal__box__inner .modal__point p ::before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
  width: 210px;
  height: 75px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.modal .modal__box .modal__box__inner .modal__content {
  position: relative;
  background: #ff7300;
  padding-top: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__txt {
  width: min(90%, 590px);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__img {
  width: min(80%, 420px);
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__pr {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 260px;
  text-align: left;
  background: #000;
  color: #fff;
  border-radius: 14px;
  padding: 15px;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__pr .modal__content__pr__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__pr .modal__content__pr__name span {
  font-size: 0.875rem;
  vertical-align: 2px;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__pr .modal__content__pr__name span.sat {
  color: #51a4db;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__pr .modal__content__pr__description {
  font-size: 0.9375rem;
  line-height: 1.5rem;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__pr::before {
  content: "";
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  right: -45px;
  transform: translate(-50%, -50%);
  background-color: #000;
  width: 35px;
  height: 35px;
  clip-path: polygon(0 0, 100% 0%, 0 100%);
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__tyosho {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: left;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__tyosho p {
  display: grid;
  text-align: center;
  margin-bottom: 5px;
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 700;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__tyosho a {
  color: #000;
  display: block;
  font-size: 0.75rem;
  line-height: 0.875rem;
  font-weight: 700;
  text-indent: -12px;
  padding-left: 12px;
}
.modal .modal__box .modal__box__inner .modal__content .modal__content__tyosho a:not(:last-child) {
  margin-bottom: 5px;
}
.modal .modal__box .modal__box__inner .modalClose {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background-color: #ff7300;
  outline: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.modal .modal__box .modal__box__inner .modalClose::before, .modal .modal__box .modal__box__inner .modalClose::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #333;
  border-radius: 2.5px; /* 棒の四隅の丸み*/
}
.modal .modal__box .modal__box__inner .modalClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal__box .modal__box__inner .modalClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.content {
  width: min(90%, 900px);
  margin-left: auto;
  margin-right: auto;
}

footer {
  width: min(90%, 900px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 60px;
}
footer .foonter_logo {
  width: 58px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
footer p {
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
}

.page__header {
  width: 100%;
  padding: 70px 0 50px 0;
  background: #ff7300;
}
.page__header img {
  display: block;
  width: min(100%, 458px);
  margin-right: auto;
  margin-left: auto;
}

.kouza {
  text-align: center;
}
.kouza .kouza__top {
  position: relative;
  width: min(90%, 1000px);
  margin-left: auto;
  margin-right: auto;
}
.kouza .kouza__top .kouza__top__title {
  position: relative;
  display: block;
  margin: -30px auto 0 auto;
  width: 250px;
  height: 125px;
  padding: 30px 30px 0 30px;
  border-top-left-radius: 125px;
  border-top-right-radius: 125px;
  background: url("../img/common/page_title_bg.svg") no-repeat, #fff;
  background-size: 100% 100%, 100%;
  background-repeat: no-repeat;
  color: #ff7300;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 40px;
}
.kouza .kouza__top .kouza__top__title .kai {
  display: inline-block;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  margin-bottom: 10px;
}
.kouza .kouza__top .kouza__top__title .kai .number {
  font-size: 2.625rem;
}
.kouza .kouza__top .kouza__top__title .title {
  color: #ff7300;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
}
.kouza .kouza__top .kouza__top__title .caution {
  color: #000;
  font-size: 1.125rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
}
.kouza .kouza__top .kouza__top__name {
  font-size: 3.5rem;
  line-height: 4rem;
  letter-spacing: 0.1rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
}
.kouza .kouza__top .kouza__top__name span {
  font-weight: 500;
}
.kouza .kouza__top .kouza__top__name .kouza__top__name__main {
  font-size: 3.5rem;
  line-height: 4rem;
}
.kouza .kouza__top .kouza__top__name .kouza__top__name__sub {
  font-size: 1.875rem;
  line-height: 2.75rem;
  display: block;
  letter-spacing: 0.2rem;
}
.kouza .kouza__top .kouza__top__description {
  color: #000;
  font-size: 1.1875rem;
  line-height: 2.25rem;
  margin-bottom: 30px;
}
.kouza .kouza__top .kouza__top__description span {
  font-weight: 500;
}
.kouza .kouza__top .kouza__top__caution {
  text-align: right;
  color: #898381;
  margin-bottom: 30px;
}
.kouza .kouza__top .kouza__top__caution::before {
  content: "";
  display: inline-block;
  vertical-align: -1px;
  margin-right: 5px;
  width: 18px;
  height: 14px;
  background: url(../img/common/page_icon_caution.svg) no-repeat;
}
.kouza .kouza__top .kouza__top__close {
  position: absolute;
  top: 0;
  left: -100px;
  background: #231815;
  padding: 10px 20px;
  border: 2px dashed #fff;
}
.kouza .kouza__top .kouza__top__close p {
  text-align: left;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
}
.kouza .kouza__top .kouza__top__price {
  position: absolute;
  top: 70px;
  right: 100px;
}
.kouza .kouza__top .kouza__top__price.kouza__top__price-memendako {
  top: 50px;
  right: -30px;
}
.kouza .kouza__top .kouza__top__price p {
  color: #ff7300;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
}
.kouza .kouza__top .kouza__top__price p span {
  border-top: 2px dashed #ff7300;
  display: block;
  font-size: 1rem;
  letter-spacing: 0;
}
.kouza .kouza__top .kouza__top__price .caution {
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.kouza .kouza__top .kouza__top__price .caution::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-right: 3px;
  background-size: contain;
  background: url(../img/kouza-04/caution_icon.svg) no-repeat;
}
.kouza .kouza__top .kouza__top__price .caution span {
  border-top: none;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #000;
  border: 2px solid #ff7300;
  border-radius: 5px;
  margin-top: 10px;
  padding: 3px 0;
}

.kouza__date {
  text-align: center;
  width: min(90%, 1000px);
  margin-left: auto;
  margin-right: auto;
  /*第４回〜*/
}
.kouza__date .kouza__date__title {
  width: 66px;
  height: 66px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 1.125rem;
  background: url("../img/common/page_border_dashed.svg") no-repeat, #fff;
  background-size: 100% 100%, 100%;
  background-repeat: no-repeat;
}
.kouza__date .kouza__date__date {
  margin-bottom: 5px;
}
.kouza__date .kouza__date__date li {
  font-size: 2.125rem;
  color: #000;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
.kouza__date .kouza__date__date li span {
  font-size: 1.0625rem;
}
.kouza__date .kouza__date__date li span:not(:last-child)::after {
  content: "";
  display: inline-block;
  vertical-align: 6px;
  width: 7px;
  height: 7px;
  border-radius: 5px;
  background: #000;
  margin-left: 10px;
  margin-right: 10px;
}
.kouza__date .kouza__date__date li .sat {
  color: #51a4db;
}
.kouza__date .kouza__date__time {
  font-size: 1.375rem;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
}
.kouza__date .memendako__date {
  margin-bottom: 5px;
  font-size: 1.375rem;
  letter-spacing: 0.2rem;
}
.kouza__date .memendako__date .memendako__date__date {
  width: 120px;
  text-align: left;
  display: inline-block;
  font-size: 2.125rem;
  color: #000;
  letter-spacing: 0.3rem;
  font-weight: 500;
}
.kouza__date .memendako__date .memendako__date-sat {
  color: #51a4db;
  font-size: 1.375rem;
}
.kouza__date .memendako__date .memendako__date-sun {
  color: #d33205;
  font-size: 1.375rem;
}

/*TOPページのみ*/
.kouza-pageTop .kouza__top .kouza__top__title {
  width: 350px;
  height: 175px;
  border-top-left-radius: 175px;
  border-top-right-radius: 175px;
}

.kouza__place {
  text-align: center;
  width: min(90%, 1000px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
.kouza__place .kouza__place__title {
  width: 66px;
  height: 66px;
  margin: 0 auto 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 1.125rem;
  background: url("../img/common/page_border_dashed.svg") no-repeat, #fff;
  background-size: 100% 100%, 100%;
  background-repeat: no-repeat;
}
.kouza__place h3 {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}
.kouza__place p {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
.kouza__place a {
  color: #000;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.kouza__movie {
  width: 160px;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #000;
}

.top__kouza__apply {
  margin-bottom: 120px;
}

.u-no-break {
  display: inline-block;
}
.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

.u-center {
  text-align: center;
}

.bt {
  text-align: center;
}
.bt a {
  position: relative;
  display: inline-block;
  padding: 15px 60px;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
  color: #000;
  border: 1px solid #000;
  transition-duration: 0.3s;
}
.bt a::after {
  content: "";
  width: 20px;
  height: 15px;
  position: absolute;
  top: 55%;
  right: 5%;
  transform: translate(-50%, -50%);
  margin-left: 5px;
  background: url(../img/top/arrow.svg) no-repeat;
  transition-duration: 0.3s;
}
.bt a:hover {
  background: #ffaf66;
}
.bt a:hover::after {
  right: 3%;
}

.bt-02 {
  text-align: center;
}
.bt-02 a {
  position: relative;
  display: inline-block;
  padding: 15px 60px;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
  color: #fff;
  border: 1px solid #000;
  transition-duration: 0.3s;
  background: #ff7300;
}
.bt-02 a span {
  font-size: 1rem;
  line-height: 1.25rem;
}
.bt-02 a:hover {
  background: #ffaf66;
}

.bt-mail {
  text-align: center;
}
.bt-mail a {
  position: relative;
  display: inline-block;
  padding: 15px 60px;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 0.1rem;
  color: #fff;
  border: 1px solid #000;
  transition-duration: 0.3s;
  background: #ff7300;
}
.bt-mail a::before {
  content: "";
  display: inline-block;
  vertical-align: -2px;
  width: 25px;
  height: 14px;
  z-index: 99;
  background: url(../img/common/icon_mail.svg) no-repeat;
  transition-duration: 0.3s;
}
.bt-mail a:hover {
  background: #ffaf66;
}
.bt-mail a:hover::after {
  right: 3%;
}

/*横並び*/
.c-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.c-flex--reverse {
  flex-direction: row-reverse;
}
.c-flex--center {
  justify-content: center;
}
.c-flex--right {
  justify-content: flex-end;
}
.c-flex--left {
  justify-content: flex-start;
}
.c-flex--between {
  justify-content: space-between;
}

.top {
  position: relative;
  background: #ff7300;
  text-align: center;
}
.top .top__content {
  width: min(100%, 1000px);
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0 100px 0;
}
.top .top__content .intro p {
  width: min(90%, 516px);
  margin-right: auto;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
  color: #fff;
}
.top .top__content .intro p::after {
  content: "";
  display: block;
  margin: 20px auto;
  width: min(90%, 516px);
  height: 32px;
  background: url(../img/top/title_fukidashi.svg) no-repeat;
  background-size: 100%;
}
.top .top__content .title {
  position: relative;
  width: min(90%, 920px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.top .top__content .title .sub__01 {
  position: absolute;
  top: 5px;
  left: min(13vw, 160px);
  width: clamp(80px, 26vw, 262px);
}
.top .top__content .title .sub__02 {
  position: absolute;
  top: 5px;
  right: min(13vw, 160px);
  width: clamp(65px, 19vw, 190px);
}
.top .top__content .description p {
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
}
.top .top__content .fixed__banner {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.top .top__content .fixed__banner a {
  display: inline-block;
  background: #000;
  border: 2px dashed #fff;
  color: #fff067;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 1.5625rem;
  line-height: 1.5625rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
}
.top .top__content .fixed__banner a span {
  display: inline-block;
  margin-bottom: 3px;
  font-size: 0.875rem;
  line-height: 1.125rem;
  letter-spacing: 0rem;
  color: #fff;
}

.kouza-list {
  width: min(90%, 900px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 90px;
  margin-bottom: 90px;
  background: #fff0e4;
  border-radius: 15px;
  padding: 50px;
}
.kouza-list h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.875rem;
  line-height: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
.kouza-list P {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.kouza-list .kouza-list_content {
  width: 80%;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
.kouza-list .kouza-list_content .bt-02 {
  width: 100%;
}
.kouza-list .kouza-list_content .bt-02:first-child {
  margin-bottom: 20px;
}
.kouza-list .kouza-list_content .bt-02 a {
  width: 70%;
  padding: 15px 30px;
}
.kouza-list .kouza-list_content .bt-02 a::after {
  content: "";
  width: 15px;
  height: 10px;
  position: absolute;
  top: 55%;
  right: 5%;
  transform: translate(-50%, -50%);
  margin-left: 5px;
  background: url(../img/top/arrow.svg) no-repeat;
  transition-duration: 0.3s;
  rotate: 90deg;
}
.kouza-list .memendako {
  width: 110px;
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 2;
}
.kouza-list .comment {
  width: 150px;
  position: absolute;
  bottom: 40px;
  right: -50px;
}

.member {
  padding: 0 0 60px 0;
  text-align: center;
}
.member .member__title h2 {
  position: relative;
  top: -20px;
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
  line-height: 1rem;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  background: #000;
}
.member .member__title h2::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -160px;
  display: block;
  width: 148px;
  height: 32px;
  background: url(../img/top/member_side.png) no-repeat;
  background-size: 100%;
}
.member .member__title h2::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -160px;
  display: block;
  width: 148px;
  height: 32px;
  background: url(../img/top/member_side.png) no-repeat;
  background-size: 100%;
  rotate: 180deg;
}
.member .member__list {
  display: grid;
  place-content: center;
  grid-template-columns: repeat(6, 15%);
  gap: 15px;
  width: min(90%, 900px);
  margin-left: auto;
  margin-right: auto;
}
.member .member__list .member__list__item {
  transition-duration: 0.3s;
}
.member .member__list .member__list__item .img {
  position: relative;
  top: 5px;
  left: 50%;
  display: block;
  transform: translate(-50%, 0%);
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ff7300;
  transition-duration: 0.3s;
}
.member .member__list .member__list__item .img img {
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  border-radius: 50%;
}
.member .member__list .member__list__item .txt {
  color: #fff;
  background: #ff7300;
  border-radius: 50px;
  padding: 8px 0 10px 0;
  letter-spacing: 0.1rem;
}
.member .member__list .member__list__item .txt .sub {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0;
}
.member .member__list .member__list__item .txt .name {
  font-size: 1rem;
  line-height: 1rem;
}
.member .member__list .member__list__item:hover {
  scale: 1.1;
}

.schedule,
.kouza-schedule {
  margin-bottom: 60px;
}
.schedule .schedule__content,
.schedule .kouza-schedule__content,
.kouza-schedule .schedule__content,
.kouza-schedule .kouza-schedule__content {
  width: min(90%, 900px);
  margin-left: auto;
  margin-right: auto;
}
.schedule .schedule__content .schedule__content__title,
.schedule .schedule__content .kouza-schedule__content__title,
.schedule .kouza-schedule__content .schedule__content__title,
.schedule .kouza-schedule__content .kouza-schedule__content__title,
.kouza-schedule .schedule__content .schedule__content__title,
.kouza-schedule .schedule__content .kouza-schedule__content__title,
.kouza-schedule .kouza-schedule__content .schedule__content__title,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__title {
  text-align: center;
}
.schedule .schedule__content .schedule__content__title h2,
.schedule .schedule__content .kouza-schedule__content__title h2,
.schedule .kouza-schedule__content .schedule__content__title h2,
.schedule .kouza-schedule__content .kouza-schedule__content__title h2,
.kouza-schedule .schedule__content .schedule__content__title h2,
.kouza-schedule .schedule__content .kouza-schedule__content__title h2,
.kouza-schedule .kouza-schedule__content .schedule__content__title h2,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__title h2 {
  color: #ff7300;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
}
.schedule .schedule__content .schedule__content__title h2::before,
.schedule .schedule__content .kouza-schedule__content__title h2::before,
.schedule .kouza-schedule__content .schedule__content__title h2::before,
.schedule .kouza-schedule__content .kouza-schedule__content__title h2::before,
.kouza-schedule .schedule__content .schedule__content__title h2::before,
.kouza-schedule .schedule__content .kouza-schedule__content__title h2::before,
.kouza-schedule .kouza-schedule__content .schedule__content__title h2::before,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__title h2::before {
  content: "";
  display: inline-block;
  vertical-align: 8px;
  margin-right: 10px;
  width: 10%;
  height: 1px;
  background: #ff7300;
}
.schedule .schedule__content .schedule__content__title h2::after,
.schedule .schedule__content .kouza-schedule__content__title h2::after,
.schedule .kouza-schedule__content .schedule__content__title h2::after,
.schedule .kouza-schedule__content .kouza-schedule__content__title h2::after,
.kouza-schedule .schedule__content .schedule__content__title h2::after,
.kouza-schedule .schedule__content .kouza-schedule__content__title h2::after,
.kouza-schedule .kouza-schedule__content .schedule__content__title h2::after,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__title h2::after {
  content: "";
  display: inline-block;
  vertical-align: 8px;
  margin-left: 10px;
  width: 10%;
  height: 1px;
  background: #ff7300;
}
.schedule .schedule__content .kouza-schedule__content__list ul li a,
.schedule .kouza-schedule__content .kouza-schedule__content__list ul li a,
.kouza-schedule .schedule__content .kouza-schedule__content__list ul li a,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__list ul li a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d5d5d5;
}
.schedule .schedule__content .kouza-schedule__content__list ul li a .date,
.schedule .kouza-schedule__content .kouza-schedule__content__list ul li a .date,
.kouza-schedule .schedule__content .kouza-schedule__content__list ul li a .date,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__list ul li a .date {
  width: 180px;
  text-align: center;
  color: #ff7300;
  border: 1px solid #ff7300;
  padding: 0 10px;
  border-radius: 50px;
  font-weight: 500;
  margin-right: 10px;
}
.schedule .schedule__content .kouza-schedule__content__list ul li a .title,
.schedule .kouza-schedule__content .kouza-schedule__content__list ul li a .title,
.kouza-schedule .schedule__content .kouza-schedule__content__list ul li a .title,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__list ul li a .title {
  width: 72%;
  color: #000;
  font-weight: 500;
  line-height: 1.25rem;
  text-indent: -4rem;
  padding-left: 4rem;
}
.schedule .schedule__content .kouza-schedule__content__list ul li a::after,
.schedule .kouza-schedule__content .kouza-schedule__content__list ul li a::after,
.kouza-schedule .schedule__content .kouza-schedule__content__list ul li a::after,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__list ul li a::after {
  content: "";
  width: 20px;
  height: 15px;
  position: absolute;
  top: 55%;
  right: 1%;
  transform: translate(-50%, -50%);
  margin-left: 5px;
  background: url(../img/top/arrow.svg) no-repeat;
  transition-duration: 0.3s;
}
.schedule .schedule__content .kouza-schedule__content__list ul li a:hover::after,
.schedule .kouza-schedule__content .kouza-schedule__content__list ul li a:hover::after,
.kouza-schedule .schedule__content .kouza-schedule__content__list ul li a:hover::after,
.kouza-schedule .kouza-schedule__content .kouza-schedule__content__list ul li a:hover::after {
  right: 0%;
}
.schedule .schedule__content .schedule__content__box,
.schedule .kouza-schedule__content .schedule__content__box,
.kouza-schedule .schedule__content .schedule__content__box,
.kouza-schedule .kouza-schedule__content .schedule__content__box {
  width: 48%;
}
.schedule .schedule__content .schedule__content__box .schedule__content__box__item,
.schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item,
.kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item,
.kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item {
  margin-bottom: 30px;
}
.schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title,
.schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title,
.kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title,
.kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  margin-bottom: 15px;
}
.schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title::before,
.schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title::before,
.kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title::before,
.kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title::before {
  content: "";
  display: inline-block;
  vertical-align: -2px;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background: url(../img/top/schedule_list_icon.svg) no-repeat;
}
.schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__txt,
.schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list,
.schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__txt,
.schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list,
.kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__txt,
.kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list,
.kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__txt,
.kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list {
  font-size: 1rem;
  line-height: 1.75rem;
  letter-spacing: 0.1rem;
  color: #ff7300;
}
.schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list,
.schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list,
.kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list,
.kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__number_list {
  text-indent: -1rem;
  padding-left: 1rem;
}

.kouza-start {
  margin-bottom: 160px;
}

.kouza__content__01 {
  position: relative;
  display: grid;
  justify-items: start;
  grid-template-columns: 30% 60%;
}
.kouza__content__01 .kouza__content__think {
  margin-top: 50px;
}
.kouza__content__01 .kouza__content__think h2,
.kouza__content__01 .kouza__content__think p {
  font-size: 1.0625rem;
  line-height: 1.5rem;
}
.kouza__content__01 .kouza__content__think p {
  display: inline-block;
  border-top: 1px solid #ff7300;
  position: relative;
  padding-right: 50px;
  padding-top: 5px;
  margin-top: 5px;
}
.kouza__content__01 .kouza__content__think p::after {
  content: "";
  width: 24px;
  height: 14px;
  display: block;
  position: absolute;
  top: -8px;
  right: -8px;
  background: url(../img/kouza-01/kouza-01_icon_arrow.svg) no-repeat;
  background-size: contain;
}
.kouza__content__01 .kouza__content__img {
  position: relative;
  z-index: -1;
  margin-left: -100px;
}
.kouza__content__01 .kouza__content__img img {
  width: 90%;
}
.kouza__content__01 .kouza__content__img .icon_sou,
.kouza__content__01 .kouza__content__img .icon_kyo {
  position: absolute;
  width: 40px;
}
.kouza__content__01 .kouza__content__img .icon_sou {
  bottom: 40px;
  left: 30px;
}
.kouza__content__01 .kouza__content__img .icon_kyo {
  top: 250px;
  right: -20px;
}
.kouza__content__01 .kouza__content__point__01,
.kouza__content__01 .kouza__content__point__02 {
  width: 182px;
  height: 182px;
  background: url(../img/kouza-01/kouza-01_waku.png) no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.kouza__content__01 .kouza__content__point__01 p,
.kouza__content__01 .kouza__content__point__02 p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  font-weight: 400;
}
.kouza__content__01 .kouza__content__point__01 {
  position: absolute;
  top: 150px;
  left: 0;
}
.kouza__content__01 .kouza__content__point__02 {
  position: absolute;
  top: 0;
  right: -10px;
}

.kouza__content__02 {
  position: relative;
  display: grid;
  justify-items: start;
  grid-template-columns: 25% 40% 25%;
  gap: 5%;
  margin-top: -80px;
}
.kouza__content__02 .kouza__content__point__03 {
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
  position: relative;
}
.kouza__content__02 .kouza__content__point__03 p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ed7700;
}
.kouza__content__02 .kouza__content__point__03 .icon_raku {
  position: absolute;
  top: 120px;
  left: 35px;
  width: 40px;
}
.kouza__content__02 .kouza__content__point__03 img {
  width: 220px;
}
.kouza__content__02 .kouza__content__point__04 {
  margin-bottom: 50px;
}
.kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__img {
  position: relative;
  display: grid;
  justify-content: flex-start;
  place-content: bottom;
  align-items: end;
  grid-template-columns: 60% 10%;
  gap: 20%;
  margin-bottom: 50px;
}
.kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__img p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #ed7700;
}
.kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__img .icon_gaku {
  position: absolute;
  width: 40px;
  top: 60px;
  left: -60px;
}
.kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__txt h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  border-bottom: 1px solid #ed7700;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__txt p {
  font-size: 1rem;
  line-height: 1.875rem;
  font-weight: 400;
}

.kouza-04 {
  margin-top: 60px;
}
.kouza-04 .kouza-04__img {
  width: 100%;
  position: relative;
  text-align: center;
}
.kouza-04 .kouza-04__img .kouza-04__img-01 {
  width: 80%;
}
.kouza-04 .kouza-04__img .kouza-04__img-02 {
  position: absolute;
  z-index: -1;
  top: 100px;
  right: -100px;
  width: 50%;
  max-width: 300px;
}
.kouza-04 .kouza-04__img .kouza-04__img-03 {
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: -100px;
  width: 230px;
}
.kouza-04 .kouza-04__caution p {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-indent: -1rem;
  padding-left: 1rem;
}

.desital-manual {
  margin: 40px 0 80px 0;
}

.kouza .kouza__top .kouza__top__title__09 {
  padding-top: 60px;
}
.kouza .kouza__top .kouza__top__title__09 .kai {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #ff7300;
  margin-bottom: 0px;
}
.kouza .kouza__top .kouza__top__title__09 .title {
  font-size: 1.625rem;
  letter-spacing: 0;
}
.kouza .kouza__top .kouza__top__title__09 .free {
  display: inline-block;
  color: #000;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25rem;
  padding: 4px 10px 6px 10px;
  margin-top: 10px;
  border: 1px solid #000;
  border-radius: 6px;
}

.kouza-09 {
  margin-top: 60px;
}
.kouza-09 .kouza-09__img {
  width: 100%;
  position: relative;
  text-align: center;
}
.kouza-09 .kouza-09__img .kouza-09__img-01 {
  width: 80%;
}
.kouza-09 .kouza-09__img .kouza-09__img-02 {
  position: absolute;
  z-index: -1;
  top: 100px;
  right: -100px;
  width: 50%;
  max-width: 300px;
}
.kouza-09 .kouza-09__img .kouza-09__img-03 {
  position: absolute;
  z-index: 1;
  bottom: 200px;
  left: -100px;
  width: 230px;
}
.kouza-09 .kouza-09__img .kouza-09__img__04 {
  text-align: center;
  margin-bottom: 60px;
}
.kouza-09 .kouza-09__img .kouza-09__img__04 img {
  width: 100%;
}
.kouza-09 .kouza-09__caution p {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-indent: -1rem;
  padding-left: 1rem;
}

.desital-manual {
  margin: 40px 0 80px 0;
}

/*調整*/
/*共通パーツ*/
/*各ページレイアウト*/
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  .modal .modal__box .modal__box__inner .modal__logo {
    padding: 30px 0 15px 0;
  }
  .modal .modal__box .modal__box__inner .modal__logo img {
    width: 162px;
  }
  .modal .modal__box .modal__box__inner .modal__content .modal__content__tyosho {
    position: relative;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
    width: 90%;
  }
  .modal .modal__box .modal__box__inner .modal__content .modal__content__pr {
    position: relative;
    width: 90%;
    left: 50%;
    transform: translate(-50%, 0);
    margin-bottom: 5px;
  }
  .modal .modal__box .modal__box__inner .modal__content .modal__content__pr::before {
    top: -10px;
    right: -5px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
  }
  .modal .modal__box .modal__box__inner .modalClose {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
  }
  .modal .modal__box .modal__box__inner .modalClose::before, .modal .modal__box .modal__box__inner .modalClose::after {
    height: 20px;
  }
  .modal .modal__box {
    position: relative;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-bottom: 300px;
  }
  .page__header {
    padding: 50px 0;
  }
  .page__header img {
    width: 80%;
  }
  .kouza .kouza__top .kouza__top__title {
    width: 200px;
    height: 100px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding: 20px 20px 0 20px;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  .kouza .kouza__top .kouza__top__title .kai {
    font-size: 1.25rem;
    line-height: 1.25rem;
  }
  .kouza .kouza__top .kouza__top__title .title {
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
  .kouza .kouza__top .kouza__top__title .caution {
    font-size: 0.875rem;
    line-height: 0.875rem;
  }
  .kouza .kouza__top .kouza__top__name {
    font-size: 1.875rem;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
  }
  .kouza .kouza__top .kouza__top__name .kouza__top__name__main {
    font-size: 1.875rem;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
  }
  .kouza .kouza__top .kouza__top__name .kouza__top__name__sub {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
  .kouza .kouza__top .kouza__top__description {
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 10px;
  }
  .kouza .kouza__top .kouza__top__caution {
    text-align: center;
  }
  .kouza .kouza__top .kouza__top__close {
    position: initial;
    margin-bottom: 30px;
  }
  .kouza .kouza__top .kouza__top__close p {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .kouza .kouza__top .kouza__top__price {
    position: initial;
    margin-bottom: 20px;
  }
  .kouza .kouza__top .kouza__top__price p span {
    margin-top: 5px;
    padding-top: 5px;
    font-size: 1.25rem;
  }
  .kouza .kouza__top .kouza__top__price .caution {
    margin-top: 10px;
    margin-bottom: 60px;
  }
  .kouza__date .kouza__date__title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .kouza__date .kouza__date__date li {
    font-size: 1.75rem;
    letter-spacing: 0.2rem;
  }
  .kouza__date .kouza__date__date li span {
    font-size: 0.9375rem;
  }
  .kouza__date .kouza__date__date li span:not(:last-child)::after {
    width: 3px;
    height: 3px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .kouza__date .memendako__date {
    text-align: left;
    font-size: 1.125rem;
    margin-bottom: 20px;
  }
  .kouza__date .memendako__date .memendako__date__date {
    width: 100px;
    font-size: 1.75rem;
    letter-spacing: 0.2rem;
  }
  .kouza-pageTop .kouza__top .kouza__top__title {
    width: 270px;
    height: 135px;
    border-top-left-radius: 135px;
    border-top-right-radius: 135px;
  }
  .kouza__place .kouza__place__title {
    font-size: 1rem;
  }
  .kouza__place h3 {
    font-size: 1.25rem;
  }
  .kouza__place p {
    font-size: 1rem;
  }
  .u-sp-no {
    display: none;
  }
  .top .top__content {
    padding: 30px 0 80px 0;
  }
  .top .top__content .intro p::after {
    margin: 10px auto 0 auto;
  }
  .top .top__content .title {
    margin-bottom: 10px;
  }
  .top .top__content .fixed__banner {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
  .kouza-list {
    padding: 30px 30px 80px 30px;
  }
  .kouza-list P {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .kouza-list .kouza-list_content {
    width: 100%;
    max-width: 100%;
  }
  .kouza-list .kouza-list_content .bt-02 a {
    width: 100%;
    padding: 15px 0px;
  }
  .kouza-list .memendako {
    width: 100px;
    right: 0px;
  }
  .kouza-list .comment {
    width: 100px;
    bottom: -30px;
    right: 90px;
  }
  .member .member__title h2 {
    padding: 6px 15px;
    top: -15px;
    margin-bottom: 10px;
  }
  .member .member__title h2::before {
    width: 35px;
    height: 28px;
    top: 1px;
    left: -45px;
    background: url(../img/top/member_side_sp.png) no-repeat;
    background-size: 100%;
  }
  .member .member__title h2::after {
    width: 35px;
    height: 28px;
    top: 1px;
    right: -45px;
    background: url(../img/top/member_side_sp.png) no-repeat;
    background-size: 100%;
  }
  .member .member__list .member__list__item .txt .sub {
    font-size: 0.75rem;
    line-height: 1rem;
    letter-spacing: 0;
  }
  .member .member__list .member__list__item .txt .name {
    font-size: 1rem;
    line-height: 1rem;
  }
  .member .member__list {
    width: 90%;
    grid-template-columns: repeat(3, 30%);
    gap: 6% 3%;
  }
  .schedule .schedule__content .schedule__content__title h2,
  .schedule .schedule__content .kouza-schedule__content__title h2,
  .schedule .kouza-schedule__content .schedule__content__title h2,
  .schedule .kouza-schedule__content .kouza-schedule__content__title h2,
  .kouza-schedule .schedule__content .schedule__content__title h2,
  .kouza-schedule .schedule__content .kouza-schedule__content__title h2,
  .kouza-schedule .kouza-schedule__content .schedule__content__title h2,
  .kouza-schedule .kouza-schedule__content .kouza-schedule__content__title h2 {
    font-size: 1.375rem;
    letter-spacing: 0rem;
  }
  .schedule .schedule__content .schedule__content__title h2::before,
  .schedule .schedule__content .kouza-schedule__content__title h2::before,
  .schedule .kouza-schedule__content .schedule__content__title h2::before,
  .schedule .kouza-schedule__content .kouza-schedule__content__title h2::before,
  .kouza-schedule .schedule__content .schedule__content__title h2::before,
  .kouza-schedule .schedule__content .kouza-schedule__content__title h2::before,
  .kouza-schedule .kouza-schedule__content .schedule__content__title h2::before,
  .kouza-schedule .kouza-schedule__content .kouza-schedule__content__title h2::before {
    width: 30px;
    margin-right: 5px;
    vertical-align: 6px;
  }
  .schedule .schedule__content .schedule__content__title h2::after,
  .schedule .schedule__content .kouza-schedule__content__title h2::after,
  .schedule .kouza-schedule__content .schedule__content__title h2::after,
  .schedule .kouza-schedule__content .kouza-schedule__content__title h2::after,
  .kouza-schedule .schedule__content .schedule__content__title h2::after,
  .kouza-schedule .schedule__content .kouza-schedule__content__title h2::after,
  .kouza-schedule .kouza-schedule__content .schedule__content__title h2::after,
  .kouza-schedule .kouza-schedule__content .kouza-schedule__content__title h2::after {
    width: 30px;
    margin-left: 5px;
    vertical-align: 6px;
  }
  .schedule .schedule__content .kouza-schedule__content__list ul li a .title,
  .schedule .kouza-schedule__content .kouza-schedule__content__list ul li a .title,
  .kouza-schedule .schedule__content .kouza-schedule__content__list ul li a .title,
  .kouza-schedule .kouza-schedule__content .kouza-schedule__content__list ul li a .title {
    width: 85%;
    margin-top: 5px;
    display: block;
  }
  .schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title,
  .schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title,
  .kouza-schedule .schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title,
  .kouza-schedule .kouza-schedule__content .schedule__content__box .schedule__content__box__item .schedule__content__box__item__title {
    font-size: 1.125rem;
    text-indent: -1.6rem;
    padding-left: 1.6rem;
  }
  .schedule .schedule__content .schedule__content__box,
  .schedule .kouza-schedule__content .schedule__content__box,
  .kouza-schedule .schedule__content .schedule__content__box,
  .kouza-schedule .kouza-schedule__content .schedule__content__box {
    width: 100%;
  }
  .kouza__content__01 {
    justify-items: center;
    grid-template-columns: 55% 50%;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .kouza__content__01 .kouza__content__think {
    margin-top: 100px;
  }
  .kouza__content__01 .kouza__content__img {
    margin-left: -25px;
    margin-top: 100px;
  }
  .kouza__content__01 .kouza__content__img .icon_sou {
    bottom: -20px;
    left: 10px;
  }
  .kouza__content__01 .kouza__content__img .icon_kyo {
    top: -20px;
    right: 20px;
  }
  .kouza__content__01 .kouza__content__point__01,
  .kouza__content__01 .kouza__content__point__02 {
    width: 142px;
    height: 142px;
  }
  .kouza__content__01 .kouza__content__point__01 p,
  .kouza__content__01 .kouza__content__point__02 p {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
  .kouza__content__01 .kouza__content__point__01 {
    top: 220px;
    left: 20px;
  }
  .kouza__content__01 .kouza__content__point__02 {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .kouza__content__02 {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr;
    align-items: flex-start;
    grid-template-areas: "areaA areaB" "areaC areaC";
  }
  .kouza__content__02 .kouza__content__point__03 {
    grid-area: areaA;
    margin-top: 180px;
    gap: 5px;
    grid-template-columns: 10% 80%;
  }
  .kouza__content__02 .kouza__content__point__03 p {
    font-size: 0.75rem;
  }
  .kouza__content__02 .kouza__content__point__03 .icon_raku {
    top: -50px;
    left: 5px;
  }
  .kouza__content__02 .kouza__content__img {
    grid-area: areaB;
    margin-top: 40px;
    width: 90%;
  }
  .kouza__content__02 .kouza__content__point__04 {
    grid-area: areaC;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
  }
  .kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__img {
    width: 40%;
    grid-template-columns: 60% 10%;
    gap: 10px;
  }
  .kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__img p {
    font-size: 0.75rem;
  }
  .kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__img .icon_gaku {
    top: -30px;
    left: -30px;
  }
  .kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__txt {
    width: 60%;
  }
  .kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__txt h2 {
    font-size: 1.0625rem;
    line-height: 1.75rem;
  }
  .kouza__content__02 .kouza__content__point__04 .kouza__content__point__04__txt p {
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
  .kouza-04 {
    margin-top: 20px;
  }
  .kouza-04 .kouza-04__img .kouza-04__img-02 {
    position: initial;
    width: 100%;
  }
  .kouza-04 .kouza-04__img .kouza-04__img-03 {
    position: initial;
    width: 100%;
  }
  .kouza-04 .kouza-04__img .kouza-04__img__sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .kouza-04 .kouza-04__img .kouza-04__img__sp picture:nth-child(1) {
    width: 35%;
  }
  .kouza-04 .kouza-04__img .kouza-04__img__sp picture:nth-child(2) {
    width: 62%;
  }
  .kouza-04 .kouza-04__caution {
    margin: 15px 0 40px 0;
  }
  .kouza-04 .kouza-04__caution p {
    width: 100%;
  }
  .kouza .kouza__top .kouza__top__title__09 .kai {
    font-size: 1rem;
  }
  .kouza .kouza__top .kouza__top__title__09 .title {
    font-size: 1.125rem;
  }
  .kouza .kouza__top .kouza__top__title__09 .free {
    font-size: 1rem;
    line-height: 1rem;
  }
  .kouza-09 {
    margin-top: 20px;
  }
  .kouza-09 .kouza-09__img .kouza-09__img-01 {
    width: 100%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img-02 {
    position: initial;
    width: 100%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img-03 {
    position: initial;
    width: 100%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img__sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .kouza-09 .kouza-09__img .kouza-09__img__sp picture:nth-child(1) {
    width: 35%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img__sp picture:nth-child(2) {
    width: 62%;
  }
  .kouza-09 .kouza-09__caution {
    margin: 15px 0 40px 0;
  }
  .kouza-09 .kouza-09__caution p {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .kouza .kouza__top .kouza__top__close {
    position: initial;
    margin-bottom: 30px;
  }
  .kouza .kouza__top .kouza__top__close p {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .kouza .kouza__top .kouza__top__price {
    position: initial;
    margin-bottom: 20px;
  }
  .kouza .kouza__top .kouza__top__price p span {
    margin-top: 5px;
    padding-top: 5px;
    font-size: 1.25rem;
  }
  .kouza-04 .kouza-04__img .kouza-04__img-02 {
    position: initial;
    width: 100%;
  }
  .kouza-04 .kouza-04__img .kouza-04__img-03 {
    position: initial;
    width: 100%;
  }
  .kouza-04 .kouza-04__img .kouza-04__img__sp {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
  .kouza-04 .kouza-04__img .kouza-04__img__sp picture:nth-child(1) {
    width: 25%;
  }
  .kouza-04 .kouza-04__img .kouza-04__img__sp picture:nth-child(2) {
    width: 45%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img-02 {
    position: initial;
    width: 100%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img-03 {
    position: initial;
    width: 100%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img__sp {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
  }
  .kouza-09 .kouza-09__img .kouza-09__img__sp picture:nth-child(1) {
    width: 25%;
  }
  .kouza-09 .kouza-09__img .kouza-09__img__sp picture:nth-child(2) {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-no {
    display: none;
  }
}
/*# sourceMappingURL=cssmap/style.css.map */
