@charset "UTF-8";

:root {
  --content-width: 1200px;
  --main-color01: #016dd0;
  --main-color02: #4dd9ff;
  --sub-color: ;
  --accent-color: #f2efeb;
}

/* コンテンツレイアウト */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  border-spacing: 0;
  border-collapse: collapse;
  text-indent: initial;
  text-decoration: none;
  line-height: 2em;
  margin: 0;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
}

body.home {
  background: url(/wp-content/uploads/bg.png) no-repeat;
  background-size: cover;
}

main {
  padding-top: 45px;
}

.home main {
  padding-top: 0;
}

@media (max-width: 767px) {
  main {
    padding-top: 35px;
  }
}

ul {
  padding-left: 20px;
}

li::marker {
  color: var(--main-color02);
}

a:hover {
  opacity: 0.7;
}

section {
  padding: 60px 0;
}

section:first-of-type {
  padding-top: 0px;
}

@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}

.home section:first-of-type {
  padding-top: 60px;
}

@media (max-width: 767px) {
  .home section:first-of-type {
    padding-top: 30px;
  }
}

.container {
  margin: 0 auto;
  max-width: var(--content-width);
}

@media (max-width: 1200px) {
  .container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }

  .container:first-child {
    margin-top: 0;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .row {
    display: block;
    margin-top: 0;
  }

  .row.sp-2row {
    display: flex;
  }
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.row .span_1 {
  width: calc(100% / 12 * 1);
}

.row .span_2 {
  width: calc(100% / 12 * 2);
}

.row .span_3 {
  width: calc(100% / 12 * 3);
}

.row .span_4 {
  width: calc(100% / 12 * 4);
}

.row .span_5 {
  width: calc(100% / 12 * 5);
}

.row .span_6 {
  width: calc(100% / 12 * 6);
}

.row .span_7 {
  width: calc(100% / 12 * 7);
}

.row .span_8 {
  width: calc(100% / 12 * 8);
}

.row .span_9 {
  width: calc(100% / 12 * 9);
}

.row .span_10 {
  width: calc(100% / 12 * 10);
}

.row .span_11 {
  width: calc(100% / 12 * 11);
}

.row .span_12 {
  width: 100%;
}

.row > .col {
  margin-top: 30px;
  margin-left: 0;
  padding-right: calc(30px / 2);
  padding-left: calc(30px / 2);
}

@media (max-width: 767px) {
  .row > .col {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    width: 100%;
  }

  .row.sp-2row > .col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .row .span_1 {
    width: auto;
  }

  .row > .col:not(:first-child) {
    margin-top: 20px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999999999;
}

.header__logo img {
  width: 250px;
}

.header__nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.header__nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.header-btn {
  position: relative;
  cursor: pointer;
  /* width: 60px;
    height: 80px; */
  width: 64px;
  height: 64px;
  z-index: 999999999;
}

.header-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 17px;
  height: 3px;
  border-radius: 2px;
  background: #006bcf;
  width: 45%;
}

.header-btn span:nth-of-type(1) {
  top: 22px;
}

.header-btn span:nth-of-type(2) {
  top: 30px;
}

.header-btn span:nth-of-type(3) {
  top: 38px;
}

.header-btn span:nth-of-type(4) {
  top: 48px;
  background: none;
  font-size: 8px;
  color: #006bcf;
}

.header-btn.is-active span:nth-of-type(1) {
  top: 24px;
  left: 18px;
  /* transform: translateY(6px) rotate(-45deg);
    width: 40%; */
  transform: translateY(6px) rotate(-34deg);
  width: 45%;
}

.header-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}

.header-btn.is-active span:nth-of-type(3) {
  top: 36px;
  left: 18px;
  /* transform: translateY(-6px) rotate(45deg);
    width: 40%; */
  transform: translateY(-6px) rotate(34deg);
  width: 45%;
}

.header_nav {
  margin-right: 0px;
}

@media (min-width: 1023px) {
  .header-btn {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header {
    max-width: 1024px;
  }
}

@media (max-width: 1023px) {
  .header__nav ul {
    display: none;
  }
}

@media (max-width: 767px) {
  .header {
    max-width: 100%;
    padding: 8px 20px;
  }
  .header__logo img {
    width: 180px;
  }
  .header__logo {
    display: flex;
  }
}

/* スライドナビゲーション */

.slide {
  background: linear-gradient(to right, #006bcf, #00cafe);
  width: 100%;
  min-height: 100vh;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 999999;
  overflow: scroll;
  padding-top: 100px;
}

.slide-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background: transparent;
  cursor: pointer;
  z-index: -1;
}

@media (max-width: 767px) {
  .slide {
    padding-top: 80px;
  }
}

.slide-menu {
  list-style: none;
  border-top: 2px solid #fff;
  padding: 0;
}

.slide-menu > ul {
  padding: 0;
}

/* .slide-menu>ul>li {
    border-bottom: 2px solid #fff;
} */

.slide-menu > ul > li > a {
  text-decoration: none;
  color: #fff;
  padding: 20px;
  display: block;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

/* .slide-menu > ul > li > a:hover {
  background-color: var(--main-color02);
  box-shadow: inset 0px 5px 10px -5px rgba(0, 0, 0, 0.5);
  transition: 0.3s ease 0s;
  opacity: 1;
} */

.mv {
  background: url(/wp-content/uploads/mv_bg03.png);
  background-size: cover;
  background-position: center;
  height: 913px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  padding-top: 64px;
}

.mv__catch {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 70px;
  padding: 80px 40px;
}

.mv__text {
  width: 638px;
}

.mv__catch::before {
  width: 100%;
  background: url(/wp-content/uploads/catch_bg.png) no-repeat;
  top: 45%;
  left: 20%;
  z-index: -1;
  content: "";
  position: absolute;
  height: 100%;
}

/* .mv__catch::before,
.mv__catch::after {
  content: "";
  position: absolute;
  height: 50px;
  transform: rotate(140deg);
  clip-path: polygon(0 0, calc(100% - 20px) 0%, 100% 100%, 20px 100%);
}

.mv__catch::before {
  width: 100%;
  background: rgba(250, 251, 251, 0.8);
  top: 80%;
  left: 65%;
  transform: translate(-50%, -50%) rotate(142deg);
  z-index: -1;
}

.mv__catch::after {
  width: 100%;
  background: rgba(98, 138, 194, 0.8);
  top: 70%;
  left: 85%;
  transform: translate(-50%, -50%) rotate(142deg);
  z-index: -1;
} */

.mv__catch img {
  width: 100%;
  max-width: 1140px;
  /* Adjust as needed based on the design */
}

@media (max-width: 1620px) {
  .mv__catch {
    top: 60%;
    width: 45%;
  }
  .mv__catch::before {
    top: 42%;
    left: 25%;
    background-size: contain;
  }
  .mv__text {
    width: auto;
  }
  .mv {
    height: 110vh;
  }
}

/* @media (max-width: 1420px) {
  .mv__catch{
    top: 50%;
  }
} */

@media (max-width: 1420px) {
  .mv__catch {
    left: 30px;
  }
}

@media (max-width: 1024px) {
  .mv {
    background-image: url(/wp-content/uploads/mv_bg03.png);
    height: 720px;
  }
  .mv__catch {
    /* top: 30%; */
    /* top: 36%; */
    top: 455px;
    left: 40px;
    width: auto;
  }
  .mv__catch::before {
    /* top: 52%;
    left: 25%; */
    top: 237px;
    left: 196px;
    height: 45%;
    background-size: contain;
    background-size: contain;
  }
  .mv__text {
    width: 456px;
  }
}

@media (max-width: 900px) {
  .mv__catch {
    /* top: 37%;
   left: 40px; */
    /* top: 40%; */
    top: 460px;
    left: 10px;
  }
}

@media (max-width: 767px) {
  .mv {
    background-image: url(/wp-content/uploads/mv_spbg02.png);
    height: 100vh;
  }
  .mv__catch {
    top: 57%;
    left: 0;
  }
  .mv__text {
    width: auto;
  }
  .mv__catch img {
    width: 150%;
  }
}

@media (max-width: 580px) {
  .mv__catch img {
    width: 140%;
  }
}

@media (max-width: 480px) {
  .mv {
    background-image: url(/wp-content/uploads/mv_spbg02.png);
    height: 530px;
  }
  .mv__catch {
    /* top: 48%; */
    /* top: 365px; */
    top: 398px;
    left: 0;
    padding: 80px 0;
    width: 100%;
  }
  .mv__text {
    /* width: auto; */
    width: 318px;
  }
  /* .mv__catch::before {
    display: none;
  } */
  .mv__catch::before {
    top: 236px;
    left: 116px;
    height: 45%;
    width: 188px;
    background-size: contain;
  }
  .mv__catch img {
    width: 100%;
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: -40px;
  /* margin-bottom: 40px; */
  background-color: #fff;
  width: fit-content;
  margin-top: 0px;
  position: relative;
  padding: 0 20px 0 0;
  height: 121px;
  z-index: 2;
}

.section-title__en {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 86px;
  color: #fff;
  background: linear-gradient(to right, #006bcf, #00cafe);
  padding: 0 80px 0 240px;
  /* padding: 0 80px 0 150px; */
  /* height: 121px; */
  display: flex;
  align-items: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
}

.section-title__ja {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #006fd1;
  position: relative;
  left: -40px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  right: -45px;
  background: linear-gradient(to right, #006bcf, #00cafe);
  position: absolute;
}

@media (max-width: 1024px) {
  .section-title {
    padding: 0 20px 0 240px;
  }
  .section-title__en {
    font-size: 60px;
    /* padding: 0 80px 0 80px; */
    padding: 0 80px 0 0px;
  }
  .section-title__ja {
    font-size: 20px;
  }
}

@media (max-width: 820px) {
  .section-title {
    /* padding: 0 20px 0 40px; */
    padding: 0 20px 0 60px;
  }
}

@media (max-width: 767px) {
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px 0 0;
  }
  .section-title__en {
    font-size: 28px;
    padding: 0 80px 0 16px;
  }
  .section-title__ja {
    font-size: 16px;
    padding: 0 0 0 16px;
    left: 0;
  }
}

.about {
  /* padding: 230px 0 0; */
  /* padding: 0 0 230px 0; */
  /* padding: 0 0 70px 0; */
  padding: 0;
  /* background: #ADDBFF; */
  position: relative;
}

/* .about__container {
  padding: 40px;
} */

.about__text {
  text-align: right;
  /* padding-right: 100px; */
  position: relative;
  z-index: 1;
  margin-left: auto;
  /* max-width: 60%; */
  /* padding: 40px 100px 40px 0; */
  padding: 40px 192px 40px 192px;
}

.about__textbox {
  position: relative;
}

.about__textbox:before {
  position: absolute;
  content: "";
  /* top: -30px; */
  top: -40px;
  right: 0;
  width: 1586px;
  /* width: 80%; */
  height: 379px;
  /* height: 100%; */
  background: linear-gradient(to right, #006bcf, #00cafe);
  z-index: 1;
  clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

.about__text h3 {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  margin-block-end: 0;
  margin-block-start: 0;
  line-height: 40px;
}

.about__subtext {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.about__text p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.77;
  letter-spacing: 0.02em;
  margin-block-end: 0;
  margin-block-start: 0;
}

.about_text_area {
  position: relative;
  z-index: 1;
  /* padding-right: 100px; */
  /* display: flex;
    justify-content: center; */
  /* width: calc(100% / 12 * 8); */
  /* width: calc(100% / 12 * 10); */
}

.about_text_area p {
  font-weight: 700;
  line-height: 2.77;
  letter-spacing: 0.02em;
  margin-block-end: 0;
  margin-block-start: 0;
  font-size: 18px;
}

.about__containerbox {
  display: flex;
  justify-content: center;
  /* padding: 58px 192px 76px 192px; */
  padding: 58px 192px 76px 282px;
  margin: 0 auto;
}

.about__container::after {
  position: absolute;
  content: "";
  /* height: 100%; */
  width: 100%;
  aspect-ratio: 1920 / 1551;
  top: 20%;
  right: 0;
  z-index: -1;
  background: url(/wp-content/uploads/aboutus-bg.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% auto;
}

.about_text_box {
  padding-top: 28px;
  padding-bottom: 28px;
  padding-left: 10px;
  padding-right: 10px;
}

.about_text_box p {
  font-weight: 700;
  line-height: 2.77;
  letter-spacing: 0.02em;
  margin-block-end: 0;
  margin-block-start: 0;
  font-size: 18px;
}

.about_container {
  margin: 0 auto;
  /* max-width: var(--content-width); */
  padding: 0 192px 0 192px;
}

.photo {
  padding: 10px 10px 10px 10px;
}

@media (max-width: 768px) {
  .photo {
    padding: 10px 5px 10px 5px;
  }
}

@media (max-width: 1820px) {
  .about_container {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.1);
  }
  .about {
    padding: 0 0 70px 0;
  }
}

@media (max-width: 1024px) {
  .about_container {
    padding: 0 40px 0 40px;
  }
}

@media (max-width: 768px) {
  .about_container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
}

@media (max-width: 480px) {
  .about_container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .about_text_box {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 10px;
    padding-right: 10px;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
  }
  .about_text_box p {
    font-weight: normal;
  }
}

@media (max-width: 1820px) {
  .about__containerbox {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.2);
    padding-top: 58px;
    padding-bottom: 76px;
  }
}

/* @media (max-width: 1620px) {
    .about__textbox:before{
    width: 90%;
  }
} */
@media (max-width: 1720px) {
  .about__textbox:before {
    width: 85%;
  }
  .about__container::after {
    top: 25%;
  }
}

@media (max-width: 1620px) {
  .about__containerbox {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.2);
    padding-top: 28px;
    padding-bottom: 76px;
    width: calc(100% / 12 * 10);
  }
}

@media (max-width: 1520px) {
  .about__containerbox {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.2);
    padding-top: 28px;
    padding-bottom: 76px;
    width: calc(100% / 12 * 10);
  }

  .about__container::after {
    top: 35%;
  }
}

@media (max-width: 1420px) {
  .about__textbox:before {
    width: 85%;
  }
  .about__text {
    padding: 40px 32px 40px 32px;
  }
  .about__containerbox {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.2);
    padding-top: 28px;
    padding-bottom: 76px;
    width: calc(100% / 12 * 11);
  }
  .about__text h3 {
    font-size: 40px;
  }
}

@media (max-width: 1220px) {
  .about__containerbox {
    padding-right: calc(100vw * 0.15);
    padding-left: calc(100vw * 0.25);
    padding-top: 28px;
    padding-bottom: 76px;
    width: calc(100% / 12 * 12);
  }
  /* .about__text h3 {
    font-size: 44px;
  } */
  .about__text p {
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .about__text {
    padding: 40px 80px 40px 40px;
  }
  .about__text h3 {
    font-size: 40px;
  }
  .about__text p {
    font-size: 24px;
  }
  .about__containerbox {
    padding: 0 100px 76px 140px;
  }
  .about_text_area p {
    line-height: 2.2;
  }
  .about__container::after {
    top: 50%;
  }
  .about {
    padding: 0 0 100px 0;
  }
  .about__textbox:before {
    width: 940px;
    height: 316px;
  }
}

@media (max-width: 900px) {
  .about__textbox:before {
    width: 90%;
  }
  .about__text h3 {
    font-size: 35px;
  }
  .about__text p {
    font-size: 1.8rem;
  }
  .about {
    padding: 0 0 100px 0;
  }
}

@media (max-width: 900px) {
  .about__containerbox {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.2);
    padding-top: 0;
    padding-bottom: 76px;
  }
}

@media (max-width: 820px) {
  .about__text {
    padding: 40px 40px 40px 40px;
  }
  .about__text p {
    font-size: 16px;
  }
  .about__text h3 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 0;
  }
  .about__text {
    text-align: left;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .about__textbox:before {
    width: 90%;
    height: 123px;
  }
  .about__text h3 {
    font-size: 30px;
    background: linear-gradient(to right, #006bcf, #00cafe);
    background-clip: text;
    color: transparent;
    line-height: 35px;
  }
  .about__text p {
    color: #333333;
    font-size: 16px;
  }
  .about__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .about__containerbox {
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
  }
  .about_text_area p {
    font-size: 16px;
    line-height: 2;
  }
  .about__container::after {
    width: 33%;
    top: 390px;
    background-size: contain;
    z-index: -2;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 0;
  }
  .about__text {
    text-align: left;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
    padding-bottom: 0;
  }
  .about__textbox:before {
    width: 335px;
    height: 123px;
  }
  .about__text h3 {
    font-size: 30px;
    background: linear-gradient(to right, #006bcf, #00cafe);
    background-clip: text;
    color: transparent;
    line-height: 35px;
  }
  .about__text p {
    color: #333333;
    font-size: 16px;
  }
  .about__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .about__containerbox {
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
  }
  .about_text_area p {
    font-size: 16px;
    line-height: 2;
  }
  .about__container::after {
    width: 100%;
    top: 450px;
    background-size: contain;
    z-index: -2;
  }
}

.areaimg_l_item {
  position: relative;
  /* width: calc(100% / 12 * 4); */
  width: calc(100% / 12 * 2);
}

.areaimg_l_item img {
  position: absolute;
  height: 415px;
  width: 316px;
  left: 90px;
  top: 0;
  z-index: 0;
}

.areaimg_l_item02 {
  position: absolute;
  left: 190px;
  bottom: -180px;
  /* padding-bottom: 180px; */
}

.about-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  /* max-width: 1000px; */
  width: 100%;
  margin: 0 auto;
  /* position: absolute; */
}

.left-top {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 318px;
  height: 416px;
  align-self: end;
  left: 90px;
  top: 329px;
  position: absolute;
}

.left-bottom {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  width: 606.22px;
  height: 386px;
  position: absolute;
  left: 267px;
  top: 617px;
  z-index: 1;
}

.right-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 269px;
  height: auto;
  justify-self: end;
  top: 443px;
  position: absolute;
  /* padding: 120px 0 0; */
}

.right-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  width: 269px;
  height: auto;
  position: absolute;
  left: 1259px;
  top: 689px;
}

/* @media (max-width: 1820px) {
    .right-bottom{
    left: 67%;
    }
} */

@media (max-width: 1820px) {
  .left-top {
    left: 5%;
  }
  .left-bottom {
    left: 15%;
  }
  .right-bottom {
    left: 65%;
  }
}

/* @media (max-width: 1620px) {
    .left-top{
    left: 4%;
    width: 20%;
    height: auto;
    }
    .left-bottom{
    left: 15%;
    width: 37%;
    height: auto;
    }
    .right-bottom{
    left: 60%;
    }
} */

@media (max-width: 1620px) {
  .left-top {
    left: 4%;
    width: 17%;
    height: auto;
  }
  .left-bottom {
    left: 13%;
    width: 34%;
    height: auto;
  }
  .right-top {
    width: 15%;
    height: auto;
  }
  .right-bottom {
    left: 63%;
  }
}

@media (max-width: 1520px) {
  .right-bottom {
    left: 62%;
  }
}

@media (max-width: 1420px) {
  .left-top {
    left: 4%;
    width: 17%;
    height: auto;
  }
  .left-bottom {
    left: 15%;
    width: 34%;
    height: auto;
  }
  .right-top {
    width: 12%;
    height: auto;
  }
  .right-bottom {
    left: 63%;
  }
}

@media (max-width: 1220px) {
  .left-bottom {
    left: 13%;
    width: 34%;
    height: auto;
  }
  .right-bottom {
    left: 63%;
    top: 73%;
  }
}

@media (max-width: 1024px) {
  .left-top {
    width: 177px;
    height: 231px;
    left: 0;
  }
  .left-bottom {
    width: 337px;
    height: 215px;
    left: 98px;
    top: 489px;
  }
  .right-top {
    width: 149px;
    top: 392px;
  }
  .right-bottom {
    width: 149px;
    left: 651px;
    top: 529px;
  }
}

@media (max-width: 820px) {
  .left-top {
    width: 147px;
    height: 211px;
    left: 0;
    top: 39%;
  }
  .left-bottom {
    width: 307px;
    height: 215px;
    left: 98px;
    top: 539px;
  }
  .right-top {
    width: 129px;
    top: 392px;
  }
  .right-bottom {
    width: 149px;
    left: 481px;
    top: 529px;
  }
}

@media (max-width: 767px) {
  .left-top {
    width: 105px;
    height: 138px;
    top: 75%;
    left: 0;
    z-index: -1;
  }
  .left-bottom {
    width: 183px;
    height: 116px;
    left: 85px;
    top: 100%;
    z-index: -1;
  }
  .right-top {
    width: 94px;
    right: 0;
    z-index: -1;
  }
  .right-bottom {
    width: 110px;
    left: 65%;
    top: 100%;
  }
}

/* @media (max-width: 767px) {
  .left-top{
    width: 105px;
    height: 138px;
    top: 400px;
    left: 0;
    z-index: -1;
  }
  .left-bottom{
    width: 183px;
    height: 116px;
    left: 36px;
    top: 508px;
    z-index: -1;
  }
  .right-top{
    width: 94px;
    right: 0;
    z-index: -1;
  }
  .right-bottom{
    width: 110px;
    left: 241px;
    top: 541px;
  }
} */

/* @media (max-width: 767px) {
  .left-top{
    width: 147px;
    height: 211px;
    left: 0;
    top: 39%;
  }
  .left-bottom {
    width: 307px;
    height: 215px;
    left: 8%;
    top: 70%;
  }
  .right-top {
    width: 129px;
    top: 402px;
  }
  .right-bottom {
    width: 149px;
    left: 68%;
    top: 80%;
  }
} */

@media (max-width: 480px) {
  .left-top {
    width: 105px;
    height: 138px;
    top: 400px;
    left: 0;
    z-index: -1;
  }
  .left-bottom {
    width: 183px;
    height: 116px;
    left: 36px;
    top: 508px;
    z-index: -1;
  }
  .right-top {
    width: 94px;
    right: 0;
    z-index: -1;
  }
  .right-bottom {
    width: 110px;
    left: 241px;
    top: 541px;
  }
}

.service {
  /* padding: 230px 0 0; */
  /* padding: 180px 0; */
  padding: 140px 0;
  position: relative;
  /* background: #ADDBFF; */
  /* z-index: -2; */
}

.service__container {
  padding: 0 192px;
}

.service__textbox {
  position: relative;
}

.service__textbox:before {
  position: absolute;
  content: "";
  top: -40px;
  right: 0;
  width: 1586px;
  /* width: 80%; */
  height: 379px;
  /* height: 100%; */
  background: linear-gradient(to right, #006bcf, #00cafe);
  z-index: 1;
  clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

.service__text {
  margin-left: auto;
  /* text-align: right; */
  padding-right: 100px;
  position: relative;
  z-index: 1;
  /* padding-right: 100px; */
  max-width: 60%;
  padding: 20px 100px 0 0;
}

.service__text p {
  font-weight: 700;
  /* margin-bottom: 40px; */
  margin-bottom: 30px;
  color: #fff;
}

/* .service__description {
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
    text-align: right;
    width: 1088px;
    margin-left: auto;
    margin-bottom: 40px;
} */

.service__container {
  margin: 0 auto;
  /* max-width: var(--content-width); */
  padding: 0 192px 0 192px;
}

.service__item {
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  padding: 40px 40px 40px 0;
  /* margin-bottom: 40px; */
  /* margin: 40px; */
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.service__item-header {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(to right, #006bcf, #00cafe);
  padding: 24px 40px;
  color: #fff;
}

.service__item-header h3 {
  font-size: 32px;
  font-weight: 700;
}

.service__item-header img {
  width: 51px;
}

.service__item-body {
  display: flex;
  padding: 40px 0 0 0;
}

.service__item-body img {
  width: 400px;
  height: 263px;
  box-shadow: 10px 10px 0 #addbff;
}

.service__item-text {
  padding: 40px 0 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: flex-end; */
  width: 100%;
}

.service__item-text p {
  font-size: 16px;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

.service__item-textcontent {
  display: flex;
  align-items: center;
  height: 100%;
}

.service__item-btn {
  margin: 0 0 0 auto;
}

@media (max-width: 1820px) {
  .service__container {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.1);
  }
}

@media (max-width: 1720px) {
  .service__textbox:before {
    width: 85%;
  }
}

@media (max-width: 1620px) {
  .service {
    padding: 80px 0;
  }
}

@media (max-width: 1520px) {
  .service {
    padding: 60px 0;
  }
}

@media (max-width: 1420px) {
  .service {
    padding: 40px 0 140px;
  }
}

@media (max-width: 1320px) {
  .service {
    padding: 20px 0 140px;
  }
}

@media (max-width: 1024px) {
  .service__text {
    max-width: 70%;
    padding: 20px 40px 0 0;
  }
  .service__textbox:before {
    width: 940px;
  }
  .service__container {
    padding: 0 40px 0 40px;
  }
  .service__item-header img {
    width: 51px;
  }
}

@media (max-width: 900px) {
  .service__textbox:before {
    width: 85%;
  }
  .service__item-text {
    padding: 20px 0 0 40px;
  }
}

@media (max-width: 820px) {
  .service__item-body img {
    width: 300px;
    height: 163px;
  }
}

@media (max-width: 768px) {
  .service {
    padding: 110px 0px 60px;
  }
  .service__textbox:before {
    width: 90%;
    height: 123px;
  }
  .service__text {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: left;
    max-width: 100%;
  }
  .service__text p {
    color: #333333;
    margin-bottom: 0;
  }
  .service__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .service__item {
    margin: 0 0 30px;
    padding: 16px 16px 16px 0;
  }
  .service__item-header img {
    width: 25.64px;
    height: 30px;
  }
  .service__item-header {
    padding: 16px;
    gap: 16px;
  }
  .service__item-header h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .service__item-body {
    padding: 16px 0 0 0;
    flex-direction: column;
  }
  .service__item-body img {
    width: 100%;
    height: auto;
  }
  .service__item-text p {
    line-height: 1.5;
  }
  .service__item-text {
    padding: 16px 0 0 16px;
  }
}

@media (max-width: 480px) {
  .service {
    /* padding: 110px 0px 60px; */
    padding: 60px 0px 60px;
  }
  .service__textbox:before {
    width: 335px;
    height: 123px;
  }
  .service__text {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    padding-top: 24px;
    padding-bottom: 24px;
    text-align: left;
    max-width: 100%;
  }
  .service__text p {
    color: #333333;
    margin-bottom: 0;
    font-weight: normal;
  }
  .service__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .service__item {
    margin: 0 0 30px;
    padding: 16px 16px 16px 0;
  }
  .service__item-header img {
    width: 25.64px;
    height: 30px;
  }
  .service__item-header {
    padding: 16px;
    gap: 16px;
  }
  .service__item-header h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .service__item-body {
    padding: 16px 0 0 0;
    flex-direction: column;
  }
  .service__item-body img {
    width: 316px;
    height: 208px;
  }
  .service__item-text p {
    line-height: 1.5;
    font-weight: normal;
  }
  .service__item-text {
    padding: 16px 0 0 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 0 0 0 40px;
  border: 1px solid #0066cc;
  border-radius: 35px;
  color: #4b4b4b;
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  background: #fff;
  width: 160px;
  /* margin: 0 0 0 auto; */
  justify-content: space-between;
}

.arrow {
  display: block;
  width: 44px;
  height: 44px;
  /* background-color: #006BCF; */
  background: linear-gradient(to right, #006bcf, #00cafe);
  border-radius: 50%;
  position: relative;
}

.arrow::before {
  content: "→";
  display: block;
  width: 9px;
  height: 8px;
  background-image: url(/wp-content/uploads/more_arrow.png);
  position: absolute;
  /* top: 50%;
    left: 50%; */
  top: 10px;
  left: 20px;
  transform: translate(-50%, -50%);
  color: #fff;
}

@media (max-width: 768px) {
  .btn {
    margin-top: 10px;
  }
}

.interview {
  /* padding: 180px 0; */
  padding: 0 0 180px;
  /* background: #ADDBFF; */
  position: relative;
  /* z-index: -1; */
}

.interview::after {
  position: absolute;
  content: "";
  /* height: 100%; */
  width: 50%;
  aspect-ratio: 1920 / 1200;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: url(/wp-content/uploads/aboutus-bg.png);
  background-size: 210% auto;
  /* background-size: contain; */
  background-repeat: no-repeat;
  background-position: right top;
}

.interview__container {
  margin: 0 auto;
  /* max-width: var(--content-width); */
  padding: 0 192px 0 192px;
}

.interview__description {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-align: right;
  width: 1088px;
  margin-left: auto;
  margin-bottom: 40px;
}

.interview__item {
  display: block;
  margin-bottom: 40px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.interview__item-bg {
  width: 100%;
  /* height: 300px; Adjust height as needed */
  height: 525px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}

.interview__item--1 .interview__item-bg {
  background-image: url(/wp-content/uploads/interview1_2pcbg.jpg);
}

.interview__item--2 .interview__item-bg {
  background-image: url(/wp-content/uploads/interview2_1pcbg.jpg);
}

.interview__item--3 .interview__item-bg {
  background-image: url(/wp-content/uploads/interview3_1pcbg.jpg);
}

.interview__item-job {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: absolute;
  /* top: -15px; */
  top: -24px;
  right: 0;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  line-height: 1;
  mix-blend-mode: overlay;
}

.interview__item-content {
  width: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.interview__item-cat {
  background: linear-gradient(to right, #006bcf, #00cafe);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 16px;
  /* align-self: flex-start; */
  /* text-align: center; */
  left: 0;
  /* top: 20px; */
  top: 40px;
  position: absolute;
  /* width: 286px; */
}

.interview__item-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.interview__item-maincomment {
  position: absolute;
  bottom: 120px;
  left: 40px;
}

.interview__item-comment {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background-color: #fff;
  padding: 16px;
  /* width: 534px; */
  width: 645px;
  text-align: center;
}

.interview_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  bottom: 40px;
  position: absolute;
}

.interview__item-name {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.interview__item .btn {
  align-self: flex-end;
}

@media (max-width: 1820px) {
  .interview__container {
    padding-right: calc(100vw * 0.1);
    padding-left: calc(100vw * 0.1);
  }
  .interview__item-job {
    font-size: 130px;
    top: -20px;
  }
}

@media (max-width: 1440px) {
  .interview__item--1 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview1_2pcbg.jpg);
  }

  .interview__item--2 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview2_2pcbg.jpg);
  }

  .interview__item--3 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview3_2pcbg.jpg);
  }
}

@media (max-width: 1024px) {
  .interview__container {
    padding: 0 40px 0 40px;
  }
  .interview__item-bg {
    height: 400px;
  }
  .interview__item-cat {
    font-size: 20px;
  }
  .interview__item-comment {
    font-size: 28px;
    width: 384px;
    letter-spacing: 0.04em;
  }
  .interview__item-name {
    font-size: 24px;
  }
  .interview__item--1 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview1_2pcbg.jpg);
  }

  .interview__item--2 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview2_2pcbg.jpg);
  }

  .interview__item--3 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview3_2pcbg.jpg);
  }
  .interview {
    padding: 0 0 40px;
  }
  .interview__item-job {
    font-size: 100px;
    top: -15px;
  }
}

@media (max-width: 820px) {
  .interview__item-job {
    /* font-size: 110px;
    top: -18px; */
    font-size: 85px;
    top: -16px;
  }
  .interview__item-maincomment {
    bottom: 65px;
  }
  .interview__item-comment {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .interview_row {
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .interview__container {
    padding-top: 24px;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .interview__item--1 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview1_1spbg.jpg);
  }

  .interview__item--2 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview2_1spbg.jpg);
  }

  .interview__item--3 .interview__item-bg {
    background-image: url(/wp-content/uploads/interview3_1spbg.jpg);
  }
  .interview__item-bg {
    height: 280px;
  }
  .interview__item-cat {
    font-size: 18px;
    padding: 8px;
    top: 16px;
  }
  .interview__item-comment {
    font-size: 18px;
    letter-spacing: 0;
    padding: 8px;
    width: 242px;
    line-height: 1.2;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .interview__item-maincomment {
    /* bottom: 100px; */
    bottom: 70px;
    left: 0;
  }
  .interview__item-name {
    font-size: 16px;
    line-height: 1;
  }
  .interview_row {
    flex-direction: column;
    /* bottom: 16px; */
    bottom: 7px;
    padding: 0 8px;
  }
  .interview__item-job {
    /* font-size: 54px;
    top: -10px; */
    font-size: 40px;
    top: -7px;
  }
  .interview {
    padding: 0 0 40px;
  }
  .interview::after {
    width: 90%;
    background-size: 120% auto;
  }
  .interview__item .btn {
    margin-top: 0;
  }
}

.office {
  position: relative;
  /* padding-bottom: 120px; */
  padding-bottom: 160px;
  padding-top: 0;
  /* background: #ADDBFF; */
  /* z-index: -1; */
}

.office_box {
  display: flex;
  flex-wrap: wrap;
}

.office__bg {
  /* background-image: url(/wp-content/uploads/office_bg.png);
    background-size: cover;
    background-position: center;
    height: 733px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;*/
  position: relative;
}

.office__bg img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

/* .office .section-title {
    padding-top: 517px;
} */

.office__textbox {
  /* position: relative; */
  position: absolute;
  /* bottom: 10px; */
  bottom: 40px;
  z-index: 1;
  width: 100%;
  padding: 0 0 10px;
}

.office__textbox:before {
  position: absolute;
  content: "";
  /* top: -30px; */
  top: -45px;
  right: 0;
  /* width: 80%;
  height: 216px; */
  width: 1586px;
  height: 379px;
  background: linear-gradient(to right, #006bcf, #00cafe);
  z-index: -1;
  clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

.office__text {
  margin-left: auto;
  /* text-align: right; */
  padding-right: 100px;
  position: relative;
  z-index: 1;
  padding-right: 100px;
  max-width: 60%;
}

.office__text p {
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.office__container {
  display: flex;
  /* padding-top: 57px; */
}

.office__item {
  width: 50%;
  padding: 80px 192px;
  /* padding: 80px; */
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.6); */
  z-index: 1;
}

.office__item > * {
  position: relative;
  z-index: 2;
}

.office__item--tokyo {
  background-image: url(/wp-content/uploads/office-tokyo01.png);
  border-right: 0.5px solid #fff;
}

.office__item--nagoya {
  background-image: url(/wp-content/uploads/office-nagoya01.png);
}

.office__item h4 {
  font-size: 32px;
  font-weight: 700;
  /* padding-bottom: 8px; */
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  max-width: fit-content;
  margin: 0 auto;
}

.office__item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.office__item__text {
  position: relative;
  /* padding-top: 120px; */
}

.office__item__text img {
  width: 19px;
  height: 19px;
}

@media (max-width: 1720px) {
  .office__textbox:before {
    width: 85%;
  }
}

@media (max-width: 1024px) {
  .office__textbox:before {
    width: 940px;
    height: 379px;
  }
  .office__container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .office__item {
    padding: 80px 40px;
    height: 400px;
  }
}

@media (max-width: 900px) {
  .office__textbox:before {
    width: 85%;
  }
}

@media (max-width: 768px) {
  .office {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .office__container {
    flex-direction: column;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
    gap: 16px;
  }
  .office__textbox {
    position: relative;
    bottom: 10px;
  }
  .office__textbox:before {
    width: 90%;
    height: 123px;
  }
  .office__item {
    width: 100%;
    height: 343px;
    padding: 40px;
  }
  .office_box {
    flex-direction: column;
  }
  .office__bg img {
    height: 183px;
  }
}

@media (max-width: 480px) {
  .office {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .office__container {
    flex-direction: column;
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
    gap: 16px;
  }
  .office__textbox {
    position: relative;
    bottom: 10px;
  }
  .office__textbox:before {
    width: 335px;
    height: 123px;
  }
  .office__item {
    width: 100%;
    height: 343px;
    padding: 40px;
  }
  .office_box {
    flex-direction: column;
  }
  .office__bg img {
    height: 183px;
  }
}

.news {
  padding-bottom: 80px;
  /* background: #ADDBFF; */
  position: relative;
  /* z-index: -1; */
  padding-top: 0;
}

.news__textbox {
  position: relative;
}

.news__textbox:before {
  position: absolute;
  content: "";
  top: -40px;
  right: 0;
  width: 1586px;
  height: 379px;
  background: linear-gradient(to right, #006bcf, #00cafe);
  /* z-index: -1; */
  clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

.news__text {
  margin-left: auto;
  /* text-align: right; */
  padding-right: 100px;
  position: relative;
  z-index: 1;
  padding-right: 100px;
  max-width: 60%;
}

.news__text p {
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.news__container {
  /* padding: 0 192px; */
  padding: 40px 192px;
  display: flex;
  width: 100%;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.news__item {
  display: flex;
  align-items: center;
  border: 1px solid #333b44;
  margin-bottom: 16px;
  margin-left: 200px;
  width: 100%;
  background-color: #fff;
  width: 1366px;
}

.news__item:nth-child(2) {
  margin: 0 100px 16px;
}

.news__item:nth-child(3) {
  margin-right: 200px;
  margin-left: 0;
}

.news__date {
  background-color: #333b44;
  color: #fff;
  padding: 16px 24px;
  font-family: "Outfit", sans-serif;
}

.news__title {
  padding: 0 24px;
  flex-grow: 1;
}

.news__arrow {
  display: flex;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
}

.news__arrow img {
  width: 20px;
  height: 20px;
}

@media (max-width: 1720px) {
  .news__item {
    width: 90%;
  }
}

@media (max-width: 1720px) {
  .news__textbox:before {
    width: 85%;
  }
}

@media (max-width: 1024px) {
  .news__textbox:before {
    width: 940px;
  }
  .news__container {
    padding: 40px;
  }
  .news__item {
    width: 744px;
  }
}

@media (max-width: 900px) {
  .news__textbox:before {
    width: 85%;
  }
  .news {
    padding-bottom: 0;
  }
  .news__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
  }
  .news__item:nth-child(2) {
    margin: 0 0 16px;
  }
  .news__item:nth-child(3) {
    margin-left: 0;
  }
  .news__date {
    width: 100%;
    text-align: center;
    padding: 8px 16px;
  }
  .news__title {
    padding: 10px 16px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .news {
    padding-bottom: 0;
  }
  .news__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
  }
  .news__item:nth-child(2) {
    margin: 0 0 16px;
  }
  .news__item:nth-child(3) {
    margin-left: 0;
  }
  .news__textbox:before {
    width: 90%;
    height: 123px;
  }
  .news__date {
    width: 100%;
    text-align: center;
    padding: 8px 16px;
  }
  .news__title {
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .news {
    padding-bottom: 0;
  }
  .news__container {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
    margin: 0 auto;
    max-width: var(--content-width);
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
  }
  .news__item:nth-child(2) {
    margin: 0 0 16px;
  }
  .news__item:nth-child(3) {
    margin-left: 0;
  }
  .news__textbox:before {
    width: 335px;
    height: 123px;
  }
  .news__date {
    width: 100%;
    text-align: center;
    padding: 8px 16px;
  }
  .news__title {
    padding: 10px 16px;
  }
}

.footer {
  background-color: #fff;
  /* display: flex;
    justify-content: space-between; */
  align-items: center;
  padding: 80px 192px;
  /* padding: 80px 0; */
  width: 100%;
}

.footer__logo {
  margin: 0 30px 0 0;
}

.footer__logo img {
  width: 300px;
}

.footer__nav ul {
  display: flex;
  align-items: center;
  /* gap: 40px; */
  list-style: none;
  padding: 15px 0;
  margin: 0 auto;
  position: relative;
}

/* .footer__nav li:not(:last-child) {
    border-right: 1px solid #A7A7A7;
    padding-right: 40px;
} */

.footer__nav li {
  display: flex;
  flex-grow: 1;
  align-items: center;
}

nav.footer__nav ul li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  transform: rotate(30deg);
  background-color: #a7a7a7;
}

.footer__nav ul li:last-child:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  right: 0;
  transform: rotate(30deg);
  background-color: #a7a7a7;
}

.footer__nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  /* padding: 0 30px; */
  /* padding: 30px 80px; */
  padding: 30px 20px;
}

.footer__copy {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}

/* .footer-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px 0;
} */

.footer-info {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  justify-content: space-between;
}

.footer-info-inner {
  display: flex;
  align-items: center;
}

@media (max-width: 1820px) {
  .footer {
    padding: 80px 160px;
  }
}

@media (max-width: 1720px) {
  .footer {
    padding-right: calc(30px / 2);
    padding-left: calc(30px / 2);
  }
}

@media (max-width: 1520px) {
  .footer {
    padding: 40px;
  }
  .footer-info {
    flex-direction: column;
  }
  .footer-info-inner {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 40px;
  }
  .footer-info {
    flex-direction: column;
  }
  .footer-info-inner {
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .footer__nav ul {
    display: none;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
  .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer__logo {
    margin: 0;
  }
  .footer__logo img {
    width: 230px;
  }
  .footer-wrap {
    padding: 0;
  }
}

/* 汎用クラス */

.bg-red {
  background-color: #fe266d !important;
}

.bg-blue {
  background-color: #1646b1 !important;
}

.bg-green {
  background-color: #55b5ae !important;
}

.bg-orange {
  background-color: #ffa204 !important;
}

.text-red {
  color: #db2d2d !important;
}

.text-orange {
  color: #ffa204 !important;
}

.text-blue {
  color: #0064af !important;
}

.text-mainblue {
  color: var(--main-color01) !important;
}

/* .text-green {
  color: var(--main-color01)!important;
} */

.text-pink {
  color: #db20b2 !important;
}

.text-black {
  color: #000000 !important;
}

.text-gray {
  color: #555555 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-ppl {
  color: #00004a;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.text-bold {
  font-weight: bold !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-xlarge {
  font-size: 1.6rem !important;
}

.text-large {
  font-size: 1.4rem !important;
}

.w100 {
  width: 100% !important;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .text-xlarge {
    font-size: 2rem;
  }
  .text-large {
    font-size: 1.6rem;
  }
  .sp-only {
    display: none !important;
  }
}

.tab-br {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .tab-br {
    display: inline;
  }
}

/* 投稿 */

.article_list {
  padding: 30px;
  border: 1px solid var(--main-color02);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .article_list {
    padding: 20px;
  }
}

.article_list:first-child {
  margin-top: 0;
}

.article_list:nth-child(n + 2) {
  margin-top: 30px;
}

.article_date {
  display: flex;
  align-items: center;
  gap: 20px;
}

.article_detail {
  padding: 4%;
  margin-bottom: 4%;
  font-size: 1.2rem;
}

.article_detail img {
  width: auto;
}

.article_detail .span_12 {
  margin: 2% 0;
}

.article_button {
  margin-top: 30px;
  text-align: right;
}

@media (max-width: 767px) {
  .article_button {
    margin-top: 20px;
  }
}

.more {
  display: inline-block;
  overflow: hidden;
  margin: auto;
}

.more.btn_ss a,
.more.btn_ss span {
  padding: 0.3em 2.1em 0.3em 1.4em;
}

.more.btn_s a,
.more.btn_s span {
  padding: 0.5em 2.1em 0.5em 1.4em;
}

.more.btn_m a,
.more.btn_m span {
  padding: 0.5em 2.1em 0.5em 1.4em;
}

.more a,
.more span {
  display: inline-block;
  letter-spacing: normal;
  color: var(--main-color02);
  border: 1px solid var(--main-color02);
  padding: 0.9em 1.6em;
  margin-bottom: 1px;
  text-decoration: none;
}

.more a:after,
.more span:after {
  border-color: var(--main-color02);
}

.more a:hover,
.more span:hover {
  color: #333;
  border-color: #333;
}

.more a:hover:after,
.more span:hover:after {
  border-color: #333;
}

.more a.add_arrow,
.more span.add_arrow {
  padding-right: 1.9em;
}

.add_arrow {
  display: block;
  position: relative;
}

.add_arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.add_arrow:hover:after {
  right: 3%;
  border-color: #fff;
}

.more {
  display: inline-block;
  overflow: hidden;
  margin: auto;
}

.more a {
  display: inline-block;
  letter-spacing: normal;
  border: 1px solid var(--main-color02);
  color: var(--main-color02);
  padding: 0.3em 1.3em 0.3em 1em;
  margin-bottom: 1px;
  text-decoration: none;
  font-size: 1.2rem;
}

.pager {
  overflow: hidden;
  margin-bottom: 5%;
}

.pager .pager_prev {
  float: left;
}

.pager .pager_prev a {
  display: block;
  position: relative;
  padding-left: 15px;
  text-decoration: none;
}

.pager .pager_prev a:before,
.pager .pager_prev a:after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: var(--main-color02);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pager .pager_prev a:before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  top: calc(50% - 2px);
}

.pager .pager_prev a:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  top: calc(50% + 3px);
}

.pager .pager_prev a:hover {
  text-decoration: underline;
}

.pager .pager_prev a:hover:before {
  left: 0;
}

.pager .pager_prev a:hover:after {
  left: 0;
}

.pager .pager_next {
  float: right;
}

.pager .pager_next a {
  display: block;
  position: relative;
  padding-right: 15px;
  text-decoration: none;
}

.pager .pager_next a:before,
.pager .pager_next a:after {
  content: "";
  display: block;
  position: absolute;
  right: 2px;
  margin: auto;
  width: 8px;
  height: 1px;
  background: var(--main-color02);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.pager .pager_next a:before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  top: calc(50% - 2px);
}

.pager .pager_next a:after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  top: calc(50% + 3px);
}

.pager .pager_next a:hover {
  text-decoration: underline;
}

.pager .pager_next a:hover:before {
  right: 0;
}

.pager .pager_next a:hover:after {
  right: 0;
}

/* ぱんくず */

.bread_wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.bread {
  overflow: hidden;
}

.bread ul {
  margin: 0 auto;
  float: none;
  display: flex;
  justify-content: end;
  padding-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .bread ul {
    padding: 15px 0;
    justify-content: start;
  }
}

.bread ul li {
  list-style: none;
  position: relative;
  float: left;
  margin-right: 20px;
  padding-right: calc(20px + 9px);
}

@media (max-width: 767px) {
  .bread ul li {
    margin-right: 15px;
    padding-right: calc(15px + 9px);
  }
}

.bread ul li a {
  padding: 0;
  text-decoration: underline;
  color: var(--main-color02);
}

.bread ul li a:hover {
  color: #1b1b1b;
  text-decoration: none;
}

.bread ul li:after {
  content: ">";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.bread ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.bread ul li:last-child:after {
  content: none;
}

.medicalinfo {
  background-color: var(--accent-color);
}

/* 画像のフィックス */

figure {
  margin: 0;
  text-align: center;
}

img {
  vertical-align: middle;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  max-width: 100%;
  width: 100%;
  height: auto;
}

figure img {
  width: inherit;
}

/* 見出し */

h2.heading-1 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 1.6rem;
  color: #1a1131;
  letter-spacing: 3px;
  border-bottom: none;
  line-height: 1.5em;
  font-family: serif;
}

h2.heading-1 span {
  display: block;
  font-size: 1rem;
}

h2.heading-1:after {
  display: block;
  content: "";
  position: absolute;
  width: 300px;
  height: 1px;
  background: #1a1131;
  top: 50%;
  transform: translateY(-50%);
  right: 101%;
}

h2.heading-1 a {
  color: var(--main-color02);
}

h3.heading-1 {
  margin: 0 0 0.5em;
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 1.4rem;
  background: linear-gradient(to right, #006bcf, #00cafe);
  padding: 24px 0 24px 40px;
  font-size: 32px;
  color: #ffffff;
}

h3.heading-2 {
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 2.9rem;
  color: #016fd1;
  font-family: "Outfit", sans-serif;
}

h3.heading-3 {
  position: relative;
  border: 0;
  word-wrap: break-word;
  font-weight: bold;
  font-size: 2.5rem;
  color: #016fd1;
  font-family: "Outfit", sans-serif;
}

h4.heading-1 {
  margin: 0 0 0.5em;
  font-size: 24px;
  position: relative;
  color: #333333;
  font-weight: bold;
  line-height: 1.5em;
  border-bottom: 1px solid #dadada;
  padding: 16px 0;
  letter-spacing: 0.15em;
}

h4.heading-1::after {
  content: "";
  background-color: #006dd0;
  width: 4em;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

h5.heading-1 {
  margin: 0 0 0.5em;
  font-size: 20px;
  position: relative;
  color: var(--main-color02);
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  padding: 16px 0;
}

h5.heading-2 {
  margin: 0 0 0.5em;
  font-size: 20px;
  position: relative;
  color: var(--main-color02);
  font-weight: bold;
  line-height: 1.5em;
  letter-spacing: 0.15em;
  padding: 16px 0 16px 20px;
}

h5.heading-2::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  background-color: var(--main-color02);
  left: 0;
  top: 50%;
  position: absolute;
}

#pagetitle {
  position: relative;
  color: #fff;
  /* padding: 2em 0.5em; */
  padding: 6.8em 0;
  background: url(/wp-content/uploads/bg.png) no-repeat;
  background-size: cover;
}

#pagetitle::after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/pagetitle-rightbg.png)
    no-repeat;
  right: 0;
  top: 0;
  background-size: cover;
  width: 75%;
  height: 100%;
  z-index: 0;
}

/* #pagetitle:after {
  content: "";
  position: absolute;
}

#pagetitle span {
  text-align: center;
  font-size: 3.75rem;
  font-weight: 900;
  display: block;
  box-sizing: border-box;
  line-height: 1.5em;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.18rem;
} */

.pagetitle-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  position: relative;
  width: fit-content;
  padding: 0 80px 0 240px;
  gap: 40px;
  z-index: 1;
}

.pagetitle_en {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 86px;
  color: #fff;
  background: linear-gradient(to right, #006bcf, #00cafe);
  display: flex;
  align-items: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.5;
  letter-spacing: 0.18rem;
}

.pagetitle_ja {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: #006fd1;
}

.pagetitle-box::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  right: -45px;
  background: linear-gradient(to right, #006bcf, #00cafe);
  position: absolute;
}

@media (max-width: 1520px) {
  .pagetitle-box {
    padding: 0 80px 0 40px;
    gap: 20px;
  }
}

@media (max-width: 1320px) {
  #pagetitle {
    padding: 4.5em 0;
  }
  .pagetitle-box {
    padding: 0 80px 0 40px;
    gap: 20px;
  }
  .pagetitle_en {
    font-size: 60px;
  }
  #pagetitle::after {
    width: 90%;
  }
}

@media (max-width: 920px) {
  #pagetitle {
    padding: 1.3em 0;
  }
  .pagetitle-box {
    padding: 0 80px 0 16px;
    gap: 0;
    height: 121px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .pagetitle_en {
    font-size: 28px;
    letter-spacing: 0.1rem;
  }

  .pagetitle_ja {
    font-size: 16px;
  }
  #pagetitle::after {
    width: 95%;
  }
  #pagetitle::after {
    background: url(/wp-content/uploads/pagetitle-rightspbg.png)
      no-repeat;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  h2.heading-1 {
    font-size: 1.6rem;
  }
  h3.heading-1 {
    font-size: 1.4rem;
    padding: 8px 16px 8px 16px;
  }
  h3.heading-2 {
    font-size: 1.4rem;
  }
  h3.heading-3 {
    font-size: 1.4rem;
  }
  h4.heading-1 {
    font-size: 20px;
  }
  h5.heading-1 {
    font-size: 18px;
  }
  h5.heading-2 {
    font-size: 18px;
  }
}

/* ボタン */

.btn-1 {
  color: #fff;
  display: block;
  width: 180px;
  margin-left: auto;
  height: auto;
  padding: 16px 20px 16px 20px;
  background: var(--main-color02);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  border-radius: 50px;
  text-align: center;
}

.btn-1:hover {
  color: #fff;
  background: #b28575;
}

.btn-2 {
  color: #fff;
  display: block;
  width: 180px;
  height: auto;
  padding: 23px 20px 23px 20px;
  background: var(--main-color02);
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  border-radius: 50px;
  text-align: center;
}

.btn-2:hover {
  color: #fff;
  background: #b28575;
}

/* リスト */

dl {
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  align-items: flex-start;
  gap: 10px;
}

dl dt {
  font-weight: bold;
  width: 180px;
}

dl dd {
  width: calc(100% - 200px);
}

.about-info dl {
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  gap: 0;
  /* justify-content: center; */
  align-items: unset;
}

.about-info dl dt {
  font-weight: normal;
  width: 180px;
  border-bottom: 2px solid #006dd0;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.about-info dl dd {
  width: calc(100% - 200px);
  border-bottom: 2px solid #dadada;
  padding: 10px 0 10px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1023px) {
  .about-info dl dt {
    width: 80px;
  }
  .about-info dl dd {
    width: calc(100% - 90px);
    padding: 10px 0 10px 20px;
  }
}

/* テーブル */

.table-schedule {
  width: 100%;
}

.table-schedule td,
.table-schedule th {
  border-bottom: 1px solid #c9d6df;
  padding: 0.2em 0.3em;
  text-align: center;
  font-weight: normal;
}

.table-schedule td {
  color: var(--main-color01);
}

@media (max-width: 480px) {
  .table-schedule td,
  .table-schedule th {
    padding: 0.7em 0.3em;
  }
}

.table-default {
  width: 100%;
}

.table-default td,
.table-default th {
  padding: 0.7em 1em;
  border: 1px solid #c9d6df;
  vertical-align: middle;
}

.table-default th {
  background: var(--pale-color);
}

.table-about {
  width: 100%;
}

.table-about td,
.table-about th {
  padding: 0.7em 1em;
  border: 1px solid #7c7c7c;
  vertical-align: middle;
  text-align: center;
}

.table-about th {
  background: #e6e9ee;
}

@media (max-width: 480px) {
  .table-about {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}

.table-plan-a {
  border-radius: 15px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.table-plan {
  width: 100%;
}

.table-plan thead {
  line-height: 1.2;
  background: #fafafa;
  padding: 1.5em 1.5em 1.6em;
}

.table-plan thead th {
  text-align: center;
  border: none;
}

.table-plan td,
.table-plan th {
  /* padding: 0.7em 1em;
    border: 1px solid #C9D6DF;
    vertical-align: middle; */
  border: 1px solid #ddd;
  border-width: 1px 0 0;
  padding: 1em 1.2em;
  display: table-cell;
  vertical-align: middle;
}

.table-plan td.menu__detail {
  border-left: 1px solid #ddd;
  text-align: center;
}

.pl-th {
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .table-plan {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}

.photography-box {
  border: solid 1px #000000;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
}

.photography-box-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.photography-box-line figure {
  width: 180px;
}

.photography-box-linelink {
  padding: 12px 32px;
  background-color: #333333;
  color: #ffffff;
}

.recruit-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  padding-left: 0;
}

.recruit-box li {
  width: 49%;
}

.recruit-box a {
  display: flex;
  border: solid 3px #016dd0;
  padding: 10px;
  padding: 24px;
  border-radius: 20px;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  /* justify-content: space-between; */
}

.recruit-box-head {
  display: flex;
  align-items: center;
}

.recruit-box-inner {
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: flex-start;
  padding: 0px;
  width: auto;
  display: flex;
}

.recruit-box-inner span {
  color: #016dd0;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  height: auto;
  letter-spacing: 0em;
  line-height: 1.8;
  margin: 0px 0px 0px 0px;
  text-align: justify;
  width: auto;
  max-width: 100%;
  justify-content: space-between;
}

.recruit-box-inner p {
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  height: auto;
  letter-spacing: 0em;
  line-height: 1.2;
  margin: 0;
  text-align: justify;
  width: auto;
  max-width: 100%;
  justify-content: space-between;
}

.recruit-box-text {
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: auto;
  letter-spacing: 0em;
  line-height: 1.8;
  margin: 0px 0px 0px 0px;
  text-align: justify;
  width: auto;
  max-width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
}

.recruit-box-btn {
  align-content: center;
  align-items: center;
  background: #016dd0;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  height: 43px;
  justify-content: center;
  padding: 14px;
  width: 43px;
  max-width: 100%;
  border-radius: 50%;
  transition: transform 0.2s ease;
  transform-origin: center;
  display: flex;
}

.recruit-box-btn img {
  transform: rotate(-45deg);
  pointer-events: none;
  transition: none;
}

.recruit-box li:hover .recruit-box-btn {
  transform: scale(1.2);
}

.recruit-box :hover {
  opacity: 1;
}

@media (max-width: 858px) {
  .recruit-box li {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .recruit-box li {
    width: 100%;
  }
  .recruit-box-inner p {
    font-size: 18px;
  }
  .recruit-box-inner span {
    font-size: 12px;
  }
  .recruit-box-text {
    line-height: 1.5;
  }
}

#anc01,
#anc02,
#anc03,
#anc04,
#anc05,
#anc06,
#anc07,
#anc08,
#anc09,
#anc10,
#anc11,
#anc12 {
  padding-top: 76px;
  margin-top: -76px;
}

@media (max-width: 767px) {
  #anc01,
  #anc02,
  #anc03,
  #anc04,
  #anc05,
  #anc06,
  #anc07,
  #anc08,
  #anc09,
  #anc10,
  #anc11,
  #anc12 {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.interviewpage-wrap {
  display: flex;
  align-items: center;
}

.interviewpage-left {
  width: 8.5rem;
  height: 6rem;
  position: relative;
  margin: 0 5rem 0 0;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
}

.interviewpage-left::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.1rem;
  height: 8rem;
  background-color: #016fd1;
  transform: translate(-50%, 0) rotate(35deg);
  left: 58%;
}

.interviewpage-left span {
  line-height: 1;
}

.interviewpage-na {
  position: absolute;
  /* font-family: Barlow, sans-serif; */
  font-style: italic;
  color: #016fd1;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 3rem;
  top: 0;
  left: 0;
}

.interviewpage-en {
  position: absolute;
  /* font-family: Barlow, sans-serif; */
  font-style: italic;
  color: #016fd1;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.7rem;
  right: 0;
  bottom: 0;
}

.interviewpage-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #016fd1;
  /* margin: 0 0 2rem; */
}

.interviewpage-title {
  font-size: 1rem;
  color: #016fd1;
  font-weight: 600;
}

@media (max-width: 767px) {
  .interviewpage-left {
    width: 6.5rem;
    height: 4rem;
    margin: 0 3rem 0 0;
  }
  .interviewpage-left::before {
    height: 5rem;
    left: 48%;
  }
  .interviewpage-na {
    font-size: 2rem;
  }
  span.interviewpage-en {
    font-size: 0.7rem;
  }
  .interviewpage-text {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: solid 2px #d3d3d3;
  }
}
