@charset "UTF-8";
/* ==========================================================
Name:
	reset.css

Description:
	ユーザーエージェントスタイルの初期化を行う

Contents:
	reset style
========================================================== */
/* ---------------------------------------------
*   reset style
--------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

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

q,
blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

/* base
=============================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* html, body
=============================== */
html {
  font-size: 62.5%; /* 10px */
}

html,
body {
  height: 100%;
}

body {
  background-color: #EFE2D9;
  color: #282828;
  font-size: 1.6em;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: normal;
  line-height: 1.875;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  line-break: normal;
  /* 標準の禁則 */
  word-wrap: break-word;
  /* 長い単語は改行 */
  overflow-wrap: break-word;
  /* 長い単語は改行 */
  overflow-x: hidden;
  /* for IE */
}

/* Link
=============================== */
a {
  transition: all 0.5s ease-out;
  cursor: pointer;
  display: inline-block;
}

a,
a:visited,
a:active {
  color: #282828;
  text-decoration: underline;
}

a:hover {
  color: #282828;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
}

a:focus {
  outline: none;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
  }
}

/* img
=============================== */
img {
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

/* font 
=============================== */
b,
strong {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI semibold", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", "Segoe UI", Verdana, Meiryo, sans-serif;
  font-weight: bold;
}

.fa,
.far,
.fas,
.fa-solid {
  font-family: "Font Awesome 5 free";
}

/* responsive
=============================== */
.is-sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-tb {
  display: none;
}
@media only screen and (max-width: 1039px) {
  .is-tb {
    display: block;
  }
}

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

/* font-size
=============================== */
.fs14 {
  font-size: 1.4rem;
}

.fs15 {
  font-size: 1.5rem;
}

.fs16 {
  font-size: 1.6rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs22 {
  font-size: 2.2rem;
}

/* margin
=============================== */
.mg-t-none {
  margin-top: 0;
}

.mg-t1em {
  margin-top: 1em;
}

.mg-t2em {
  margin-top: 2em;
}

.mg-t10 {
  margin-top: 10px;
}

.mg-t20 {
  margin-top: 20px;
}

.mg-t30 {
  margin-top: 30px;
}

.mg-t40 {
  margin-top: 40px;
}

/* fadeIn_up inviewライブラリ用
=============================== */
.fadeIn_up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0px);
}

/* header
=============================== */
.mt2025-header {
  position: fixed;
  background: white;
  border-radius: 0 0 30px 30px;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  line-height: 70px;
  display: flex;
  justify-content: space-between;
  z-index: 999;
}

.mt2025-header-logo {
  margin-left: 40px;
  width: 234px;
  height: 46px;
}
@media only screen and (max-width: 768px) {
  .mt2025-header-logo {
    margin-left: 14px;
    width: 200px;
    height: 38px;
  }
}
.mt2025-header-logo img {
  vertical-align: middle;
}

.mt2025-header-nav {
  margin-right: 5px;
  display: flex;
  font-size: 1.5rem;
}
@media only screen and (max-width: 1039px) {
  .mt2025-header-nav {
    font-size: 1.2512030799vw;
  }
}
@media only screen and (max-width: 768px) {
  .mt2025-header-nav {
    display: none;
  }
}

a.mt2025-header-nav__item {
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
@media only screen and (max-width: 1039px) {
  a.mt2025-header-nav__item {
    margin: 0 10px;
  }
}
a.mt2025-header-nav__item:hover {
  transition: all 0.5s ease-out;
}
a.mt2025-header-nav__item:hover::before {
  content: "";
  position: absolute;
  background-color: #B48982;
  width: 8px;
  height: 8px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

/* nav
=============================== */
.nav {
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}

button.menu-trigger {
  display: block; /* for ios */
  position: relative;
  width: 70px;
  height: 70px;
  background-color: transparent;
  /* ボタンスタイル初期化 */
  border: none;
  padding: 0;
  outline: none;
  transition: all 0.6s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.menu-trigger span {
  position: absolute;
  width: 30px;
  height: 2px;
  display: block;
  background-color: #B48982;
  transition: transform 200ms ease-out;
  transform-origin: center center;
}

.menu-trigger span:nth-of-type(1) {
  left: 50%;
  transform: translateX(-50%);
  top: 27px;
}

.menu-trigger span:nth-of-type(2) {
  left: 50%;
  transform: translateX(-50%);
  top: 34px;
}

.menu-trigger span:nth-of-type(3) {
  left: 50%;
  transform: translateX(-50%);
  top: 41px;
}

/* MENU 文字　*/
/* クローズボタンへの動き */
.menu-trigger.active {
  background-color: transparent;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translate(-15px, 7px) rotate(-30deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translate(-15px, -7px) rotate(30deg);
}

/* overlay
=============================== */
body.active {
  height: 100%;
  overflow: hidden;
}

.overlay {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
  overflow: auto;
  transition: all 0.4s ease-out;
  background: #EFE2D9;
  opacity: 0;
}
.overlay.panelactive {
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  opacity: 1;
  z-index: 2000;
}
.overlay.panelactive .overlay__inner {
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.overlay a {
  text-decoration: none;
}

.overlay__inner {
  width: 100%;
  height: 100vh;
  transition: all 1s;
  position: relative;
  z-index: 1000;
}

.overlay__inner-nav {
  text-align: center;
  font-weight: bold;
  font-size: 1.7rem;
  margin: 50px 26px 0;
  padding-bottom: 80px;
}

.overlay-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

a.overlay-nav__item {
  width: 47.82%;
  text-decoration: none;
  margin-top: 1.5em;
  background-color: #F7F1EE;
  padding: 20px 0;
  border-radius: 8px;
}

.overlay-logo {
  margin: 16px 0 0 14px;
  width: 200px;
  height: 38px;
}

/* 応募ボタン */
.overlay-btn-d {
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
}

a.overlay-btn-d__item {
  display: block;
  margin: 0 10px;
}

/* お問い合わせボタン */
.overlay-btn {
  margin-top: 1.5em;
}

a.overlay-btn__item {
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
  color: #83869C;
}

.overlay-btn-contact {
  position: relative;
}
.overlay-btn-contact:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url("../img/ico_contact.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 21px;
  margin-right: 4px;
  top: 50%;
  left: -33px;
  transform: translateY(-50%);
}

/* footer
=============================== */
/* .mt2025-footer
=============================== */
.mt2025-footer {
  background: #EFE2D9;
  text-align: center;
  padding: 20px 0 30px;
  color: #83869C;
}

.copyright {
  color: #83869C;
  text-align: center;
  font-size: 1.2rem;
  padding: 14px 0 20px;
}

.mt2025-footer-sign01 {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .mt2025-footer-sign01 {
    font-size: 1.5rem;
  }
}

.mt2025-footer-sign02 {
  font-size: 1.6rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .mt2025-footer-sign02 {
    font-size: 1.3rem;
  }
}

.mt2025-footer-sign-border {
  position: relative;
  padding-left: 1.2em;
}
.mt2025-footer-sign-border::before {
  content: "｜";
  position: absolute;
  display: inline;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .mt2025-footer-sign-border::before {
    content: "";
  }
}
@media only screen and (max-width: 768px) {
  .mt2025-footer-sign-border {
    padding-left: 0;
  }
}

/* page-top
=============================== */
/* wrapper
=============================== */
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* text
=============================== */
.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
  font-weight: 700;
}

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

.text-l {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .text-l {
    font-size: 1.5rem;
  }
}

.text-r {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .text-r {
    font-size: 1.4rem;
  }
}

.text-s {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .text-s {
    font-size: 1.3rem;
  }
}

/* inner960
=============================== */
.inner960 {
  max-width: 100%;
  width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  .inner960 {
    padding: 0 20px;
  }
}

/* section-title
=============================== */
.section__title {
  max-width: 100%;
  width: 1360px;
  margin: 0 auto;
  transform: translateY(0);
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  .section__title {
    margin: 0 auto 0;
    padding: 0 4%;
  }
}

.section-title__inner {
  width: 140px;
}
@media only screen and (max-width: 1039px) {
  .section-title__inner {
    width: 13.4744947064vw;
  }
}
@media only screen and (max-width: 768px) {
  .section-title__inner {
    width: 80px;
    margin: 0 auto;
  }
}
.section-title__inner img {
  margin-top: -60px;
}
@media only screen and (max-width: 768px) {
  .section-title__inner img {
    margin-top: -30px;
  }
}

/* indent
=============================== */
.list-indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* text-color
=============================== */
/* underline
=============================== */
span.underline-border {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.2em; /* 線の太さ */
  text-decoration-color: #A7AFDF; /* 線の色 */
  text-underline-offset: 0.4em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

span.underline-marker {
  color: #4554A7;
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 1.2em; /* 線の太さ */
  text-decoration-color: #EBEDF6; /* 線の色 */
  text-underline-offset: -1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

span.underline-under-marker {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.6em; /* 線の太さ */
  text-decoration-color: #EBEDF6; /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/* marker
=============================== */
/* mv
=============================== */
.mv {
  position: relative;
  width: 100%;
  min-height: 100svh;
  height: 100dvh;
  height: 100vh;
  background-image: url("../img/img_kv2025_pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 0 0 40px 0;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .mv {
    background-image: url("../img/img_kv2025_sp.webp");
    background-repeat: no-repeat;
  }
}

.mv__inner {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 44.78%;
}
@media only screen and (max-width: 768px) {
  .mv__inner {
    width: 78.66%;
  }
}

.mv__title {
  width: 100%;
  text-align: center;
}
.mv__title img {
  width: 100%;
}

/* sidebnr
=============================== */
.sidebnr {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 2000;
}

.sidebnr__inner {
  display: flex;
  flex-direction: column;
}

a.sidebnr__item {
  display: block;
  margin: 16px 0 0;
  filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.2));
}
a.sidebnr__item:hover {
  opacity: 1;
  filter: brightness(1.1);
  transform: scale(0.95);
}

/* TOP用 awardへのリンクボタン
=============================== */
.btn-award2025 {
  position: absolute;
  right: 40px;
  bottom: 20px;
  z-index: 10;
  filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.2));
}
@media only screen and (max-width: 1039px) {
  .btn-award2025 {
    width: 19.2492781521vw;
    height: 18.5755534167vw;
    bottom: 6%;
  }
}
@media only screen and (max-width: 768px) {
  .btn-award2025 {
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 116px;
  }
}

.btn-award2025__inner {
  display: block;
  animation: blink 2s linear infinite;
}
.btn-award2025__inner:hover {
  opacity: 1;
  transform: scale(1.02);
}

@keyframes blink {
  0% {
    filter: brightness(105%);
  }
  50% {
    filter: brightness(90%);
  }
  100% {
    filter: brightness(105%);
  }
}
/* common
=============================== */
.font-purple {
  color: #4554A7;
}

/* intro
=============================== */
.intro {
  position: relative;
  padding-top: 100px;
  background-color: #EFE2D9;
}
.intro-title {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.intro-title__text {
  font-size: 3.6rem;
  color: #4554A7;
}
@media only screen and (max-width: 768px) {
  .intro-title__text {
    font-size: 2.4rem;
  }
}

.intro-title__subtext {
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .intro-title__subtext {
    font-size: 2rem;
  }
}

.intro-text {
  margin-top: 30px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .intro-text {
    font-size: 1.5rem;
  }
}

/* intro-box */
.intro-box {
  background: white;
  border: 3px solid #626EB4;
  border-radius: 11px;
  margin-top: 50px;
}

.intro-box__inner {
  border: 10px solid #EBEDF6;
  border-radius: 11px;
  padding: 35px 60px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .intro-box__inner {
    padding: 25px;
  }
}

.intro-box__title {
  position: absolute;
  top: -30px;
  left: 60px;
}
@media only screen and (max-width: 768px) {
  .intro-box__title {
    left: 25px;
  }
}

.intro-box-wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .intro-box-wrap {
    flex-direction: column;
  }
}

.intro-box__text {
  font-size: 1.6rem;
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .intro-box__text {
    font-size: 1.5rem;
  }
}

.intro-box__img {
  width: 110px;
  margin-left: 30px;
}
@media only screen and (max-width: 768px) {
  .intro-box__img {
    text-align: center;
    margin: 18px auto 0;
  }
}

/* btn
=============================== */
.btn {
  text-decoration: none;
  text-align: center;
  display: block;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.btn-end {
  text-align: center;
  font-weight: bold;
  background-color: #EAEAEA;
  border-radius: 8px;
}

.btn-460 {
  width: 460px;
  max-width: 100%;
  font-size: 1.6rem;
  padding: 18px 0;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .btn-460 {
    font-size: 1.5rem;
  }
}

.btn-purple {
  color: white;
  background: #626EB4;
  border-radius: 8px;
  box-shadow: 0 4px 0 #BAC1E8;
}
.btn-purple:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(4px);
  color: white;
  text-decoration: none;
}
.btn-purple:active, .btn-purple:visited {
  text-decoration: none;
  opacity: 1;
  color: white;
}

.btn-arrow-w {
  position: relative;
  padding-right: 20px;
}
.btn-arrow-w:after {
  content: "";
  position: absolute;
  background-image: url("../img/ico_arrow-btm-white.svg");
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  background-size: cover;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.btn-arrow-r {
  position: relative;
  padding-right: 17px;
}
.btn-arrow-r:after {
  content: "";
  position: absolute;
  background-image: url("../img/ico_arrow-right-white.svg");
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  background-size: cover;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.btn-mgt {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .btn-mgt {
    margin-top: 20px;
  }
}

.btn-brown {
  background-color: #895252;
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 0 #D2C0C0;
}
.btn-brown:hover {
  opacity: 1;
  box-shadow: none;
  transform: translateY(4px);
  color: white;
}
.btn-brown:active, .btn-brown:visited {
  opacity: 1;
  color: white;
}

/* theme
=============================== */
.theme {
  background-color: #626EB4;
  background-image: url("../img/bg_theme70.svg");
  background-repeat: no-repeat;
  background-repeat: repeat;
  border-radius: 40px 0 40px 0;
  padding: 60px 0 80px;
  margin: 120px 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .theme {
    margin: 100px 0 40px;
    padding: 70px 0 240px;
  }
}
.theme:before {
  content: "";
  position: absolute;
  background-image: url("../img/img_theme-photo03.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 469px;
  height: 347px;
  top: -20px;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .theme:before {
    width: 180px;
    height: 133px;
    top: -40px;
  }
}
.theme:after {
  content: "";
  position: absolute;
  background-image: url("../img/img_theme-photo02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 466px;
  height: 311px;
  bottom: 20px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .theme:after {
    width: 200px;
    height: 133px;
    bottom: 86px;
    left: -40px;
  }
}

.theme-inner {
  padding: 0 20px;
  position: relative;
}
.theme-inner::before {
  content: "";
  position: absolute;
  background-image: url("../img/img_theme-photo01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 180px;
  height: 247px;
  top: 260px;
  left: 84px;
}
@media only screen and (max-width: 768px) {
  .theme-inner::before {
    background-image: none;
  }
}
.theme-inner::after {
  content: "";
  position: absolute;
  background-image: url("../img/img_theme-photo04.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 240px;
  height: 330px;
  bottom: 180px;
  right: 50px;
}
@media only screen and (max-width: 768px) {
  .theme-inner::after {
    width: 120px;
    height: 165px;
    bottom: -274px;
    right: 80px;
  }
}

.theme-box {
  max-width: 100%;
  width: 725px;
  margin: 0 auto;
  background: white;
  border-radius: 14px;
  padding: 30px 50px;
  margin-top: 20px;
  position: relative;
  z-index: 500;
}
@media only screen and (max-width: 768px) {
  .theme-box {
    padding: 20px;
    margin-top: 10px;
  }
}

.theme-title-catch {
  text-align: center;
}

.theme-box--supple {
  border: 10px solid #EBEDF6;
}

.theme-box-supple-text {
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .theme-box-supple-text {
    font-size: 1.4rem;
  }
}

.theme-box-supple-text-inner {
  border: 2px solid #626EB4;
  border-radius: 30px;
  color: #4554A7;
  padding: 6px 20px;
  font-weight: bold;
  margin-right: 1em;
}
@media only screen and (max-width: 768px) {
  .theme-box-supple-text-inner {
    margin-right: 0;
    margin-bottom: 0.5em;
    padding: 2px 20px;
    display: inline-block;
  }
}

.theme-title {
  font-weight: bold;
  font-size: 3.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .theme-title {
    font-size: 2.5rem;
  }
}

.theme-text {
  margin-top: 40px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .theme-text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .theme-text {
    margin-top: 10px;
  }
}

/* common
=============================== */
.section2025 {
  padding: 100px 0;
}

.section-title-purple {
  background-color: #626EB4;
  color: white;
  text-align: center;
  font-size: 2.6rem;
  padding: 8px 0;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .section-title-purple {
    font-size: 2rem;
  }
}

.section-title {
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.section-body {
  margin-top: 30px;
}

.section-body__text {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .section-body__text {
    font-size: 1.5rem;
  }
}

/* apply
=============================== */
.apply-wrap {
  background-color: #F7F1EE;
}

.apply {
  background: #EFE2D9;
  padding: 90px 0 100px;
  border-radius: 0 0 0 40px;
  position: relative;
}
.apply-box-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .apply-box-wrap {
    flex-direction: column;
    margin-top: 30px;
  }
}

.apply-box {
  width: 48%;
  background: white;
  border: 3px solid #626EB4;
  border-radius: 14px;
  padding: 0 0 30px;
}
@media only screen and (max-width: 768px) {
  .apply-box {
    padding: 0 0 20px;
    width: 100%;
  }
}

.apply-box02 {
  position: relative;
}
.apply-box02:after {
  content: "";
  position: absolute;
  background-image: url("../img/img_how-or.svg");
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  top: 50%;
  left: -22px;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .apply-box02:after {
    background-image: none;
  }
}
@media only screen and (max-width: 768px) {
  .apply-box02 {
    margin-top: 10px;
  }
}

.apply-box__title {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  background-color: #EBEDF6;
  border-radius: 14px 14px 0 0;
  height: 70px;
  line-height: 70px;
}
@media only screen and (max-width: 1039px) {
  .apply-box__title {
    font-size: 1.7rem;
  }
}

.apply-box__title-icon01 {
  position: relative;
  padding-left: 66px;
}
.apply-box__title-icon01:before {
  content: "";
  position: absolute;
  background-image: url("../img/img_how-title01.svg");
  background-repeat: no-repeat;
  width: 56px;
  height: 57px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.apply-box__title-icon02 {
  position: relative;
  padding-left: 66px;
}
.apply-box__title-icon02:before {
  content: "";
  position: absolute;
  background-image: url("../img/img_how-title02.svg");
  background-repeat: no-repeat;
  width: 56px;
  height: 57px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.apply-box__body {
  padding: 20px 30px;
}
@media only screen and (max-width: 768px) {
  .apply-box__body {
    padding: 20px;
  }
}

.apply-box__text {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .apply-box__text {
    font-size: 1.5rem;
  }
}

.apply-box__text--sm {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .apply-box__text--sm {
    font-size: 1.4rem;
  }
}

.apply-box__text--intro {
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 3px dotted #626EB4;
  position: relative;
}
.apply-box__text--intro:before {
  content: "";
  position: absolute;
  background-image: url("../img/ico_arrow-btm-purple-bg.svg");
  background-repeat: no-repeat;
  width: 28px;
  height: 12px;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}
.apply-box__text--intro a {
  color: #EC6C00;
}

/* ボタン */
.btn-block20 {
  margin-top: 30px;
}

.apply-box-linkbox {
  display: none;
}
@media only screen and (max-width: 768px) {
  .apply-box-linkbox {
    display: flex;
    margin-top: 50px;
    justify-content: space-between;
  }
}

.apply-box-link__item {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  width: 48%;
  text-align: center;
  padding: 10px 0 26px;
  text-decoration: none;
  position: relative;
}
.apply-box-link__item:before {
  content: "";
  background-size: cover;
  position: absolute;
  bottom: 11px;
  transform: translateX(-50%);
  left: 50%;
  background-image: url("../img/ico_arrow-btm-white.svg");
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
}

.btn-300 {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 22px 0;
}

.ico_blank-w {
  position: relative;
  padding-right: 19px;
}
.ico_blank-w:before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url("../img/ico_blank-white.svg");
  background-repeat: no-repeat;
  width: 14px;
  height: 13px;
  background-size: cover;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/* notebook
=============================== */
.notebox {
  margin-top: 30px;
  background: #F3E8E4;
  padding: 30px 40px;
}
@media only screen and (max-width: 768px) {
  .notebox {
    padding: 20px;
  }
}

.notebox-title {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .notebox-title {
    font-size: 1.7rem;
  }
}

.notebox-intro {
  margin-top: 1em;
  font-size: 1.5rem;
}

.notebox-block {
  margin-top: 1.5em;
}

.notebox-block.mg-t-none {
  margin-top: 0;
}

.notebox-block__title {
  font-weight: bold;
  font-size: 1.6rem;
  padding-left: 25px;
  position: relative;
}
.notebox-block__title:before {
  content: "";
  position: absolute;
  background-image: url("../img/ico_rectangle-brown.svg");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .notebox-block__title {
    font-size: 1.4rem;
  }
}

.notebox-list-num-01 {
  font-size: 1.5rem;
  list-style-type: decimal;
  list-style-position: inside;
}
@media only screen and (max-width: 768px) {
  .notebox-list-num-01 {
    font-size: 1.4rem;
  }
}
.notebox-list-num-01 > li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.notebox-list-num-02 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .notebox-list-num-02 {
    font-size: 1.4rem;
  }
}
.notebox-list-num-02 > li {
  text-indent: -1em;
  padding-left: 1em;
}

/* period
=============================== */
.period {
  text-align: center;
  margin-top: 45px;
}

/* prize
=============================== */
.prize-bg {
  background-color: #EFE2D9;
}

.prize {
  background: #F7F1EE;
  background-image: url("../img/bg_prize-pattern.svg");
  background-repeat: no-repeat;
  background-repeat: repeat;
  padding: 80px 0;
  border-radius: 0 0 40px 0;
}
@media only screen and (max-width: 768px) {
  .prize {
    padding: 60px 0;
  }
}

.prize-block-01 {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .prize-block-01 {
    flex-direction: column;
    margin-top: 20px;
  }
}
.prize-block-01 li {
  filter: drop-shadow(0 0 30px #e6dbd3);
}

.prize-block-01__item01 {
  width: 31.4583333333%;
}
@media only screen and (max-width: 768px) {
  .prize-block-01__item01 {
    width: 62%;
    margin: 0 auto;
    text-align: center;
  }
}

.prize-block-01__item02 {
  width: 31.4583333333%;
}
@media only screen and (max-width: 768px) {
  .prize-block-01__item02 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .prize-block-04 {
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
  }
}

@media only screen and (max-width: 768px) {
  .prize-block-01__item04 {
    width: 48.65%;
    text-align: center;
    filter: drop-shadow(0 0 30px #e6dbd3);
  }
}

.prize-block-02 {
  display: flex;
  max-width: 796px;
  width: 100%;
  justify-content: space-around;
  margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
  .prize-block-02 {
    flex-direction: column;
    margin-top: 20px;
    background-color: white;
    border: 2px solid #B48982;
    border-radius: 30px;
    padding: 10px 30px;
    filter: drop-shadow(0 0 30px #e6dbd3);
  }
}
.prize-block-02 li {
  filter: drop-shadow(0 0 30px #e6dbd3);
  width: 31.4070351759%;
}
@media only screen and (max-width: 768px) {
  .prize-block-02 li:last-of-type {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .prize-block-02 li {
    filter: none;
    width: 100%;
    border-bottom: 2px dotted #895252;
    padding-bottom: 1em;
    text-align: center;
    margin-top: 1em;
  }
}

/* past
=============================== */
.past {
  margin-top: 50px;
}

.btn-block-multi {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .btn-block-multi {
    flex-wrap: wrap;
  }
}

.btn-block-multi__item {
  width: 23.9583333333%;
  padding: 14px 0;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .btn-block-multi__item {
    font-size: 1.4rem;
    width: 48.3582089552%;
    margin-top: 10px;
  }
}

/* twitter
=============================== */
.twitter__frame {
  margin-top: 40px;
  padding: 0 80px;
}
@media only screen and (max-width: 768px) {
  .twitter__frame {
    margin-top: 60px;
    padding: 0;
  }
}

/* panel
=============================== */
.panel-wrap {
  background-color: #F7F1EE;
}

.panel {
  background-color: #EFE2D9;
  border-radius: 0 0 0 40px;
}

.panel-block {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .panel-block {
    flex-direction: column;
    margin-top: 20px;
  }
}

.panel-block__item {
  width: 44.7916666667%;
}
@media only screen and (max-width: 768px) {
  .panel-block__item {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .panel-block__item02 {
    margin-top: 55px;
  }
}

.panel-img {
  text-align: center;
  width: 69.7674418605%;
  margin: 0 auto;
}

.panel-title {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  color: #4554A7;
}
@media only screen and (max-width: 768px) {
  .panel-title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .panel-title {
    margin-top: 6px;
  }
}

.panel-title-b {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  color: #4554A7;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .panel-title-b {
    font-size: 2rem;
    margin-top: 50px;
  }
}

.panel-name {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

.panel-name-sm {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .panel-name-sm {
    font-size: 1.5rem;
  }
}

.panel-job {
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .panel-job {
    font-size: 1.5rem;
  }
}

.panel-text {
  margin-top: 1em;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .panel-text {
    font-size: 1.5rem;
  }
}

.panel-btn-block {
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .panel-btn-block {
    text-align: center;
  }
}

.btn-panel {
  background: white;
  border: 2px solid #626EB4;
  border-radius: 8px;
  font-size: 1.4rem;
  padding: 10px 23px 10px 12px;
  font-weight: bold;
  color: #4554A7;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.btn-panel:before {
  content: "";
  position: absolute;
  background-image: url("../img/ico_arrow-right-purple.svg");
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  background-size: cover;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}
.btn-panel:hover, .btn-panel:active, .btn-panel:visited {
  color: #4554A7;
}

.panel-list {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .panel-list {
    margin-top: 0;
    flex-wrap: wrap;
  }
}

.panel-list__item {
  width: 20.8333333333%;
}
@media only screen and (max-width: 768px) {
  .panel-list__item {
    width: 41.7910447761%;
    margin-top: 30px;
  }
}

.panel-list-img {
  text-align: center;
  width: 100%;
}
.panel-list-img img {
  width: 100%;
}

.panel-list-text {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 10px;
}
.panel-list-text a {
  text-decoration: none;
}

/* railways
=============================== */
.railways {
  background-color: #F7F1EE;
}

@media only screen and (max-width: 768px) {
  .railways-btn-block {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 768px) {
  a.btn-w-p {
    background: white;
    color: #4554A7;
    border: 2px solid #626EB4;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1.4rem;
    font-weight: bold;
    display: inline;
    position: relative;
    text-decoration: none;
    margin: 4px 4px 0 0;
    text-align: center;
  }
}
a.btn-w-p:hover, a.btn-w-p:active, a.btn-w-p:visited {
  color: #4554A7;
}

/* for railways-block */
.railways-block {
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .railways-block {
    margin-top: 20px;
  }
}

.railways-block__item {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .railways-block__item {
    margin-top: 10px;
  }
}

.railways-block__title {
  font-weight: bold;
  background-color: #626EB4;
  color: white;
  padding: 8px;
  text-align: center;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .railways-block__title {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .railways-block__title {
    position: relative;
    text-align: left;
  }
  .railways-block__title::after {
    content: "";
    position: absolute;
    background-image: url("../img/ico_arrow-btm-white.svg");
    background-repeat: no-repeat;
    display: inline;
    width: 11px;
    height: 9px;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* 矢印の向きを変える */
@media only screen and (max-width: 768px) {
  .is-acc-open .railways-block__title::after {
    background-image: url("../img/ico_arrow-up-white.svg");
    background-repeat: no-repeat;
  }
}

.railways-area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .railways-area {
    margin-top: 0;
    flex-direction: column;
  }
}

.railways-area__b {
  background: white;
  padding: 10px 14px;
  line-height: 1.6;
  margin-top: 12px;
}

.railways-area__item {
  width: 24.1666666667%;
  background: white;
  padding: 10px 14px;
  margin: 8px 0.8333333333% 0 0;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .railways-area__item {
    width: 100%;
    margin: 4px 0 0 0;
    padding: 20px 10px;
  }
}

.railways-area__title {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .railways-area__title {
    font-size: 1.6rem;
  }
}

.railways-area__com {
  color: #797979;
  font-size: 1.3rem;
}

/* for accordion */
@media only screen and (max-width: 768px) {
  .js-acc-target {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .js-acc-trigger {
    touch-action: manipulation;
    cursor: pointer;
  }
}

/* contact
=============================== */
.contact {
  text-align: center;
  background-color: #F7F1EE;
  padding-bottom: 60px;
  border-radius: 0 0 40px 0;
}

.contact__inner {
  background-color: #F3E8E4;
  border-top: 1px solid #EAC2A7;
  border-bottom: 1px solid #EAC2A7;
  padding: 30px 40px;
}
@media only screen and (max-width: 768px) {
  .contact__inner {
    margin: 0 calc(50% - 50VW);
    width: 100vw;
    padding: 60px 20px;
  }
}

.contact-title {
  font-size: 2.6rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .contact-title {
    font-size: 2.4rem;
  }
}

.contact-btn-box {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .contact-btn-box {
    margin-top: 30px;
  }
}

.btn-400 {
  width: 100%;
  max-width: 400px;
  display: block;
  padding: 16px;
  margin: 0 auto;
  border-radius: 6px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .btn-400 {
    font-size: 1.4rem;
  }
}

.past-contact {
  margin-top: 60px;
}

.past__title--contact {
  font-weight: bold;
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .past__title--contact {
    font-size: 2rem;
  }
}

.ico_mail {
  position: relative;
  padding-left: 33px;
}
.ico_mail:before {
  content: "";
  position: absolute;
  background-image: url("../img/ico_contact.svg");
  background-repeat: no-repeat;
  width: 27px;
  height: 20px;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* apply-end
=============================== */
.apply-end {
  text-align: center;
  margin-top: 30px;
  background-color: white;
  border: 10px solid #EBEDF6;
  border-radius: 14px;
  padding: 20px;
}

.apply-end__title {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .apply-end__title {
    font-size: 2rem;
  }
}

.apply-end__text {
  margin-top: 10px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .apply-end__text {
    font-size: 1.5rem;
  }
}

/* 2025/02結果発表用 */
/* award2025-header
=============================== */
.award2025-header {
  width: 100%;
  min-height: 460px;
  background-image: url("../img/awardimg/img_title_pc.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .award2025-header {
    min-height: 360px;
    background-image: url("../img/awardimg/img_title_sp.png");
    background-repeat: no-repeat;
    background-position: center center;
  }
}

.award2025-header__title {
  width: calc(250 %);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .award2025-header__title {
    width: 100%;
    max-width: 310px;
  }
}

/* common
=============================== */
.award2025 {
  padding-bottom: 100px;
}

.award2025__inner {
  width: 1040px;
  max-width: 100%;
  padding: 0 40px;
  margin: -60px auto 0;
}
@media only screen and (max-width: 768px) {
  .award2025__inner {
    padding: 0 20px;
    margin: -40px auto 0;
  }
}

/* award2025-intro
=============================== */
.award2025-intro {
  background-color: #EFE2D9;
  position: relative;
  padding-top: 60px;
  border-radius: 24px 24px 0 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .award2025-intro {
    padding-top: 30px;
  }
}

.award2025-intro__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .award2025-intro__title {
    font-size: 1.8rem;
  }
}

/* award2025-nav
=============================== */
.award2025-nav {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .award2025-nav {
    margin-top: 10px;
  }
}
.award2025-nav::after {
  display: block;
  content: "";
  width: 31.88%;
}

.award2025-nav__item {
  width: 31.88%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-top: 20px;
  position: relative;
  padding: 20px 10px;
}
@media only screen and (max-width: 768px) {
  .award2025-nav__item {
    width: 48%;
  }
}

/* award2025-sec
=============================== */
.award2025-sec {
  border-radius: 11px;
  background: #fff;
  margin-top: 100px;
}
.award2025-sec--01 {
  border: 3px solid #BB434C;
}

.award2025-sec--02 {
  border: 3px solid #A296A6;
}

.award2025-sec--03 {
  border: 3px solid #B48982;
}

.award2025-sec-border {
  border-radius: 8px;
  padding: 27px;
}

.award2025-sec-border--01 {
  border: 10px solid #F4DEE0;
}

.award2025-sec-border--02 {
  border: 10px solid #e1d9e4;
}

.award2025-sec-border--03 {
  border: 10px solid #F3E8E4;
}

.award2025-sec__titlebox {
  text-align: center;
  position: relative;
}
.award2025-sec__titlebox:before {
  /* 王冠 */
  content: "";
  position: absolute;
  background-image: url("../img/awardimg/img_award-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 110px;
  z-index: 1;
}

.award2025-sec__title {
  font-weight: bold;
  font-size: 3.4rem;
  color: white;
  position: relative;
}
@media only screen and (max-width: 1039px) {
  .award2025-sec__title {
    font-size: 3.2723772859vw;
  }
}
@media only screen and (max-width: 768px) {
  .award2025-sec__title {
    font-size: 2.3rem;
  }
}
.award2025-sec__title::before {
  /* 左上の切り欠き部分 */
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  left: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: 2;
}
.award2025-sec__title::after {
  /* 右下の切り欠き部分 */
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  right: -10px;
  bottom: -10px;
  transform: rotate(45deg);
  z-index: 2;
}

.award2025-sec__title--01 {
  background: #BB434C;
}

.award2025-sec__title--02 {
  background: #A296A6;
}

.award2025-sec__title--03 {
  background: #B48982;
}

.award2025__title-inner {
  position: relative;
  display: block;
}
.award2025__title-inner::before {
  /* 右上の切り欠き部分 */
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  right: -10px;
  top: -10px;
  transform: rotate(45deg);
  z-index: 2;
}
.award2025__title-inner::after {
  /* 左下の切り欠き部分 */
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  left: -10px;
  bottom: -10px;
  transform: rotate(45deg);
  z-index: 2;
}

.award2025-sec__titletext {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 10px;
}
@media only screen and (max-width: 1039px) {
  .award2025-sec__titletext {
    font-size: 1.7324350337vw;
  }
}
@media only screen and (max-width: 768px) {
  .award2025-sec__titletext {
    font-size: 1.5rem;
  }
}

.award2025-sec__body {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .award2025-sec__body {
    margin-top: 20px;
  }
}

.award2025-sec__body--nomgt {
  margin-top: 0;
}

.award2025__photobox {
  text-align: center;
}

.award2025__photo-name {
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .award2025__photo-name {
    font-size: 1.1rem;
  }
}

.award2025__photo-text {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .award2025__photo-text {
    font-size: 1.1rem;
  }
}

/* comment */
.award2025__comment {
  width: 100%;
}

.award2025__comment--horiz {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.award2025-comment__item {
  margin-top: 40px;
  width: 100%;
}
.award2025__comment--horiz .award2025-comment__item {
  width: 47.91%;
}
@media only screen and (max-width: 768px) {
  .award2025__comment--horiz .award2025-comment__item {
    width: 100%;
  }
}

.award2025__comment-box {
  background: #EBEDF6;
  border-radius: 14px;
  color: #4554A7;
  font-size: 1.6rem;
  padding: 20px 30px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .award2025__comment-box {
    font-size: 1.2rem;
    padding: 15px;
  }
}

.award2025__comment-pers {
  text-align: center;
  margin-top: 20px;
}

.award2025__comment-pers-img {
  width: 120px;
  margin: 0 auto;
}

.award2025__comment-pers-text {
  color: #4554A7;
  font-size: 1.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .award2025__comment-pers-text {
    font-size: 1.2rem;
  }
}

/* award2025-double
=============================== */
.award2025-double {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .award2025-double {
    flex-direction: column;
  }
}

.award2025-double__item {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .award2025-double__item {
    width: 100%;
  }
}

/* award2025__photobox-line3
=============================== */
.award2025__photobox-line3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.award2025__photobox-line3:after {
  display: block;
  content: "";
  width: 30.2%;
}
@media only screen and (max-width: 768px) {
  .award2025__photobox-line3:after {
    width: 46.6%;
  }
}

.award2025c-photobox-line3__item {
  width: 30.2%;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .award2025c-photobox-line3__item {
    width: 46.6%;
    margin-top: 20px;
  }
}

/* past-block
=============================== */
.past-block--ind {
  background-color: #F7F1EE;
  padding: 40px 0 60px;
  border-radius: 0 0 40px 0;
}

.past--ind {
  margin-top: 0;
}

.past__title--ind {
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .past__title--ind {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */