@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* font fam */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1160px) {
  html {
    font-size: 0.8620689655vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

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

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  text-decoration: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  color: #000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
html.is-fixed {
  overflow: hidden;
}

body {
  color: #000;
  font-size: 1rem;
  text-align: left;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
body.is-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
body.is-fixed .l-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

section {
  position: relative;
}

main {
  display: block;
  padding-top: 7.4rem;
}
.index main {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 10rem;
  }
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.75;
}

.fade {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade:hover {
  opacity: 0.6;
  cursor: pointer;
}

.h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
}

.v-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0);
          transform: translateY(-50%) translateZ(0);
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.roboto, .en {
  font-family: "Roboto", serif;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  main {
    padding-top: 10rem;
  }
  input, textarea, select, textarea {
    font-size: 16px;
  }
}
/* ------------------------------
    layout
------------------------------ */
.l-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.l-container {
  width: 100%;
  max-width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .l-container {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 92%;
    padding: 0;
  }
}

.l-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* ------------------------------
    component
------------------------------ */
.c-btn__link {
  position: relative;
  width: 48rem;
  height: 7rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    width: 68.6rem;
    height: 10rem;
    font-size: 3rem;
  }
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-btn__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-btn__link:hover {
    opacity: 0.7;
  }
}
.c-btn__link::before {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 1.1rem;
  height: 1.2rem;
  right: 2.2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-btn__link::before {
    right: 3rem;
  }
}
.c-btn__link--white {
  background: #fff;
  color: #0f70b9;
}
.c-btn__link--white::before {
  background: #0f70b9;
}
.c-btn__link--blue {
  background: #0f70b9;
  color: #fff;
}
.c-btn__link--blue::before {
  background: #fff;
}
.c-btn__link--contact {
  width: 43rem;
  background: #fff;
  color: #041c2e;
}
.c-btn__link--contact::before {
  background: #041c2e;
}
@media screen and (max-width: 767px) {
  .c-btn__link--contact {
    width: 68.6rem;
  }
}

.en .c-btn__link {
  letter-spacing: normal;
}

.c-title {
  font-size: 4.5rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 6rem;
    margin-bottom: 10rem !important;
  }
}
.c-title--white {
  color: #fff;
}
.c-title--blue {
  color: #0f70b9;
}

.en .c-title {
  letter-spacing: normal;
}

.c-news {
  background: #fff;
}
.c-news-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 8rem calc((100% - 97.8rem) / 2);
}
@media screen and (max-width: 767px) {
  .c-news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10rem 0;
  }
}
.c-news-list li a {
  display: block;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-news-list li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-news-list li a:hover {
    opacity: 0.7;
  }
}
.c-news-list__item {
  width: 32.6rem;
}
@media screen and (max-width: 767px) {
  .c-news-list__item {
    width: 100%;
  }
}
.c-news-list__date {
  position: relative;
  color: #0f70b9;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Roboto", serif;
  letter-spacing: 0.11rem;
  padding: 0.3em 2rem;
  border-bottom: 1px solid #0f70b9;
}
.c-news-list__date::before {
  position: absolute;
  content: "";
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  background: #0f70b9;
  width: 1.5rem;
  height: 1.5rem;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-news-list__date {
    font-size: 3.2rem;
    padding: 0.3em 4rem;
  }
  .c-news-list__date::before {
    width: 3rem;
    height: 3rem;
  }
}
.c-news-list__txt {
  padding: 2rem 0 0;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-news-list__txt {
    padding: 4rem 0 0;
    font-size: 2.8rem;
  }
}

.c-page-head {
  background: -webkit-gradient(linear, left top, right top, from(rgb(112, 48, 160)), color-stop(19%, rgb(93, 59, 165)), color-stop(50%, rgb(55, 81, 176)), to(rgb(0, 112, 192)));
  background: linear-gradient(to right, rgb(112, 48, 160) 0%, rgb(93, 59, 165) 19%, rgb(55, 81, 176) 50%, rgb(0, 112, 192) 100%);
  width: 100%;
  height: 20rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-page-head__title {
  font-size: 4.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-page-head {
    height: 20rem;
  }
  .c-page-head__title {
    font-size: 5.4rem;
  }
}

.en .c-page-head__title {
  letter-spacing: normal;
}

.c-achieve-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 7rem calc((100% - 97.8rem) / 2);
}
@media screen and (max-width: 767px) {
  .c-achieve-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10rem 0;
  }
}
.c-achieve-list li {
  width: 32.6rem;
}
@media screen and (max-width: 767px) {
  .c-achieve-list li {
    width: 100%;
  }
}
.c-achieve-list li a {
  display: block;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-achieve-list li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-achieve-list li a:hover {
    opacity: 0.7;
  }
}
.c-achieve-list__img {
  margin-bottom: 1.3rem;
}
.c-achieve-list__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 326/220;
}
.c-achieve-list__date, .c-achieve-list__ttl {
  color: #fff;
  font-size: 1.7rem;
  letter-spacing: 0.11rem;
}
@media screen and (max-width: 767px) {
  .c-achieve-list__date, .c-achieve-list__ttl {
    font-size: 2.8rem;
  }
}
.c-achieve-list__date {
  font-family: "Roboto", serif;
  font-weight: 500;
}
.c-achieve-list__ttl {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 700;
}

.en .c-achieve-list__date, .en .c-achieve-list__ttl {
  letter-spacing: normal;
}

/* pagenavi */
.c-pagenavi {
  margin: 10rem auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .c-pagenavi {
    margin: 10rem auto 0;
    gap: 0 1.6rem;
  }
}
.c-pagenavi a, .c-pagenavi span {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.c-pagenavi a {
  color: #0f70b9;
  text-decoration: underline;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-pagenavi a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-pagenavi a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-pagenavi a, .c-pagenavi span {
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
  }
}
.c-pagenavi.current {
  color: #000;
  text-decoration: none;
}
.c-pagenavi.extend {
  background: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-pagenavi .nextpostslink,
.c-pagenavi .previouspostslink {
  position: relative;
  font-size: 0;
  color: transparent;
  display: block;
  margin: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #0f70b9;
}
.c-pagenavi .nextpostslink::before,
.c-pagenavi .previouspostslink::before {
  position: absolute;
  content: "";
  background: #fff;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 1.1rem;
  height: 1.2rem;
  z-index: 2;
  border-radius: 0;
  top: 50%;
  left: 50%;
}
.c-pagenavi .nextpostslink.disabled,
.c-pagenavi .previouspostslink.disabled {
  pointer-events: none;
  background-color: rgba(15, 112, 185, 0.49);
}
.c-pagenavi .nextpostslink {
  margin-left: 0.5rem;
}
.c-pagenavi .nextpostslink::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .c-pagenavi .nextpostslink {
    margin-left: 0;
  }
}
.c-pagenavi .previouspostslink {
  margin-right: 0.5rem;
}
.c-pagenavi .previouspostslink::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-pagenavi .previouspostslink {
    margin-right: 0;
  }
}

/* pager */
.c-pager {
  position: relative;
  width: 30.5rem;
  margin: 0 auto 10rem;
}
@media screen and (max-width: 767px) {
  .c-pager {
    width: 40rem;
  }
}
.c-pager__arrow {
  width: 100%;
}
.c-pager__link {
  position: relative;
  font-size: 0;
  width: 4rem;
  height: 4rem;
  background: #0f70b9;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-pager__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-pager__link:hover {
    opacity: 0.7;
  }
}
.c-pager__link::before {
  position: absolute;
  content: "";
  background: #fff;
  -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
          clip-path: polygon(100% 0, 0 50%, 100% 100%);
  width: 1.1rem;
  height: 1.2rem;
  z-index: 2;
  border-radius: 0;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .c-pager__link {
    width: 6rem;
    height: 6rem;
  }
}
.c-pager__link.disabled {
  pointer-events: none;
  background-color: rgba(15, 112, 185, 0.49);
}
.c-pager__link.prev {
  float: left;
}
.c-pager__link.prev::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-pager__link.next {
  float: right;
}
.c-pager__link.next::before {
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
.c-pager__btn a {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: #0f70b9;
  text-decoration: underline;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-pager__btn a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-pager__btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-pager__btn a {
    font-size: 3rem;
  }
}

.en .c-pager__btn a {
  letter-spacing: normal;
}

.c-page-detail {
  background: #fff;
  padding: 9rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail {
    padding: 10rem;
  }
}
.c-page-detail__header {
  margin-bottom: 6rem;
}
.c-page-detail__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 3rem;
  margin-bottom: 0.5rem;
}
.c-page-detail__date {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Roboto", serif;
  letter-spacing: 0.11em;
  color: #0f70b9;
}
@media screen and (max-width: 767px) {
  .c-page-detail__date {
    font-size: 3.2rem;
  }
}
.c-page-detail__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2857142857;
  letter-spacing: 0.08em;
  color: #000;
  border-bottom: 2px solid #0f70b9;
  padding-bottom: 2.5rem;
  margin-bottom: 7.5rem;
  margin-top: 0;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-page-detail__title {
    font-size: 4.2rem;
    margin-bottom: 4.5rem;
  }
}
.c-page-detail__contents {
  overflow: hidden;
}
.c-page-detail__contents * + * {
  margin-top: 3rem;
}
.c-page-detail__contents h1.wp-block-heading, .c-page-detail__contents h2, .c-page-detail__contents h3, .c-page-detail__contents h4, .c-page-detail__contents h5, .c-page-detail__contents h6, .c-page-detail__contents wp-block-heading {
  position: relative;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.11em;
  margin-top: 7.5rem;
}
.c-page-detail__contents h1.wp-block-heading + *, .c-page-detail__contents h2 + *, .c-page-detail__contents h3 + *, .c-page-detail__contents h4 + *, .c-page-detail__contents h5 + *, .c-page-detail__contents h6 + *, .c-page-detail__contents wp-block-heading + * {
  margin-top: 3rem;
}
.c-page-detail__contents h1.wp-block-heading {
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents h1.wp-block-heading {
    font-size: 4.2rem;
  }
}
.c-page-detail__contents h2 {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents h2 {
    font-size: 4rem;
  }
}
.c-page-detail__contents h3 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents h3 {
    font-size: 3.6rem;
  }
}
.c-page-detail__contents h4 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents h4 {
    font-size: 3.2rem;
  }
}
.c-page-detail__contents h5 {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents h5 {
    font-size: 3rem;
  }
}
.c-page-detail__contents h6 {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents h6 {
    font-size: 2.8rem;
  }
}
.c-page-detail__contents p {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7647058824;
  letter-spacing: 0.11em;
  text-align: justify;
}
.c-page-detail__contents p + p {
  margin-top: 1em;
}
.c-page-detail__contents p img {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents p {
    font-size: 2.8rem;
  }
}
.c-page-detail__contents ul, .c-page-detail__contents ol {
  list-style-position: inside;
}
.c-page-detail__contents ul li, .c-page-detail__contents ol li {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.7647058824;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents ul li, .c-page-detail__contents ol li {
    font-size: 2.8rem;
  }
}
.c-page-detail__contents ul li {
  list-style-type: disc;
}
.c-page-detail__contents ol li {
  list-style-type: decimal;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .c-page-detail__contents a:not([class]):hover {
    opacity: 0.7;
  }
}
.c-page-detail__contents figure {
  text-align: center;
}
.c-page-detail__contents figcaption {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5384615385;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .c-page-detail__contents figcaption {
    display: block;
    font-size: 2.5rem;
  }
}

.en .c-page-detail__date {
  letter-spacing: normal;
}
.en .c-page-detail__title {
  letter-spacing: normal;
}
.en .c-page-detail__contents h1.wp-block-heading, .en .c-page-detail__contents h2, .en .c-page-detail__contents h3, .en .c-page-detail__contents h4, .en .c-page-detail__contents h5, .en .c-page-detail__contents h6, .en .c-page-detail__contents wp-block-heading {
  letter-spacing: normal;
}
.en .c-page-detail__contents p {
  letter-spacing: normal;
}
.en .c-page-detail__contents ul li, .en .c-page-detail__contents ol li {
  letter-spacing: normal;
}

/* wp
--------------------------------------*/
.wp-block-image {
  overflow: hidden;
  zoom: 1;
  margin: 7.5rem 0 !important;
}
.wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width: 767px) {
  .wp-block-image {
    margin: 4.5rem 0 !important;
  }
}

.wp-block-image img {
  width: initial;
}

.aligncenter {
  margin: 0 auto;
  clear: both;
}

.alignright {
  float: right;
  clear: both;
}

.alignleft {
  float: left;
  clear: both;
}

@media screen and (max-width: 767px) {
  .aligncenter,
  .alignright,
  .alignleft {
    float: none;
    margin: 1rem auto;
    display: block;
  }
  .aligncenter img,
  .alignright img,
  .alignleft img {
    width: 100%;
  }
}
/* ------------------------------
    ユーティリティ
------------------------------ */
.u-bold {
  font-weight: 700;
}

.u-en {
  font-family: "Roboto", serif;
}

.u-bg--white {
  background: #fff;
}
.u-bg--blue {
  background: #0f70b9;
}
.u-bg--navy {
  background: #041c2e;
}
.u-bg--gray {
  background: #f2f2f2;
}

/* ------------------------------
    header
------------------------------ */
.l-header {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 98;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index .l-header {
  background-color: transparent;
}
.l-header.is-change {
  background-color: #fff;
}
.l-header__inner {
  width: 100%;
  height: 7.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    height: 10rem;
  }
}
.l-header__left {
  position: relative;
  height: 7.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__left {
    height: 10rem;
    z-index: 999;
  }
}
.l-header__logo {
  width: 12.3rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 16.6rem;
  }
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__headline {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
}
.index .l-header__headline {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__headline {
    display: none;
  }
}
.l-header__right {
  height: 7.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 4.7rem;
}
@media screen and (max-width: 767px) {
  .l-header__right {
    height: 10rem;
  }
}
.l-header__language {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5rem;
}
.l-header__language--link {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.l-header__language--link a {
  color: #041c2e;
  font-weight: 700;
  font-size: 1.7rem;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__language--link a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__language--link a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__language--link a {
    font-size: 2.8rem;
  }
}
.l-header__language--link:first-child::before {
  position: absolute;
  content: "";
  background: #041c2e;
  width: 1px;
  height: 2rem;
  right: -2.5rem;
  top: 60%;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-header__language--link:first-child::before {
    height: 3.5rem;
    top: 65%;
    -webkit-transform: translateY(-65%) rotate(30deg);
            transform: translateY(-65%) rotate(30deg);
  }
}
.l-header__language--link.is-current a {
  border-bottom: 1px solid #041c2e;
}
.index .l-header__language .l-header__language--link a {
  color: #fff;
}
.index .l-header__language .l-header__language--link:first-child::before {
  background: #fff;
}
.index .l-header__language .l-header__language--link.is-current a {
  border-bottom: 1px solid #fff;
}
.l-header__language.is-change .l-header__language--link a {
  color: #041c2e;
}
.l-header__language.is-change .l-header__language--link:first-child::before {
  background: #041c2e;
}
.l-header__language.is-change .l-header__language--link.is-current a {
  border-bottom: 1px solid #041c2e;
}
.l-header__nav {
  background-color: #041c2e;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 38.4rem;
  height: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 998;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    width: 100%;
  }
}
.l-header__nav-inner {
  overflow-y: auto;
  padding: 0 5rem 6rem;
}
.l-header__nav-inner .l-header__language {
  height: 7.4rem;
}
.l-header__nav-inner .l-header__language--link a {
  color: #fff;
}
.l-header__nav-inner .l-header__language--link:first-child::before {
  background: #fff;
}
.l-header__nav-inner .l-header__language--link.is-current a {
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .l-header__nav-inner {
    padding: 0 0 9rem;
  }
  .l-header__nav-inner .l-header__language {
    height: 10rem;
  }
}
.l-header__trigger {
  position: relative;
  z-index: 999;
  width: 7.4rem;
  height: 7.4rem;
  background: #041c2e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__trigger {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__trigger:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__trigger {
    width: 10rem;
    height: 10rem;
  }
}
.l-header__line {
  position: relative;
  width: 4rem;
  height: 2.9rem;
}
@media screen and (max-width: 767px) {
  .l-header__line {
    width: 5.2rem;
    height: 3.6rem;
  }
}
.l-header__line span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 4rem;
  height: 0.4rem;
  background: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.l-header__line span:nth-of-type(1) {
  top: 0;
}
.l-header__line span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__line span:nth-of-type(3) {
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-header__line span {
    width: 5.2rem;
  }
}
.l-header__menu li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.76rem;
  font-weight: 700;
  padding: 1.5rem 0;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__menu li a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__menu li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    border-top: 1px solid #fff;
    margin-top: 3.5rem;
  }
  .l-header__menu li {
    border-bottom: 1px solid #fff;
    padding: 0 3rem;
  }
  .l-header__menu li a {
    font-size: 2.8rem;
    padding: 2.6rem 0;
  }
  .l-header__menu li a::before {
    position: absolute;
    content: "";
    right: 0.2em;
    top: 50%;
    width: 2rem;
    height: 2rem;
    border-top: solid 0.4rem #fff;
    border-right: solid 0.4rem #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .l-header__menu--btm {
    border-top: none;
  }
  .l-header__menu--btm li {
    border-bottom: none;
    text-align: center;
  }
  .l-header__menu--btm li a {
    padding: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .l-header__menu--btm li a::before {
    display: none;
  }
}
.l-header__tel {
  margin-top: 3rem;
  margin-bottom: 4.5rem;
}
.l-header__tel-link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem 0;
  padding-left: 5.5rem;
}
.l-header__tel-link::before {
  position: absolute;
  content: "";
  background: url("../img/common/icn_header_tel.svg") no-repeat center center/contain;
  width: 4.75rem;
  height: 4.75rem;
  left: 0;
  top: 0;
}
.l-header__tel-number, .l-header__tel-hours {
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1;
  display: inline-block;
}
.l-header__tel-number {
  font-size: 3.14rem;
  font-weight: 500;
}
.l-header__tel-hours {
  font-size: 1.44rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-header__tel-link {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    width: 68.6rem;
    height: 10rem;
    background: #fff;
    padding-left: 25.4rem;
    margin-top: 4.4rem;
  }
  .l-header__tel-link::before {
    background-image: url("../img/common/icn_header_tel_navy.svg");
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 19.8rem;
  }
  .l-header__tel-link::after {
    position: absolute;
    content: "";
    background: #041c2e;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 1.3rem;
    height: 1.4rem;
    right: 3rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
  }
  .l-header__tel-number, .l-header__tel-hours {
    color: #041c2e;
  }
  .l-header__tel-number {
    font-size: 3.4rem;
  }
  .l-header__tel-hours {
    font-size: 1.4rem;
  }
}
.l-header__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 1.6rem;
  margin-bottom: 3rem;
}
.l-header__sns-icn {
  display: block;
  width: 16rem;
}
@media print and (any-hover: hover), screen and (any-hover: hover) and (min-width: 768px) {
  .l-header__sns-icn {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__sns-icn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-header__sns {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-header__sns-icn {
    width: 32rem;
  }
}
.l-header.is-active .l-header__line span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.l-header.is-active .l-header__line span:nth-of-type(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
}
.l-header.is-active .l-header__line span:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
.l-header.is-active .l-header__nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .l-header.is-active .l-header__nav .l-header__language {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 13rem;
  }
}

.en .l-header__tel-hours .sm {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .en .l-header__tel-hours {
    font-size: 1.65rem;
  }
  .en .l-header__tel-hours .sm {
    font-size: 1.4rem;
  }
  .en .l-header__tel-link {
    padding-left: 20rem;
  }
  .en .l-header__tel-link::before {
    left: 13.5rem;
    top: 1.2em;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.en .l-header__headline {
  letter-spacing: normal;
}

/* ------------------------------
    footer
------------------------------ */
.l-footer {
  width: 100%;
  background: #fff;
}
.l-footer__contact {
  background: #041c2e;
  padding: 2.8rem 0 5.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    padding: 8rem 0 10rem;
  }
}
.l-footer__txt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 2.125;
  letter-spacing: 0.11em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__txt {
    font-size: 3rem;
  }
}
.l-footer__flex {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #fff;
  margin-top: 1.8rem;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.8rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__tel *, .l-footer__hours {
  color: #fff;
  letter-spacing: 0.11em;
  display: inline-block;
}
.l-footer__tel {
  position: relative;
  padding-left: 5.5rem;
  padding-bottom: 0.3em;
}
.l-footer__tel::before {
  position: absolute;
  content: "";
  background: url("../img/common/icn_footer_tel.svg") no-repeat center center/contain;
  width: 4.2rem;
  height: 4.2rem;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__tel {
    padding-left: 7.2rem;
    padding-bottom: 0;
  }
  .l-footer__tel::before {
    width: 6rem;
    height: 6rem;
  }
}
.l-footer__tel-link {
  font-size: 4.14rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__tel-link {
    font-size: 6rem;
  }
}
.l-footer__hours {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .l-footer__hours {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__btn {
    margin-top: 4rem;
  }
}
.l-footer__copy {
  font-size: 1.4rem;
  letter-spacing: 0.11em;
  text-align: center;
  color: #041c2e;
  padding: 4.5rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    font-size: 2.4rem;
  }
}

.en .l-footer__txt {
  letter-spacing: normal;
}
.en .l-footer__hours {
  letter-spacing: normal;
  font-size: 1.4rem;
  line-height: 1.3;
  padding-bottom: 0.4em;
}
.en .l-footer__hours .sm {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .en .l-footer__hours {
    font-size: 2.4rem;
  }
  .en .l-footer__hours .sm {
    font-size: 2.1rem;
  }
}
.en .l-footer__tel {
  padding-left: 7.5rem;
  padding-bottom: 0.3em;
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 1366px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden; /* 隙間対応 */
  font-size: 0.1em; /* 隙間対応 */
  line-height: 0; /* 隙間対応 */
}
/*# sourceMappingURL=common.css.map */