@charset "UTF-8";
/*#########################################################

fundation 共通ファイル読み込み 

#########################################################*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
  min-height: 1%;
}

/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
.clear {
  clear: both;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #253044;
  background-color: #FBDA17;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
}

figure {
  margin: 0 0 0 0;
}

.pc {
  display: block;
}
@media screen and (max-width: 766px) {
  .pc {
    display: none;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 767px) {
  .sp {
    display: none;
  }
}
.f_aka {
	color: #FF0004;
}
/*------------------------------------------------
* デバイスの横幅が751px以内の場合（＝スマホ）、電話番号リンクが有効。
デバイスの横幅が751px以上の場合（＝タブレット＋PC）、電話番号リンクは無効。
--------------------------------------------------*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.hover_06 {
  transition-duration: 0.5s;
}
.hover_06:hover {
  opacity: 0.6;
}


/* 吹き出しのラッパー */
.bubble-wrap {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 500px;
	margin: 10px auto; 
}

/* イメージ（左側） */
.bubble-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
}

/* 吹き出しのテキスト部分 */
.bubble-text {
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    max-width: calc(100% - 60px); /* 画像サイズ + マージンを考慮して調整 */
    word-break: break-word;
}

/* 吹き出しの三角形部分 */
.bubble-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #f1f1f1 transparent transparent;
}

/* 反転バージョン */
.reverse {
    flex-direction: row-reverse;
}

/* 反転時のイメージ位置調整 */
.reverse .bubble-image {
    margin-right: 0;
    margin-left: 10px;
}

/* 反転時の吹き出し三角形 */
.reverse .bubble-text::before {
    left: auto;
    right: -10px;
    border-color: transparent transparent transparent #f1f1f1;
}

/* レスポンシブ対応 */
@media (max-width: 500px) {
    .bubble-wrap {
        width: 90%; /* モバイルでも90% */
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    
    .reverse {
        flex-direction: column;
        align-items: flex-end;
    }
	
	.bubble-text {
        max-width: 85%; /* モバイルでは少し広めに */
    }
    
    .bubble-image {
        margin: 0 0 5px 0;
    }
    
    .reverse .bubble-image {
        margin: 0 0 5px 0;
    }
}
/*#########################################################

layout レイアウトファイル読み込み 

#########################################################*/
header {
  position: relative;
  z-index: 10;
}

.l-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  display: block;
  width: 100%;
  box-shadow: 0px 5px 12px 0px rgba(199, 206, 214, 0.13);
}
@media screen and (min-width: 767px) {
  .l-header {
    height: 80px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header {
    height: 5.8565153734vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header {
    height: 16vw;
  }
}
.l-header__bg {
  height: 100%;
}
.l-header__inner {
  height: 100%;
}
.l-header__wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .l-header__wrap {
    width: 1320px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__wrap {
    width: 96.6325036603vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__wrap {
    width: 94.6666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .l-header__logo {
    width: 300px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__logo {
    width: 21.9619326501vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__logo {
    width: 55.4666666667vw;
  }
}
.l-header__nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .l-header__nav {
    width: 750px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__nav {
    width: 54.9048316252vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__nav {
    width: 49.8666666667vw;
  }
}
.l-header__nav-item {
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 767px) {
  .l-header__nav-item {
    font-size: 14px;
    line-height: 2.0714285714;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__nav-item {
    font-size: 1.0248901903vw;
  }
}
.l-header__nav-item:hover {
  color: #002879;
}
.l-header__textbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .l-header__textbox {
    width: 447px;
    transform: translateY(7px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__textbox {
    width: 32.7232796486vw;
    transform: translateY(0.5124450952vw);
  }
}
@media screen and (max-width: 766px) {
  .l-header__textbox {
    display: none;
  }
}
.l-header__btnbox {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .l-header__btnbox .c-btn {
    font-size: 13px;
    line-height: 2.2307692308;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__btnbox .c-btn {
    font-size: 0.9516837482vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__btnbox .c-btn {
    font-size: calc(11 / 375 * 100vw);
    line-height: 2.6363636364;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .l-header__btnbox .c-btn {
    height: 37px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__btnbox .c-btn {
    height: 2.7086383602vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__btnbox .c-btn {
    height: 9.3333333333vw;
  }
}
.l-header__btnbox .course {
  display: flex;
  justify-content: center;
  color: #002879;
}
@media screen and (min-width: 767px) {
  .l-header__btnbox .course {
    width: 130px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__btnbox .course {
    width: 9.5168374817vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__btnbox .course {
    display: none;
  }
}
@media screen and (min-width: 767px) {
  .l-header__btnbox .guidance {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-header__btnbox .guidance {
    margin-left: 0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .l-header__btnbox .guidance {
    margin-left: 0;
    width: 29.3333333333vw;
    margin-left: 3.4666666667vw;
    padding: 0;
  }
}

.l-footer {
  background-color: #253044;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .l-footer {
    padding: 70px 0 30px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer {
    padding: 5.1244509517vw 0 2.196193265vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer {
    padding: 10.6666666667vw 0 8vw;
  }
}
.l-footer__inner {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .l-footer__inner {
    width: 894px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__inner {
    width: 65.4465592972vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__inner {
    width: 85.3333333333vw;
    margin-left: 8vw;
  }
}
.l-footer__title {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .l-footer__title .title {
    font-size: 30px;
    line-height: 0.85;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__title .title {
    font-size: 2.196193265vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__title .title {
    font-size: calc(22 / 375 * 100vw);
    line-height: 1.1590909091;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .l-footer__title .title {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__title .title {
    margin-bottom: 1.9033674963vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__title .title {
    margin-bottom: 6.1333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .l-footer__title .text {
    font-size: 16px;
    line-height: 1.4875;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__title .text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__title .text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .l-footer__title .text {
    margin-bottom: 53px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__title .text {
    margin-bottom: 3.8799414348vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__title .text {
    text-align: start;
    margin-bottom: 10.6666666667vw;
  }
}
.l-footer__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .l-footer__wrap {
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__wrap {
    margin-bottom: 4.7584187408vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__wrap {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__item {
    margin-bottom: 7.4666666667vw;
  }
}
.l-footer__item .title {
  position: relative;
}
@media screen and (min-width: 767px) {
  .l-footer__item .title {
    font-size: 16px;
    line-height: 1.4875;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__item .title {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__item .title {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.4875;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .l-footer__item .title {
    padding-left: 26px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__item .title {
    padding-left: 1.9033674963vw;
    margin-bottom: 0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__item .title {
    padding-left: 5.0666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.l-footer__item .title::before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .l-footer__item .title::before {
    width: 10px;
    height: 10px;
    top: 9px;
    left: 7px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__item .title::before {
    width: 0.7320644217vw;
    height: 0.7320644217vw;
    top: 0.6588579795vw;
    left: 0.5124450952vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__item .title::before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 2.4vw;
    left: 0vw;
  }
}
@media screen and (min-width: 767px) {
  .l-footer__item .text {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__item .text {
    font-size: 0.9516837482vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__item .text {
    font-size: calc(13 / 375 * 100vw);
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (min-width: 767px) {
  .l-footer__item .text {
    padding-left: 7px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__item .text {
    padding-left: 0.5124450952vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__item .text {
    padding-left: 0vw;
  }
}
.l-footer__copyright p {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .l-footer__copyright p {
    font-size: 10px;
    line-height: 2.08;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .l-footer__copyright p {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .l-footer__copyright p {
    font-size: calc(10 / 375 * 100vw);
    line-height: 2.08;
    letter-spacing: 0.05em;
    font-weight: 400;
  }
}

/*#########################################################

component コンポーネントファイル読み込み 

#########################################################*/
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-in-out;
  overflow: scroll;
}
@media screen and (max-width: 766px) {
  .nav {
    padding: 4.5333333333vw 2.6666666667vw;
  }
}
@media screen and (max-width: 766px) {
  .nav .logo {
    width: 49.8666666667vw;
    margin-bottom: 12.2666666667vw;
  }
}
@media screen and (max-width: 766px) {
  .nav .title {
    width: 47.2vw;
    margin: 0 auto 6.6666666667vw;
  }
}

.slide_menu__wrap {
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 766px) {
  .slide_menu__wrap {
    margin: 0 auto 6.6666666667vw;
    width: 83.7333333333vw;
  }
}
.slide_menu__item {
  border-bottom: solid 1px #DEDEDE;
}
@media screen and (max-width: 766px) {
  .slide_menu__item {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (max-width: 766px) {
  .slide_menu__item {
    height: 15.7333333333vw;
    display: flex;
    align-items: center;
  }
}
.slide_menu__item:last-child {
  border-bottom: none;
}
.slide_menu__item a {
  color: #253044;
}
@media screen and (max-width: 766px) {
  .slide_menu__item a {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.8125;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
.slide_menu__btnbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 766px) {
  .slide_menu__btnbox {
    width: 84vw;
  }
}
@media screen and (max-width: 766px) {
  .slide_menu__btnbox .c-btn {
    width: 41.3333333333vw;
    height: 12vw;
  }
}

/* ナビゲーションボタン（開く） */
#navbtn {
  position: fixed;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
@media screen and (min-width: 767px) {
  #navbtn {
    display: none;
  }
}
@media screen and (max-width: 766px) {
  #navbtn {
    top: 4vw;
    right: 4.8vw;
    width: 6.4vw;
    height: 5.3333333333vw;
  }
}

#navbtn::before,
#navbtn::after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 1px;
  background-color: #253044;
  transform: translateY(12.3px);
  transition: 0.3s ease-in-out;
}

#navbtn::before {
  transform: translateY(-5.8px);
  box-shadow: 0 10px #253044;
}

/* ナビゲーションボタン（閉じる） */
.open #navbtn {
  z-index: 100;
}

.open #navbtn::before {
  transform: translateY(2.2px) rotate(-45deg);
  box-shadow: none;
}

.open #navbtn::after {
  transform: rotate(45deg);
  box-shadow: none;
}

/* ナビゲーションメニュー 開いた時*/
.open .nav {
  visibility: visible;
  opacity: 1;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1.2s;
}
.fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.slick-initialized.slick-slider.slick-dotted {
  position: relative;
}

.slick-dots {
  position: absolute;
  z-index: 3;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .slick-dots {
    bottom: -26px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .slick-dots {
    bottom: -1.9033674963vw;
  }
}
@media screen and (max-width: 766px) {
  .slick-dots {
    bottom: 1.8666666667vw;
  }
}

.slick-dots li {
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .slick-dots li {
    margin: 0 5px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .slick-dots li {
    margin: 0 0.3660322108vw;
  }
}
@media screen and (max-width: 766px) {
  .slick-dots li {
    margin: 0 1.3333333333vw;
  }
}

.slick-dots li button {
  color: transparent;
  outline: none;
  display: block;
  border-radius: 50%;
  border: solid 1px #002879;
}
@media screen and (min-width: 767px) {
  .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0 2px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .slick-dots li button {
    width: 0.7320644217vw;
    height: 0.7320644217vw;
    padding: 0 0.1464128843vw;
  }
}
@media screen and (max-width: 766px) {
  .slick-dots li button {
    width: 2vw;
    height: 2vw;
    padding: 0 0.5333333333vw;
  }
}

.slick-dots .slick-active button {
  background-color: #002879;
}

.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 767px) {
  .slick-prev, .slick-next {
    bottom: -26px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .slick-prev, .slick-next {
    bottom: -1.9033674963vw;
    width: 1.4641288433vw;
    height: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .slick-prev, .slick-next {
    top: 50%;
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}

.slick-prev {
  background-image: url(../img/common/slick-arrow.svg);
  /* left: clamp(593px, 41.18055vw, 3000px); */
  left: 41.66%;
}
@media screen and (min-width: 767px) {
  .slick-prev {
    transform: scale(-1, 1);
  }
}
@media screen and (max-width: 766px) {
  .slick-prev {
    left: 2.6666666667vw;
    transform: translate(0, -50%) scale(-1, 1);
  }
}

.slick-next {
  background-image: url(../img/common/slick-arrow.svg);
  /* right: clamp(593px, 41.18055vw, 3000px); */
  right: 41.66%;
}
@media screen and (max-width: 766px) {
  .slick-next {
    right: 2.6666666667vw;
    transform: translate(0, -50%);
  }
}

.timeline li {
  position: relative;
  list-style: none;
}
@media screen and (max-width: 766px) {
  .timeline li {
    padding: 0 0 7.2vw 0;
  }
}
.timeline li::after {
  content: "";
  position: absolute;
  background: #002879;
  border-radius: 50%;
}
@media screen and (min-width: 767px) {
  .timeline li::after {
    display: none;
  }
}
@media screen and (max-width: 766px) {
  .timeline li::after {
    display: block;
    top: 1.6vw;
    left: -1.8666666667vw;
    width: 4vw;
    height: 4vw;
  }
}
@media screen and (max-width: 766px) {
  .timeline .inner {
    margin: 0 0 5.3333333333vw 7.4666666667vw;
  }
}

.border-line {
  position: absolute;
  width: 1px;
  height: 0;
  background: #002879;
}
@media screen and (min-width: 767px) {
  .border-line {
    display: none;
  }
}
@media screen and (max-width: 766px) {
  .border-line {
    display: block;
    top: 5.3333333333vw;
    left: 0;
  }
}

.p-flow__item.line-height-77 {
  position: relative;
}
.p-flow__item.line-height-77::before {
  content: "";
  position: absolute;
  background-image: url(../img/flow/line-white.png);
}
@media screen and (max-width: 766px) {
  .p-flow__item.line-height-77::before {
    left: -1.8666666667vw;
    bottom: -5.3333333333vw;
    display: block;
    width: 4vw;
    height: 22.9333333333vw;
    z-index: 5;
  }
}

@media screen and (min-width: 767px) {
  .js-header {
    height: 80px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .js-header {
    height: 5.8565153734vw;
  }
}
@media screen and (max-width: 766px) {
  .js-header {
    height: 13.3333333333vw;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  position: relative;
  transition: all 0.2s ease-in;
}
@media screen and (min-width: 767px) {
  .c-btn {
    font-size: 16px;
    line-height: 1.4375;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-btn {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 766px) {
  .c-btn {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.4375;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .c-btn {
    height: 50px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-btn {
    height: 3.6603221083vw;
    padding: 0 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .c-btn {
    height: 13.3333333333vw;
    padding: 0 2.4vw;
  }
}
.c-btn.bg-white {
  background-color: #fff;
  color: #002879;
}
.c-btn.bg-gray {
  background-color: #bababa;
  color: #6F6F6F;
}
.c-btn.bg-blue {
  background-color: #002879;
  color: #fff;
}
.c-btn.bg-border {
  border: solid 1px #002879;
}
.c-btn .arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.2s ease-in;
  display: block;
  background-image: url(../img/common/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 767px) {
  .c-btn .arrow {
    width: 12px;
    height: 9px;
    right: 26px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-btn .arrow {
    width: 0.878477306vw;
    height: 0.6588579795vw;
    right: 1.9033674963vw;
  }
}
@media screen and (max-width: 766px) {
  .c-btn .arrow {
    width: 3.2vw;
    height: 2.4vw;
    right: 6.9333333333vw;
  }
}
.c-btn .arrow.blue {
  background-image: url(../img/common/arrow-blue.svg);
}
.c-btn:hover.bg-white {
  background-color: #002879;
  color: #fff;
}
.c-btn:hover.bg-blue {
  background-color: #fff;
  color: #002879;
  border: solid 1px #002879;
}
.c-btn:hover.bg-border {
  border: none;
  background-color: #002879;
  color: #fff;
}
.c-btn:hover .arrow {
  background-image: url(../img/common/arrow-blue.svg);
}
@media screen and (min-width: 767px) {
  .c-btn:hover .arrow {
    transform: translate(5px, -50%);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-btn:hover .arrow {
    transform: translate(0.3660322108vw, -50%);
  }
}
@media screen and (max-width: 766px) {
  .c-btn:hover .arrow {
    transform: translate(1.3333333333vw, -50%);
  }
}
.c-btn:hover .arrow.blue {
  background-image: url(../img/common/arrow-white.svg);
}

.c-title {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.c-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/common/icon-title01.png);
}
@media screen and (min-width: 767px) {
  .c-title::after {
    width: 57px;
    height: 36px;
    top: -50px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-title::after {
    width: 4.1727672035vw;
    height: 2.635431918vw;
    top: -3.6603221083vw;
  }
}
@media screen and (max-width: 766px) {
  .c-title::after {
    width: 10.9333333333vw;
    height: 9.6vw;
    top: -11.7333333333vw;
  }
}
.c-title.icon01::after {
  background-image: url(../img/common/icon-title01.png);
}
.c-title.icon02::after {
  background-image: url(../img/common/icon-title02.png);
}
.c-title.icon03::after {
  background-image: url(../img/common/icon-title03.png);
}
.c-title.icon04::after {
  background-image: url(../img/common/icon-title04.png);
}
.c-title.icon05::after {
  background-image: url(../img/common/icon-title05.png);
}
.c-title.icon06::after {
  background-image: url(../img/common/icon-title06.png);
}
@media screen and (min-width: 767px) {
  .c-title__text {
    font-size: 40px;
    line-height: 0.575;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-title__text {
    font-size: 2.9282576867vw;
  }
}
@media screen and (max-width: 766px) {
  .c-title__text {
    font-size: calc(24 / 375 * 100vw);
    line-height: 0.7666666667;
    letter-spacing: 0em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .c-title__text-sub {
    font-size: 22px;
    line-height: 1.2272727273;
    letter-spacing: 0.09em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-title__text-sub {
    font-size: 1.6105417277vw;
  }
}
@media screen and (max-width: 766px) {
  .c-title__text-sub {
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
.c-title__label {
  position: absolute;
}
@media screen and (min-width: 767px) {
  .c-title__label {
    top: 1px;
    right: -104px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-title__label {
    top: 0.0732064422vw;
    right: -7.6134699854vw;
  }
}
@media screen and (max-width: 766px) {
  .c-title__label {
    top: -9.6vw;
    right: 5.6vw;
  }
}
.c-title__label .text {
  color: #002879;
  background-color: #D9E2F3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
.c-title__label .text2 {
  color: #F8E5E9;
  background-color: #E52A56;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 767px) {
  .c-title__label .text,.c-title__label .text2 {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-title__label .text,.c-title__label .text2 {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 766px) {
  .c-title__label .text,.c-title__label .text2 {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .c-title__label .text,.c-title__label .text2 {
    width: 75px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .c-title__label .text,.c-title__label .text2 {
    width: 5.4904831625vw;
  }
}
@media screen and (max-width: 766px) {
  .c-title__label .text,.c-title__label .text2 {
    width: 16vw;
  }
}

/*#########################################################

@project プロジェクトファイル読み込み

#########################################################*/
.p-mv {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-mv {
    width: 1326px;
    margin-top: -80px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv {
    width: 97.0717423133vw;
    margin-top: -5.8565153734vw;
  }
}
@media screen and (max-width: 766px) {
  .p-mv {
    width: 100vw;
    padding-top: 0;
  }
}
.p-mv__textarea {
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-mv__textarea {
    width: 677.35px;
    height: 650px;
    background-image: url(../img/mv/mv_bg-pc.png);
    margin: 50px 0;
    padding: 106px 0;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea {
    width: 49.5863836018vw;
    height: 47.5841874085vw;
    margin: 3.6603221083vw 0;
    padding: 7.7598828697vw 0;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea {
    width: 100vw;
    margin-bottom: 12.8vw;
  }
}
.p-mv__textarea::before, .p-mv__textarea::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 767px) {
  .p-mv__textarea::before, .p-mv__textarea::after {
    display: none;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea::before, .p-mv__textarea::after {
    display: block;
    width: 14.6666666667vw;
    height: 30.6666666667vw;
    top: 30.4vw;
  }
}

@media screen and (max-width: 766px) {
  .p-mv__textarea::after {
    right: 0vw;
  }
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__text-sub {
    font-size: 30px;
    line-height: 1.2666666667;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__text-sub {
    font-size: 2.196193265vw;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea .p-mv__text-sub {
    font-size: calc(26 / 375 * 100vw);
    line-height: 1.4615384615;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__text-sub {
    margin-bottom: 20px;
    transform: translateX(21px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__text-sub {
    margin-bottom: 1.4641288433vw;
    transform: translateX(1.5373352855vw);
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea .p-mv__text-sub {
    margin-bottom: 2.4vw;
  }
}
.p-mv__textarea .p-mv__title {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__title {
    width: 468.66px;
    transform: translateX(21px);
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__title {
    width: 34.3089311859vw;
    transform: translateX(1.5373352855vw);
    margin-bottom: 2.196193265vw;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea .p-mv__title {
    width: 82.648vw;
    margin-bottom: 3.7333333333vw;
  }
}
.p-mv__textarea .p-mv__read {
  color: #002879;
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__read {
    font-size: 18px;
    line-height: 1.8888888889;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__read {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea .p-mv__read {
    font-size: calc(15 / 375 * 100vw);
    line-height: 1.8;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__read {
    transform: translateX(21px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__read {
    transform: translateX(1.5373352855vw);
  }
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__text {
    font-size: 18px;
    line-height: 1.8888888889;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__text {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea .p-mv__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: 1.8;
    letter-spacing: 0.07em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-mv__textarea .p-mv__text {
    transform: translateX(21px);
    margin-bottom: 29px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__textarea .p-mv__text {
    transform: translateX(1.5373352855vw);
    margin-bottom: 2.1229868228vw;
  }
}
@media screen and (max-width: 766px) {
  .p-mv__textarea .p-mv__text {
    margin-bottom: 6.4vw;
  }
}
@media screen and (min-width: 767px) {
  .p-mv__imgarea {
    width: 500px;
    transform: translate(-64px, -4px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv__imgarea {
    width: 36.6032210835vw;
    transform: translate(-4.6852122987vw, -0.2928257687vw);
  }
}
@media screen and (max-width: 766px) {
  .p-mv__imgarea {
    width: 100vw;
  }
}
.p-mv .c-btn__position {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-mv .c-btn__position {
    width: 300px;
    transform: translateX(21px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-mv .c-btn__position {
    width: 21.9619326501vw;
    transform: translateX(1.5373352855vw);
  }
}
@media screen and (max-width: 766px) {
  .p-mv .c-btn__position {
    width: 64vw;
  }
}
.p-about {
	background: #FBDA17;
}
@media screen and (min-width: 767px) {
  .p-about {
    padding: 105px 0 140px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about {
    padding: 7.6866764275vw 0 10.2489019034vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about {
    overflow: hidden;
    padding: 30.4vw 0 6.9333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-about .c-title {
    margin-bottom: 50px;
    transform: translateX(-7px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about .c-title {
    margin-bottom: 3.6603221083vw;
    transform: translateX(-0.5124450952vw);
  }
}
@media screen and (max-width: 766px) {
  .p-about .c-title {
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-about .c-title img {
    width: 223px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about .c-title img {
    width: 16.3250366032vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about .c-title img {
    width: 45.232vw;
  }
}
@media screen and (min-width: 767px) {
  .p-about .c-title__text {
    transform: translate(3px, 17px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about .c-title__text {
    transform: translate(0.2196193265vw, 1.2445095168vw);
  }
}
@media screen and (max-width: 766px) {
  .p-about .c-title__text {
    transform: translate(0.2666666667vw, 2.6666666667vw);
  }
}
.p-about__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-about__wrap {
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__wrap {
    width: 79.0629575403vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__wrap {
    width: 84vw;
  }
}
.p-about__item {
  border: solid 1px #253044;
  border-radius: 25px;
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .p-about__item {
    width: 365px;
    padding: 30px 0;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item {
    width: 23.7920937042vw;
    padding: 2.196193265vw 0;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item {
    width: 84vw;
    padding: 8vw 0 11.4666666667vw;
    margin-bottom: 8vw;
  }
}
.p-about__item .count {
  color: #002879;
  font-family: "Chakra Petch", sans-serif;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-about__item .count {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .count {
    font-size: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .count {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-about__item .count {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .count {
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .count {
    margin-bottom: 2.1333333333vw;
  }
}
.p-about__item .icon {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-about__item .icon {
    width: 150px;
    height: 105px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .icon {
    width: 10.980966325vw;
    height: 7.6866764275vw;
    margin-bottom: 0.878477306vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .icon {
    width: 40vw;
    height: 28vw;
    margin-bottom: 3.2vw;
  }
}
.p-about__item .title {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-about__item .title {
    font-size: 18px;
    line-height: 1.6666666667;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .title {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .title {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.8125;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-about__item .title {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .title {
    margin-bottom: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .title {
    margin-bottom: 4.8vw;
  }
}
.p-about__item .text {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-about__item .text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .text {
    font-size: 1.0248901903vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-about__item .text {
    width: 275px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__item .text {
    width: 20.1317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__item .text {
    width: 73.3333333333vw;
  }
}

.p-about__arrow {
  margin: 58px auto 10px auto;
    width: 30px;
}
.p-about__textwrap {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-about__textwrap {
    width: 1080px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__textwrap {
    width: 57.8330893119vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__textwrap {
    width: 92.5333333333vw;
  }
}
.p-about__textwrap .read {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-about__textwrap .read {
    font-size: 22px;
    line-height: 2.0454545455;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__textwrap .read {
    font-size: 1.6105417277vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__textwrap .read {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.9125;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
.p-about__textwrap .text {
  color: #002879;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-about__textwrap .text {
    font-size: 26px;
    line-height: 1.7307692308;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-about__textwrap .text {
    font-size: 1.9033674963vw;
  }
}
@media screen and (max-width: 766px) {
  .p-about__textwrap .text {
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}








.p-flow {
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .p-flow {
    padding: 128px 0 130px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow {
    padding: 9.3704245974vw 0 9.5168374817vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow {
    padding: 22.9333333333vw 0 17.6vw;
  }
}
@media screen and (min-width: 767px) {
  .p-flow .c-title {
    width: 628px;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow .c-title {
    width: 45.9736456808vw;
    margin-bottom: 4.6852122987vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow .c-title {
    width: 84vw;
    margin-bottom: 11.7333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-flow .c-title__text-sub {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow .c-title__text-sub {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow .c-title__text-sub {
    margin-bottom: 2.9333333333vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow .c-title__text {
    font-size: calc(26 / 375 * 100vw);
    line-height: 0.9153846154;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
}
.p-flow__wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media screen and (min-width: 767px) {
  .p-flow__wrap {
    width: 1080px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__wrap {
    width: 79.0629575403vw;
    margin-bottom: 0.2928257687vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__wrap {
    width: 92vw;
    margin: 0 0 1.0666666667vw 8vw;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item {
    width: 326px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item {
    width: 23.8653001464vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item {
    width: 100%;
  }
}
.p-flow__item .count {
  font-family: "Chakra Petch", sans-serif;
}
@media screen and (min-width: 767px) {
  .p-flow__item .count {
    font-size: 18px;
    line-height: 1.5555555556;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .count {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .count {
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.5555555556;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .count {
    width: 326px;
    color: #fff;
    text-align: center;
    height: 29px;
    background-image: url(../img/flow/bg-step.svg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .count {
    width: 23.8653001464vw;
    height: 2.1229868228vw;
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .count {
    color: #002879;
    margin-bottom: 0.8vw;
  }
}
.p-flow__item .title {
  color: #253044;
}
@media screen and (min-width: 767px) {
  .p-flow__item .title {
    font-size: 20px;
    line-height: 1.19;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .title {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.19;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .title {
    text-align: center;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .title {
    margin-bottom: 1.756954612vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .title {
    text-align: start;
    margin-bottom: 4vw;
  }
}
.p-flow__item .tub-position {
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .p-flow__item .tub-position {
    height: 64px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .tub-position {
    height: 4.6852122987vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .tub-position {
    margin-bottom: -2.1333333333vw;
    height: auto;
  }
}
.p-flow__item .tub {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 766px) {
  .p-flow__item .tub {
    position: initial;
    transform: translateX(0);
  }
}
.p-flow__item .tub span {
  color: #002879;
  background-color: #D9E2F3;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .p-flow__item .tub span {
    font-size: 12px;
    line-height: 1.9833333333;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .tub span {
    font-size: 0.878477306vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .tub span {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.9833333333;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .tub span {
    margin: 0 10px 10px 0;
    height: 30px;
    padding: 0 18px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .tub span {
    margin: 0 0.7320644217vw 0.7320644217vw 0;
    height: 2.196193265vw;
    padding: 0 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .tub span {
    margin-right: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
    height: 8vw;
    padding: 0 4.8vw;
  }
}
.p-flow__item .icon {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-flow__item .icon {
    width: 146px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .icon {
    width: 10.6881405564vw;
    margin-bottom: 1.8301610542vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .icon {
    width: 39.4666666667vw;
    transform: translateX(-7.4666666667vw);
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .text {
    font-size: 1.0248901903vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .text {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .text {
    margin-bottom: 0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .text {
    width: 77.3333333333vw;
    margin-bottom: 1.6vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .text.m-step02 {
    margin: -4.5333333333vw 0 -2.4vw;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .read {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .read {
    font-size: 0.878477306vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .read {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .read {
    width: 74.6666666667vw;
    margin-bottom: 0.2666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-flow__item .read-sub {
    font-size: 10px;
    line-height: 1.92;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__item .read-sub {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__item .read-sub {
    font-size: calc(10 / 375 * 100vw);
    line-height: 1.92;
    letter-spacing: 0.1em;
    font-weight: 400;
  }
}
.p-flow__arrow {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-flow__arrow {
    width: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__arrow {
    width: 2.196193265vw;
    margin-bottom: 0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__arrow {
    width: 4.2666666667vw;
    margin: -6.1333333333vw auto 5.6vw;
  }
}
.p-flow__textwrap {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-flow__textwrap {
    width: 790px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__textwrap {
    width: 57.8330893119vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__textwrap {
    width: 92.5333333333vw;
  }
}
.p-flow__textwrap .read {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-flow__textwrap .read {
    font-size: 22px;
    line-height: 2.0454545455;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__textwrap .read {
    font-size: 1.6105417277vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__textwrap .read {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.9125;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
.p-flow__textwrap .text {
  color: #002879;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-flow__textwrap .text {
    font-size: 26px;
    line-height: 1.7307692308;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__textwrap .text {
    font-size: 1.9033674963vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__textwrap .text {
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
.p-flow__textwrap .icon {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 767px) {
  .p-flow__textwrap .icon {
    width: 50px;
    top: 6px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-flow__textwrap .icon {
    width: 3.6603221083vw;
    top: 0.439238653vw;
  }
}
@media screen and (max-width: 766px) {
  .p-flow__textwrap .icon {
    width: 13.3333333333vw;
    top: 9.8666666667vw;
  }
}

.p-outline {
  background-color: #FBDA17;
}
@media screen and (min-width: 767px) {
  .p-outline {
    padding: 120px 0;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline {
    padding: 8.78477306vw 0;
  }
}
@media screen and (max-width: 766px) {
  .p-outline {
    padding: 22.6666666667vw 0 7.2vw;
  }
}
@media screen and (min-width: 767px) {
  .p-outline .c-title {
    margin-bottom: 58px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline .c-title {
    margin-bottom: 4.2459736457vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline .c-title {
    margin-bottom: 6.1333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-outline .c-title::after {
    top: -59px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline .c-title::after {
    top: -4.3191800878vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline .c-title::after {
    top: -12.5333333333vw;
  }
}
.p-outline .c-title__text {
  color: #000;
}
@media screen and (min-width: 767px) {
  .p-outline .c-title__text {
    font-size: 36px;
    line-height: 0.9583333333;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline .c-title__text {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline .c-title__text {
    font-size: calc(25 / 375 * 100vw);
    line-height: 1.38;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-outline__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-outline__wrap {
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__wrap {
    width: 79.0629575403vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__wrap {
    width: 84vw;
  }
}
.p-outline__item {
  border-radius: 25px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 58px;
}
@media screen and (min-width: 767px) {
  .p-outline__item {
    width: 565px;
    padding: 30px 0 34px;
  }
}
@media screen and (min-width: 767px) {
  .p-outline__item.is-wide {
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item.is-wide {
    width: 1200px !important;
    padding: 30px 0 34px; /* 必要なら明示 */
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item {
    width: 37.701317716vw;
    padding: 2.196193265vw 0 2.4890190337vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item {
    width: 84vw;
    padding: 8vw 0 9.0666666667vw;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 767px) {
  .p-outline__item .title {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .title {
    font-size: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .title {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-outline__item .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .title {
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .title {
    margin-bottom: 5.3333333333vw;
  }
}
.p-outline__item .icon {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-outline__item .icon {
    width: 150px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .icon {
    width: 10.980966325vw;
    margin-bottom: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .icon {
    width: 40vw;
    margin-bottom: 4.8vw;
  }
}
@media screen and (min-width: 767px) {
  .p-outline__item .text {
	margin: 0 auto;
  display: table; /* or inline-block, flex でもOK */
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .text {
    padding: 0 3.074670571vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .text {
    padding: 0 6.9333333333vw;
  }
}
.p-outline__item .text li {
  text-align: start;
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-outline__item .text li {
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .text li {
    font-size: 1.0248901903vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .text li {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-outline__item .text li {
    padding-left: 29px;
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .text li {
    padding-left: 2.1229868228vw;
    margin-bottom: 1.5373352855vw;
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .text li {
    padding-left: 7.7333333333vw;
    margin-bottom: 3.2vw;
  }
}
.p-outline__item .text li::before {
  content: url(../img/for/quotation.svg);
  position: absolute;
}
@media screen and (min-width: 767px) {
  .p-outline__item .text li::before {
    transform: translate(-31px, 4px);
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-outline__item .text li::before {
    transform: translate(-2.2693997072vw, 0.2928257687vw);
  }
}
@media screen and (max-width: 766px) {
  .p-outline__item .text li::before {
    transform: translate(-8.2666666667vw, 1.0666666667vw);
  }
}
.p-outline__item .text li:last-child {
  margin-bottom: 0;
}



.p-outline__item .day-detail {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    line-height: 1.0476190476;
    letter-spacing: 0.07em;
    font-weight: 700;
	margin-bottom: 20px;
}
.p-outline__item .week {
    font-size: 16px;
    line-height: 1.1578947368;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.p-outline__item .day-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    position: relative;
    transition: all 0.2s ease-in;
    font-size: 16px;
    line-height: 2.2307692308;
    letter-spacing: 0.07em;
    font-weight: 700;
	height: 50px;
	width: 300px;
	margin: 20px auto 10px auto;
}
.day-btn .small-text {
	font-size: 12px;
	font-weight: 700;
}
.p-outline__item .day-detail2 {
    font-size: 18px;
    line-height: 1.0476190476;
    letter-spacing: 0.07em;
    font-weight: 700;
}
.p-outline__item .sub {
    font-size: 12px;
    line-height: 1.1578947368;
    letter-spacing: 0.1em;
	margin-bottom: 30px;
}

.p-outline__item .mb20 {
    margin-bottom: 20px;
}
.p-outline__item .bg-b {
    background-color: #002879;
    color: #FFFFFF;
}

.p-outline__item .bg-y {
    background-color: #FBDA17;
    color: #000000;
}

.p-outline__textwrap {
  position: relative;
  margin: 0 auto 0 auto;
    width: 90%;
	margin-bottom: 58px;
}

.p-outline__textwrap .read {
  text-align: center;
    font-size: 22px;
    line-height: 2.0454545455;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.p-outline__textwrap .redtx {
		color: #FF0004;
		font-weight: 700;
	}





.p-voice {
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .p-voice {
    padding: 134px 0 144px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice {
    padding: 9.8096632504vw 0 10.541727672vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice {
    padding: 20.5333333333vw 0 12.2666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-voice .c-title {
    width: 341px;
    margin-bottom: 41px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice .c-title {
    width: 24.9633967789vw;
    margin-bottom: 3.0014641288vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .c-title {
    width: 84vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .c-title::after {
    top: -13.6vw;
  }
}
@media screen and (min-width: 767px) {
  .p-voice .c-title__text {
    font-size: 36px;
    line-height: 1.0416666667;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice .c-title__text {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .c-title__text {
    font-size: calc(28 / 375 * 100vw);
    line-height: 1.3392857143;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .c-title__text-sub {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-voice .c-title__text-sub {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice .c-title__text-sub {
    margin-bottom: 1.0980966325vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .c-title__text-sub {
    margin-bottom: 0.5333333333vw;
  }
}
.p-voice__item {
  background-color: #F2F7FF;
  border-radius: 25px;
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-voice__item {
    width: 345px;
    padding: 25px 27px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice__item {
    width: 24.1581259151vw;
    padding: 1.8301610542vw 1.9765739385vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice__item {
    width: 84vw;
    padding: 6.6666666667vw 7.2vw 6.4vw;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-voice__item .text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice__item .text {
    font-size: 1.0248901903vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice__item .text {
    font-size: calc(13 / 375 * 100vw);
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-voice__item .text {
    width: 250px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice__item .text {
    width: 18.3016105417vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice__item .text {
    width: 56.2666666667vw;
  }
}
.p-voice__item .icon {
  position: absolute;
}
@media screen and (min-width: 767px) {
  .p-voice__item .icon {
    top: -13px;
    right: 10px;
    width: 60px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice__item .icon {
    top: -0.9516837482vw;
    right: 0.7320644217vw;
    width: 4.39238653vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice__item .icon {
    top: -2.9333333333vw;
    right: 6.9333333333vw;
    width: 16vw;
  }
}
@media screen and (min-width: 767px) {
  .p-voice__item-space {
    padding: 25px 0;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-voice__item-space {
    padding: 1.8301610542vw 0;
  }
}
@media screen and (max-width: 766px) {
  .p-voice__item-space {
    padding: 6.6666666667vw 0;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .slider_voice-pc {
    display: none;
  }
}
.p-voice .slider_voice-pc .p-voice__item-space:nth-child(even) .icon {
  transform: scale(-1, 1);
}
@media screen and (min-width: 767px) {
  .p-voice .slider_voice-sp {
    display: none;
  }
}
.p-voice .slider_voice-sp .p-voice__item-space {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 766px) {
  .p-voice .slider_voice-sp .p-voice__item-space .p-voice__item:first-child {
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .slider_voice-sp .p-voice__item-space .p-voice__item:last-child {
    padding-left: 18.4vw;
  }
}
.p-voice .slider_voice-sp .p-voice__item-space .p-voice__item:last-child .icon {
  right: auto;
}
@media screen and (max-width: 766px) {
  .p-voice .slider_voice-sp .p-voice__item-space .p-voice__item:last-child .icon {
    left: 2.6666666667vw;
  }
}
@media screen and (max-width: 766px) {
  .p-voice .slider_voice-sp .p-voice__item-space .p-voice__item:last-child.icon06 .icon {
    left: 0.5333333333vw;
  }
}

.p-movie {
  background-color: #F1F2F3;
}
@media screen and (min-width: 767px) {
  .p-movie {
    padding: 91px 0 100px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie {
    padding: 6.6617862372vw 0 7.3206442167vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie {
    padding: 13.3333333333vw 0 15.7333333333vw;
  }
}
.p-movie__title {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-movie__title {
    font-size: 33px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title {
    font-size: 2.4158125915vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title {
    font-size: calc(22 / 375 * 100vw);
    line-height: 1.3181818182;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-movie__title {
    width: 450px;
    transform: translateX(17px);
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title {
    width: 32.9428989751vw;
    transform: translateX(1.2445095168vw);
    margin-bottom: 2.7818448023vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title {
    margin: 0 auto 7.4666666667vw;
    width: 87.2vw;
  }
}
.p-movie__title p {
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .p-movie__title p {
    margin-left: -45px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title p {
    margin-left: -3.2942898975vw;
  }
}
.p-movie__title .num {
  display: inline-block;
  font-family: "Chakra Petch", sans-serif;
  color: #002879;
}
@media screen and (min-width: 767px) {
  .p-movie__title .num {
    font-size: 48px;
    line-height: 0.6041666667;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-movie__title .num {
    margin: 0 6px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title .num {
    font-size: 3.513909224vw;
    margin: 0 0.439238653vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title .num {
    font-size: calc(36 / 375 * 100vw);
    line-height: 0.8055555556;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title .num {
    width: 7vw;
  }
}
@media screen and (min-width: 767px) {
  .p-movie__title .text {
    font-size: 36px;
    line-height: 0.8055555556;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title .text {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title .text {
    font-size: calc(25 / 375 * 100vw);
    line-height: 1.16;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
/* @media screen and (max-width: 766px) {
  .p-movie__title .text {
    margin-left: -2.6666666667vw;
  }
} */
@media screen and (min-width: 767px) {
  .p-movie__title .text .en {
    font-size: 36px;
    line-height: 0.8055555556;
    letter-spacing: -0.15em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title .text .en {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title .text .en {
    font-size: calc(25 / 375 * 100vw);
    line-height: 1.16;
    letter-spacing: -0.15em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-movie__title .text .en {
    /* margin-left: -12px; */
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title .text .en {
    /* margin-left: -0.878477306vw; */
  }
}
@media screen and (min-width: 767px) {
  .p-movie__title .text .ja {
    font-size: 36px;
    line-height: 0.8055555556;
    letter-spacing: 0.06em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title .text .ja {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title .text .ja {
    font-size: calc(25 / 375 * 100vw);
    line-height: 1.16;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-movie__title .text .ja {
    /* margin-left: -12px; */
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title .text .ja {
    /* margin-left: -0.878477306vw; */
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title .text .ja {
    /* margin-left: -2.1333333333vw; */
    padding-left: 0;
  }
}
.p-movie__title::before, .p-movie__title::after {
  content: "";
  position: absolute;
  display: block;
  top: 72%;
  transform: translateY(-50%);
  background-color: #253044;
  height: 1px;
  width: 33px;
}
/* @media screen and (max-width: 766px) {
  .p-movie__title::before, .p-movie__title::after {
    display: none;
  }
} */
.p-movie__title::before {
  transform: translateY(-50%) rotate(66deg);
}
@media screen and (min-width: 767px) {
  .p-movie__title::before {
    left: -45px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title::before {
    left: -3.2942898975vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title::before {
    left: -2.6666666667vw;
  }
}
.p-movie__title::after {
  transform: translateY(-50%) rotate(116deg);
}
@media screen and (min-width: 767px) {
  .p-movie__title::after {
    right: -10px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__title::after {
    right: -0.7320644217vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__title::after {
    right: -2.9333333333vw;
  }
}
.p-movie__position {
  display: flex;
  justify-content: center;
}
.p-movie__item {
  border: solid 30px #253044;
  border-radius: 25px;
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .p-movie__item {
    border: solid 30px #253044;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__item {
    border: solid 2.196193265vw #253044;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__item {
    border: solid 4vw #253044;
  }
}
.p-movie__item iframe {
  transform: scale(1.01, 1.01);
}
@media screen and (min-width: 767px) {
  .p-movie__item iframe {
    width: 663px;
    height: 397px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-movie__item iframe {
    width: 48.5358711567vw;
    height: 29.0629575403vw;
  }
}
@media screen and (max-width: 766px) {
  .p-movie__item iframe {
    width: 76vw;
    height: 45.3333333333vw;
  }
}

.p-course {
  background-color: #FBDA17;
}
@media screen and (min-width: 767px) {
  .p-course {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course {
    padding: 3.6603221083vw 0;
  }
}
@media screen and (max-width: 766px) {
  .p-course {
    padding: 10.6666666667vw 0;
  }
}
.p-course__inner {
  background-color: #fff;
  border-radius: 25px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-course__inner {
    padding: 102px 0 55px;
    width: 1200px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course__inner {
    padding: 7.467057101vw 0 4.0263543192vw;
    width: 87.8477306003vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course__inner {
    padding: 22.9333333333vw 0 7.4666666667vw;
    width: 92vw;
  }
}
@media screen and (min-width: 767px) {
  .p-course .c-title {
    margin-bottom: 21px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course .c-title {
    margin-bottom: 1.5373352855vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course .c-title {
    margin-bottom: 5.6vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course .c-title::after {
    width: 16vw;
    height: 11.7333333333vw;
    top: -16.2666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-course .c-title__text .bold {
    font-size: 36px;
    line-height: 0.8333333333;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course .c-title__text .bold {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course .c-title__text .bold {
    font-size: calc(25 / 375 * 100vw);
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-course .c-title__text .small {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course .c-title__text .small {
    font-size: 2.196193265vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course .c-title__text .small {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-course .c-title__text .small {
    margin-right: 4px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course .c-title__text .small {
    margin-right: 0.2928257687vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course .c-title__text .small {
    margin-right: 1.0666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-course .c-title__text .bold02 {
    font-size: 36px;
    line-height: 1.0416666667;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course .c-title__text .bold02 {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course .c-title__text .bold02 {
    font-size: calc(28 / 375 * 100vw);
    line-height: 1.3392857143;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-course__textwrap {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-course__textwrap {
    width: 930px;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course__textwrap {
    width: 42.4597364568vw;
    margin-bottom: 2.0497803807vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course__textwrap {
    width: 78.6666666667vw;
    margin-bottom: 7.4666666667vw;
    border-bottom: solid 1px #DCDCDC;
    padding-bottom: 6.9333333333vw;
    margin-bottom: -1.3333333333vw;
  }
}

@media screen and (min-width: 767px) {
  .p-course__textwrap .text {
    font-size: 22px;
    line-height: 1.8125;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course__textwrap .text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course__textwrap .text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-course__textwrap .text {
    margin-bottom: 9px;
    text-align: center;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course__textwrap .text {
	  
    margin-bottom: 0.6588579795vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course__textwrap .text {
    margin-bottom: 2.4vw;
    text-align: start;
  }
}
@media screen and (min-width: 767px) {
  .p-course__textwrap .read {
    font-size: 22px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-course__textwrap .read {
    font-size: 0.878477306vw;
  }
}
@media screen and (max-width: 766px) {
  .p-course__textwrap .read {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-course__textwrap .read {
    text-align: center;
  }
}
@media screen and (max-width: 766px) {
  .p-course__textwrap .read {
    text-align: start;
  }
}
.p-course__textwrap .redtx {
		color: #FF0004;
		font-weight: 700;
	}
.p-course__textwrap .link {
  color: #0858EA;
  text-decoration: underline;
}

.p-guidance {
  background-color: #fff;
}
.p-guidance2 {
  background-color: #F1F2F3;
}
@media screen and (min-width: 767px) {
  .p-guidance,.p-guidance2 {
    padding: 112px 0 79px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance,.p-guidance2 {
    padding: 8.1991215227vw 0 5.7833089312vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance,.p-guidance2 {
    padding: 22.4vw 0 17.8666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance .c-title,.p-guidance2 .c-title {
    width: 360px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance .c-title,.p-guidance2 .c-title {
    width: 26.3543191801vw;
    margin-bottom: 1.4641288433vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance .c-title,.p-guidance2 .c-title {
    width: auto;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance .c-title::after,.p-guidance2 .c-title::after {
    width: 38px;
    height: 40px;
    top: -62px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance .c-title::after,.p-guidance2 .c-title::after {
    width: 2.7818448023vw;
    height: 2.9282576867vw;
    top: -4.5387994143vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance .c-title::after,.p-guidance2 .c-title::after {
    top: -14.4vw;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance .c-title__text-sub,.p-guidance2 .c-title__text-sub {
    margin-bottom: 11px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance .c-title__text,.p-guidance2 .c-title__text-sub {
    margin-bottom: 0.8052708638vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance .c-title__text,.p-guidance2 .c-title__text-sub {
    margin-bottom: 0.2666666667vw;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance .c-title__text,.p-guidance2 .c-title__text {
    font-size: 36px;
    line-height: 1.0416666667;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance .c-title__text,.p-guidance2 .c-title__text {
    font-size: 2.635431918vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance .c-title__text,.p-guidance2 .c-title__text {
    font-size: calc(28 / 375 * 100vw);
    line-height: 1.3392857143;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}
.p-guidance__textwrap {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-guidance__textwrap {
    width: 930px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance__textwrap {
    width: 68.0819912152vw;
    margin-bottom: 3.513909224vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance__textwrap {
    width: 78.6666666667vw;
    margin-bottom: 8.5333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance__textwrap .text {
    font-size: 16px;
    line-height: 1.8125;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance__textwrap .text {
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance__textwrap .text {
    font-size: calc(14 / 375 * 100vw);
    line-height: 1.7;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance__textwrap .text {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance__textwrap .text {
    margin-bottom: 1.0980966325vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance__textwrap .text {
    margin-bottom: 4vw;
    text-align: start;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance__textwrap .read {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-guidance__textwrap .read {
    font-size: 0.878477306vw;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance__textwrap .read {
    font-size: calc(12 / 375 * 100vw);
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 500;
  }
}
@media screen and (min-width: 767px) {
  .p-guidance__textwrap .read {
    text-align: center;
  }
}
@media screen and (max-width: 766px) {
  .p-guidance__textwrap .read {
    text-align: start;
  }
}
.p-other {
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .p-other {
    padding: 26px 0 100px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other {
    padding: 1.9033674963vw 0 7.3206442167vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other {
    padding-bottom: 26.6666666667vw 0;
  }
}
.p-other__inner {
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 767px) {
  .p-other__inner {
    border-radius: 25px;
    background-image: url(../img/other/img-bg.jpg);
    width: 1080px;
    padding: 45px 0 60px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other__inner {
    width: 79.0629575403vw;
    padding: 3.2942898975vw 0 4.39238653vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other__inner {
    background-image: url(../img/other/img-bg-sp.jpg);
    width: 100%;
    padding: 13.6vw 0 16vw;
  }
}
.p-other__text {
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-other__text {
    font-size: 24px;
    line-height: 1.6666666667;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other__text {
    font-size: 1.756954612vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other__text {
    font-size: calc(20 / 375 * 100vw);
    line-height: 1.6;
    letter-spacing: 0.08em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-other__text {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other__text {
    margin-bottom: 2.196193265vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other__text {
    margin-bottom: 6.1333333333vw;
  }
}
.p-other .c-btn {
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .p-other .c-btn {
    width: 400px;
    height: 55px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other .c-btn {
    width: 29.2825768668vw;
    height: 4.0263543192vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other .c-btn {
    width: 84vw;
    height: 13.3333333333vw;
  }
}
@media screen and (min-width: 767px) {
  .p-other .c-btn span {
    font-size: 18px;
    line-height: 1.2777777778;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other .c-btn span {
    font-size: 1.317715959vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other .c-btn span {
    font-size: calc(16 / 375 * 100vw);
    line-height: 1.4375;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}
@media screen and (min-width: 767px) {
  .p-other .c-btn .arrow img {
    right: 35px;
  }
}
@media screen and (max-width: 1366px) and (min-width: 767px) {
  .p-other .c-btn .arrow img {
    right: 2.5622254758vw;
  }
}
@media screen and (max-width: 766px) {
  .p-other .c-btn .arrow img {
    right: 3.2vw;
  }
}







.p-event {
  padding: 80px 0 60px;
}
@media only screen and (max-width: 768px) {
  .p-event {
    padding: 50px 0;
  }
}
.p-event .c-title {
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  letter-spacing: 0.06em;
  font-size: clamp(2.2rem, 2.5vw, 3.6rem);
}
@media only screen and (max-width: 768px) {
  .p-event .c-title {
    font-size: clamp(1rem, 5.8666vw, 2.2rem);
  }
}
.p-event .c-title::before, .p-event .c-title::after {
  content: "";
  display: block;
  width: 32.13px;
  height: 47.89px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .p-event .c-title::before, .p-event .c-title::after {
    bottom: -3px;
  }
}
.p-event .c-title::before {
  background-image: url(../img/event/decoration-left.svg);
  left: -50px;
}
@media only screen and (max-width: 768px) {
  .p-event .c-title::before {
    left: -35px;
  }
}
.p-event .c-title::after {
  background-image: url(../img/event/decoration-right.svg);
  right: -50px;
}
@media only screen and (max-width: 768px) {
  .p-event .c-title::after {
    right: -35px;
  }
}
.p-event .c-title span {
  letter-spacing: -0.04em;
  font-size: clamp(2.8rem, 3.4722vw, 5rem);
}
@media only screen and (max-width: 768px) {
  .p-event .c-title span {
    font-size: clamp(1rem, 7.4666vw, 2.8rem);
    line-height: 1.2em;
    letter-spacing: 0.04em;
  }
}
.p-event__title {
  text-align: center;
}
.p-event__calendar {
  background-color: #EBF0FF;
  border-radius: 20px;
  padding: 27px 3% 20px;
  margin:0 auto 65px;
	width: 1200px;
	
}
@media only screen and (max-width: 768px) {
  .p-event__calendar {
    padding: 30px 0 20px;
    width: 90%;
    margin: 0 auto 33px;
  }
}
.p-event__calendar__title {
  font-size: clamp(2.2rem, 1.8055vw, 2.6rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: #1A2F70;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .p-event__calendar__title {
    font-size: clamp(1rem, 5.8666vw, 2.2rem);
    margin-bottom: 16px;
  }
}
.p-event__calendar__img {
  margin-bottom: 7px;
}
@media only screen and (max-width: 768px) {
  .p-event__calendar__img {
    margin-bottom: 0;
    width: 940px;
  }
}
@media only screen and (max-width: 768px) {
  .p-event__calendar__imgbox {
    height: 370px;
    overflow-x: scroll;
    padding-left: 7%;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .p-event__calendar__imgbox::after {
    content: "";
    background-image: url(../img/event/icon-swipe.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: clamp(20px, 21.06vw, 79px);
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    left: 50%;
    top: 73%;
    transform: translate(-50%, -50%);
    transition: all 0.6s;
  }
}
@media only screen and (max-width: 768px) {
  .p-event__calendar__imgbox.none::after {
    display: none;
  }
}
.p-event__calendar__text {
  font-size: clamp(1.4rem, 1.1111vw, 1.6rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .p-event__calendar__text {
    font-size: clamp(1rem, 3.7333vw, 1.4rem);
    width: 90%;
    margin: 0 auto 13px;
  }
}
.p-event__calendar .annotation {
  font-size: 1.2rem;
  text-align: end;
}
@media only screen and (max-width: 768px) {
  .p-event__calendar .annotation {
    font-size: clamp(1rem, 3.2vw, 1.2rem);
    margin-right: 6.7%;
    letter-spacing: 0.04em;
  }
}
.p-event__flex {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .p-event__flex {
    flex-wrap: wrap;
  }
}
.p-event__text-wrap {
  width: 52%;
}
@media only screen and (max-width: 768px) {
  .p-event__text-wrap {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-event__text-wrap ul li {
  position: relative;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 32px;
}
@media only screen and (max-width: 768px) {
  .p-event__text-wrap ul li {
    font-size: clamp(1rem, 3.7333vw, 1.4rem);
    line-height: 1.8em;
    margin-bottom: 3px;
  }
}
.p-event__text-wrap ul li .check {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #3D6BD5;
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .p-event__text-wrap ul li .check {
    width: 20px;
    height: 19px;
    margin-top: 5px;
  }
}
.p-event__text-wrap ul li .check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  .p-event__text-wrap ul li .check::after {
    width: 7px;
    height: 2px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
  }
}
.p-event__text-title {
  font-size: clamp(1.8rem, 1.8055vw, 2.6rem);
  line-height: 1.9em;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  position: relative;
  margin-bottom: 22px;
}
@media only screen and (max-width: 768px) {
  .p-event__text-title {
    font-size: clamp(1rem, 4.8vw, 1.8rem);
    line-height: 2.4em;
    letter-spacing: 0.02em;
    max-width: 500px;
    margin: 0 auto 22px;
  }
}
.p-event__text-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-color: #00267F;
  z-index: -1;
  border-radius: 30px;
}
.p-event__text-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 19px 12px 0 12px;
  border-color: #00267F transparent transparent transparent;
}
.p-event__img-wrap {
  width: 47.6%;
  margin-top: -27px;
}
@media only screen and (max-width: 768px) {
  .p-event__img-wrap {
    width: 89%;
    max-width: 333.75px;
    margin: 10px auto 0;
  }
}
/*# sourceMappingURL=style.css.map */