@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizespeed;
  line-height: 1.5;
  width: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* mixin
------------------------------------------------------------*/
/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --f-family-main: "Montserrat", "Noto Sans JP", sans-serif;
  --f-family-en: "Montserrat", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.5;
  --f-letter-spacing: 0.06em;
  --f-weight-light: 300;
  --f-weight-regular: 400;
  --f-weight-medium: 500;
  --f-weight-semibold: 600;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #3a3a3a;
  --c-white: #ffffff;
  --c-brand: #ae8148;
  --c-blue:#01306C;
  --c-light-blue:#EDF5FF;
  --c-fp1: #CB5D7D;
  --c-fp2: #1381B8;
  --c-fp3:#5D9C14;
  --c-btn-base:#1B5298;
  --c-gray:#EAEAEA;
  --c-orange:#FF8332;
  --c-bg-gray:#F5F7F7;
  --c-base-rgb: 26, 26, 26;
  --c-blue-rgb: 97, 158, 208;
  --c-green-rgb: 39, 159, 135;
  --width-main-content:880px;
  --width-side-content:280px;
}

html {
  font-size: 16px;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  font-weight: var(--f-weight-medium);
  line-height: var(--f-line-height);
  background-color: var(--c-white);
  color: var(--c-base);
  letter-spacing: var(--f-letter-spacing);
  overflow-wrap: break-word;
  word-break: break-all;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior: none;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}

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

.is-tab {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .is-tab {
    display: block !important;
  }
}

.is-sp {
  display: none !important;
}
@media screen and (max-width: 1279px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

/* header
------------------------------------------------------------*/
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: block;
  background-color: var(--c-white);
  width: var(--width-side-content);
  height: 100vh;
  padding: 40px 24px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1279px) {
  .l-header {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 80px 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
}
@media screen and (max-width: 1279px) {
  .l-header.js-menu-open {
    transform: translateX(0);
  }
}
.l-header__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.l-header__link {
  color: var(--c-blue);
  font-weight: var(--f-weight-semibold);
  width: 100%;
  padding-bottom: 8px;
  border-bottom: solid 1px var(--c-blue);
}
.l-header__link:hover {
  letter-spacing: 0.08em;
  color: var(--c-btn-base);
  border-bottom: solid 1px var(--c-btn-base);
}
.l-header__link span {
  display: block;
  font-size: 0.75rem;
}

.l-hamburger {
  display: none;
}
@media screen and (max-width: 1279px) {
  .l-hamburger {
    display: block;
    padding: 4px;
    position: fixed;
    top: 8px;
    right: 8px;
    background: var(--c-blue);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }
}
.l-hamburger.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 1279px) {
  .l-hamburger-btn {
    position: relative;
    width: 40px;
    height: 28px;
    margin: 8px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
}
.l-hamburger-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-white);
  border-radius: 2px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.l-hamburger-btn span:nth-of-type(1) {
  top: 0;
}
.l-hamburger-btn span:nth-of-type(2) {
  top: 13px;
}
.l-hamburger-btn span:nth-of-type(3) {
  bottom: 0;
}
.l-hamburger-btn.js-hamburger-active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
.l-hamburger-btn.js-hamburger-active span:nth-of-type(2) {
  opacity: 0;
}
.l-hamburger-btn.js-hamburger-active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

/* container
------------------------------------------------------------*/
.l-container {
  position: relative;
  display: flex;
}
@media screen and (max-width: 1279px) {
  .l-container {
    flex-direction: column;
  }
}
.l-container__main {
  flex: 1;
}

.l-main {
  margin: 24px 0 0;
}

.l-inner {
  max-width: var(--width-main-content);
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .l-inner {
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 12px;
  }
}

/* components
------------------------------------------------------------*/
.c-ttl {
  position: relative;
  font-size: 2rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-blue);
  margin-bottom: 40px;
  letter-spacing: 0;
  padding-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 1.5rem;
  }
}
.c-ttl::before {
  content: "";
  display: inline-block;
  background-image: url(../img/ttl_decoration.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: auto;
  aspect-ratio: 53/34;
  position: absolute;
  left: 0;
  bottom: -13px;
}
.c-ttl::after {
  content: "";
  display: inline-block;
  width: calc(100% - 60px);
  height: 2px;
  background-color: var(--c-blue);
  position: absolute;
  right: 0;
  bottom: 0;
}

.c-ttl__supplement {
  position: relative;
  font-size: 1rem;
  font-weight: var(--f-weight-semibold);
  line-height: 1;
  color: var(--c-blue);
  padding-left: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .c-ttl__supplement {
    font-size: 0.75rem;
  }
}
.c-ttl__supplement::before {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-radio.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: auto;
  aspect-ratio: 5/6;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.c-btn {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  text-align: center;
  line-height: 1;
  color: var(--c-white);
  background-color: var(--c-btn-base);
  box-shadow: 0 4px 0 #01306C;
  padding: 16px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1rem;
  }
}
.c-btn:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--c-btn-base);
  opacity: 1;
}

/* header
------------------------------------------------------------*/
/* footer
------------------------------------------------------------*/
.c-footer {
  background-color: var(--c-blue);
  padding: 16px;
  font-size: 0.75rem;
  color: var(--c-white);
  text-align: center;
}

/* TOP
------------------------------------------------------------*/
.p-tag {
  margin-bottom: 24px;
}
.p-tag__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.p-tag__item {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  background-color: var(--c-gray);
  padding: 4px;
}
@media screen and (max-width: 767px) {
  .p-tag__item {
    font-size: 0.75rem;
  }
}
.p-tag__item::before {
  content: "#";
  padding-right: 4px;
}

.p-fp {
  background-color: var(--c-white);
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-fp {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-fp .l-inner {
    padding: 0 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-fp .-ttl {
    padding: 0 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-fp__slider {
    overflow: visible;
    padding: 0 12px;
  }
}
.p-fp__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1279px) {
  .p-fp__list {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-fp__list {
    gap: 0;
  }
}
.p-fp__item {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1279px) {
  .p-fp__item {
    width: calc((100% - 32px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-fp__item {
    width: auto;
  }
}
.p-fp__card {
  position: relative;
  margin-bottom: 16px;
}
.p-fp__img {
  display: block;
  width: 100%;
}
.p-fp__name {
  font-size: 0.875rem;
  font-weight: var(--f-weight-bold);
  line-height: 1;
  color: var(--c-white);
  padding: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
}
.p-fp__name.-fp1 {
  background-color: var(--c-fp1);
}
.p-fp__name.-fp2 {
  background-color: var(--c-fp2);
}
.p-fp__name.-fp3 {
  background-color: var(--c-fp3);
}
.p-fp__catch {
  font-size: 0.9375rem;
  font-weight: var(--f-weight-semibold);
  text-orientation: upright;
  writing-mode: vertical-rl;
  position: absolute;
  top: 8px;
  right: 8px;
}
@media screen and (max-width: 1279px) {
  .p-fp__catch {
    font-size: 0.875rem;
  }
}
.p-fp__catch span {
  padding: 0.4em 0;
  letter-spacing: 0;
  background-color: var(--c-white);
}
.p-fp__catch span:last-child {
  margin-top: 0.5em;
}
.p-fp__catch.-fp1 span {
  color: var(--c-fp1);
}
.p-fp__catch.-fp2 span {
  color: var(--c-fp2);
}
.p-fp__catch.-fp3 span {
  color: var(--c-fp3);
}
.p-fp__profile {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-btn-base);
  text-align: center;
  text-underline-offset: 0.5em;
  margin: 16px auto 0;
}
.p-fp__profile span {
  display: inline-block;
  border-bottom: 1px solid;
  padding-bottom: 2px;
}

.p-about {
  position: relative;
}
.p-about__inner {
  position: relative;
  background-color: var(--c-light-blue);
  padding: 80px 40px 0;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    margin: 0 12px;
    padding: 40px 12px 0;
  }
}
.p-about__inner::before, .p-about__inner::after {
  content: "";
  display: inline-block;
  width: 32px;
  aspect-ratio: 1;
  background-color: var(--c-white);
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-about__inner::before, .p-about__inner::after {
    width: 24px;
  }
}
.p-about__inner::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  right: 0;
}
.p-about__inner::after {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 0;
}
.p-about__ttl {
  font-size: 2rem;
  font-weight: var(--f-weight-bold);
  color: var(--c-white);
  letter-spacing: 0;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-about__ttl {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
.p-about__ttl span {
  background-color: var(--c-blue);
  padding: 4px 8px;
  box-decoration-break: clone;
}
.p-about__column {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-about__column {
    flex-direction: column;
  }
}
.p-about__img {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    margin: 0 auto;
    width: 100%;
  }
}
.p-about__info {
  flex: 1;
}
.p-about__info h3 {
  font-size: 1.125rem;
  color: var(--c-blue);
  font-weight: var(--f-weight-semibold);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-about__info h3 {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
.p-about__info p {
  margin-bottom: 1em;
  font-weight: var(--f-weight-regular);
}
@media screen and (max-width: 767px) {
  .p-about__info p {
    font-size: 0.875rem;
  }
}
.p-about__info p:last-child {
  margin-bottom: 0;
}

.p-archive {
  position: relative;
  overflow: hidden;
}
.p-archive::after {
  content: "";
  display: block;
  background-image: url(../img/bg_decoration.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center bottom;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .p-archive::after {
    background-size: cover;
    height: 100px;
  }
}
.p-archive__inner {
  position: relative;
  background-color: var(--c-light-blue);
  padding: 80px 40px 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-archive__inner {
    padding: 80px 12px 80px;
    margin: 0 12px 40px;
  }
}
.p-archive__inner::before, .p-archive__inner::after {
  content: "";
  display: inline-block;
  width: 32px;
  aspect-ratio: 1;
  background-color: var(--c-white);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-archive__inner::before, .p-archive__inner::after {
    width: 24px;
  }
}
.p-archive__inner::before {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  right: 0;
}
.p-archive__inner::after {
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  left: 0;
}
.p-archive__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-archive__tabs {
    gap: 10px;
    margin-bottom: 16px;
  }
}
.p-archive__tabs li {
  text-align: center;
}
.p-archive__tab {
  font-size: 1rem;
  font-weight: var(--f-weight-regular);
  line-height: 1;
  color: #C0C0C0;
  border-radius: 100vh;
  border: solid 1px #C0C0C0;
  padding: 8px 12px;
  background-color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .p-archive__tab {
    font-size: 0.875rem;
  }
}
.p-archive__tab.is-active {
  color: var(--c-white);
  font-weight: var(--f-weight-semibold);
  border: solid 1px var(--c-orange);
  background-color: var(--c-orange);
}
.p-archive__list {
  display: flex;
  gap: 24px 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    gap: 12px 10px;
  }
}
.p-archive__item {
  position: relative;
  width: 260px;
  display: flex;
  padding: 16px 12px;
  background-color: var(--c-white);
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1279px) {
  .p-archive__item {
    width: 49%;
  }
}
@media screen and (max-width: 767px) {
  .p-archive__item {
    width: 100%;
  }
}
.p-archive__item.is-hidden {
  display: none;
}
.p-archive__item.new::before {
  content: "";
  display: inline-block;
  width: 48px;
  aspect-ratio: 1;
  background-color: var(--c-orange);
  position: absolute;
  top: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.p-archive__item.new::after {
  content: "New";
  font-size: 0.75rem;
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-regular);
  color: var(--c-white);
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  right: 2px;
}
.p-archive__card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.p-archive__card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-archive__card-thumb {
  width: 64px;
}
.p-archive__card-meta {
  flex: 1;
}
.p-archive__card-date {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--c-white);
  padding: 4px 8px;
  background-color: var(--c-blue);
  margin-bottom: 8px;
}
.p-archive__card-date.future {
  background-color: var(--c-base);
}
.p-archive__card-name {
  font-size: 0.875rem;
  font-weight: var(--f-weight-semibold);
}
.p-archive__card-ttl {
  margin: 16px 0;
  font-size: 0.75rem;
  font-weight: var(--f-weight-regular);
}
.p-archive__card-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
}
.p-archive__card-listen {
  position: relative;
  display: inline-block;
  width: 40%;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--c-base);
  padding-bottom: 4px;
}
.p-archive__card-listen::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-play.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: calc(50% - 4px);
  right: 4px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.p-archive__card-listen:hover::after {
  transform: translate(4px, -50%);
  opacity: 1;
}
.p-archive__card-cta {
  width: 59%;
  font-size: 0.8125rem;
  padding: 6px 2px;
}
@media screen and (max-width: 1279px) {
  .p-archive__card-cta {
    padding: 12px 2px;
  }
}
.p-archive__more {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.p-archive__more::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--c-blue);
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-archive__more.is-hidden {
  display: none;
}
.p-archive__more button {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
}
.p-archive__more span {
  display: inline-block;
  width: 260px;
  background-color: var(--c-blue);
  border-radius: 100vh;
  font-weight: var(--f-weight-semibold);
  line-height: 1;
  color: var(--c-white);
  text-align: center;
  padding: 14px 0;
}
.p-archive__more span::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.p-archive__more span.is-active::after {
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.p-profile {
  padding: 120px 0;
  background-color: var(--c-bg-gray);
}
@media screen and (max-width: 767px) {
  .p-profile {
    padding: 80px 0;
  }
}
.p-profile__box {
  margin-bottom: 160px;
}
.p-profile__box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-profile__box {
    margin-bottom: 120px;
  }
}
.p-profile__catch {
  font-size: 2rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-white);
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-profile__catch {
    font-size: 1.5rem;
  }
}
.p-profile__catch span {
  background-color: var(--c-base);
  padding: 4px 8px;
  box-decoration-break: clone;
}
.p-profile__catch.-fp1 span {
  background-color: var(--c-fp1);
}
.p-profile__catch.-fp2 span {
  background-color: var(--c-fp2);
}
.p-profile__catch.-fp3 span {
  background-color: var(--c-fp3);
}
.p-profile__column {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-profile__column {
    flex-direction: column;
    gap: 48px;
  }
}
.p-profile__left {
  width: 344px;
}
@media screen and (max-width: 767px) {
  .p-profile__left {
    width: 100%;
  }
}
.p-profile__right {
  flex: 1;
}
.p-profile__photo {
  margin-bottom: 24px;
}
.p-profile__job {
  font-size: 1rem;
  color: var(--c-base);
  margin-bottom: 4px;
}
.p-profile__job.-fp1 {
  color: var(--c-fp1);
}
.p-profile__job.-fp2 {
  color: var(--c-fp2);
}
.p-profile__job.-fp3 {
  color: var(--c-fp3);
}
.p-profile__name {
  font-size: 1.5rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-base);
  margin-bottom: 8px;
}
.p-profile__name.-fp1 {
  color: var(--c-fp1);
}
.p-profile__name.-fp2 {
  color: var(--c-fp2);
}
.p-profile__name.-fp3 {
  color: var(--c-fp3);
}
.p-profile__item {
  margin-top: 24px;
}
.p-profile__item.-adjustment {
  padding-top: 24px;
  border-top: solid 1px var(--c-blue);
}
.p-profile__item dt {
  font-size: 0.875rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-blue);
  margin-bottom: 8px;
}
.p-profile__item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-profile__item li {
  padding: 4px 12px;
  background-color: var(--c-gray);
  border-radius: 100vh;
  font-size: 0.875rem;
  line-height: 1;
}
.p-profile__item .sns {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  width: 40px;
}
.p-profile__cta2 {
  margin-top: 40px;
}
.p-profile__info {
  background-color: var(--c-white);
  padding: 48px 32px;
}
@media screen and (max-width: 767px) {
  .p-profile__info {
    padding: 32px 24px;
  }
}
.p-profile__row {
  display: flex;
  gap: 16px;
  padding: 32px 0;
  border-bottom: solid 1px var(--c-gray);
}
.p-profile__row:first-child {
  padding-top: 0;
}
.p-profile__row:last-child {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-profile__row {
    flex-direction: column;
    gap: 4px;
    padding: 24px 0;
  }
}
.p-profile__row:last-child {
  border-bottom: none;
}
.p-profile__row.-fp1 dt {
  color: var(--c-fp1);
}
.p-profile__row.-fp2 dt {
  color: var(--c-fp2);
}
.p-profile__row.-fp3 dt {
  color: var(--c-fp3);
}
.p-profile__row dt {
  font-size: 0.875rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-base);
  width: 94px;
}
@media screen and (max-width: 767px) {
  .p-profile__row dt {
    width: 100%;
  }
}
.p-profile__row dd {
  font-size: 0.875rem;
  font-weight: var(--f-weight-regular);
  flex: 1;
}
.p-profile__row li {
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.p-profile__row li::before {
  content: "・";
}
.p-profile__more {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 64px auto 0;
}
@media screen and (max-width: 767px) {
  .p-profile__more {
    margin: 40px auto 0;
  }
}
.p-profile__more button {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0;
}
.p-profile__more button:hover {
  opacity: 1;
}
.p-profile__more span::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon-plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.p-profile__more span.is-active::after {
  content: "";
  transform: translateY(-50%) rotate(45deg);
}
.p-profile__more::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--c-blue);
  position: absolute;
  z-index: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-profile__more span {
  display: inline-block;
  width: 260px;
  background-color: var(--c-blue);
  border-radius: 100vh;
  font-weight: var(--f-weight-semibold);
  line-height: 1;
  color: var(--c-white);
  text-align: center;
  padding: 14px 0;
}
.p-profile__message {
  margin-top: 64px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-profile__message {
    margin-top: 40px;
  }
}
.p-profile__message__column {
  background-color: var(--c-white);
  display: flex;
  gap: 32px;
  padding: 64px 64px 0;
}
@media screen and (max-width: 767px) {
  .p-profile__message__column {
    flex-direction: column;
    padding: 24px 12px 0;
  }
}
.p-profile__message__left {
  position: relative;
  width: 340px;
  padding-right: 32px;
  border-right: solid 1px var(--c-gray);
}
@media screen and (max-width: 767px) {
  .p-profile__message__left {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
}
.p-profile__message__name {
  font-size: 1.125rem;
  color: var(--c-base);
  font-weight: var(--f-weight-semibold);
  writing-mode: vertical-lr;
  position: absolute;
  top: 8px;
  left: 4px;
}
.p-profile__message__name.-fp1 {
  color: var(--c-fp1);
}
.p-profile__message__name.-fp2 {
  color: var(--c-fp2);
}
.p-profile__message__name.-fp3 {
  color: var(--c-fp3);
}
.p-profile__message__box {
  background-color: var(--c-bg-gray);
  padding: 12px 8px;
  font-size: 0.875rem;
}
.p-profile__message__right {
  flex: 1;
}
.p-profile__message__catch {
  position: relative;
  font-size: 1.25rem;
  font-weight: var(--f-weight-semibold);
  margin-bottom: 32px;
  padding: 0 12px;
}
@media screen and (max-width: 767px) {
  .p-profile__message__catch {
    font-size: 1.125rem;
    padding: 0 8px;
  }
}
.p-profile__message__catch::before, .p-profile__message__catch::after {
  font-size: 2.5rem;
  line-height: 1;
  position: absolute;
  opacity: 0.4;
}
.p-profile__message__catch::before {
  content: "“";
  top: 0px;
  left: -10px;
}
@media screen and (max-width: 767px) {
  .p-profile__message__catch::before {
    left: -12px;
  }
}
.p-profile__message__catch::after {
  content: "”";
  bottom: -16px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .p-profile__message__catch::after {
    right: -10px;
  }
}
.p-profile__message__catch.-fp1 {
  color: var(--c-fp1);
}
.p-profile__message__catch.-fp2 {
  color: var(--c-fp2);
}
.p-profile__message__catch.-fp3 {
  color: var(--c-fp3);
}
.p-profile__message__txt {
  font-size: 0.875rem;
  margin-bottom: 0.8em;
  letter-spacing: 0;
}
.p-profile__message__txt:last-child {
  margin-bottom: 0;
}
.p-profile .center {
  background-color: var(--c-white);
  text-align: center;
  padding: 64px;
}
@media screen and (max-width: 767px) {
  .p-profile .center {
    padding: 40px 12px;
  }
}
.p-profile__cta3 {
  width: 340px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-profile__cta3 {
    width: 100%;
  }
}

.p-nobby {
  position: relative;
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .p-nobby {
    padding: 100px 0 0;
    margin: 0 12px;
  }
}
.p-nobby::after {
  content: "";
  display: block;
  background-image: url(../img/bg_decoration.png);
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center bottom;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .p-nobby::after {
    background-size: cover;
    height: 100px;
  }
}
.p-nobby__inner {
  position: relative;
  padding: 40px;
  background-color: var(--c-bg-gray);
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  .p-nobby__inner {
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-nobby__inner {
    padding: 32px 16px;
  }
}
.p-nobby__inner::before {
  content: "";
  display: inline-block;
  background: url(../img/folder-decoration.svg) no-repeat;
  background-size: contain;
  width: 124px;
  height: auto;
  aspect-ratio: 31/6;
  position: absolute;
  top: -24px;
  left: 0;
}
.p-nobby__content {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-nobby__content {
    flex-direction: column;
  }
}
.p-nobby__photo {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .p-nobby__photo {
    margin: 0 auto;
  }
}
.p-nobby__info {
  flex: 1;
}
.p-nobby__catch {
  font-size: 1.125rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-blue);
  margin-bottom: 24px;
}
.p-nobby__txt {
  font-size: 0.875rem;
  font-weight: var(--f-weight-regular);
  margin-bottom: 0.8em;
}

.p-message {
  background-color: var(--c-bg-gray);
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 100px 0;
  }
}
.p-message__column {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-message__column {
    flex-direction: column;
  }
}
.p-message__left {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .p-message__left {
    width: 100%;
  }
}
.p-message__img {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    flex-direction: unset;
    gap: 8px;
    width: calc(50% - 8px);
  }
}
.p-message__right {
  flex: 1;
}
.p-message__right h3 {
  font-size: 1.25rem;
  font-weight: var(--f-weight-semibold);
  color: var(--c-blue);
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-message__right h3 {
    font-size: 1.125rem;
  }
}
.p-message__right p {
  font-size: 0.875rem;
  font-weight: var(--f-weight-regular);
  margin-bottom: 0.8em;
}
.p-message__right p.-mb40 {
  margin-bottom: 40px;
}
.p-message__right ul {
  background-color: var(--c-light-blue);
  padding: 24px 16px;
  margin-bottom: 24px;
}
.p-message__right li {
  font-size: 0.875rem;
  color: var(--c-blue);
  margin-bottom: 12px;
}
.p-message__right li::before {
  content: "・";
}
.p-message__right li:last-child {
  margin-bottom: 0;
}

.p-cta {
  position: fixed;
  bottom: 0;
  left: calc(50% + var(--width-side-content) / 2);
  transform: translateX(-50%);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 16px;
  z-index: 10;
}
@media screen and (max-width: 1279px) {
  .p-cta {
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 8px;
  }
}
.p-cta__inner {
  position: relative;
  width: var(--width-main-content);
  background-color: var(--c-blue);
  border-radius: 12px;
  padding: 20px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .p-cta__inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding: 8px;
  }
}
.p-cta__contet {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 1279px) {
  .p-cta__contet {
    justify-content: center;
    gap: 24px;
  }
}
.p-cta__catch {
  font-size: 0.875rem;
  font-weight: var(--f-weight-semibold);
  line-height: 2;
  color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .p-cta__catch {
    font-size: 0.6875rem;
  }
}
.p-cta__catch span {
  border-bottom: 2px solid #FFD72D;
  padding-bottom: 4px;
}
.p-cta__list {
  display: flex;
  gap: 16px;
}
.p-cta__link {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .p-cta__link {
    flex-direction: column;
    align-items: center;
  }
}
.p-cta__photo {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .p-cta__photo {
    width: 60px;
  }
}
.p-cta__txt {
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .p-cta__txt {
    margin-left: 0;
  }
}
.p-cta__link-name {
  font-size: 1rem;
  color: var(--c-white);
}
@media screen and (max-width: 767px) {
  .p-cta__link-name {
    font-size: 0.5rem;
  }
}
.p-cta__link-catch {
  position: relative;
  font-size: 0.875rem;
  color: var(--c-white);
  border-bottom: 1px solid var(--c-white);
  padding-bottom: 4px;
  padding-right: 24px;
}
.p-cta__link-catch::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: solid 2px var(--c-white);
  border-right: solid 2px var(--c-white);
  transform: rotate(45deg);
}
@media screen and (max-width: 1279px) {
  .p-cta__link-catch {
    display: none;
  }
}

/* TOP
微調整
------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .u-fp__wrap {
    padding: 0 12px;
  }
}/*# sourceMappingURL=style.css.map */