@charset "utf-8";

/* common
---------------------------------------------------------------- */
body {
  letter-spacing: 0.05em;
}
/* color */
.cl-white {
  color: var(--white);
}
.cl-red {
  color: var(--red);
}
.cl-main {
  color: var(--cl-main);
}
.cl-sub {
  color: var(--cl-sub);
}

/* font-size */
.fs-ttl-l {
  font-size: var(--fs-ttl-l);
}
.fs-ttl-m {
  font-size: var(--fs-ttl-m);
}
.fs-ttl-s {
  font-size: var(--fs-ttl-s);
}
.fs-ttl-xs {
  font-size: var(--fs-ttl-xs);
}
.fs-ttl-xxs {
  font-size: var(--fs-ttl-xxs);
}
.fs-lead {
  font-size: var(--fs-lead);
}
.fs-default {
  font-size: var(--fs-default);
}
.fs-notes {
  font-size: var(--fs-notes);
}

/* hover */
.hov-op1:hover {
  opacity: 1;
}

/* btn
---------------------------------------------------------------- */
.btn a,
.btn button {
  position: relative;
  font-weight: bold;
  padding: 0.6em 0;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border-radius: 100px;
  transition: all 0.3s;
}
.btn-cta a,
.btn-cta button {
  background: var(--cl-sub-01);
  color: var(--white);
  width: 460px;
  border: var(--white) 2px solid;
  font-size: var(--fs-ttl-m);
}
.btn-01 a {
  background: var(--cl-main);
  color: var(--white);
  width: 280px;
  border: var(--white) 2px solid;
  font-size: var(--fs-ttl-xs);
}
.btn a:hover,
.btn button:hover {
  background: var(--cl-sub-02);
}
.btn-right {
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
}
/* .btn-cta a:after,
.btn-01 a::after {
  content: "";
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  transition: 0.3s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
} */
.btn-02 a:after {
  border-top: 2px solid #a72126;
  border-right: 2px solid #a72126;
}
.btn-pdf a,
.btn-pdf button {
  background: rgb(255, 255, 255);
  color: rgb(167, 33, 38);
  border: rgb(167, 33, 38) 2px solid;
  font-size: 2rem;
  padding: 1em 3em 1em 2em;
}
.btn-pdf a:hover{
  background: rgb(255, 255, 255);
  opacity: .7;
}
@media only screen and (max-width: 768px) {
  .btn a {
    width: 100%;
  }
  .btn-cta button,
  .btn-cta a {
    min-width: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .btn a {
    font-size: 2rem;
    width: 100%;
  }
  .btn-01 {
    width: 100%;
  }
}
@media only screen and (max-width: 400px){
  .btn-cta a,
  .btn-cta button {
    padding: 1em 2em 1em 1em;
  }
}

/* box
---------------------------------------------------------------- */
.box {
  padding: 2em;
}
.box-basic {
  background: var(--cl-base);
  padding: 2em 1em;
  text-align: center;
}
.box-basic p {
  font-size: var(--fs-lead);
  line-height: 1.8;
}
@media only screen and (max-width: 599px) {
  .box {
    padding: 1em;
  }
  .box-basic {
    text-align: left;
  }
}

/* icon
---------------------------------------------------------------- */
.ac-icon {
  position: relative;
  display: inline-block;
  padding-left: 1.8em;
}
.ac-icon::before {
  position: absolute;
  top: -0.2em;
  left: 0;
  font-family: "Font Awesome 6 Free";
  margin-right: 0.5em;
}
.ac-icon-map::before {
  content: "\f3c5";
  font-weight: 900;
  font-size: 1.5em;
  color: var(--cl-sub-03);
  text-align: right;
}
.ac-icon-train::before {
  content: "\f239";
  font-weight: 900;
  font-size: 1.5em;
  color: var(--cl-sub-03);
  text-align: right;
}
/* ヘッダー header
---------------------------------------------------------------- */
.header {
  background: linear-gradient(90deg, var(--cl-sub-04) 0%,var(--cl-main) 70%,var(--cl-sub-05) 100%);
  padding: 12px 0;
  height: auto;
}
.header .flex-nowrap {
  column-gap: 1.2em;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  width: 100%;
  max-width: 100px;
}
.header-text {
  font-size: var(--fs-lead);
  font-weight: bold;
  color: var(--white);
  gap: 0.4em 1em;
}
.header-text p:first-of-type {
  padding: 6px 20px 6px 20px;
  border: 1px solid var(--white);
  border-radius: 100px;
  line-height: 1.5em;
}
@media only screen and (max-width: 599px) {
  .header .flex-nowrap {
  column-gap: .6em;
}
  .header-text p:first-of-type {
  padding: 3px 12px 3px 20px;
  }
  .header-logo img {
    width: 90%;
}
}
/* トップ Top-hero
---------------------------------------------------------------- */
.top-hero {
  background: linear-gradient(90deg, var(--cl-sub-04) 0%,var(--cl-main) 70%,var(--cl-sub-05) 100%);
  color: var(--white);
}
.top-main-img img {
  width: 100%;
  max-width: 100%;
  height: 420px;
  object-fit: cover;
}
.top-main-ttl {
  row-gap: 10px;
  align-items: flex-start;
  margin-top: -20px;
}
.top-main-ttl h1 {
  font-size: 6.8rem;
  flex-basis: 52%;
}
.top-main-ttl h1 img {
  display: block;
  width: 490px;
  height: auto;
  padding-bottom: 5px;
}
.top-main-ttl-text {
  padding-top: 10px;
  font-size: var(--fs-ttl-s);
  flex-basis: 48%;
}
.top-main-text {
  padding-bottom: 20px;
}
.mail-link a {
  color: var(--white);
}
.cta-list li {
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0;
}
.cta-list li:before {
  content: "※";
  position: absolute;
  left: 0;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .top-main-img img {
    height: 560px;
  }
  .top-main-ttl {
    text-align: center;
    display: block;
  }
  .top-main-ttl p {
    padding-top: 10px;
    text-align: left;
    font-size: 2.4rem;
  }
  .top-main-ttl h1 img {
    /* margin: 0 auto; */
  }
  .top-main-ttl-text {
    padding-top: 0px
  }
    .top-main-ttl-text  p {
      text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .top-main-img img {
    height: 400px;
  }
  .top-main-ttl h1 {
    font-size: 4.2rem;
  }
  .top-main-ttl p {
    font-size: 1.8rem;
  }
  .top-main-contents .btn-cta {
    margin: 1.5em 0;
  }
}
/* @media only screen and (max-width: 399px) {
    .top-main-ttl-text p br {
      display: none;
    }
} */

/* section
---------------------------------------------------------------- */
/* se-01 */
.se-01 {
  background-color: var(--cl-base);
}
/* タイトルテキスト */
.se01-ttl {
  font-size: 3.2rem;
  line-height: 1.5em;
}
.se01-ttl01 {
  font-size: 4rem;
  line-height: 2em;
}
.se01-ttl02 {
  font-size: 2.8rem;
}
.se01-ttl03 {
  display: inline-block;
  font-size: 4.6rem;
  line-height: 1.5em;
  padding-top: 0.2em;
  border-bottom: var(--cl-main) 6px solid;
}
@media only screen and (max-width: 768px) {
  .se01-ttl br:nth-of-type(3) {
    display: block;
  }
}
@media only screen and (max-width: 659px) {
  .se01-ttl br:nth-of-type(2),
  .se01-ttl br:nth-of-type(3) {
    display: none;
  }
  .se01-ttl,
  .se01-ttl02 {
    font-size: 2rem;
  }
  .se01-ttl01,
  .se01-ttl03 {
    font-size: 3rem;
  }
}
/* se01-1 */
.se01-1 h3 {
  font-size: var(--fs-ttl-l);
  line-height: 1.5em;
}
.se01-1-wrap {
  gap: 2.5em;
}
.se01-1-item {
  gap: 1.5em;
  flex-basis: 50%;
}
.se01-1-item-1 {
  flex-shrink: 0;
  width: 160px;
}
.se01-1-item-text span {
  font-size: var(--fs-ttl-s);
  /* padding: 0 0.2em; */
}
.se01-ttl br:nth-of-type(3) {
  display: none;
}
.d--sp {
  display: none;
}
/* 3人を縦並びにする */
.flex-column {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .se01-1-wrap {
    flex-direction: column;
    align-items: center;
  }
  .se01-1-item {
    column-gap: 2em;
  }
  .se01-1-item-2 {
    width: 100%;
    max-width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .se01-1 h3 {
    text-align: left;
  }
  .se01-1 h3 br {
    display: none;
  }
}
@media only screen and (max-width: 499px) {
  .d--pc {
    display: none;
  }
  .d--sp {
    display: block;
  }
  .se01-1-sp .flex-nowrap {
    column-gap: 1em;
  }
}
/* se01-2 */
.se01-2 {
  background: var(--white);
  padding: 3em;
  font-size: 1.8rem;
}
/* 大枠 */
.se01-2-item,
.se01-2-item2 {
  display: flex;
  gap: 0.6em 1em;
  flex-wrap: nowrap;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--gray);
}
.se01-2-item:before,
.se01-2-item2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 18%;
  height: inherit;
  border-bottom: 1px solid var(--cl-main);
}
.se01-2-item2:last-of-type {
  margin-bottom: 0;
}
.se01-2-ttl,
.se01-2-item2 dt {
  flex-basis: 20%;
  font-weight: bold;
}
.se01-2-contents,
.se01-2-item2 dd {
  flex-basis: 80%;
}
/* コンテンツ */
.se01-2-contents dl {
  display: flex;
  width: 100%;
}
.se01-2-contents dt {
  flex-basis: 20%;
}
.se01-2-contents dd {
  flex-basis: 80%;
}
/* 取り消し線の表示 */
/* .se01-2-contents dl:first-of-type dt,
.se01-2-contents dl:first-of-type dd {
  text-decoration-line: line-through;
  text-decoration-style: solid;
  text-decoration-color: var(--red);
} */
/* 終了の表示 */
/* .se01-2-contents dl:first-of-type dd span {
  display: inline-block;
  text-decoration-line: none !important;
  color: var(--red);
  padding-left: 6px;
} */

.se01-2-btn a {
  color: var(--cl-main);
  border: 1px solid var(--cl-main);
  padding: 8px 12px;
  margin-right: 20px;
  margin-bottom: 10px;
}
/* ボタンを横並び */
.btn01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
@media only screen and (max-width: 1024px) {
  .se01-2-contents dl {
    display: block;
  }
  .se01-2-contents dl:not(:first-of-type) {
    padding-top: 0.8em;
  }
}
@media only screen and (max-width: 768px) {
  .se01-2 {
    padding: 2em;
  }
  .se01-2-item,
  .se01-2-item2 {
    flex-direction: column;
  }
  .se01-2-item:before .se01-2-item2::before {
    border: none;
  }
}
@media only screen and (max-width: 599px) {
  .se01-2 {
    padding: 2em 1em;
  }
}

/* se01-3 */
.se01-3 {
  border: 2px solid var(--cl-sub-04);
  background-color: var(--white);
}
.se01-3 h3 {
  font-size: var(--fs-ttl-l);
  padding: 0.4em 0;
  color: var(--white);
  background-color: var(--cl-sub-04);
}
/* リスト */
.se01-3 ol {
  margin: 0;
  padding: 2em 3em;
  list-style: none;
  counter-reset: li;
}
.se01-3 ol li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-size: 22px;
  font-weight: bold;
  padding-left: 2em;
  letter-spacing: 0em;
}
.se01-3 ol li:not(:first-child) {
  margin-top: 0.2em;
}

/* 数字のスタイル */
.se01-3 ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 12px;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--cl-main);
  font-size: 20px;
  color: var(--white);
  line-height: 30px;
  text-align: center;
}
.se01-3 ol li p span {
  color: var(--cl-main);
  font-size: 30px;
}
.se01-3 ol li p.time-sc{
  white-space: nowrap;
}
.se01-3 ol li p br {
  display: none;
}
@media only screen and (max-width: 999px) {
  .se01-3 ol li p br {
    display: block;
  }
  .se01-3 ol {
    padding: 2em;
  }
}
@media only screen and (max-width: 768px) {
  .se01-3 ol li {
    font-size: 16px;
  }
  .se01-3 ol li p span {
    font-size: 18px;
  }
  .se01-3 ol li::before {
    top: 4px;
    width: 22px;
    height: 22px;
    font-size: 16px;
    line-height: 22px;
  }
  .se01-3 ol li:not(:first-child) {
    margin-top: 0.4em;
  }
}
@media only screen and (max-width: 630px) {
  .se01-3 ol {
    padding: 1.5em 1em;
  }
  .se01-3 ol li p br {
    display: none;
  }
  .se01-3 ol > li > p:last-of-type {
    text-align: right;
  }
  .se01-3 ol li {
    font-size: 14px;
    align-items: flex-start;
  }
  .se01-3 ol li p span {
    font-size: 16px;
  }
}
@media only screen and (max-width: 370px) {
  .se01-3 ol li {
    display: block;
    position: relative;
    padding-left: 1.8em;
    align-items: flex-start;
  }
}

/* se01-cta */
.se01-cta {
  background: linear-gradient(90deg, var(--cl-sub-04) 0%,var(--cl-main) 70%,var(--cl-sub-05) 100%);
  padding: 1em 0;
  color: var(--white);
}
/* .se01-cta-ttl {
  flex-basis: 70%;
} */
.se01-cta .btn-cta button {
  width:360px;
}
.se01-cta-ttl img {
  width: 440px;
}
.se01-cta-ttl p {
  font-size: 6rem;
  color: var(--white);
  margin-top: -0.1em;
}
@media only screen and (max-width: 1024px) {
  .se01-cta .col-7to3{
    display: block;
    text-align: center;
  }
  .se01-cta .col-7to3 .se01-cta-ttl{
    display: inline-block;
    text-align: left;
  }
  .se01-cta .flex-basic {
    display: block;
    text-align: center;
  }
  .se01-cta .btn-cta {
    padding-top: 4px;
  }
  .se01-cta .se01-2-text {
    padding-top: 20px;
  }
    .se01-cta .cta-list {
      padding-top: 15px;
    }
}
@media only screen and (max-width: 599px) {
  .se01-cta-ttl p {
    font-size: 4.2rem;
  }
    .se01-cta .btn-cta {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 380px) {
  .se01-cta .btn-cta button {
    width:100%;
  }
}
/* @media only screen and (max-width: 420px) {
  .se01-cta-ttl p {
    font-size: 3rem;
    margin-top:.3em;
  }
} */

/* se-02 */
.se02-ttl-1 {
  font-size: var(--fs-ttl-ll);
}
.se02-ttl-1 br {
  display: none;
}
.se02-ttl-1:before,
.se02-ttl-1:after {
  border-top: 2px solid var(--black);
  content: "";
  width: 50px;
}
.se02-ttl-1:before {
  margin-right: 10px;
}
.se02-ttl-1:after {
  margin-left: 10px;
}
.se-02 .col-2-1 {
  gap: 3em;
}
.se-02 .col-item h3 {
  position: relative;
  font-size: var(--fs-ttl-l);
  padding-bottom: 0.8em;
}
.se-02 .col-item h3 span {
  font-size: var(--fs-ttl-ll);
  color: var(--cl-main);
  display: inline;
}
.se-02 .col-item h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: inherit;
  border-bottom: 2px solid var(--cl-main);
}
/* 2行目以降を1文字下げるインデント */
.se-02 .col-item ul li {
  padding-left: 0.7em;
  text-indent: -1em;
}
@media only screen and (max-width: 1024px) {
  .se-02 .col-2-1 {
    column-gap: 1.5em;
  }
  .se02-br h3 br {
    display: none;
  }
}
@media only screen and (max-width: 799px) {
  .se02-ttl-1 br {
    display: block;
  }
  .se-02 .col-item h3 {
    font-size: var(--fs-ttl-m);
  }
  .se-02 .col-item h3 span {
    font-size: var(--fs-ttl-l);
  }
  .se-02 .col-item h3 br {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .se02-ttl-1 {
    font-size: 2.4rem;
  }
  .se02-ttl-1:before,
  .se02-ttl-1:after {
    border-top: 2px solid var(--black);
    content: "";
    width: 40px;
  }

  .se-02 .col-item h3 br {
    display: block;
  }
  .se-02 .col-item h3 {
    font-size: 2rem;
  }
}

/* se-03 */
.se03-ttl-1 {
  font-size: 4rem;
  color: var(--cl-main);
}
.se03-ttl-1 span {
  font-size: 3.2rem;
  color: var(--black);
  padding-top: 0.4em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.se03-ttl-1 span::before,
.se03-ttl-1 span::after {
  content: "";
  width: 2px;
  height: 36px;
  background-color: var(--black);
}
.se03-ttl-1 span::before {
  margin-right: 20px;
  transform: rotate(-35deg);
}
.se03-ttl-1 span::after {
  margin-left: 20px;
  transform: rotate(35deg);
}
.se03-ttl-1 br {
  display: none;
}
.se03-ttl-2,
.se03-ttl-3 {
  font-size: var(--fs-ttl-m);
  border-radius: 6px;
  padding: 0.5em 1em;
}
.se03-ttl-2 {
  background-color: var(--cl-main);
  color: var(--white);
}
.se03-ttl-3 {
  border: 2px solid var(--cl-main);
  color: var(--cl-main);
}
.se-03 ul li {
  font-size: var(--fs-lead);
  font-weight: bold;
  padding-bottom: 1.5em;
  /* アイコン */
  background-image: url(../images/qicon.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto 32px;
  padding-left: 2.6em;
}
@media only screen and (max-width: 599px) {
  .se03-ttl-1 {
    font-size: 2.4rem;
  }
  .se03-ttl-1 span {
    font-size: 2.2rem;
  }
  .se03-ttl-2,
  .se03-ttl-3 {
    font-size: 2rem;
    border-radius: 6px;
    padding: 0.5em 1em;
  }
  .se-03 ul li {
    background-size: auto 26px;
    padding-left: 2.4em;
  }
}
@media only screen and (max-width: 420px) {
  .se03-ttl-1 br {
    display: block;
  }
}

/* se-04 */
/* チャットワークの非表示 */

/* .se-04 {
  background-color: var(--cl-base);
}
.se04-wrap {
  background-color: var(--white);
  padding: 3em;
}
.se04-wrap h3 {
  font-size: var(--fs-ttl-l);
}
.se04-item-1 {
  padding: 1em 1.5em;
  border: 1px solid var(--black);
  border-radius: 6px;
  gap: 0.2em 0.6em;
  width: 100%;
}
.se04-item-1 p:first-of-type {
  font-size: var(--fs-ttl-xs);
  width: 100%;
}
.se04-item-2 {
  font-size: var(--fs-ttl-s);
  gap: 0.6em 1em;
}
.se04-item-2 br {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .se04-item-1 {
    flex-direction: column;
  }
}
@media only screen and (max-width: 870px) {
  .se04-wrap h3 br {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .se04-wrap {
    background-color: var(--white);
    padding: 2em 1em;
  }
}
@media only screen and (max-width: 599px) {
  .se04-wrap h3 {
    font-size: 2.2rem;
    text-align: left;
  }
  se04-item-2 br {
    display: block;
  }
} */

/* se-05 */
.se-05 h2 > img {
  padding-right: 4px;
  max-width: 320px;
  vertical-align: text-bottom;
}
/* se05-1 */
.se05-1 {
  padding-bottom: 20px;
}
.se-05 .fs-ttl-ll {
  font-size: var(--fs-ttl-ll);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness:4px;
  text-decoration-color: var(--cl-sub-03);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.se05-ttl {
color: #a72126;
}
.about-bg {
  position: relative;
}
.about-bg::before {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: -50px;
  left: 0;
  width: calc(100% - 16vw);
  height: 60%;
  background: #f6e8e9;
}
.about-wrap {
  gap: 3em;
}
.about-wrap > div {
  flex-basis: 50%;
}
.about-text p {
  font-size: var(--fs-lead);
}
/* se05-2 */
.place-item-wrap {
  gap: 3em 1.5em;
}
.place-item {
  position: relative;
  width: 100%;
  border: 1px solid var(--d-gray2);
  padding: 2.4em 1.5em;
}
.place-item p {
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  color: var(--cl-l-main);
  background: var(--white);
  padding: 0 0.2em;
}
.place-img img {
  max-width: 180px;
}
/* se05-3 */
.event-item-wrap {
  gap: 3em 1.5em;
}
.event-item {
  flex-basis: 1;
  width: 100%;
}
.se05-3-item {
  background: var(--cl-base);
  padding: 2em 1em;
}
@media only screen and (max-width: 1024px) {
  .about-wrap {
    gap: 2em;
  }
  .place-item {
    padding: 2em 1em;
  }
}
@media only screen and (max-width: 768px) {
  .about-wrap,
  .place-item-wrap,
  .event-item-wrap {
    flex-direction: column;
  }
  .about-bg::before {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .place-item p {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 499px) {
  .se-05 h2 > img {
    width: 220px;
  }
}
@media only screen and (max-width: 399px) {
  .se05-ttl{
    display: block;
  }
}

/* cta-footer
---------------------------------------------------------------- */
/* cta */
.se-cta {
  background-image: url(../images/fot_pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.se-cta-wrap {
  background: linear-gradient(90deg, var(--cl-sub-04) 0%,var(--cl-main) 70%,var(--cl-sub-05) 100%);
  padding: 3em;
  color: var(--white);
}
.cta-header {
  position: relative;
}
.cta-text-1 p {
  display: inline-block;
  font-size: var(--fs-ttl-s);
  padding: 6px 30px;
  border: 1px solid var(--white);
  border-radius: 100px;
  line-height: 1.5em;
}
/* .cta-text-1 {
  margin-bottom: 1.4em;
} */
.se-cta-item  {
  column-gap: 10px;
}
.cta-text-2 {
  font-size: var(--fs-ttl-xs);
    flex-basis: 50%;
}
.cta-logo {
  flex-shrink: 0;
  position: absolute;
  /* padding: 0 3em; */
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cta-logo img {
  width: 120%;
  max-width: 120px;
}
@media only screen and (max-width: 1024px) {
  .se-cta-item  {
        display: block;
    text-align: center;
  }
  .cta-text-2 {
    padding-top: .2em;
  }
}
@media only screen and (max-width: 810px) {
  .se-cta-wrap {
    padding: 2em 1em;
  }
}
@media only screen and (max-width: 700px) {
  .cta-logo {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .se-cta {
    background: none;
    padding: 0;
  }
  .se-cta .b-wrapper-reading {
    padding-left: 0;
    padding-right: 0;
  }
  .cta-text-1 p {
    font-size: 2rem;
  }
}
/* modal
---------------------------------------------------------------- */
/* modal */
.modal-window {
  display: none;
  position: fixed;
  background: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1400px;
  height: auto;
  border-radius: 5px;
  z-index: 11;
  padding: clamp(2.5em, 8%, 4em) 3%;
}
.modal-inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
}
.button-close {
  position: absolute;
  top: 0.5em;
  right: 1em;
}
.dli-close {
  display: inline-block;
  color: var(--black);
  line-height: 1;
  width: 1.5em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}
.dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
.modal-window h2 {
  font-size: clamp(1.6rem, 5.2vw, 2.4rem);
}
.modal-window .btn-cta a {
  font-size: clamp(1rem, 3.8vw, 2rem);
  width: 80%;
}
.modal-window .btn-cta a img {
  width: 1em;
  height: 1em;
}
.modal-window .btn-cta a.disabled {
  background: var(--gray);
  pointer-events: none;
}
.modal-window .checkbox-styled label span {
  font-size: clamp(1.4rem, 3.6vw, 1.8rem);
}
.modal-window .btn-cta a br {
  display: none;
}
/* 注意事項のテキストを中央揃え */
.text-c-l {
  text-align: center;
}
/* テキストはみ出し修正 */
.checkbox-styled label {
  white-space: wrap;
}

@media only screen and (max-width: 899px) {
  .modal-window .btn-cta a br {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .modal-window .btn-cta a {
    width: 100%;
  }
}
/* SP表示でテキストを左揃えにして文字を小さく */
@media only screen and (max-width: 599px) {
  .text-c-l {
    text-align: left;
  }
  .fs-ttl-m {
    font-size: 1.8rem;
  }
}

/* footer */
.footer {
  background: var(--white);
  width: 100%;
  padding: 1em 0;
}
.footer-copyright {
  font-size: 1.4rem;
}

@media only screen and (max-width: 1024px) {
  .fotter-logo a {
    display: inline-block;
    max-width: 50%;
  }
}

/* contact
---------------------------------------------------------------- */
