@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&family=Roboto:wght@500&family=Noto+Sans+JP:wght@400;500;700&family=Shippori+Mincho+B1:wght@400;500;600;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --text-color: #333;
  --main-color: #008081;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-mincho: "Shippori Mincho B1", serif;
  --font-family-en: "EB Garamond", serif;
  --font-family-en-gothic: "Roboto", sans-serif;
  --font-size-base-pc: 1.4rem;
  --font-size-base-sp: 1.4rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1919px) {
  html {
    font-size: calc(40% + 0.25vw);
  }
}
@media only screen and (max-width: 1099px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

.en {
  font-family: var(--font-family-en);
}

a {
  color: var(--text-color);
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-header {
  height: 65px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100vw;
}

.l-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  position: relative;
}
.l-main::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  opacity: 0;
  visibility: hidden;
}

.l-main__content {
  width: calc(100% - 52rem);
}

.l-main__navigation {
  width: 52rem;
}

.modal-open,
.menu-open {
  overflow: hidden;
}
.modal-open .l-main::after,
.menu-open .l-main::after {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .l-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-main__content {
    width: 100%;
  }
  .l-main__navigation {
    width: 100%;
    min-width: initial;
    position: relative;
    top: initial;
    right: initial;
  }
}
@media (max-width: 767px) {
  .l-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-main__content {
    width: 100%;
  }
  .l-main__navigation {
    width: 100%;
    min-width: initial;
    position: relative;
    top: initial;
    right: initial;
  }
}
.inner {
  width: 93.75%;
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.l-container {
  padding-left: 4vw;
  padding-right: 4vw;
}

.c-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  border-radius: 10rem;
  padding: 1.8rem;
  background-color: #fff;
  width: 15.5rem;
  color: var(--main-color);
  font-size: 1.8rem;
  font-weight: 700;
}
.c-btn:hover {
  background-color: var(--main-color);
  color: #fff;
}
.c-btn.blue {
  background-color: var(--main-color);
  color: #fff;
}
.c-btn.blue:hover {
  background-color: #fff;
  color: var(--main-color);
}

.c-btn-border {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  border-radius: 10rem;
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
}
.c-btn-border .icon,
.c-btn-border img {
  width: 3rem;
}
.c-btn-border span {
  margin-left: 0.4rem;
}
.c-btn-border:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.c-btn-allow {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  border-radius: 10rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  width: 7rem;
  height: 7rem;
  border: 1px solid #fff;
  color: #fff;
  position: relative;
}
.c-btn-allow::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon_button_allow.svg) no-repeat center/contain;
  position: relative;
  z-index: 1;
  margin-bottom: 0.1rem;
}
.c-btn-allow::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 10rem;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-btn-allow:hover::after {
  background: url(../img/common/icon_button_allow_b.svg) no-repeat center/contain;
}
.c-btn-allow:hover::before {
  width: 100%;
  height: 100%;
}
.c-btn-allow.blue {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.c-btn-allow.blue::before {
  background-color: var(--main-color);
}
.c-btn-allow.blue::after {
  background: url(../img/common/icon_button_allow_b.svg) no-repeat center/contain;
}
.c-btn-allow.blue:hover::after {
  background: url(../img/common/icon_button_allow.svg) no-repeat center/contain;
}

@media (max-width: 767px) {
  .c-btn-allow {
    width: 5.2rem;
    height: 5.2rem;
  }
  .c-btn-allow::after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .c-btn-border:hover {
    background-color: initial;
    border-color: initial;
  }
}
.input-text {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #CDD6DD;
  font-size: 1.6rem;
}
.input-text::-webkit-input-placeholder {
  color: #CDD6DD;
}
.input-text::-moz-placeholder {
  color: #CDD6DD;
}
.input-text:-ms-input-placeholder {
  color: #CDD6DD;
}
.input-text::-ms-input-placeholder {
  color: #CDD6DD;
}
.input-text::placeholder {
  color: #CDD6DD;
}

.input-textarea {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #CDD6DD;
  font-size: 1.6rem;
}
.input-textarea::-webkit-input-placeholder {
  color: #CDD6DD;
}
.input-textarea::-moz-placeholder {
  color: #CDD6DD;
}
.input-textarea:-ms-input-placeholder {
  color: #CDD6DD;
}
.input-textarea::-ms-input-placeholder {
  color: #CDD6DD;
}
.input-textarea::placeholder {
  color: #CDD6DD;
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #fff;
  vertical-align: middle;
  padding: 1.6rem 2.4rem 1.6rem 1.6rem;
  border: 1px solid #CDD6DD;
  outline: 0;
  font-size: 1.6rem;
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 767px) {
  .input-text {
    padding: 1.4rem 0.5rem;
  }
}
.c-bread-crumb {
  font-size: 1.2rem;
}
.c-bread-crumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 0;
  line-height: 1;
  overflow-x: auto;
  white-space: nowrap;
}
.c-bread-crumb ul li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  list-style: none;
}
.c-bread-crumb ul li:not(:first-child) a {
  padding-left: 1rem;
}
.c-bread-crumb ul li:not(:first-child):before {
  position: absolute;
  top: 50%;
  display: block;
  content: "";
  width: 1rem;
  height: 1px;
  border-bottom: 1px solid var(--text-color);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-bread-crumb ul li a {
  padding-right: 1rem;
  text-decoration: none;
}
.c-bread-crumb ul li span {
  padding-left: 1rem;
}

.none-visual .c-bread-crumb {
  margin-bottom: 6.4rem;
}
.none-visual .c-bread-crumb .container {
  border-bottom: 1px solid #CDD6DD;
}

@media (max-width: 767px) {
  .c-bread-crumb {
    font-size: 1rem;
  }
}
.p-header__logo {
  width: 550px;
  height: auto;
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: initial;
}
.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-header__logo img {
  width: 100%;
}

.p-header__navi {
  position: fixed;
  right: -100vw;
  top: 0;
  z-index: 11;
  width: 52rem;
  height: 100vh;
  overflow-y: scroll;
  background-color: var(--main-color);
  padding: 10rem 4rem 4rem 4rem;
  -webkit-transition-duration: 0.3s, 0.4s;
          transition-duration: 0.3s, 0.4s;
}

.menu-open .p-header__navi {
  right: 0;
}

@media (max-width: 767px) {
  .p-header__navi {
    right: -100vw;
    width: 100vw;
    padding: 8rem 2.4rem 10rem 2.4rem;
  }
  .p-header__logo {
    width: 270px;
    height: auto;
    top: 17px;
    left: 16px;
  }
}
.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
}
.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24rem;
}
.p-footer__logo a img {
  width: 100%;
  height: auto;
}

.p-footer__copyright {
  font-size: 1rem;
  font-family: var(--font-family-en-gothic);
  text-align: center;
}

.p-gotop {
  margin: 6rem 0;
  padding-bottom: 4rem;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-gotop .icon {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 4rem;
  height: 4rem;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.p-gotop .icon:hover {
  opacity: 0.5;
}
.p-gotop .icon img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .p-gotop {
    margin: 4.8rem 0;
  }
  .p-gotop .icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.p-loading {
  width: 100vw;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.is_loaded .p-loading {
  opacity: 0;
  visibility: hidden;
}

.p-gnavi h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  margin-bottom: 1.6rem;
}
.p-gnavi h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  bottom: 3.8rem;
}
.p-gnavi h2 span {
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}
.p-gnavi .p-gnavi__content-navi .parent {
  background-color: #339B9A;
  color: #fff;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-gnavi .p-gnavi__content-navi .parent .content-name {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 4.8rem;
}
.p-gnavi .p-gnavi__content-navi .parent .content-name > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 4.8rem);
  padding: 0 0 0 2rem;
  font-size: 2rem;
  letter-spacing: 0.14em;
  font-family: "EB Garamond", "Shippori Mincho B1", serif;
}
.p-gnavi .p-gnavi__content-navi .parent .content-name > i {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-gnavi .p-gnavi__content-navi .parent .content-name > i::before, .p-gnavi .p-gnavi__content-navi .parent .content-name > i::after {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-gnavi .p-gnavi__content-navi .parent .content-name > i::before {
  left: calc(50% - 1px);
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-gnavi .p-gnavi__content-navi .parent.active {
  background-color: #66B4B3;
}
.p-gnavi .p-gnavi__content-navi .parent.active .content-name > i {
  background-color: #000;
}
.p-gnavi .p-gnavi__content-navi .parent.active .content-name > i::before, .p-gnavi .p-gnavi__content-navi .parent.active .content-name > i::after {
  background-color: #fff;
}
.p-gnavi .p-gnavi__content-navi .parent.active .content-name > i::before {
  left: 50%;
  -webkit-transform: rotate(0) translate(-50%, -50%);
          transform: rotate(0) translate(-50%, -50%);
}
.p-gnavi .p-gnavi__content-navi .child.p-keyword-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem 0;
}
.p-gnavi .p-gnavi__content-navi .child.p-keyword-navi .item {
  position: relative;
  margin-bottom: 0;
  padding: 0;
}
.p-gnavi .p-gnavi__content-navi .child.p-keyword-navi .item:hover {
  background-color: initial;
  text-decoration: underline;
}
.p-gnavi .p-gnavi__content-navi .child.p-keyword-navi .item:not(:last-of-type) {
  margin-right: 1rem;
  padding-right: 1.4rem;
}
.p-gnavi .p-gnavi__content-navi .child.p-keyword-navi .item:not(:last-of-type)::after {
  content: "/";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.p-gnavi .p-gnavi__content-navi .child.p-keyword-navi .item .title {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--main-color);
  font-family: var(--font-family-base);
  font-weight: 400;
}
.p-gnavi .p-gnavi__content-navi .child:not(.p-keyword-navi) a,
.p-gnavi .p-gnavi__content-navi .nested-child a {
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0 0 0 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.p-gnavi .p-gnavi__content-navi .child:not(.p-keyword-navi) a::before,
.p-gnavi .p-gnavi__content-navi .nested-child a::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 1px;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  top: 1.2rem;
  left: 0;
}
.p-gnavi .p-gnavi__content-navi .nested-child li {
  margin-top: 0.8rem;
}
.p-gnavi .p-gnavi__content-navi .child {
  background-color: #fff;
  color: var(--main-color);
  padding: 1.6rem 2.6rem 2.4rem 2.6rem;
  display: none;
}
.p-gnavi .p-gnavi__content-navi .child dt {
  margin-bottom: 0.6rem;
}
.p-gnavi .p-gnavi__content-navi .child dd:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.p-gnavi .p-gnavi__content-navi .nested-child {
  margin-left: 2rem;
}
.p-gnavi .p-gnavi__content-navi .nested-child li:not(:last-of-type) {
  margin-bottom: 0.6rem;
}
.p-gnavi .p-gnavi__topic-navi {
  margin-top: 3.2rem;
}
.p-gnavi .p-gnavi__topic-navi > .item:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-gnavi .p-gnavi__topic-navi > .item.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
}
.p-gnavi .p-gnavi__topic-navi > .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  color: var(--main-color);
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "EB Garamond", "Shippori Mincho B1", serif;
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
}
.p-gnavi .p-gnavi__topic-navi > .item a:hover {
  background-color: #cce6e6;
}
.p-gnavi .p-gnavi__user-navi {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-gnavi .p-gnavi__user-navi > .item {
  width: calc((100% - 1.6rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-gnavi .p-gnavi__user-navi > .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #339B9A;
  color: #fff;
  border-radius: 4px;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-family: "EB Garamond", "Shippori Mincho B1", serif;
  font-weight: 600;
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
}
.p-gnavi .p-gnavi__user-navi > .item a:hover {
  background-color: #66B4B3;
}
.p-gnavi .p-gnavi__user-navi > .item.student {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-gnavi .p-gnavi__user-navi > .item.student a {
  border-radius: 4px;
}
.p-gnavi .p-gnavi__user-navi > .item.student a:first-of-type {
  margin-bottom: 0.8rem;
}
.p-gnavi .p-gnavi__other-navi {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1.4rem;
}
.p-gnavi .p-gnavi__other-navi a {
  color: #fff;
  display: block;
  position: relative;
  padding-right: 1.4rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  border-right: 1px solid #fff;
  text-decoration: none;
}
.p-gnavi .p-gnavi__other-navi a:first-of-type {
  padding-left: 1.6rem;
  border-left: 1px solid #fff;
}

@media (hover: hover) and (pointer: fine) {
  .p-gnavi .p-gnavi__content-navi .parent:hover {
    background-color: #66B4B3;
  }
  .p-gnavi .p-gnavi__content-navi .parent:hover .content-name > i {
    background-color: #000;
  }
  .p-gnavi .p-gnavi__content-navi .parent:hover .content-name > i::before, .p-gnavi .p-gnavi__content-navi .parent:hover .content-name > i::after {
    background-color: #fff;
  }
  .p-gnavi .p-gnavi__content-navi .child:not(.p-keyword-navi) a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .p-gnavi h2 {
    font-size: 4rem;
  }
  .p-gnavi h2::after {
    bottom: 3rem;
  }
  .p-gnavi .p-gnavi__content-navi .parent .content-name > span {
    font-size: 1.8rem;
  }
  .p-gnavi .p-gnavi__content-navi .child:not(.p-keyword-navi) a::before,
  .p-gnavi .p-gnavi__content-navi .nested-child a::before {
    top: 1rem;
  }
  .p-gnavi .p-gnavi__user-navi > .item a {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }
  .p-gnavi .p-gnavi__other-navi {
    gap: 0 0.8rem;
  }
  .p-gnavi .p-gnavi__other-navi a {
    padding-right: 0.8rem;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    line-height: 1;
  }
  .p-gnavi .p-gnavi__other-navi a:first-of-type {
    padding-left: 0.8rem;
    border-left: 1px solid #fff;
  }
}
.p-menu-btn {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: 65px;
  height: 65px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--main-color);
  position: absolute;
  z-index: 1;
  left: calc(50% - 11px);
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.p-menu-btn span.l1 {
  top: 22px;
}
.p-menu-btn span.l2 {
  top: 30px;
}
.p-menu-btn span.l3 {
  top: 38px;
}

@media (hover: hover) and (pointer: fine) {
  .p-menu-btn:hover {
    background-color: #000;
  }
  .p-menu-btn:hover span {
    background-color: #fff;
  }
}
.menu-open .p-menu-btn {
  background-color: #000;
}
.menu-open .p-menu-btn span {
  -webkit-transform: scaleX(1.2);
          transform: scaleX(1.2);
  background-color: #fff;
}
.menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
  top: 30px;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(135deg) scaleX(1.4);
          transform: rotate(135deg) scaleX(1.4);
}
.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-135deg) scaleX(1.4);
          transform: rotate(-135deg) scaleX(1.4);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

.p-post-body {
  /* 見出し */
  /* 段落 */
  /* リスト */
  /* レイアウト */
  /* カラム */
  /* 引用 */
  /* 表 */
  /* ギャラリー */
  /* 詩 */
  /* ボタン */
  /* WP Page Navi */
}
.p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
  line-height: 1.5;
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.p-post-body h1 {
  color: var(--main-color);
  font-family: var(--font-family-mincho);
  font-weight: 500;
  font-size: 3.2rem;
  margin-top: 4rem;
}
.p-post-body h1.post-title {
  font-size: 4rem;
  margin-bottom: 5.6rem;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 1.6rem;
  margin-top: 0;
}
.p-post-body h2 {
  font-size: 2.4rem;
  margin-top: 2.4rem;
}
.p-post-body h3 {
  font-size: 1.8rem;
  margin-top: 1.8rem;
}
.p-post-body h4 {
  color: var(--main-color);
  margin-top: var(--font-size-base-pc);
  font-size: var(--font-size-base-pc);
}
.p-post-body h5 {
  margin-top: var(--font-size-base-pc);
  font-size: var(--font-size-base-pc);
}
.p-post-body p.none-margin {
  margin-bottom: 0;
}
.p-post-body .wp-block-image {
  margin-bottom: 4rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.4rem;
  margin: 0.4rem 0 0 0;
}
.p-post-body .wp-block-media-text {
  font-size: 1.4rem;
}
.p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 8% 0 0;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 8%;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.p-post-body .wp-block-columns {
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote {
  overflow-wrap: break-word;
  margin-bottom: 4rem;
  font-size: 1.4rem;
}
.p-post-body .wp-block-quote p {
  border-left: 2px solid var(--text-color);
  padding: 0 0 0 1.4rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.2rem;
  padding: 0 0 0 2rem;
  color: #acacac;
}
.p-post-body .wp-block-table {
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
.p-post-body .wp-block-table table {
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr {
  border-bottom: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr td {
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post-body .wp-block-table figcaption {
  font-size: 1.2rem;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.2rem;
  margin: 0;
  position: relative !important;
  background: none !important;
  color: #000 !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.p-post-body .wp-block-verse {
  margin-bottom: 4rem;
}
.p-post-body .wp-block-buttons .wp-block-button {
  margin-bottom: 1rem;
}
.p-post-body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 2px solid #A0A0A0;
  color: var(--color-green);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.4rem;
  padding: 1rem 1.6rem 1.3rem 1.6rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-post-body .wp-block-button__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}
.p-post-body.container {
  max-width: 90rem;
}
.p-post-body .wp-pagenavi {
  margin-top: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-post-body .wp-pagenavi a,
.p-post-body .wp-pagenavi span {
  border: none;
}

/* 区切り線 */
.wp-block-separator {
  margin: 4rem 0;
  border: none !important;
  border-bottom: 1px solid #CDD6DD !important;
}

.page-feature .p-post-body.container {
  max-width: 138rem;
}

@media (max-width: 767px) {
  .p-post-body {
    /* 画像 */
    /* レイアウト */
  }
  .p-post-body h1.post-title {
    font-size: 2.8rem;
    margin-bottom: 2.8rem;
  }
  .p-post-body h2 {
    font-size: 2.2rem;
    margin-top: 2.2rem;
  }
  .p-post-body h3 {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
  .p-post-body h4 {
    margin-top: var(--font-size-base-sp);
    font-size: var(--font-size-base-sp);
  }
  .p-post-body h5 {
    margin-top: var(--font-size-base-sp);
    font-size: var(--font-size-base-sp);
  }
  .p-post-body .wp-block-image {
    margin-bottom: 4rem;
  }
  .p-post-body .wp-block-image.size-full {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.4rem;
    margin: 0.4rem 6% 0 6%;
  }
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
}
.p-404 {
  text-align: center;
  font-weight: 500;
  padding: 24rem 0 20rem 0;
}
.p-404 .p-404-heading {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-weight: 700;
  color: var(--main-color);
}
.p-404 .p-404-heading span {
  display: block;
  font-size: 3rem;
  letter-spacing: 0.05em;
}
.p-404 .p-404-heading span:first-of-type {
  font-size: 16rem;
  margin-bottom: 2rem;
}

.p-404-content p {
  line-height: 2;
}

.p-404-back-navi {
  margin-top: 4rem;
}
.p-404-back-navi a {
  margin-left: auto;
  margin-right: auto;
  padding: 2.2rem 2rem 2.6rem 2rem;
  width: 32rem;
  font-weight: 600;
  border: 1px solid #95989A;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-404 .p-404-heading span {
    font-size: 2.6rem;
  }
  .p-404 .p-404-heading span:first-of-type {
    font-size: 12rem;
    margin-bottom: 1rem;
  }
  .p-404-back-navi {
    margin-top: 4rem;
  }
  .p-404-back-navi a {
    padding: 1.8rem 2rem 2rem 2rem;
    width: 26rem;
  }
}
.page-top .l-header {
  background-color: initial;
}
.page-top .p-header__logo {
  position: fixed;
  width: 160px;
  top: 16px;
  left: 16px;
}
.page-top .l-main__content {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.page-top .l-main__navigation {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--main-color);
  color: #fff;
  padding: 10rem 4rem 4rem 4rem;
}
.page-top .p-top-content__news,
.page-top .l-main__navigation > * {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}
.page-top .p-top-content__news.active,
.page-top .l-main__navigation > *.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .page-top .p-header__logo {
    width: 550px;
    position: absolute;
  }
  .page-top .p-header__logo .hide-mobile {
    display: none;
  }
  .page-top .p-header__logo .show-mobile.tablet {
    display: block;
  }
  .page-top .l-main__content {
    height: initial;
    position: relative;
    top: initial;
    left: initial;
    margin-top: 65px;
  }
  .page-top .l-main__navigation {
    position: relative;
    top: initial;
    right: initial;
    padding: 10rem 10% 3rem 10%;
  }
  .page-top .p-top-content__news {
    padding-left: 15%;
    padding-right: 15%;
  }
  .page-top .p-content-navigation {
    margin-top: 10rem;
  }
  .page-top .p-program-navi {
    margin-top: 10rem;
  }
}
@media (max-width: 767px) {
  .page-top .p-header__logo {
    position: absolute;
    width: 270px;
    height: auto;
    top: 17px;
    left: 16px;
  }
  .page-top .p-header__logo .show-mobile.tablet {
    display: none;
  }
  .page-top .l-main__content {
    height: initial;
    position: relative;
    top: initial;
    left: initial;
    margin-top: 65px;
  }
  .page-top .l-main__navigation {
    position: relative;
    top: initial;
    right: initial;
    padding: 4rem 2.4rem 3.2rem 2.4rem;
  }
  .page-top .p-content-navigation {
    margin-top: 6rem;
  }
  .page-top .p-program-navi {
    margin-top: 6rem;
  }
}
.p-top-visual {
  height: calc(100vh - 22rem);
  position: relative;
}
.p-top-visual .swiper {
  width: 100%;
  height: 100%;
}
.p-top-visual .swiper .swiper-slide {
  position: relative;
}
.p-top-visual .swiper .swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
}
.p-top-visual .swiper .swiper-slide .swiper-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-top-visual .swiper .swiper-slide-active .swiper-img,
.p-top-visual .swiper .swiper-slide-duplicate-active .swiper-img,
.p-top-visual .swiper .swiper-slide-prev .swiper-img {
  -webkit-animation: swiperZoomUp 9s linear 0s normal both;
          animation: swiperZoomUp 9s linear 0s normal both;
}

@-webkit-keyframes swiperZoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}

@keyframes swiperZoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .p-top-visual {
    height: 69.56vw;
  }
}
@media (max-width: 767px) {
  .p-top-visual {
    height: 90vw;
  }
}
.p-top-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding: 0 0 7.2rem 4.8rem;
}

.p-top-content__copy {
  width: 77%;
  max-width: 56rem;
}
.p-top-content__copy.active .mask:nth-child(1) {
  -webkit-animation: copyMaskAnime 1s cubic-bezier(0.9, 0, 0.1, 1) 0s forwards;
          animation: copyMaskAnime 1s cubic-bezier(0.9, 0, 0.1, 1) 0s forwards;
}
.p-top-content__copy.active .mask:nth-child(1) img {
  -webkit-animation: copyImgAnime 3s cubic-bezier(0, 0.15, 0.01, 1) 0s forwards;
          animation: copyImgAnime 3s cubic-bezier(0, 0.15, 0.01, 1) 0s forwards;
}
.p-top-content__copy.active .mask:nth-child(2) {
  -webkit-animation: copyMaskAnime 1s cubic-bezier(0.9, 0, 0.1, 1) 0.2s forwards;
          animation: copyMaskAnime 1s cubic-bezier(0.9, 0, 0.1, 1) 0.2s forwards;
}
.p-top-content__copy.active .mask:nth-child(2) img {
  -webkit-animation: copyImgAnime 3s cubic-bezier(0, 0.15, 0.01, 1) 0.2s forwards;
          animation: copyImgAnime 3s cubic-bezier(0, 0.15, 0.01, 1) 0.2s forwards;
}
.p-top-content__copy .mask {
  position: relative;
  overflow: hidden;
  will-change: width;
  width: 0;
  height: 0;
  padding-top: 36%;
}
.p-top-content__copy img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@-webkit-keyframes copyMaskAnime {
  0% {
    width: 0;
  }
  100% {
    width: 101%;
  }
}

@keyframes copyMaskAnime {
  0% {
    width: 0;
  }
  100% {
    width: 101%;
  }
}
@-webkit-keyframes copyImgAnime {
  0% {
    -webkit-transform: translateX(4rem);
            transform: translateX(4rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes copyImgAnime {
  0% {
    -webkit-transform: translateX(4rem);
            transform: translateX(4rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-top-content__news {
  background-color: #fff;
  margin-top: 4rem;
}
.p-top-content__news .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.4rem;
}
.p-top-content__news .head h2 {
  line-height: 1;
  margin-right: 2rem;
  color: var(--main-color);
}
.p-top-content__news .head h2 span {
  font-family: var(--font-family-en);
  font-size: 4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.p-top-content__news .head .tabs {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}
.p-top-content__news .head .tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 0.8rem 0.8rem;
  margin-top: 0.7rem;
}
.p-top-content__news .head .tabs ul li {
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.6rem 0.8rem 0.7rem 0.8rem;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-top-content__news .head .tabs ul li:hover, .p-top-content__news .head .tabs ul li.active {
  background-color: var(--main-color);
  color: #fff;
}
.p-top-content__news .content ul {
  display: none;
}
.p-top-content__news .content ul:first-of-type {
  display: block;
}
.p-top-content__news .content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--main-color);
}
.p-top-content__news .content ul li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-top-content__news .content ul li .date {
  width: 8rem;
}
.p-top-content__news .content ul li .category,
.p-top-content__news .content ul li .date {
  margin-right: 1rem;
  padding-right: 1rem;
  border-right: 1px solid var(--main-color);
}
.p-top-content__news .content ul li .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--main-color);
  padding-bottom: 1px;
}
.p-top-content__news .content ul li .title:hover {
  text-decoration: underline !important;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .p-top-content {
    position: relative;
    left: initial;
    bottom: initial;
    width: 84%;
    min-width: initial;
    z-index: 1;
    padding: 0 0 6rem 0;
    margin-top: -25%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-content__news {
    margin-top: 7vw;
  }
  .p-top-content__copy {
    width: 57vw;
  }
}
@media (max-width: 767px) {
  .p-top-content {
    position: relative;
    left: initial;
    bottom: initial;
    width: auto;
    min-width: initial;
    z-index: 1;
    padding: 0 0 4rem 0;
    margin-top: -32%;
    margin-left: 2.4rem;
    margin-right: 2.4rem;
  }
  .p-top-content__copy {
    width: 84%;
    margin-left: initial;
    margin-right: initial;
  }
  .p-top-content__news {
    margin-top: 8vw;
  }
  .p-top-content__news .head {
    margin-bottom: 2rem;
  }
  .p-top-content__news .head h2 span {
    font-size: 3.2rem;
  }
  .p-top-content__news .head .tabs {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .p-top-content__news .head .tabs ul li {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  .p-top-content__news .content ul li {
    font-size: 1.2rem;
  }
  .p-top-content__news .content ul li .category,
  .p-top-content__news .content ul li .title {
    letter-spacing: 0;
  }
}
.p-top-message {
  line-height: 2.4;
  font-family: var(--font-family-mincho);
  font-weight: 600;
  margin-bottom: 10rem;
}

.p-top-message__body {
  font-size: 1.5rem;
  line-height: 2.6;
}

.p-top-message__copy {
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin-top: 2.6rem;
}

@media (max-width: 767px) {
  .p-top-message__body {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .p-top-message__copy {
    font-size: 2.2rem;
  }
}
.p-top-news {
  margin-bottom: 7.2rem;
}
.p-top-news h2 {
  font-size: 4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: relative;
  margin-bottom: 0.8rem;
}
.p-top-news h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  bottom: 2.4rem;
}
.p-top-news h2 span {
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
  padding-right: 1rem;
}

.p-top-news__list li {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 1.8rem 0;
}
.p-top-news__list li a {
  color: #fff;
  text-decoration: none;
}
.p-top-news__list li a:hover {
  opacity: 0.75;
}
.p-top-news__list li .meta {
  line-height: 1;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-news__list li .meta .date {
  margin-right: 1rem;
  padding-right: 1.2rem;
  border-right: 1px solid #fff;
}
.p-top-news__list li .title {
  font-weight: normal;
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.p-top-news__navi {
  margin-top: 3.2rem;
}
.p-top-news__navi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #339B9A;
  color: #fff;
  border-radius: 4px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-family: "EB Garamond", "Shippori Mincho B1", serif;
  padding: 2rem 1rem;
  text-align: center;
  text-decoration: none;
}
.p-top-news__navi a:hover {
  background-color: #66B4B3;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .p-top-news {
    margin-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .p-top-news h2 {
    font-size: 3.2rem;
  }
  .p-top-news h2::after {
    bottom: 2rem;
  }
  .p-top-news__navi a {
    font-size: 1.5rem;
  }
}
.p-top-keyword {
  margin-bottom: 4rem;
}
.p-top-keyword h2 {
  font-size: 4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  position: relative;
  margin-bottom: 0.8rem;
}
.p-top-keyword h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  bottom: 2.4rem;
}
.p-top-keyword h2 span {
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
  padding-right: 1rem;
}
.p-top-keyword .p-top-keyword__intro {
  font-size: 1.3rem;
  margin-bottom: 3.2rem;
}

.p-top-keyword__content {
  display: none;
}

@media (max-width: 767px) {
  .p-top-keyword h2 {
    font-size: 3.2rem;
  }
  .p-top-keyword h2::after {
    bottom: 2rem;
  }
}
.p-keyword-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4rem 1rem;
}
.p-keyword-navi .item {
  cursor: pointer;
  background-color: #fff;
  padding: 0.5rem 0.8rem;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-keyword-navi .item:hover {
  background-color: #CCE6E6;
}
.p-keyword-navi .item .title {
  font-family: var(--font-family-mincho);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.p-keyword-navi .item .content {
  display: none;
}

.p-keyword-navi__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--main-color);
  z-index: 13;
  padding: 8rem 4rem 4rem 4rem;
  width: 56rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.p-keyword-navi__modal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.8rem;
  height: 4.8rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.p-keyword-navi__modal .btn-close:hover {
  background-color: #000;
}
.p-keyword-navi__modal .btn-close::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/common/icon_close_g.svg) no-repeat center;
  background-size: contain;
}
.p-keyword-navi__modal .head {
  margin-bottom: 3.2rem;
  color: #fff;
}
.p-keyword-navi__modal .head .name {
  font-family: var(--font-family-mincho);
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.p-keyword-navi__modal .head span {
  font-size: 1.4rem;
}
.p-keyword-navi__modal .navigation a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  margin-bottom: 1rem;
  padding: 1.2rem 1rem 1.2rem 2rem;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  text-decoration: none;
}
.p-keyword-navi__modal .navigation a:hover {
  background-color: #CCE6E6;
  text-decoration: none;
}
.p-keyword-navi__modal .navigation a::after {
  content: "";
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/common/icon_keyword_navi_link.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.4rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-keyword-navi__modal .navigation a span {
  color: var(--main-color);
  font-family: var(--font-family-mincho);
  font-weight: 700;
}
.p-keyword-navi__modal .navigation a span.division {
  width: 10.4rem;
  font-size: 1.4rem;
  padding-right: 3rem;
  position: relative;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.p-keyword-navi__modal .navigation a span.division::after {
  content: "";
  display: block;
  height: 1px;
  width: 1rem;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  right: 1rem;
  top: calc(50% - 1px);
}
.p-keyword-navi__modal .navigation a span.name {
  font-size: 2rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .p-keyword-navi__modal {
  opacity: 1;
  visibility: visible;
}
.modal-open .l-main::after {
  z-index: 12;
}

@media (max-width: 767px) {
  .p-keyword-navi .item .title {
    font-size: 1.4rem;
  }
  .p-keyword-navi__modal {
    min-width: initial;
    width: 96%;
    padding: 8rem 1.4rem 2rem 1.4rem;
  }
  .p-keyword-navi__modal .head span {
    font-size: 1.2rem;
  }
  .p-keyword-navi__modal .head .name {
    font-size: 2rem;
  }
  .p-keyword-navi__modal .navigation a {
    padding: 1.4rem 1rem 1.6rem 1.4rem;
  }
  .p-keyword-navi__modal .navigation a::after {
    width: 3rem;
    height: 3rem;
  }
  .p-keyword-navi__modal .navigation a span {
    letter-spacing: 0;
  }
  .p-keyword-navi__modal .navigation a span.division {
    font-size: 1.2rem;
    width: 9.8rem;
  }
  .p-keyword-navi__modal .navigation a span.name {
    font-size: 1.6rem;
  }
}
.p-program-navi {
  margin-top: 6.4rem;
}
.p-program-navi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  overflow: hidden;
  position: relative;
  margin-bottom: 2.4rem;
}
.p-program-navi a::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 54.54%;
}
.p-program-navi a::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-program-navi a:hover::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.p-program-navi a:hover picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-program-navi a picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-program-navi a picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.p-program-navi a .title {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-program-navi a .title span {
  font-family: var(--font-family-mincho);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.p-program-navi a .title span:first-of-type {
  font-size: 1.4rem;
}
.p-program-navi a .title span:last-of-type {
  font-size: 2.4rem;
}
.p-program-navi a .link {
  position: absolute;
  z-index: 1;
  bottom: 1.5rem;
  right: 1.6rem;
  letter-spacing: 0.02em;
  background: url(../img/top/icon_allow.svg) no-repeat right center;
  background-size: 1.6rem auto;
  padding: 0 2.4rem 0 0;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .p-program-navi a .title span:last-of-type {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .p-program-navi a .title span:last-of-type {
    font-size: 2.2rem;
  }
}
.page-program .l-header {
  background-color: initial;
}
.page-program .p-header__logo {
  position: fixed;
  width: 160px;
  top: 16px;
  left: 16px;
}
.page-program .l-main {
  background-color: var(--main-color);
}
.page-program .l-main__content {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
}
.page-program .l-main__navigation {
  position: absolute;
  top: 65px;
  right: 0;
  background-color: var(--main-color);
  color: #fff;
  padding: 4rem 4rem 4rem 4rem;
}
.page-program .p-keyword-navi {
  gap: 1rem 0.6rem;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .page-program .l-header {
    position: absolute;
  }
  .page-program .p-header__logo {
    position: absolute;
  }
  .page-program .p-header__logo .hide-mobile {
    display: block;
  }
  .page-program .p-header__logo .show-mobile.tablet {
    display: none;
  }
  .page-program .l-main__content {
    height: initial;
    position: relative;
    top: initial;
    left: initial;
  }
  .page-program .l-main__navigation {
    position: relative;
    top: initial;
    right: initial;
    padding: 8rem 10% 4rem 10%;
  }
}
@media (max-width: 767px) {
  .page-program .l-header {
    background-color: #fff;
  }
  .page-program .p-header__logo {
    position: absolute;
    width: 270px;
    height: auto;
    top: 17px;
    left: 16px;
  }
  .page-program .p-header__logo .show-mobile.tablet {
    display: none;
  }
  .page-program .l-main {
    background-color: initial;
  }
  .page-program .l-main__content {
    height: initial;
    position: relative;
    top: initial;
    left: initial;
    margin-top: 65px;
  }
  .page-program .l-main__navigation {
    position: relative;
    top: initial;
    right: initial;
    padding: 6.4rem 2.4rem 3rem 2.4rem;
  }
}
.p-program-visual {
  height: calc(100vh - 35rem);
  position: relative;
  background-color: #fff;
}
.p-program-visual .swiper {
  width: 100%;
  height: 100%;
}
.p-program-visual .swiper .swiper-slide {
  position: relative;
}
.p-program-visual .swiper .swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
}
.p-program-visual .swiper .swiper-slide .swiper-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-program-visual .swiper .swiper-slide-active .swiper-img,
.p-program-visual .swiper .swiper-slide-duplicate-active .swiper-img,
.p-program-visual .swiper .swiper-slide-prev .swiper-img {
  -webkit-animation: swiperZoomUp 8s linear 0s normal both;
          animation: swiperZoomUp 8s linear 0s normal both;
}

@keyframes swiperZoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.06);
            transform: scale(1.06);
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .p-program-visual {
    height: 69.56vw;
  }
}
@media (max-width: 767px) {
  .p-program-visual {
    height: 69.56vw;
  }
}
.p-program-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  padding: 5rem 5% 4rem 5%;
  background-color: #fff;
}

.p-program-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4.8rem;
  color: var(--main-color);
}
.p-program-content__head h1 {
  font-family: var(--font-family-mincho);
  line-height: 1.4;
  width: calc(100% - 14rem);
}
.p-program-content__head h1 span {
  display: block;
}
.p-program-content__head h1 span.division {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.p-program-content__head h1 span.name {
  font-size: 4.8rem;
  font-weight: 500;
}
.p-program-content__head h1 span.en {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 0.8rem;
}
.p-program-content__head .p-program-content__navi {
  width: 12rem;
}
.p-program-content__head .p-program-content__navi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12rem;
  height: 12rem;
  border-radius: 4px;
  color: #fff;
  position: relative;
  background-color: var(--main-color);
  text-decoration: none;
}
.p-program-content__head .p-program-content__navi a:hover {
  background-color: #339B9A;
}
.p-program-content__head .p-program-content__navi a .allow {
  width: 2.2rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-program-content__head .p-program-content__navi a .allow img {
  width: 100%;
  margin-bottom: 0.6rem;
}
.p-program-content__head .p-program-content__navi a span {
  position: absolute;
  bottom: 0.8rem;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.p-program-content__keyword h2 {
  color: var(--main-color);
  position: relative;
  font-family: var(--font-family-mincho);
  font-size: 2rem;
  margin-bottom: 1.6rem;
}
.p-program-content__keyword h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid var(--main-color);
  position: absolute;
  right: 0;
  bottom: 1.6rem;
}
.p-program-content__keyword h2 span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-right: 1.6rem;
}
.p-program-content__keyword .p-keyword-navi {
  position: relative;
}
.p-program-content__keyword .p-keyword-navi .item {
  border: 1px solid var(--main-color);
  margin-right: 0.8rem;
}
.p-program-content__keyword .p-keyword-navi .slick-list {
  width: 100%;
}
.p-program-content__keyword .p-keyword-navi .slick-arrow {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-program-content__keyword .p-keyword-navi .slick-arrow:hover {
  opacity: 0.75;
}
.p-program-content__keyword .p-keyword-navi .slick-prev {
  display: none !important;
}
.p-program-content__keyword .p-keyword-navi .slick-next {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  width: 3.6rem;
  height: 3.6rem;
  background-color: #fff;
  cursor: pointer;
  font-size: 0;
  cursor: pointer;
}
.p-program-content__keyword .p-keyword-navi .slick-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_keyword_navi_link.svg);
  background-size: 80% auto;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2px;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .p-program-content {
    position: relative;
    left: initial;
    bottom: initial;
    width: 100%;
    padding: 5rem 5% 6rem 5%;
  }
}
@media (max-width: 767px) {
  .p-program-content {
    position: relative;
    left: initial;
    bottom: initial;
    width: 100%;
    padding: 3.4rem 2.4rem 4.8rem 2.4rem;
  }
  .p-program-content__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 5.6rem;
  }
  .p-program-content__head h1 {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-program-content__head h1 span.division {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
  .p-program-content__head h1 span.name {
    font-size: 2.8rem;
  }
  .p-program-content__head h1 span.en {
    font-size: 1.3rem;
  }
  .p-program-content__head .p-program-content__navi {
    width: 100%;
  }
  .p-program-content__head .p-program-content__navi a {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.4rem 1.4rem 1.4rem 2rem;
  }
  .p-program-content__head .p-program-content__navi a span {
    position: relative;
    bottom: initial;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
  }
  .p-program-content__head .p-program-content__navi a .allow {
    width: 1rem;
    height: auto;
    margin-bottom: 0;
  }
  .p-program-content__head .p-program-content__navi a .allow img {
    margin-bottom: 0;
  }
}
.p-program-list-navi {
  display: block;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.p-program-list-navi a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--font-family-mincho);
  padding: 1.2rem 2rem;
  background: #339B9A url(../img/program/icon_allow_hplink.svg) no-repeat right 1.6rem center;
  background-size: 1rem auto;
  border-radius: 4px;
}
.p-program-list-navi a:not(:last-of-type) {
  margin-bottom: 1rem;
}
.p-program-list-navi a:hover {
  background-color: #66B4B3;
  text-decoration: none;
}
.p-program-list-navi a span.division {
  width: 10.4rem;
  font-size: 1.4rem;
  padding-right: 3rem;
  position: relative;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.p-program-list-navi a span.division::after {
  content: "";
  display: block;
  height: 1px;
  width: 1rem;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 1rem;
  top: calc(50% - 1px);
}
.p-program-list-navi a span.name {
  font-size: 2rem;
}

@media (max-width: 767px) {
  .p-program-list-navi a {
    padding: 1.4rem 1.8rem;
  }
  .p-program-list-navi a span.division {
    font-size: 1.2rem;
    width: 9.8rem;
  }
  .p-program-list-navi a span.name {
    font-size: 1.6rem;
  }
}
.p-program-body {
  margin-bottom: 8rem;
}
.p-program-body h2, .p-program-body h3, .p-program-body h4, .p-program-body h5 {
  font-family: var(--font-family-mincho);
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-program-body h2 {
  font-size: 2.8rem;
}
.p-program-body h3 {
  font-size: 2.4rem;
}
.p-program-body h4 {
  font-size: 2rem;
}
.p-program-body h5 {
  font-size: 1.6rem;
}
.p-program-body p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.p-program-body p.t-mincho {
  font-family: var(--font-family-mincho);
  font-size: 1.5rem;
}
.p-program-body hr {
  height: 0px;
  border-top: 1px solid #fff;
  padding: 0;
  margin-top: 4.8rem;
  margin-bottom: 4rem;
}
.p-program-body hr.dotted {
  border-top: 1px dotted #fff;
}

.p-program-body__employment h2 {
  font-family: var(--font-family-base);
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}
.p-program-body__employment h2 .attention {
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .p-program-body h2 {
    font-size: 2.4rem;
  }
  .p-program-body h3 {
    font-size: 2rem;
  }
  .p-program-body h4 {
    font-size: 1.6rem;
  }
  .p-program-body h5 {
    font-size: var(--font-size-base-sp);
  }
  .p-program-body__employment h2 {
    font-size: 2rem;
  }
}
.page-post .p-menu-btn {
  background-color: var(--main-color);
}
.page-post .p-menu-btn span {
  background-color: #fff;
}
.page-post .p-menu-btn:hover {
  background-color: #000;
}
.page-post .l-main {
  min-height: 100vh;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page-post .l-main__content {
  width: calc(100% - 46rem);
  min-height: 100vh;
  padding-bottom: 8rem;
}
.page-post .l-main__navigation {
  width: 46rem;
  min-height: calc(100vh - 300px);
  margin-top: 300px;
  background-color: var(--main-color);
  color: #fff;
  padding: 10rem 4rem 4rem 4rem;
}
.page-post .c-bread-crumb {
  margin-bottom: 3.2rem;
}

.menu-open.page-post .p-menu-btn {
  background-color: #000;
}

@media (min-width: 768px) and (max-width: 1099px) {
  .page-post .l-main {
    min-height: initial;
  }
  .page-post .l-main__content {
    width: 100%;
    min-height: initial;
    height: auto;
  }
  .page-post .l-main__navigation {
    width: 100%;
    min-height: initial;
    height: auto;
    margin-top: 0;
    padding: 6rem 20% 6rem 20%;
  }
}
@media (max-width: 767px) {
  .page-post .p-header__logo {
    width: 270px;
    height: auto;
    top: 17px;
    left: 16px;
  }
  .page-post .l-main {
    min-height: initial;
  }
  .page-post .l-main__content {
    width: 100%;
    min-height: initial;
    height: auto;
  }
  .page-post .l-main__navigation {
    width: 100%;
    min-height: initial;
    height: auto;
    margin-top: 0;
    padding: 6rem 2.4rem 6rem 2.4rem;
  }
}
.p-post-visual {
  position: relative;
  height: 300px;
  width: 100vw;
  overflow: hidden;
}
.p-post-visual .title {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.4rem 3.2rem 0.4rem 4vw;
  font-family: var(--font-family-mincho);
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-post-visual {
    width: 100%;
  }
}
.p-post-navigation {
  position: sticky;
  top: 8rem;
}

.p-post-navigation__menu h2 {
  font-family: var(--font-family-mincho);
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 2.4rem;
}
.p-post-navigation__menu nav {
  margin-bottom: 2.4rem;
}
.p-post-navigation__menu nav h3 {
  font-weight: 500;
  font-size: var(--font-size-base-pc);
  margin-bottom: 0.8rem;
}
.p-post-navigation__menu nav a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 0 0 0 1.4rem;
  line-height: 1.4;
  text-decoration: none;
}
.p-post-navigation__menu nav a:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.p-post-navigation__menu nav a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1px;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 1.2rem;
  left: 0;
}

.p-post-navigation__top-back {
  margin-top: 4.8rem;
}
.p-post-navigation__top-back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #339B9A;
  color: #fff;
  font-family: var(--font-family-mincho);
  font-size: 1.8rem;
  padding: 1rem 2rem 1.2rem 2rem;
  border-radius: 4px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .p-post-navigation {
    position: relative;
    top: initial;
  }
  .p-post-navigation__menu h2 nav h3 {
    font-size: var(--font-size-base-sp);
  }
}
.p-content {
  overflow-x: scroll;
}

.p-content .w1 {
  display: inline-block;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 874, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .w2 {
  display: inline-block;
  width: 47%;
  margin: 0 1% 2%;
  vertical-align: top;
}

.p-content .photogallery {
  max-width: 70rem;
}

.p-content img {
  max-width: 100%;
}

/* line 880, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .photogallery div figure img, .p-content .w2 img {
  width: 100%;
}

/* line 883, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .w3 {
  display: inline-block;
  width: 30%;
  margin: 0 1% 2%;
  vertical-align: top;
}

/* line 888, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .w3 img {
  width: 100%;
}

/* line 892, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content ol {
  margin-left: 1em;
}

/* line 894, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content ol li {
  list-style-type: decimal;
}

/* line 898, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content ul {
  margin-left: 2rem;
}

/* line 900, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content ul li {
  list-style-type: disc;
  margin-bottom: 4px;
}

/* line 904, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

/* line 908, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content table td {
  border: solid 1px #333;
  padding: 0.5em 1em;
}

/* line 912, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content table th {
  border: solid 1px #333;
  padding: 0.5em 1em;
  background-color: #f2f2f2;
  font-weight: bold;
  white-space: nowrap;
}

/* line 920, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
/* line 926, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
/* line 931, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
/* line 935, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content div {
  margin-bottom: 5.6rem;
}

/* line 938, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content a {
  color: var(--main-color);
  text-decoration: underline;
}

/* line 942, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .bg_blue, .p-content .bg_gray, .p-content .bg_red, .p-content .ph_title {
  background-color: #e3f1f8;
  padding: 20px;
}

/* line 946, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .bg_red {
  background-color: #ffeeee;
}

/* line 949, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .bg_gray {
  background-color: #f2f2f2;
}

/* line 952, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .bold {
  font-weight: bold;
}

/* line 955, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .red {
  color: red;
}

/* line 958, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
}

/* line 962, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .nomark li {
  list-style: none;
}

/* line 965, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .center {
  text-align: center;
}

/* line 968, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .mgn_b20 {
  margin-bottom: 20px;
}

/* line 971, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .ph_title {
  margin-bottom: 20px;
  padding: 10px;
}

/* line 975, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .photogallery {
  margin-top: 1em;
}

/* line 977, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .photogallery div {
  margin-bottom: 0;
}

/* line 979, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .photogallery div figure {
  margin: 0 0 1rem 0;
}

/* line 983, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .photogallery div::after {
  content: "\f078";
  clear: both;
  display: block;
  font-family: fontawesome;
  color: var(--main-color);
  height: 2em;
  width: 100%;
  font-size: 2em;
  text-align: center;
}

/* line 994, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .photogallery div:last-child::after {
  display: none;
}

/* line 999, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .rishu {
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  /* line 1007, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content img {
    max-width: 100%;
    height: auto;
  }
  /* line 1011, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .button {
    display: inline-block;
    width: 100%;
  }
  /* line 1015, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .gakubutyo_ph {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1em;
  }
  /* line 1020, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .gakubutyo_ph img {
    width: auto;
  }
  /* line 1024, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .scroll {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 1em;
    font-size: 0.7em;
  }
  /* line 1029, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .scroll::-webkit-scrollbar {
    height: 5px;
  }
  /* line 1032, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  /* line 1035, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  /* line 1039, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
  .p-content .photogallery div figure {
    float: none;
    width: 100%;
  }
}
/* line 1894, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
.p-content .button, .u-btnlink {
  padding: 1em 2em;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.p-content .button:after, .p-link__item a:after, .u-arrow__right:after, .u-btnlink:after {
  content: "\f054";
  font-family: fontawesome;
  margin-left: 0.5em;
  display: inline-block;
}

/* line 1929, ../../../../Creative Cloud Files/k_鹿児島大学/工学部/wordpress/kadaieng/css/object/before.scss */
#p-el div::after, .p-content .photogallery::after, .p-topics::after, .u-clearfix::after {
  content: "";
  clear: both;
  display: block;
}

#p-sitemap {
  margin-left: 0;
}
#p-sitemap > li {
  list-style-type: none;
  margin-bottom: 4rem;
}
#p-sitemap > li p {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: var(--main-color);
}

.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.hide-mobile-inline {
  display: inline-block;
}

@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
  .br-mobile {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */