@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: inherit;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

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

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

a,
button {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, background-image 0.3s ease, background 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, background-image 0.3s ease, background 0.3s ease;
}
@media (any-hover: hover) {
  a:hover,
  button:hover {
    opacity: 0.7;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

table {
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
textarea {
  -webkit-appearance: none;
  border: none;
  font-family: inherit;
  border-radius: 0;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus {
  outline: 0;
}

textarea {
  resize: vertical;
}
textarea:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

::-ms-input-placeholder {
  color: #767676;
}

::placeholder {
  color: #767676;
}

p {
  line-break: strict;
}

/* ---------------------------------------
  html , body
-----------------------------------------*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1250px) {
  html {
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #061238;
  -webkit-text-size-adjust: 100%;
  overflow: auto;
  position: relative;
}
body.active {
  overflow: hidden;
}

/* ---------------------------------------
  .wrap
-----------------------------------------*/
.wrap {
  width: 110rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap {
    width: 34.3rem;
  }
}

/* ============ 変数宣言 ============ */
:root {
  /* color */
  --clr-main: #38ace0;
  --clr-sub01: #3b2290;
  --clr-accent: #061238;
  --clr-bg: #f4f6fc;
  --clr-bg-gray: #f8f8f8;
  --clr-bg-lightblue: #c7e5f5;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-txt: #061238;
  --clr-txt-gray: #333;
  --clr-txt-light: #666;
  --clr-border: #e0e0e0;
  --clr-yellow: #fff79f;
  /* font-weight */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;
  /* 余白 */
  --gutter: 32px;
  /* コンテンツ幅 */
  --col-2: calc((100% - (var(--gutter) * 1)) / 2);
  --col-3: calc((100% - (var(--gutter) * 2)) / 3);
  --col-4: calc((100% - (var(--gutter) * 3)) / 4);
  /* 基本余白 */
  --sp-05: 4px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 60px;
  --sp-10: 80px;
  /* タイトルサイズ */
  --h1-fz: 74px;
  --h2-fz: 42px;
  --h3-fz: 32px;
  --h4-fz: 24px;
  --h5-fz: 20px;
  --h6-fz: 18px;
  --base-fz: 16px;
  --small-fz: 14px;
  --tiny-fz: 12px;
  --large-fz: 18px;
}

@media screen and (max-width: 767px) {
  :root {
    /* color */
    --clr-main: #38ace0;
    --clr-sub01: #3b2290;
    --clr-accent: #061238;
    --clr-bg: #f4f6fc;
    --clr-bg-gray: #f8f8f8;
    --clr-bg-lightblue: #c7e5f5;
    --clr-white: #fff;
    --clr-black: #000;
    --clr-txt: #061238;
    --clr-txt-gray: #333;
    --clr-txt-light: #666;
    --clr-border: #e0e0e0;
    --clr-yellow: #fff79f;
    /* font-weight */
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --black: 900;
    /* 基本余白 */
    --sp-05: calc((4 / 390) * 100vw);
    --sp-1: calc((8 / 390) * 100vw);
    --sp-2: calc((16 / 390) * 100vw);
    --sp-3: calc((24 / 390) * 100vw);
    --sp-4: calc((32 / 390) * 100vw);
    --sp-5: calc((40 / 390) * 100vw);
    --sp-6: calc((48 / 390) * 100vw);
    --sp-8: calc((60 / 390) * 100vw);
    --sp-10: calc((80 / 390) * 100vw);
    /* 余白 */
    --gutter: var(--sp-2);
    /* コンテンツ幅 */
    --col-2: calc((100% - (var(--gutter) * 1)) / 2);
    --col-3: calc((100% - (var(--gutter) * 2)) / 3);
    --col-4: calc((100% - (var(--gutter) * 3)) / 4);
    /* タイトルサイズ */
    --h1-fz: calc((74 / 390) * 100vw);
    --h2-fz: calc((42 / 390) * 100vw);
    --h3-fz: calc((32 / 390) * 100vw);
    --h4-fz: calc((26 / 390) * 100vw);
    --h5-fz: calc((20 / 390) * 100vw);
    --h6-fz: calc((18 / 390) * 100vw);
    --base-fz: calc((16 / 390) * 100vw);
    --small-fz: calc((14 / 390) * 100vw);
    --tiny-fz: calc((12 / 390) * 100vw);
    --large-fz: calc((18 / 390) * 100vw);
  }
}
/* ---------------------------------------
  header（PC）
-----------------------------------------*/
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.08);
            box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.08);
  }
  .header * {
    line-height: 1.5;
  }
  .header__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: var(--sp-4) var(--sp-2);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header.scrolled .header__inner {
    padding: var(--sp-2) var(--sp-2);
  }
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--sp-1);
  }
  .header__logo-img {
    height: 20px;
    width: 331px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__badge {
    background: var(--clr-white);
    border: 1px solid var(--clr-white);
    padding: 1px var(--sp-1);
    font-size: 10px;
    color: #171616;
    font-weight: var(--regular);
    line-height: 1.5;
    border-radius: 0;
  }
  .header__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-left: auto;
  }
  .header__cta-button {
    background: -webkit-gradient(linear, left top, right top, from(var(--clr-main)), to(var(--clr-sub01)));
    background: linear-gradient(90deg, var(--clr-main) 0%, var(--clr-sub01) 100%);
    color: var(--clr-white);
    padding: 14px 0;
    width: 195px;
    text-align: center;
    border-radius: var(--sp-05);
    font-size: 14px;
    font-weight: var(--bold);
    letter-spacing: 0.56px;
    border: none;
    cursor: pointer;
    height: 42px;
    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;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .header__cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right top, from(#3b2290), to(#38ace0));
    background: linear-gradient(to right, #3b2290, #38ace0);
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: var(--sp-05);
  }
  .header__cta-button:hover {
    opacity: 1;
  }
  .header__cta-button:hover::before {
    opacity: 1;
  }
}
/* ---------------------------------------
  header（SP）
-----------------------------------------*/
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.08);
            box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.08);
  }
  .header * {
    line-height: 1.5;
  }
  .header__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: var(--sp-1) var(--sp-1);
  }
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--sp-1);
  }
  .header__logo-img {
    /* height: 20px;
    width: 331px; */
    /* width: 208px; */
    width: 44.8717948718vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header__badge {
    zoom: 0.9;
    background: var(--clr-white);
    border: 1px solid var(--clr-white);
    padding: 1px 2px;
    font-size: 10px;
    color: #171616;
    font-weight: var(--regular);
    line-height: 1.5;
    border-radius: 0;
  }
  .header__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin-left: auto;
  }
  .header__cta-button {
    background: -webkit-gradient(linear, left top, right top, from(var(--clr-main)), to(var(--clr-sub01)));
    background: linear-gradient(90deg, var(--clr-main) 0%, var(--clr-sub01) 100%);
    color: var(--clr-white);
    padding: 14px 0;
    width: 195px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: var(--bold);
    letter-spacing: 0.56px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    height: 42px;
    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;
  }
  .header__menu-button {
    background: -webkit-gradient(linear, left top, right top, from(var(--clr-main)), to(var(--clr-sub01)));
    background: linear-gradient(90deg, var(--clr-main) 0%, var(--clr-sub01) 100%);
    color: var(--clr-white);
    padding: 0 2.5641025641vw;
    width: auto;
    min-width: 20vw;
    text-align: center;
    border-radius: 1.0256410256vw;
    font-size: 3.5897435897vw;
    font-weight: var(--bold);
    letter-spacing: 0.14vw;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    height: 8.4615384615vw;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2.5641025641vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .header__menu-button:hover {
    opacity: 0.9;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  .header__menu-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.7692307692vw;
    width: 3.0769230769vw;
  }
  .header__menu-line {
    width: 100%;
    height: 0.2564102564vw;
    background: var(--clr-white);
    display: block;
    border-radius: 0.2564102564vw;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__menu-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.0769230769vw;
    letter-spacing: 0.13vw;
    line-height: 1;
    font-weight: var(--bold);
  }
  /* Navigation Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
  }
  .nav-menu * {
    line-height: 1.5;
  }
  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
  }
  .nav-menu__content {
    position: relative;
    width: 100%;
    height: 100%;
    background: repeat center/contain url("../img/pattern1.webp"), rgba(248, 248, 248, 0.9607843137);
    padding: 20.5128205128vw 5.1282051282vw 10.2564102564vw;
    overflow-y: auto;
  }
  .nav-menu__close {
    position: fixed;
    top: 5.1282051282vw;
    right: 5.1282051282vw;
    background: transparent;
    border: none;
    cursor: pointer;
    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;
    gap: 1.5384615385vw;
    padding: 0;
    z-index: 10;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .nav-menu__close:hover {
    opacity: 0.7;
  }
  .nav-menu__close-icon {
    position: relative;
    width: 6.4102564103vw;
    height: 6.4102564103vw;
  }
  .nav-menu__close-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.7692307692vw;
    border-radius: 1.0256410256vw;
    background: var(--clr-txt);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .nav-menu__close-line:first-child {
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .nav-menu__close-line:last-child {
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
  }
  .nav-menu__close-text {
    font-size: 2.8205128205vw;
    color: var(--clr-txt);
    font-weight: var(--medium);
    line-height: 1;
  }
  .nav-menu__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: 15.3846153846vw;
  }
  .nav-menu__top {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .nav-menu__bottom {
    width: min(100%, 436px);
  }
  .nav-menu__header {
    margin-bottom: 6.1538461538vw;
  }
  .nav-menu__header h3,
  .nav-menu__header p {
    font-weight: var(--bold);
  }
  .nav-menu__header h3 {
    font-size: 6.4102564103vw;
    margin-bottom: 4.1025641026vw;
  }
  .nav-menu__header p {
    font-size: var(--base-fz);
  }
  .nav-menu__button {
    width: min(100%, 436px);
    height: 12.3076923077vw;
    margin-inline: auto;
    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;
    background: -webkit-gradient(linear, left top, right top, from(#38ace0), to(#3b2290));
    background: linear-gradient(to right, #38ace0, #3b2290);
    border-radius: var(--sp-05);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .nav-menu__button:hover {
    background: -webkit-gradient(linear, left top, right top, from(#3b2290), to(#38ace0));
    background: linear-gradient(to right, #3b2290, #38ace0);
  }
  .nav-menu__button span {
    font-size: var(--small-fz);
    font-weight: var(--bold);
    color: var(--clr-white);
    letter-spacing: 0.04em;
  }
  .nav-menu__map {
    margin-bottom: 4.1025641026vw;
    width: 100%;
    height: 74.1025641026vw;
    border: 1.5384615385vw solid var(--clr-white);
    overflow: hidden;
  }
  .nav-menu__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }
  .nav-menu__textbox {
    margin-bottom: 2.0512820513vw;
  }
  .nav-menu__textbox p {
    font-size: var(--base-fz);
  }
  .nav-menu__textbox p:nth-of-type(1) {
    font-weight: var(--bold);
  }
  .nav-menu__textbox p:not(:last-child) {
    margin-bottom: 4.1025641026vw;
  }
  .nav-menu__link span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: 0 auto;
    font-size: var(--small-fz);
    font-weight: var(--regular);
    color: #3a5efa;
    padding-right: 6.1538461538vw;
    position: relative;
    text-decoration: underline;
  }
  .nav-menu__link span::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    margin-block: auto;
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    background: no-repeat center/contain url("../img/sec11_deco1.webp");
  }
}
/* ---------------------------------------
  floating-entry
-----------------------------------------*/
@media screen and (max-width: 767px) {
  .floating-entry {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    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;
    width: 100%;
    padding: 4.6153846154vw 6.1538461538vw 4.6153846154vw;
    background: rgba(6, 18, 56, 0.6);
    text-decoration: none;
    -webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .floating-entry span {
    position: relative;
    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;
    width: 87.6923076923vw;
    height: 15.3846153846vw;
    background: -webkit-gradient(linear, left top, right top, from(#38ace0), to(#3b2290));
    background: linear-gradient(90deg, #38ace0 0%, #3b2290 100%);
    border-radius: 1.0256410256vw;
    color: #fff;
    font-size: 4.1025641026vw;
    font-weight: var(--bold);
    text-align: center;
    line-height: 1.4;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .floating-entry span::after {
    content: "";
    position: absolute;
    right: 4.1025641026vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    background-image: url("../img/icon_floating-entry.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .floating-entry:active span {
    opacity: 0.8;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
}
/* ---------------------------------------
  footer（PC）
-----------------------------------------*/
@media screen and (min-width: 768px) {
  [class*=__wrapper-m] {
    width: min(100%, 1100px);
    margin-inline: auto;
  }
  .footer {
    padding-block: var(--sp-6) var(--sp-5);
    background-color: #061238;
  }
  .footer * {
    line-height: 1.5;
  }
  .footer .footer__box,
  .footer .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    gap: var(--sp-1);
  }
  .footer .footer__box {
    border-bottom: 1px solid var(--clr-white);
    padding-bottom: var(--sp-6);
    margin-bottom: var(--sp-5);
  }
  .footer .footer__address {
    margin-inline: auto;
  }
  .footer .footer__address span {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
  .footer .footer__list {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    gap: var(--sp-3);
  }
  .footer .footer__item a {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
  .footer .footer__copyright {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
}
/* ---------------------------------------
  footer（SP）
-----------------------------------------*/
@media screen and (max-width: 767px) {
  .sp-px {
    padding-inline: var(--sp-2);
  }
  .footer {
    padding-block: var(--sp-5) var(--sp-2);
    padding-bottom: calc(var(--sp-5) + 20.5128205128vw);
    background-color: #061238;
  }
  .footer * {
    line-height: 1.5;
  }
  .footer .footer__box,
  .footer .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: var(--sp-2);
  }
  .footer .footer__box {
    border-bottom: 1px solid var(--clr-white);
    padding-bottom: var(--sp-5);
    margin-bottom: var(--sp-5);
  }
  .footer .footer__address {
    margin-inline: auto;
  }
  .footer .footer__address span {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
  .footer .footer__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
  }
  .footer .footer__item a {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
  .footer .footer__copyright {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
}
/* ---------------------------------------
  .top_page_ttl
-----------------------------------------*/
.top_page_ttl {
  position: relative;
}
.top_page_ttl .wrap {
  position: absolute;
  left: 50%;
  bottom: -7.2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top_page_ttl .wrap {
    width: 100%;
    left: 0;
    bottom: -5.8rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.top_page_ttl .ttl_box {
  background-color: #fff;
  padding: 2rem 3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .top_page_ttl .ttl_box {
    margin-left: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .top_page_ttl .ttl_box {
    padding: 1.2rem 1.6rem;
  }
}
.top_page_ttl .ttl_box .en {
  font-size: 1.2rem;
  font-weight: 700;
}
.top_page_ttl .ttl_box .ja {
  font-size: 5.4rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top_page_ttl .ttl_box .ja {
    font-size: 3.2rem;
  }
}

/* ---------------------------------------
  .blog_list
-----------------------------------------*/
.blog_list .blog_list_clm a {
  display: block;
  border-radius: 4px;
  border: solid 0.5px #061238;
}
.blog_list .blog_list_clm a .img {
  width: 100%;
  aspect-ratio: 170/91;
}
.blog_list .blog_list_clm a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.blog_list .blog_list_clm a .txt_box {
  padding: 2.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .blog_list .blog_list_clm a .txt_box {
    padding: 1.6rem;
  }
}
.blog_list .blog_list_clm a .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #061238;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .blog_list .blog_list_clm a .ttl {
    font-size: 1.6rem;
  }
}
.blog_list .blog_list_clm a .cat_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
}
.blog_list .blog_list_clm a .cat_list li {
  padding: 0.6rem;
  font-size: 1.2rem;
  background-color: #EAEEFB;
  border-radius: 4px;
  color: #061238;
}
.blog_list .blog_list_clm a .data {
  font-size: 1.2rem;
  color: #7A7A7A;
  margin-top: 0.8rem;
}

/* ---------------------------------------
  .blog_list_box
-----------------------------------------*/
.blog_list_box {
  margin: 11.2rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .blog_list_box {
    margin: 8.2rem 0 4rem;
  }
}
.blog_list_box .blog_nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .blog_list_box .blog_nav .nav_list {
    gap: 1.2rem;
  }
}
.blog_list_box .blog_nav .nav_list li a {
  padding: 1.6rem;
  background-color: #fff;
  color: #061238;
  border: solid 1px #061238;
  border-radius: 4px;
  font-size: 1.6rem;
  display: block;
}
.blog_list_box .blog_nav .nav_list li.active a {
  background-color: #061238;
  color: #fff;
}
.blog_list_box .blog_list {
  margin-top: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4rem 1fr 4rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .blog_list_box .blog_list {
    margin-top: 4.8rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.4rem 0;
  }
}
.blog_list_box .pager {
  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;
  gap: 0 2.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .blog_list_box .pager {
    gap: 0 1rem;
    margin-top: 6.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog_list_box .pager .arrow {
  padding: 0.7rem 0.5rem;
  border: solid 1px #061238;
  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;
  border-radius: 4px;
  height: 3.7rem;
}
@media screen and (max-width: 767px) {
  .blog_list_box .pager .arrow {
    height: 2.9em;
    aspect-ratio: 1/1;
  }
}
.blog_list_box .pager .arrow::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog_list_box .pager .arrow::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.blog_list_box .pager .arrow.prev::before {
  background: url(../img/icon_pager_prev.svg) no-repeat center/cover;
}
.blog_list_box .pager .arrow.next::before {
  background: url(../img/icon_pager_next.svg) no-repeat center/cover;
}
.blog_list_box .pager .number {
  height: 3.7rem;
  padding: 0.7rem 1.4rem 0.9rem;
  border: solid 1px #061238;
  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;
  border-radius: 4px;
  background-color: #fff;
  color: #061238;
  line-height: 150%;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .blog_list_box .pager .number {
    height: 2.9rem;
    padding: 0.7rem 0.9rem 0.9rem;
    aspect-ratio: 1/1;
  }
}
.blog_list_box .pager .number.active {
  color: #fff;
  background-color: #061238;
}

/* ---------------------------------------
  .footer_entry_box
-----------------------------------------*/
.footer_entry_box {
  background: url(../img/bg_entry.png);
  padding: 8.1rem 0 7.9rem;
}
@media screen and (max-width: 767px) {
  .footer_entry_box {
    padding: 4rem 0;
  }
}
.footer_entry_box .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4rem;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.4rem 1.6rem;
    border-radius: 4px;
  }
}
.footer_entry_box .entry_box {
  width: 54.5rem;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .entry_box {
    width: 100%;
  }
}
.footer_entry_box .entry_box .ttl {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .entry_box .ttl {
    font-size: 2.4rem;
  }
}
.footer_entry_box .entry_box .lead {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .entry_box .lead {
    font-size: 1.6rem;
    margin-top: 1.6rem;
    line-height: 150%;
  }
}
.footer_entry_box .entry_box .btn {
  margin: 6.4rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .entry_box .btn {
    margin-top: 2.4rem;
    width: 100%;
  }
}
.footer_entry_box .entry_box .btn a {
  display: block;
  width: 43.6rem;
  height: 7rem;
  line-height: 7rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  background: -webkit-gradient(linear, left top, right top, from(rgb(56, 172, 224)), to(rgb(59, 34, 144)));
  background: linear-gradient(90deg, rgb(56, 172, 224) 0%, rgb(59, 34, 144) 100%);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .footer_entry_box .entry_box .btn a {
    width: 100%;
    font-size: 1.6rem;
  }
}
.footer_entry_box .company_box {
  width: 43.6rem;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .company_box {
    width: 100%;
    margin-top: 3.2rem;
  }
}
.footer_entry_box .company_box .img img {
  border-radius: 4px;
}
.footer_entry_box .company_box .name {
  margin-top: 3.9rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .company_box .name {
    font-size: 1.4rem;
  }
}
.footer_entry_box .company_box .address {
  font-size: 1.6rem;
  line-height: 150%;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .company_box .address {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
}
.footer_entry_box .company_box .map {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footer_entry_box .company_box .map {
    margin-top: 0.8rem;
  }
}
.footer_entry_box .company_box .map a {
  font-size: 1.4rem;
  color: #3A5EFA;
  text-decoration: underline;
  padding-right: 2.4rem;
  position: relative;
}
.footer_entry_box .company_box .map a::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon_blank.svg) no-repeat center/cover;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* ---------------------------------------
  .detail_page_ttl
-----------------------------------------*/
.detail_page_ttl {
  background-color: #E9F1F6;
  padding: 5rem 0 8rem;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl {
    padding: 0 0 6.4rem;
  }
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .wrap {
    width: 100%;
  }
}
.detail_page_ttl .img {
  width: 76.6rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .img {
    width: 100%;
    margin-left: 0;
  }
}
.detail_page_ttl .ttl {
  width: 70rem;
  background-color: #061238;
  padding: 2.4rem;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 140%;
  margin-top: -2.4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .ttl {
    width: 35.9rem;
    padding: 1.6rem 3.2rem 1.6rem 1.6rem;
    font-size: 2.8rem;
    margin-top: -1rem;
  }
}
.detail_page_ttl .cat_list {
  margin-top: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .cat_list {
    margin-left: 1.6rem;
  }
}
.detail_page_ttl .cat_list li {
  padding: 0.6rem;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .cat_list li {
    font-size: 1.4rem;
  }
}
.detail_page_ttl .data {
  margin-top: 2.4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .data {
    margin-top: 1.6rem;
    margin-left: 1.6rem;
    font-size: 1.4rem;
  }
}
.detail_page_ttl .heading_ttl {
  margin-top: 2.4rem;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .heading_ttl {
    margin: 6.4rem 1.6rem 0;
    font-size: 2.4rem;
    line-height: 150%;
  }
}
.detail_page_ttl .heading_txt {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .detail_page_ttl .heading_txt {
    font-size: 1.6rem;
    margin: 1.6rem 1.6rem 0;
  }
}

/* ---------------------------------------
  .post
-----------------------------------------*/
.post {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .post {
    margin-top: 6.4rem;
  }
}
@media screen and (min-width: 768px) {
  .post .wrap {
    width: 76rem;
  }
}
.post .post_clm + .post_clm {
  margin-top: 7.2rem;
}
.post * {
  overflow-wrap: anywhere;
}
.post * + * {
  margin-top: 2.4rem;
}
.post br {
  margin-top: 0;
}
.post h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .post h2 {
    font-size: 2.4rem;
  }
}
.post h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .post h3 {
    font-size: 1.8rem;
  }
}
.post p {
  font-size: 1.6rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .post p {
    font-size: 1.4rem;
  }
}
.post a {
  color: #061238;
  text-decoration: underline;
}
.post .wp-block-image {
  width: 100%;
}
.post .wp-block-image .aligncenter > figcaption,
.post .wp-block-image .alignleft > figcaption,
.post .wp-block-image .alignright > figcaption {
  margin-top: 0.5em;
  display: block;
}
.post .wp-block-image.aligncenter > figcaption, .post .wp-block-image.alignleft > figcaption,
.post .wp-block-image .alignright > figcaption {
  margin-top: 0.5em;
  display: block;
}
.post .wp-block-image.alignright > img {
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  .post .wp-block-image.alignright > img {
    margin-left: 0;
    margin-right: 0;
  }
}
.post .wp-block-image.alignleft > img {
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .post .wp-block-image.alignleft > img {
    margin-left: 0;
    margin-right: 0;
  }
}
.post .wp-block-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .post .wp-block-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem 0;
  }
}
.post .wp-block-columns .wp-block-column:nth-of-type(1) {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .post .wp-block-columns .wp-block-column:nth-of-type(1) {
    width: 100%;
  }
}
.post .wp-block-columns .wp-block-column:nth-of-type(2) {
  width: 50%;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .post .wp-block-columns .wp-block-column:nth-of-type(2) {
    width: 100%;
  }
}
.post .wp-block-columns .wp-block-column .wp-block-image {
  width: 100%;
}
.post .wp-block-columns .wp-block-column .wp-block-image img {
  width: 100%;
}
.post .wp-block-embed.aligncenter {
  width: initial;
}
.post .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 800/450;
}
@media screen and (max-width: 767px) {
  .post .wp-block-embed.is-type-video .wp-block-embed__wrapper {
    width: 100%;
  }
}
.post .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
.post .wp-block-embed.is-type-video.alignleft {
  float: none;
  margin-right: auto;
}
.post .wp-block-embed.is-type-video.alignright {
  float: none;
  margin-left: auto;
}
.post ul li {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .post ul li {
    font-size: 1.4rem;
  }
}
.post ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #676B80;
  margin-top: 1rem;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 767px) {
  .post ul li::before {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    margin-top: 0.8rem;
  }
}
.post ul li + li {
  margin-top: 0.8rem;
}
.post ol {
  counter-reset: listnum;
}
.post ol li {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .post ol li {
    font-size: 1.4rem;
  }
}
.post ol li::before {
  content: counter(listnum);
  counter-increment: listnum;
}
.post ol li + li {
  margin-top: 0.8rem;
}
.post table {
  border-top: solid 1px #061238;
}
.post table th,
.post table td {
  padding: 1.2rem 0 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border: none;
  border-bottom: solid 1px #061238;
}
@media screen and (max-width: 767px) {
  .post table th,
  .post table td {
    font-size: 1.2rem;
  }
}
.post table th {
  padding-left: 2rem;
  width: 26rem;
  font-weight: 700;
  vertical-align: top;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .post table th {
    padding-left: 1rem;
    width: 6rem;
  }
}
.post table td {
  padding-left: 4rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .post table td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.post table td .table_link {
  margin-top: 0.4rem;
}
.post table td .table_link a {
  text-decoration: underline;
  font-weight: 700;
}
.post table td .table_link + .table_txt {
  margin-top: 1.2rem;
}
.post .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .post .aligncenter {
    width: 100%;
  }
}
.post .alignright {
  float: right;
  max-width: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .post .alignright {
    width: 100%;
  }
}
.post .alignleft {
  float: left;
}
@media screen and (max-width: 767px) {
  .post .alignleft {
    width: 100%;
  }
}
.post .point_box {
  background-color: #E9F1F6;
  padding: 2.4rem;
  border-radius: 8px;
}
.post .point_box .point_ttl {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .post .point_box .point_ttl {
    font-size: 1.6rem;
  }
}
.post .point_box .point_txt {
  font-size: 1.6rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .post .point_box .point_txt {
    font-size: 1.4rem;
  }
}
.post .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.post strong {
  font-weight: bold;
}
.post em {
  font-style: italic;
}

/* ---------------------------------------
  .author_box
-----------------------------------------*/
.author_box {
  margin-top: 7.2rem;
}
.author_box .wrap {
  border-radius: 8px;
  border: solid 0.5px #061238;
  padding: 2.4rem;
}
@media screen and (min-width: 768px) {
  .author_box .wrap {
    width: 76rem;
  }
}
.author_box .author_ttl {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .author_box .author_ttl {
    font-size: 1.6rem;
  }
}
.author_box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .author_box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.6rem;
  }
}
.author_box .author_img {
  width: 8rem;
  height: 8rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media screen and (max-width: 767px) {
  .author_box .author_img {
    margin: 0 auto;
  }
}
.author_box .author_img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 4rem;
}
.author_box .author_name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .author_box .author_name {
    font-size: 1.4rem;
  }
}
.author_box .author_txt {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 180%;
}
@media screen and (max-width: 767px) {
  .author_box .author_txt {
    margin-top: 0.8rem;
  }
}

/* ---------------------------------------
  .navigation_box
-----------------------------------------*/
.navigation_box {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .navigation_box {
    margin-top: 6.4rem;
  }
}
.navigation_box .wrap {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .navigation_box .wrap {
    width: 76rem;
  }
}
.navigation_box .navi {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.navigation_box .navi a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  background-color: #fff;
  border: solid 0.5px #061238;
  width: 11.2rem;
  height: 5rem;
  border-radius: 4px;
  color: #061238;
}
@media screen and (max-width: 767px) {
  .navigation_box .navi a {
    font-size: 1.4rem;
    width: 10.2rem;
    height: 4.6rem;
  }
}
.navigation_box .navi a::before {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: none;
  background-position: center;
  background-size: contain;
}
.navigation_box .navi.prev {
  float: left;
}
.navigation_box .navi.prev a {
  padding: 1.6rem 0 1.6rem 5.6rem;
}
@media screen and (max-width: 767px) {
  .navigation_box .navi.prev a {
    padding: 1.4rem 0 1.4rem 5.2rem;
  }
}
.navigation_box .navi.prev a::before {
  background-image: url(../img/icon_arrow_navy_prev.svg);
  left: 1.6rem;
}
.navigation_box .navi.next {
  float: right;
}
.navigation_box .navi.next a {
  padding: 1.6rem 5.6rem 1.6rem 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .navigation_box .navi.next a {
    padding: 1.4rem 5.2rem 1.4rem 0;
  }
}
.navigation_box .navi.next a::before {
  background-image: url(../img/icon_arrow_navy_next.svg);
  right: 1.6rem;
}
.navigation_box .navi.active a {
  color: #fff;
  background-color: #061238;
  border: solid 0.5px #061238;
}
.navigation_box .navi.active.prev a::before {
  background-image: url(../img/icon_arrow_white_prev.svg);
}
.navigation_box .navi.active.next a::before {
  background-image: url(../img/icon_arrow_white_next.svg);
}

/* ---------------------------------------
  .share_box
-----------------------------------------*/
.share_box {
  margin-top: 4rem;
}
.share_box .wrap {
  padding-top: 4rem;
  border-top: solid 0.5px rgba(6, 18, 56, 0.7);
}
@media screen and (min-width: 768px) {
  .share_box .wrap {
    width: 76rem;
  }
}
.share_box .ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .share_box .ttl {
    font-size: 1.8rem;
  }
}
.share_box .share_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3rem;
}
.share_box .share_btn a {
  width: 36.8rem;
  height: 8rem;
  border-radius: 4px;
  border: solid 0.5px #061238;
  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;
}
@media screen and (max-width: 767px) {
  .share_box .share_btn a {
    width: 16.7rem;
    height: 6rem;
  }
}
.share_box .share_btn.facebook img {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .share_box .share_btn.facebook img {
    width: 2.8rem;
  }
}
.share_box .share_btn.x img {
  width: 3.1rem;
}
@media screen and (max-width: 767px) {
  .share_box .share_btn.x img {
    width: 2.2rem;
  }
}

/* ---------------------------------------
  .other_post
-----------------------------------------*/
.other_post {
  margin-top: 8rem;
  padding: 8rem 0;
  background-color: #F9F9F9;
}
@media screen and (max-width: 767px) {
  .other_post {
    margin-top: 0;
    padding: 6.4rem 0;
  }
}
.other_post .other_post_clm .ttl {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .other_post .other_post_clm .ttl {
    font-size: 1.8rem;
  }
}
.other_post .other_post_clm + .other_post_clm {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .other_post .other_post_clm + .other_post_clm {
    margin-top: 6.4rem;
  }
}
.other_post .blog_list {
  margin-top: 2.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .other_post .blog_list {
    width: 100vw;
    margin-left: calc((100vw - 34.3rem) / -2);
    padding-bottom: 6.1rem;
  }
}
.other_post .blog_list .blog_list_clm {
  margin: 0 2rem;
}
@media screen and (min-width: 768px) {
  .other_post .blog_list .blog_list_clm {
    width: 34rem;
  }
}
@media screen and (max-width: 767px) {
  .other_post .blog_list .blog_list_clm {
    margin: 0 0.8rem;
  }
}
.other_post .blog_list .slick-prev,
.other_post .blog_list .slick-next {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 4px;
  background-color: #fff;
  border: solid 0.5px #061238;
  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: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  top: -6.1rem;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media screen and (max-width: 767px) {
  .other_post .blog_list .slick-prev,
  .other_post .blog_list .slick-next {
    top: auto;
    bottom: 0;
  }
}
@media (any-hover: hover) {
  .other_post .blog_list .slick-prev:hover,
  .other_post .blog_list .slick-next:hover {
    opacity: 0.7;
  }
}
.other_post .blog_list .slick-prev::before,
.other_post .blog_list .slick-next::before {
  opacity: 1;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}
.other_post .blog_list .slick-prev {
  left: auto;
  right: 5.3rem;
}
@media screen and (max-width: 767px) {
  .other_post .blog_list .slick-prev {
    right: auto;
    left: 1.6rem;
  }
}
.other_post .blog_list .slick-prev::before {
  background: url(../img/icon_pager_prev.svg) no-repeat center/contain;
}
.other_post .blog_list .slick-next {
  right: 0;
}
@media screen and (max-width: 767px) {
  .other_post .blog_list .slick-next {
    right: 1.6rem;
  }
}
.other_post .blog_list .slick-next::before {
  background: url(../img/icon_pager_next.svg) no-repeat center/contain;
}
.other_post .blog_list .slick-dots {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: auto;
  top: -4.7rem;
  right: 10.6rem;
}
@media screen and (max-width: 767px) {
  .other_post .blog_list .slick-dots {
    top: auto;
    bottom: 1.35rem;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.other_post .blog_list .slick-dots li {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #D9D9D9;
  margin: 0 4px;
}
.other_post .blog_list .slick-dots li button::before {
  content: "";
}
.other_post .blog_list .slick-dots li.slick-active {
  background-color: #061238;
}
.other_post .blog_list .slick-dots > li:first-child:last-child {
  display: none;
}
.other_post .blog_list.slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* ---------------------------------------
  表示・非表示処理
-----------------------------------------*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}