@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	設定
------------------------------ */
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	設定
------------------------------ */
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
.wf-loading body {
  visibility: hidden;
}

.wf-active body {
  visibility: visible;
}

html {
  height: 100%;
}
html body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
html body main {
  flex: 1;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

main {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure {
  margin: 0;
  padding: 0;
  border: none;
  list-style-type: none;
  color: #1A1311;
}

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, input, textarea, select, button, div {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: "palt" 1;
  text-align: left;
  word-break: break-word;
  line-break: strict;
  line-height: 1;
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 751px) {
  h1, h2, h3, h4, h5, h6, p, address,
  ul, ol, li, dl, dt, dd,
  table, th, td, img, figure, input, textarea, select, button, div {
    font-size: 16px;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-spacing: 0;
}

picture {
  display: block;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

p {
  color: #1A1311;
  font-size: 16px;
  line-height: 1.5;
}

.en {
  font-family: "rift", sans-serif;
}

a,
button,
input[type=submit],
input[type=button] {
  text-decoration: none;
  color: #1A1311;
  transition: opacity 0.3s 0.4s, transform 0.3s 350ms, color 0.3s;
}
a:focus, a:focus-visible,
button:focus,
button:focus-visible,
input[type=submit]:focus,
input[type=submit]:focus-visible,
input[type=button]:focus,
input[type=button]:focus-visible {
  outline: 0;
}
a:active,
button:active,
input[type=submit]:active,
input[type=button]:active {
  color: inherit;
}
a:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
  color: #e27a00;
}

.wrap {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  .wrap {
    max-width: 1200px;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------
*  共通
* --------------------------------------------------------------------------------------------------*/
ul {
  list-style: none;
}

.txt {
  line-height: 1.8;
}

.bold {
  font-weight: bold;
}

.txt_up {
  text-transform: uppercase;
}

.txt_noup {
  text-transform: none;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
}

.txt_left {
  text-align: left;
}

.ib {
  display: inline-block;
}

.hide-sp {
  display: block;
}
@media screen and (min-width: 751px) {
  .hide-sp {
    display: none;
  }
}

.show-pc {
  display: none;
}
@media screen and (min-width: 751px) {
  .show-pc {
    display: block;
  }
}

button {
  cursor: pointer;
}

a.button {
  color: #fff;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: none;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
a.button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #006ab8 0, #1c96d0 100%);
}
a.button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #e28b00 0, #fdb831 100%);
  transform: translateX(-105%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
a.button:hover {
  transition: border-color 0.3s, background-color 0.3s, color 0.3s, opacity 0.3s;
  cursor: pointer;
}
a.button:hover:after {
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
a.button p {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.06em;
  z-index: 1;
}

/* ------------------------------
	grid
------------------------------ */
.grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 24px;
}

/* ------------------------------
	.box
------------------------------ */
.flex {
  display: flex;
  justify-content: space-between;
}

/* ------------------------------
	parts
------------------------------ */
.sec-ttl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 751px) {
  .sec-ttl {
    gap: 29px;
  }
}
.sec-ttl:before {
  content: "";
  background: url(../img/cross.svg) no-repeat center center;
  background-size: contain;
  display: block;
  width: 25px;
  height: 25px;
}
@media screen and (min-width: 751px) {
  .sec-ttl:before {
    width: 39px;
    height: 39px;
  }
}
.sec-ttl .title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (min-width: 751px) {
  .sec-ttl .title-box {
    gap: 24px;
  }
}
.sec-ttl .title-box .title {
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  .sec-ttl .title-box .title {
    font-size: 36px;
  }
}
.sec-ttl .title-box .en {
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  color: #006ABD;
}

.hide-md {
  display: flex !important;
}
@media screen and (min-width: 751px) {
  .hide-md {
    display: none !important;
  }
}

.paging {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto 0;
  max-width: 300px;
  gap: 5px;
}
@media screen and (min-width: 751px) {
  .paging {
    gap: 10px;
    margin: 20px auto 0;
    max-width: 220px;
  }
}
.paging .text--page-num {
  font-size: 18px;
  font-weight: 600;
  font-family: "rift", sans-serif;
  font-size: 20px;
}
@media screen and (min-width: 751px) {
  .paging .text--page-num {
    font-size: 24px;
  }
}
.paging ul.page-num {
  display: flex;
  gap: 5px;
}
@media screen and (min-width: 751px) {
  .paging ul.page-num {
    gap: 10px;
  }
}
.paging ul.page-num li {
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: unset;
  color: #1A1311;
  font-weight: 600;
  font-size: 20px;
}
.paging ul.page-num li:has(.current) {
  background-color: #1A1311;
  color: #fff;
}
.paging .paging-pre {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging .paging-pre:after {
  content: "";
  background: url(../img/paging-pre.svg) no-repeat;
  background-size: contain;
  width: 11.5px;
  height: 10px;
  display: block;
}
.paging .paging-pre.disabled {
  opacity: 0.3;
}
.paging .paging-next {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging .paging-next:after {
  content: "";
  background: url(../img/paging-next.svg) no-repeat;
  background-size: contain;
  width: 11.5px;
  height: 10px;
  display: block;
}
.paging .paging-next.disabled {
  opacity: 0.3;
  pointer-events: none;
}

header {
  display: flex;
  align-items: center;
  flex-direction: row;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  position: relative;
  justify-content: space-between;
  overflow-x: clip;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 751px) {
  header {
    overflow: auto;
    height: 100px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
header h1.logo {
  width: min(209 * 2 / 750 * 100vw, 418px);
}
@media screen and (min-width: 751px) {
  header h1.logo {
    width: min(calc(500 / 1920 * 100vw), 500px);
  }
}
header nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  transform: translateX(100%);
  width: 100%;
  height: 100vh;
  top: 55px;
  left: 0;
  background-color: #fff;
  transition: transform 0.3s;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  header nav {
    flex-direction: row;
    height: unset;
    transform: unset;
    top: unset;
    left: unset;
    position: relative;
    background-color: unset;
    width: unset;
    justify-content: unset;
    transition: unset;
  }
}
header nav ul.nav__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
header nav ul.nav__list a {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 751px) {
  header nav ul.nav__list {
    flex-direction: row;
    align-items: unset;
  }
}
header .hamburger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
header .hamburger-menu span {
  width: 20px;
  height: 2px;
  background-color: #1A1311;
  border-radius: 2px;
  transition: transform 0.3s;
}
header.active nav {
  transform: translateX(0);
  transition: transform 0.3s;
}
header.active .hamburger-menu span:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header.active .hamburger-menu span:nth-of-type(2) {
  opacity: 0;
}
header.active .hamburger-menu span:nth-of-type(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

section.sec--fv {
  background: url(../img/fv_bgimg.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 751px) {
  section.sec--fv {
    align-items: center;
  }
}
section.sec--fv .image-box picture {
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  section.sec--fv .image-box picture {
    aspect-ratio: unset;
  }
}
section.sec--fv .image-box picture img {
  object-fit: cover;
  height: 100%;
}
section.sec--fv .message-box {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(90deg, #00A7EB 0%, #006ABD 100%);
  margin: 80px auto;
  width: calc(100% - 40px);
}
@media screen and (min-width: 751px) {
  section.sec--fv .message-box {
    max-width: 1200px;
    margin: 100px auto;
  }
}
section.sec--fv .message-box p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 751px) {
  section.sec--fv .message-box p {
    font-size: 24px;
  }
}

.top.sec--interview .wrap, .top.sec--profile .wrap {
  gap: 50px;
}
@media screen and (min-width: 751px) {
  .top.sec--interview .wrap, .top.sec--profile .wrap {
    gap: 80px;
  }
}

section.sec--interview, section.sec--profile {
  margin-top: 100px;
}
section.sec--interview .wrap, section.sec--profile .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.sec--interview .wrap .flex-box, section.sec--profile .wrap .flex-box {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 751px) {
  section.sec--interview .wrap .flex-box, section.sec--profile .wrap .flex-box {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}
section.sec--interview .wrap .flex-box .image-box, section.sec--profile .wrap .flex-box .image-box {
  width: 100%;
}
@media screen and (min-width: 751px) {
  section.sec--interview .wrap .flex-box .image-box, section.sec--profile .wrap .flex-box .image-box {
    width: 46.7%;
  }
}
section.sec--interview .wrap .flex-box .text-box, section.sec--profile .wrap .flex-box .text-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 751px) {
  section.sec--interview .wrap .flex-box .text-box, section.sec--profile .wrap .flex-box .text-box {
    gap: 25px;
    width: 50%;
  }
}
@media screen and (min-width: 751px) {
  section.sec--interview .wrap .flex-box .text-box picture, section.sec--profile .wrap .flex-box .text-box picture {
    width: 82%;
  }
}
section.sec--interview .wrap p, section.sec--interview .wrap small, section.sec--profile .wrap p, section.sec--profile .wrap small {
  line-height: 1.7;
}

section.sec--interview {
  margin-bottom: 100px;
}

@media screen and (min-width: 751px) {
  section.sec--profile .wrap .flex-box {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 751px) {
  section.sec--profile .wrap .flex-box .text-box {
    padding-left: max(50% - 450px, 0px);
  }
}
section.sec--profile .wrap .flex-box .text-box picture {
  max-width: 260px;
}
@media screen and (min-width: 751px) {
  section.sec--profile .wrap .flex-box .text-box picture {
    width: 58%;
  }
}
section.sec--profile .wrap .profile-box {
  max-width: 900px;
}
section.sec--profile .wrap ul li {
  line-height: 1.5;
  list-style: disc;
  list-style-position: inside;
}

section.sec--news {
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin: 100px auto;
  padding-left: 20px;
  padding-right: 20px;
}
section.sec--news .wrap {
  width: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 0;
  padding-bottom: 15px;
}
@media screen and (min-width: 751px) {
  section.sec--news .wrap {
    padding: 0 100px 60px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.sec--news .wrap ul.news--list {
  margin-top: 0;
}
section.sec--news .wrap a.button {
  margin-top: 15px;
}
@media screen and (min-width: 751px) {
  section.sec--news .wrap a.button {
    margin-top: 50px;
  }
}

section.sec--btnbox {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 100px;
}
@media screen and (min-width: 751px) {
  section.sec--btnbox {
    gap: 80px;
    margin-bottom: 100px;
  }
}
section.sec--btnbox a {
  width: 80px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 751px) {
  section.sec--btnbox a {
    width: 100px;
  }
}

section.sec--newstop {
  margin-top: 63px;
}
section.sec--newstop .image-box {
  margin-top: 100px;
  height: 152px;
  overflow: hidden;
}

section.sec--newslist {
  margin-top: 40px;
  margin-bottom: 100px;
}
@media screen and (min-width: 751px) {
  section.sec--newslist {
    margin-top: 60px;
  }
}
section.sec--newslist .wrap {
  width: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

ul.news--list {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
ul.news--list li {
  display: flex;
  flex-direction: column;
  width: 100%;
}
ul.news--list li:after {
  content: "";
  border: 1px solid #DDDDDD;
}
ul.news--list li:nth-of-type(1):before {
  content: "";
  border: 1px solid #DDDDDD;
}
ul.news--list li .inner-box {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}
ul.news--list li .inner-box p {
  color: #1A1311;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
}
ul.news--list li .inner-box .date {
  letter-spacing: 0.13em;
  color: #727272;
}
ul.news--list li .inner-box .info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul.news--list li .inner-box .info .title, ul.news--list li .inner-box .info .content {
  letter-spacing: 0.13em;
}
ul.news--list li .inner-box .image-box picture {
  max-width: 600px;
}
ul.news--list li .inner-box .wp-block-image {
  max-width: 600px;
}

footer {
  background: #F5F5F5;
}
footer .wrap {
  padding-top: 33px;
  padding-bottom: 33px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 751px) {
  footer .wrap {
    flex-direction: row;
    justify-content: space-between;
    height: 229px;
  }
}
footer .wrap .logo {
  width: min(363 * 2 / 750 * 100vw, 726px);
  max-width: 100%;
}
@media screen and (min-width: 751px) {
  footer .wrap .logo {
    width: min(calc(431 / 1920 * 100vw), 431px);
  }
}
footer .wrap nav {
  margin-top: min(40 * 2 / 750 * 100vw, 80px);
}
@media screen and (min-width: 751px) {
  footer .wrap nav {
    margin-top: unset;
  }
}
footer .wrap nav ul.nav__list {
  display: flex;
  gap: min(15 * 2 / 750 * 100vw, 30px);
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  line-height: 1.5;
}
@media screen and (min-width: 751px) {
  footer .wrap nav ul.nav__list {
    flex-direction: row;
    gap: min(calc(40 / 1440 * 100vw), 40px);
  }
}
footer .wrap nav ul.nav__list li a {
  font-size: 16px;
  font-weight: 500;
}

.grecaptcha-badge {
  z-index: 2;
}

.sec--interview, .sec--profile {
  margin-top: 70px;
  margin-bottom: 100px;
}
@media screen and (min-width: 751px) {
  .sec--interview, .sec--profile {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.swiper .swiper-wrapper {
  display: flex;
}
@media screen and (min-width: 751px) {
  .swiper .swiper-wrapper {
    width: unset;
  }
}
.swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
@media screen and (min-width: 751px) {
  .swiper .swiper-wrapper .swiper-slide {
    height: calc(100vh - 100px);
  }
}
.swiper .swiper-wrapper .swiper-slide .anchor {
  text-decoration: none;
}
@media screen and (min-width: 751px) {
  .swiper .swiper-wrapper .swiper-slide .image-box, .swiper .swiper-wrapper .swiper-slide picture {
    height: 100%;
  }
}
@media screen and (min-width: 1100px) {
  .swiper .swiper-wrapper .swiper-slide picture img {
    object-fit: contain;
  }
}
.swiper .block--swiper-pagination {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.swiper .block--swiper-pagination .inner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  height: 50px;
}
.swiper .block--swiper-pagination .inner-box .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.swiper .block--swiper-pagination .inner-box .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #F5F5F5;
  opacity: 1;
  filter: none;
}
.swiper .block--swiper-pagination .inner-box .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #006ABD;
}

/*# sourceMappingURL=index.css.map */
