@charset "UTF-8";
html {
  height: -webkit-fill-available;
  font-size: 100%;
  font-weight: 400;
  font-style: normal;
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  padding: 0;
  position: relative;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  line-height: 1.75;
  font-feature-settings: "palt" 1;
}

img {
  max-width: 100%;
}

input,
button,
textarea,
select {
  /*  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
  border: none;
}

a {
  text-decoration: none;
  color: #0090da;
}
a.line {
  color: #06c755;
}

* {
  box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

.c-container {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  position: relative;
}
.c-container--narrow {
  width: min(100% - 2rem, 1024px);
  margin: 0 auto;
  position: relative;
}

.c-typo__sectitle {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 5px solid #0090da;
  margin-bottom: 2rem;
  display: inline-block;
}
.c-typo__sectitle small {
  font-size: 1rem;
}
.c-typo__underline {
  border-bottom: 2px solid black;
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.c-typo__underline > * {
  margin: 0;
  padding: 0;
}
.c-typo__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.c-typo__subtitle:before {
  content: "";
  background-color: #0090da;
  width: 16px;
  height: 4px;
  margin-right: 0.5rem;
  transform: translateY(12px);
}
.c-typo__sgp {
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}
.c-typo__sgp:before {
  content: "";
  background-color: #0090da;
  width: 4px;
  height: 18px;
  margin-right: 0.5rem;
}
.c-typo__statement p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.c-btn__primary, .c-btn__secondary {
  display: block;
  margin: 2rem auto;
  width: min(100%, 600px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}
.c-btn__primary:after, .c-btn__secondary:after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/arrow-btn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 0.5rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.c-btn__primary small, .c-btn__secondary small {
  font-size: 0.75rem;
  margin-right: 1em;
}
.c-btn__primary:hover:after, .c-btn__secondary:hover:after {
  transform: translateX(10px);
}
.c-btn__primary:disabled, .c-btn__secondary:disabled {
  opacity: 0.25;
  pointer-events: none;
}
.c-btn__primary {
  background-color: #0090da;
  color: white;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-btn__primary:hover {
  filter: brightness(120%);
  text-decoration: none;
}
.c-btn__secondary {
  background-color: #ddd;
  color: black;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-btn__secondary:hover {
  filter: brightness(80%);
  text-decoration: none;
}
.c-btn__small {
  background-color: #0090da;
  color: white;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
  border-radius: 5px;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}
.c-btn__small:hover {
  filter: brightness(120%);
  text-decoration: none;
}
.c-btn__pdf {
  display: block;
  margin: 2rem auto;
  width: min(100%, 600px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #0090da;
  color: white;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-btn__pdf:hover {
  filter: brightness(120%);
  text-decoration: none;
}
.c-btn__pdf:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url("../images/pdf_line.svg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 0.5rem;
}

.c-pagetitle {
  background-color: #0090da;
  padding: 6rem 0;
}
@media screen and (max-width:1023px) {
  .c-pagetitle {
    padding: 4rem 0;
  }
}
.c-pagetitle h1 {
  color: white;
  font-weight: 600;
  font-size: 2.5rem;
  margin: 0;
}
@media screen and (max-width:1023px) {
  .c-pagetitle h1 {
    font-size: 2rem;
  }
}
.c-pagetitle__photo {
  background-color: black;
  height: 40vh;
  overflow: hidden;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
}
.c-pagetitle__photo h1 {
  color: white;
  font-weight: 600;
  font-size: 3rem;
  margin: 0;
  line-height: 1.5;
  filter: drop-shadow(0 0 5px #000);
}
@media screen and (max-width:1023px) {
  .c-pagetitle__photo h1 {
    font-size: 2rem;
  }
}
.c-pagetitle__photo h3 {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  border-radius: 4px;
  padding: 0.25rem 1rem;
}
.c-pagetitle__photo h2 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.c-pagetitle__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 100;
}
.c-pagetitle__photo .c-container,
.c-pagetitle__photo .c-container--narrow {
  z-index: 200;
}

.c-breadcrumb {
  background-color: #efefef;
  padding: 0.125rem 0;
  overflow-x: scroll;
}
@media screen and (max-width:1023px) {
  .c-breadcrumb {
    margin-top: 0;
  }
  .c-pagetitle__photo + .c-breadcrumb {
    margin-top: 0;
  }
}
.c-breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.c-breadcrumb li {
  white-space: nowrap;
}
.c-breadcrumb li:not(:last-child) a {
  color: #0090da;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-breadcrumb li:not(:last-child) a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.c-breadcrumb li:not(:last-child):after {
  content: "/";
  margin: 0 0.5rem;
}
.c-breadcrumb li:last-child a {
  color: black;
  cursor: default;
}
.c-breadcrumb li br {
  display: none;
}

@media screen and (max-width:1023px) {
  .c-pagetitle + .c-breadcrumb {
    margin-top: 0;
  }
}

.c-main {
  margin: 4rem 0;
}
@media screen and (min-width:1024px) {
  .c-main__2col {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
  }
}
@media screen and (min-width:1024px) {
  .c-main__2col-main {
    flex: 1;
    width: calc(100% - 300px - 4rem);
  }
}
@media screen and (max-width:1023px) {
  .c-main__2col-main {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width:1024px) {
  .c-main__2col-sidenav {
    position: sticky;
    top: 1.5rem;
    width: 300px;
  }
}
.c-main__2col-sidenav h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  border-bottom: 1px solid #b5b5b6;
  padding: 0.5rem 1rem;
}
@media screen and (max-width:1023px) {
  .c-main__2col-sidenav h4 {
    padding: 0.5rem 0;
  }
}
.c-main__2col-sidenav h4 a {
  color: black;
}
.c-main__2col-sidenav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.c-main__2col-sidenav ul li {
  border-bottom: 1px solid #b5b5b6;
  padding: 0.5rem 1rem;
}
@media screen and (max-width:1023px) {
  .c-main__2col-sidenav ul li {
    padding: 0.5rem 0;
  }
}
.c-main__2col-sidenav ul li:last-child {
  border: none;
}
.c-main__2col-sidenav ul li a {
  color: #0090da;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-main__2col-sidenav ul li a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.c-main__2col-sidenav ul li ul {
  border-top: 1px dotted #b5b5b6;
  margin: 0.5rem -1rem -0.5rem;
  padding: 0;
}
.c-main__2col-sidenav ul li ul li {
  padding-left: 2rem;
  border-bottom: 1px dotted #b5b5b6;
}
.c-main__2col-sidenav-line {
  border: 4px solid #06c755;
  border-radius: 5px;
  padding: 0;
}
.c-main__2col-sidenav-line a {
  height: 100%;
  display: flex;
  padding: 0;
}
.c-main__2col-sidenav-contact {
  border: 4px solid #0090da;
  border-radius: 5px;
  padding: 0;
}
.c-main__2col-sidenav-contact a {
  height: 100%;
  display: flex;
  padding: 0;
}

.c-table__bordered {
  width: 100%;
  margin-bottom: 1rem;
}
.c-table__bordered td {
  border-bottom: 1px solid #b5b5b6;
  padding: 0.75rem;
}
.c-table__bordered th {
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid #b5b5b6;
  padding: 0.75rem;
  padding-left: 0;
  font-weight: 600;
}
.c-table__bordered tr:last-child td, .c-table__bordered tr:last-child th {
  border-bottom: none;
}
@media screen and (max-width:1023px) {
  .c-table__responsive td {
    display: block;
    margin-bottom: 0.75rem;
    padding-left: 0;
    padding-top: 0;
  }
}
@media screen and (max-width:1023px) {
  .c-table__responsive th {
    display: block;
    border-bottom: none;
    padding-bottom: 0;
  }
}
.c-table__fixed {
  table-layout: fixed;
}
.c-table__scroll {
  margin-bottom: 3rem;
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  font-size: 0.875rem;
}
@media screen and (max-width:599px) {
  .c-table__scroll {
    font-size: 0.75rem;
  }
}
.c-table__scroll a {
  color: #0090da;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.c-table__scroll a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.c-table__scroll th, .c-table__scroll td {
  padding: 0.5rem;
}
.c-table__scroll th {
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  position: sticky;
  top: 0;
  left: 0;
  filter: drop-shadow(5px 0px 10px rgba(0, 0, 0, 0.1));
  border-right: 1px solid #b5b5b6;
}
.c-table__scroll td {
  border-right: 1px solid white;
  text-align: center;
}
.c-table__scroll tr:nth-child(even) th, .c-table__scroll tr:nth-child(even) td {
  background-color: #efefef;
}
.c-table__scroll tr:nth-child(odd) th, .c-table__scroll tr:nth-child(odd) td {
  background-color: white;
}
.c-table__scroll tr:first-child td, .c-table__scroll tr:first-child th {
  border-bottom: 1px solid #b5b5b6;
}
.c-table__scroll-wrapper {
  overflow: hidden;
  display: block;
  width: 100%;
}
.c-table__striped {
  width: 100%;
  margin-bottom: 3rem;
  font-size: 0.875rem;
}
@media screen and (min-width:1024px) {
  .c-table__striped {
    table-layout: fixed;
  }
}
.c-table__striped thead th {
  border-bottom: 1px solid #b5b5b6;
  background-color: white !important;
}
.c-table__striped th, .c-table__striped td {
  padding: 0.5rem;
  border-right: 1px solid white;
}
.c-table__striped th {
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
}
.c-table__striped tr:nth-child(odd) th, .c-table__striped tr:nth-child(odd) td {
  background-color: #efefef;
}
.c-table__striped tr:nth-child(even) th, .c-table__striped tr:nth-child(even) td {
  background-color: white;
}

.c-column {
  background-color: #efefef;
  border-radius: 5px;
  padding: 1.5rem;
  font-size: 0.875rem;
}
.c-column > *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width:600px) {
  .c-img__50p {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
  }
}
.c-img__50p > p {
  aspect-ratio: 16/10;
}
@media screen and (min-width:600px) {
  .c-img__50p > p {
    width: calc(50% - 0.5rem);
  }
}
.c-img__50p > p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-img__flex {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.c-img__flex p {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0.75rem;
}

.c-img__logo {
  width: min(90%, 480px);
  margin: 8rem auto;
}

.c-card {
  border: 1px solid #efefef;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background-color: white;
}
.c-card__img {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 0;
  background-color: white;
  border-bottom: 1px solid #efefef;
}
.c-card__img img {
  transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-journal .c-card__img img {
  object-fit: contain;
}
.c-card__logo {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  right: 0.5rem;
  width: calc(100% - 1rem);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 5px;
  padding: 0.5rem;
}
.c-card__logo img {
  width: min(180px, 40%);
  max-height: 30px;
  object-fit: contain;
}
.c-card__desc {
  padding: 1.5rem;
}
@media screen and (max-width:599px) {
  .c-card__desc {
    padding: 1rem;
  }
}
.c-card__flex {
  display: flex;
  align-items: center;
}
.c-card__date {
  font-size: 0.75rem;
  color: black;
}
.c-card__tag {
  font-size: 0.75rem;
  background-color: #0090da;
  color: white;
  display: inline-block;
  padding: 0 0.75rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}
.c-card__title {
  clear: both;
  font-size: 1.125rem;
  font-weight: 500;
  color: black;
}
.c-card__copy {
  font-size: 0.75rem;
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.c-card:hover .c-card__img img {
  opacity: 0.7;
  text-decoration: none;
}
.c-card__item {
  font-size: 0.75rem;
  color: black;
  margin-bottom: 0.25rem;
}
.c-card__item + ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  color: black;
  margin-bottom: -0.5rem;
}
.c-card__item + ul li {
  border: 1px solid black;
  padding: 0.5rem 1rem;
  border-radius: 0.8rem;
  font-size: 0.75rem;
  height: 1.6rem;
  line-height: 0.8;
  margin: 0 0.5rem 0.5rem 0;
}

.c-embed {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
}
.c-embed iframe {
  width: 100%;
  height: 100%;
}

.c-embed__media {
  position: relative;
  width: 100%;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-embed__media iframe {
  max-width: 100% !important;
}

dialog {
  padding: 0;
  border: 0;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.6));
  animation: scaleup forwards 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  background-color: transparent;
  width: min(100%, 960px);
  aspect-ratio: 16/9;
}
dialog iframe {
  width: 100%;
  height: 100%;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes scaleup {
  0% {
    transform: scale(50%);
  }
  100% {
    transform: scale(100%);
  }
}
.c-modal__close {
  color: white;
  width: 100%;
  text-align: right;
  display: block;
  cursor: pointer;
}
.c-modal-phone {
  background-color: white;
  padding: 2rem;
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  max-height: 90dvh;
  margin: 5dvh auto;
  width: 100%;
  overflow: scroll;
}
@media screen and (max-width:1023px) {
  .c-modal-phone {
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.c-modal-phone > div {
  border-bottom: 2px dotted rgba(0, 144, 218, 0.2);
}
.c-modal-phone > div:last-of-type {
  border-bottom: none;
}
.c-modal-phone > div:last-of-type h2 {
  margin-bottom: 0;
}
@media screen and (min-width:1024px) {
  .c-modal-phone > div {
    width: calc(50% - 0.5rem);
  }
}
.c-modal-phone p {
  margin-bottom: 0;
  text-align: center;
}
@media screen and (max-width:1023px) {
  .c-modal-phone p {
    font-size: 0.75rem;
  }
}
.c-modal-phone h2 {
  font-size: 2rem;
  color: #0090da;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.25;
}
.c-modal-phone h2 small {
  display: block;
  font-size: 1.75rem;
}
@media screen and (max-width:1023px) {
  .c-modal-phone h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
  }
  .c-modal-phone h2 small {
    font-size: 1rem;
  }
}
.c-modal-phone + .c-modal__close {
  margin-top: -4.5dvh;
}

.p-header {
  width: 100%;
  padding: 0.75rem 0;
  background-color: white;
}
@media screen and (max-width:1023px) {
  .p-header {
    padding-bottom: 0;
    position: relative;
    height: 100px;
    padding: 0;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #b5b5b6;
    z-index: 800;
    top: 0;
  }
  .p-header.is-opened {
    position: fixed;
  }
}
.p-header a {
  cursor: pointer;
}
@media screen and (max-width:1023px) {
  .p-header--special {
    position: relative;
  }
}
.p-header > .c-container,
.p-header > .c-container--narrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width:1023px) {
  .p-header > .c-container,
  .p-header > .c-container--narrow {
    height: 100px;
  }
}
.p-header__logo {
  width: 200px;
  max-width: 60%;
  margin: 0.75rem 0;
  line-height: 1;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-header__logo:hover {
  opacity: 0.25;
  text-decoration: none;
}
.p-header__jp {
  margin: 0;
}
.p-header__jp a {
  display: flex;
  align-items: center;
  color: #666464;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-header__jp a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.p-header__jp a:before {
  content: "";
  margin-right: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon_english.svg");
}
.p-header__contact {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0 0 0.5rem 0;
  padding: 0;
  font-size: 0.875rem;
  color: #666464;
}
.p-header__contact a {
  color: #666464;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-header__contact a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.p-header__contact li:not(:last-child) {
  margin-right: 1.5rem;
}
@media screen and (max-width:1023px) {
  .p-header__contact {
    display: none;
  }
}
.p-header__nav {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}
.p-header__nav > li {
  position: relative;
}
.p-header__nav > li:not(:last-child) {
  margin-right: 1.25rem;
}
.p-header__nav a {
  color: black;
  font-weight: 600;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-header__nav a:hover {
  opacity: 0.25;
  text-decoration: none;
}
@media screen and (max-width:1023px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.25rem;
  position: absolute;
  border: 1px solid #b5b5b6;
  border-radius: 5px;
  background-color: white;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
  top: 1.5rem;
  left: -1rem;
  z-index: 800;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
  transform: translateY(-1rem);
  pointer-events: none;
}
.p-header__nav ul li {
  display: block;
  white-space: nowrap;
  padding: 0 0.75rem;
  margin: 0;
}
.p-header__nav ul li:not(:last-child) {
  border-bottom: 1px solid #b5b5b6;
}
.p-header__nav ul a {
  font-weight: 400;
  display: block;
  padding: 0.5rem 0;
}
.p-header__nav li:hover ul {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.p-header__sanpai, .p-header__tel, .p-header__chat, .p-header__english {
  display: flex;
  align-items: center;
}
.p-header__sanpai:before, .p-header__tel:before, .p-header__chat:before, .p-header__english:before {
  content: "";
  margin-right: 0.25rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-header__sanpai:before {
  background-image: url("../images/icon_exlink.svg");
}
.p-header__tel:before {
  background-image: url("../images/icon_tel.svg");
}
.p-header__chat:before {
  background-image: url("../images/icon_chat.svg");
}
.p-header__english:before {
  background-image: url("../images/icon_english.svg");
}
.p-header__spnav {
  background-color: white;
  height: calc(100vh - 90px);
  margin-top: 0;
  border-top: 1px solid #b5b5b6;
  padding-bottom: 2rem;
  transition: all 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
  opacity: 0;
  overflow: scroll;
  pointer-events: none;
}
@media screen and (min-width:1024px) {
  .p-header__spnav {
    display: none;
  }
}
.is-opened .p-header__spnav {
  opacity: 1;
  pointer-events: auto;
}
.p-header__spnav a {
  color: black;
}
.p-header__spnav a[href^=tel] {
  margin-top: -0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0090da;
  margin-bottom: 0;
  font-size: 6vw;
}
.p-header__spnav a + h4 {
  margin-top: 0.5rem;
}
.p-header__spnav a span {
  font-size: 4vw;
}
.p-header__spnav > p {
  border-bottom: 1px solid #b5b5b6;
  margin-bottom: 0;
  line-height: 2.75;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 0.875rem;
}
.p-header__spnav > p:last-child {
  border-bottom: none;
}
.p-header__spnav > p a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__spnav details {
  font-size: 0.875rem;
  line-height: 2.75;
}
.p-header__spnav details summary {
  cursor: pointer;
  border-bottom: 1px solid #b5b5b6;
  padding: 0 1rem;
  font-size: 0.875rem;
  line-height: 2.75;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__spnav details summary:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url("../images/arrow01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-header__spnav summary::-webkit-details-marker {
  display: none;
}
.p-header__spnav details[open] summary:after {
  transform: rotate(180deg);
}
.p-header__spnav ul {
  background-color: #efefef;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-header__spnav li {
  border-bottom: 1px solid #b5b5b6;
}
.p-header__spnav li a {
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__spnav h4 {
  font-size: 3.5vw;
  text-align: center;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
}
.p-header__spnav h4.main {
  border-top: 2px dotted lightgray;
  padding-top: 1rem;
  margin: 0 1rem;
}
.p-header__spnav-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #b5b5b6;
  border-top: 1px solid #b5b5b6;
  margin-bottom: 1.25rem !important;
  background-color: white !important;
}
.p-header__spnav-sns li {
  border-bottom: none;
  width: 50%;
}
.p-header__spnav-sns li a {
  line-height: 2.5;
  justify-content: center;
}
.p-header__spnav-sns li:first-child {
  border-right: 1px solid #b5b5b6;
}
.p-header__spnav-twitter {
  color: #1d9bf0 !important;
  font-weight: 600;
  font-size: 0.875rem;
}
.p-header__spnav-twitter:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_x.png");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-header__spnav-line {
  color: #4cc764 !important;
  font-weight: 600;
  font-size: 0.875rem;
}
.p-header__spnav-line:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_line.svg");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-header__spnav-mitsumori {
  background-color: #4cc764;
  margin: 0 1rem;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 0.3rem);
  padding: 0.75rem 0 !important;
}
.p-header__spnav-mitsumori a {
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.p-header__spnav-mitsumori a:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: inline-block;
  background-image: url("../images/icon_line.svg");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-header__spnav-contact {
  width: calc(100% - 2rem);
  margin: 1rem 1rem 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.p-header__spnav-form {
  background-color: #1d9bf0;
  margin: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 0.3rem);
  padding: 0.75rem 0 !important;
}
.p-header__spnav-form a {
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.p-header__spnav-form a:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_pen_white.svg");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-header__spnav-tel {
  background-color: #e8941c;
  margin: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 0.3rem);
  padding: 0.75rem 0 !important;
}
.p-header__spnav-tel a {
  color: white;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.p-header__spnav-tel a:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_tel_white.svg");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-header__spnav-english {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-header__spnav-english a:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
  background-image: url("../images/icon_english.svg");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-header__toggle {
  display: block;
  position: relative;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media screen and (min-width:1024px) {
  .p-header__toggle {
    display: none;
  }
}
.p-header__toggle span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background-color: black;
}
.p-header__toggle span:nth-of-type(1) {
  top: 7px;
  animation: menu-open01 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
.p-header__toggle span:nth-of-type(2) {
  top: 17px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.p-header__toggle span:nth-of-type(3) {
  top: 27px;
  animation: menu-open02 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}

.is-opened .p-header__toggle span:nth-of-type(1) {
  animation: menu-close01 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}
.is-opened .p-header__toggle span:nth-of-type(2) {
  opacity: 0;
}
.is-opened .p-header__toggle span:nth-of-type(3) {
  animation: menu-close02 0.5s forwards cubic-bezier(0.075, 0.82, 0.165, 1);
}

@keyframes menu-open01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-open02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-close01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
@keyframes menu-close02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}
.p-footer__copyright {
  width: 100vw;
  background-color: #efefef;
  padding: 1rem 0 7rem;
}
.p-footer__copyright p {
  text-align: center;
  margin: 0;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:599px) {
  .p-footer__copyright p {
    font-size: 2.5vw;
  }
}
.p-footer__copyright p span {
  font-family: Arial, Helvetica, "sans-serif";
  margin-right: 0.25rem;
}
.p-footer__title {
  border-bottom: 1px solid black;
  margin-bottom: 2rem;
}
.p-footer__title h3 {
  border-bottom: 4px solid black;
  display: inline-block;
  transform: translateY(20px);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0 1rem 0 0.25rem;
}
.p-footer__sitemap, .p-footer__location {
  background-color: #efefef;
  padding-bottom: 2rem;
}
.p-footer__sitemap h4, .p-footer__location h4 {
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid black;
}
.p-footer__sitemap {
  padding-top: 3rem;
}
.p-footer__sitemap ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.p-footer__sitemap a {
  color: black;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-footer__sitemap a:hover {
  opacity: 0.25;
  text-decoration: none;
}
@media screen and (min-width:600px) {
  .p-footer__sitemap-flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.p-footer__sitemap-flex > div {
  width: 25%;
}
@media screen and (max-width:1023px) {
  .p-footer__sitemap-flex > div {
    width: 50%;
  }
}
@media screen and (max-width:599px) {
  .p-footer__sitemap-flex > div {
    width: 100%;
  }
}
.p-footer__location h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.p-footer__location p {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.p-footer__location a {
  color: #0090da;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-footer__location a:hover {
  opacity: 0.25;
  text-decoration: none;
}
@media screen and (min-width:600px) {
  .p-footer__location-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width:600px) and (min-width:600px) {
  .p-footer__location-flex > div {
    width: 50%;
  }
}
@media screen and (min-width:600px) and (min-width:1024px) {
  .p-footer__location-flex > div {
    width: 25%;
  }
}
.p-footer__location--en {
  padding-top: 3rem;
}
@media screen and (min-width:600px) {
  .p-footer__location--en .p-footer__location-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width:600px) and (min-width:1024px) {
  .p-footer__location--en .p-footer__location-flex > div {
    width: 50%;
  }
}
.p-footer__twitter {
  width: 100%;
  background-color: #252525;
  display: block;
  text-align: center;
  color: white;
  padding: 0.5rem;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-footer__twitter:hover {
  filter: brightness(120%);
  text-decoration: none;
}
.p-footer__top {
  position: fixed;
  font-size: 0.75rem;
  padding: 0 0.5rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
  bottom: 3rem;
  right: 1rem;
  background-color: #0090da;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 300;
  filter: drop-shadow(0px 0px 4px rgb(255, 255, 255));
}
@media screen and (max-width:1023px) {
  .p-footer__top {
    bottom: 5rem;
  }
}
.p-footer__top.active {
  opacity: 1;
}
.p-footer__top:before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  background-image: url("../images/up_fill.svg");
  background-size: cover;
}
.p-footer__cta {
  background-color: #0090da;
  width: 100%;
  padding: 0.75rem 0;
  position: fixed;
  left: 0;
  bottom: 0;
  color: white;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(100px);
  z-index: 200;
  filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width:1023px) {
  .p-footer__cta {
    padding: 0.5rem 0;
  }
}
.p-footer__cta.active {
  transform: translateY(0);
}
.p-footer__cta-flex {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width:1023px) {
  .p-footer__cta-flex {
    flex-direction: column;
  }
}
.p-footer__cta h3 {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 1.4rem;
}
@media screen and (max-width:1023px) {
  .p-footer__cta h3 {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width:599px) {
  .p-footer__cta h3 {
    font-size: 4vw;
  }
}
.p-footer__cta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
@media screen and (max-width:1023px) {
  .p-footer__cta ul {
    gap: 0.5rem;
  }
}
@media screen and (max-width:599px) {
  .p-footer__cta ul {
    width: 100%;
  }
}
.p-footer__cta ul li {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width:599px) {
  .p-footer__cta ul li:has(.p-footer__cta-tel) {
    flex: 1;
  }
}
.p-footer__cta a {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  border: 1px solid white;
  font-size: 1.25rem;
  font-weight: 700;
  width: 100%;
  transition: background-color 0.5s ease;
  filter: drop-shadow(0px 0px 4px rgba(255, 255, 255, 0.2));
}
@media screen and (max-width:1023px) {
  .p-footer__cta a {
    padding: 0.5rem;
  }
}
@media screen and (max-width:599px) {
  .p-footer__cta a {
    font-size: 3.5vw;
  }
}
.p-footer__cta a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
@media screen and (max-width:1023px) {
  .p-footer__cta a:before {
    width: 18px;
    height: 18px;
  }
}
.p-footer__cta-tel {
  background-color: #f5a200;
  line-height: 1.25;
  cursor: pointer;
}
.p-footer__cta-tel p {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width:599px) {
  .p-footer__cta-tel span {
    display: none;
  }
}
.p-footer__cta-tel small {
  display: block;
  font-size: 0.75rem;
}
@media screen and (max-width:599px) {
  .p-footer__cta-tel small {
    display: none;
  }
}
@media (hover: hover) {
  .p-footer__cta-tel:hover {
    background-color: #ffb729;
  }
}
.p-footer__cta-tel:before {
  background-image: url(../images/cta_tel.png);
}
.p-footer__cta-form {
  background-color: #ef8200;
}
@media screen and (max-width:1279px) {
  .p-footer__cta-form span {
    display: none;
  }
}
@media (hover: hover) {
  .p-footer__cta-form:hover {
    background-color: #ff9b23;
  }
}
.p-footer__cta-form:before {
  background-image: url(../images/cta_mail.png);
}
.p-footer__cta-line {
  background-color: #06c755;
}
@media (hover: hover) {
  .p-footer__cta-line:hover {
    background-color: #08f86a;
  }
}
.p-footer__cta-line:before {
  background-image: url(../images/cta_line.png);
}

.p-cover {
  width: 100%;
  background-color: #0090da;
  margin-bottom: 2rem;
}
@media screen and (max-width:1023px) {
  .p-cover__slide-pc {
    display: none;
  }
}
@media screen and (min-width:1024px) {
  .p-cover__slide-sp {
    display: none;
  }
}

.hooper {
  height: auto !important;
}
.hooper-track {
  display: flex;
}

.hooper-slide > a {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
  width: 100%;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hooper-slide > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  overflow: hidden;
}

.hooper-pagination {
  bottom: -2rem !important;
}

.hooper-indicators button {
  height: 12px;
  border-radius: 6px;
  margin: 0 4px;
}

.hooper-indicator {
  background-color: #b5b5b6 !important;
}

.hooper-indicator.is-active,
.hooper-indicator:hover {
  background-color: #0090da !important;
}

.p-sdgs {
  padding: 3rem 0;
}
.p-sdgs__flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.p-sdgs__card {
  flex: 2 1 400px;
  display: flex;
  justify-content: center;
  background-color: white;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.p-sdgs__card > div {
  flex: 1;
  padding: 2rem;
}
@media screen and (min-width:1024px) {
  .p-sdgs__card > div img {
    max-width: 200px;
  }
}
.p-sdgs__yamaichi {
  background-color: #0090da;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-sdgs__sdgs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-sdgs__copy {
  flex: 1 1 400px;
}

.p-iso {
  padding: 3rem 0;
  background-image: linear-gradient(to bottom, #0090da, #0090da 200px, rgba(255, 255, 255, 0) 200px), url("../images/bg_iso.jpg");
  background-repeat: no-repeat;
  background-position: top left, top 200px right;
}
.p-iso__flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.p-iso__flex > div {
  background-color: white;
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
.p-iso__flex > div *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width:1023px) {
  .p-iso__flex > div {
    padding: 3rem 1.5rem;
  }
}

.p-logo {
  padding: 6rem 0;
}
@media screen and (max-width:599px) {
  .p-logo {
    padding: 3rem 0;
  }
}
.p-logo p {
  width: min(400px, 80%);
  margin: 0 auto;
}

.p-operation {
  padding: 3rem 0;
  border-bottom: 1px solid #b5b5b6;
}
.p-operation__flex {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.p-operation__flex > div {
  width: calc((100% - 6rem) / 4);
}
@media screen and (max-width:1023px) {
  .p-operation__flex > div {
    width: calc((100% - 2rem) / 2);
  }
}
.p-operation h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.p-operation__picto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
  aspect-ratio: 16/10;
  border: 1px solid #b5b5b6;
  margin-bottom: 1rem;
}
@media screen and (max-width:1023px) {
  .p-operation__picto {
    margin-bottom: 0;
  }
}
@media screen and (min-width:1024px) {
  .p-operation__picto h4 {
    display: none;
  }
}
.p-operation__picto img {
  width: 40%;
}
.p-operation__picto:hover {
  border: 1px solid #0090da;
}
@media screen and (max-width:1023px) {
  .p-operation__copy {
    display: none;
  }
}

.p-top-news, .p-top-journal, .p-top-topathlete, .p-top-voice, .p-top-media {
  padding: 3rem 0;
}
.p-top-journal, .p-top-voice {
  background-color: #efefef;
}
.p-top__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top__list {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
}
.p-top__list > .c-card {
  width: calc((100% - 4rem) / 3);
}
@media screen and (max-width:1023px) {
  .p-top__list > .c-card {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width:599px) {
  .p-top__list > .c-card {
    width: 100%;
  }
}
.p-top-media {
  border-bottom: 1px solid #b5b5b6;
}
.p-top-media ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
@media screen and (max-width:1023px) {
  .p-top-media ul {
    gap: 1rem 2rem;
  }
}
.p-top-media ul li {
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width:1023px) {
  .p-top-media ul li {
    max-width: 25%;
  }
}
.p-top-media ul li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top-media ul li.br {
  width: 100%;
}
@media screen and (max-width:1023px) {
  .p-top-media ul li.br {
    display: none;
  }
}

.p-faq__flex {
  display: flex;
  align-content: stretch;
}
.p-faq__q {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
}
.p-faq__q:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "Q";
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background-color: #0090da;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 15px;
}
.p-faq__a {
  margin-bottom: 3rem;
  position: relative;
  padding-left: 40px;
}
.p-faq__a:before {
  position: absolute;
  top: 2px;
  left: 0;
  content: "A";
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  background-color: #b5b5b6;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 15px;
}

.p-business__picto {
  width: 160px;
  margin: 0 auto;
  margin-bottom: 0;
}
.p-business__title {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 600;
  margin-top: -1rem;
  margin-bottom: 6rem;
}
@media screen and (min-width:1024px) {
  .p-business__flex {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
  }
}
.p-business__card {
  border: 1px solid #efefef;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(181, 181, 182, 0.5);
  width: 100%;
  overflow: hidden;
  background-color: white;
  margin-bottom: 2rem;
}
.p-business__card-body {
  padding: 1rem 2rem;
  position: relative;
}
.p-business__card table {
  width: 100%;
}
.p-business__card table th,
.p-business__card table td {
  border-bottom: 1px solid black;
  padding: 0 0.5rem;
}
.p-business__card table th {
  border-right: 1px solid black;
  font-weight: 400;
  text-align: left;
  font-size: 0.875rem;
}
.p-business__card table tr:last-child th,
.p-business__card table tr:last-child td {
  border-bottom: none;
}
@media screen and (min-width:1024px) {
  .p-business__card-flex {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  .p-business__card-flex > div {
    width: calc(50% - 16px);
  }
}
.p-business__card-footer {
  width: 100%;
}
.p-business__card-footer > nav {
  width: 100%;
  border-top: 1px solid rgba(181, 181, 182, 0.5);
  border-bottom: 1px solid rgba(181, 181, 182, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efefef;
}
.p-business__card-footer button {
  flex: 1;
  margin: 0;
  padding: 1rem;
  background-color: #efefef;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.p-business__card-footer button:hover {
  background-color: rgba(181, 181, 182, 0.125);
}
.p-business__card-footer button:nth-child(2) {
  border-left: 1px solid rgba(181, 181, 182, 0.5);
}
.p-business__card-footer.photoNum1 button:first-child {
  background-color: #0090da;
  color: white;
}
.p-business__card-footer.photoNum2 button:last-child {
  background-color: #0090da;
  color: white;
}
.p-business__card-additional {
  width: 100%;
  padding: 1rem;
}
.p-business__card-additional h4 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.p-business__card-additional h4 small {
  color: #666464;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 0.5rem;
}
.p-business__card h3 {
  font-weight: 500;
  font-size: 1rem;
  background-color: #0090da;
  color: white;
  border-radius: 4px;
  text-align: center;
  display: block;
  padding: 0.125rem 1rem;
}
.p-business__card dl {
  margin: 0 0 0.5rem;
}
.p-business__card dt,
.p-business__card dd {
  display: block;
  padding: 0;
  margin: 0;
}
.p-business__card dt {
  font-size: 0.875rem;
  color: #666464;
}
.p-business__card dd {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}
.p-business__card-photo {
  aspect-ratio: 16/9;
  width: 75%;
  margin: 0 auto 2rem;
  position: relative;
}
@media screen and (max-width:1023px) {
  .p-business__card-photo {
    width: 100%;
  }
}
.p-business__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-business__card-photo p {
  margin-bottom: 0;
  text-align: center;
  line-height: 1;
}
.p-business__card-photo p + p {
  margin-bottom: 50px;
}
.p-business__card-photo .tns-nav {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
}
.p-business__card-photo button {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  margin: 0 3px;
  background-color: rgba(0, 144, 218, 0.25);
}
.p-business__card-photo button:hover {
  background-color: #0090da;
}
.p-business__card-photo button.tns-nav-active {
  background-color: #0090da !important;
}
.p-business__card-s {
  border: 1px solid #efefef;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
  background-color: white;
  padding: 1rem;
  margin-bottom: 2rem;
}
.p-business__card-s table {
  width: 100%;
}
.p-business__card-s table th,
.p-business__card-s table td {
  border-bottom: 1px solid black;
  padding: 0 0.5rem;
}
.p-business__card-s table th {
  border-right: 1px solid black;
  font-weight: 400;
  text-align: left;
  font-size: 0.875rem;
}
.p-business__card-s table tr:last-child th,
.p-business__card-s table tr:last-child td {
  border-bottom: none;
}
.p-business__card-s h3 {
  font-weight: 500;
  font-size: 1rem;
  background-color: #0090da;
  color: white;
  border-radius: 5px;
  text-align: center;
}
.p-business__card-s dl {
  margin: 0 0 0.5rem;
}
.p-business__card-s dt,
.p-business__card-s dd {
  display: block;
  padding: 0;
  margin: 0;
}
.p-business__card-s dt {
  font-size: 0.75rem;
  color: #666464;
}
.p-business__card-s dd {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
.p-business__card-s-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 1rem;
}
.p-business__card-s-photo p {
  width: 100%;
  height: 100%;
  margin: 0;
}
.p-business__card-s-photo p > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-news__card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1rem;
}
@media screen and (max-width:599px) {
  .p-news__card {
    gap: 0.75rem;
  }
}
.p-news__card-img {
  flex-shrink: 0;
  width: 20%;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid #efefef;
  aspect-ratio: 16/9;
}
@media screen and (max-width:599px) {
  .p-news__card-img {
    width: 35%;
    background-color: #b5b5b6;
  }
}
.p-news__card-img > img {
  transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news__card-title {
  clear: both;
  font-size: 1.125rem;
  font-weight: 500;
  color: black;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media screen and (max-width:599px) {
  .p-news__card-title {
    font-size: 3vw;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.p-news__card-copy {
  font-size: 0.875rem;
  color: black;
  line-height: 1.4;
  color: #666464;
  display: -webkit-box;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width:599px) {
  .p-news__card-copy {
    display: none;
  }
}
.p-news__card-date {
  font-size: 0.75rem;
  color: black;
  margin-bottom: 0.5rem;
}
@media screen and (max-width:599px) {
  .p-news__card-date {
    margin-bottom: 0.25rem;
  }
}
.p-news__card-tag {
  font-size: 0.75rem;
  background-color: #0090da;
  color: white;
  display: inline-block;
  line-height: 2;
  padding: 0 0.75rem;
  border-radius: 5px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
@media screen and (max-width:599px) {
  .p-news__card-tag {
    margin-bottom: 0.25rem;
    font-size: 0.6rem;
  }
}
.p-news__card-flex {
  display: flex;
  align-items: center;
}
.p-news__card:hover .p-news__card-img img {
  opacity: 0.7;
  text-decoration: none;
}
.p-news__article p::not([class]),
.p-news__article ul::not([class]),
.p-news__article ol::not([class]),
.p-news__article dl::not([class]) {
  margin-bottom: 2rem;
  line-height: 2;
}
.p-news__article ul,
.p-news__article ol {
  margin-top: 0;
}
.p-news__article h1 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width:599px) {
  .p-news__article h1 {
    font-size: 1.75rem;
  }
}
.p-news__article h2 {
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 5px solid #0090da;
  margin-bottom: 2rem;
  display: inline-block;
}
.p-news__article h2.p-news__subtitle {
  border-bottom: none;
  font-size: 1.25rem;
  transform: translateY(-1rem);
}
.p-news__article h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.p-news__article h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.p-news__article figure {
  width: 100%;
  margin: 0 auto 2rem auto;
}
.p-news__article figure.figure-75p {
  width: 75%;
}
.p-news__article figure.figure-50p {
  width: 50%;
}
@media screen and (max-width:599px) {
  .p-news__article figure.figure-50p {
    width: 100%;
    margin: 0 auto 1rem auto;
  }
}
.p-news__article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news__article figure figcaption {
  font-size: 0.875rem;
  text-align: center;
}
.p-news__article hr {
  border: none;
  border-bottom: 1px solid #b5b5b6;
  margin: 3rem 0;
}
.p-news__article strong {
  font-weight: 700;
  margin-left: 0.25rem;
  background: linear-gradient(transparent 60%, #fff352 60%);
}
.p-news__article dt {
  font-weight: 600;
}
.p-news__article dd {
  margin-left: 0;
}
@media screen and (min-width:600px) {
  .p-news__article .flex {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .p-news__article .flex img {
    width: 25%;
    margin-inline: auto;
  }
}
.p-news__article iframe.wp-embedded-content {
  max-width: 100%;
}
.p-news__header {
  margin-bottom: 1rem;
}
@media screen and (min-width:1024px) {
  .p-news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-news__author {
  margin: 3rem 0;
  background-color: #efefef;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.p-news__author-sns {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.p-news__author-twitter {
  display: flex;
  align-items: center;
}
.p-news__author-twitter a {
  color: #252525;
}
.p-news__author-twitter:before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("../images/icon_x.png");
  background-size: cover;
  margin-right: 0.25rem;
}
.p-news__author-line {
  display: flex;
  align-items: center;
}
.p-news__author-line a {
  color: #06c755;
}
.p-news__author-line:before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url("../images/icon_line.svg");
  margin-right: 0.25rem;
}
@media screen and (max-width:599px) {
  .p-news__author {
    flex-direction: column;
  }
}
.p-news__author-photo {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background-color: white;
  margin-bottom: 0 !important;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-news__author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news__author-text h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (max-width:599px) {
  .p-news__author-text h5 {
    text-align: center;
  }
}
.p-news__author-text p {
  font-size: 0.875rem;
  margin-bottom: 0;
  line-height: 1.75;
}
.p-news__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.lwptoc_i {
  background-color: #efefef !important;
  padding: 2rem !important;
  border-radius: 5px;
  margin-bottom: 3rem;
}
.lwptoc_i > ol {
  margin-bottom: 0;
}
.lwptoc_i > ol > li {
  margin-bottom: 1rem;
}
.lwptoc_i > ol > li ul,
.lwptoc_i > ol > li ol {
  margin-bottom: 0;
  padding-left: 1rem;
}
.lwptoc_i > ol > li ul {
  list-style: disc;
  font-size: 0.875rem;
}
.lwptoc_i a {
  color: black;
}
.lwptoc_i a:hover {
  text-decoration: underline;
}
.lwptoc_i a:visited {
  color: black !important;
}

.lwptoc_header {
  text-align: center;
}

.lwptoc_title {
  font-size: 1.25rem;
  font-weight: 600;
}

.lwptoc_item {
  margin-bottom: 1rem;
}
.lwptoc_item .lwptoc_item {
  margin-bottom: 0;
}

.p-sgp__flex {
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 2rem;
}
.p-sgp__flex > .c-card,
.p-sgp__flex > div {
  width: calc((100% - 2rem) / 2);
}
@media screen and (max-width:599px) {
  .p-sgp__flex > .c-card,
  .p-sgp__flex > div {
    width: 100%;
  }
}
@media screen and (min-width:600px) {
  .p-sgp__profile {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  .p-sgp__profile > p:first-child {
    display: block;
    width: max(25%, 200px);
    flex-shrink: 0;
  }
}
@media screen and (max-width:599px) {
  .p-sgp__profile > p:first-child {
    width: 100%;
  }
  .p-sgp__profile > p:first-child img {
    width: 100%;
  }
}
.p-sgp-materiality-title {
  background-color: #0090da;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
.p-sgp-materiality-title__esg {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  color: #0090da;
}
.p-sgp-materiality-title__esg h3 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0;
}
.p-sgp-materiality-title__esg h3 + p {
  font-size: 0.5rem;
  margin-bottom: 0.25rem;
}
.p-sgp-materiality-title__esg p {
  line-height: 1;
  margin-bottom: 0;
}
.p-sgp-materiality-title__desc {
  color: white;
}
.p-sgp-materiality-title__desc p {
  font-size: 0.75rem;
  margin-bottom: 0;
}
.p-sgp-materiality-title__desc h2 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1.5rem;
}
@media screen and (min-width:1024px) {
  .p-sgp__lead {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-sgp__lead h3 {
  font-size: 1.3125rem;
  font-weight: 600;
  color: #0090da;
  margin-bottom: 0;
}
@media screen and (max-width:1023px) {
  .p-sgp__lead h3 {
    margin-bottom: 1rem;
  }
}
.p-sgp__lead ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
.p-sgp__lead ul img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  vertical-align: middle;
}
.p-sgp__goals {
  font-size: 1.125rem;
  font-weight: 600;
}
.p-sgp__divider {
  margin: 4rem 0;
}
.p-sgp__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  margin-bottom: 8px;
}
.p-sgp__table th {
  padding: 0.5rem 1rem;
  background-color: #0090da;
  color: white;
  vertical-align: middle;
  width: 80px;
}
.p-sgp__table th h3 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0;
}
.p-sgp__table th h3 + p {
  font-size: 0.5rem;
  margin-bottom: 0.25rem;
}
.p-sgp__table th p {
  line-height: 1;
  margin-bottom: 0;
  font-weight: 400;
}
.p-sgp__table td {
  padding: 1rem;
  background-color: rgba(0, 144, 218, 0.1);
  color: #0090da;
  font-size: 1.25rem;
  font-weight: 600;
  height: auto;
  cursor: pointer;
}
.p-sgp__table td:hover {
  background-color: rgba(0, 144, 218, 0.2);
}
@media screen and (min-width:1024px) {
  .p-sgp__table td {
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.p-sgp__table td ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width:1023px) {
  .p-sgp__table td ul {
    margin-top: 0.5rem;
  }
}
.p-sgp__table td ul img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  vertical-align: middle;
}
.p-sgp-case {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}
@media screen and (max-width:599px) {
  .p-sgp-case {
    gap: 0.75rem;
  }
}
.p-sgp-case__image {
  flex-shrink: 0;
  width: 20%;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid #efefef;
  aspect-ratio: 16/10;
}
@media screen and (max-width:599px) {
  .p-sgp-case__image {
    width: 35%;
    background-color: #b5b5b6;
  }
}
.p-sgp-case__image > img {
  transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-sgp-case__desc {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-around;
}
.p-sgp-case__desc > div:nth-child(2) {
  text-align: right;
}
.p-sgp-case h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5em;
}
@media screen and (max-width:599px) {
  .p-sgp-case h4 {
    font-size: 3vw;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.p-sgp-case p:not([class]) {
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width:599px) {
  .p-sgp-case p:not([class]) {
    display: none;
  }
}
.p-sgp-case a {
  background-color: #0090da;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-sgp-case a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.p-sgp-case a:after {
  content: ">";
  margin-left: 0.25rem;
}
@media screen and (min-width:1024px) {
  .p-sgp-message {
    display: flex;
    gap: 1.5rem;
  }
}
.p-sgp-message__slogan {
  width: 100%;
  max-width: 600px;
  margin: 3rem 0;
}
@media screen and (min-width:1024px) {
  .p-sgp-message__art {
    width: 40%;
    flex-shrink: 0;
  }
}
.p-sgp-message__art p {
  text-align: center;
  margin-bottom: 0;
  line-height: 1.2;
}
.p-sgp-contact__title {
  font-weight: 600;
  font-size: 1.25rem;
}
.p-sgp-contact__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.p-sgp-contact__nav li {
  line-height: 1;
}
.p-sgp-contact__nav li:first-child {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid black;
}
.p-sgp-contact__nav a {
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-sgp-contact__nav a:hover {
  opacity: 0.25;
  text-decoration: none;
}
.p-sgp-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3rem;
}
.p-sgp-grid__item {
  padding: 0;
  margin: 0;
}
.p-sgp-grid__item a {
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.p-sgp-grid__item a:hover {
  filter: brightness(120%);
  text-decoration: none;
}
.p-sgp-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.p-sgp-grid .item01 {
  grid-column: 1/3;
  grid-row: 1/3;
}
.p-sgp-grid .item02 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.p-sgp-grid .item03 {
  grid-column: 3/4;
  grid-row: 2/3;
}
.p-sgp-grid .item04 {
  grid-column: 1/2;
  grid-row: 3/4;
}
.p-sgp-grid .item05 {
  grid-column: 1/2;
  grid-row: 4/5;
}
.p-sgp-grid .item06 {
  grid-column: 2/4;
  grid-row: 3/5;
}
.p-sgp-grid .item07 {
  grid-column: 3/4;
  grid-row: 5/6;
}
.p-sgp-grid .item08 {
  grid-column: 1/3;
  grid-row: 7/8;
}
.p-sgp-grid .item09 {
  grid-column: 3/4;
  grid-row: 6/7;
}
.p-sgp-grid .item10 {
  grid-column: 1/2;
  grid-row: 6/7;
}
.p-sgp-grid .item12 {
  grid-column: 2/3;
  grid-row: 5/7;
}
.p-sgp-grid .item13 {
  grid-column: 1/2;
  grid-row: 5/6;
}
.p-sgp-grid .item14 {
  grid-column: 3/4;
  grid-row: 7/8;
}
.p-sgp-grid .mov {
  position: relative;
}
.p-sgp-grid .mov::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 100;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateY(-50%) translateX(-50%);
  background-image: url(../images/btn_play.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

dialog[open] img {
  width: 100%;
}

@media screen and (min-width:1024px) {
  .p-interview {
    width: 80%;
    margin-inline: auto;
  }
}
.p-interview__logo {
  width: min(250px, 75%);
}
.p-interview h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75em;
  font-weight: 600;
}
.p-interview h4 small {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width:599px) {
  .p-interview h4 small {
    display: block;
  }
}
.p-interview h1 {
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.p-interview h1 small {
  font-size: 1.25rem;
  margin-inline: 0.5rem;
}
@media screen and (max-width:599px) {
  .p-interview h1 small {
    display: block;
    margin-left: -0.25em;
  }
}
.p-interview__sports {
  font-size: 1.25rem;
}
@media screen and (min-width:1024px) {
  .p-interview__sports {
    margin-bottom: 0;
  }
}
.p-interview__num {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0;
}
.p-interview hr {
  border: none;
  border-bottom: 1px solid #b5b5b6;
  margin: 3rem 0;
}
.p-interview__kv {
  width: 100%;
  margin-bottom: 3rem;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.p-interview__kv:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 200;
}
.p-interview__kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview__kv h1 {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  color: white;
  font-size: 4rem;
  line-height: 1.35;
  z-index: 300;
}
@media screen and (max-width:1279px) {
  .p-interview__kv h1 {
    font-size: 5vw;
  }
}
.p-interview h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.p-interview__q {
  margin-top: 3rem;
  font-size: 1.125rem;
  font-weight: 600;
}
.p-interview__q:before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: black;
  display: inline-block;
  margin-right: 0.5rem;
  transform: translateY(-0.4em);
}
.p-interview__profile {
  margin: 3rem 0;
  padding: 2rem;
  background-color: rgba(239, 239, 239, 0.75);
  border: 1px solid #efefef;
  border-radius: 5px;
}
@media screen and (min-width:1024px) {
  .p-interview__profile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
.p-interview__profile-photo {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 0;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
}
.p-interview__profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:1023px) {
  .p-interview__profile-photo {
    margin-bottom: 1rem !important;
  }
}
.p-interview__profile h4 {
  font-size: 1.25rem;
  font-weight: 500;
}
.p-interview__profile p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.p-interview__header {
  margin-bottom: 1rem;
}
@media screen and (min-width:1024px) {
  .p-interview__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (min-width:1024px) {
  .p-interview__flex, .p-interview__flex-rev {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    margin-top: 3rem;
  }
  .p-interview__flex > div > *:first-child, .p-interview__flex-rev > div > *:first-child {
    margin-top: 0;
  }
}
.p-interview__flex .p-interview__photo, .p-interview__flex-rev .p-interview__photo {
  overflow: hidden;
}
@media screen and (min-width:1024px) {
  .p-interview__flex .p-interview__photo, .p-interview__flex-rev .p-interview__photo {
    width: calc(50% - 1rem);
    flex-shrink: 0;
  }
}
@media screen and (max-width:1023px) {
  .p-interview__flex .p-interview__photo, .p-interview__flex-rev .p-interview__photo {
    width: 100%;
    aspect-ratio: 16/10;
  }
}
.p-interview__flex .p-interview__photo img, .p-interview__flex-rev .p-interview__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width:1023px) {
  .p-interview__flex .p-interview__photo img, .p-interview__flex-rev .p-interview__photo img {
    margin-top: 2rem;
  }
}
.p-interview__flex-rev {
  flex-direction: row-reverse;
}

.p-contact-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.p-contact > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width:1023px) {
  .p-contact > ul {
    flex-direction: column;
  }
}
.p-contact > ul li {
  border: 1px solid #0090da;
  overflow: hidden;
}
@media screen and (min-width:1024px) {
  .p-contact > ul li {
    width: calc(50% - 0.5rem);
  }
}
.p-contact > ul li a {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width:1023px) {
  .p-contact > ul li a {
    padding: 0.5rem;
  }
}
.p-contact > ul li a:hover {
  background-color: rgba(0, 144, 218, 0.2);
}

.p-pagination {
  margin-top: 45px;
  display: flex;
  gap: 4px;
  justify-content: center;
}
.p-pagination span, .p-pagination .page-numbers {
  border-radius: 3px;
  padding: 8px;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.p-pagination .next, .p-pagination .prev {
  height: 35px;
  width: auto;
}
.p-pagination a {
  border: 1px solid #0090da !important;
  transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.p-pagination a:hover {
  background-color: #0090da;
  color: white;
}

@media screen and (min-width:1024px) {
  .p-privacy {
    width: 80%;
    margin-inline: auto;
  }
}
.p-privacy p + h3 {
  margin-top: 3rem;
}
.p-privacy h4 {
  font-size: 1.125rem;
  font-weight: 500;
}

.p-phylosophy__copy {
  font-size: 1.125rem;
  line-height: 2.5;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
}
@media screen and (max-width:599px) {
  .p-phylosophy__copy {
    text-align: left;
  }
  .p-phylosophy__copy br {
    display: none;
  }
}
.p-phylosophy__logo {
  width: 360px;
  margin: 5rem auto;
}
@media screen and (max-width:599px) {
  .p-phylosophy__logo {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-phylosophy__column {
  width: 100%;
  border: 1px solid #b5b5b6;
  padding: 3rem 1.5rem;
  text-align: center;
}
@media screen and (max-width:599px) {
  .p-phylosophy__column {
    text-align: left;
  }
}
.p-phylosophy__column p:last-of-type {
  margin-bottom: 0;
}
.p-phylosophy__triwings {
  width: 400px;
  max-width: 90%;
  margin: 3rem auto;
}

.p-voice__slide {
  width: 100%;
  background-color: #efefef;
  margin-bottom: 2rem;
}
.p-voice__slide .hooper-pagination {
  bottom: 0.5rem !important;
}
.p-voice__slide a {
  padding: 0 0.5rem;
  aspect-ratio: 16/8;
  position: relative;
  margin-bottom: 3rem;
}
.p-voice__slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice__slide-logo {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  z-index: 100;
  padding: 0.5rem 1.5rem;
  background-color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:1023px) {
  .p-voice__slide-logo {
    top: auto;
    bottom: -1.75rem;
    right: 50%;
    transform: translateX(50%);
  }
}
.p-voice__slide-logo img {
  height: 20px !important;
  width: auto !important;
}
@media screen and (min-width:1024px) {
  .p-voice__slide-logo img {
    height: 40px !important;
  }
}
.p-voice__slide-text {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: calc(100% - 2rem);
  left: 1rem;
  bottom: 0.5rem;
  right: 1rem;
  padding: 0.75rem;
  border-radius: 5px;
  color: white;
}
.p-voice__slide-text h3 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
@media screen and (max-width:1023px) {
  .p-voice__slide-text h3 {
    font-size: 3.5vw;
  }
}
.p-voice__slide-text p {
  margin-bottom: 0;
}
@media screen and (max-width:1023px) {
  .p-voice__slide-text p {
    display: none;
  }
}
.p-voice__list {
  padding: 3rem 0;
}
.p-voice__list .c-card__title {
  color: #0090da;
  margin-bottom: 0.5rem;
}
.p-voice__article p,
.p-voice__article ul,
.p-voice__article ol,
.p-voice__article dl {
  margin-bottom: 1.75rem;
  line-height: 1.75;
}
.p-voice__article h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #0090da;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width:1023px) {
  .p-voice__article h2 {
    font-size: 6vw;
  }
}
.p-voice__article h2 small {
  background-color: black;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  padding: 0.125rem 1rem;
  border-radius: 5px;
}
@media screen and (max-width:1023px) {
  .p-voice__article h2 small {
    font-size: 3vw;
    margin-bottom: 0.5rem;
  }
}
.p-voice__article figure {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 4rem 0;
  border-radius: 5px;
  overflow: hidden;
}
.p-voice__article figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice__q {
  font-size: 1.25rem;
  font-weight: 600;
}
.p-voice__q:before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: black;
  display: inline-block;
  margin-right: 0.5rem;
  transform: translateY(-0.4em);
}
.p-voice__date {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.p-voice__cover {
  margin-bottom: 2rem;
}
@media screen and (min-width:1024px) {
  .p-voice__cover {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width:1024px) {
  .p-voice__cover > div {
    width: 40%;
  }
}
.p-voice__cover h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width:1023px) {
  .p-voice__cover h1 {
    font-size: 7vw;
  }
}
.p-voice__cover figure {
  width: calc(60% - 2rem);
  margin: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width:1023px) {
  .p-voice__cover figure {
    width: 100%;
    margin-top: 2rem;
    border-radius: 5px;
  }
}
.p-voice__cover figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice__cover-logo {
  width: min(200px, 80%);
  margin: 2rem 0;
}
.p-voice__lead {
  margin-bottom: 3rem;
}
.p-voice__interviewee {
  margin: 3rem 0;
}
@media screen and (min-width:1024px) {
  .p-voice__interviewee {
    display: flex;
    gap: 2rem;
  }
}
.p-voice__interviewee > div {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
@media screen and (min-width:1024px) {
  .p-voice__interviewee > div {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width:1023px) {
  .p-voice__interviewee > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.p-voice__interviewee h4 {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
}
.p-voice__interviewee p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.p-voice__interviewee small {
  font-size: 0.75rem;
  display: block;
}
.p-voice__interviewee-photo {
  width: 90px !important;
  height: 90px !important;
  border-radius: 60px;
  margin: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.p-voice__interviewee-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-voice__company {
  border: 2px solid #0090da;
  padding: 2rem;
  border-radius: 5px;
  margin: 3rem 0;
  word-wrap: break-word;
}
.p-voice__company h3 {
  width: min(300px, 50%);
  margin: 0 auto 1rem;
  text-align: center;
}
.p-voice__company h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.p-voice__company p {
  margin-bottom: 0.5rem;
}
.p-voice__overview {
  background-color: #efefef;
  padding: 1.5rem 1rem 1rem;
  border-radius: 5px;
  margin: 3rem 0;
}
@media screen and (min-width:1280px) {
  .p-voice__overview {
    display: flex;
    gap: 1rem;
  }
  .p-voice__overview > div {
    padding: 0 1.5rem;
    width: calc(50% - 0.5rem);
  }
  .p-voice__overview > div:first-child {
    border-right: 1px dotted black;
  }
}
.p-voice__overview h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.p-voice__overview ul {
  margin: 0 0 0.5rem;
  padding-left: 1.5em;
}

.p-horigome__cover {
  width: 100%;
  padding: 0;
  border-top: 1px solid #efefef;
}
.p-horigome__cover-images {
  position: relative;
}
.p-horigome__cover-images p {
  margin: 0;
  padding: 0;
}
.p-horigome__cover-mask, .p-horigome__cover-image02, .p-horigome__cover-image03, .p-horigome__cover-image04 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-horigome__cover-mask {
  z-index: 10;
  background-color: white;
  display: block;
  animation: cover-mask 1s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.p-horigome__cover-image02 {
  z-index: 20;
  opacity: 0;
  animation: cover-image02 1s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.p-horigome__cover-image03 {
  z-index: 30;
  opacity: 0;
  animation: cover-image03 0.25s 1s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.p-horigome__cover-image04 {
  z-index: 30;
  opacity: 0;
  animation: cover-image03 0.25s 1.25s cubic-bezier(0.47, 0, 0.745, 0.715) forwards;
}
.p-horigome__lead {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width:1024px) {
  .p-horigome__lead {
    text-align: center;
  }
}
@media screen and (max-width:1023px) {
  .p-horigome__lead br {
    display: none;
  }
}
.p-horigome__comment {
  background-image: url("../images/bg_profile.jpg");
  background-repeat: repeat-x;
  background-position: bottom;
  padding: 4rem 0 0 0;
  overflow: hidden;
}
@media screen and (min-width:1024px) {
  .p-horigome__comment-flex {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width:1024px) {
  .p-horigome__comment-text {
    width: 60%;
    padding-right: 2rem;
  }
}
.p-horigome__comment-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
.p-horigome__comment-text p {
  font-size: 0.875rem;
}
.p-horigome__comment-photo {
  width: 40%;
  margin: 0;
  padding: 0;
  transform: translateY(20px);
  position: relative;
}
.p-horigome__comment-photo:after {
  content: "© yuichi sugita";
  color: white;
  position: absolute;
  bottom: 30px;
  right: 220px;
  font-family: Arial, Helvetica, "sans-serif";
  z-index: 100;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.6));
}
@media screen and (max-width:1023px) {
  .p-horigome__comment-photo:after {
    right: 160px;
  }
}
@media screen and (max-width:599px) {
  .p-horigome__comment-photo:after {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width:1023px) {
  .p-horigome__comment-photo {
    margin-left: auto;
    width: 60%;
  }
}
.p-horigome__profile {
  background-image: url("../images/photo_profile.jpg");
  background-repeat: no-repeat;
  background-position: top left -100px;
  background-size: contain;
  padding: 12rem 0;
  position: relative;
}
@media screen and (min-width:1280px) {
  .p-horigome__profile {
    background-position: top left;
  }
}
@media screen and (max-width:1023px) {
  .p-horigome__profile {
    background-position: top left -350px;
    background-size: cover;
    padding: 6rem 0;
  }
}
@media screen and (max-width:599px) {
  .p-horigome__profile {
    background-position: top center;
  }
}
@media screen and (max-width:1023px) {
  .p-horigome__profile:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.3);
    display: block;
  }
}
@media screen and (max-width:599px) {
  .p-horigome__profile:before {
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.p-horigome__profile:after {
  content: "© yuichi sugita";
  color: black;
  position: absolute;
  bottom: 20px;
  left: 80px;
  font-family: Arial, Helvetica, "sans-serif";
  z-index: 100;
}
@media screen and (max-width:1023px) {
  .p-horigome__profile:after {
    color: white;
    left: 20px;
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.6));
  }
}
@media screen and (max-width:599px) {
  .p-horigome__profile:after {
    color: black;
  }
}
.p-horigome__profile-text {
  padding-left: 35%;
  position: relative;
  z-index: 100;
}
@media screen and (max-width:1023px) {
  .p-horigome__profile-text {
    padding-left: 30%;
  }
}
@media screen and (max-width:599px) {
  .p-horigome__profile-text {
    padding-left: 0;
  }
}
.p-horigome__profile-text h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
.p-horigome__profile-text p {
  font-size: 0.875rem;
}
.p-horigome__profile-photo {
  margin-bottom: -20px;
}
.p-horigome__gallery {
  background-color: #0090da;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.p-horigome__gallery-box {
  background-color: white;
  color: black;
  padding: 4rem;
  border-radius: 0.5rem;
  position: relative;
  z-index: 100;
}
@media screen and (max-width:1023px) {
  .p-horigome__gallery-box {
    padding: 4rem 1rem;
  }
}
.p-horigome__gallery h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.p-horigome__gallery h3:after {
  content: "";
  width: 75px;
  height: 5px;
  background-color: #0090da;
  display: block;
  margin: 0.5rem auto 1.5rem;
}
.p-horigome__gallery h4 {
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.p-horigome__gallery h4:before {
  content: "";
  width: 4px;
  height: 20px;
  background-color: #0090da;
  display: inline-block;
  margin-right: 0.5rem;
}
.p-horigome__ribon01 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.p-horigome__ribon02 {
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 0;
  margin: 0;
}
.p-horigome__comingsoon {
  width: 100%;
  aspect-ratio: 2/1;
  background-image: url("../images/bg_comingsoon.jpg");
  background-size: cover;
  border-radius: 0.5rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-horigome__comingsoon h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0;
}
.p-horigome__youtube {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
.p-horigome__youtube > div {
  position: relative;
  width: 100%;
}
.p-horigome__youtube > div iframe {
  width: 100%;
  aspect-ratio: 560/315;
}
@media screen and (min-width:1024px) {
  .p-horigome__youtube {
    display: flex;
    gap: 2rem;
  }
}
.p-horigome__yamaichi {
  padding: 3rem 0 6rem 0;
}
.p-horigome__yamaichi-logo {
  width: min(80%, 420px);
  margin: 4rem auto;
}
.p-horigome__yamaichi-logo + p {
  margin-bottom: 3rem;
}

@keyframes cover-mask {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
@keyframes cover-image02 {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes cover-image03 {
  0% {
    transform: translateX(-50px) translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
}
@keyframes cover-image06 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-special {
  padding: 3rem 0;
}
.p-special__box {
  background-color: #1c1c1c;
  padding: 1rem;
  color: white;
  border-radius: 5px;
}
@media screen and (min-width:1024px) {
  .p-special__text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
.p-special__text p {
  margin-bottom: 0;
}
@media screen and (min-width:600px) {
  .p-special__flex {
    display: flex;
    gap: 1rem;
  }
}
.p-special__thumb a {
  cursor: pointer;
}
@media screen and (max-width:599px) {
  .p-special__thumb {
    width: 100%;
  }
}
.p-special__title {
  padding: 1rem;
}
@media screen and (max-width:599px) {
  .p-special__title {
    width: 75%;
    margin: 0 auto;
  }
}

@media screen and (max-width:1279px) {
  .u-hide__down-lg {
    display: none;
  }
}

@media screen and (max-width:1023px) {
  .u-hide__down-md {
    display: none;
  }
}

@media screen and (max-width:599px) {
  .u-hide__down-sm {
    display: none;
  }
}

@media screen and (min-width:1280px) {
  .u-hide__up-lg {
    display: none;
  }
}

@media screen and (min-width:1024px) {
  .u-hide__up-md {
    display: none;
  }
}

@media screen and (min-width:600px) {
  .u-hide__up-sm {
    display: none;
  }
}

.u-display__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.u-display__flex-50p {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}
.u-display__flex-50p > * {
  width: calc(50% - 0.5rem);
  margin: 0;
  padding: 0;
}

.u-mb__0 {
  margin-bottom: 0 !important;
}

.u-mb__2rem {
  margin-bottom: 2rem !important;
}

.u-mb__3rem {
  margin-bottom: 3rem !important;
}

.u-mt__0 {
  margin-top: 0 !important;
}

.u-my__2rem {
  margin-bottom: 2rem !important;
  margin-top: 2rem !important;
}

.u-align__center {
  text-align: center;
}

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