@charset "UTF-8";
:root {
  --scale: 0.0694444444vw;
  --max: 1;
}
@media screen and (max-width: 767px) {
  :root {
    --scale: 0.2544529262vw;
    --max: 10;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #111;
  font-family: "Noto Serif JP", serif;
  background: #fff;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  margin-inline: auto;
  width: clamp(0px, calc(1100 * var(--scale)), calc(1100px * var(--max)));
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .inner {
    width: clamp(0px, calc(353 * var(--scale)), calc(353px * var(--max)));
  }
}

/*------------------------------
header
------------------------------*/
header {
  padding: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max))) 0;
}
@media (max-width: 767px) {
  header {
    padding: clamp(0px, calc(10 * var(--scale)), calc(10px * var(--max))) 0;
  }
}

@media (min-width: 768px) {
  .header__inner {
    width: clamp(0px, calc(1200 * var(--scale)), calc(1200px * var(--max)));
    max-width: unset;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: clamp(0px, calc(265 * var(--scale)), calc(265px * var(--max)));
}
@media (max-width: 767px) {
  .header__logo {
    width: 25%;
    margin-left: 0;
  }
}

/*------------------------------
fv
------------------------------*/
.fv {
  background: url(../img/fv-bg.png) no-repeat center center/cover;
  padding: clamp(0px, calc(52 * var(--scale)), calc(52px * var(--max))) 0 clamp(0px, calc(62 * var(--scale)), calc(62px * var(--max)));
}
@media (max-width: 767px) {
  .fv {
    padding: clamp(0px, calc(62 * var(--scale)), calc(62px * var(--max))) 0 clamp(0px, calc(62 * var(--scale)), calc(62px * var(--max)));
  }
}

@media (max-width: 767px) {
  .fv__inner {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .fv__offer {
    display: flex;
    align-items: center;
    gap: 0 clamp(0px, calc(15 * var(--scale)), calc(15px * var(--max)));
    justify-content: flex-start;
    padding-left: 5%;
  }
}

.fv__label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 4em;
  aspect-ratio: 1/1;
  font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
  font-weight: 600;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .fv__label {
    font-size: clamp(0px, calc(15 * var(--scale)), calc(15px * var(--max)));
  }
}

.fv__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
  padding: 0.25em 0.6em;
  background: #fff600;
  transform: rotate(-2deg);
  margin-top: 1.1%;
}
@media (max-width: 767px) {
  .fv__text {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
    margin-top: 3.1%;
  }
}

.fv__heading {
  margin-top: 0.2em;
  font-size: clamp(0px, calc(72 * var(--scale)), calc(72px * var(--max)));
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin-left: -0.6em;
  text-indent: 0.6em;
}
@media (max-width: 767px) {
  .fv__heading {
    font-size: clamp(0px, calc(30 * var(--scale)), calc(30px * var(--max)));
    text-align: center;
    margin-left: 0em;
    text-indent: 0em;
  }
}

.fv__subheading {
  margin-top: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
.fv__subheading strong {
  display: block;
  font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  margin-bottom: 0.5em;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .fv__subheading {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
    text-align: center;
  }
  .fv__subheading strong {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
    margin-bottom: 1.1em;
  }
}

/*------------------------------
concerns
------------------------------*/
.concerns {
  background: url(../img/concerns-bg.png) no-repeat center center/cover;
  padding: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max))) 0;
  position: relative;
}
.concerns::before {
  content: "";
  position: absolute;
  background: url(../img/Intersect.png) no-repeat center center/100%;
  aspect-ratio: 480/213;
  transform: translate(-50%, 55%);
  width: 17%;
  left: 50%;
  bottom: 0%;
}
@media (max-width: 767px) {
  .concerns {
    background: url(../img/concerns-bg_sp.jpg) no-repeat center center/cover;
    padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0;
  }
  .concerns::before {
    width: 50%;
  }
}

.concerns__heading {
  font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .concerns__heading {
    font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  }
}

.concerns__list {
  width: calc(1038 / 1100 * 100%);
  margin: 0 auto;
  margin-top: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max))) 0;
}
.concerns__list li {
  font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  padding-bottom: 0.57em;
  border-bottom: 1px solid #fff;
  position: relative;
  padding-left: 1.36em;
}
.concerns__list li::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  background: url(../img/icon-check.png) no-repeat center center/contain;
  width: 0.93em;
  aspect-ratio: 52/44;
}
.concerns__list li strong {
  background: linear-gradient(transparent 60%, rgba(245, 225, 59, 0.3) 60%);
}
@media (max-width: 767px) {
  .concerns__list {
    margin-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
    width: 100%;
    padding-left: 2%;
  }
  .concerns__list li {
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    line-height: 1.4;
    padding-left: 1.8em;
    padding-bottom: 0.9em;
  }
  .concerns__list li::before {
    top: unset;
    width: 1.5em;
    bottom: 1em;
    left: -0.4em;
  }
}

/*------------------------------
message
------------------------------*/
.message--empathy {
  background: url(../img/message-bg01.png) no-repeat center center/cover;
  padding: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max))) 0;
}
@media (max-width: 767px) {
  .message--empathy {
    background: url(../img/message-bg01_sp.png) no-repeat center center/cover;
    padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0;
  }
}

.message--future {
  background: url(../img/message-bg02.png) no-repeat center center/cover;
  padding: clamp(0px, calc(120 * var(--scale)), calc(120px * var(--max))) 0;
}
@media (max-width: 767px) {
  .message--future {
    background: url(../img/message-bg02_sp.png) no-repeat center center/cover;
    padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0;
  }
}

.message__heading {
  font-size: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .message__heading {
    font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
    line-height: 1.5;
  }
}

.message__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max))) 0;
  margin-top: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
}
@media (max-width: 767px) {
  .message__content {
    margin-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
    gap: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max))) 0;
  }
}

.message__text {
  font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media (max-width: 767px) {
  .message__text {
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    line-height: 1.6;
  }
}

/*------------------------------
concept
------------------------------*/
.concept {
  background: linear-gradient(180deg, #e6f0fa 0%, rgba(230, 240, 250, 0) 100%);
  padding: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max))) 0 clamp(0px, calc(120 * var(--scale)), calc(120px * var(--max)));
  position: relative;
}
.concept::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/concept-img.png) no-repeat center center/contain;
  width: clamp(0px, calc(660 * var(--scale)), calc(660px * var(--max)));
  aspect-ratio: 1318/1040;
}
@media (max-width: 767px) {
  .concept {
    padding: clamp(0px, calc(170 * var(--scale)), calc(170px * var(--max))) 0 clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  }
  .concept::after {
    width: clamp(0px, calc(240 * var(--scale)), calc(240px * var(--max)));
  }
}

.concept__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 767px) {
  .concept__text {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
    margin: 0 auto;
  }
}

/*------------------------------
method
------------------------------*/
.method {
  background: #0b1f3a;
  color: #fff;
  padding: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max))) 0 clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
}
@media (max-width: 767px) {
  .method {
    padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0 clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  }
}

.method__heading {
  font-size: clamp(0px, calc(52 * var(--scale)), calc(52px * var(--max)));
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .method__heading {
    font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  }
}

.method__item {
  padding: clamp(0px, calc(80 * var(--scale)), calc(80px * var(--max))) 0 clamp(0px, calc(77 * var(--scale)), calc(77px * var(--max)));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.method__item:nth-child(n+2) {
  border-top: 1px solid #f5f5f5;
}
.method__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .method__item:nth-child(1) {
    padding-top: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  }
}
@media (max-width: 767px) {
  .method__item {
    flex-direction: column;
    padding: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max))) 0 clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
    gap: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max))) 0;
  }
  .method__item:nth-child(1) {
    padding-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
  }
  .method__item:nth-child(2n) {
    flex-direction: column;
  }
}

.method__body {
  width: calc(530 / 1100 * 100%);
}
@media (max-width: 767px) {
  .method__body {
    width: 100%;
  }
}

.method__headline {
  font-size: clamp(0px, calc(48 * var(--scale)), calc(48px * var(--max)));
  font-weight: 700;
  color: #d5ae4f;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .method__headline {
    font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
    text-align: center;
  }
}

.method__description {
  font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 700;
  line-height: 2.2;
  margin-top: 2em;
}
@media (max-width: 767px) {
  .method__description {
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    line-height: 1.6;
    margin-top: 1.3em;
  }
}

.method__figure {
  width: calc(530 / 1100 * 100%);
}
@media (max-width: 767px) {
  .method__figure {
    width: 100%;
  }
}

.method__item--column {
  flex-direction: column;
  gap: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max))) 0;
}
.method__item--column .method__body {
  width: 100%;
}
.method__item--column .method__figure {
  width: 100%;
}

/*------------------------------
formation
------------------------------*/
.formation {
  padding: clamp(0px, calc(120 * var(--scale)), calc(120px * var(--max))) 0;
}
@media (max-width: 767px) {
  .formation {
    padding: 0 0 clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  }
}

.formation__header {
  width: calc(925 / 1100 * 100%);
  display: flex;
  align-items: flex-start;
  margin-left: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
  margin-left: 1.2%;
}
@media (max-width: 767px) {
  .formation__header {
    width: 100%;
    flex-direction: column;
    gap: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max))) 0;
    margin-top: -5%;
    align-items: center;
    margin-left: 0;
  }
}

.formation__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 7.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #007bc7;
  font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .formation__label {
    font-size: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max)));
  }
}

.formation__heading {
  flex: 1;
  font-size: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .formation__heading {
    font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  }
}

.formation__content {
  margin-top: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  display: flex;
  justify-content: center;
  gap: 0 clamp(0px, calc(19 * var(--scale)), calc(19px * var(--max)));
}
@media (max-width: 767px) {
  .formation__content {
    margin-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
    flex-direction: column-reverse;
    gap: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max))) 0;
  }
}

.formation__text {
  width: calc(551 / 1100 * 100%);
  font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  font-weight: 700;
  line-height: 2;
  margin-top: 2%;
}
@media (max-width: 767px) {
  .formation__text {
    width: 100%;
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    line-height: 1.6;
    text-align: center;
  }
}

.formation__figure {
  width: calc(530 / 1100 * 100%);
}
@media (max-width: 767px) {
  .formation__figure {
    width: 100%;
  }
}

.formation__list {
  display: flex;
  gap: 0 clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  margin-top: 10%;
}
@media (max-width: 767px) {
  .formation__list {
    margin-top: 23%;
    flex-direction: column;
    gap: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0;
  }
}

.formation__item {
  width: calc(33.3% - clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max))) * 2 / 3);
  border-radius: clamp(0px, calc(8 * var(--scale)), calc(8px * var(--max)));
  padding: 5.5% clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max))) 3%;
  color: #fff;
  text-align: center;
  position: relative;
  letter-spacing: 0.04em;
}
.formation__item:first-child {
  background: linear-gradient(180deg, #1c7799 0%, #156584 100%);
}
.formation__item:first-child .formation__item-label {
  background: linear-gradient(180deg, #1c7799 50%, rgba(28, 119, 153, 0) 100%);
}
.formation__item:nth-child(2) {
  background: linear-gradient(180deg, #184d83 0%, #1b365b 100%);
}
.formation__item:nth-child(2) .formation__item-label {
  background: linear-gradient(180deg, #184d83 50%, rgba(24, 77, 131, 0) 100%);
}
.formation__item:nth-child(3) {
  background: linear-gradient(180deg, #e0ac5d 0%, #b6893b 100%);
}
.formation__item:nth-child(3) .formation__item-label {
  background: linear-gradient(180deg, #e0ac5d 50%, rgba(224, 172, 93, 0) 100%);
}
@media (max-width: 767px) {
  .formation__item {
    width: 100%;
    padding-top: 17.5%;
    padding-bottom: 0;
    aspect-ratio: 353/260;
  }
}

.formation__item-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-47%, -44%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 700;
  text-align: center;
}
.formation__item-label strong {
  display: block;
  font-size: clamp(0px, calc(48 * var(--scale)), calc(48px * var(--max)));
  margin-bottom: 0.17em;
}
.formation__item-label span {
  white-space: nowrap;
  transform: translateY(0.5em);
}

.formation__item-headline {
  font-size: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
  font-weight: 700;
}

.formation__item-text {
  font-size: clamp(0px, calc(18 * var(--scale)), calc(18px * var(--max)));
  font-weight: 700;
  line-height: 1.6;
  margin-top: 1.1em;
}

.formation__message {
  margin-top: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.formation__message p:nth-child(n+2) {
  margin-top: 1.3em;
}
@media (max-width: 767px) {
  .formation__message {
    margin-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
    line-height: 1.6;
  }
  .formation__message p:nth-child(n+2) {
    margin-top: 1em;
  }
}

.formation__note {
  margin-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
  font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media (max-width: 767px) {
  .formation__note {
    margin-top: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
    font-size: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max)));
    line-height: 1.5;
  }
}

.formation__value {
  margin-top: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  font-size: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  font-weight: 500;
  color: #007bc7;
  text-align: center;
}
.formation__value strong {
  font-size: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max)));
}
@media (max-width: 767px) {
  .formation__value {
    margin-top: 11%;
    font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
  }
  .formation__value strong {
    font-size: clamp(0px, calc(47 * var(--scale)), calc(47px * var(--max)));
  }
}

/*------------------------------
benefits
------------------------------*/
.benefits__header {
  background: url(../img/benefits-bg01.png) no-repeat center center/cover;
  padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0 clamp(0px, calc(120 * var(--scale)), calc(120px * var(--max)));
  width: 100%;
  aspect-ratio: 2880/640;
  color: #fff;
  text-align: center;
  position: relative;
}
.benefits__header::before {
  content: "";
  position: absolute;
  background: url(../img/Intersect02.png) no-repeat center center/100%;
  aspect-ratio: 339/151;
  transform: translate(-50%, -23%);
  width: 11%;
  left: 50%;
  bottom: 0%;
}
@media (max-width: 767px) {
  .benefits__header {
    background: url(../img/benefits-bg01_sp.png) no-repeat center center/cover;
    aspect-ratio: 786/482;
    padding-bottom: 0;
  }
  .benefits__header::before {
    display: none;
  }
}

.benefits__heading {
  font-size: clamp(0px, calc(80 * var(--scale)), calc(80px * var(--max)));
  font-weight: 900;
  text-shadow: 0 2px 8px #6e4f2f;
}
@media (max-width: 767px) {
  .benefits__heading {
    font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  }
}

.benefits__subheading {
  font-size: clamp(0px, calc(26 * var(--scale)), calc(26px * var(--max)));
  font-weight: 700;
  margin-top: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  text-shadow: 0 2px 8px #6e4f2f;
}
@media (max-width: 767px) {
  .benefits__subheading {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
  }
}

.benefits__sections {
  color: #fff;
}

.benefits__section--01 {
  margin-top: -8.4%;
  background: url(../img/benefits-bg02.png) no-repeat center center/cover;
  padding: clamp(0px, calc(166 * var(--scale)), calc(166px * var(--max))) 0 clamp(0px, calc(240 * var(--scale)), calc(240px * var(--max)));
}
@media (max-width: 767px) {
  .benefits__section--01 {
    margin-top: -18%;
    background: url(../img/benefits-bg02_sp.png) no-repeat center center/cover;
    padding: clamp(0px, calc(85 * var(--scale)), calc(85px * var(--max))) 0 clamp(0px, calc(120 * var(--scale)), calc(120px * var(--max)));
  }
}

.benefits__section--02 {
  margin-top: -9.8%;
  background: url(../img/benefits-bg03.png) no-repeat center top/cover;
  padding: clamp(0px, calc(157 * var(--scale)), calc(157px * var(--max))) 0 clamp(0px, calc(120 * var(--scale)), calc(120px * var(--max)));
}
.benefits__section--02 .benefits__section-header {
  flex-direction: row-reverse;
  padding-left: 0;
}
@media (min-width: 768px) {
  .benefits__section--02 .benefits__section-body {
    width: clamp(0px, calc(790 * var(--scale)), calc(790px * var(--max)));
  }
  .benefits__section--02 .benefits__headline {
    margin-left: 0;
    text-indent: 0;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .benefits__section--02 {
    margin-top: -21%;
    padding: clamp(0px, calc(115 * var(--scale)), calc(115px * var(--max))) 0 clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  }
}

.benefits__section-header {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .benefits__section-header {
    padding-left: 1%;
  }
}
@media (max-width: 767px) {
  .benefits__section-header {
    display: block;
    position: relative;
  }
}

.benefits__section-body {
  width: calc(780 / 1100 * 100%);
}
@media (max-width: 767px) {
  .benefits__section-body {
    width: 100%;
    text-align: center;
  }
}

.benefits__label {
  display: inline-block;
  font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  font-weight: 900;
  padding: 0.5em 1.1em;
  background: #fff;
  color: #111;
}
@media (max-width: 767px) {
  .benefits__label {
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    padding: 0.25em 0.75em;
  }
}

.benefits__headline {
  font-size: clamp(0px, calc(35 * var(--scale)), calc(35px * var(--max)));
  font-weight: 900;
  line-height: 2;
  margin-top: 0.5em;
  margin-left: 0.4em;
  text-indent: -0.4em;
}
.benefits__headline strong {
  display: block;
  font-size: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
}
.benefits__headline span {
  font-size: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
}
@media (max-width: 767px) {
  .benefits__headline {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
    margin-left: 0;
    text-indent: 0;
    line-height: 1.8;
  }
  .benefits__headline strong {
    font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
  }
  .benefits__headline span {
    font-size: clamp(0px, calc(13 * var(--scale)), calc(13px * var(--max)));
  }
}

.benefits__image {
  width: clamp(0px, calc(240 * var(--scale)), calc(240px * var(--max)));
  transform: translateY(-7%);
}
@media (max-width: 767px) {
  .benefits__image {
    position: absolute;
    top: 0;
    right: clamp(0px, calc(30 * var(--scale)), calc(30px * var(--max)));
    transform: translateY(-70%);
    width: clamp(0px, calc(80 * var(--scale)), calc(80px * var(--max)));
  }
}

.benefits__topics {
  margin-top: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  margin-top: 1.7%;
  display: flex;
  flex-direction: column;
  gap: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max))) 0;
}
@media (max-width: 767px) {
  .benefits__topics {
    margin-top: 6.7%;
    gap: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max))) 0;
  }
}

.benefits__number {
  display: block;
  font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 700;
  text-align: center;
}

.benefits__topics-heading {
  font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
  font-weight: 700;
  color: #002146;
  background: #fff;
  padding: 0.5em 0;
  text-align: center;
}
.benefits__topics-heading span {
  font-size: clamp(0px, calc(24 * var(--scale)), calc(24px * var(--max)));
}
@media (max-width: 767px) {
  .benefits__topics-heading {
    margin-top: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max)));
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
    line-height: 1.2;
    padding: 0.4em 0;
  }
}

.benefits__topics-text {
  font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 700;
  line-height: 2.2;
  text-align: center;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .benefits__topics-text {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
    margin-top: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max)));
    text-align: left;
    margin-top: 3%;
    line-height: 1.6;
  }
}

/*------------------------------
cta
------------------------------*/
.cta__content {
  background: #111;
  padding: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max))) 0;
}
@media (max-width: 767px) {
  .cta__content {
    padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0;
  }
}

.cta__heading {
  font-size: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .cta__heading {
    font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
    white-space: nowrap;
  }
}

.cta__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  margin-top: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
}
@media (max-width: 767px) {
  .cta__price {
    flex-direction: column;
    gap: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max))) 0;
    margin-top: clamp(0px, calc(32 * var(--scale)), calc(32px * var(--max)));
  }
}

.cta__price-label {
  font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 700;
  background: #fff;
  border-radius: 5em;
  padding: 0.4em 0.8em;
}
@media (max-width: 767px) {
  .cta__price-label {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
  }
}

.cta__price-text {
  font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
  font-weight: 700;
  color: #fff600;
}
@media (max-width: 767px) {
  .cta__price-text {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  }
}

.cta__bottom {
  background: #fff600;
  padding: clamp(0px, calc(10 * var(--scale)), calc(10px * var(--max))) 0;
}
@media (max-width: 767px) {
  .cta__bottom {
    padding: clamp(0px, calc(3 * var(--scale)), calc(3px * var(--max))) 0;
  }
}

.cta__bottom02 {
  background: #111111;
  padding: clamp(0px, calc(17 * var(--scale)), calc(17px * var(--max))) 0;
}
@media (max-width: 767px) {
  .cta__bottom02 {
    padding: clamp(0px, calc(7 * var(--scale)), calc(7px * var(--max))) 0;
  }
}

.cta__message {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  font-weight: 600;
  line-height: 1.4;
  color: #de3b3b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 0 1.75em;
  letter-spacing: 0.08em;
  position: relative;
}
.cta__message::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #de3b3b;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.05em;
  aspect-ratio: 42/30;
}
.cta__message::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #de3b3b;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.05em;
  aspect-ratio: 42/30;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
    padding: 0em 1.3em;
    letter-spacing: -0.02em;
  }
}

.cta__message02 {
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .cta__message02 {
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    letter-spacing: normal;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: clamp(0px, calc(45 * var(--scale)), calc(45px * var(--max))) 0;
}

.footer__logo {
  width: clamp(0px, calc(265 * var(--scale)), calc(265px * var(--max)));
  display: block;
  margin: 0 auto;
}

/* =======================================
   フローティングCTAボタン
======================================= */
.fl-btn__wrap02 {
  position: fixed;
  height: 100svh;
  width: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .fl-btn__wrap02 {
    height: calc(100svh - 5px);
  }
}

.fl-btn__wrap {
  position: fixed;
  display: flex;
  width: 100%;
  height: clamp(0px, calc(74 * var(--scale)), calc(74px * var(--max)));
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  bottom: 0;
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .fl-btn__wrap {
    height: clamp(0px, calc(67 * var(--scale)), calc(67px * var(--max)));
  }
}

.fl-btn__wrap--contact[class] {
  transform: unset;
  left: unset;
  bottom: unset;
  top: unset;
  position: relative;
  margin-top: clamp(0px, calc(116 * var(--scale)), calc(116px * var(--max)));
}
.fl-btn__wrap--contact[class] .seminar__cta-text::before {
  transform: translate(-170%, -50%) rotate(180deg);
}
.fl-btn__wrap--contact[class] .seminar__cta-text::after {
  transform: translate(170%, -50%) rotate(180deg);
}
@media (max-width: 767px) {
  .fl-btn__wrap--contact[class] {
    margin-top: 14%;
    height: clamp(0px, calc(31 * var(--scale)), calc(31px * var(--max)));
  }
  .fl-btn__wrap--contact[class] .seminar__cta-text {
    letter-spacing: normal;
  }
  .fl-btn__wrap--contact[class] .seminar__cta-text::before {
    transform: translate(-130%, -50%) rotate(180deg);
  }
  .fl-btn__wrap--contact[class] .seminar__cta-text::after {
    transform: translate(130%, -50%) rotate(180deg);
  }
}

.fl-btn__wrap a {
  width: 100%;
}

#fl-btn {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

#fl-btn.active {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1441px) {
  .fl-btn__wrap {
    width: 1440px;
    width: 100%;
    height: 110px;
  }
  .fl-btn__wrap.fl-btn__wrap--contact {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .fl-btn__wrap {
    width: 100%;
    height: 17.9487179487vw;
  }
}
.seminar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62.5vw;
  height: 100%;
  background-color: #FFF600;
  text-decoration: none;
  gap: 3.4722222222vw;
}
@media (max-width: 767px) {
  .seminar__cta {
    gap: 5.1282051282vw;
  }
}

.seminar__cta-text {
  position: relative;
  font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
  letter-spacing: 0.04em;
  line-height: 2.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #DE3B3B;
  display: flex;
  align-items: center;
}
.seminar__cta-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-170%, -50%);
  background: #de3b3b;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.05em;
  aspect-ratio: 42/30;
}
.seminar__cta-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(170%, -50%);
  background: #de3b3b;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.05em;
  aspect-ratio: 42/30;
}
.seminar__cta-text span {
  font-size: clamp(0px, calc(44 * var(--scale)), calc(44px * var(--max)));
  color: #fff;
  background: #de3b3b;
  line-height: 1;
  padding: 0.15em 0.25em;
}
@media (max-width: 767px) {
  .seminar__cta-text {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  }
  .seminar__cta-text span {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  }
}

.seminar__cta-icon {
  width: 3.6111111111vw;
  height: 3.6111111111vw;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .seminar__cta-icon {
    width: clamp(0px, calc(36 * var(--scale)), calc(36px * var(--max)));
    aspect-ratio: 1/1;
    height: auto;
  }
}

.seminar__note {
  font-size: 1.25vw;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #c03;
  margin-top: 1.3888888889vw;
}

@media (min-width: 1441px) {
  .seminar__cta {
    width: 900px;
    height: 110px;
    gap: 50px;
  }
  .seminar__cta-text {
    font-size: 32px;
  }
  .seminar__cta-icon {
    width: 52px;
    height: 52px;
  }
}
/*------------------------------
contact
------------------------------*/
/* --- contact section --- */
.contact {
  width: 100%;
  padding: clamp(0px, calc(170 * var(--scale)), calc(170px * var(--max))) 0 0;
  background-color: #F5F5F5;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}

.contact .__wrap {
  margin: 0 auto;
  width: clamp(340px, 70.8333333333vw, 1020px);
  max-width: 1440px;
}

.contact .text__line {
  font-size: clamp(16px, 3.3333333333vw, 48px);
  font-weight: 700;
  text-align: center;
  color: #004EA2;
  margin: clamp(13.3333333333px, 2.7777777778vw, 40px) 0 1.3888888889vw 0;
  margin: 0.7em 0 0;
  letter-spacing: 0.12em;
}

.contact .text__line .br-pc__none {
  display: none;
}

.contact .form__wrap {
  display: flex;
  flex-direction: column;
  width: clamp(340px, 70.8333333333vw, 1020px);
  margin: 5% auto 0;
}

.contact .form__wrap .input__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(8.6666666667px, 1.8055555556vw, 26px);
}

.contact .form__wrap .input__wrap p {
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  color: #353535;
  font-weight: 400;
  letter-spacing: 0.05rem;
  white-space: nowrap;
}

.contact .form__wrap .input__wrap p span {
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #004EA2;
  color: #fff;
  border-radius: clamp(1px, 0.2083333333vw, 3px);
  margin-right: clamp(5.3333333333px, 1.1111111111vw, 16px);
  height: clamp(9.3333333333px, 1.9444444444vw, 28px);
  width: clamp(16.3333333333px, 3.4027777778vw, 49px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.contact .form__wrap .input__wrap p .card__color {
  background-color: #353535;
}

.contact .form__wrap .input__wrap input,
.contact .form__wrap .input__wrap .select-like {
  padding: 1.25vw 1.3888888889vw;
  width: clamp(266.6666666667px, 55.5555555556vw, 800px);
  height: clamp(16px, 3.3333333333vw, 48px);
  border-radius: clamp(2px, 0.4166666667vw, 6px);
  border: solid 1px #717171;
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #fff;
  display: flex;
  align-items: center;
}

.contact .form__wrap .input__wrap input[type=radio] {
  width: clamp(16px, 3.3333333333vw, 48px);
  height: clamp(16px, 3.3333333333vw, 48px);
  margin-right: clamp(2.6666666667px, 0.5555555556vw, 8px);
}

.contact .form__wrap .input__wrap .select-like {
  position: relative;
}

.contact .form__wrap .input__wrap .select-like[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.contact .form__wrap .input__wrap .select-like ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: clamp(66.6666666667px, 13.8888888889vw, 200px);
  overflow-y: auto;
  background: #fff;
  z-index: 10;
  border: solid 1px #717171;
  border-radius: 0 0 clamp(2px, 0.4166666667vw, 6px) clamp(2px, 0.4166666667vw, 6px);
  padding: 0.6944444444vw;
}

.contact .form__wrap .input__wrap .select-like ul li {
  padding: 0;
  cursor: pointer;
}

.contact .form__wrap .input__wrap .select-like ul li:hover {
  background: #004E9D;
  color: #fff;
}

.contact .form__wrap .input__wrap .select-like ul .li__under {
  padding-bottom: 1.3888888889vw;
}

.contact .form__wrap .input__wrap .select-like > summary {
  list-style: none;
  cursor: pointer;
  border-radius: clamp(1.3333333333px, 0.2777777778vw, 4px);
  width: 100%;
  background-size: clamp(3.3333333333px, 0.6944444444vw, 10px);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}

.contact .form__wrap .input__wrap .select-like > summary.placeholder {
  color: #717171;
}

.contact .form__wrap .input__wrap .select-like > summary:focus {
  outline: none;
  border-color: #004E9D;
}

.contact .form__wrap .input__wrap select {
  width: 55.5555555556vw;
  height: 3.3333333333vw;
  border-radius: clamp(2px, 0.4166666667vw, 6px);
  border: solid 1px #717171;
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 1.1111111111vw;
}

.contact .form__wrap .input__wrap div {
  width: clamp(266.6666666667px, 55.5555555556vw, 800px);
  height: 3.3333333333vw;
  display: flex;
  align-items: center;
}

.contact .form__wrap .input__wrap div .--contents {
  display: flex;
}

.contact .form__wrap .last__item {
  justify-content: flex-start;
  margin-left: 15.4861111111vw;
}

.contact .form__wrap .last__item .partner-line {
  color: #004EA2;
  font-weight: 600;
  font-size: 1.1111111111vw;
}

.contact .form__wrap .input__wrap:last-child {
  margin-bottom: clamp(20px, 4.1666666667vw, 60px);
}

.contact .form__wrap .input-margin__bottom ul {
  padding-left: 1vw;
}

.contact .form__wrap .pp {
  width: clamp(340px, 70.8333333333vw, 1020px);
  background-color: #fff;
  height: 10.5555555556vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.0833333333vw;
  flex-direction: column;
  border-radius: 0.5555555556vw;
}

.contact .form__wrap .pp .pp__wrap {
  width: clamp(95px, 19.7916666667vw, 285px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form__wrap .pp .pp__wrap input[type=checkbox] {
  width: clamp(8px, 1.6666666667vw, 24px);
  height: clamp(8px, 1.6666666667vw, 24px);
  border: solid 1px #717171;
  border-radius: 0.3vw;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
}

.contact .form__wrap .pp .pp__wrap input[type=checkbox]:checked {
  background: #fff;
}

.contact .form__wrap .pp .pp__wrap input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 0.5555555556vw;
  height: 1.1111111111vw;
  border-right: 2px solid #004EA2;
  border-bottom: 2px solid #004EA2;
  transform: translate(-50%, -50%) rotate(45deg);
  top: 47%;
  left: 50%;
}

.contact .form__wrap .pp .pp__wrap p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin-left: clamp(5.3333333333px, 1.1111111111vw, 16px);
  letter-spacing: 0.01rem;
  line-height: 2;
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  justify-content: center;
}

.contact .form__wrap .pp .pp__wrap p a {
  text-decoration: underline;
}

.contact .form__wrap .pp .pp__wrap:first-child {
  margin-bottom: 0.6944444444vw;
}

.contact .form__wrap .important {
  margin-bottom: 2.7777777778vw;
}

.contact .form__wrap .important .__wrap {
  width: 70.8333333333vw;
}

.contact .form__wrap .important .__wrap .-head__wrap {
  height: 5.9027777778vw;
  background-color: #353535;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .form__wrap .important .__wrap .-head__wrap .-card__wrap {
  background-color: #FFF476;
  width: 6.1805555556vw;
  height: 3.125vw;
  padding: 0.8333333333vw 1.0416666667vw;
  margin-right: 2.7777777778vw;
}

.contact .form__wrap .important .__wrap .-head__wrap .-card__wrap h3 {
  color: #353535;
  font-size: 1.9444444444vw;
  line-height: 0.7;
  font-weight: 700;
}

.contact .form__wrap .important .__wrap .-head__wrap h3 {
  font-size: 2.2222222222vw;
  font-weight: 700;
  color: #FFF476;
  letter-spacing: 0.05rem;
}

.contact .form__wrap .important .__wrap .-message__wrap {
  border: solid 0.2777777778vw #353535;
  padding: 1.6666666667vw 2.7777777778vw;
  background: #fff;
}

.contact .form__wrap .important .__wrap .-message__wrap p {
  font-size: 1.1111111111vw;
  line-height: 1.6;
  letter-spacing: 0.02rem;
  font-weight: 500;
}

.contact .form__wrap button[type=submit] {
  text-indent: 0.75rem;
  margin: 0 auto;
  width: clamp(103.3333333333px, 21.5277777778vw, 310px);
  height: clamp(22.6666666667px, 4.7222222222vw, 68px);
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #004EA2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(33.3333333333px, 6.9444444444vw, 100px);
  letter-spacing: 0.5rem;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-bottom: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
  letter-spacing: 0.12em;
}

.contact .form__wrap .tn__wrap {
  text-align: center;
  margin: 0 auto;
}

.contact .form__wrap .tn__wrap .-head__wrap {
  width: 16.875vw;
  height: 2.2222222222vw;
  border: solid 0.1388888889vw #353535;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .form__wrap .tn__wrap .-head__wrap h4 {
  font-size: 1.1111111111vw;
  color: #353535;
  font-weight: 500;
  letter-spacing: 0.03rem;
  text-align: center;
  /* reset section-title styles for this context */
  position: static;
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  transform: none;
  top: auto;
}

.contact .form__wrap .tn__wrap h2 {
  font-size: 4.3055555556vw;
  font-weight: 500;
  color: #353535;
  letter-spacing: 0.02em;
  margin-top: 0.2em;
  margin-bottom: 0.4em;
}

.contact .form__wrap .tn__wrap p {
  font-size: 1.1111111111vw;
  color: #353535;
  font-weight: 500;
  letter-spacing: 0.03rem;
}

/* --- contact 1441px以上 --- */
@media (min-width: 1441px) {
  .contact {
    padding: 70px 0 0 0;
  }
  .contact .__wrap {
    width: 1020px;
  }
  .contact .text__line {
    font-size: 48px;
    font-weight: 700;
    margin: 40px 0 30px 0;
  }
  .contact .form__wrap {
    width: 1020px;
  }
  .contact .form__wrap .input__wrap {
    margin-bottom: 28px;
  }
  .contact .form__wrap .input__wrap p {
    font-size: 16px;
  }
  .contact .form__wrap .input__wrap p span {
    font-size: 16px;
    border-radius: 3px;
    margin-right: 16px;
    height: 28px;
    width: 49px;
    padding-bottom: 0.1vw;
  }
  .contact .form__wrap .input__wrap input,
.contact .form__wrap .input__wrap .select-like {
    padding: 18px 20px;
    width: 800px;
    height: 48px;
    border-radius: 6px;
    font-size: 16px;
  }
  .contact .form__wrap .input__wrap .select-like ul {
    max-height: 200px;
    border-radius: 0 0 6px 6px;
    padding: 10px;
  }
  .contact .form__wrap .input__wrap .select-like ul li {
    padding: 0;
  }
  .contact .form__wrap .input__wrap .select-like ul .li__under {
    padding-bottom: 20px;
  }
  .contact .form__wrap .input__wrap .select-like > summary {
    border-radius: 4px;
    background-size: 10px;
  }
  .contact .form__wrap .input__wrap select {
    width: 800px;
    height: 48px;
    border-radius: 6px;
    font-size: 16px;
    padding-left: 16px;
  }
  .contact .form__wrap .last__item {
    justify-content: center;
    margin-left: -210px;
  }
  .contact .form__wrap .last__item .partner-line {
    font-size: 16px;
  }
  .contact .form__wrap .input__wrap:last-child {
    margin-bottom: 60px;
  }
  .contact .form__wrap .input-margin__bottom ul {
    padding-left: 16px;
  }
  .contact .form__wrap .pp {
    width: 1020px;
    height: 152px;
    margin-bottom: 48px;
    border-radius: 8px;
  }
  .contact .form__wrap .pp .pp__wrap {
    width: 285px;
  }
  .contact .form__wrap .pp .pp__wrap input[type=checkbox] {
    width: 24px;
    height: 24px;
  }
  .contact .form__wrap .pp .pp__wrap input[type=checkbox]:checked::after {
    width: 6px;
    height: 12px;
  }
  .contact .form__wrap .pp .pp__wrap p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 16px;
    letter-spacing: 0.03rem;
    font-size: 16px;
  }
  .contact .form__wrap .pp .pp__wrap:first-child {
    margin-bottom: 10px;
  }
  .contact .form__wrap .important {
    margin-bottom: 40px;
  }
  .contact .form__wrap .important .__wrap {
    width: 1020px;
  }
  .contact .form__wrap .important .__wrap .-head__wrap {
    height: 85px;
  }
  .contact .form__wrap .important .__wrap .-head__wrap .-card__wrap {
    width: 89px;
    height: 45px;
    padding: 12px 16px;
    margin-right: 40px;
  }
  .contact .form__wrap .important .__wrap .-head__wrap .-card__wrap h3 {
    font-size: 28px;
  }
  .contact .form__wrap .important .__wrap .-head__wrap h3 {
    font-size: 32px;
    white-space: nowrap;
  }
  .contact .form__wrap .input__wrap div {
    height: 48px;
  }
  .contact .form__wrap .important .__wrap .-message__wrap {
    border: solid 4px #353535;
    padding: 24px 40px;
    margin-top: -5px;
  }
  .contact .form__wrap .important .__wrap .-message__wrap p {
    font-size: 16px;
  }
  .contact .form__wrap button[type=submit] {
    width: 310px;
    height: 68px;
    font-size: 16px;
    margin-bottom: 50px;
  }
  .contact .form__wrap .tn__wrap .-head__wrap {
    width: 243px;
    height: 32px;
    border: solid 2px #353535;
  }
  .contact .form__wrap .tn__wrap .-head__wrap h4 {
    font-size: 16px;
  }
  .contact .form__wrap .tn__wrap h2 {
    font-size: 62px;
  }
  .contact .form__wrap .tn__wrap p {
    font-size: 16px;
  }
}
/* --- contact 768px以下 --- */
@media (max-width: 768px) {
  .contact {
    padding: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max))) 0 15.3846153846vw 0;
    padding-bottom: 0;
  }
  .contact .__wrap {
    width: 100%;
    max-width: 100%;
  }
  .contact .contact-title__wrap h4 {
    top: 5vw;
    height: 6.4102564103vw;
    display: flex;
    font-size: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max)));
    padding: 0 1.4em;
  }
  .contact .text__line {
    font-size: 7.1794871795vw;
    margin: 10.4358974359vw 0 6.7435897436vw 0;
    letter-spacing: 0.1rem;
    line-height: 1.4;
    font-size: clamp(0px, calc(28 * var(--scale)), calc(28px * var(--max)));
    margin-top: 1.2em;
    margin-bottom: 0.7em;
  }
  .contact .text__line .br-pc__none {
    display: inline;
  }
  .contact .form__wrap {
    width: 100%;
    padding: 0 5.1282051282vw;
  }
  .contact .form__wrap .input__wrap {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 6.1538461538vw;
  }
  .contact .form__wrap .input__wrap p {
    font-size: 3.5897435897vw;
    margin-bottom: 4.1025641026vw;
  }
  .contact .form__wrap .input__wrap p span {
    font-size: 3.5897435897vw;
    border-radius: 0.7692307692vw;
    margin-right: 4.1025641026vw;
    height: 6.6666666667vw;
    width: 11.5384615385vw;
  }
  .contact .form__wrap .input__wrap input,
.contact .form__wrap .input__wrap .select-like {
    padding: 4.6153846154vw 5.1282051282vw;
    width: 100%;
    height: 12.3076923077vw;
    border-radius: 1.5384615385vw;
    font-size: 4.1025641026vw;
  }
  .contact .form__wrap .input__wrap input[type=radio] {
    width: 12.3076923077vw;
    height: 12.3076923077vw;
    margin-right: 2.0512820513vw;
  }
  .contact .form__wrap .input__wrap .select-like {
    display: flex;
  }
  .contact .form__wrap .input__wrap .select-like ul {
    max-height: 153.8461538462vw;
    border-radius: 0 0 1.5384615385vw 1.5384615385vw;
    padding: 2.5641025641vw;
  }
  .contact .form__wrap .input__wrap .select-like ul li {
    padding: 0;
  }
  .contact .form__wrap .input__wrap .select-like ul .li__under {
    padding-bottom: 5.1282051282vw;
  }
  .contact .form__wrap .input__wrap .select-like > summary {
    padding: 0;
    border-radius: 1.0256410256vw;
    background-size: 2.5641025641vw;
    display: flex;
    align-items: center;
  }
  .contact .form__wrap .input__wrap select,
.contact .form__wrap .input__wrap div {
    width: 100%;
    height: 12.8vw;
    border-radius: 1.6vw;
    font-size: 4.1025641026vw;
    padding-left: 4.1025641026vw;
  }
  .contact .form__wrap .input__wrap div {
    padding-left: 0;
  }
  .contact .form__wrap .input__wrap div .--contents {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 2.5641025641vw;
  }
  .contact .form__wrap .last__item {
    justify-content: flex-start;
    margin-left: 0;
    margin-bottom: 2.5641025641vw;
  }
  .contact .form__wrap .last__item .partner-line {
    font-size: 3.5897435897vw;
  }
  .contact .form__wrap .input__wrap:last-child {
    margin-bottom: 0;
  }
  .contact .form__wrap .input-margin__bottom {
    margin-bottom: -2.5641025641vw;
  }
  .contact .form__wrap .input-margin__bottom ul {
    padding-left: 4vw;
  }
  .contact .form__wrap .pp {
    width: 100%;
    height: 28.7179487179vw;
    margin-bottom: 8.2051282051vw;
    padding: 0 5.1282051282vw;
  }
  .contact .form__wrap .pp .pp__wrap {
    width: 100%;
  }
  .contact .form__wrap .pp .pp__wrap input[type=checkbox] {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
  }
  .contact .form__wrap .pp .pp__wrap input[type=checkbox]:checked::after {
    width: 2.0512820513vw;
    height: 4.1025641026vw;
    top: 45%;
  }
  .contact .form__wrap .pp .pp__wrap p {
    margin-left: 4.1025641026vw;
    letter-spacing: 0.01rem;
    font-size: 3.5897435897vw;
  }
  .contact .form__wrap .pp .pp__wrap:first-child {
    margin-bottom: 2.5641025641vw;
  }
  .contact .form__wrap .important {
    margin-bottom: 10.2564102564vw;
  }
  .contact .form__wrap .important .__wrap {
    width: 100%;
  }
  .contact .form__wrap .important .__wrap .-head__wrap {
    height: 27.4358974359vw;
    padding-top: 2.5641025641vw;
    flex-direction: column;
  }
  .contact .form__wrap .important .__wrap .-head__wrap .-card__wrap {
    width: 13.5897435897vw;
    height: 6.1538461538vw;
    padding: 1.5384615385vw 2.5641025641vw;
    margin-right: 0;
    margin-bottom: 2.5641025641vw;
  }
  .contact .form__wrap .important .__wrap .-head__wrap .-card__wrap h3 {
    font-size: 4.1025641026vw;
  }
  .contact .form__wrap .important .__wrap .-head__wrap h3 {
    font-size: 5.1282051282vw;
    letter-spacing: 0.03rem;
    text-align: center;
    line-height: 1.4;
  }
  .contact .form__wrap .important .__wrap .-message__wrap {
    border: solid 0.5128205128vw #353535;
    padding: 5.1282051282vw;
  }
  .contact .form__wrap .important .__wrap .-message__wrap p {
    font-size: 3.5897435897vw;
  }
  .contact .form__wrap button[type=submit] {
    width: 79.4871794872vw;
    height: 17.4358974359vw;
    font-size: 4.1025641026vw;
    margin-bottom: 11%;
  }
  .contact .form__wrap .tn__wrap .-head__wrap {
    width: 62.3076923077vw;
    height: 8.2051282051vw;
    border: solid 0.5128205128vw #353535;
    margin-bottom: 1.5384615385vw;
  }
  .contact .form__wrap .tn__wrap .-head__wrap h4 {
    font-size: 4.1025641026vw;
    position: static;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    background-color: transparent;
    transform: none;
    top: auto;
  }
  .contact .form__wrap .tn__wrap h2 {
    font-size: 10.2564102564vw;
    letter-spacing: 0.3rem;
    margin-top: 0.5em;
    margin-bottom: 0.6em;
    white-space: nowrap;
    letter-spacing: normal;
  }
  .contact .form__wrap .tn__wrap p {
    font-size: 4.1025641026vw;
  }
}
/* =======================================
   確認画面（confirm）
   ======================================= */
.confirm .form__wrap {
  display: flex;
  flex-direction: column;
  width: clamp(340px, 70.8333333333vw, 1020px);
  margin: 0 auto;
}

.confirm .form__wrap .input__wrap {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  margin-bottom: clamp(9.3333333333px, 1.9444444444vw, 28px);
}

.confirm .form__wrap .input__wrap p {
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  color: #353535;
  font-weight: 400;
  letter-spacing: 0.05rem;
  width: 15.2777777778vw;
}
@media (max-width: 767px) {
  .confirm .form__wrap .input__wrap p {
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
  }
}

.confirm .form__wrap .input__wrap p span {
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #004EA2;
  color: #fff;
  border-radius: clamp(1px, 0.2083333333vw, 3px);
  margin-right: clamp(5.3333333333px, 1.1111111111vw, 16px);
  height: clamp(9.3333333333px, 1.9444444444vw, 28px);
  width: clamp(16.3333333333px, 3.4027777778vw, 49px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .confirm .form__wrap .input__wrap p span {
    font-size: clamp(0px, calc(14 * var(--scale)), calc(14px * var(--max)));
    width: 3em;
    flex-shrink: 0;
    height: auto;
    padding: 0.5em 0;
  }
}

.confirm .form__wrap .input__wrap .-input__value {
  width: 300px;
}

.confirm .text__line {
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 5px;
}
@media (max-width: 767px) {
  .confirm .text__line {
    font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  }
}

.confirm .form__wrap .-btn__wrap {
  width: 41.9444444444vw;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 1.3888888889vw;
}

.confirm .form__wrap .-btn__wrap button {
  text-indent: 0.6rem;
  width: clamp(91.3333333333px, 19.0277777778vw, 274px);
  height: clamp(22.6666666667px, 4.7222222222vw, 68px);
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #004EA2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(33.3333333333px, 6.9444444444vw, 100px);
  letter-spacing: 0.5rem;
  text-align: center;
  border: none;
  cursor: pointer;
}

.confirm .form__wrap .-btn__wrap button:nth-child(1) {
  background-color: #A9A9A9;
}

@media (min-width: 1441px) {
  .confirm .form__wrap .input__wrap p {
    width: 220px;
  }
  .confirm .form__wrap .-btn__wrap {
    width: 604px;
    margin-top: 20px;
  }
  .confirm .form__wrap .-btn__wrap button {
    width: 274px;
    height: 68px;
    font-size: 16px;
  }
  .confirm .form__wrap .-btn__wrap button:nth-child(1) {
    width: 274px;
  }
}
@media (max-width: 768px) {
  .confirm .form__wrap .input__wrap p {
    width: 100%;
  }
  .confirm .form__wrap .-btn__wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .confirm .form__wrap .-btn__wrap button {
    width: 79.4871794872vw;
    height: 17.4358974359vw;
    font-size: 4.1025641026vw;
  }
  .confirm .form__wrap .-btn__wrap button:nth-child(1) {
    margin-bottom: 2.5641025641vw;
  }
}
/* =======================================
   完了画面（complete）
   ======================================= */
.complete .complete__wrap {
  width: clamp(366.6666666667px, 76.3888888889vw, 1100px);
  margin: 0 auto;
}

.complete .complete__wrap .text__line {
  font-size: 32px;
}

.complete .complete__wrap .form__wrap p {
  font-size: 16px;
  margin-bottom: 2.7777777778vw;
  text-align: center;
}

.complete .complete__wrap .form__wrap p .br-pc__none {
  display: none;
}

.complete .complete__wrap .form__wrap p a {
  display: inline;
  color: #004EA2;
  text-decoration: underline;
}

.complete .complete__wrap .complete-btn__wrap {
  display: flex;
  justify-content: center;
  margin: 1.3888888889vw auto 70px;
}

.complete .complete__wrap .complete-btn__wrap button {
  text-indent: 0.6rem;
  width: clamp(91.3333333333px, 19.0277777778vw, 274px);
  height: clamp(22.6666666667px, 4.7222222222vw, 68px);
  font-size: clamp(5.3333333333px, 1.1111111111vw, 16px);
  background-color: #A9A9A9;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(33.3333333333px, 6.9444444444vw, 100px);
  letter-spacing: 0.5rem;
  text-align: center;
  border: none;
  cursor: pointer;
}

@media (min-width: 1441px) {
  .complete .complete__wrap {
    width: 1100px;
  }
  .complete .complete__wrap .form__wrap p {
    margin-bottom: 40px;
  }
  .complete .complete__wrap .complete-btn__wrap {
    margin-top: 20px;
  }
  .complete .complete__wrap .complete-btn__wrap button {
    width: 274px;
    height: 68px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .complete .complete__wrap {
    width: 100%;
  }
  .complete .complete__wrap .form__wrap p {
    font-size: 3.5897435897vw;
    margin-bottom: 5.1282051282vw;
    letter-spacing: 0.6vw;
  }
  .complete .complete__wrap .form__wrap p .br-pc__none {
    display: inline;
  }
  .complete .complete__wrap .complete-btn__wrap button {
    width: 79.4871794872vw;
    height: 17.4358974359vw;
    font-size: 4.1025641026vw;
  }
}
.contact__label {
  font-size: clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  font-weight: 700;
  color: #004ea2;
  border: 2px solid #004ea2;
  border-radius: 5em;
  position: relative;
  margin: 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4em 1.7em;
  letter-spacing: 0.12em;
}
.contact__label::before {
  content: "CONTACT";
  position: absolute;
  text-align: center;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max)));
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(180deg, #004ea2 0%, rgba(0, 78, 162, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.1;
  pointer-events: none;
  width: 10em;
}
@media (max-width: 767px) {
  .contact__label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
    border-width: 2px;
    padding: 0.6em 1em;
  }
  .contact__label::before {
    font-size: clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.contact__text01 {
  margin-top: 2.6%;
  line-height: 1.6;
  text-align: center;
  font-size: clamp(0px, calc(16 * var(--scale)), calc(16px * var(--max)));
  font-weight: 600;
}
.contact__text01 p:first-child {
  margin-bottom: 2em;
}
.contact__text01 p:nth-child(n+2) {
  color: #DE3B3B;
}
@media (max-width: 767px) {
  .contact__text01 {
    font-size: clamp(0px, calc(12 * var(--scale)), calc(12px * var(--max)));
  }
  .contact__text01 p:first-child {
    margin-bottom: 1em;
  }
}

.input__wrap--last[class][class] {
  margin-bottom: clamp(0px, calc(60 * var(--scale)), calc(60px * var(--max)));
}
@media (max-width: 767px) {
  .input__wrap--last[class][class] {
    margin-bottom: 8%;
  }
}

.select-like, .select-wrap {
  position: relative;
}
.select-like::before, .select-wrap::before {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow.svg) no-repeat center center/100%;
  aspect-ratio: 10/8;
  transform: translate(-50%, -50%);
  top: 50%;
  width: 1.3%;
  left: 97%;
}
@media (max-width: 767px) {
  .select-like::before, .select-wrap::before {
    width: 4%;
    left: 95%;
  }
}

.contact.confirm {
  padding: clamp(0px, calc(100 * var(--scale)), calc(100px * var(--max))) 0;
}
@media (max-width: 767px) {
  .contact.confirm {
    padding: clamp(0px, calc(50 * var(--scale)), calc(50px * var(--max))) 0;
  }
}

/* =======================================
   schedule coded
   ======================================= */
.schedule-coded {
  --txt:#fff; /* 基本文字色 */
  --muted:#BDBDBD; /* 補助テキスト色 */
  --line:#fff; /* 罫線/ドットの色 */
  --yellow:#FFF476; /* タイトルやラベルの黄 */
  --chip:#353535; /* バッジ(平日)の背景 */
  --red:#DE3B3B; /* 日祝バッジの赤 */
  background-image: url(../img/schedule_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  color: var(--txt);
  padding: 6.9444444444vw 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans", "Helvetica Neue", Arial, "Segoe UI", sans-serif;
}
.schedule-coded .__wrap {
  width: 62.1527777778vw;
  margin: 0 auto;
}

/* 見出し */
.schedule-coded .eyebrow {
  display: flex;
  background-image: url(../img/schedule_head_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10.3472222222vw;
  height: 1.9444444444vw;
  margin: 0 auto 1.9444444444vw auto;
}

.schedule-coded .ttl {
  font-weight: 500;
  line-height: 1;
  font-size: 2.7777777778vw;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--yellow);
  margin-bottom: 2.5vw;
}

.-schedule__text {
  position: relative;
  font-size: 1.3888888889vw;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  padding-left: 0.8333333333vw;
  margin-bottom: 1.1111111111vw;
}
.-schedule__text::before {
  position: absolute;
  content: "";
  background-color: var(--yellow);
  top: 0;
  left: 0;
  width: 0.2777777778vw;
  height: 1.3888888889vw;
}

/* 会場ブロック */
.schedule-coded .venue {
  padding: 1.3888888889vw 0 1.5277777778vw;
  border-top: 0.1388888889vw dotted var(--line);
  display: flex;
  align-items: flex-start;
}

.schedule-coded .venue:first-of-type {
  border-top: 1px solid var(--yellow);
}

.schedule-coded .venue__head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.1111111111vw;
  flex-wrap: wrap;
}

.schedule-coded .place__wrap {
  margin-right: 2.7777777778vw;
}
.schedule-coded .place__wrap .place {
  border: solid 1px #fff;
  display: flex;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  font-size: 1.3888888889vw;
  width: 7.7777777778vw;
  height: 2.4305555556vw;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.1vw;
}

.schedule-coded .access {
  color: #fff;
  font-size: 1.3888888889vw;
  line-height: 1;
}

.br-sp {
  display: none;
}

.schedule-coded .access-margin {
  margin-top: -0.1vw;
}

/* 日程の並び */
.schedule-coded .dates {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.1111111111vw 1.25vw;
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-coded .dates li {
  display: flex;
  align-items: center;
  gap: 0.5555555556vw;
  font-variant-numeric: tabular-nums;
}

.schedule-coded .dates p {
  display: flex;
  align-items: center;
  gap: 0.5555555556vw;
  font-variant-numeric: tabular-nums;
}

.schedule-coded .dates .li-br {
  margin-right: 100%;
}

.schedule-coded .dates .li-br-2 {
  margin-right: 10%;
}

.schedule-coded .date {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-size: 2.5vw;
  letter-spacing: 0.03rem;
  line-height: 1;
}

.schedule-coded .month {
  font-size: 1.6666666667vw;
  line-height: 1;
}

.schedule-coded .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 1.8055555556vw;
  border-radius: 6.9444444444vw;
  font-size: 1.25vw;
  background-color: #353535;
  color: #fff;
  font-weight: 500;
  padding: 0.3680555556vw 0.5555555556vw 0.5vw;
}

.schedule-coded .badge.-red {
  background: var(--red);
}

/* 下段インフォ */
.schedule-coded .info {
  padding-top: 1.1111111111vw;
  border-top: 0.1388888889vw dotted var(--line);
}

.-info_text {
  border-bottom: 0.1388888889vw solid var(--yellow);
  position: relative;
  font-size: 1.3888888889vw;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  padding-left: 0.8333333333vw;
  padding-bottom: 1.25vw;
  margin: 1.25vw 0;
}
.-info_text::before {
  position: absolute;
  content: "";
  background-color: var(--yellow);
  top: 0;
  left: 0;
  width: 0.2777777778vw;
  height: 1.3888888889vw;
}

.schedule-coded .info__row {
  display: flex;
  flex-direction: column;
  gap: 0.9722222222vw;
  align-items: flex-start;
  padding: 0 0 0.9722222222vw 0;
}
.schedule-coded .info__row p {
  margin: 0;
  line-height: 1.9;
  font-size: 1.6666666667vw;
}

@media (min-width: 1441px) {
  .schedule-coded {
    padding: 100px 0;
  }
  .schedule-coded .__wrap {
    width: 895px;
  }
  /* 見出し */
  .schedule-coded .eyebrow {
    width: 149px;
    height: 28px;
    margin: 0 auto 28px auto;
  }
  .schedule-coded .ttl {
    font-size: 40px;
    margin-bottom: 36px;
  }
  .-schedule__text {
    font-size: 20px;
    padding-left: 12px;
    margin-bottom: 16px;
  }
  .-schedule__text::before {
    width: 4px;
    height: 20px;
  }
  /* 会場ブロック */
  .schedule-coded .venue {
    padding: 20px 0 22px;
    border-top: 2px dotted var(--line);
  }
  .schedule-coded .venue__head {
    gap: 16px;
  }
  .schedule-coded .place__wrap {
    margin-right: 40px;
  }
  .schedule-coded .place__wrap .place {
    font-size: 20px;
    width: 112px;
    height: 35px;
    padding-bottom: 0.1vw;
  }
  .schedule-coded .access {
    font-size: 20px;
  }
  .schedule-coded .access-margin {
    margin-top: -0.1vw;
  }
  /* 日程の並び */
  .schedule-coded .dates {
    gap: 16px 18px;
  }
  .schedule-coded .dates li {
    gap: 8px;
  }
  .schedule-coded .date {
    font-size: 36px;
  }
  .schedule-coded .month {
    font-size: 24px;
  }
  .schedule-coded .badge {
    height: 24px;
    border-radius: 100px;
    font-size: 18px;
    padding: 5.3px 8px 7.2px;
  }
  /* 下段インフォ */
  .schedule-coded .info {
    padding-top: 16px;
    border-top: 2px dotted var(--line);
  }
  .-info_text {
    border-bottom: 2px solid var(--yellow);
    font-size: 20px;
    padding-left: 12px;
    padding-bottom: 18px;
    margin: 18px 0;
  }
  .-info_text::before {
    width: 4px;
    height: 20px;
  }
  .schedule-coded .info__row {
    gap: 14px;
    padding: 0 0 14px 0;
  }
  .schedule-coded .info__row p {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .schedule-coded {
    padding: 16vw 5.3333333333vw;
  }
  .schedule-coded .__wrap {
    width: 100%;
  }
  /* 見出し */
  .schedule-coded .eyebrow {
    width: 25.544vw;
    height: 4.8vw;
    margin: 0 auto 5.3333333333vw auto;
  }
  .schedule-coded .ttl {
    font-size: 7.4666666667vw;
    margin-bottom: 8.5333333333vw;
  }
  .-schedule__text {
    font-size: 4.8vw;
    padding-left: 3.2vw;
    margin-bottom: 4.8vw;
  }
  .-schedule__text::before {
    width: 1.0666666667vw;
    height: 4.8vw;
  }
  /* 会場ブロック */
  .schedule-coded .venue {
    padding: 5.3333333333vw 0 5.8666666667vw;
    border-top: 0.5333333333vw dotted var(--line);
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .schedule-coded .venue:first-of-type {
    border-top: 1px solid var(--yellow);
  }
  .schedule-coded .venue__head {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4.2666666667vw;
    flex-wrap: wrap;
  }
  .schedule-coded .place__wrap {
    margin: 1.0666666667vw 0 5.3333333333vw 0;
  }
  .schedule-coded .place__wrap .place {
    border: solid 1px #fff;
    display: flex;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    font-size: 5.3333333333vw;
    width: 29.8666666667vw;
    height: 9.3333333333vw;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.1vw;
  }
  .schedule-coded .access {
    color: #fff;
    font-size: 4.2666666667vw;
    line-height: 1.4;
    text-align: center;
  }
  .br-sp {
    display: inline;
  }
  /* 日程の並び */
  .schedule-coded .dates {
    display: flex;
    flex-wrap: wrap;
    gap: 4.2666666667vw 4.8vw;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
  }
  .schedule-coded .dates li {
    display: inline-flex;
    align-items: center;
    gap: 2.1333333333vw;
    font-variant-numeric: tabular-nums;
    display: flex;
    justify-content: center;
    width: auto;
  }
  .schedule-coded .dates .li-br {
    margin-right: 0%;
    width: 100%;
  }
  .schedule-coded .dates .li-br-2 {
    margin-right: 18%;
  }
  .schedule-coded .dates .li-br-3 {
    margin-left: 20%;
  }
  .schedule-coded .date {
    font-size: 7.4666666667vw;
    letter-spacing: 0.03rem;
    line-height: 1;
  }
  .schedule-coded .month {
    font-size: 5.3333333333vw;
    line-height: 1;
  }
  .schedule-coded .badge {
    height: 5.3333333333vw;
    border-radius: 26.6666666667vw;
    font-size: 3.2vw;
    padding: 1.4133333333vw 1.3333333333vw 1.92vw 1.0666666667vw;
  }
  /* 下段インフォ */
  .schedule-coded .info {
    padding-top: 4.2666666667vw;
    border-top: 0.5333333333vw dotted var(--line);
  }
  .-info_text {
    border-bottom: 0.5333333333vw solid var(--yellow);
    font-size: 4.8vw;
    margin: 4.8vw 0;
    padding-bottom: 4.8vw;
  }
  .-info_text::before {
    position: absolute;
    content: "";
    background-color: var(--yellow);
    top: 0;
    left: 0;
    width: 1.0666666667vw;
    height: 5.3333333333vw;
  }
  .schedule-coded .info__row {
    padding: 0 0 3.7333333333vw 0;
  }
  .schedule-coded .info__row p {
    margin: 0;
    line-height: 1.9;
    font-size: 4.2666666667vw;
  }
}
/*# sourceMappingURL=style.css.map */