@charset "UTF-8";
/*reset
-----------------------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

a:hover {
  transition: 0.6s;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

html,
body {
  width: 100%;
  margin: 0 auto;
}

img,
picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

a {
  display: block;
  color: var(--color-text);
}

a:hover {
  cursor: pointer;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

::before,
::after {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

th,
td {
  margin: 0;
}

dl,
dt,
dd {
  margin: 0;
}

/* acodion */
/* Chrome、Safari以外 */
summary {
  display: block;
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

/*common
-----------------------------------------------------------------------------------------*/
:root {
  /* color */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-main: #124fc9;
  --color-base: #d5f5ee;
  --color-accent: #a5e1d9;
  --color-sub: #ff7e25;
  --color-text: #231815;
  --color-gray: #757575;
}

html {
  font-size: 16px;
  /* scroll-behavior: smooth; */
  /* scroll-padding-top: var(--header-height); */
}

body {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text);
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  background-color: var(--color-base);
  line-height: 1.5;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img,
picture {
  vertical-align: top;
}

summary {
  list-style: none;
}

.contents-wrapper {
  width: calc(100% - 30px);
  max-width: 890px;
  margin: 0 auto;
}
.contents-wrapper-min {
  width: calc(100% - 30px);
  max-width: 1128px;
  margin: 0 auto;
}
.main-wrap {
  overflow: hidden;
}
.pc-none {
  display: none;
}
/* responsive class */
@media screen and (max-width: 1023px) {
  .sp-block {
    display: block;
  }
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}

/* common-parts */
.section-title {
  display: grid;
  place-items: center;
  color: var(--color-main);
  font-size: clamp(1rem, 0.9235rem + 0.3265vw, 1.25rem);
  letter-spacing: 0.6em;
  font-weight: 700;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
  line-height: 1;
  border-bottom: 1px solid var(--color-main);
  padding-block: 18px;
  margin: 0 auto 40px;
}

.more-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  border-radius: 28px;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: 500;
  padding-block: 8px;
  padding-inline: 1rem;
  margin-inline: auto;
}
.arrow-item {
  display: inline-block;
}
.header-btn {
  justify-content: space-around;
  max-width: 188px;
  color: #fff;
  background-color: var(--color-main);
  line-height: 1.5;
  padding: 8px 30px;
  margin-inline: auto 0;
}
.other-btn {
  justify-content: center;
  max-width: 222px;
  color: #fff;
  background-color: var(--color-main);
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 8px 30px;
  margin-bottom: 60px;
}

.footer-bottom-btn {
  color: var(--color-sub);
  line-height: 1;
  border-radius: 100px;
  font-size: 1rem;
  padding: 10px 16px;
  border: 1px solid var(--color-sub);
  margin-inline: auto;
}
.more-btn:hover .arrow-item svg {
  transform: translateX(3px);
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1023px) {
  .section-title {
    padding-block: 14px;
    margin-bottom: 20px;
  }
  .more-button {
    margin-inline: auto;
  }

  .footer-bottom-btn {
    margin-bottom: 64px;
  }
}
/* header */
.header {
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding-inline: clamp(10px, 10%, 160px);
  padding-block: 24px;
}

@media screen and (max-width: 1023px) {
  .header {
    position: static;
    padding-block: 8px;
  }
}
@media screen and (max-width: 767px) {
  .sp-fixed-btn {
    position: fixed;
    z-index: 999;
    justify-content: center;
    column-gap: 30px;
    max-width: inherit;
    width: 90%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  }
  .sp-fixed-btn.is-hidden {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (max-width: 340px) {
  .header-title {
    font-size: 0.75rem;
  }
}
/* footer */
.footer {
  background-color: #fff;
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-title {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 23px;
}

.footer-logo {
  width: clamp(150px, 15vw, 229px);
  margin-bottom: 16px;
}

.footer address {
  text-align: center;
  font-size: clamp(0.8125rem, 0.7742rem + 0.1633vw, 0.9375rem);
  line-height: 1.866;
  margin-bottom: 16px;
}

.footer-tel {
  display: inline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 28px;
  letter-spacing: -0.03em;
  margin-block: 40px 57px;
}

.footer-sub-logo {
  width: clamp(198px, 20vw, 238px);
}

.footer-bottom-text {
  font-size: clamp(0.6875rem, 0.6492rem + 0.1633vw, 0.8125rem);
  color: var(--color-gray);
}
.footer-bottom-decoration {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.copy-right {
  text-align: center;
  line-height: 1.6;
  color: #fff;
  background-color: var(--color-main);
  padding-block: 8px;
}
.copy-right small {
  font-size: clamp(0.75rem, 0.7309rem + 0.0816vw, 0.8125rem);
}

@media screen and (max-width: 1023px) {
  .footer-title {
    margin-block: 32px 40px;
  }
  .footer-logo {
    width: 177px;
    margin-bottom: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    width: 90vw;
    margin-block: 0 25px;
  }
  .footer-bottom-decoration {
    margin-block: 15px 10px;
  }
  .footer-bottom-decoration img {
    width: 1000px;
  }
}

/* fv */
.fv {
  overflow: hidden;
  padding-bottom: 50px;
}

.fv-inner {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.fv-title {
  text-align: center;
  line-height: 1.28;
  letter-spacing: 0.05em;
  color: var(--color-main);
  margin-bottom: 48px;
}

.fv-text-s {
  display: block;
  font-size: clamp(0.875rem, 0.6454rem + 0.9796vw, 1.625rem);
  letter-spacing: 0.4em;
}
.fv-text-m {
  margin-inline: 0 -0.5em;
  font-size: clamp(1.375rem, 0.9158rem + 1.9592vw, 2.875rem);
}
.fv-text-m._second {
  margin-inline: -0.5em 0;
}
.fv-text-l {
  font-size: clamp(2.375rem, 1.7628rem + 2.6122vw, 4.375rem);
  letter-spacing: -0.01em;
}
.fv-text-image {
  position: absolute;
  top: 130px;
  right: 15%;
  width: clamp(120px, 20%, 270px);
}
.message-link {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  font-size: clamp(0.875rem, 0.7602rem + 0.4898vw, 1.25rem);
  font-weight: 400;
  color: var(--color-main);
}
.nf-logo {
  width: clamp(190px, 55%, 324px);
  background-color: #fff;
  border-radius: 28px;
  margin-inline: auto;
  padding: 10px 20px;
  margin-bottom: 63px;
}
.bt-logo {
  width: 206px;
  width: clamp(138px, 35%, 206px);
}
.message-text {
  font-size: clamp(0.9375rem, 0.8418rem + 0.4082vw, 1.25rem);
  color: var(--color-main);
  font-weight: 500;
  line-height: 2.44;
  letter-spacing: -0.03em;
  margin-top: 26px;
}
.message-text span {
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1023px) {
  .fv-inner {
    margin-bottom: 30px;
  }
  .fv-title {
    margin-bottom: 40px;
  }
  .fv-text-s {
    letter-spacing: 0.2em;
    margin-bottom: 25px;
  }
  .fv-text-m {
    display: block;
  }
  .fv-image {
    width: 95%;
    margin-inline: auto;
  }
  .fv-text-image {
    right: 8%;
  }
  .nf-logo {
    margin-bottom: 25px;
  }
  .message-text {
    line-height: 2.5;
  }
}

/* outine */
.outline-inner {
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-main);
  font-size: clamp(1rem, 0.9235rem + 0.3265vw, 1.25rem);
  padding-bottom: 70px;
  margin-inline: auto;
  margin-bottom: 46px;
}

.outline-table {
  display: flex;
  flex-direction: column;
  max-width: 567px;
  margin-inline: auto;
}
.outline-table._two {
  max-width: 730px;
  line-height: 1.8;
}
.outline-text {
  max-width: 730px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.outline-layout {
  display: flex;
  margin-bottom: 20px;
}
.outline-table-label {
  flex-shrink: 0;
  width: 90px;
  color: var(--color-main);
  font-weight: 400;
  font-size: var(--fontsize-20-15);
}

.outline-table-item ._strong {
  display: block;
  font-weight: 600;
}

.outline-table-item ._list {
  display: block;
  margin-block: 0.5rem;
}
.outline-item {
  position: relative;
  text-indent: -1.375rem;
  padding-left: 1.375rem;
}
.outline-item::before {
  content: "・";
}
.outline-table-item ._slash {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
}
.outline-table-item ._slash::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  top: 35%;
  left: 40%;
  background-color: #434343;
  /* margin: 0px 4px 4px; */
  transform: rotate(-45deg) translate(-50%, -50%);
}
.outline-table-item ._slash._pc-none {
  display: none;
}
.outline-table._two .outline-table-label {
  width: auto;
}
.outline-table._two .outline-table-item {
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .outline-table,
  .outline-text {
    padding-inline: 10px;
  }
  .outline-inner {
    padding-bottom: 20px;
  }
  .outline-table-item {
    line-height: 2.2;
  }
  .outline-table-label {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .outline-table-item ._slash.sp-none {
    display: none;
  }
  .outline-table-item ._slash._pc-none {
    display: inline-block;
  }
}

/* perfomer */
.performer {
  max-width: 1086px;
  margin-inline: auto;
  border-radius: 8px;
  /* padding: 90px clamp(14px, 0.6vw, 100px); */
  padding-block: 90px;
  background-color: var(--color-accent);
  margin-bottom: 60px;
}

.performer-section-title {
  color: var(--color-white);
}

.performar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
}
.performar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--color-base);
  border-radius: 8px;
  padding: 60px 80px;
}
.performar-top {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  column-gap: 44px;
  margin-inline: auto;
  margin-bottom: 50px;
}
.performar-image {
  width: clamp(100px, 20%, 129px);
  height: clamp(100px, 20%, 129px);
}

.performar-title {
  line-height: 1.7;
  /* margin-bottom: 40px; */
}
.performer-name {
  display: block;
  font-size: clamp(1.25rem, 1.0969rem + 0.6531vw, 1.75rem);
  font-weight: 500;
}

.performer-position {
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.0434rem + 0.0816vw, 1.125rem);
}
.performer-position ._slash {
  position: relative;
}
.performer-position ._slash::after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 1px;
  background-color: #434343;
  margin: 0px 4px 4px;
  transform: rotate(-45deg);
}

.performer-detail {
  font-size: clamp(1rem, 0.9235rem + 0.3265vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 50px;
}

.performer-link {
  font-size: clamp(0.9375rem, 0.8801rem + 0.2449vw, 1.125rem);
}

@media screen and (max-width: 1023px) {
  .performer {
    padding-block: 20px;
  }
  .performar-top {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 15px;
    margin-bottom: 0;
  }
  .performar-box {
    row-gap: 30px;
    padding: 40px 10px;
  }
  .performar-title {
    text-align: center;
  }
  .performar-image {
    margin-inline: auto;
  }
  .performer-detail {
    line-height: 2.4;
  }
  .performer-link {
    padding-block: 12px;
  }
}
@media screen and (max-width: 375px) {
  .performer-link {
    font-size: 0.875rem;
  }
}
/* animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transition:
    opacity 2s,
    transform 2s;
  -webkit-transition:
    opacity 2s,
    transform 2s;
  -moz-transition:
    opacity 2s,
    transform 2s;
  -ms-transition:
    opacity 2s,
    transform 2s;
  -o-transition:
    opacity 2s,
    transform 2s;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
