@charset "UTF-8";
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  --color-black: #222222;
  --color-white: #ffffff;
  --color-darkred: #A00D15;
  --color-pastelred: #E68186;
  --color-palered: #FCF6F6;
  --color-palepink: #FAE9EB;
  --color-darkblue: #2A3F7E;
  --color-lightblue:#BAC1D5;
  --color-paleblue:#EEF0F5;
  --color-darknavy: #1C284A;
  --color-gray: #707070;
  --color-lightgray: #c3c3c3;
}

/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*---------------------------------------------
リセット
---------------------------------------------*/
/*  ボックスサイジングとルートスタイル */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
/*  Bodyと基本タイポグラフィ ========================================= */
body {
  margin: 0;
  min-height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* レイアウトとメディア */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/*  タイポグラフィリセット ========================================= */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  overflow-wrap: break-word;
}

/* リストリセット ========================================= */
ul,
ol {
  padding: 0;
  list-style: none;
}

/*  リンクと水平線（hr）のリセット */
a {
  color: inherit;
  text-decoration: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* フォーム要素のリセット */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

::placeholder {
  opacity: 1;
  color: #9ca3af;
}

/* アクセシビリティとフォーカススタイル */
:focus-visible {
  outline: 2px solid var(--focus-color, #3b82f6);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*  ルートコンテキストとSVGカラー */
#root,
#__next {
  isolation: isolate;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/*---------------------------------------------
初期設定
---------------------------------------------*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: normal;
}

body {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.875;
  position: relative;
}

img {
  vertical-align: bottom;
}

p {
  font-weight: 500;
}

/*---------------------------------------------
ユーティリティ
---------------------------------------------*/
.u-alignC {
  text-align: center;
}

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

.u-bg {
  background-color: #e4f5ff;
}

.red {
  color: red;
}

.u-blue {
  color: var(--color-blue);
}

.u-darkblue {
  color: var(--color-darkblue);
}

.u-bold {
  font-weight: bold;
}

.u-hover img {
  transition: opacity 0.8s ease;
}
@media screen and (min-width: 768px) {
  .u-hover img:hover {
    opacity: 0.8;
  }
}

.u-marker {
  background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
}

.u-dotted {
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  background-position: 0 100%;
}

.u-josefin {
  font-family: "Josefin Sans", sans-serif;
}

.u-italic {
  font-style: italic;
}

.u-robot {
  font-family: "Roboto", sans-serif;
}

.u-lato {
  font-family: "Lato", sans-serif;
  font-weight: bold;
}

.u-fw1 {
  font-weight: 100;
}

.u-fw3 {
  font-weight: 300;
}

.u-fw4 {
  font-weight: 400;
}

.u-fw5 {
  font-weight: 500;
}

.u-fw7 {
  font-weight: 700;
}

.u-bgBlock {
  background-color: #EFEFEF;
}

.u-fs-2xl {
  font-size: 2rem;
}

.u-fs-3xl {
  font-size: 2.2rem;
}

.u-mb03e {
  margin-bottom: 0.3em;
}

.u-mb05e {
  margin-bottom: 0.5em;
}

.u-mb10e {
  margin-bottom: 1em;
}

.u-mb15e {
  margin-bottom: 1.5em;
}

.u-mb20e {
  margin-bottom: 2em;
}

.u-mb25e {
  margin-bottom: 2.5em;
}

.u-mb30e {
  margin-bottom: 3em;
}

.u-mb35e {
  margin-bottom: 3.5em;
}

.u-mb40e {
  margin-bottom: 4em;
}

.u-mb45e {
  margin-bottom: 4.5em;
}

.u-mb50e {
  margin-bottom: 5em;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-lh-md {
  line-height: 1.6 !important;
}

.u-lh-lg {
  line-height: 1.8 !important;
}

.u-lh-2xl {
  line-height: 2 !important;
}

.u-lh-3xl {
  line-height: 2.18 !important;
}

.u-lh-4xl {
  line-height: 2.4 !important;
}

[data-anime=fadeUp] {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-active {
  opacity: 1;
  transform: translateY(0);
}

[data-anime=slideRight] {
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideRight].is-active {
  opacity: 1;
  transform: translateX(0);
}

[data-anime=slideLeft] {
  opacity: 0;
  transform: translateX(100%);
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideLeft].is-active {
  opacity: 1;
  transform: translateX(0);
}

/* カーソルを重ねる要素 */
.tooltip {
  position: relative; /* ツールチップの位置の基準に */
  cursor: pointer; /* カーソルを当てたときにポインターに */
}

/* ツールチップのテキスト */
.tooltip-text {
  opacity: 0; /* はじめは隠しておく */
  visibility: hidden; /* はじめは隠しておく */
  position: absolute; /* 絶対配置 */
  left: 0; /* 親に対して中央配置 */
  bottom: -30px; /* 親要素下からの位置 */
  display: inline-block;
  padding: 5px; /* 余白 */
  white-space: nowrap; /* テキストを折り返さない */
  font-size: 0.8em; /* フォントサイズ */
  line-height: 1.3; /* 行間 */
  background: #333; /* 背景色 */
  color: #fff; /* 文字色 */
  border-radius: 3px; /* 角丸 */
  transition: 0.3s ease-in; /* アニメーション */
}
@media screen and (min-width: 768px) {
  .tooltip-text {
    left: 50%; /* 親に対して中央配置 */
    transform: translateX(-50%); /* 親に対して中央配置 */
  }
}

/* ホバー時にツールチップの非表示を解除 */
.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/*---------------------------------------------
ハンバーガーメニュー
---------------------------------------------*/
.m-trigger {
  background-color: rgba(255, 255, 255, 0.865);
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  top: 6px;
  right: 4px;
  z-index: 101;
  transition: 0.5s;
}
.m-trigger span {
  display: inline-block;
  transition: all 0.4s;
  width: 28px;
  left: 5px;
  height: 2px;
  background-color: var(--color-darknavy);
  border-radius: 2px;
  position: absolute;
}
.m-trigger span:nth-of-type(1) {
  top: 10px;
}
.m-trigger span:nth-of-type(2) {
  top: 18px;
}
.m-trigger span:nth-of-type(3) {
  bottom: 10px;
}
.m-trigger.is-active {
  background-color: transparent;
}
.m-trigger.is-active span {
  background-color: #fff;
}
.m-trigger.is-active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-315deg);
}
.m-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.m-trigger.is-active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(315deg);
}

/*---------------------------------------------
common
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-top: 13.0208333333vw;
    padding-bottom: 13.0208333333vw;
  }
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.l-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1039px) {
  .l-inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-inner-narrow {
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner-narrow {
    width: 722px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 762px) {
  .l-inner-narrow {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*---------------------------------------------
header
---------------------------------------------*/
.l-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.954);
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 54px;
  }
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 8px rgba(159, 159, 159, 0.3019607843);
  }
}
.l-header .-fbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header .-ttl .-logo {
  width: 30vw;
  max-width: 140px;
}
@media screen and (max-width: 767px) {
  .l-header .-ttl .-logo {
    margin-right: 1.0416666667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-header .-ttl .-logo {
    margin-right: 10px;
  }
}
.l-header .-ttl .-txt-wrap {
  display: flex;
}
@media screen and (max-width: 890px) {
  .l-header .-ttl .-txt-wrap {
    flex-direction: column;
  }
}
.l-header .-ttl .-txt-wrap .-txt {
  line-height: 1;
}
.l-header .-ttl .-txt-wrap .-txt-01 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-header .-ttl .-txt-wrap .-txt-01 {
    font-size: min(3vw, 14px);
    margin-right: 0.6510416667vw;
  }
}
@media screen and (min-width: 768px) {
  .l-header .-ttl .-txt-wrap .-txt-01 {
    font-size: 14px;
    margin-right: 4px;
  }
}
.l-header .-ttl .-txt-wrap .-txt-02 {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .l-header .-ttl .-txt-wrap .-txt-02 {
    font-size: min(2.5vw, 13px);
  }
}
@media screen and (min-width: 768px) {
  .l-header .-ttl .-txt-wrap .-txt-02 {
    font-size: 13px;
  }
}
.l-header .-gnav ul li a {
  display: block;
  color: var(--color-gray);
  font-weight: bold;
  transition: 0.5s;
  border-radius: 4px;
}
.l-header .-gnav ul li a:hover, .l-header .-gnav ul li a:active {
  background-color: var(--color-darkblue);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .l-header .-gnav {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7215686275);
    transition: 0.2s;
    opacity: 0;
  }
  .l-header .-gnav ul {
    width: 80vw;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    top: 0;
    left: -80vw;
    bottom: 0;
    transition: 0.5s;
  }
  .l-header .-gnav ul li {
    width: 90%;
    margin-bottom: 20px;
  }
  .l-header .-gnav ul li:last-of-type {
    margin-bottom: 0;
  }
  .l-header .-gnav ul li a {
    font-size: 15px;
    padding: 10px;
    border-bottom: solid 1px var(--color-gray);
  }
}
.l-header .-gnav.is-active {
  z-index: 100;
  opacity: 1;
}
.l-header .-gnav.is-active ul {
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-header ul li {
    margin-right: 5px;
  }
  .l-header ul li:last-of-type {
    margin-right: 0;
  }
  .l-header ul li a {
    font-size: 13px;
    padding: 5px 10px;
  }
}

/*---------------------------------------------
footer
---------------------------------------------*/
.l-footer .-content-01 {
  background-color: var(--color-paleblue);
  border-top: solid 1px var(--color-lightgray);
}
.l-footer .-content-01 dl {
  line-height: 1.3;
}
.l-footer .-content-01 .-logo {
  display: block;
  max-width: 206px;
}
@media screen and (max-width: 767px) {
  .l-footer .-content-01 {
    padding: 4.1720990874vw 0;
  }
  .l-footer .-content-01 dl {
    font-size: 13px;
    text-align: center;
  }
  .l-footer .-content-01 .-logo {
    width: 80vw;
    margin: 0 auto 4vw auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .-content-01 {
    padding: 32px 0;
  }
  .l-footer .-content-01 .-fbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .l-footer .-content-01 dl {
    font-size: 14px;
  }
  .l-footer .-content-01 .-logo {
    margin-right: 20px;
  }
}
.l-footer .-content-02 {
  background-color: var(--color-darknavy);
  color: var(--color-white);
}
.l-footer .-content-02 .footer-nav-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.l-footer .-content-02 .footer-nav-item {
  position: relative;
  padding: 0.25em 1em;
  font-size: 12px;
  border-right: solid 1px var(--color-lightgray);
}
.l-footer .-content-02 .footer-nav-item.last-in-row {
  border-right: none;
}
.l-footer .-content-02 .footer-nav-item::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  left: 10%;
  bottom: 0.25em;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.l-footer .-content-02 .footer-nav-item:hover::after, .l-footer .-content-02 .footer-nav-item:active::after {
  transform: scale(1, 1);
}
.l-footer .-content-02 .copyright {
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer .-content-02 .copyright {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .-content-02 .copyright {
    margin-top: 1.8252933507vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .-content-02 {
    padding: 4.1720990874vw 0 10.4302477184vw 0px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .-content-02 {
    padding: 32px 0 80px 0px;
  }
}

/*---------------------------------------------
p-hero
---------------------------------------------*/
.p-hero {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero {
    padding-top: 2.9498525074vw;
    padding-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.p-hero::before {
  content: "";
  width: 100%;
  background-image: repeating-linear-gradient(60deg, #fcf6f6, #fcf6f6 8px, #fae9eb 8px, #fae9eb 12px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-hero::before {
    height: 90%;
  }
}
@media screen and (min-width: 768px) {
  .p-hero::before {
    height: 80%;
  }
}
.p-hero .breadcrumbs {
  line-height: 1;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-hero .breadcrumbs {
    font-size: 10px;
  }
}
.p-hero .breadcrumbs li {
  margin-right: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero .breadcrumbs li {
    margin-right: 20px;
  }
}
.p-hero .breadcrumbs li::after {
  content: "＞";
  position: absolute;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .p-hero .breadcrumbs li::after {
    right: -15px;
  }
}
.p-hero .breadcrumbs li:last-of-type::after {
  display: none;
}
.p-hero .mainttl {
  position: relative;
  z-index: 80;
}
@media screen and (max-width: 767px) {
  .p-hero .mainttl {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .mainttl {
    margin-top: 50px;
  }
}
.p-hero .mainttl .-ttl {
  line-height: 1.3;
  color: var(--color-darkred);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-hero .mainttl .-ttl {
    font-size: 6.5104166667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .mainttl .-ttl {
    font-size: 50px;
  }
}
.p-hero .mainttl .-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #fff;
  padding: 0 0.25em;
}
.p-hero .mainttl h1 {
  position: relative;
  display: inline-block;
  line-height: 1.3;
  letter-spacing: 0.08em;
  padding: 0 0.25em;
  color: var(--color-white);
  background-color: var(--color-darkblue);
  font-weight: 500;
  padding: 0.25em 1em 0.25em 2em;
}
.p-hero .mainttl h1::before {
  content: "";
  width: 1.25em;
  height: 100%;
  clip-path: polygon(0 0, 3px 0, 100% 50%, 3px 100%, 0 100%);
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 60;
}
.p-hero .mainttl h1::after {
  content: "";
  width: calc(1.25em - 3px);
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color-darkred);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
}
@media screen and (max-width: 767px) {
  .p-hero .mainttl h1 {
    font-size: max(2.6041666667vw, 14px);
    margin-top: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .mainttl h1 {
    font-size: 20px;
    margin-top: 10px;
  }
}
.p-hero .-img-wrap {
  z-index: 70;
}
.p-hero .-img-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--color-darkblue);
}
@media screen and (max-width: 767px) {
  .p-hero .-img-wrap {
    width: 90%;
    position: relative;
    margin: -20vw auto 0 auto;
  }
  .p-hero .-img-wrap::after {
    right: -1.3020833333vw;
    top: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .p-hero .-img-wrap {
    width: 55%;
    position: absolute;
    right: 15px;
    bottom: 0;
  }
  .p-hero .-img-wrap::after {
    right: -10px;
    top: 10px;
  }
}
@media (min-width: 1040px) {
  .p-hero .-img-wrap {
    width: 560px;
    position: absolute;
    right: 0;
    top: 20px;
  }
  .p-hero .-img-wrap::after {
    right: -10px;
    top: 10px;
  }
}
.p-hero .-lead {
  position: relative;
  z-index: 80;
  font-weight: 600;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.p-hero .-lead span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #fff;
  padding: 0.25em;
}
@media screen and (max-width: 767px) {
  .p-hero .-lead span br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-hero .-lead {
    font-size: 13px;
    margin-top: 4.4270833333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-lead {
    font-size: 15px;
    margin-top: 34px;
  }
}
.p-hero .-box-wrap {
  position: relative;
  z-index: 80;
}
.p-hero .-box {
  position: relative;
  background-color: var(--color-white);
  padding: 1.5em 2em;
}
.p-hero .-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 10px;
  bottom: 10px;
  width: 50%;
  top: 80%;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.3960784314);
  transform: rotate(-3deg);
}
.p-hero .-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 10px;
  bottom: 10px;
  width: 50%;
  top: 80%;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.3960784314);
  transform: rotate(3deg);
}
@media screen and (max-width: 767px) {
  .p-hero .-box {
    width: 100%;
    margin-top: 2.6041666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box {
    width: calc(50% - 36px);
    margin-top: 40px;
    margin-left: 36px;
  }
}
.p-hero .-box .-ttl-wrap {
  position: absolute;
  top: 1.5em;
  right: 2em;
  border: 2px solid var(--color-paleblue);
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .p-hero .-box .-ttl-wrap {
    width: 20vw;
    max-width: 90px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box .-ttl-wrap {
    width: 90px;
  }
}
.p-hero .-box .-ttl-wrap::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.p-hero .-box .-ttl-wrap .-ttl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  letter-spacing: 0.08em;
  color: var(--color-lightblue);
}
@media screen and (max-width: 767px) {
  .p-hero .-box .-ttl-wrap .-ttl {
    font-size: max(2.34375vw, 12px);
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box .-ttl-wrap .-ttl {
    font-size: 18px;
  }
}
.p-hero .-box .-txt-01 {
  color: var(--color-darkblue);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-hero .-box .-txt-01 {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box .-txt-01 {
    font-size: 13px;
  }
}
.p-hero .-box .-txt-02 {
  color: var(--color-darkblue);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-top: 0.5em;
}
.p-hero .-box .-txt-02 span {
  font-size: 3em;
}
@media screen and (max-width: 767px) {
  .p-hero .-box .-txt-02 {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box .-txt-02 {
    font-size: 12px;
  }
}
.p-hero .-box .-txt-03 {
  color: var(--color-gray);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .p-hero .-box .-txt-03 {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box .-txt-03 {
    font-size: 12px;
  }
}
.p-hero .-box .-txt-04 {
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.08em;
  margin-top: 0.8em;
  padding-top: 0.8em;
  border-top: 1px solid var(--color-gray);
}
@media screen and (max-width: 767px) {
  .p-hero .-box .-txt-04 {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .p-hero .-box .-txt-04 {
    font-size: 14px;
  }
}

/*---------------------------------------------
p-video
---------------------------------------------*/
.p-video .-ttl-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 8px, rgb(42, 63, 126) 8px, rgb(42, 63, 126) 9px);
}
@media screen and (max-width: 767px) {
  .p-video .-ttl-wrap {
    height: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-video .-ttl-wrap {
    height: 20px;
  }
}
.p-video .-ttl-wrap::after {
  content: "";
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 60;
}
@media screen and (max-width: 767px) {
  .p-video .-ttl-wrap::after {
    width: 130px;
  }
}
@media screen and (min-width: 768px) {
  .p-video .-ttl-wrap::after {
    width: 140px;
  }
}
.p-video .-ttl-wrap .-ttl {
  position: absolute;
  z-index: 80;
  line-height: 1;
  height: 100%;
  display: inline-block;
  font-weight: bold;
  color: var(--color-darkblue);
}
@media screen and (max-width: 767px) {
  .p-video .-ttl-wrap .-ttl {
    font-size: 13px;
    left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-video .-ttl-wrap .-ttl {
    font-size: 17px;
  }
}
.p-video .-video-wrap {
  max-width: 926px;
  margin-left: auto;
  margin-right: auto;
}
.p-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

/*---------------------------------------------
p-comment
---------------------------------------------*/
.p-comment {
  position: relative;
}
.p-comment::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 8px, rgb(42, 63, 126) 8px, rgb(42, 63, 126) 9px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-comment::before {
    height: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-comment::before {
    height: 20px;
  }
}
.p-comment .-container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-comment .-container {
    padding-bottom: 13.0208333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container {
    margin-bottom: 100px;
  }
}
.p-comment .-container:last-of-type {
  margin-bottom: 0;
}
.p-comment .-container .-img-wrap {
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-img-wrap {
    width: 90%;
    margin-left: auto;
    margin-right: -20px;
    position: relative;
    z-index: 60;
    margin-top: -14vw;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-img-wrap {
    width: 50%;
    position: absolute;
    z-index: 60;
    margin-top: 0;
    top: 0;
    overflow: hidden;
  }
  .p-comment .-container .-img-wrap::after {
    content: "";
    display: block;
    padding-top: 120%;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-img-wrap .-img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.p-comment .-container .-ttl-wrap {
  position: relative;
  z-index: 80;
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-ttl-wrap {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-ttl-wrap {
    width: 58%;
    padding-top: 40px;
  }
}
.p-comment .-container .-ttl-wrap .-ttl {
  position: relative;
  line-height: 1.75;
  color: var(--color-darkblue);
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-ttl-wrap .-ttl {
    font-size: max(6.25vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-ttl-wrap .-ttl {
    font-size: 40px;
  }
}
.p-comment .-container .-ttl-wrap .-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1725490196);
  padding: 0 0.25em;
}
.p-comment .-container .-ttl-wrap .-lead {
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.75;
}
.p-comment .-container .-ttl-wrap .-lead span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-color: var(--color-darkblue);
  padding: 0.25em;
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-ttl-wrap .-lead {
    width: 90%;
    font-size: max(2.0833333333vw, 12px);
    margin-top: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-ttl-wrap .-lead {
    font-size: 17px;
    margin-top: 10px;
  }
}
.p-comment .-container .-txt-wrap {
  position: relative;
  z-index: 80;
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-txt-wrap {
    width: 100%;
    margin-top: -6.5104166667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-txt-wrap {
    width: 58%;
    margin-top: 20px;
  }
}
.p-comment .-container .-txt-wrap .-txt {
  position: relative;
  background-color: var(--color-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1725490196);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.p-comment .-container .-txt-wrap .-txt::after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color-palered);
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-txt-wrap .-txt::after {
    width: 0.75em;
    height: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-txt-wrap .-txt::after {
    width: 1.75em;
    height: 3.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-comment .-container .-txt-wrap .-txt {
    font-size: 14px;
    padding: 1em;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container .-txt-wrap .-txt {
    font-size: 16px;
    padding: 2em;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container:nth-child(odd) .-img-wrap {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container:nth-child(odd) .-ttl-wrap,
  .p-comment .-container:nth-child(odd) .-txt-wrap {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container:nth-child(even) .-img-wrap {
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-comment .-container:nth-child(even) .-ttl-wrap,
  .p-comment .-container:nth-child(even) .-txt-wrap {
    margin-left: 0;
    margin-right: auto;
  }
}

/*---------------------------------------------
p-schedule
---------------------------------------------*/
.p-schedule {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 928px;
  margin: 0 auto;
  background-color: var(--color-palered);
}
@media screen and (max-width: 767px) {
  .p-schedule {
    border-radius: 0;
    padding-top: 7.8125vw;
    padding-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule {
    border-radius: 20px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.p-schedule::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 8px, #A00D15 8px, #A00D15 9px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-schedule::before {
    height: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule::before {
    height: 20px;
  }
}
.p-schedule .-container .-ttl-wrap {
  text-align: center;
}
.p-schedule .-container .-ttl-wrap .-ttl {
  line-height: 1;
  font-weight: bold;
  color: var(--color-darkred);
}
@media screen and (max-width: 767px) {
  .p-schedule .-container .-ttl-wrap .-ttl {
    font-size: 13px;
    left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule .-container .-ttl-wrap .-ttl {
    font-size: 17px;
  }
}
.p-schedule .-container .-ttl-wrap .-lead {
  display: inline-block;
  line-height: 1;
  padding: 0.5em 0.25em;
  font-weight: 500;
  border-bottom: solid 2px var(--color-darkred);
}
@media screen and (max-width: 767px) {
  .p-schedule .-container .-ttl-wrap .-lead {
    font-size: max(3.6458333333vw, 18px);
  }
}
@media screen and (min-width: 768px) {
  .p-schedule .-container .-ttl-wrap .-lead {
    font-size: 28px;
  }
}
.p-schedule .-container .-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-schedule .-container .-box {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule .-container .-box {
    margin-top: 40px;
  }
}
.p-schedule .-container .-box dt, .p-schedule .-container .-box dd {
  border-bottom: 1px solid #d4d4d4;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.p-schedule .-container .-box dt {
  font-weight: 400;
  color: var(--color-darkblue);
}
@media screen and (max-width: 767px) {
  .p-schedule .-container .-box dt {
    font-size: 4.1666666667vw;
    width: 23vw;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule .-container .-box dt {
    font-size: 32px;
    width: 180px;
  }
}
.p-schedule .-container .-box dd {
  padding: 0.25em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .p-schedule .-container .-box dd {
    width: calc(100% - 23vw);
    font-size: max(2.34375vw, 13px);
  }
}
@media screen and (min-width: 768px) {
  .p-schedule .-container .-box dd {
    width: calc(100% - 180px);
    font-size: 18px;
  }
}
.p-schedule .-container .-txt {
  background-color: var(--color-white);
  padding: 1.5em 2em;
}
@media screen and (max-width: 767px) {
  .p-schedule .-container .-txt {
    margin-top: 5.2083333333vw;
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .p-schedule .-container .-txt {
    margin-top: 40px;
    font-size: 14px;
  }
}

/*---------------------------------------------
p-message
---------------------------------------------*/
.p-message .-ttl-wrap {
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.08em;
  padding: 0 0.25em;
  color: var(--color-white);
  background-color: var(--color-darkblue);
  font-weight: 500;
  text-align: center;
  padding: 0.25em 1em 0.25em 2em;
}
.p-message .-ttl-wrap::before {
  content: "";
  width: 1.25em;
  height: 100%;
  clip-path: polygon(0 0, 3px 0, 100% 50%, 3px 100%, 0 100%);
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 60;
}
.p-message .-ttl-wrap::after {
  content: "";
  width: calc(1.25em - 3px);
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--color-darkred);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 70;
}
@media screen and (max-width: 767px) {
  .p-message .-ttl-wrap {
    margin-top: 1.3020833333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-ttl-wrap {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-message .-ttl-wrap h2 {
    font-size: max(2.6041666667vw, 13px);
  }
}
@media screen and (min-width: 768px) {
  .p-message .-ttl-wrap h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-01,
  .p-message .-content-02 {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-message .-content-01 {
    margin-top: 6.5104166667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-01 {
    margin-top: 50px;
  }
}
.p-message .-content-01 .-lead {
  color: var(--color-darkred);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-message .-content-01 .-lead {
    font-size: max(4.1666666667vw, 15px);
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-01 .-lead {
    font-size: 32px;
  }
}
.p-message .-content-01 .-txt {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-message .-content-01 .-txt {
    font-size: 13px;
    margin-top: 5.2083333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-01 .-txt {
    font-size: 16px;
    margin-top: 40px;
  }
}
.p-message .-content-02 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message .-content-02 {
    padding-top: 10.4166666667vw;
    padding-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-02 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-message .-content-02::before, .p-message .-content-02::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-image: repeating-linear-gradient(60deg, transparent, transparent 8px, #A00D15 8px, #A00D15 9px);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-message .-content-02::before, .p-message .-content-02::after {
    height: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-02::before, .p-message .-content-02::after {
    height: 20px;
  }
}
.p-message .-content-02::before {
  top: 0;
}
.p-message .-content-02::after {
  bottom: 0;
}
.p-message .-content-02 .-txt {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-message .-content-02 .-txt {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-content-02 .-txt {
    font-size: 16px;
  }
}
.p-message .-img-wrap {
  position: relative;
  overflow: hidden;
  background-color: #cfcfcf;
}
@media screen and (max-width: 767px) {
  .p-message .-img-wrap {
    margin-top: 10.4166666667vw;
    margin-bottom: 13.0208333333vw;
  }
}
@media screen and (min-width: 768px) {
  .p-message .-img-wrap {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}
.p-message .-img-wrap::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 66.67%;
}
.p-message .-img-wrap .-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-message .-img-wrap .-img.-vertical-img {
  width: 50%;
}/*# sourceMappingURL=style.css.map */