@charset "UTF-8";
/* ==========================================================================
Foundation
========================================================================== */
/* ==============================================
variables
============================================== */
/* color */
/* path */
/* width */
/* width */
/* contents margin */
/* ==============================================
reset
============================================== */
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@800&display=swap");
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, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: normal;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

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

input, select {
  vertical-align: middle;
}

/* Reset form
----------------------- */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=search] {
  -webkit-appearance: none;
  box-sizing: border-box;
}

input[type=search]:focus {
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
}

/* ==============================================
function
============================================== */
/* ==============================================
mixin
============================================== */
/* clearfix */
/* replace image */
/* contents margin */
/* hover PC & SP */
/* @media */
/* serif */
/* negative margin */
/* triangle */
/* ==========================================================================
Settings
========================================================================== */
/* ==============================================
variables
============================================== */
/* color */
/* path */
/* width */
/* width */
/* contents margin */
/* ==============================================
function
============================================== */
/* ==============================================
mixin
============================================== */
/* clearfix */
/* replace image */
/* contents margin */
/* hover PC & SP */
/* @media */
/* serif */
/* negative margin */
/* triangle */
/* ==============================================
basic
============================================== */
* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  color: #333333;
  font-size: 10px;
  line-height: 2;
  font-family: "NotoSansCJKjp", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック  Medium", meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a {
  color: #333333;
  transition: color 0.2s ease-out, box-shadow 0.2s ease-out;
}
a path {
  transition: fill 0.2s ease-out;
}
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    cursor: default;
  }
}

[role=tab] {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: opacity 0.2s ease-out;
}

svg {
  vertical-align: bottom;
}

[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *:focus {
  outline: none;
}

/* ==========================================================================
Layout
========================================================================== */
/* ==============================================
col
============================================== */
/*
* .l-col
* .l-col-2
*/
/* .l-col
----------------------- */
.l-col {
  align-items: flex-start;
  display: flex;
}
.l-col__text {
  flex: 0 1 auto;
}
.l-col__img {
  flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-col--spvert {
    flex-direction: column;
  }
  .l-col--spvert .l-col__img {
    width: 100%;
  }
}

/* .l-col-2
----------------------- */
.l-col-2 > *:not(:last-child) {
  margin-right: 5.7142857143%;
}
@media only screen and (max-width: 767px) {
  .l-col-2 .l-col-2.l-col--spvert > *:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}

/* ==============================================
container
============================================== */
.l-container {
  position: relative;
}

/* ==============================================
contents
============================================== */
/* .l-contents
----------------------- */
.l-contents {
  max-width: 1180px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  /* .l-contents(sp) */
}
.l-contents__inner {
  position: relative;
  margin: auto;
}
.l-contents--wide .l-contents__inner {
  padding: 14.2857142857% 0;
}
.l-contents--0 {
  color: #ff0000;
}
.l-contents--1 {
  max-width: 1180px;
  padding: 0;
}
.l-contents--2 {
  max-width: 1040px;
}
.l-contents--3 {
  max-width: 840px;
}
.l-contents--4 {
  max-width: 800px;
}
.l-contents--5 {
  max-width: 640px;
}
@media only screen and (max-width: 767px) {
  .l-contents {
    padding-right: 2.6666666667vw;
    padding-left: 2.6666666667vw;
  }
  .l-contents__inner {
    padding: 20px 0 50px;
  }
  .l-contents--wide .l-contents__inner {
    padding: 120px 0;
  }
  .l-contents--spfit {
    padding-right: 0;
    padding-left: 0;
  }
}

/* ==========================================================================
Settings
========================================================================== */
/* ==============================================
variables
============================================== */
/* color */
/* path */
/* width */
/* width */
/* contents margin */
/* ==============================================
function
============================================== */
/* ==============================================
mixin
============================================== */
/* clearfix */
/* replace image */
/* contents margin */
/* hover PC & SP */
/* @media */
/* serif */
/* negative margin */
/* triangle */
/* ==============================================
footer
============================================== */
/*
* .l-footer
* .f-contact
*/
/* .l-footer
----------------------- */
#footer {
  margin-top: auto;
}

.l-footer {
  background: #e1e1e1;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  padding-top: 50px;
  /* .l-footer(sp) */
}
.l-footer a {
  color: #000;
}
.l-footer a:hover {
  text-decoration: underline;
}
.l-footer .l-contents__inner {
  max-width: 1100px;
  margin: auto;
  padding: 10px 10px 10px;
}
.l-footer__pagetop {
  /*position: relative;
  z-index: 9;*/
}
.l-footer__pagetop .c-button-pagetop {
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
}
.l-footer__primary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-footer__secondary {
  margin-top: 75px;
}
.l-footer__copyright {
  background-color: #231816;
  margin-top: 32px;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
}
.l-footer__copyright a {
  color: #fff;
}
.l-footer__copyright__inner {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  padding: 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer__copyright__inner__item {
  width: 33.3333333333%;
}
.l-footer__copyright__inner__item:last-child {
  text-align: right;
}
.l-footer__logo {
  width: 210px;
  text-align: center;
  font-size: 12px;
  gap: 20px;
  margin-right: 20px;
}
.l-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 5px;
}
.l-footer__title {
  font-size: 2rem;
  line-height: 1;
}
.l-footer__desc {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.l-footer__nav__list {
  display: flex;
  gap: 20px;
}
.l-footer__nav__link {
  display: flex;
  flex-direction: column;
  gap: 25px 30px;
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.6rem);
  gap: 0.5em 50px;
}
.l-footer__nav__link a:hover {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.l-footer__nav__link.--sub {
  margin-top: 5px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: normal;
}
.l-footer__nav__link.--sub a {
  text-decoration: none;
}
.l-footer__nav__link.--main {
  font-size: 1.4rem;
  font-weight: bold;
  width: 150px;
}
.l-footer__nav__link.--main:first-child {
  width: 160px;
}
.l-footer__nav__link.--main:nth-child(2) {
  width: 180px;
}
.l-footer__nav__link.--main a {
  color: #000;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .l-footer {
    position: relative;
  }
  .l-footer .l-contents__inner {
    padding: 9.6vw 2vw 4.8vw;
  }
  .l-footer__primary {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .l-footer__secondary {
    margin-top: 4.8vw;
  }
  .l-footer__copyright {
    padding: 1.5em 0;
    font-size: 2.6666666667vw;
  }
  .l-footer__logo {
    margin-right: 0;
    width: 42.6666666667vw;
    height: auto;
    margin-bottom: 1.6vw;
  }
  .l-footer__title {
    font-size: 4.2666666667vw;
    line-height: 1;
  }
  .l-footer__desc {
    margin-top: 3.4666666667vw;
    font-size: 3.4666666667vw;
    line-height: 1.6;
  }
  .l-footer__nav__list {
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #999;
    gap: 0;
  }
  .l-footer__nav__link {
    gap: 0;
  }
  .l-footer__nav__link li {
    border-bottom: 1px solid #999;
  }
  .l-footer__nav__link .--nest {
    display: flex;
    justify-content: space-between;
  }
  .l-footer__nav__link.--sub {
    width: 50%;
  }
  .l-footer__nav__link.--sub li {
    border: none;
  }
  .l-footer__nav__link.--sub li a {
    display: inline-block;
    padding: 5px 0;
  }
  .l-footer__nav__link.--main {
    width: 100% !important;
    text-align: left;
  }
  .l-footer__nav__link.--main a {
    display: inline-block;
    padding: 20px 0;
  }
}

.info {
  background: #152a60;
  /* .l-footer(sp) */
}
.info a {
  transition: opacity 0.3s;
}
.info a:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.info.--recruit {
  background: url(/assets/img/p_top00002.jpg);
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-size: cover;
  background-position: center center;
}
.info.--recruit__inner {
  color: #000;
}
.info__title {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 2.2rem;
}
.info__block a {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #fff;
}
.info__block a:hover img {
  opacity: 0.8;
  transition: 0.3s;
}
.info__item {
  width: 50%;
  color: #ffffff;
  font-size: 2rem;
}
.info__item a {
  color: #fff;
  line-height: 1.4;
}
.info__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  height: 80px;
  padding: 0 25px 0 30px;
}
.info__item a img {
  width: 19px;
  height: auto;
}
.info__item a:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 3px solid #ffffff;
  content: "";
}
.info__inner {
  max-width: 750px;
  margin: auto;
  padding-top: 140px;
  padding-bottom: 90px;
  text-align: center;
}
.info__inner ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}
.info__inner .info__tel {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 27px 0 30px;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.info__inner .info__tel img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.info__inner .info__tel p {
  color: #23553a;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}
.info__inner .info__tel a {
  margin-top: 10px;
  align-items: baseline;
  font-size: 3.8rem;
  display: flex;
  justify-content: center;
  gap: 14px;
  color: #000;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .info {
    margin-top: 0;
  }
  .info__title {
    padding-bottom: 0.8vw;
    font-size: 4.2666666667vw;
  }
  .info__item {
    width: 50%;
    font-size: 3.2vw;
  }
  .info__item a {
    height: auto;
    padding: 3.2vw 2.1333333333vw;
  }
  .info__item a img {
    width: 3.2vw;
  }
  .info__inner {
    padding-left: 4vw;
    padding-right: 4vw;
    padding-top: 18.6666666667vw;
    padding-bottom: 26.6666666667vw;
  }
  .info__inner ul {
    margin-top: 5.8666666667vw;
  }
  .info__inner .info__tel {
    padding: 5.8666666667vw 0 5.8666666667vw;
  }
  .info__inner .info__tel img {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
  }
  .info__inner .info__tel p {
    font-size: 4.2666666667vw;
    margin-bottom: 2.1333333333vw;
  }
  .info__inner .info__tel a {
    margin-top: 2.1333333333vw;
    font-size: 8.5333333333vw;
    gap: 14px;
  }
}

/* ==========================================================================
Settings
========================================================================== */
/* ==============================================
variables
============================================== */
/* color */
/* path */
/* width */
/* width */
/* contents margin */
/* ==============================================
function
============================================== */
/* ==============================================
mixin
============================================== */
/* clearfix */
/* replace image */
/* contents margin */
/* hover PC & SP */
/* @media */
/* serif */
/* negative margin */
/* triangle */
/* ==============================================
header
============================================== */
/*
* .l-header
* .site-logo
* .gnav
*/
/* .l-header
----------------------- */
.l-header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 65px;
  background: rgb(255, 255, 255);
  transition: height 0.1s ease-out;
  /* .l-header(sp) */
  /* .l-header(sp) */
}
.l-header__primary {
  display: flex;
  flex: none;
  justify-content: space-between;
}
.l-header__secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.l-header__inner {
  display: flex;
  position: relative;
  max-width: 1440px;
  height: 100%;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.l-header__logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.l-header__logo h1 {
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 20px;
}
.l-header__logo a {
  display: inline-block;
}
.l-header__logo img {
  width: 200px;
}
.l-header__gnav {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  gap: 40px;
}
.l-header__gnav__item {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  font-size: 1em;
  transition: background-color 0.2s;
}
.l-header__gnav__item:not(:first-child):before {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(-20px, -50%);
  width: 1px;
  height: clamp(1.4rem, 0.25vw + 1.5rem, 1.6rem);
  border-left: 1px solid #000000;
  content: "";
}
.l-header__gnav__item:nth-child(3) .dropdown__lists {
  width: 225px;
}
.l-header__gnav__item:hover {
  display: inline-block;
  transition: background-color 0.3s;
}
.l-header__gnav__item__target {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 30px;
  height: 100%;
  color: #333333;
  font-size: clamp(1.4rem, 0.25vw + 1.5rem, 1.6rem);
}
.l-header nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.l-header__nav__cmn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.l-header__nav__cmn__item {
  background-color: #a9916d;
  transition: background-color 0.2s;
}
.l-header__nav__cmn__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 33px;
  padding-right: 1em;
  padding-left: 1em;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(1.5rem, 0.25vw + 1.3rem, 1.5rem);
  line-height: 1;
}
.l-header__nav .gnav {
  height: 100%;
}
@media only screen and (max-width: 1165px) {
  .l-header {
    height: 65px;
  }
  .l-header__logo a {
    line-height: 1;
  }
  .l-header__logo img {
    width: 100px;
  }
  .l-header__gnav {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  .l-header__gnav__item {
    width: 100%;
    border-bottom: 1px solid #909f97;
    text-align: center;
  }
  .l-header__gnav__item:before {
    border-left: 0px !important;
  }
  .l-header__gnav__item__target {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    color: #ffffff;
    line-height: 50px;
  }
  .l-header__gnav__item__target.--llt {
    line-height: normal;
    text-align: initial;
  }
  .l-header__primary .l-header__nav__cmn {
    display: none;
  }
  .l-header__secondary {
    display: block;
    flex-direction: column-reverse;
    align-items: center;
    visibility: hidden;
    position: absolute;
    top: 90px;
    right: 0;
    transform: translateX(100%);
    width: 600px;
    height: auto;
    margin-top: 0;
    background-color: #3563b0;
    transition: transform 0.3s;
  }
  .l-header__secondary.is-active {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
    height: calc(100vh - 90px);
    padding-bottom: 50px;
    overflow-y: scroll;
    transition: transform 0.3s;
  }
  .l-header__secondary.is-active .c-arrow-a {
    top: 0;
    transform: rotate(-45deg);
  }
  .l-header__secondary .l-header__nav__cmn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    transform: none;
    margin-top: 40px;
  }
  .l-header__nav__cmn {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translate(100%, 150%);
    gap: 10px;
  }
  .l-header__nav__cmn__item {
    background-color: #a9916d;
  }
  .l-header__nav .gnav {
    flex-direction: column;
    height: auto;
  }
  .l-header .openbtn1 {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 65px !important;
    height: 65px !important;
    background: #3563b0;
    cursor: pointer;
  }
  .l-header .openbtn1 span {
    display: inline-block;
    position: absolute;
    right: 10px;
    left: 10px;
    height: 5px !important;
    border-radius: 2px;
    background: #ffffff;
    transition: all 0.4s;
  }
  .l-header .openbtn1 span:nth-of-type(1) {
    top: 15px !important;
  }
  .l-header .openbtn1 span:nth-of-type(2) {
    top: 27px !important;
  }
  .l-header .openbtn1 span:nth-of-type(3) {
    top: 40px !important;
  }
  .l-header .openbtn1.active span:nth-of-type(1) {
    top: 15px !important;
    left: 5px;
    transform: translateY(2.2666666667vw) rotate(-220deg);
    width: 60px;
  }
  .l-header .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header .openbtn1.active span:nth-of-type(3) {
    top: 15px !important;
    left: 5px;
    transform: translateY(2.2666666667vw) rotate(220deg);
    width: 60px;
  }
  .l-header .openbtn1.active + .p-nav {
    display: block;
  }
}
@media only screen and (max-width: 1165px) {
  .l-header__nav {
    display: none;
    flex-direction: column;
    width: 100%;
    height: fit-content !important;
  }
  .l-header__nav.is-active {
    display: block;
    height: auto;
    margin-left: 0;
  }
  .l-header__nav.is-active .navlist {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__secondary {
    width: 100%;
  }
  .l-header__secondary .l-header__nav__cmn a {
    height: 8vw;
    font-size: 3.2vw;
  }
  .l-header nav {
    top: 100%;
    width: 100%;
    transition: transform 0.3s;
  }
  .l-header__nav.is-active {
    font-size: 3.2vw;
  }
  .l-header__nav.is-active .navlist {
    width: 100%;
  }
}

/* nav */
.dropdown__lists {
  visibility: hidden; /*デフォルトでは非表示の状態にしておく*/
  opacity: 0; /*不透明度0*/
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 0;
  transition: all 0.3s; /*表示の変化を0.3秒に指定*/
}

.l-header__gnav__item:hover .dropdown__lists {
  visibility: visible; /*Gナビメニューにホバーしたら表示*/
  opacity: 1; /*不透明度1*/
  height: auto;
}

.dropdown__list {
  position: relative;
  min-height: 40px;
  background-color: #3563b0;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.dropdown__list:not(:first-child)::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3563b0;
  content: "";
}

.dropdown__list:hover {
  background-color: #698fcf;
}

.dropdown__list a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  height: 100%;
  width: 100%;
  color: #ffffff;
  font-size: clamp(1rem, 1rem + 0.91vw, 1.5rem);
  text-decoration: none;
}

.dropdown__list a::before {
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 15px;
  transform: rotate(135deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
}

@media only screen and (max-width: 1165px) {
  /* nav */
  .dropdown__lists {
    display: flex;
    flex-wrap: wrap;
    visibility: visible; /*デフォルトでは非表示の状態にしておく*/
    opacity: 1; /*不透明度0*/
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100% !important;
    min-width: 200px;
    height: auto;
    margin: auto;
    border-top: 1px solid #3563b0;
    transition: none; /*表示の変化を0.3秒に指定*/
  }
  .l-header__gnav__item:hover .dropdown__lists {
    visibility: visible; /*Gナビメニューにホバーしたら表示*/
    opacity: 1; /*不透明度1*/
    height: auto;
  }
  .dropdown__list {
    position: relative;
    width: 50%;
    height: 8vw;
    border-right: 1px solid #3563b0;
    border-bottom: 1px solid #3563b0;
    background-color: transparent;
    transition: none;
  }
  .dropdown__list:not(:first-child)::before {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #3563b0;
    content: "";
    display: none;
  }
  .dropdown__list:hover {
    background-color: #4375ca;
  }
}
/* .site-logo
----------------------- */
.site-logo {
  display: flex;
  align-items: center;
  height: 100%;
  /* .site-logo(sp) */
}
.site-logo__target {
  display: block;
  position: relative;
  z-index: 1;
}
.site-logo__img {
  width: 164px;
  transition: width 0.1s ease-out !important;
}
.l-header--compact .site-logo__img {
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .site-logo__img {
    transition: none !important;
  }
  .l-header--bottomfix .site-logo__img {
    width: 100px;
  }
}

/* .gnav
----------------------- */
.gnav__inner {
  display: flex;
  height: 100%;
}
.gnav__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 2em;
}
.gnav__sub {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.3em;
}
.gnav__sub .item {
  position: relative;
  font-size: 1.3rem;
}
.gnav__sub .item:not(:first-child) {
  margin-left: 1.5em;
  padding-left: 1.5em;
}
.gnav__sub .item:not(:first-child)::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: #333333;
  content: "";
}
.gnav__main {
  display: flex;
  font-weight: bold;
  transition: font-size 0.1s ease-out;
}
.gnav__main .item:not(:first-child) {
  margin-left: 2em;
}
.gnav__main .target .c-arrow {
  display: none;
}
.gnav__button {
  display: flex;
}
.gnav__button .c-button {
  width: 80px;
  height: 100%;
}
.gnav__button--2 {
  display: none;
}
.l-header--compact .gnav__sub {
  display: none;
}
.l-header--compact .gnav__main {
  font-size: 1.8rem;
}

@media only screen and (max-width: 820px) {
  .gnav__text {
    margin-right: 2.4390243902vw;
  }
  .gnav__main .item:not(:first-child) {
    margin-left: 2.4390243902vw;
  }
}
@media only screen and (max-width: 767px) {
  .gnav__inner {
    justify-content: space-between;
  }
  .gnav__menu {
    position: absolute;
    top: 80px;
    width: 100%;
    padding: 0 15px;
    box-shadow: 0 2px 10px rgba(211, 211, 211, 0.5);
    background: #ffffff;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  }
  .gnav__menu[aria-hidden=true] {
    visibility: hidden;
    opacity: 0;
  }
  .gnav__menu-in {
    display: flex;
    flex-direction: column;
  }
  .gnav__main {
    flex-direction: column;
    order: 1;
    padding: 20px 15px;
    font-size: 2rem;
  }
  .gnav__main .item:not(:first-child) {
    margin-left: 0;
  }
  .gnav__main .target {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
  }
  .gnav__main .target .c-arrow {
    display: block;
    position: relative;
    top: -8px;
  }
  .gnav__button .c-button-a--recruit {
    display: none;
  }
  .l-header--bottomfix .gnav__button .c-button-a--recruit {
    display: block;
  }
  .gnav__button--2 {
    display: block;
    order: 2;
  }
  .gnav__button--2 .c-button {
    width: 100%;
  }
  .gnav__sub {
    flex-direction: column;
    order: 3;
    margin-bottom: 0;
    padding: 30px 15px;
  }
  .gnav__sub .item {
    font-size: 1.5rem;
  }
  .gnav__sub .item:not(:first-child) {
    margin-left: 0;
    padding-left: 0;
  }
  .gnav__sub .item:not(:first-child)::before {
    content: none;
  }
  .gnav__sub .target {
    display: block;
    padding: 10px 0;
  }
  .l-header--bottomfix .gnav__menu {
    position: fixed;
    top: auto;
    bottom: 60px;
    overflow: auto;
  }
  .l-header--bottomfix .gnav__menu-in {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .l-header--bottomfix .gnav__menu {
    height: calc(100vh - 60px);
  }
}
@media only screen and (max-width: 767px) {
  .l-header--bottomfix .gnav__button .icon {
    transform: scale(0.8);
    transform-origin: center bottom;
  }
}

@media only screen and (max-width: 1165px) {
  #wrapper:after {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    transform: translateX(100%);
    width: 600px;
    background-color: #3563b0;
    content: "";
    transition: all 0.3s;
  }
  #wrapper.active:after {
    transform: translateX(0%);
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  #wrapper.active:after {
    width: 100%;
  }
}

/* ==============================================
hero
============================================== */
/*
* .l-hero-top
* .l-hero-lower
*/
#hero {
  position: relative;
}
#hero .slide_item {
  overflow: hidden;
  position: relative;
}
#hero .slide_item a {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1048/480;
  min-height: 360px;
  max-height: 880px;
}
#hero .slide_item a:hover .hero__link:before {
  transform: scale(1, 1);
  transition: all 0.3s;
}
#hero .slide_item a:hover .hero__link:after {
  transition: all 0.3s;
  transform: scale(1.5);
}
#hero .slide_item picture {
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
  bottom: auto;
  height: 100%;
  left: 0;
  z-index: 1;
  transform: scale(1.1, 1.1);
}
#hero .slide_item picture .picture__inner {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#hero .slide_item picture .picture__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .slick-dots {
  bottom: -40px;
}
#hero .badge {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero .badge__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin: auto;
  z-index: 999;
  position: relative;
  font-family: "YakuHanJP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴシック Pro", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#hero .badge__inner .image {
  text-align: center;
}
#hero .badge__inner .image img {
  margin: auto;
  width: 60%;
  max-width: 80%;
  height: auto;
  aspect-ratio: 768/400;
}
@media only screen and (max-width: 767px) {
  #hero .slide_item a {
    min-height: auto;
  }
  #hero .slide_item a,
  #hero .slide_item img {
    aspect-ratio: 1048/480;
    width: 100%;
  }
  #hero .slide_item picture {
    height: auto;
    top: 10px;
  }
}

.hero__main {
  border: 5px solid #fff;
  width: fit-content;
  border-radius: 14px;
  padding: 20px 40px;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.hero__sub {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
.hero__content {
  font-size: 1.6rem;
  color: #fff;
}
.hero__content p {
  max-width: 400px;
}
.hero__link {
  margin-top: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3px 5px;
  width: fit-content;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
.hero__link:before {
  display: inline-block;
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.hero__link:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #ffffff;
  border-right: 0;
  transition: transform 0.3s; /*変形の時間*/
}
@media only screen and (max-width: 767px) {
  .hero__main {
    font-size: 4.2666666667vw;
    padding: 2.1333333333vw 6.4vw;
  }
  .hero__sub {
    font-size: 2.6666666667vw;
  }
  .hero__content {
    margin-top: 0;
    font-size: 2.6666666667vw;
  }
  .hero__content p {
    max-width: 400px;
  }
  .hero__link {
    font-size: 2.1333333333vw;
    margin-top: 0;
  }
}

.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button:before {
  opacity: 1 !important;
  background-color: #000 !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 100px;
  margin: 0 4px;
  opacity: 0.2 !important;
  font-size: 0px !important;
}

.slick-dots li.slick-active button:before {
  background-color: #3563b0 !important;
  font-size: 0px !important;
  opacity: 1 !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero__content {
  position: relative;
}

.main-copy {
  position: absolute;
  top: 50%;
  z-index: 9;
  transform: translateY(-50%);
  width: 100%;
  color: #ffffff;
  font-size: clamp(4.2rem, 2.5vw + 6rem, 7rem);
  line-height: 1.2;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 5px;
  text-align: center;
}

.main-copy span {
  font-size: clamp(9rem, 1.5vw + 4rem, 6rem);
}

#player {
  position: relative;
  z-index: 0;
}

#player_cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

#loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000 url("/assets/img/hero_loading.jpg") no-repeat center center;
  background-size: cover;
}

/* .l-hero
----------------------- */
.l-hero-top__inner {
  position: relative;
  background: #000000;
}
.l-hero-top__video {
  line-height: 0;
}
.l-hero-top__video video {
  width: 100%;
}
.l-hero-top__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.l-hero-top__scroll .target {
  display: block;
}
.l-hero-top__scroll .target__inner {
  position: relative;
  padding-bottom: 50px;
}
.l-hero-top__scroll .target__inner::before, .l-hero-top__scroll .target__inner::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  content: "";
}
.l-hero-top__scroll .target__inner::before {
  transform: translateX(-50%);
  background: #ffffff;
}
.l-hero-top__scroll .target__inner::after {
  transform: translate(-50%, 100%);
  background: #333333;
}
.l-hero-top__scroll .text {
  color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .l-hero-top__video {
    height: calc(100vh - 80px);
  }
  .l-hero-top__video video {
    height: 100%;
    object-fit: cover;
  }
}

/* ==============================================
main
============================================== */
.l-main {
  /* .l-main(sp) */
}
/* ==============================================
section
============================================== */
/*
* .l-section
* .l-section-b
*/
/* .l-section
----------------------- */
.l-section {
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  /* .l-section (sp) */
}
.l-section:last-child {
  padding-bottom: 170px;
}
.l-section--gray {
  background-color: #f0f0f0;
}
.l-section--gray-2::before {
  background: #f0f0f0;
  content: "";
  display: block;
  height: 100%;
  margin-right: -310px;
  position: absolute;
  right: 50%;
  top: 0;
  width: 100%;
  z-index: -1;
}
.l-section--texture {
  background-image: url(../img/bg_texture_01.png);
}
.l-section--nopad {
  padding: 0 !important;
}
.l-section--narrow {
  padding: 60px 0;
}
@media only screen and (max-width: 767px) {
  .l-section {
    padding: 85px 0 100px;
  }
  .l-section--gray-2::before {
    margin-right: 0;
    right: 4vw;
    z-index: -1;
  }
}

/* .l-section-b
----------------------- */
.l-section-b:not(:last-child) {
  margin-bottom: 5.2380952381%;
}
@media only screen and (max-width: 767px) {
  .l-section-b:not(:last-child) {
    margin-bottom: 55px;
  }
}

/* ==============================================
wrapper
============================================== */
.l-wrapper {
  overflow: hidden;
  padding-top: 80px;
  position: relative;
  width: 100%;
}

/* ==============================================
gnav
============================================== */
/*
* .l-gnav
*/
/* .l-gnav
----------------------- */
.l-gnav {
  display: flex;
}
.l-gnav__item {
  position: relative;
}
.l-gnav__item:not(:last-child) {
  margin-right: 28px;
}
.l-gnav__item .second {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 156px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.l-gnav__item .second__item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 72, 136, 0.2);
}
.l-gnav__item .second__target {
  display: block;
  padding: 1em;
  color: #333333;
  font-size: 1.4rem;
  line-height: 1.5;
  transition: all 0.05s linear;
}
.l-gnav__item .second__target:hover {
  background: #004888;
  color: #ffffff;
}
.l-gnav__target {
  display: block;
  position: relative;
  color: #333333;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.3;
  transition: color 0.2s ease-out;
}
.l-gnav__target::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #004888;
  content: "";
  transition: width 0.2s ease-out;
}
.l-gnav__target .c-arrow-a {
  display: none;
}
.l-gnav__target:hover, .l-gnav__target[aria-current=page] {
  color: #004888;
}
.l-gnav__target:hover::after, .l-gnav__target[aria-current=page]::after {
  width: 100%;
}
@media (max-width: 1000px) {
  .l-gnav {
    flex-direction: column;
  }
  .l-gnav__item {
    margin-right: 0 !important;
  }
  .l-gnav__item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 72, 136, 0.2);
  }
  .l-gnav__item .second {
    position: static;
    transform: none;
    width: 100%;
    padding-left: 2em;
    box-shadow: none;
  }
  .l-gnav__item .second__item {
    margin-bottom: 1em;
    border: none !important;
  }
  .l-gnav__item .second__target {
    padding: 0;
    color: #333333;
    font-size: 1.8rem;
  }
  .l-gnav__item .second__target:hover {
    background: none;
    color: #333333;
  }
  .l-gnav__item .second .c-acc__child {
    padding-bottom: 1px;
  }
  .l-gnav__target {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1em;
    font-size: 1.8rem !important;
  }
  .l-gnav__target::after {
    content: none;
  }
  .l-gnav__target.is-active .c-arrow-a {
    top: 0;
    transform: rotate(-45deg);
  }
  .l-gnav__target:hover {
    color: #333333;
  }
  .l-gnav__target .c-arrow-a {
    display: block;
    position: relative;
    top: -3px;
  }
}

/* ==========================================================================
Object
========================================================================== */
/* Component
------------------------------------------- */
/* ==============================================
address
============================================== */
/*
* c-address
*/
/* c-address
----------------------- */
.c-address {
  font-style: normal;
}
.c-address--right {
  text-align: right;
}

/* ==============================================
animation
============================================== */
/*
* c-anim-a
* c-anim-b
* c-anim-c
* c-anim-d
* c-anim-e
* c-anim-f
* c-anim-paused
* c-anim-loader
* c-anim-ajax
*/
/* c-anim-a
----------------------- */
.c-anim-a {
  animation: anim-a 1s linear forwards;
  display: block;
  overflow: hidden;
  width: 0%;
}
.in-session .c-anim-a {
  animation-play-state: paused;
  width: 100%;
}

@keyframes anim-a {
  100% {
    width: 100%;
  }
}
/* c-anim-b
----------------------- */
.c-anim-b {
  animation: anim-b 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(-50%);
  transform-origin: center bottom;
}
.c-anim-b--weak {
  animation: anim-b-weak 0.6s ease-out forwards;
}
.in-session .c-anim-b {
  animation-play-state: paused;
  opacity: 1;
  transform: none;
}

@keyframes anim-b {
  40% {
    opacity: 1;
    transform: translateY(10%);
  }
  60% {
    opacity: 1;
    transform: translateY(10%) scale(1.1, 0.9);
  }
  80% {
    opacity: 1;
    transform: translateY(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes anim-b-weak {
  40% {
    opacity: 1;
    transform: translateY(10%);
  }
  60% {
    opacity: 1;
    transform: translateY(10%) scale(1, 0.9);
  }
  80% {
    opacity: 1;
    transform: translateY(-5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* c-anim-c
----------------------- */
.c-anim-c {
  animation: anim-c 0.5s ease-out forwards;
  opacity: 0;
  transform: translate(-20%, 6%);
}
.c-anim-c--reverse {
  transform: translate(20%, -6%);
}
.in-session .c-anim-c {
  animation-play-state: paused;
  opacity: 1;
  transform: none !important;
}

@keyframes anim-c {
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/* c-anim-d
----------------------- */
.c-anim-d {
  animation: anim-d 0.5s ease-out forwards;
  opacity: 0;
}
.in-session .c-anim-d {
  animation-play-state: paused;
  opacity: 1;
}

@keyframes anim-d {
  100% {
    opacity: 1;
  }
}
/* c-anim-e
----------------------- */
.c-anim-e {
  animation: anim-e 0.5s ease-in-out forwards;
  /* .c-anim-e(sp) */
}
.in-session .c-anim-e {
  animation-play-state: paused;
}
@media only screen and (max-width: 767px) {
  .c-anim-e {
    animation-name: anim-e-sp;
  }
}

@keyframes anim-e {
  100% {
    transform: translate(100%, -85%) rotate(-5deg);
  }
}
@keyframes anim-e-sp {
  100% {
    transform: translate(50%, -55%) rotate(-5deg);
  }
}
/* c-anim-f
----------------------- */
.c-anim-f {
  animation: anim-f 0.5s ease-out forwards;
  opacity: 0;
}
.in-session .c-anim-f {
  animation-play-state: paused;
  opacity: 1;
}

@keyframes anim-f {
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* c-anim-paused
----------------------- */
.c-anim-paused {
  animation-play-state: paused;
}

/* c-anim-loader
----------------------- */
.c-anim-loader {
  position: relative;
}
.c-anim-loader::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin: -12px 0 0 -12px;
  content: "";
  animation: loader 0.8s infinite linear;
  border: 4px solid #999;
  border-top-color: #ddd;
  border-radius: 50%;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* c-anim-ajax
----------------------- */
.c-anim-ajax {
  animation: fadeIn 0.6s 1 0.1s linear forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==============================================
arrow
============================================== */
/*
* .c-arrow
* .c-arrow-a
* .c-arrow-b
* .c-arrow-tri
*/
/* .c-arrow
----------------------- */
.c-arrow {
  display: inline-block;
  /* .c-arrow(sp) */
}
/* .c-arrow-a
----------------------- */
.c-arrow-a {
  width: 5px;
  height: 5px;
  border-top: 1px solid #004888;
  border-right: 1px solid #004888;
  transform: rotate(45deg);
}
.c-arrow-a--10 {
  width: 10px;
  height: 10px;
}

/* .c-arrow-b
----------------------- */
.c-arrow-b::before {
  display: inline-block;
  width: 32px;
  height: 8px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  content: "";
  transform: skewX(40deg);
}
.c-arrow-b--up::before {
  transform: rotate(-90deg) skewX(40deg);
}
.c-arrow-b--white::before {
  border-color: #ffffff !important;
}
.c-arrow-b--left::before {
  border-right: none;
  border-left: 1px solid #333333;
  transform: skewX(-40deg);
}

/* .c-arrow-tri
----------------------- */
.c-arrow-tri {
  width: 1em;
  height: 1em;
}
.c-arrow-tri.bottom {
  background: linear-gradient(to top right, rgba(0, 0, 0, 0) 50%, #d3e5cc 50.5%) no-repeat top left/50% 100%, linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, #d3e5cc 50.5%) no-repeat top right/50% 100%;
}
.c-arrow-tri.top {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top left/50% 100%, linear-gradient(to bottom left, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top right/50% 100%;
}
.c-arrow-tri.left {
  background: linear-gradient(to top right, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat bottom left/100% 50%, linear-gradient(to bottom right, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top right/100% 50%;
}
.c-arrow-tri.right {
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat bottom right/100% 50%;
}
.c-arrow-tri.right.c-arrow-tri--green-light {
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0) 50%, #d3e5cc 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, #d3e5cc 50.5%) no-repeat bottom right/100% 50%;
}
.c-arrow-tri.top-right {
  background: linear-gradient(to top right, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top left/100% 100%;
}
.c-arrow-tri.top-left {
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top left/100% 100%;
}
.c-arrow-tri.top-left.c-arrow-tri--white {
  background: linear-gradient(to top left, rgba(0, 0, 0, 0) 50%, white 50.5%) no-repeat top left/100% 100%;
}
.c-arrow-tri.bottom-right {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top left/100% 100%;
}
.c-arrow-tri.bottom-right.c-arrow-tri--white {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 50%, white 50.5%) no-repeat top left/100% 100%;
}
.c-arrow-tri.bottom-left {
  background: linear-gradient(to bottom left, rgba(0, 0, 0, 0) 50%, black 50.5%) no-repeat top left/100% 100%;
}

/* ==============================================
banner
============================================== */
/*
* .c-banner
* .c-banner-a

*/
/* .c-banner
----------------------- */
/* .c-banner-a
----------------------- */
/* ==============================================
bgtitle
============================================== */
/*
* .c-bgtitle
*/
/* .c-bgtitle
----------------------- */
.c-bgtitle {
  left: 50%;
  margin-left: -570px;
  max-width: 1140px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.c-bgtitle__text {
  color: rgba(0, 72, 136, 0.05);
  font-size: 150px;
  font-weight: bold;
  line-height: 0.8;
  position: absolute;
  right: 0;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.c-bgtitle__text--service {
  color: rgba(27, 101, 0, 0.05);
}
.c-bgtitle__text--projects {
  color: rgba(152, 129, 0, 0.05);
}
.c-bgtitle__text--company {
  color: rgba(165, 0, 0, 0.05);
}
.c-bgtitle__text--recruit {
  color: rgba(0, 72, 136, 0.05);
}
.c-bgtitle__text--product {
  color: rgba(95, 95, 95, 0.05);
}
.c-bgtitle__text--news {
  color: rgba(97, 0, 110, 0.05);
}
.c-bgtitle__text--others {
  color: rgba(112, 112, 112, 0.05);
}
.c-bgtitle--left .c-bgtitle__text {
  left: 0;
  right: auto;
}
.mission .c-bgtitle {
  z-index: 1;
}
@media only screen and (max-width: 1140px) {
  .c-bgtitle {
    left: 0;
    margin-left: 0;
    margin-right: auto;
    min-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-bgtitle__text {
    right: -4.5vw;
  }
  .c-bgtitle__text--projects {
    left: -4.5vw;
    right: auto;
  }
  .c-bgtitle--left .c-bgtitle__text {
    left: -4.5vw;
  }
}

/* ==============================================
button
============================================== */
/*
* .c-button
* .c-button-a
* .c-button-pagetop
*/
/* .c-button
----------------------- */
.c-button {
  position: relative;
  overflow: hidden;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-button__target {
  display: inline-block;
  position: relative;
  width: max-content;
  min-width: 240px;
  padding: 12px 50px;
  border: 1px solid #3563b0;
  background-color: #ffffff;
  color: #3563b0;
  font-weight: bold;
  font-size: clamp(1.4rem, 0.25vw + 1.3rem, 1.4rem);
  line-height: 1;
  text-align: center;
}
.c-button__target span {
  overflow: hidden;
}
.c-button__target span:before, .c-button__target span:after {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #ffffff;
  content: "";
  transition: all 0.5s;
}
.c-button__target span:before {
  top: -1px;
  right: 0;
  transform: translate(105%, 0);
}
.c-button__target span:after {
  bottom: -1px;
  left: 0;
  transform: translate(-105%, 0);
}
.c-button__target:hover {
  background-color: rgba(125, 163, 154, 0.2);
}
.c-button__target:hover span:before {
  right: 105%;
  transform: translate(0, 0);
}
.c-button__target:hover span:after {
  left: 105%;
  transform: translate(0, 0);
}
.c-button__target:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 3px solid black;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-button__target {
    width: 100%;
    padding: 2.1333333333vw 4vw;
  }
}

/* .c-button-a
----------------------- */
.c-button-a {
  display: contents;
  position: relative;
  overflow: hidden;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-button-a__target {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: auto;
  margin-top: 25px;
  padding: 14px 50px;
  overflow: hidden;
  border: 1px solid #ffffff;
  border-radius: 3px;
  color: #ffffff;
  font-weight: bold;
  font-size: clamp(1.4rem, 0.25vw + 1.5rem, 1.6rem);
  line-height: 1;
  text-align: center;
}
.c-button-a__target span {
  overflow: hidden;
}
.c-button-a__target:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s;
}
.c-button-a__target:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 3px solid #ffffff;
  content: "";
}
@media only screen and (max-width: 767px) {
  .c-button-a__target {
    padding: 2.1333333333vw 4vw;
  }
}

/* .c-button-b
----------------------- */
.c-button-b {
  display: contents;
  position: relative;
  overflow: hidden;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-button-b__target {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 310px;
  margin: auto;
  padding: 22px 20px;
  overflow: hidden;
  font-size: 18px;
  border: 1px solid #3c3c3c;
  color: #3c3c3c;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  border-radius: 100px;
  background-color: #fff;
}
.c-button-b__target span {
  overflow: hidden;
}
.c-button-b__target:hover {
  opacity: 0.8;
  transition: all 0.3s;
  background-color: #3563b0;
  color: #fff;
  border-color: #fff;
}
.c-button-b__target:hover:after {
  border-left: 5px solid #fff;
}
.c-button-b__target:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #3c3c3c;
  content: "";
}
.c-button-b__target.--arrb:after {
  transform: translateY(-50%) rotate(0deg);
}
@media only screen and (max-width: 767px) {
  .c-button-b__target {
    padding: 2.1333333333vw 4vw;
  }
  .c-button-b__target.--arrb {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* .c-button-pagetop
----------------------- */
.c-button-pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 99;
  transform: translateX(900%) rotate(45deg);
  width: 1em;
  transition: all 0.2s ease-out;
}
.c-button-pagetop.wh a {
  color: #ffffff;
}
.c-button-pagetop.wh a:before, .c-button-pagetop.wh a:after {
  background-color: #ffffff;
}
.c-button-pagetop a {
  padding-top: 55px;
  color: #000000;
  font-size: clamp(1.2rem, 0.25vw + 1.4rem, 1.6rem);
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: all ease 0.3s;
  backface-visibility: hidden;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.c-button-pagetop a::before {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 1px;
  height: 8px;
  margin-left: 0;
  background: #000000;
  content: "";
  transition: all ease 0.3s;
  backface-visibility: hidden;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.c-button-pagetop a::after {
  position: absolute;
  top: 30px;
  left: 50%;
  width: 1px;
  height: 20px;
  background: #000000;
  content: "";
  transition: all ease 0.3s;
  backface-visibility: hidden;
}
.c-button-pagetop a:hover {
  transform: translateY(-5%);
  text-decoration: none;
}
.c-button-pagetop a:hover::before {
  top: 10px;
  transform: rotate(30deg);
  -ms-transform: rotate(30deg);
}
.c-button-pagetop a:hover:after {
  top: 10px;
  height: 40px;
}
.c-button-pagetop.is-active {
  transform: translateX(0%);
  transition: all 0.2s ease-out;
}
.c-button-pagetop.is-active .c-arrow-a {
  top: 0;
  transform: rotate(-45deg);
}
.c-button-pagetop__target .c-arrow-b {
  transform: translateX(-10%);
}

/* .c-button-d
----------------------- */
.c-button-d {
  position: relative;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  text-align: center;
}
.c-button-d__target {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: auto;
  padding: 15px 20px 14px;
  border: 1px solid #3563b0;
  background-color: #3563b0;
  color: #fff;
  font-size: clamp(1.6rem, 0.25vw + 1.6rem, 2rem);
  line-height: 1;
  transition: opacity 0.3s;
  font-weight: bold;
}
.c-button-d__target:hover {
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .c-button-d {
    width: 100%;
  }
  .c-button-d__target {
    padding: 2.1333333333vw 4vw;
  }
}

/* ==============================================
card
============================================== */
/*
* .c-card-a
* .c-card-b
* .c-card-progress
* .c-card-c
*/
/* .c-card-a
----------------------- */
.c-card-a {
  background: #fff;
  border-radius: 50%;
  height: 294px;
  padding: 1em;
  text-align: center;
  width: 294px;
}
.c-card-a__icon {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  height: 56%;
}
.c-card-a__text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-card-a__balloon {
  margin-top: 15px;
}
/* .c-card-b
----------------------- */
.c-card-b {
  max-width: 475px;
  position: relative;
}
.c-card-b__shadow {
  background: linear-gradient(-45deg, #333 10%, transparent 10%, transparent 50%, #333 50%, #333 60%, transparent 60%);
  background-size: 10px 10px;
  bottom: -20px;
  height: 100%;
  position: absolute;
  right: -20px;
  width: 100%;
}
.c-card-b__img {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}
.c-card-b__img .picture {
  transition: all 0.3s ease-out;
}
.c-card-b__img .c-icon-play {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-card-b__desc {
  background: #333333;
  color: #fff;
  padding: 35px 40px 50px;
  position: relative;
  text-align: left;
  transition: background 0.3s ease-out;
}
.c-card-b .c-heading-b {
  transition: color 0.3s ease-out;
}
.c-card-b__bodytext {
  text-align: left;
}
.c-card-b__balloon {
  position: absolute;
  right: 20px;
  top: -40px;
}
.c-card-b__num {
  color: #fff;
  font-family: Barlow, sans-serif;
  font-style: italic;
  font-size: 8rem;
  font-weight: 600;
  left: 0.4em;
  line-height: 1;
  position: absolute;
  -webkit-text-stroke: 1.5px #333333;
  top: -0.5em;
}
.ie .c-card-b__num {
  text-shadow: -1px -1px 0 #333333, 1px -1px 0 #333333, 1px 1px 0 #333333, -1px 1px 0 #333333;
}
.c-card-b__label .c-label-a {
  margin: 3px 2px;
}
.c-card-b:hover .c-card-b__img .picture {
  filter: brightness(120%);
  transform: scale(1.1);
}
.c-card-b:hover .c-card-b__desc {
  background: #333;
}
.c-card-b[href=""] {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .c-card-b__shadow {
    background-size: 8px 8px;
    bottom: -3.2vw;
    right: -3.2vw;
  }
  .c-card-b__desc {
    padding: 6.6666666667vw 7.4666666667vw;
  }
  .c-card-b__bodytext {
    font-size: 3.7333333333vw;
  }
  .c-card-b__balloon {
    right: 2.6666666667vw;
    top: -8vw;
    width: 51.4666666667vw;
  }
  .c-card-b__num {
    font-size: 13.6vw;
    left: 3.4666666667vw;
    -webkit-text-stroke: 1px #333333;
  }
}

/* .c-card-progress
----------------------- */
.c-card-progress {
  display: inline-flex;
  position: relative;
  /* .c-card-progress(sp) */
}
.c-card-progress__content {
  background: #d3e5cc;
  padding: 1.3em 1em;
  position: relative;
  text-align: center;
}
.c-card-progress__term {
  font-size: 3rem;
  font-family: YuMincho, "Yu Mincho", NotoSerifJP, serif;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}
.c-card-progress__desc {
  align-items: center;
  display: flex;
  font-weight: bold;
  height: 100%;
  justify-content: center;
}
.c-card-progress__arrow .c-arrow-tri {
  height: 100%;
  width: 2em;
}
.c-card-progress__arrow .c-arrow-tri.bottom {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-card-progress.sp-col .c-card-progress__arrow .c-arrow-tri.right {
    display: none;
  }
  .c-card-progress.sp-col .c-card-progress__arrow .c-arrow-tri.bottom {
    bottom: 0;
    display: block;
    height: 25px;
    left: 0;
    position: absolute;
    transform: translateY(100%);
    width: 100%;
  }
}

/* .c-card-c
----------------------- */
.c-card-c {
  display: inline-flex;
}
.c-card-c__content {
  background: white;
  position: relative;
  text-align: center;
}
.c-card-c__term {
  font-size: 4.5rem;
  font-family: YuMincho, "Yu Mincho", NotoSerifJP, serif;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
}
.c-card-c__desc {
  align-items: center;
  display: flex;
  font-weight: bold;
  height: 150px;
  justify-content: center;
  padding: 1em;
}
.c-card-c__arrow .c-arrow-tri {
  height: 100%;
  width: 2em;
}

/* ==============================================
heading
============================================== */
/*
* .c-heading
* .c-heading-a
* .c-heading-b
* .c-heading-c
* .c-heading-d
* .c-heading-e
* .c-heading-f
*/
/* .c-heading
----------------------- */
.c-heading {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* .c-heading-a
----------------------- */
.c-heading-a {
  margin: auto;
  margin-bottom: 50px;
  text-align: center;
}
.c-heading-a__main {
  display: inline-block;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
}
.c-heading-a__sub {
  margin-top: 0;
  color: #3563b0;
  font-weight: 500;
  font-size: 1rem;
}
.c-heading-a--18 {
  font-size: 1.8rem;
  line-height: 1.5;
}
.c-heading-a--20 {
  margin-bottom: 1.3rem;
  font-size: 2rem;
  line-height: 1.5;
}
.c-heading-a--25 {
  margin-bottom: 1.3rem;
  font-size: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .c-heading-a--25 {
    margin-bottom: 45px;
  }
}

/* .c-heading-b
----------------------- */
.c-heading-b {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  margin-bottom: 50px;
  padding: 5px 30px;
  border-left: 5px solid #3563b0;
  text-align: left;
  /* .c-heading-b(sp) */
}
.c-heading-b__main {
  display: inline-block;
  color: #000000;
  font-weight: bold;
  font-size: 2.6rem;
}
.c-heading-b__sub {
  margin-top: 5px;
  color: #3563b0;
  font-weight: 500;
  font-size: 1.2rem;
}
.c-heading-b--green::before {
  background: #1b6500;
}
@media only screen and (max-width: 767px) {
  .c-heading-b {
    margin-bottom: 3.3333333333vw;
    padding: 1.3333333333vw 2.6666666667vw;
  }
  .c-heading-b--mb35 {
    margin-bottom: 20px;
  }
}

/* .c-heading-c
----------------------- */
.c-heading-c {
  position: relative;
  margin: auto;
  text-align: center;
}
.c-heading-c.--cb .c-heading-c__main {
  display: inline-block;
  color: #000;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4;
}
.c-heading-c.--cb .c-heading-c__sub {
  margin-top: 1rem;
  color: #000;
  font-size: 1.8rem;
  letter-spacing: 0.25em;
}
.c-heading-c.--cb img {
  border: 1px solid #3563b0;
}
.c-heading-c__main {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4;
}
.c-heading-c__sub {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.25em;
}
@media only screen and (max-width: 767px) {
  .c-heading-c__main {
    font-size: 4.2666666667vw;
  }
  .c-heading-c__sub {
    font-size: 3.2vw;
  }
}

/* .c-heading-d
----------------------- */
.c-heading-d__text {
  line-height: 1.4;
}
.c-heading-d__main {
  font-family: YuMincho, "Yu Mincho", NotoSerifJP, serif;
  font-size: 6rem;
}
.c-heading-d__sub {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}
.c-heading-d__sub--red {
  color: #a50000;
}
.c-heading-d__sub--green {
  color: #1b6500;
}
.c-heading-d__sub--purple {
  color: #61006e;
}
.c-heading-d__sub--ocher {
  color: #988100;
}
.c-heading-d__sub--gray-dark {
  color: #5f5f5f;
}
.c-heading-d--white {
  color: #ffffff;
}
.c-heading-d--align-r {
  text-align: right;
}
.c-heading-d--mb40 {
  margin-bottom: 40px;
}

/* .c-heading-e
----------------------- */
.c-heading-e__main {
  font-family: YuMincho, "Yu Mincho", NotoSerifJP, serif;
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.c-heading-e--40 .c-heading-e__main {
  font-size: 4rem;
}
.c-heading-e--mb35 {
  margin-bottom: 35px;
}

/* .c-heading-f
----------------------- */
.c-heading-f {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.c-heading-f__strong {
  font-family: YuMincho, "Yu Mincho", NotoSerifJP, serif;
  display: block;
  font-size: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .c-heading-f--spcol {
    flex-direction: column;
  }
}

/* .c-heading-g
----------------------- */
.c-heading-g {
  display: block;
  margin-bottom: 30px;
  border-bottom: 1px solid #1b6500;
  font-size: 3rem;
  text-align: center;
}
.c-heading-g__main {
  padding-bottom: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .c-heading-g {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
  .c-heading-g__main {
    padding-bottom: 15px;
    font-weight: bold;
  }
}

/* .c-heading-h
----------------------- */
.c-heading-h {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .c-heading-h {
    font-size: 1.6rem;
  }
}

/* ==============================================
icon
============================================== */
/*
* .c-icon
* .c-icon-plus
* .c-icon-marker
* .c-icon-new
* .c-icon-x
*/
/* .c-icon
----------------------- */
.c-icon {
  display: inline-block;
  vertical-align: middle;
  /* .c-icon(sp) */
}
/* .c-icon-plus
----------------------- */
.c-icon-plus {
  position: relative;
  display: block;
  width: 20px; /**/
  height: 20px; /**/
}
.c-icon-plus::before, .c-icon-plus::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 1px; /**/
  background: #000000; /**/
  content: "";
  transform: translateY(-50%);
}
.c-icon-plus::after {
  transition: transform 0.2s ease-out;
  transform: translateY(-50%) rotate(90deg);
}
.c-icon-plus--white {
  /**/
}
.c-icon-plus--white::before, .c-icon-plus--white::after {
  background: #ffffff;
}
[aria-expanded=true] .c-icon-plus::after {
  transform: translateY(-50%) rotate(0deg);
}

/* .c-icon-marker
----------------------- */
.c-icon-marker {
  position: relative;
}
.c-icon-marker__num {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-weight: bold;
  transform: translate(-45%, -57%);
}
.c-icon-marker--ocher path {
  fill: #988100;
}
.c-icon-marker--red path {
  fill: #a50000;
}
.c-icon-marker--blue path {
  fill: #004888;
}

/* .c-icon-new
----------------------- */
.c-icon-new {
  padding: 0.2em 0;
  font-weight: bold;
  line-height: 1;
}
.c-icon-new--rightborder {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid;
}
.c-icon-new--purple {
  color: #61006e;
}

/* .c-icon-x
----------------------- */
.c-icon-x {
  position: relative;
  width: 15px;
  height: 15px;
}
.c-icon-x::before, .c-icon-x::after {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #333333;
  content: "";
}
.c-icon-x::before {
  transform: translateY(-50%) rotate(45deg);
}
.c-icon-x::after {
  transform: translateY(-50%) rotate(-45deg);
}

/* ==============================================
label
============================================== */
/*
* .c-label
* .c-label-a
*/
/* .c-label
----------------------- */
.c-label {
  display: inline-block;
}

/* .c-label-a
----------------------- */
.c-label-a {
  border: 1px solid #333333;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0.5em 0.3em;
}
.c-label-a--white {
  border-color: #fff;
  color: #fff;
}
.c-label-a--15 {
  font-size: 1.5rem;
  padding: 0.5em;
}

/* ==============================================
lead
============================================== */
/*
* .c-lead
* .c-lead-a

*/
/* .c-lead
----------------------- */
.c-lead {
  /* .c-lead(sp) */
}
/* .c-lead-a
----------------------- */
.c-lead-a {
  font-size: 2.2rem;
  font-weight: 700;
  /* .c-lead-a(1040) */
  /* .c-lead-a(sp) */
}
.c-lead-a--white {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-lead-a {
    font-size: 4.2666666667vw;
  }
}

/* ==============================================
link
============================================== */
/*
* .c-link
* .c-link-a
* .c-link-b
* .c-link-c
* .c-link-d
*/
/* .c-link
----------------------- */
.c-link {
  display: inline-block;
  /* .c-link(sp) */
}
/* .c-link-a
----------------------- */
.c-link-a {
  align-items: center;
  display: flex;
  font-weight: 700;
  line-height: 1.5;
}
.c-link-a__text .text-25 {
  font-size: 2.5rem;
}
.c-link-a .c-arrow:first-child {
  margin-right: 0.7em;
}
.c-link-a .c-arrow:last-child {
  margin-left: 0.5em;
}
.c-link-a .c-arrow-b {
  position: relative;
  top: -5px;
}
.c-link-a--vert {
  flex-direction: column;
  text-align: left;
}
.c-link-a--vert .c-arrow {
  margin-left: 0 !important;
  margin-top: 0.5em;
}
.c-link-a--20 {
  font-size: 2rem;
}
.c-link-a--white {
  color: white;
}
.c-link-a--white .c-arrow::before {
  border-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-link-a__text .text-sp20 {
    font-size: 2rem;
  }
}

/* .c-link-b
----------------------- */
.c-link-b {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
}
.c-link-b .c-arrow:first-child {
  margin-right: 0.7em;
}
.c-link-b .c-arrow:last-child {
  margin-left: 0.5em;
}
.c-link-b--hline {
  padding-left: 1.4em;
}
.c-link-b--hline::before {
  background: #333333;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 0.7em;
}

/* .c-link-c
----------------------- */
.c-link-c {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  height: 100%;
}
.c-link-c__target {
  align-items: center;
  display: flex;
  font-weight: 700;
  height: 100%;
  justify-content: space-between;
  padding: 1em;
  transition: background 0.2s ease-out;
}
a.c-link-c__target:hover {
  background: #e3e3e3;
}
a.c-link-c__target:hover .c-arrow {
  transform: translate(-0.3em, -20%);
}

.c-link-c .c-arrow {
  margin-left: 0.5em;
  transform: translateY(-20%);
  transition: transform 0.2s ease-out;
}
.c-link-c--columns {
  border: none;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  margin-left: -1px;
}
.c-link-c--columns .c-link-c__target {
  flex-direction: column;
}
.c-link-c--columns .c-link-c__target .c-arrow {
  margin-left: 0;
}
.c-link-c--columns .c-link-c__text {
  line-height: 1.5;
  margin-bottom: 0.3em;
  text-align: center;
}

/* .c-link-d
----------------------- */
.c-link-d {
  text-decoration: underline;
}
.c-link-d:hover {
  text-decoration: none;
}

/* ==============================================
list
============================================== */
/*
* .c-list
* .c-dlist-a
* .c-dlist-b
*/
/* .c-list
----------------------- */
.c-list {
  margin-left: 1em;
  text-indent: -1em;
}

/* .c-dlist-a
----------------------- */
.c-list-a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 15px;
}
.c-list-a__item {
  width: 32.3333333333%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-list-a {
    gap: 2%;
  }
  .c-list-a__item {
    width: 49%;
    text-align: center;
  }
}

/* .c-dlist-b
----------------------- */
.c-dlist-b__desc {
  padding-left: 1em;
}

/* ==============================================
media
============================================== */
/*
* c-media-a

*/
/* c-media-a
----------------------- */
.c-media-a {
  display: flex;
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}
.c-media-a:after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 80%;
  height: 100%;
  background-color: #ffffff;
  content: "";
  filter: drop-shadow(2px 2px 3px rgba(194, 194, 194, 0.6));
}
.c-media-a:nth-child(even) {
  flex-direction: row-reverse;
}
.c-media-a:nth-child(even):after {
  left: 0;
}
.c-media-a:nth-child(even) .c-media-a__content {
  display: flex;
  justify-content: flex-end;
}
.c-media-a:nth-child(even) .c-media-a__content__inner {
  padding-right: 0;
  padding-left: 80px;
  border-left: 1px solid #3563b0;
}
.c-media-a:nth-child(odd) .c-media-a__content__inner {
  padding-right: 80px;
  padding-left: 0;
  border-right: 1px solid #3563b0;
}
.c-media-a__img {
  position: relative;
  z-index: 99;
  width: 82.7%;
}
.c-media-a__img img {
  position: relative;
  width: inherit;
  height: auto;
  margin: 0 auto;
  padding: 60px 0;
}
.c-media-a__content {
  position: relative;
  z-index: 99;
  width: 40%;
}
.c-media-a__content__inner {
  width: 100%;
  max-width: 440px;
  height: 100%;
  padding: 80px 40px;
}
.c-media-a__heading {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
}
.c-media-a__desc {
  max-width: 410px;
  padding-left: 0.5em;
  text-align: left;
}
.c-media-a__desc p {
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.5rem);
  line-height: 2.6;
}
@media only screen and (max-width: 767px) {
  .c-media-a {
    flex-direction: column !important;
    max-height: 100% !important;
    padding-right: 20px;
    padding-left: 20px;
  }
  .c-media-a:after {
    width: 100%;
  }
  .c-media-a:not(:first-child) {
    padding-top: vw-ssp(40);
  }
  .c-media-a__img {
    order: 2;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    overflow: visible;
    object-position: center center;
  }
  .c-media-a__img img {
    width: 100%;
    padding-top: 0;
  }
  .c-media-a .c-media-a__content__inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border: none !important;
  }
  .c-media-a__heading {
    margin-bottom: 0;
    font-size: 4.2666666667vw;
  }
  .c-media-a__content {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .c-media-a__content__inner {
    width: 100%;
    max-width: none;
  }
  .c-media-a__desc {
    max-width: 100%;
  }
}

/* c-media-b
----------------------- */
.c-media-b {
  display: flex;
  text-align: center;
}
.c-media-b:nth-child(odd) {
  flex-direction: row-reverse;
}
.c-media-b:nth-child(odd) .c-media-a__content {
  display: flex;
  justify-content: flex-end;
}
.c-media-b__img {
  position: relative;
  width: 60%;
  max-height: 540px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #eeeeee;
}
.c-media-b__img img {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 790/540;
  object-fit: cover;
}
.c-media-b__content {
  width: 40%;
  padding: 80px 40px;
}
.c-media-b__content__inner {
  width: 100%;
  max-width: 320px;
}
.c-media-b__heading {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
}
.c-media-b__desc {
  max-width: 410px;
  padding-left: 0.5em;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .c-media-b__img {
    margin-bottom: 8vw;
  }
  .c-media-b__heading {
    margin-bottom: 4vw;
    font-size: 4.2666666667vw;
  }
}

/* c-media-c
----------------------- */
.c-media-c {
  display: flex;
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  gap: 50px;
}
.c-media-c.--rowrev {
  flex-direction: row-reverse;
}
.c-media-c.--rowrev .c-media-c__content {
  left: 0;
  right: calc(52% + 60px);
}
.c-media-c.--rowrev .c-media-c__content__inner {
  margin-left: auto;
}
.c-media-c.--rowrev .c-media-c__img {
  width: 52%;
}
.c-media-c.--rowrev .c-media-c__img img {
  border-radius: 12px 0 0 12px;
}
.c-media-c__img {
  position: relative;
  z-index: 99;
  overflow: hidden;
  text-align: left;
  width: 52%;
}
.c-media-c__img img {
  border-radius: 0 12px 12px 0;
  position: relative;
  width: inherit;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}
.c-media-c__content {
  z-index: 99;
  left: calc(52% + 60px);
}
.c-media-c__content__inner {
  width: 100%;
  max-width: 490px;
  height: 100%;
}
.c-media-c__heading {
  margin-bottom: 0.5em;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.4;
}
.c-media-c__desc {
  max-width: 410px;
  padding-left: 0.5em;
  text-align: left;
}
.c-media-c__desc p {
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.5rem);
  line-height: 2.6;
}
@media only screen and (max-width: 767px) {
  .c-media-c {
    flex-direction: column !important;
    max-height: 100% !important;
    padding-right: 20px;
    padding-left: 20px;
  }
  .c-media-c.--rowrev {
    flex-direction: row-reverse;
  }
  .c-media-c.--rowrev .c-media-c__content {
    left: 0;
    right: 0;
  }
  .c-media-c.--rowrev .c-media-c__content__inner {
    margin-left: auto;
  }
  .c-media-c.--rowrev .c-media-c__img {
    margin-right: -20px;
    margin-left: 20px;
    width: 100%;
  }
  .c-media-c.--rowrev .c-media-c__img img {
    border-radius: 12px 0 0 12px;
    margin-left: auto;
  }
  .c-media-c:after {
    width: 100%;
  }
  .c-media-c:not(:first-child) {
    padding-top: vw-ssp(40);
  }
  .c-media-c__img {
    order: 2;
    width: 100%;
    margin-top: 0;
    padding-top: 0;
    overflow: visible;
    object-position: center center;
    margin-left: -20px;
  }
  .c-media-c__img img {
    width: 100%;
    padding-top: 0;
  }
  .c-media-c .c-media-a__content__inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border: none !important;
  }
  .c-media-c__heading {
    margin-bottom: 0;
    font-size: 4.2666666667vw;
  }
  .c-media-c__content {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .c-media-c__content__inner {
    width: 100%;
    max-width: none;
  }
  .c-media-c__desc {
    max-width: 100%;
  }
}

/* ==============================================
shadow
============================================== */
/*
* .c-shadow-a
*/
/* .c-shadow-a
----------------------- */
.c-shadow-a {
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.25);
}

/* ==============================================
text
============================================== */
/*
* .c-text-p
*/
/* .c-text-p
----------------------- */
.c-text-p {
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
  line-height: 2;
}
.c-text-p:not(:last-child) {
  margin-bottom: 1.5em;
}

/* ==============================================
toggler
============================================== */
/*
* .c-toggler
*/
/* .c-toggler
----------------------- */
.c-toggler {
  border: none;
  padding: 0;
}
.c-toggler__icon {
  height: 18px; /**/
  position: relative;
  width: 35px; /**/
}
.c-toggler__icon span {
  background: #000; /**/
  height: 1px; /**/
  position: absolute;
  width: 100%;
}
.c-toggler__icon span:nth-child(1) {
  top: 0;
}
.c-toggler__icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.c-toggler__icon span:nth-child(3) {
  bottom: 0;
}
.c-toggler span {
  display: block;
  transition: transform 0.2s ease-out; /**/
}
.c-toggler[aria-expanded=true] .c-toggler__icon span:nth-child(2) {
  display: none;
}
.c-toggler[aria-expanded=true] .c-toggler__icon span:nth-child(1), .c-toggler[aria-expanded=true] .c-toggler__icon span:nth-child(3) {
  top: 50%;
}
.c-toggler[aria-expanded=true] .c-toggler__icon span:nth-child(1) {
  transform: rotate(45deg);
}
.c-toggler[aria-expanded=true] .c-toggler__icon span:nth-child(3) {
  transform: rotate(-45deg);
}
.c-toggler[aria-expanded=true] .c-toggler__text .default {
  display: none;
}
.c-toggler[aria-expanded=false] .c-toggler__text .expanded {
  display: none;
}

/* Project
------------------------------------------- */
.breadcrumb {
  padding: 1em;
}
.breadcrumb__ListGroup {
  display: flex;
}
.breadcrumb__ListGroup__Link[href]:hover {
  opacity: 0.5;
}
.breadcrumb__ListGroup > * + * {
  margin-left: 0.5em;
}
.breadcrumb__ListGroup > * + *::before {
  margin-right: 0.75em;
  margin-left: 0.75em;
  content: ">";
}

/* ==============================================
buttons
============================================== */
/*
* .p-buttons-a

*/
/* .p-buttons-a
----------------------- */
.p-buttons-a {
  margin-top: 40px;
  text-align: center;
}
.p-buttons-a__term {
  margin-bottom: 1.5em;
}
@media only screen and (max-width: 767px) {
  .p-buttons-a {
    margin-top: 3.3333333333vw;
  }
  .p-buttons-a .c-button {
    width: 100%;
    min-width: auto;
  }
}

/* .p-buttons-d
----------------------- */
.p-buttons-d {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: min(10px, 10em);
}
@media only screen and (max-width: 767px) {
  .p-buttons-d {
    margin-top: 3.3333333333vw;
    flex-wrap: wrap;
  }
}

/* ==============================================
cards
============================================== */
/*
* .p-cards-a

*/
/* .p-cards-a
----------------------- */
.p-cards-a__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-cards-a__item {
  flex: 0 1 auto;
  width: 31.9047619048%;
}
.p-cards-a__item:nth-child(-n+3) {
  margin-bottom: 40px;
}
.p-cards-a__item:not(:nth-child(3n)) {
  margin-right: 2%;
}
.p-cards-a__item:last-child {
  margin-right: 0;
}
.p-cards-a .c-card-c {
  width: 100%;
}
.p-cards-a .c-card-c__content {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-cards-a__list {
    flex-direction: column;
  }
  .p-cards-a__item {
    flex: 1 1 auto;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
  }
  .p-cards-a__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .p-cards-a__item:nth-child(odd) {
    left: -4vw;
  }
  .p-cards-a__item:nth-child(odd) .c-card-c__arrow.prev {
    background: #fff;
  }
  .p-cards-a__item:nth-child(even) {
    right: -4vw;
  }
  .p-cards-a__item:nth-child(even) .c-card-c__arrow.next {
    background: #fff;
  }
}

/* ==============================================
carousel
============================================== */
/*
* .p-carousel-a
*/
/* .p-carousel-a
----------------------- */
.p-carousel-a .slick-list {
  padding: 0 21.0476190476% !important;
}
.p-carousel-a .slick-dots li.slick-active button::before {
  color: #1b6500;
}
.p-carousel-a .slick-dots li button::before {
  color: #d3d3d3;
  font-size: 1.5rem;
  opacity: 1;
}
.p-carousel-a__img {
  display: block;
  padding: 0 7px;
}
@media only screen and (max-width: 767px) {
  .p-carousel-a {
    margin-left: -4vw;
    width: 100vw;
  }
  .p-carousel-a .slick-list {
    padding: 0 20px !important;
  }
  .p-carousel-a__img {
    padding: 0 3px;
  }
}

/* ==============================================
faq
============================================== */
/*
* .p-faq
* .p-faq-article
*/
/* .p-faq
----------------------- */
.p-faq__nav {
  padding-bottom: 0;
}
.p-faq .p-faq-article:not(:last-child) {
  margin-bottom: 20px;
}

/* .p-faq-article
----------------------- */
.p-faq-article {
  /* .p-faq-article(sp) */
}
.p-faq-article__tab {
  background: #D1E2F2;
  position: relative;
  transition: background 0.2s ease-out;
}
.p-faq-article__tab .c-icon-plus {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-faq-article__tab .c-icon-plus::before, .p-faq-article__tab .c-icon-plus::after {
  background: #004888;
}
.p-faq-article__tab:hover {
  background: #a9c9e7;
}
.p-faq-article__heading {
  align-items: flex-start;
  display: flex;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 1em 2em 1em 1em;
}
.p-faq-article__heading .q {
  color: #004888;
  margin-right: 0.5em;
}
.p-faq-article__content {
  display: flex;
  padding: 20px 0;
}
.p-faq-article__content > *:not(:last-child) {
  margin-right: 3.3333333333%;
}
.p-faq-article__p:not(:last-child) {
  margin-bottom: 1em;
}
.p-faq-article__desc {
  flex: 1 1 auto;
}
.p-faq-article__img {
  flex: 0 0 auto;
  max-width: 50vw;
}
@media only screen and (max-width: 767px) {
  .p-faq-article__content {
    flex-direction: column;
  }
  .p-faq-article__content > *:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .p-faq-article__img {
    max-width: 100%;
  }
}

/* ==============================================
gmap
============================================== */
/*
* .p-gmap-a
*/
/* .p-gmap-a
----------------------- */
.p-gmap-a {
  line-height: 1;
  /* .p-gmap-a(sp) */
}
.p-gmap-a iframe {
  height: 460px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .p-gmap-a iframe {
    height: 230px;
  }
}

/* ==============================================
history
============================================== */
/*
* .p-history
*/
/* .p-history
----------------------- */
.p-history__list {
  position: relative;
}
.p-history__list::before {
  border-left: 1px solid #A7A7A7;
  border-bottom: 1px solid #A7A7A7;
  content: "";
  display: block;
  height: 100%;
  left: 7px;
  position: absolute;
  top: 3px;
  transform: skewY(-45deg);
  width: 17px;
}
.p-history__item:not(:last-child) {
  margin-bottom: 6.6666666667%;
}
.p-history__item .history-unit {
  align-items: flex-start;
  display: flex;
}
.p-history__item .history-unit__block:not(:last-child) {
  margin-bottom: 20px;
}
.p-history__item .history-unit__date {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-right: 4.7619047619%;
  padding-left: 50px;
  position: relative;
}
.p-history__item .history-unit__date::before, .p-history__item .history-unit__date::after {
  background: #a50000;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.p-history__item .history-unit__date::before {
  height: 1px;
  width: 40px;
}
.p-history__item .history-unit__date::after {
  border-radius: 50%;
  height: 15px;
  width: 15px;
}
.p-history__item .history-unit__date--next-stage {
  padding-bottom: 3.8095238095%;
}
.p-history__item .history-unit__date--next-stage::before, .p-history__item .history-unit__date--next-stage::after {
  content: none;
}
@media only screen and (max-width: 767px) {
  .p-history__item:not(:last-child) {
    margin-bottom: 70px;
  }
  .p-history__item .history-unit {
    flex-direction: column;
  }
  .p-history__item .history-unit__date {
    margin-bottom: 25px;
  }
  .p-history__item .history-unit__content {
    padding-left: 50px;
  }
  .p-history__item .history-unit__content .c-link {
    justify-content: flex-end;
  }
}

/* ==============================================
map
============================================== */
/*
* .p-map-a

*/
/* .p-map-a
----------------------- */
.p-map-a__caption {
  margin-top: 0.4em;
  text-align: right;
}
.p-map-a__notes {
  color: #A3A3A3;
  font-size: 0.8rem;
}
.p-map-a__notes .c-link {
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .p-map-a__img {
    width: 100%;
  }
}

/* ==============================================
message
============================================== */
/*
* .p-message
*/
/* .p-message
----------------------- */
.p-message__header .l-col {
  align-items: center;
}
.p-message__img-1 {
  margin-right: 0 !important;
  width: 50%;
}
.p-message__img-2 {
  width: 44.2857142857%;
}
.p-message__name {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-weight: bold;
  justify-content: center;
}
.p-message__name .term {
  font-size: 3rem;
  line-height: 1.5;
}
.p-message__name .desc {
  font-size: 4.5rem;
}
@media only screen and (max-width: 767px) {
  .p-message__header .l-col {
    align-items: flex-start;
  }
  .p-message__body .p-message__text {
    margin-bottom: 0 !important;
    order: 1;
  }
  .p-message__body .p-message__img-2 {
    margin-bottom: 50px;
  }
  .p-message__name .term {
    font-size: 2rem;
  }
  .p-message__name .desc {
    font-size: 3rem;
  }
}

/* ==============================================
mission
============================================== */
/*
* .p-mission
* .p-mission-a
*/
/* .p-mission
----------------------- */
.p-mission__img {
  margin-right: 5.7142857143% !important;
}
.p-mission__content {
  flex: 1 1 auto !important;
}
.p-mission__content .c-heading-a .br-1 {
  display: none;
}
.p-mission__nav {
  margin-top: 35px;
}
@media only screen and (max-width: 1140px) {
  .p-mission__content .c-heading-a .br-2 {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-mission__img {
    margin-right: 0 !important;
    margin-bottom: 50px;
    text-align: center;
  }
  .p-mission__img img {
    width: 300px;
  }
  .p-mission__content .c-heading-a .br-1 {
    display: block;
  }
  .p-mission__content .c-heading-a .br-2 {
    display: block;
  }
}

/* .p-mission-a
----------------------- */
.p-mission-a {
  margin: 236px 0 336px;
}
.p-mission-a__subtitle {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.p-mission-a__subtitle .c-icon {
  margin: 5px 0;
}
.p-mission-a__content {
  background: #e6b7b7;
  padding: 140px 0;
  position: relative;
}
.p-mission-a__content .img {
  display: block;
  position: absolute;
}
.p-mission-a__content .img:nth-child(1) {
  left: 0;
  top: 0;
  transform: translate(-73px, -186px);
  z-index: 1;
}
.p-mission-a__content .img:nth-child(2) {
  left: 0;
  top: 0;
  transform: translate(-158px, -30px);
}
.p-mission-a__content .img:nth-child(3) {
  bottom: 0;
  right: 0;
  transform: translate(158px, 0);
}
.p-mission-a__content .img:nth-child(4) {
  bottom: 0;
  right: 0;
  transform: translate(131px, 175px);
}
@media only screen and (max-width: 767px) {
  .p-mission-a {
    margin: 236px 0 310px;
  }
  .p-mission-a__subtitle .c-icon {
    margin: 15px 0;
  }
  .p-mission-a__content {
    margin: 0 -4vw;
    padding: 280px 0 300px;
  }
  .p-mission-a__content .img:nth-child(1) {
    left: auto;
    right: 0;
    transform: translate(4vw, -184px);
    width: 331px;
  }
  .p-mission-a__content .img:nth-child(2) {
    transform: translate(0, -50px);
  }
  .p-mission-a__content .img:nth-child(3) {
    transform: translate(0, 10px);
    width: 360px;
  }
  .p-mission-a__content .img:nth-child(4) {
    left: 0;
    right: auto;
    transform: translate(0, 165px);
    width: 331px;
  }
}

/* ==============================================
navpanel
============================================== */
/*
* .p-navpanel
*/
/* .p-navpanel
----------------------- */
.p-navpanel__list {
  display: flex;
  flex-wrap: wrap;
}
.p-navpanel__item .c-link {
  display: block;
}
.p-navpanel--3col .p-navpanel__item {
  width: 31.4285714286%;
}
.p-navpanel--3col .p-navpanel__item:not(:nth-child(3n)) {
  margin-right: 2.8571428571%;
}
.p-navpanel--3col .p-navpanel__item:not(:nth-child(-n+3)) .c-link-c {
  border-top: none;
}
.p-navpanel--4col .p-navpanel__item {
  width: 21.9047619048%;
}
.p-navpanel--4col .p-navpanel__item:not(:nth-child(4n)) {
  margin-right: 2.8571428571%;
}
.p-navpanel--4col .p-navpanel__item:not(:nth-child(-n+4)) .c-link-c {
  border-top: none;
}
.p-navpanel--anchor .c-link-c__target:hover .c-arrow {
  transform: rotate(135deg);
}
.p-navpanel--anchor .c-link-c .c-arrow {
  transform: rotate(135deg);
}
.p-navpanel--columns .p-navpanel__item .c-link-c {
  display: flex;
  align-items: center;
  height: 100%;
}
.p-navpanel--columns .p-navpanel__item .c-link-c__target {
  padding: 0.3em 0.2em;
  width: 100%;
}
.p-navpanel--columns.p-navpanel--4col .p-navpanel__item {
  flex: 1 1 25%;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .p-navpanel__list {
    flex-direction: column;
  }
  .p-navpanel__item {
    width: 100%;
  }
  .p-navpanel--3col .p-navpanel__item {
    width: 100%;
  }
  .p-navpanel--3col .p-navpanel__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .p-navpanel--3col .p-navpanel__item:nth-child(2) .c-link, .p-navpanel--3col .p-navpanel__item:nth-child(3) .c-link {
    border-top: none;
  }
  .p-navpanel--3col .p-navpanel__item:nth-child(2) .c-link.singleitem, .p-navpanel--3col .p-navpanel__item:nth-child(3) .c-link.singleitem {
    border-top: 1px solid #d3d3d3;
  }
  .p-navpanel--4col .p-navpanel__item {
    width: 100%;
  }
  .p-navpanel--4col .p-navpanel__item:not(:first-child) .c-link {
    border-top: none;
  }
  .p-navpanel--columns .p-navpanel__list {
    flex-direction: row;
  }
  .p-navpanel--columns .p-navpanel__item .c-link-c {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .p-navpanel--columns .p-navpanel__item .c-link-c__target {
    padding: 0.3em 0.2em;
    width: 100%;
  }
  .p-navpanel--columns.p-navpanel--4col .p-navpanel__item {
    flex: 1 1 172px;
    margin-right: 0;
  }
  .p-navpanel--columns.p-navpanel--4col .p-navpanel__item:not(:nth-last-child(-n+2)) {
    margin-bottom: 1em;
  }
}

/* ==============================================
news
============================================== */
/*
* .p-news

*/
/* .p-news
----------------------- */
.p-news__unit:not(:last-child) {
  margin-bottom: 2em;
}
.p-news__meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}
.p-news__date {
  margin-right: 1em;
}

.news__buttons {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.news__buttons .news__item__cat {
  position: relative;
  font-size: clamp(1.3rem, 0.25vw + 1.4rem, 1.4rem);
  padding: 9px 1.5em;
  transition: opacity 0.3s;
}
.news__buttons .news__item__cat:hover {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.news__buttons .news__item__cat:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #ffffff;
  content: "";
}
.newslist {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  border-top: 1px solid #7393c6;
  border-bottom: 1px solid #7393c6;
}
.news__item {
  transition: all 0.3s;
  align-items: center;
  outline: 8px solid rgba(125, 163, 154, 0);
  padding: 20px 0;
  display: flex;
  gap: 30px;
  position: relative;
}
.news__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.news__item:hover {
  outline: 8px solid rgba(12, 177, 237, 0.2);
  border-radius: 3px;
  background: rgba(12, 177, 237, 0.2);
  transition: all 0.3s;
}
.news__item__term {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news__item__date {
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.2rem);
}
.news__item__text {
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.4rem);
  padding-right: 1em;
  font-weight: 300;
}
.news__item__cat {
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.2rem);
  color: #fff;
  width: 10em;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 1em;
  white-space: nowrap;
  border-radius: 4px;
}
.news__item__cat.--media {
  background-color: #a9916b;
}
.news__item__cat.--news {
  background-color: #3462ae;
}
.news__item__cat.--newsrelease {
  background-color: #f49953;
}
.news__item__cat.--recruit {
  background-color: #5480a2;
}
@media only screen and (max-width: 767px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .news__item__cat {
    width: calc(50% - 20px);
  }
  .news__item__date {
    margin: 0 !important;
  }
  .news__item:not(.--sticky) {
    gap: 5px 20px;
  }
}

/* ==============================================
office
============================================== */
/*
* .p-office
*/
/* .p-office
----------------------- */
@media only screen and (max-width: 767px) {
  .p-office .c-heading-b {
    margin-bottom: 35px;
  }
}

/* ==============================================
ph-unit
============================================== */
/*
* .p-ph-unit-a
* .p-ph-unit-b
* .p-ph-unit-c
* .p-ph-unit-d
* .p-ph-unit-e
* .p-ph-unit-f
*/
/* .p-ph-unit-a
----------------------- */
.p-ph-unit-a {
  /* .p-ph-unit-a(sp) */
}
.p-ph-unit-a__inner {
  align-items: flex-start;
}
.p-ph-unit-a__caption {
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.8em;
}
.p-ph-unit-a--2col .p-ph-unit-a__inner {
  display: flex;
}
.p-ph-unit-a--2col .p-ph-unit-a__unit:nth-child(odd) {
  margin-right: 7.619047619%;
}
.p-ph-unit-a--5col .p-ph-unit-a__inner {
  display: flex;
}
.p-ph-unit-a--5col .p-ph-unit-a__unit {
  flex: 0 1 188px;
  margin-bottom: 30px;
}
.p-ph-unit-a--5col .p-ph-unit-a__unit:not(:last-child) {
  margin-right: 2.6666666667%;
}
.p-ph-unit-a--5col .p-ph-unit-a__unit:nth-child(even) {
  margin-top: 70px;
}
@media only screen and (max-width: 900px) {
  .p-ph-unit-a--5col .p-ph-unit-a__caption {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-ph-unit-a__img {
    width: 100%;
  }
  .p-ph-unit-a--5col .p-ph-unit-a__inner {
    flex-wrap: wrap;
  }
  .p-ph-unit-a--5col .p-ph-unit-a__unit {
    flex: 0 1 50vw;
    margin-right: 0 !important;
  }
  .p-ph-unit-a--5col .p-ph-unit-a__unit:nth-child(even) {
    margin-top: 90px;
  }
  .p-ph-unit-a--5col .p-ph-unit-a__caption {
    font-size: 4vw;
    margin-left: 0.7em;
    margin-right: 0.5em;
  }
  .p-ph-unit-a--sp1col .p-ph-unit-a__inner {
    flex-direction: column;
  }
  .p-ph-unit-a--sp1col .p-ph-unit-a__unit:nth-child(odd) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

/* .p-ph-unit-b
----------------------- */
.p-ph-unit-b {
  /* .p-ph-unit-b(sp) */
}
.p-ph-unit-b__term {
  margin-bottom: 0.5em;
}
.p-ph-unit-b__text {
  margin-bottom: 1em;
}
.p-ph-unit-b__text .c-dlist-a__term {
  flex-shrink: 0;
}
.p-ph-unit-b--3col .p-ph-unit-b__inner {
  display: flex;
  flex-wrap: wrap;
}
.p-ph-unit-b--3col .p-ph-unit-b__unit {
  width: 31.4285714286%;
}
.p-ph-unit-b--3col .p-ph-unit-b__unit:not(:nth-child(3n)) {
  margin-right: 2.8571428571%;
}
.p-ph-unit-b--3col .p-ph-unit-b__unit:not(:nth-child(-n+3)) {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .p-ph-unit-b--sp1col .p-ph-unit-b__inner {
    flex-direction: column;
  }
  .p-ph-unit-b--sp1col .p-ph-unit-b__unit {
    width: 100%;
  }
  .p-ph-unit-b--sp1col .p-ph-unit-b__unit:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .p-ph-unit-b--sp1col .p-ph-unit-b__unit:not(:nth-child(-n+3)) {
    margin-top: 0;
  }
  .p-ph-unit-b--sp1col .p-ph-unit-b__unit:not(:last-child) {
    margin-bottom: 40px;
  }
  .p-ph-unit-b--sp1col .p-ph-unit-b__img {
    width: 100%;
  }
}

/* .p-ph-unit-c
----------------------- */
.p-ph-unit-c__item:nth-child(even) {
  text-align: right;
}
.p-ph-unit-c__item:not(:last-child) {
  margin-bottom: 45px;
}
.p-ph-unit-c__unit {
  display: flex;
}
.p-ph-unit-c__target {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .p-ph-unit-c__item {
    padding-right: 1em;
  }
  .p-ph-unit-c__item:nth-child(even) {
    padding-left: 1em;
    padding-right: 0;
  }
}

/* .p-ph-unit-d
----------------------- */
.p-ph-unit-d__unit {
  margin: 0 5px;
  position: relative;
}
.p-ph-unit-d__list {
  display: flex;
}
.p-ph-unit-d__item {
  flex: 0 0 auto;
}
.p-ph-unit-d__caption {
  bottom: 20px;
  color: #fff;
  left: 20px;
  padding-right: 10px;
  position: absolute;
}
.p-ph-unit-d__caption .c-label {
  margin-bottom: 0.5em;
}
.p-ph-unit-d__caption .caption {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}

/* .p-ph-unit-e
----------------------- */
.p-ph-unit-e__list {
  display: flex;
  flex-wrap: wrap;
}
.p-ph-unit-e__item {
  width: 47.619047619%;
}
.p-ph-unit-e__item:nth-child(odd) {
  margin-right: 4.7619047619%;
}
.p-ph-unit-e__item:nth-child(odd):last-child {
  margin-bottom: 120px;
}
.p-ph-unit-e__item:nth-child(even) {
  position: relative;
  top: 200px;
}
.p-ph-unit-e__item:nth-child(even):last-child {
  margin-bottom: 160px;
}
.p-ph-unit-e__item:not(:nth-child(-n+2)) {
  margin-top: 90px;
}
.p-ph-unit-e__img {
  display: block;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .p-ph-unit-e__list {
    flex-direction: column;
  }
  .p-ph-unit-e__item {
    width: 93.3333333333vw;
  }
  .p-ph-unit-e__item:nth-child(odd) {
    margin-right: 0;
  }
  .p-ph-unit-e__item:nth-child(odd) .p-ph-unit-e__caption .c-link-a {
    padding-left: 1.5em;
  }
  .p-ph-unit-e__item:nth-child(even) {
    align-self: flex-end;
    text-align: right;
    top: auto;
  }
  .p-ph-unit-e__item:nth-child(even) .p-ph-unit-e__caption .c-link-a {
    justify-content: flex-end;
    padding-right: 1.5em;
  }
  .p-ph-unit-e__item:last-child {
    margin-bottom: 100px !important;
  }
  .p-ph-unit-e__item:not(:nth-child(-n+2)) {
    margin-top: auto;
  }
  .p-ph-unit-e__item:not(:first-child) {
    margin-top: 60px;
  }
}

/* .p-ph-unit-f
----------------------- */
.p-ph-unit-f__inner {
  display: flex;
}
.p-ph-unit-f__inner > *:first-child {
  margin-right: 3.8095238095%;
}
.p-ph-unit-f__text {
  flex: 0 1 525px;
}
@media only screen and (max-width: 767px) {
  .p-ph-unit-f__inner {
    flex-direction: column;
  }
  .p-ph-unit-f__inner > *:first-child {
    margin-right: 0;
  }
  .p-ph-unit-f__img {
    order: 2;
  }
  .p-ph-unit-f__text {
    flex: 0 1 auto;
    margin-bottom: 1.8em;
    order: 1;
  }
}

/* ==============================================
progress
============================================== */
/*
* .p-progress-a
*/
/* .p-progress-a
----------------------- */
.p-progress-a {
  /* .p-progress-a(sp) */
}
.p-progress-a__list {
  display: flex;
}
.p-progress-a__item {
  flex: 0 1 260px;
}
.p-progress-a__item:not(:last-child) {
  margin-right: 13px;
}
.p-progress-a__item .c-card-progress {
  height: 100%;
  width: 100%;
}
.p-progress-a__item .c-card-progress__content {
  width: 100%;
}
.p-progress-a__item:last-child {
  flex-basis: 230px;
}
@media only screen and (max-width: 767px) {
  .p-progress-a__list {
    flex-direction: column;
  }
  .p-progress-a__item {
    flex: 1 1 100%;
  }
  .p-progress-a__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px;
  }
  .p-progress-a__item:last-child {
    flex-basis: auto;
  }
  .p-progress-a__item .c-card-progress {
    height: 100%;
    width: 100%;
  }
  .p-progress-a__item .c-card-progress__content {
    width: 100%;
  }
}

/* ==============================================
projects
============================================== */
/*
* .p-projects
*/
/* .p-projects
----------------------- */
.p-projects {
  /* .p-projects(sp) */
}
.p-projects__text {
  flex: 0 0 350px !important;
  margin-right: 3.3333333333%;
}
.p-projects .p-ph-unit-d--carousel {
  flex-shrink: 0;
  width: 100%;
}
.p-projects .p-ph-unit-d--carousel .slick-list {
  padding-right: 350px;
}
.p-projects .p-ph-unit-d--carousel .slick-dots {
  bottom: -30px;
  width: 340px;
}
.p-projects .p-ph-unit-d--carousel .slick-dots li button::before {
  color: #d3d3d3;
  font-size: 15px;
  opacity: 1;
}
.p-projects .p-ph-unit-d--carousel .slick-dots li.slick-active button::before {
  color: #988100;
}
@media only screen and (max-width: 767px) {
  .p-projects__text {
    margin-bottom: 35px;
  }
  .p-projects__text .c-link-a {
    justify-content: flex-end;
  }
  .p-projects .p-ph-unit-d--carousel .slick-list {
    padding-right: 0;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* ==============================================
speaker
============================================== */
/*
* .p-speaker
*/
/* .p-speaker
----------------------- */
.p-speaker {
  /* .p-speaker(sp) */
}
.p-speaker__inner {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-speaker__img {
  margin-right: 40px;
}
.p-speaker__messagebox {
  background: #fff;
  padding: 45px;
  position: relative;
}
.p-speaker__messagebox::before {
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-right-color: #fff;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 0;
}
.p-speaker__heading {
  margin-bottom: 15px;
}
.p-speaker__heading .main {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .p-speaker__inner {
    flex-direction: column;
  }
  .p-speaker__img {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .p-speaker__img img {
    width: 200px;
  }
  .p-speaker__messagebox {
    padding: 35px;
  }
  .p-speaker__messagebox::before {
    left: 50%;
    top: 0;
    transform: translate(-50%, -120%) rotate(90deg);
  }
}

/* ==============================================
table
============================================== */
/*
* .p-table-a
* .p-table-b
* .p-table-c
* .p-table-d
*/
/* .p-table-a
----------------------- */
.p-table-a__item {
  border-top: 1px solid #d3d3d3;
}
.p-table-a__item:last-child {
  border-bottom: 1px solid #d3d3d3;
}
.p-table-a__row {
  display: flex;
  padding: 1em 4em;
}
.p-table-a__term {
  flex: 0 1 120px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-table-a__row {
    flex-direction: column;
    padding: 1em;
  }
  .p-table-a__term {
    flex-basis: auto;
    margin-bottom: 0.5em;
  }
}

/* .p-table-b
----------------------- */
.p-table-b__group {
  display: flex;
  border: 1px solid #d3d3d3;
  border-right: 0;
}
.p-table-b__group:not(:first-child) {
  border-top: none;
}
.p-table-b__group:not(:first-child) .p-table-b__cell--term {
  display: none;
}
.p-table-b__block {
  flex: 1 1 auto;
}
.p-table-b__block--header {
  flex: 0 1 230px;
}
.p-table-b__block--header .p-table-b__unit {
  height: 100%;
}
.p-table-b__block--header .p-table-b__cell {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-table-b__block--header .p-table-b__cell--term {
  flex-grow: 0;
}
.p-table-b__row {
  display: flex;
}
.p-table-b__row:not(:first-child) .p-table-b__cell--term {
  display: none;
}
.p-table-b__row:not(:last-child) {
  border-bottom: 1px solid #d3d3d3;
}
.p-table-b__unit {
  display: flex;
  flex-direction: column;
}
.p-table-b__unit:nth-child(1) {
  flex: 1 1 auto;
}
.p-table-b__unit:nth-child(2), .p-table-b__unit:nth-child(3) {
  flex: 0 1 230px;
}
.p-table-b__cell {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  padding: 0.8em;
  border-right: 1px solid #d3d3d3;
  line-height: 1.4;
}
.p-table-b__cell--term {
  flex-grow: 0;
  padding: 1em 0.8em;
  background: #e6b7b7;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-table-b__group {
    flex-direction: column;
    border: none;
  }
  .p-table-b__group:not(:first-child) {
    margin-top: 35px;
    border-top: none;
  }
  .p-table-b__group:not(:first-child) .p-table-b__cell--term {
    display: flex;
  }
  .p-table-b__block--header {
    flex: 1 1 auto;
  }
  .p-table-b__block--header .p-table-b__cell {
    justify-content: flex-start;
    margin-bottom: 7px;
    padding-left: 0;
    border: none;
    font-weight: bold;
    font-size: 2rem;
  }
  .p-table-b__block--header .p-table-b__cell--term {
    display: none !important;
  }
  .p-table-b__row {
    flex-direction: column;
    border-top: 1px solid #d3d3d3;
  }
  .p-table-b__row:not(:first-child) .p-table-b__cell--term {
    display: flex;
  }
  .p-table-b__row:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: none;
  }
  .p-table-b__unit {
    display: flex;
    flex: 1 1 auto !important;
    flex-direction: row;
  }
  .p-table-b__cell {
    flex-grow: 1;
    justify-content: flex-start;
    padding: 0.7em;
    border-bottom: 1px solid #d3d3d3;
  }
  .p-table-b__cell--term {
    flex: 0 0 auto;
    justify-content: center;
    width: 30%;
  }
}

/* .p-table-c
----------------------- */
.p-table-c {
  /* .p-table-c(sp) */
}
.p-table-c--full .p-table-c__table {
  width: 100%;
  border-collapse: separate;
}
.p-table-c__colgroup {
  width: 25%;
}
.p-table-c__colgroup--work {
  border-left: 20px solid #e6b7b7;
  background: #e6b7b7;
}
.p-table-c__colgroup--private {
  border-right: 20px solid #d1e2f2;
  background: #d1e2f2;
}
.p-table-c__head .p-table-c__cell--th {
  padding: 25px 20px 17px;
  font-size: 2rem;
  line-height: 1.5;
  vertical-align: middle;
}
.p-table-c__head .p-table-c__cell--work {
  color: #a50000;
}
.p-table-c__head .p-table-c__cell--private {
  color: #004888;
}
.p-table-c__body .p-table-c__row:last-child .p-table-c__cell {
  padding-bottom: 20px;
}
.p-table-c__cell {
  position: relative;
  padding: 5px;
  text-align: center;
}
.p-table-c__cell[colspan="4"] {
  background: linear-gradient(to right, #e6b7b7 49.9047619048%, #d1e2f2 49.9047619048%);
}
.p-table-c__content {
  height: 100%;
  padding: 0.8em;
  background: #ffffff;
  font-size: 1.3rem;
}
.p-table-c__content .term {
  margin-bottom: 0.2em;
  font-weight: bold;
}
.p-table-c__content .term .heading {
  font-weight: bold;
}
.p-table-c__content .term--1line {
  position: relative;
  top: 1.2em;
}
@media only screen and (max-width: 767px) {
  .p-table-c__colgroup--work {
    border-left-width: 8px;
  }
  .p-table-c__colgroup--private {
    border-right-width: 8px;
  }
  .p-table-c__cell {
    padding: 3px;
  }
  .p-table-c__content .term--1line {
    top: 0;
  }
  .p-table-c__content .desc {
    text-align: left;
  }
}

/* .p-table-d
----------------------- */
.p-table-d__item {
  border-top: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
}
.p-table-d__item:last-child {
  border-bottom: 1px solid #d3d3d3;
}
.p-table-d__row {
  display: flex;
  background-color: #d3e5cc;
  text-align: center;
}
.p-table-d__term {
  flex: 0 0 240px;
  width: 240px;
  font-weight: bold;
  line-height: 1.6;
  white-space: nowrap;
}
.p-table-d__cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
}
.p-table-d__cell:last-child {
  justify-content: left;
  width: 100%;
  padding: 1em 2em;
  background-color: #ffffff;
  line-height: 1.6;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-table-d__term {
    flex: 0 0 100px;
    width: 100px;
    padding: 10px;
  }
  .p-table-d__cell {
    padding: 10px;
  }
  .p-table-d__cell:last-child {
    padding: 10px;
  }
}

/* .p-table-e
----------------------- */
.p-table-e__group {
  display: flex;
  border: 1px solid #d3d3d3;
  border-right: 0;
}
.p-table-e__group:not(:first-child) {
  border-top: none;
}
.p-table-e__group:not(:first-child) .p-table-e__cell--term {
  display: none;
}
.p-table-e__block--header .p-table-e__unit {
  height: 100%;
}
.p-table-e__block--header .p-table-e__cell {
  display: flex;
  align-items: center;
}
.p-table-e__block--header .p-table-e__cell--term {
  flex-grow: 0;
}
.p-table-e__row {
  display: flex;
}
.p-table-e__row:not(:first-child) .p-table-e__cell--term {
  display: none;
}
.p-table-e__row:not(:last-child) {
  border-bottom: 1px solid #d3d3d3;
}
.p-table-e__unit {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 175px;
}
.p-table-e__unit:nth-child(2), .p-table-e__unit:nth-child(3), .p-table-e__unit:nth-child(4), .p-table-e__unit:nth-child(3) {
  width: calc(100% - 175px);
}
.p-table-e__cell {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  padding: 0.8em;
  border-right: 1px solid #d3d3d3;
  line-height: 1.4;
}
.p-table-e__cell--term {
  flex-grow: 0;
  padding: 1em 0.8em;
  background: #d3e5cc;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .p-table-e__unit {
    width: 100%;
    max-width: 100%;
  }
  .p-table-e__unit:nth-child(1) {
    border-top: 1px solid #d3d3d3;
  }
  .p-table-e__unit:nth-child(2), .p-table-e__unit:nth-child(3), .p-table-e__unit:nth-child(4), .p-table-e__unit:nth-child(3) {
    width: 100%;
  }
  .p-table-e__group {
    flex-direction: column;
    border: none;
  }
  .p-table-e__group:not(:first-child) {
    margin-top: 35px;
    border-top: none;
  }
  .p-table-e__group:not(:first-child) .p-table-e__cell {
    width: auto;
  }
  .p-table-e__group:not(:first-child) .p-table-e__cell--term {
    display: flex;
    width: 30%;
  }
  .p-table-e__block--header {
    flex: 1 1 auto;
    justify-content: flex-start !important;
    border-top: 1px solid #d3d3d3;
  }
  .p-table-e__block--header:first-child {
    justify-content: center;
  }
  .p-table-e__row {
    flex-direction: column;
  }
  .p-table-e__row:not(:first-child) .p-table-e__cell--term {
    display: flex;
  }
  .p-table-e__row:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: none;
  }
  .p-table-e__unit {
    display: flex;
    flex: 1 1 auto !important;
    flex-direction: row;
  }
  .p-table-e__cell {
    flex-grow: 1;
    justify-content: flex-start;
    padding: 0.7em;
    border-bottom: 1px solid #d3d3d3;
  }
  .p-table-e__cell--term {
    flex: 0 0 auto;
    justify-content: center;
    width: 30%;
  }
}

/* org table */
.p-table-org {
  width: 100%;
  border-bottom: 1px solid #ececec;
}
.p-table-org tr:nth-child(odd) {
  background: #f0f0f0;
}
.p-table-org tr:last-child th,
.p-table-org tr:last-child td {
  padding-bottom: 30px;
}
.p-table-org th,
.p-table-org td {
  padding: 10px;
  text-align: left;
}
.p-table-org th {
  padding-left: 40px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .p-table-org tr {
    display: flex;
    flex-direction: column;
  }
  .p-table-org tr th {
    padding: 30px 0 10px 10px !important;
  }
  .p-table-org tr td {
    padding: 0 0 30px 10px;
  }
}
.p-table-org.--line tr:nth-child(odd) {
  background: transparent;
}
.p-table-org.--line tr {
  border-bottom: 1px solid #ccc;
}
.p-table-org.--line th {
  font-weight: bold;
}
.p-table-org.--line th,
.p-table-org.--line td {
  padding-top: 1em;
  padding-bottom: 1em;
}

/* ==============================================
top-recruit
============================================== */
/*
* .p-top-recruit

*/
/* .p-top-recruit
----------------------- */
.p-top-recruit {
  position: relative;
}
.p-top-recruit__video {
  height: 1000px;
  line-height: 0;
}
.p-top-recruit__video video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.p-top-recruit__contents {
  height: 100%;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  width: 100%;
}
.p-top-recruit .l-contents {
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
.p-top-recruit .l-contents__inner {
  height: 100%;
}
/* ==============================================
top
============================================== */
/*
* .p-top

*/
/* .p-top
----------------------- */
/* kv */
.kv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.kv .main-copy {
  color: #ffffff;
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
}

.kv .sub-copy {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

/* video */
.video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url(../img/kv-alternative.jpg) no-repeat center/cover;
}

.video::after {
  display: block;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #10394b;
  content: "";
}

.video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
}

.bignav {
  display: flex;
  flex-direction: column;
}
.bignav ul {
  display: flex;
}
.bignav ul:first-child li {
  width: 100%;
}
.bignav ul li {
  width: 50%;
  text-align: center;
}
.bignav ul li .target {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: #000000;
}
.bignav ul li .target:hover {
  overflow: hidden;
}
.bignav ul li .target:hover img {
  opacity: 0.6;
  transform: scale(1.05);
  transition: all 0.3s;
}
.bignav ul li .target:hover .c-heading-c__main:after {
  width: 110%;
  transition: all 0.3s;
}
.bignav ul li .target img {
  opacity: 0.85;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-blend-mode: darken;
  object-fit: cover;
}
.bignav ul li .target .c-heading-c {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .bignav ul {
    flex-direction: column;
  }
  .bignav ul li {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  /* kv */
  .kv {
    min-width: 960px;
  }
  .kv .main-copy {
    font-size: 60px;
  }
  .kv .sub-copy {
    font-size: 30px;
  }
  /* video */
  .video {
    min-width: 960px;
  }
}
.scrolllist img {
  width: auto;
  height: 260px;
}

/* ==============================================
about
============================================== */
/*
* .p-sitemap
*/
/* .p-sitemap
----------------------- */
.p-sitemap__inner {
  padding: 7.619047619% 0;
}
.p-sitemap__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.7619047619%;
}
.p-sitemap__logo {
  align-items: center;
  display: flex;
}
.p-sitemap__logo .logo-img:first-child {
  margin-right: 20px;
}
.p-sitemap__links .link-unit:not(:last-child) {
  margin-right: 8.5714285714%;
}
.p-sitemap__links .link-unit__term {
  margin-bottom: 0.5em;
}
.p-sitemap__links .link-unit__desc {
  display: flex;
}
.p-sitemap__links .link-unit__desc .list:not(:last-child) {
  margin-right: 2.3em;
}
.p-sitemap__links .link-unit__desc .item:not(:last-child) {
  margin-bottom: 0.6em;
}
.p-sitemap__links .link-unit--other {
  display: flex;
}
.p-sitemap__links .link-unit--other .c-link:not(:last-child) {
  margin-right: 100px;
}
.p-sitemap__row {
  display: flex;
}
.p-sitemap__row:not(:last-child) {
  margin-bottom: 4.7619047619%;
}
@media only screen and (max-width: 1180px) {
  .p-sitemap__links .link-unit__desc .list:not(:last-child) {
    margin-right: 1.8348623853vw;
  }
  .p-sitemap__links .link-unit--other .c-link:not(:last-child) {
    margin-right: 9.1743119266vw;
  }
  .p-sitemap__row--brk-between {
    justify-content: space-between;
  }
  .p-sitemap__row--brk-between .link-unit:not(:last-child) {
    margin-right: 1.8348623853vw;
  }
}
@media only screen and (max-width: 850px) {
  .p-sitemap .c-link-a {
    font-size: 1.3rem;
  }
  .p-sitemap .c-link-b {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-sitemap__inner {
    padding: 60px 0 30px;
  }
  .p-sitemap__header {
    margin-bottom: 35px;
  }
  .p-sitemap__logo {
    flex-direction: column;
    width: 164px;
  }
  .p-sitemap__logo .logo-img:first-child {
    margin: 0 0 10px;
  }
  .p-sitemap__links .link-unit {
    border-top: 1px solid #d3d3d3;
    padding: 1em 0 1.2em;
  }
  .p-sitemap__links .link-unit:not(:last-child) {
    margin-right: 0;
  }
  .p-sitemap__links .link-unit__term {
    margin-bottom: 0;
    position: relative;
  }
  .p-sitemap__links .link-unit__term .c-icon-plus {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-sitemap__links .link-unit__desc {
    flex-direction: column;
    margin-top: 0.8em;
  }
  .p-sitemap__links .link-unit__desc .list:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.8em;
  }
  .p-sitemap__links .link-unit__desc .item:not(:last-child) {
    margin-bottom: 0.8em;
  }
  .p-sitemap__links .link-unit--other .c-link:not(:last-child) {
    margin-right: 2.5em;
  }
  .p-sitemap__links .c-link-a {
    font-size: 1.6rem;
    padding-left: 0.2em;
  }
  .p-sitemap__links .c-link-b {
    font-size: 1.4rem;
    margin-left: 0.2em;
  }
  .p-sitemap__row {
    flex-direction: column;
  }
  .p-sitemap__row:not(:last-child) {
    margin-bottom: 0;
  }
}

/* Utility
------------------------------------------- */
/* ==============================================
align
============================================== */
.u-align .u-align__cnt {
  display: inline-block;
}
.u-align--center {
  text-align: center;
}
.u-align--left {
  text-align: left;
}
.u-align--right {
  text-align: right;
}

/* ==============================================
border
============================================== */
.u-border-t-none {
  border-top: none !important;
}
.u-border-b-none {
  border-bottom: none !important;
}
.u-border-l-none {
  border-left: none !important;
}
.u-border-r-none {
  border-right: none !important;
}

/* ==============================================
column
============================================== */
.u-column {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

/* ==============================================
display
============================================== */
.u-onlysp {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .u-onlypc {
    display: none !important;
  }
  .u-onlysp {
    display: inherit !important;
  }
}

.u-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

/* ==============================================
flex
============================================== */
/*
* .u-flex
* .u-flex-order
*/
/* .u-flex
----------------------- */
.u-flex {
  display: flex;
  align-items: flex-start;
  /* .u-flex(sp) */
}
.u-flex > * {
  flex: 0 1 auto;
}
.u-flex__img {
  flex: 0 0 auto;
}
.u-flex--center {
  justify-content: center !important;
}
.u-flex--between {
  justify-content: space-between;
}
.u-flex--around {
  justify-content: space-around;
}
.u-flex--stretch {
  align-items: stretch;
}
.u-flex--align-center {
  align-items: center !important;
}
.u-flex--wrap {
  flex-wrap: wrap;
}
.u-flex--column {
  flex-direction: column;
}
.u-flex--flxnon {
  flex: none;
}
.u-flex--gap30 {
  gap: 30px;
}
.u-flex--gap20 {
  gap: 20px;
}
.u-flex--gap7 {
  gap: 7px;
}
.u-flex--rowreverse {
  flex-direction: row-reverse !important;
}
.u-flex--rowstart {
  flex-direction: row !important;
}
.u-flex--col3 {
  justify-content: center;
}
.u-flex--col3 > * {
  width: 33.3333333333%;
}
@media only screen and (max-width: 767px) {
  .u-flex--spcol {
    flex-direction: column;
  }
  .u-flex--spblock {
    display: block;
  }
  .u-flex--rowreverse {
    flex-direction: column !important;
  }
  .u-flex--gap30 {
    gap: 1rem;
  }
  .u-flex--gap20 {
    gap: 1rem;
  }
  .u-flex--gap7 {
    gap: 1rem;
  }
}

/* .u-order
----------------------- */
.u-order0 {
  order: 0;
}

.u-order1 {
  order: 1;
}

.u-order2 {
  order: 2;
}

.u-order3 {
  order: 3;
}

.u-order4 {
  order: 4;
}

.u-order5 {
  order: 5;
}

.u-order6 {
  order: 6;
}

.u-order7 {
  order: 7;
}

.u-order8 {
  order: 8;
}

.u-order9 {
  order: 9;
}

.u-order10 {
  order: 10;
}

/* ==============================================
image
============================================== */
.ie img.u-object-fit {
  font-family: "object-fit: cover;";
}

.bdrround {
  overflow: hidden;
  border-radius: 8px;
}

/* ==============================================
line-height
============================================== */
.u-lh10 {
  line-height: 1;
}

.u-lh11 {
  line-height: 1.1;
}

.u-lh12 {
  line-height: 1.2;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh14 {
  line-height: 1.4;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh17 {
  line-height: 1.7;
}

.u-lh18 {
  line-height: 1.8;
}

.u-lh19 {
  line-height: 1.9;
}

.u-lh20 {
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .u-lh10-sp {
    line-height: 1;
  }
  .u-lh11-sp {
    line-height: 1.1;
  }
  .u-lh12-sp {
    line-height: 1.2;
  }
  .u-lh13-sp {
    line-height: 1.3;
  }
  .u-lh14-sp {
    line-height: 1.4;
  }
  .u-lh15-sp {
    line-height: 1.5;
  }
  .u-lh16-sp {
    line-height: 1.6;
  }
  .u-lh17-sp {
    line-height: 1.7;
  }
  .u-lh18-sp {
    line-height: 1.8;
  }
  .u-lh19-sp {
    line-height: 1.9;
  }
  .u-lh20-sp {
    line-height: 2;
  }
}
/* ==============================================
position
============================================== */
.u-relative {
  position: relative;
}

.u-absolute {
  position: absolute;
}

.u-fixed {
  position: fixed;
}

/* ==============================================
spacing
============================================== */
.u-mt0 {
  margin-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

.u-mt105 {
  margin-top: 105px !important;
}

.u-mr105 {
  margin-right: 105px !important;
}

.u-mb105 {
  margin-bottom: 105px !important;
}

.u-ml105 {
  margin-left: 105px !important;
}

.u-pt105 {
  padding-top: 105px !important;
}

.u-pr105 {
  padding-right: 105px !important;
}

.u-pb105 {
  padding-bottom: 105px !important;
}

.u-pl105 {
  padding-left: 105px !important;
}

.u-mt110 {
  margin-top: 110px !important;
}

.u-mr110 {
  margin-right: 110px !important;
}

.u-mb110 {
  margin-bottom: 110px !important;
}

.u-ml110 {
  margin-left: 110px !important;
}

.u-pt110 {
  padding-top: 110px !important;
}

.u-pr110 {
  padding-right: 110px !important;
}

.u-pb110 {
  padding-bottom: 110px !important;
}

.u-pl110 {
  padding-left: 110px !important;
}

.u-mt115 {
  margin-top: 115px !important;
}

.u-mr115 {
  margin-right: 115px !important;
}

.u-mb115 {
  margin-bottom: 115px !important;
}

.u-ml115 {
  margin-left: 115px !important;
}

.u-pt115 {
  padding-top: 115px !important;
}

.u-pr115 {
  padding-right: 115px !important;
}

.u-pb115 {
  padding-bottom: 115px !important;
}

.u-pl115 {
  padding-left: 115px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mr120 {
  margin-right: 120px !important;
}

.u-mb120 {
  margin-bottom: 120px !important;
}

.u-ml120 {
  margin-left: 120px !important;
}

.u-pt120 {
  padding-top: 120px !important;
}

.u-pr120 {
  padding-right: 120px !important;
}

.u-pb120 {
  padding-bottom: 120px !important;
}

.u-pl120 {
  padding-left: 120px !important;
}

.u-mt125 {
  margin-top: 125px !important;
}

.u-mr125 {
  margin-right: 125px !important;
}

.u-mb125 {
  margin-bottom: 125px !important;
}

.u-ml125 {
  margin-left: 125px !important;
}

.u-pt125 {
  padding-top: 125px !important;
}

.u-pr125 {
  padding-right: 125px !important;
}

.u-pb125 {
  padding-bottom: 125px !important;
}

.u-pl125 {
  padding-left: 125px !important;
}

.u-mt130 {
  margin-top: 130px !important;
}

.u-mr130 {
  margin-right: 130px !important;
}

.u-mb130 {
  margin-bottom: 130px !important;
}

.u-ml130 {
  margin-left: 130px !important;
}

.u-pt130 {
  padding-top: 130px !important;
}

.u-pr130 {
  padding-right: 130px !important;
}

.u-pb130 {
  padding-bottom: 130px !important;
}

.u-pl130 {
  padding-left: 130px !important;
}

.u-mt135 {
  margin-top: 135px !important;
}

.u-mr135 {
  margin-right: 135px !important;
}

.u-mb135 {
  margin-bottom: 135px !important;
}

.u-ml135 {
  margin-left: 135px !important;
}

.u-pt135 {
  padding-top: 135px !important;
}

.u-pr135 {
  padding-right: 135px !important;
}

.u-pb135 {
  padding-bottom: 135px !important;
}

.u-pl135 {
  padding-left: 135px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mr140 {
  margin-right: 140px !important;
}

.u-mb140 {
  margin-bottom: 140px !important;
}

.u-ml140 {
  margin-left: 140px !important;
}

.u-pt140 {
  padding-top: 140px !important;
}

.u-pr140 {
  padding-right: 140px !important;
}

.u-pb140 {
  padding-bottom: 140px !important;
}

.u-pl140 {
  padding-left: 140px !important;
}

.u-mt145 {
  margin-top: 145px !important;
}

.u-mr145 {
  margin-right: 145px !important;
}

.u-mb145 {
  margin-bottom: 145px !important;
}

.u-ml145 {
  margin-left: 145px !important;
}

.u-pt145 {
  padding-top: 145px !important;
}

.u-pr145 {
  padding-right: 145px !important;
}

.u-pb145 {
  padding-bottom: 145px !important;
}

.u-pl145 {
  padding-left: 145px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mr150 {
  margin-right: 150px !important;
}

.u-mb150 {
  margin-bottom: 150px !important;
}

.u-ml150 {
  margin-left: 150px !important;
}

.u-pt150 {
  padding-top: 150px !important;
}

.u-pr150 {
  padding-right: 150px !important;
}

.u-pb150 {
  padding-bottom: 150px !important;
}

.u-pl150 {
  padding-left: 150px !important;
}

.u-mt155 {
  margin-top: 155px !important;
}

.u-mr155 {
  margin-right: 155px !important;
}

.u-mb155 {
  margin-bottom: 155px !important;
}

.u-ml155 {
  margin-left: 155px !important;
}

.u-pt155 {
  padding-top: 155px !important;
}

.u-pr155 {
  padding-right: 155px !important;
}

.u-pb155 {
  padding-bottom: 155px !important;
}

.u-pl155 {
  padding-left: 155px !important;
}

.u-mt160 {
  margin-top: 160px !important;
}

.u-mr160 {
  margin-right: 160px !important;
}

.u-mb160 {
  margin-bottom: 160px !important;
}

.u-ml160 {
  margin-left: 160px !important;
}

.u-pt160 {
  padding-top: 160px !important;
}

.u-pr160 {
  padding-right: 160px !important;
}

.u-pb160 {
  padding-bottom: 160px !important;
}

.u-pl160 {
  padding-left: 160px !important;
}

.u-mt165 {
  margin-top: 165px !important;
}

.u-mr165 {
  margin-right: 165px !important;
}

.u-mb165 {
  margin-bottom: 165px !important;
}

.u-ml165 {
  margin-left: 165px !important;
}

.u-pt165 {
  padding-top: 165px !important;
}

.u-pr165 {
  padding-right: 165px !important;
}

.u-pb165 {
  padding-bottom: 165px !important;
}

.u-pl165 {
  padding-left: 165px !important;
}

.u-mt170 {
  margin-top: 170px !important;
}

.u-mr170 {
  margin-right: 170px !important;
}

.u-mb170 {
  margin-bottom: 170px !important;
}

.u-ml170 {
  margin-left: 170px !important;
}

.u-pt170 {
  padding-top: 170px !important;
}

.u-pr170 {
  padding-right: 170px !important;
}

.u-pb170 {
  padding-bottom: 170px !important;
}

.u-pl170 {
  padding-left: 170px !important;
}

.u-mt175 {
  margin-top: 175px !important;
}

.u-mr175 {
  margin-right: 175px !important;
}

.u-mb175 {
  margin-bottom: 175px !important;
}

.u-ml175 {
  margin-left: 175px !important;
}

.u-pt175 {
  padding-top: 175px !important;
}

.u-pr175 {
  padding-right: 175px !important;
}

.u-pb175 {
  padding-bottom: 175px !important;
}

.u-pl175 {
  padding-left: 175px !important;
}

.u-mt180 {
  margin-top: 180px !important;
}

.u-mr180 {
  margin-right: 180px !important;
}

.u-mb180 {
  margin-bottom: 180px !important;
}

.u-ml180 {
  margin-left: 180px !important;
}

.u-pt180 {
  padding-top: 180px !important;
}

.u-pr180 {
  padding-right: 180px !important;
}

.u-pb180 {
  padding-bottom: 180px !important;
}

.u-pl180 {
  padding-left: 180px !important;
}

.u-mt185 {
  margin-top: 185px !important;
}

.u-mr185 {
  margin-right: 185px !important;
}

.u-mb185 {
  margin-bottom: 185px !important;
}

.u-ml185 {
  margin-left: 185px !important;
}

.u-pt185 {
  padding-top: 185px !important;
}

.u-pr185 {
  padding-right: 185px !important;
}

.u-pb185 {
  padding-bottom: 185px !important;
}

.u-pl185 {
  padding-left: 185px !important;
}

.u-mt190 {
  margin-top: 190px !important;
}

.u-mr190 {
  margin-right: 190px !important;
}

.u-mb190 {
  margin-bottom: 190px !important;
}

.u-ml190 {
  margin-left: 190px !important;
}

.u-pt190 {
  padding-top: 190px !important;
}

.u-pr190 {
  padding-right: 190px !important;
}

.u-pb190 {
  padding-bottom: 190px !important;
}

.u-pl190 {
  padding-left: 190px !important;
}

.u-mt195 {
  margin-top: 195px !important;
}

.u-mr195 {
  margin-right: 195px !important;
}

.u-mb195 {
  margin-bottom: 195px !important;
}

.u-ml195 {
  margin-left: 195px !important;
}

.u-pt195 {
  padding-top: 195px !important;
}

.u-pr195 {
  padding-right: 195px !important;
}

.u-pb195 {
  padding-bottom: 195px !important;
}

.u-pl195 {
  padding-left: 195px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

.u-mr200 {
  margin-right: 200px !important;
}

.u-mb200 {
  margin-bottom: 200px !important;
}

.u-ml200 {
  margin-left: 200px !important;
}

.u-pt200 {
  padding-top: 200px !important;
}

.u-pr200 {
  padding-right: 200px !important;
}

.u-pb200 {
  padding-bottom: 200px !important;
}

.u-pl200 {
  padding-left: 200px !important;
}

@media only screen and (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0px !important;
  }
  .u-mr0-sp {
    margin-right: 0px !important;
  }
  .u-mb0-sp {
    margin-bottom: 0px !important;
  }
  .u-ml0-sp {
    margin-left: 0px !important;
  }
  .u-pt0-sp {
    padding-top: 0px !important;
  }
  .u-pr0-sp {
    padding-right: 0px !important;
  }
  .u-pb0-sp {
    padding-bottom: 0px !important;
  }
  .u-pl0-sp {
    padding-left: 0px !important;
  }
  .u-mt5-sp {
    margin-top: 5px !important;
  }
  .u-mr5-sp {
    margin-right: 5px !important;
  }
  .u-mb5-sp {
    margin-bottom: 5px !important;
  }
  .u-ml5-sp {
    margin-left: 5px !important;
  }
  .u-pt5-sp {
    padding-top: 5px !important;
  }
  .u-pr5-sp {
    padding-right: 5px !important;
  }
  .u-pb5-sp {
    padding-bottom: 5px !important;
  }
  .u-pl5-sp {
    padding-left: 5px !important;
  }
  .u-mt10-sp {
    margin-top: 10px !important;
  }
  .u-mr10-sp {
    margin-right: 10px !important;
  }
  .u-mb10-sp {
    margin-bottom: 10px !important;
  }
  .u-ml10-sp {
    margin-left: 10px !important;
  }
  .u-pt10-sp {
    padding-top: 10px !important;
  }
  .u-pr10-sp {
    padding-right: 10px !important;
  }
  .u-pb10-sp {
    padding-bottom: 10px !important;
  }
  .u-pl10-sp {
    padding-left: 10px !important;
  }
  .u-mt15-sp {
    margin-top: 15px !important;
  }
  .u-mr15-sp {
    margin-right: 15px !important;
  }
  .u-mb15-sp {
    margin-bottom: 15px !important;
  }
  .u-ml15-sp {
    margin-left: 15px !important;
  }
  .u-pt15-sp {
    padding-top: 15px !important;
  }
  .u-pr15-sp {
    padding-right: 15px !important;
  }
  .u-pb15-sp {
    padding-bottom: 15px !important;
  }
  .u-pl15-sp {
    padding-left: 15px !important;
  }
  .u-mt20-sp {
    margin-top: 20px !important;
  }
  .u-mr20-sp {
    margin-right: 20px !important;
  }
  .u-mb20-sp {
    margin-bottom: 20px !important;
  }
  .u-ml20-sp {
    margin-left: 20px !important;
  }
  .u-pt20-sp {
    padding-top: 20px !important;
  }
  .u-pr20-sp {
    padding-right: 20px !important;
  }
  .u-pb20-sp {
    padding-bottom: 20px !important;
  }
  .u-pl20-sp {
    padding-left: 20px !important;
  }
  .u-mt25-sp {
    margin-top: 25px !important;
  }
  .u-mr25-sp {
    margin-right: 25px !important;
  }
  .u-mb25-sp {
    margin-bottom: 25px !important;
  }
  .u-ml25-sp {
    margin-left: 25px !important;
  }
  .u-pt25-sp {
    padding-top: 25px !important;
  }
  .u-pr25-sp {
    padding-right: 25px !important;
  }
  .u-pb25-sp {
    padding-bottom: 25px !important;
  }
  .u-pl25-sp {
    padding-left: 25px !important;
  }
  .u-mt30-sp {
    margin-top: 30px !important;
  }
  .u-mr30-sp {
    margin-right: 30px !important;
  }
  .u-mb30-sp {
    margin-bottom: 30px !important;
  }
  .u-ml30-sp {
    margin-left: 30px !important;
  }
  .u-pt30-sp {
    padding-top: 30px !important;
  }
  .u-pr30-sp {
    padding-right: 30px !important;
  }
  .u-pb30-sp {
    padding-bottom: 30px !important;
  }
  .u-pl30-sp {
    padding-left: 30px !important;
  }
  .u-mt35-sp {
    margin-top: 35px !important;
  }
  .u-mr35-sp {
    margin-right: 35px !important;
  }
  .u-mb35-sp {
    margin-bottom: 35px !important;
  }
  .u-ml35-sp {
    margin-left: 35px !important;
  }
  .u-pt35-sp {
    padding-top: 35px !important;
  }
  .u-pr35-sp {
    padding-right: 35px !important;
  }
  .u-pb35-sp {
    padding-bottom: 35px !important;
  }
  .u-pl35-sp {
    padding-left: 35px !important;
  }
  .u-mt40-sp {
    margin-top: 40px !important;
  }
  .u-mr40-sp {
    margin-right: 40px !important;
  }
  .u-mb40-sp {
    margin-bottom: 40px !important;
  }
  .u-ml40-sp {
    margin-left: 40px !important;
  }
  .u-pt40-sp {
    padding-top: 40px !important;
  }
  .u-pr40-sp {
    padding-right: 40px !important;
  }
  .u-pb40-sp {
    padding-bottom: 40px !important;
  }
  .u-pl40-sp {
    padding-left: 40px !important;
  }
  .u-mt45-sp {
    margin-top: 45px !important;
  }
  .u-mr45-sp {
    margin-right: 45px !important;
  }
  .u-mb45-sp {
    margin-bottom: 45px !important;
  }
  .u-ml45-sp {
    margin-left: 45px !important;
  }
  .u-pt45-sp {
    padding-top: 45px !important;
  }
  .u-pr45-sp {
    padding-right: 45px !important;
  }
  .u-pb45-sp {
    padding-bottom: 45px !important;
  }
  .u-pl45-sp {
    padding-left: 45px !important;
  }
  .u-mt50-sp {
    margin-top: 50px !important;
  }
  .u-mr50-sp {
    margin-right: 50px !important;
  }
  .u-mb50-sp {
    margin-bottom: 50px !important;
  }
  .u-ml50-sp {
    margin-left: 50px !important;
  }
  .u-pt50-sp {
    padding-top: 50px !important;
  }
  .u-pr50-sp {
    padding-right: 50px !important;
  }
  .u-pb50-sp {
    padding-bottom: 50px !important;
  }
  .u-pl50-sp {
    padding-left: 50px !important;
  }
  .u-mt55-sp {
    margin-top: 55px !important;
  }
  .u-mr55-sp {
    margin-right: 55px !important;
  }
  .u-mb55-sp {
    margin-bottom: 55px !important;
  }
  .u-ml55-sp {
    margin-left: 55px !important;
  }
  .u-pt55-sp {
    padding-top: 55px !important;
  }
  .u-pr55-sp {
    padding-right: 55px !important;
  }
  .u-pb55-sp {
    padding-bottom: 55px !important;
  }
  .u-pl55-sp {
    padding-left: 55px !important;
  }
  .u-mt60-sp {
    margin-top: 60px !important;
  }
  .u-mr60-sp {
    margin-right: 60px !important;
  }
  .u-mb60-sp {
    margin-bottom: 60px !important;
  }
  .u-ml60-sp {
    margin-left: 60px !important;
  }
  .u-pt60-sp {
    padding-top: 60px !important;
  }
  .u-pr60-sp {
    padding-right: 60px !important;
  }
  .u-pb60-sp {
    padding-bottom: 60px !important;
  }
  .u-pl60-sp {
    padding-left: 60px !important;
  }
  .u-mt65-sp {
    margin-top: 65px !important;
  }
  .u-mr65-sp {
    margin-right: 65px !important;
  }
  .u-mb65-sp {
    margin-bottom: 65px !important;
  }
  .u-ml65-sp {
    margin-left: 65px !important;
  }
  .u-pt65-sp {
    padding-top: 65px !important;
  }
  .u-pr65-sp {
    padding-right: 65px !important;
  }
  .u-pb65-sp {
    padding-bottom: 65px !important;
  }
  .u-pl65-sp {
    padding-left: 65px !important;
  }
  .u-mt70-sp {
    margin-top: 70px !important;
  }
  .u-mr70-sp {
    margin-right: 70px !important;
  }
  .u-mb70-sp {
    margin-bottom: 70px !important;
  }
  .u-ml70-sp {
    margin-left: 70px !important;
  }
  .u-pt70-sp {
    padding-top: 70px !important;
  }
  .u-pr70-sp {
    padding-right: 70px !important;
  }
  .u-pb70-sp {
    padding-bottom: 70px !important;
  }
  .u-pl70-sp {
    padding-left: 70px !important;
  }
  .u-mt75-sp {
    margin-top: 75px !important;
  }
  .u-mr75-sp {
    margin-right: 75px !important;
  }
  .u-mb75-sp {
    margin-bottom: 75px !important;
  }
  .u-ml75-sp {
    margin-left: 75px !important;
  }
  .u-pt75-sp {
    padding-top: 75px !important;
  }
  .u-pr75-sp {
    padding-right: 75px !important;
  }
  .u-pb75-sp {
    padding-bottom: 75px !important;
  }
  .u-pl75-sp {
    padding-left: 75px !important;
  }
  .u-mt80-sp {
    margin-top: 80px !important;
  }
  .u-mr80-sp {
    margin-right: 80px !important;
  }
  .u-mb80-sp {
    margin-bottom: 80px !important;
  }
  .u-ml80-sp {
    margin-left: 80px !important;
  }
  .u-pt80-sp {
    padding-top: 80px !important;
  }
  .u-pr80-sp {
    padding-right: 80px !important;
  }
  .u-pb80-sp {
    padding-bottom: 80px !important;
  }
  .u-pl80-sp {
    padding-left: 80px !important;
  }
  .u-mt85-sp {
    margin-top: 85px !important;
  }
  .u-mr85-sp {
    margin-right: 85px !important;
  }
  .u-mb85-sp {
    margin-bottom: 85px !important;
  }
  .u-ml85-sp {
    margin-left: 85px !important;
  }
  .u-pt85-sp {
    padding-top: 85px !important;
  }
  .u-pr85-sp {
    padding-right: 85px !important;
  }
  .u-pb85-sp {
    padding-bottom: 85px !important;
  }
  .u-pl85-sp {
    padding-left: 85px !important;
  }
  .u-mt90-sp {
    margin-top: 90px !important;
  }
  .u-mr90-sp {
    margin-right: 90px !important;
  }
  .u-mb90-sp {
    margin-bottom: 90px !important;
  }
  .u-ml90-sp {
    margin-left: 90px !important;
  }
  .u-pt90-sp {
    padding-top: 90px !important;
  }
  .u-pr90-sp {
    padding-right: 90px !important;
  }
  .u-pb90-sp {
    padding-bottom: 90px !important;
  }
  .u-pl90-sp {
    padding-left: 90px !important;
  }
  .u-mt95-sp {
    margin-top: 95px !important;
  }
  .u-mr95-sp {
    margin-right: 95px !important;
  }
  .u-mb95-sp {
    margin-bottom: 95px !important;
  }
  .u-ml95-sp {
    margin-left: 95px !important;
  }
  .u-pt95-sp {
    padding-top: 95px !important;
  }
  .u-pr95-sp {
    padding-right: 95px !important;
  }
  .u-pb95-sp {
    padding-bottom: 95px !important;
  }
  .u-pl95-sp {
    padding-left: 95px !important;
  }
  .u-mt100-sp {
    margin-top: 100px !important;
  }
  .u-mr100-sp {
    margin-right: 100px !important;
  }
  .u-mb100-sp {
    margin-bottom: 100px !important;
  }
  .u-ml100-sp {
    margin-left: 100px !important;
  }
  .u-pt100-sp {
    padding-top: 100px !important;
  }
  .u-pr100-sp {
    padding-right: 100px !important;
  }
  .u-pb100-sp {
    padding-bottom: 100px !important;
  }
  .u-pl100-sp {
    padding-left: 100px !important;
  }
  .u-mt105-sp {
    margin-top: 105px !important;
  }
  .u-mr105-sp {
    margin-right: 105px !important;
  }
  .u-mb105-sp {
    margin-bottom: 105px !important;
  }
  .u-ml105-sp {
    margin-left: 105px !important;
  }
  .u-pt105-sp {
    padding-top: 105px !important;
  }
  .u-pr105-sp {
    padding-right: 105px !important;
  }
  .u-pb105-sp {
    padding-bottom: 105px !important;
  }
  .u-pl105-sp {
    padding-left: 105px !important;
  }
  .u-mt110-sp {
    margin-top: 110px !important;
  }
  .u-mr110-sp {
    margin-right: 110px !important;
  }
  .u-mb110-sp {
    margin-bottom: 110px !important;
  }
  .u-ml110-sp {
    margin-left: 110px !important;
  }
  .u-pt110-sp {
    padding-top: 110px !important;
  }
  .u-pr110-sp {
    padding-right: 110px !important;
  }
  .u-pb110-sp {
    padding-bottom: 110px !important;
  }
  .u-pl110-sp {
    padding-left: 110px !important;
  }
  .u-mt115-sp {
    margin-top: 115px !important;
  }
  .u-mr115-sp {
    margin-right: 115px !important;
  }
  .u-mb115-sp {
    margin-bottom: 115px !important;
  }
  .u-ml115-sp {
    margin-left: 115px !important;
  }
  .u-pt115-sp {
    padding-top: 115px !important;
  }
  .u-pr115-sp {
    padding-right: 115px !important;
  }
  .u-pb115-sp {
    padding-bottom: 115px !important;
  }
  .u-pl115-sp {
    padding-left: 115px !important;
  }
  .u-mt120-sp {
    margin-top: 120px !important;
  }
  .u-mr120-sp {
    margin-right: 120px !important;
  }
  .u-mb120-sp {
    margin-bottom: 120px !important;
  }
  .u-ml120-sp {
    margin-left: 120px !important;
  }
  .u-pt120-sp {
    padding-top: 120px !important;
  }
  .u-pr120-sp {
    padding-right: 120px !important;
  }
  .u-pb120-sp {
    padding-bottom: 120px !important;
  }
  .u-pl120-sp {
    padding-left: 120px !important;
  }
  .u-mt125-sp {
    margin-top: 125px !important;
  }
  .u-mr125-sp {
    margin-right: 125px !important;
  }
  .u-mb125-sp {
    margin-bottom: 125px !important;
  }
  .u-ml125-sp {
    margin-left: 125px !important;
  }
  .u-pt125-sp {
    padding-top: 125px !important;
  }
  .u-pr125-sp {
    padding-right: 125px !important;
  }
  .u-pb125-sp {
    padding-bottom: 125px !important;
  }
  .u-pl125-sp {
    padding-left: 125px !important;
  }
  .u-mt130-sp {
    margin-top: 130px !important;
  }
  .u-mr130-sp {
    margin-right: 130px !important;
  }
  .u-mb130-sp {
    margin-bottom: 130px !important;
  }
  .u-ml130-sp {
    margin-left: 130px !important;
  }
  .u-pt130-sp {
    padding-top: 130px !important;
  }
  .u-pr130-sp {
    padding-right: 130px !important;
  }
  .u-pb130-sp {
    padding-bottom: 130px !important;
  }
  .u-pl130-sp {
    padding-left: 130px !important;
  }
  .u-mt135-sp {
    margin-top: 135px !important;
  }
  .u-mr135-sp {
    margin-right: 135px !important;
  }
  .u-mb135-sp {
    margin-bottom: 135px !important;
  }
  .u-ml135-sp {
    margin-left: 135px !important;
  }
  .u-pt135-sp {
    padding-top: 135px !important;
  }
  .u-pr135-sp {
    padding-right: 135px !important;
  }
  .u-pb135-sp {
    padding-bottom: 135px !important;
  }
  .u-pl135-sp {
    padding-left: 135px !important;
  }
  .u-mt140-sp {
    margin-top: 140px !important;
  }
  .u-mr140-sp {
    margin-right: 140px !important;
  }
  .u-mb140-sp {
    margin-bottom: 140px !important;
  }
  .u-ml140-sp {
    margin-left: 140px !important;
  }
  .u-pt140-sp {
    padding-top: 140px !important;
  }
  .u-pr140-sp {
    padding-right: 140px !important;
  }
  .u-pb140-sp {
    padding-bottom: 140px !important;
  }
  .u-pl140-sp {
    padding-left: 140px !important;
  }
  .u-mt145-sp {
    margin-top: 145px !important;
  }
  .u-mr145-sp {
    margin-right: 145px !important;
  }
  .u-mb145-sp {
    margin-bottom: 145px !important;
  }
  .u-ml145-sp {
    margin-left: 145px !important;
  }
  .u-pt145-sp {
    padding-top: 145px !important;
  }
  .u-pr145-sp {
    padding-right: 145px !important;
  }
  .u-pb145-sp {
    padding-bottom: 145px !important;
  }
  .u-pl145-sp {
    padding-left: 145px !important;
  }
  .u-mt150-sp {
    margin-top: 150px !important;
  }
  .u-mr150-sp {
    margin-right: 150px !important;
  }
  .u-mb150-sp {
    margin-bottom: 150px !important;
  }
  .u-ml150-sp {
    margin-left: 150px !important;
  }
  .u-pt150-sp {
    padding-top: 150px !important;
  }
  .u-pr150-sp {
    padding-right: 150px !important;
  }
  .u-pb150-sp {
    padding-bottom: 150px !important;
  }
  .u-pl150-sp {
    padding-left: 150px !important;
  }
  .u-mt155-sp {
    margin-top: 155px !important;
  }
  .u-mr155-sp {
    margin-right: 155px !important;
  }
  .u-mb155-sp {
    margin-bottom: 155px !important;
  }
  .u-ml155-sp {
    margin-left: 155px !important;
  }
  .u-pt155-sp {
    padding-top: 155px !important;
  }
  .u-pr155-sp {
    padding-right: 155px !important;
  }
  .u-pb155-sp {
    padding-bottom: 155px !important;
  }
  .u-pl155-sp {
    padding-left: 155px !important;
  }
  .u-mt160-sp {
    margin-top: 160px !important;
  }
  .u-mr160-sp {
    margin-right: 160px !important;
  }
  .u-mb160-sp {
    margin-bottom: 160px !important;
  }
  .u-ml160-sp {
    margin-left: 160px !important;
  }
  .u-pt160-sp {
    padding-top: 160px !important;
  }
  .u-pr160-sp {
    padding-right: 160px !important;
  }
  .u-pb160-sp {
    padding-bottom: 160px !important;
  }
  .u-pl160-sp {
    padding-left: 160px !important;
  }
  .u-mt165-sp {
    margin-top: 165px !important;
  }
  .u-mr165-sp {
    margin-right: 165px !important;
  }
  .u-mb165-sp {
    margin-bottom: 165px !important;
  }
  .u-ml165-sp {
    margin-left: 165px !important;
  }
  .u-pt165-sp {
    padding-top: 165px !important;
  }
  .u-pr165-sp {
    padding-right: 165px !important;
  }
  .u-pb165-sp {
    padding-bottom: 165px !important;
  }
  .u-pl165-sp {
    padding-left: 165px !important;
  }
  .u-mt170-sp {
    margin-top: 170px !important;
  }
  .u-mr170-sp {
    margin-right: 170px !important;
  }
  .u-mb170-sp {
    margin-bottom: 170px !important;
  }
  .u-ml170-sp {
    margin-left: 170px !important;
  }
  .u-pt170-sp {
    padding-top: 170px !important;
  }
  .u-pr170-sp {
    padding-right: 170px !important;
  }
  .u-pb170-sp {
    padding-bottom: 170px !important;
  }
  .u-pl170-sp {
    padding-left: 170px !important;
  }
  .u-mt175-sp {
    margin-top: 175px !important;
  }
  .u-mr175-sp {
    margin-right: 175px !important;
  }
  .u-mb175-sp {
    margin-bottom: 175px !important;
  }
  .u-ml175-sp {
    margin-left: 175px !important;
  }
  .u-pt175-sp {
    padding-top: 175px !important;
  }
  .u-pr175-sp {
    padding-right: 175px !important;
  }
  .u-pb175-sp {
    padding-bottom: 175px !important;
  }
  .u-pl175-sp {
    padding-left: 175px !important;
  }
  .u-mt180-sp {
    margin-top: 180px !important;
  }
  .u-mr180-sp {
    margin-right: 180px !important;
  }
  .u-mb180-sp {
    margin-bottom: 180px !important;
  }
  .u-ml180-sp {
    margin-left: 180px !important;
  }
  .u-pt180-sp {
    padding-top: 180px !important;
  }
  .u-pr180-sp {
    padding-right: 180px !important;
  }
  .u-pb180-sp {
    padding-bottom: 180px !important;
  }
  .u-pl180-sp {
    padding-left: 180px !important;
  }
  .u-mt185-sp {
    margin-top: 185px !important;
  }
  .u-mr185-sp {
    margin-right: 185px !important;
  }
  .u-mb185-sp {
    margin-bottom: 185px !important;
  }
  .u-ml185-sp {
    margin-left: 185px !important;
  }
  .u-pt185-sp {
    padding-top: 185px !important;
  }
  .u-pr185-sp {
    padding-right: 185px !important;
  }
  .u-pb185-sp {
    padding-bottom: 185px !important;
  }
  .u-pl185-sp {
    padding-left: 185px !important;
  }
  .u-mt190-sp {
    margin-top: 190px !important;
  }
  .u-mr190-sp {
    margin-right: 190px !important;
  }
  .u-mb190-sp {
    margin-bottom: 190px !important;
  }
  .u-ml190-sp {
    margin-left: 190px !important;
  }
  .u-pt190-sp {
    padding-top: 190px !important;
  }
  .u-pr190-sp {
    padding-right: 190px !important;
  }
  .u-pb190-sp {
    padding-bottom: 190px !important;
  }
  .u-pl190-sp {
    padding-left: 190px !important;
  }
  .u-mt195-sp {
    margin-top: 195px !important;
  }
  .u-mr195-sp {
    margin-right: 195px !important;
  }
  .u-mb195-sp {
    margin-bottom: 195px !important;
  }
  .u-ml195-sp {
    margin-left: 195px !important;
  }
  .u-pt195-sp {
    padding-top: 195px !important;
  }
  .u-pr195-sp {
    padding-right: 195px !important;
  }
  .u-pb195-sp {
    padding-bottom: 195px !important;
  }
  .u-pl195-sp {
    padding-left: 195px !important;
  }
  .u-mt200-sp {
    margin-top: 200px !important;
  }
  .u-mr200-sp {
    margin-right: 200px !important;
  }
  .u-mb200-sp {
    margin-bottom: 200px !important;
  }
  .u-ml200-sp {
    margin-left: 200px !important;
  }
  .u-pt200-sp {
    padding-top: 200px !important;
  }
  .u-pr200-sp {
    padding-right: 200px !important;
  }
  .u-pb200-sp {
    padding-bottom: 200px !important;
  }
  .u-pl200-sp {
    padding-left: 200px !important;
  }
  .u-mlr-a {
    margin: auto;
  }
}
.u-anchor {
  display: block;
  margin-top: -100px;
  padding-top: 100px;
}

@media only screen and (max-width: 767px) {
  .u-sp-fit {
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
  }
}

/* ==============================================
text
============================================== */
.u-fz10 {
  font-size: 10% !important;
}

.u-fz20 {
  font-size: 20% !important;
}

.u-fz30 {
  font-size: 30% !important;
}

.u-fz40 {
  font-size: 40% !important;
}

.u-fz50 {
  font-size: 50% !important;
}

.u-fz60 {
  font-size: 60% !important;
}

.u-fz70 {
  font-size: 70% !important;
}

.u-fz80 {
  font-size: 80% !important;
}

.u-fz90 {
  font-size: 90% !important;
}

.u-fz100 {
  font-size: 100% !important;
}

.u-fz110 {
  font-size: 110% !important;
}

.u-fz120 {
  font-size: 120% !important;
}

.u-fz130 {
  font-size: 130% !important;
}

.u-fz140 {
  font-size: 140% !important;
}

.u-fz150 {
  font-size: 150% !important;
}

.u-fz160 {
  font-size: 160% !important;
}

.u-fz170 {
  font-size: 170% !important;
}

.u-fz180 {
  font-size: 180% !important;
}

.u-fz190 {
  font-size: 190% !important;
}

.u-fz200 {
  font-size: 200% !important;
}

.u-fz210 {
  font-size: 210% !important;
}

.u-fz220 {
  font-size: 220% !important;
}

.u-fz230 {
  font-size: 230% !important;
}

.u-fz240 {
  font-size: 240% !important;
}

.u-fz250 {
  font-size: 250% !important;
}

.u-fz260 {
  font-size: 260% !important;
}

.u-fz270 {
  font-size: 270% !important;
}

.u-fz280 {
  font-size: 280% !important;
}

.u-fz290 {
  font-size: 290% !important;
}

.u-fz300 {
  font-size: 300% !important;
}

.u-fz310 {
  font-size: 310% !important;
}

.u-fz320 {
  font-size: 320% !important;
}

.u-fz330 {
  font-size: 330% !important;
}

.u-fz340 {
  font-size: 340% !important;
}

.u-fz350 {
  font-size: 350% !important;
}

.u-fz360 {
  font-size: 360% !important;
}

.u-fz370 {
  font-size: 370% !important;
}

.u-fz380 {
  font-size: 380% !important;
}

.u-fz390 {
  font-size: 390% !important;
}

.u-fz400 {
  font-size: 400% !important;
}

.u-text-align-l {
  text-align: left !important;
}
.u-text-align-r {
  text-align: right;
}
.u-text-align-c {
  text-align: center;
}
.u-text-bold {
  font-weight: 700;
}
.u-text-normal {
  font-weight: 400;
}
.u-text-color-text {
  color: #333333;
}
.u-text-color-white {
  color: #fff;
}
.u-text-loose {
  letter-spacing: 0.05em;
}
.u-text-small {
  font-size: 80% !important;
}
.u-text-serif {
  font-family: YuMincho, "Yu Mincho", NotoSerifJP, serif;
}
.u-text-sub {
  font-size: 0.5em;
  margin: 0 0.1em;
}
.u-text-sub--entity {
  font-size: 1.2rem;
}
.u-text-sup {
  font-size: 0.7em;
  margin: 0 0.2em 0 0;
  vertical-align: super;
}
.u-text-tight {
  letter-spacing: -0.01em;
}
.u-text-underline {
  text-decoration: underline;
}
.u-text-vertical {
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 767px) {
  .u-text-align-sp-l {
    text-align: left;
  }
  .u-text-align-sp-r {
    text-align: right;
  }
  .u-text-align-sp-c {
    text-align: center;
  }
}

/* ==============================================
width
============================================== */
.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}

@media only screen and (max-width: 767px) {
  .u-w5-sp {
    width: 5% !important;
  }
  .u-w10-sp {
    width: 10% !important;
  }
  .u-w15-sp {
    width: 15% !important;
  }
  .u-w20-sp {
    width: 20% !important;
  }
  .u-w25-sp {
    width: 25% !important;
  }
  .u-w30-sp {
    width: 30% !important;
  }
  .u-w35-sp {
    width: 35% !important;
  }
  .u-w40-sp {
    width: 40% !important;
  }
  .u-w45-sp {
    width: 45% !important;
  }
  .u-w50-sp {
    width: 50% !important;
  }
  .u-w55-sp {
    width: 55% !important;
  }
  .u-w60-sp {
    width: 60% !important;
  }
  .u-w65-sp {
    width: 65% !important;
  }
  .u-w70-sp {
    width: 70% !important;
  }
  .u-w75-sp {
    width: 75% !important;
  }
  .u-w80-sp {
    width: 80% !important;
  }
  .u-w85-sp {
    width: 85% !important;
  }
  .u-w90-sp {
    width: 90% !important;
  }
  .u-w95-sp {
    width: 95% !important;
  }
  .u-w100-sp {
    width: 100% !important;
  }
}
/* ==============================================
zindex
============================================== */
/*
* .u-zindex
*/
/* .u-zindex
----------------------- */
.u-zindex0 {
  z-index: 0;
}

.u-zindex1 {
  z-index: 1;
}

.u-zindex2 {
  z-index: 2;
}

.u-zindex3 {
  z-index: 3;
}

.u-zindex4 {
  z-index: 4;
}

.u-zindex5 {
  z-index: 5;
}

.u-zindex6 {
  z-index: 6;
}

.u-zindex7 {
  z-index: 7;
}

.u-zindex8 {
  z-index: 8;
}

.u-zindex9 {
  z-index: 9;
}

.u-zindex10 {
  z-index: 10;
}

/* ==========================================================================
Modules
========================================================================== */
/*///////////////////////////////////////*/
._sys_msg {
  background-color: rgba(255, 216, 234, 0.7);
  padding: 20px;
  font-family: sans-serif;
  font-size: 2em;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  position: fixed;
  bottom: 0;
}

._sys_nav {
  background-color: rgba(255, 216, 234, 0.7);
  padding: 20px;
  font-family: sans-serif;
  font-size: 1em;
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: none;
}

.vishidden {
  visibility: hidden !important;
}

/*///////////////////////////////////////*/
.bgcn {
  background-color: transparent !important;
}

.bgckey {
  background-color: #e9f6ff !important;
}

.imghv img {
  transition: opacity 0.3s;
}
.imghv:hover img {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.bdrrd {
  border-radius: 8px;
  overflow: hidden;
}
.bdrrd--full {
  border-radius: 500px;
}
.bdrrd--bdc1 {
  border: 1px solid #ccc;
}

.sep_bdr {
  border-top: 1px solid #e7e7e7;
  margin-top: 30px;
  padding-top: 35px;
}

/*///////////////////////////////////////*/
#wrapper {
  display: flex;
  flex-direction: column;
  height: 100svh;
}

.pickup {
  margin-top: 80px;
}
.pickup.--beige {
  background: #a9916d;
  padding: 80px 0;
}
.pickup.--beige .c-heading-a__main {
  color: #fff;
  border-color: #fff;
}
.pickup.--beige .c-heading-a__sub {
  color: #fff;
}

.aboutus.--lightblue {
  background-color: #e6eff8;
}

.splide {
  padding: 0 40px;
  max-width: 1440px;
  margin: auto;
}

.splide__list {
  gap: 10px;
}

.splide__track {
  margin-right: 0px;
  margin-left: 0px;
  min-height: 100px;
}

.splide__slide {
  aspect-ratio: 270/160;
  overflow: hidden;
  background-color: #aeaeae;
}
.splide__slide span {
  position: absolute;
  font-family: serif;
  margin: auto;
  color: #fff;
  z-index: 99;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  letter-spacing: 0.3em;
}
@media only screen and (max-width: 767px) {
  .splide__slide span {
    font-size: 5.3333333333vw;
  }
}
.splide__slide img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: transform 400ms;
  transform-origin: center center;
  mix-blend-mode: multiply;
}
.splide__slide:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  transition: all 0.3s;
}

.splide .splide__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  border-radius: unset;
  width: 40px;
  z-index: 9;
}
.splide .splide__arrow svg {
  filter: invert(1);
  width: 13px;
  height: 13px;
}

.splide__arrow.splide__arrow--prev {
  left: 0;
  transform: rotate(180deg);
  background: #000;
}

.splide__arrow.splide__arrow--next {
  right: 0;
  background: #000;
}

.pageheader {
  flex: none;
  height: 240px;
  position: relative;
  display: flex;
  background-color: #efefef;
}
.pageheader__meta {
  position: relative;
  z-index: 99;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.pageheader__main {
  font-size: clamp(2.4rem, 0.25vw + 4rem, 5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.15em;
}
.pageheader__sub {
  font-size: clamp(1.4rem, 0.25vw + 1.5rem, 3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.pageheader__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.pageheader__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1235px) {
  .pageheader {
    height: 100px;
    transition: height 0.3s;
  }
  .pageheader__main:after {
    margin: 5px auto;
  }
}
@media only screen and (max-width: 767px) {
  .pageheader__main {
    font-size: 5.3333333333vw;
    text-align: center;
  }
}

.postbody {
  margin-top: 130px;
  margin-bottom: 160px;
}
.postbody h1 {
  margin: 0 0 1em;
  text-align: center;
  color: #3563b0;
  font-weight: bold;
  line-height: 1.6;
  font-size: clamp(1.4rem, 0.25vw + 2rem, 3rem);
}
.postbody figure {
  text-align: center;
  margin-bottom: 50px;
}
.postbody p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1em;
}
.postbody__ttl2 {
  margin: 1em 0;
  text-align: center;
  color: #3563b0;
  font-weight: bold;
  font-size: clamp(1.4rem, 0.25vw + 2rem, 3rem);
}
.postbody__ttl3 {
  margin: 1em 0;
  text-align: center;
  color: #000;
  font-weight: bold;
  font-size: clamp(1.4rem, 0.25vw + 1.6rem, 2.8rem);
}
.postbody__section {
  margin-bottom: 50px;
}
.postbody .wp-block-media-text {
  gap: 3%;
}
.postbody .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .postbody p {
    font-size: 13px;
  }
}

.left {
  text-align: left;
}

.txt {
  font-size: 1.6rem;
}
.txt p {
  margin-bottom: 1em;
  line-height: 2.2;
}
.txt p.sign {
  text-align: right;
  margin: 20px 0 40px;
}

.fullimage img {
  width: 100%;
  height: auto;
}

.we7list li {
  display: flex;
}
.we7list li dl {
  padding-right: 0;
}
.we7list li dl dt img {
  height: 25px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .we7list li dl dt img {
    height: 20px;
  }
}
.we7list li dl dd {
  font-size: 1.5rem;
  line-height: 1.6;
}

/* action */
.action__first {
  display: flex;
  border: 1px solid #d4d4d4;
  border-width: 1px 0;
  padding: 30px 0;
  margin: 50px 0 40px;
  width: 100%;
  justify-content: space-between;
}
.action__first p {
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
  margin: 0;
}
.action__first .img img {
  height: 120px;
  width: auto;
}

.staff-challenge {
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}
.staff-challenge__title {
  font-size: 24px;
  font-weight: bold;
  background-color: #9cc126;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}
.staff-challenge__subtitle {
  color: #9cc126;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}
.staff-challenge__description {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
  padding: 20px 20px;
}
.staff-challenge__img {
  padding: 0 20px 30px;
}
.staff-challenge__img .img {
  display: flex;
  gap: 20px;
}

/*========================
12の約束
========================*/
.promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(25rem, 1fr));
  gap: 3.5rem;
  align-items: stretch;
  justify-content: space-around;
  margin-top: 2rem;
}
.promises__item {
  border-radius: 14px;
  overflow: hidden;
}
.promises__inner {
  padding: 0;
  background-color: #f0f0f0;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  cursor: pointer;
}
.promises__inner:hover img {
  transform: scale(1.1);
}
.promises__inner:hover .promises__button {
  opacity: 0.7;
  transition: opacity 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.promises__photo {
  z-index: 1;
  position: relative;
  aspect-ratio: 323/194;
  overflow: hidden;
}
.promises__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.promises__golf {
  position: relative;
  font-weight: bold;
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
  padding: 0.05em 1em;
  text-align: center;
  color: #3e3e3e;
  margin: 0 auto 0.5rem;
  width: fit-content;
  background-color: #fff;
  margin-top: -1em;
  z-index: 9;
}
.promises__date {
  font-size: 12px;
  text-align: left;
  padding: 0 2rem 0.5rem;
}
.promises__ttl {
  text-align: left;
  padding: 0 2rem 2rem;
  font-weight: bold;
  font-size: clamp(1.4rem, 0.25vw + 2rem, 3rem);
  line-height: 1.5;
  min-height: 131px;
}
.promises__button {
  font-size: 16px;
  background-color: #3563b0;
  color: #fff;
  padding: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  transition: padding 600ms cubic-bezier(0.19, 1, 0.22, 1);
}
.promises__more {
  overflow: hidden;
  height: 0;
  transition: height 0.2s;
}
.promises__more.--active {
  transition: height 0.2s;
}
.promises__more__inner {
  padding: 1rem 2rem;
  font-size: 16px;
}
.promises__intro__img {
  padding-top: 60px;
  padding-bottom: 40px;
  text-align: center;
}
.promises__intro__txt {
  padding: 0 0 40px 0;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .promises {
    grid-template-columns: repeat(1, 1fr);
  }
}

ul.page-numbers {
  border: 1px solid #8a8a8a;
  border-width: 1px 0;
  padding: 0.125em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  font-size: clamp(1.4rem, 0.25vw + 1.5rem, 1.6rem);
  margin-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  ul.page-numbers {
    gap: 1em;
  }
}

.pagenation__buttons {
  border-width: 1px 0;
  padding: 2em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  font-size: clamp(1.4rem, 0.25vw + 1.5rem, 1.6rem);
}
.pagenation__buttons a {
  padding: 0.25em;
  text-align: center;
  background: #e1e1e1;
  font-weight: bold;
  display: inline-block;
  width: min(400px, 80%);
}
.pagenation__buttons a:hover {
  opacity: 0.5;
}

/* ======================================
recruit
 ======================================== */
.recruit {
  font-size: 13px;
}
.recruit table {
  width: 100%;
}
.recruit a {
  text-decoration: underline;
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
}
.recruit .imgshadow {
  position: relative;
  flex: none;
  margin-left: 20px;
}
.recruit .imgshadow img {
  margin-bottom: 0;
  width: 480px;
}
.recruit .imgshadow:after {
  content: "";
  width: 480px;
  height: 480px;
  position: absolute;
  display: block;
  background: rgba(210, 242, 255, 0.45);
  top: 20px;
  left: -20px;
  z-index: -1;
}
.recruit .Box03 .box,
.recruit .Box07 .box {
  width: auto;
  border: none;
  padding: 30px 0;
}
.recruit .Box03 .box .left,
.recruit .Box07 .box .left {
  display: flex;
  gap: 20px;
  width: 100%;
  float: none;
  align-items: center;
}
.recruit .Box03 .box .left > dd,
.recruit .Box07 .box .left > dd {
  background: rgba(210, 242, 255, 0.45);
  padding: 20px;
  transform: translate3d(40px, 40px, 0);
}
.recruit .Box03 .box .left li,
.recruit .Box07 .box .left li {
  margin-bottom: 0 !important;
}
.recruit .Box03 .box .left li:first-child,
.recruit .Box07 .box .left li:first-child {
  font-size: 20px !important;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  margin-bottom: 20px !important;
}
.recruit .Box03 .box .left li:first-child span,
.recruit .Box07 .box .left li:first-child span {
  font-size: 20px !important;
}
.recruit .Box03 .box .left li dl,
.recruit .Box07 .box .left li dl {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}
.recruit .Box03 .box .left li dl dd,
.recruit .Box07 .box .left li dl dd {
  padding: 0;
}
.recruit .Box03 .box .right,
.recruit .Box07 .box .right {
  float: none;
  width: 100%;
}
.recruit .Box03 .box .right.msg,
.recruit .Box07 .box .right.msg {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 20px;
}
.recruit .Box03 .box .right dt,
.recruit .Box07 .box .right dt {
  font-size: 18px;
}
.recruit .Box03 .box .right dd,
.recruit .Box07 .box .right dd {
  font-size: 16px;
}
.recruit .Box03 .box .left ul li dl dt,
.recruit .Box07 .box .left ul li dl dt {
  width: auto;
}
.recruit .pageNav {
  width: auto;
  margin: 40px auto 20px;
}
.recruit .pageNav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 20px;
  margin: 0;
  width: auto;
}
.recruit .pageNav ul li {
  float: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  margin: 0;
}
.recruit .pageNav ul li a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  width: 100%;
  font-weight: normal;
  padding: 40px 0;
  font-weight: bold;
}
@media only screen and (max-width: 1048px) {
  .recruit {
    font-size: clamp(1rem, 0.25vw + 1rem, 1.2rem);
  }
  .recruit .postbody__section {
    margin-bottom: 0;
  }
  .recruit .pageNav {
    margin-top: 20px;
  }
  .recruit .pageNav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .recruit .pageNav ul li a {
    font-size: 2.6666666667vw;
  }
  .recruit .Bnr,
  .recruit iframe,
  .recruit .Box02,
  .recruit .Box05 table,
  .recruit .Box03,
  .recruit .Box04,
  .recruit .Box05 {
    width: 100%;
  }
  .recruit iframe {
    aspect-ratio: 980/551;
    height: auto;
  }
  .recruit .imgshadow {
    width: 100%;
    margin-left: 0;
  }
  .recruit .imgshadow img {
    width: 100%;
    margin-left: 0px;
  }
  .recruit .imgshadow:after {
    content: "";
    width: 312px;
    height: 312px;
    position: absolute;
    display: block;
    background: rgba(210, 242, 255, 0.45);
    top: 20px;
    left: -20px;
    z-index: -1;
    display: none;
  }
  .recruit .Box03 .box,
  .recruit .Box07 .box {
    padding: 0px;
  }
  .recruit .Box03 .box .left,
  .recruit .Box07 .box .left {
    display: flex;
    width: 100%;
    float: none;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .recruit .Box03 .box .left > dd,
  .recruit .Box07 .box .left > dd {
    background: rgba(210, 242, 255, 0.45);
    padding: 20px;
    transform: translate3d(0px, 0px, 0);
    width: 100%;
  }
  .recruit .Box03 .box .left li,
  .recruit .Box07 .box .left li {
    margin-bottom: 0 !important;
  }
  .recruit .Box03 .box .left li:first-child,
  .recruit .Box07 .box .left li:first-child {
    font-size: 20px !important;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px !important;
  }
  .recruit .Box03 .box .left li:first-child span,
  .recruit .Box07 .box .left li:first-child span {
    font-size: 20px !important;
  }
  .recruit .Box03 .box .left li dl,
  .recruit .Box07 .box .left li dl {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }
  .recruit .Box03 .box .left li dl dd,
  .recruit .Box07 .box .left li dl dd {
    padding: 0;
  }
  .recruit .Box03 .box .right,
  .recruit .Box07 .box .right {
    float: none;
    width: 100%;
  }
  .recruit .Box03 .box .right.msg,
  .recruit .Box07 .box .right.msg {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .recruit .Box03 .box .left ul li dl dt,
  .recruit .Box07 .box .left ul li dl dt {
    float: none;
    font-size: 16px;
  }
  .recruit .Box03 .box .left ul li dl dd,
  .recruit .Box07 .box .left ul li dl dd {
    float: none;
    font-size: 16px;
  }
  .recruit .Box03 .box .right,
  .recruit .Box07 .box .right {
    width: 100%;
    float: none;
  }
  .recruit .Box03 {
    margin-top: 30px;
  }
  .recruit .RcrtPageTop {
    padding: 40px 0 15px 0;
  }
  .recruit .aprhTbl1 tr,
  .recruit .aprhTbl2 tr {
    display: flex;
    flex-direction: column;
  }
  .recruit .aprhTbl2 tr td:nth-child(2n-1) {
    padding: 0 0 0 0;
  }
  .recruit .aprh_stxt {
    padding: 20px 0 0 0;
  }
  .recruit .overwrap {
    width: 100%;
  }
  .recruit .overwrap table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.recruit .aprh_ctgry {
  position: relative;
  display: inline-block;
}
.recruit .Box06 .boxOut {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 0;
}

.eventList {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .eventList li {
    flex-wrap: wrap;
    gap: 0 1em;
  }
  .eventList .ttl {
    width: 100%;
  }
}

.single .topicslist {
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
  gap: 0em 1em;
  flex-wrap: wrap;
}

.topicslist {
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
  padding: 20px 10px;
  display: flex;
  gap: 1em;
}
.topicslist:nth-child(even) {
  background: #f0f0f0;
}
.topicslist .date {
  font-weight: 300;
}
.topicslist .cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9em;
  color: #fff;
  padding: 0 0.5em;
  white-space: nowrap;
  border-radius: 4px;
  flex: none;
  font-size: clamp(1rem, 0.25vw + 1rem, 1.2rem);
  height: fit-content;
}
.topicslist .cat.--media {
  background-color: #a9916b;
}
.topicslist .cat.--news {
  background-color: #3563b0;
}
.topicslist .cat.--newsrelease {
  background-color: #f49953;
}
.topicslist .cat.--recruit {
  background-color: #5480a2;
}

.topics .thumb {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .topics.single .topicslist {
    flex-wrap: wrap;
    gap: 0 1em;
  }
}
.topics.single .ttl {
  width: 100%;
  font-weight: bold;
  font-size: 21px;
}
.topics.single .box {
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
  margin-bottom: 100px;
  font-size: 16px;
}
.topics.single .box a {
  color: #3563b0;
  text-decoration: underline;
}
.topics.single .box p {
  margin-bottom: 1em;
}
.topics.single .link {
  text-align: right;
  display: block;
  margin-top: 40px;
}
.topics.single .link a {
  color: #3563b0;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .topics .thumb {
    text-align: center;
  }
  .topics.single .ttl {
    font-size: max(4.2666666667vw, 20px);
    line-height: 1.4;
  }
  .topics.single .box {
    font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
    margin-bottom: 100px;
    font-size: 16px;
  }
  .topics.single .box a {
    color: #3563b0;
    text-decoration: underline;
    word-break: break-all;
  }
  .topics.single .box p {
    margin-bottom: 1em;
  }
  .topics.single .link {
    text-align: right;
    display: block;
    margin-top: 40px;
  }
  .topics.single .link a {
    color: #3563b0;
    text-decoration: none;
  }
}

.contact {
  margin-top: 60px;
}
.contact p {
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.8rem);
  line-height: 2;
}
.contact__header {
  border-top: 1px solid #f0f0f0;
  padding-top: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.contact .req {
  color: #fff;
  background-color: #c8272b;
  padding: 0.1em 0.5em;
}
.contact .req p {
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 12px;
  font-weight: normal;
}
.contact table {
  width: 100%;
}
.contact tr {
  display: flex;
  align-items: center;
}
.contact th {
  flex: none;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  min-width: 15em;
  padding-top: 0.7em;
  color: #000;
}
.contact td {
  width: 100%;
  padding-top: 0.7em;
}
.contact th,
.contact td {
  padding-bottom: 20px;
  vertical-align: top;
  font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
}
.contact th p,
.contact td p {
  margin-bottom: 0;
}
.contact td input,
.contact td textarea {
  border: none;
  font-weight: 400;
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
  font-family: "Lato", "Helvetica Neue", Helvetica, Meiryo, Arial, sans-serif;
  padding: 22px 24px;
  background-color: #f5f5f5;
  width: 100%;
  line-height: 1.6;
}
.contact input[type=submit] {
  height: 80px;
  background-color: #333;
}
.contact #submitBtn input {
  background-color: #ceac42;
  border-color: #c4a133;
}
@media only screen and (max-width: 767px) {
  .contact p {
    font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
  }
  .contact .req {
    color: #fff;
    background-color: #c8272b;
    padding: 0.1em 0.5em;
    font-size: clamp(1rem, 0.25vw + 1rem, 1.2rem);
  }
  .contact table {
    width: 100%;
  }
  .contact th,
  .contact td {
    padding-bottom: 20px;
    vertical-align: top;
    font-size: clamp(1.2rem, 0.25vw + 1.2rem, 1.4rem);
  }
  .contact tr {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .contact th {
    flex: none;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    min-width: auto;
    padding-top: 3px;
    padding-bottom: 0;
  }
  .contact td {
    width: 100%;
  }
  .contact td input,
  .contact td textarea {
    border: none;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #fafafa;
    padding: 1em 1em 0.25em;
    font-weight: 400;
    font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
    font-family: "Lato", "Helvetica Neue", Helvetica, Meiryo, Arial, sans-serif;
  }
  .contact #submitBtn input {
    background-color: #ceac42;
    border-color: #c4a133;
  }
}
.contact.confirm tr {
  align-items: flex-start;
  flex-direction: column;
}
.contact.confirm th {
  font-weight: bold;
  padding-bottom: 0;
}
.contact.confirm td {
  border-bottom: 1px solid #f0f0f0;
}
.contact.confirm td div {
  font-weight: 400;
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
  font-family: "Lato", "Helvetica Neue", Helvetica, Meiryo, Arial, sans-serif;
}
.contact.confirm .p-buttons-d {
  flex-direction: column-reverse;
}
.contact.confirm .p-buttons-d .c-button-d:first-child:hover p:before {
  transform: translateX(-0.5em) rotate(-180deg);
  transition: all 0.3s;
}
.contact.confirm .p-buttons-d .c-button-d:first-child p {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.contact.confirm .p-buttons-d .c-button-d:first-child p:before {
  display: inline-block;
  transform: translateY(0) rotate(-180deg);
  width: 0;
  height: 0;
  margin-left: auto;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid black;
  content: "";
  transition: all 0.3s;
}
.contact.confirm .p-buttons-d .c-button-d:first-child input {
  background-color: transparent;
  color: #000;
  padding-left: 0.5em;
  display: inline-block;
  width: fit-content;
}
.contact.thanks .l-contents__inner div {
  min-height: 50svh;
}

.wpcf7-list-item {
  display: flex !important;
  align-items: center;
  white-space: nowrap;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex !important;
  align-items: center;
}

.contact .wpcf7-response-output {
  display: none;
}
.contact .screen-reader-response {
  display: none;
  color: #f00;
  background-color: rgb(255, 225, 225);
  margin: 1em 1em 3em;
}
.contact .screen-reader-response ul {
  display: none;
}
.contact .wpcf7-not-valid-tip {
  color: #f00;
}

.contact.thanks p {
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
}

.contact.thanks .l-contents__inner div {
  min-height: 50svh;
  margin-top: 40px;
}

.diversity__kv {
  position: relative;
  font-family: "Merriweather Sans", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", yugothic, "メイリオ", meiryo, sans-serif;
}
.diversity__kv__inner {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: auto;
  aspect-ratio: 1300/530;
}
.diversity__kv__main {
  font-size: 8.5333333333vw;
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 0;
  line-height: 1;
}
.diversity__kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
}
.diversity__title {
  top: 50%;
  left: 0;
  right: 0;
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  text-align: left;
  line-height: 1;
  transform: translateY(-50%);
  gap: 5px;
}
.diversity__title .main {
  font-size: 5.4rem;
  color: #3563b0;
  font-weight: bold;
}
.diversity__title .sub {
  color: #000;
  font-size: 2rem;
  font-weight: normal;
  position: relative;
}
.diversity__title .sub:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #000;
  vertical-align: middle;
  font-weight: 300 !important;
  margin-right: 10px;
}
.diversity__sectitle {
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  color: #3563b0;
  margin-top: 40px;
  margin-bottom: 40px;
}
.diversity__member {
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
  padding-top: 25px;
  margin-top: 60px;
  background-color: #e0eef6;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1220px;
}
.diversity__member__wrap {
  border-radius: 8px;
  position: relative;
}
.diversity__member__wrap:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  right: 50%;
  height: 100%;
  background-color: #e0eef6;
}
.diversity__member__wrap .diversity__sectitle {
  color: #fff;
}
.diversity__memberlist {
  background-color: #e0eef6;
  display: flex;
  width: 100%;
  max-width: 1140px;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
}
.diversity__memberlisthead {
  z-index: 99;
  background-color: #e0eef6;
  width: 100%;
  max-width: 1140px;
  margin: auto;
}
.diversity__memberlisthead__inner > .main {
  font-size: 9rem;
  font-weight: bold;
  color: #fff;
  font-family: "Merriweather Sans", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", yugothic, "メイリオ", meiryo, sans-serif;
  line-height: 1;
}
.diversity__memberlisthead__inner > .sub {
  font-size: 3.2rem;
  font-weight: bold;
  color: #3563b0;
  line-height: 1;
  margin-top: -0.8rem;
}
.diversity__memberlisthead__inner > .sub:after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 60px;
  height: 3px;
  background-color: #3563b0;
}
.diversity__member__item {
  width: 240px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 50px;
}
.diversity__member__item strong {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.diversity__member__item p {
  font-size: 14px;
  line-height: 1.375 !important;
}
.diversity__member__item figure {
  margin-bottom: 10px;
  max-width: 193px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
}
.diversity__member__item:not(:last-child):after, .diversity__member__item:not(:last-child)::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 88px;
  right: -42px;
  width: 50px;
  height: 1px;
}
@media only screen and (max-width: 1170px) {
  .diversity__member__item:not(:last-child):after, .diversity__member__item:not(:last-child)::before {
    right: -2.9333333333vw;
    width: 4.2666666667vw;
  }
}
.diversity__member__item:not(:last-child):before {
  background-color: #3c3c3c;
  transform: rotate(45deg);
}
.diversity__member__item:not(:last-child):after {
  background-color: #3c3c3c;
  transform: rotate(-45deg);
}
.diversity__member .name {
  font-weight: bold;
  font-size: 20px;
  color: #3563b0;
  line-height: 1.4;
  margin-bottom: 0.25em;
}
.diversity__member .hiredate {
  background-color: #495172;
  color: #fff;
  padding: 0.4em 0.75em;
  line-height: 1;
  width: fit-content;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.diversity__member .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.75em;
}
.diversity__member p {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 600;
}
.diversity__firstcontent {
  max-width: 1170px;
  width: 100%;
  margin: auto;
  padding-left: 60px;
}
.diversity__lastcontent {
  width: 100%;
  background-color: #e9f7ff;
  padding: 80px 0;
}
.diversity__lastcontent__inner {
  max-width: 852px;
  width: 100%;
  margin: auto;
  border: 1px solid #3363b2;
  background-color: #fff;
  display: flex;
  padding: 23px;
  gap: 23px;
  align-items: center;
}
.diversity__lastcontent img {
  width: 153px;
}
.diversity__lastcontent__item {
  font-size: 17px;
}
.diversity__lastcontent__item .name {
  font-weight: bold;
  color: #3563b0;
  line-height: 1.4;
  margin-bottom: 0.25em;
  display: block;
}
.diversity__lastcontent__item .hiredate {
  background-color: #495172;
  color: #fff;
  padding: 0.4em 0.75em;
  line-height: 1;
  width: fit-content;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.diversity__lastcontent__item .title {
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.75em;
}
.diversity__lastcontent__item p {
  line-height: 1.706;
}
.diversity__ctcontents {
  width: 100%;
  margin: auto;
  display: flex;
  position: relative;
}
.diversity__ctcontents.--bgfloat:after {
  z-index: -1;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  transform: translateY(15%);
  background-color: #e9f7ff;
  width: 65%;
  height: 970px;
}
.diversity__ctcontents.--bgfloat2:after {
  z-index: -1;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  transform: translateY(15%);
  background-color: #e9f7ff;
  width: 65%;
  height: 970px;
}
.diversity .ques {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-weight: bold;
  color: #3563b0;
  font-size: 2rem;
  line-height: 1.5 !important;
}
.diversity .ques:before {
  height: 1px;
  width: 50px;
  background-color: #3563b0;
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  margin-top: 15px;
  flex: none;
}
.diversity strong.name {
  font-weight: bold;
}
.diversity strong.name.--spkr {
  color: #3563b0;
}
.diversity__contents {
  display: flex;
  gap: 2.5%;
}
.diversity__contents:nth-child(even) {
  flex-direction: row-reverse;
}
.diversity__contents .main p {
  line-height: 2.2;
  margin-bottom: 1em;
}
.diversity__contents .main p:last-child {
  margin-bottom: 50px;
}
.diversity__contents .main strong {
  font-weight: 600;
}
.diversity__contents .sub {
  flex: none;
  max-width: 40%;
  width: 100%;
}
.diversity__contents figure {
  overflow: hidden;
  border-radius: 4px;
}
.diversity__contents img {
  width: 100%;
  max-width: 640px;
}
.diversity__speaker__item {
  font-size: 14px;
  line-height: 1.8;
  max-width: 60%;
  width: 100%;
  background-color: #f3f4f6;
  margin: auto;
  padding: 20px;
}
.diversity__speaker__item strong {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .diversity__title {
    top: 50%;
    left: 50%;
    right: 0;
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    line-height: 1;
    transform: translateX(-50%);
    gap: 5px;
    width: fit-content;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5em 0.9em;
  }
  .diversity__title .main {
    font-size: 5.6vw;
    color: #3563b0;
    font-weight: bold;
  }
  .diversity__title .sub {
    font-size: 2.6666666667vw;
  }
  .diversity__title .sub:before {
    width: 6.4vw;
    margin-right: 10px;
  }
  .diversity__member {
    gap: 40px;
    padding-top: 25px;
    margin-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    max-width: 1220px;
  }
  .diversity__member__wrap {
    border-radius: 8px;
    margin-left: 0;
  }
  .diversity__member__wrap:before {
    position: absolute;
    left: 0;
    right: 50%;
  }
  .diversity__memberlist {
    max-width: 1140px;
    padding: 0 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .diversity__memberlisthead {
    max-width: 1140px;
  }
  .diversity__memberlisthead__inner > .main {
    font-size: 18.6666666667vw;
  }
  .diversity__memberlisthead__inner > .sub {
    font-size: 6.9333333333vw;
    margin-top: -0.8em;
  }
  .diversity__memberlisthead__inner > .sub:after {
    margin-top: 20px;
    width: 60px;
    height: 3px;
  }
  .diversity__member__item {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
  }
  .diversity__member__item strong {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .diversity__member__item p {
    font-size: 14px;
    line-height: 1.375 !important;
  }
  .diversity__member__item figure {
    margin-bottom: 10px;
    max-width: 193px;
    width: 100%;
    border-radius: 100px;
  }
  .diversity__member__item:not(:last-child):after, .diversity__member__item:not(:last-child)::before {
    display: none;
  }
  .diversity__member .name {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0.25em;
  }
  .diversity__member .hiredate {
    padding: 0.4em 0.75em;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
  .diversity__member .title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0.75em;
  }
  .diversity__member p {
    font-size: 1.6rem;
    line-height: 1.375;
    font-weight: 600;
  }
  .diversity__contents {
    display: flex;
  }
  .diversity__contents .main p {
    line-height: 2.2;
    margin-bottom: 1em;
  }
  .diversity__contents .main p:last-child {
    margin-bottom: 50px;
  }
  .diversity__contents .main strong {
    font-weight: 600;
  }
  .diversity__contents .sub {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .diversity__contents figure {
    overflow: hidden;
    border-radius: 4px;
  }
  .diversity__contents img {
    width: 100%;
    max-width: 640px;
  }
  .diversity__firstcontent {
    max-width: 1170px;
    width: fit-content;
    margin: auto;
    padding-left: 0;
    margin: 0 5%;
  }
  .diversity__lastcontent {
    padding: 80px 0;
  }
  .diversity__lastcontent__inner {
    width: fit-content;
    padding: 23px;
    gap: 23px;
    margin-left: 20px;
    margin-right: 20px;
    flex-direction: column;
  }
  .diversity__lastcontent img {
    width: 153px;
  }
  .diversity__lastcontent__item {
    font-size: 17px;
  }
  .diversity__lastcontent__item .name {
    line-height: 1.4;
    margin-bottom: 0.25em;
  }
  .diversity__lastcontent__item .hiredate {
    padding: 0.4em 0.75em;
    font-size: 1.4rem;
    margin-bottom: 5px;
    display: block;
  }
  .diversity__lastcontent__item .title {
    margin-bottom: 0.75em;
  }
  .diversity__lastcontent__item p {
    line-height: 1.706;
  }
  .diversity__ctcontents.--bgfloat:after {
    transform: translateY(15%);
    width: 65%;
    height: 470px;
  }
  .diversity__ctcontents.--bgfloat2:after {
    transform: translateY(15%);
    width: 65%;
    height: 470px;
  }
  .diversity .ques {
    margin-bottom: 20px;
    font-size: 4.2666666667vw;
    line-height: 1.5 !important;
  }
  .diversity .ques:before {
    height: 1px;
    width: 6.9333333333vw;
    margin-right: 0.5em;
    margin-top: 15px;
  }
  .diversity strong.name {
    font-weight: bold;
  }
  .diversity strong.name.--spkr {
    color: #3563b0;
  }
  .diversity__contents {
    display: flex;
    gap: 2.5%;
  }
  .diversity__contents .main p {
    line-height: 2.2;
    margin-bottom: 1em;
  }
  .diversity__contents .main p:last-child {
    margin-bottom: 50px;
  }
  .diversity__contents .main strong {
    font-weight: 600;
  }
  .diversity__contents .sub {
    flex: none;
    max-width: 40%;
    width: 100%;
  }
  .diversity__contents figure {
    border-radius: 4px;
  }
  .diversity__contents img {
    width: 80%;
    max-width: none;
  }
  .diversity__speaker__item {
    font-size: 14px;
    max-width: none;
    width: 100%;
    padding: 20px;
  }
  .diversity__speaker__item strong {
    font-size: 16px;
  }
}

.mission .postbody p {
  font-size: 110%;
  font-weight: 600;
}

#visioncard {
  background-color: #e60012;
}
#visioncard .l-contents__inner {
  color: #fff;
}

.mission .sec__inner,
.below .sec__inner {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.mission .sec__inner .item p,
.below .sec__inner .item p {
  line-height: 2.389;
}
.mission .sec__inner .item:first-child,
.below .sec__inner .item:first-child {
  width: 480px;
}
.mission .sec__inner .item:last-child,
.below .sec__inner .item:last-child {
  width: 520px;
}
.mission .sec__catch,
.below .sec__catch {
  width: 460px;
  padding: 10px 0 10px 20px;
  text-align: center;
  margin: auto;
  font-size: 32px;
}
.mission .sec__catch img,
.below .sec__catch img {
  width: 90% !important;
}
.mission .sec__title,
.below .sec__title {
  font-weight: 600;
  font-family: "Merriweather Sans", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", yugothic, "メイリオ", meiryo, sans-serif;
  display: flex;
  flex-direction: column;
}
.mission .sec__title .main,
.below .sec__title .main {
  font-family: "Merriweather Sans", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", yugothic, "メイリオ", meiryo, sans-serif;
  font-size: 80px;
  display: block;
  color: #000;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 10px;
}
.mission .sec__title .main.--fzc,
.below .sec__title .main.--fzc {
  font-size: 46px;
}
.mission .sec__title .sub,
.below .sec__title .sub {
  font-size: 22px;
  font-weight: 300;
  font-weight: bold;
  color: #3563b0;
  line-height: 1;
}
.mission .sec__title .sub.--fzc,
.below .sec__title .sub.--fzc {
  font-size: 16px;
}
.mission .sec__title .sub.--fzc a,
.below .sec__title .sub.--fzc a {
  color: #3563b0;
  text-decoration: none;
}
.mission .sec__1,
.below .sec__1 {
  background-color: #e9f6ff;
  padding-bottom: 50px;
}
.mission .sec__1 .sec__title,
.below .sec__1 .sec__title {
  padding-top: 60px;
  margin-bottom: 3rem;
  line-height: 1;
  gap: 5px;
}
.mission .sec__1 .sec__inner,
.below .sec__1 .sec__inner {
  padding: 0;
}
.mission .sec__1 p.copy,
.below .sec__1 p.copy {
  white-space: nowrap;
  width: 22em;
  font-size: 18px;
}
.mission .sec__1 figure,
.below .sec__1 figure {
  text-align: right;
}
.mission .sec__1 img,
.below .sec__1 img {
  width: 100%;
}
.mission .sec__2 .sec__inner,
.below .sec__2 .sec__inner {
  padding: 0;
  flex-direction: row-reverse;
}
.mission .sec__2 .sec__title,
.below .sec__2 .sec__title {
  text-align: right;
  margin-bottom: 30px;
}
.mission .sec__2 img,
.below .sec__2 img {
  width: 100%;
}
.mission .sec__2 .sec__inner,
.below .sec__2 .sec__inner {
  flex-direction: row-reverse;
}
.mission .sec__2 .sec__inner .sec__title,
.below .sec__2 .sec__inner .sec__title {
  text-align: right;
}
.mission__headcontent,
.below__headcontent {
  padding: 35px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(5%, 45px);
}
.mission__headcontent figure,
.below__headcontent figure {
  flex: none;
  max-width: 420px;
  width: 100vw;
  margin-bottom: 0;
}
.mission__headcontent figure img,
.below__headcontent figure img {
  max-width: 420px;
  width: 40vw !important;
}
.mission__headcontent .item p,
.below__headcontent .item p {
  font-size: clamp(1rem, 0.125vw + 1.9rem, 2.4rem);
  font-weight: bold;
  line-height: 2.167;
}
.mission__we7,
.below__we7 {
  border: 1px solid #e60012;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  padding-top: 50px;
  padding-bottom: 60px;
}
.mission__we7.--le5,
.below__we7.--le5 {
  background-color: #e60012;
}
.mission__we7.--le5 .mission__we7header,
.below__we7.--le5 .mission__we7header {
  border-bottom: 1px solid #ffffff;
}
.mission__we7header,
.below__we7header {
  border-bottom: 1px solid #e60012;
  padding-bottom: 40px;
  margin-bottom: 100px;
  max-width: 830px;
  width: 100%;
}
.mission__we7list,
.below__we7list {
  max-width: 730px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 55px;
}
.mission__we7list img,
.below__we7list img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .mission__we7,
  .below__we7 {
    padding: 20px;
    padding-bottom: 40px;
  }
  .mission__we7header,
  .below__we7header {
    width: 100%;
    margin-bottom: 25px !important;
    padding-bottom: 20px;
  }
  .mission__we7header img,
  .below__we7header img {
    width: 80%;
  }
  .mission__we7list,
  .below__we7list {
    gap: 5px;
  }
  .mission .sec__inner,
  .below .sec__inner {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
  }
  .mission .sec__inner .item figure,
  .below .sec__inner .item figure {
    text-align: center;
    margin-top: 40px;
  }
  .mission .sec__inner .item figure img,
  .below .sec__inner .item figure img {
    width: 80%;
  }
  .mission .sec__inner .item:first-child,
  .below .sec__inner .item:first-child {
    width: 100%;
  }
  .mission .sec__inner .item:last-child,
  .below .sec__inner .item:last-child {
    width: 100%;
  }
  .mission .sec__catch,
  .below .sec__catch {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  .mission .sec__catch img,
  .below .sec__catch img {
    width: 90% !important;
  }
  .mission .sec__title .main,
  .below .sec__title .main {
    font-size: 9.3333333333vw;
  }
  .mission .sec__title .main.--fzc,
  .below .sec__title .main.--fzc {
    font-size: 6.4vw;
  }
  .mission .sec__title .sub,
  .below .sec__title .sub {
    font-size: 3.0666666667vw;
  }
  .mission .sec__title .sub.--fzc,
  .below .sec__title .sub.--fzc {
    font-size: 2.6666666667vw;
  }
  .mission__headcontent,
  .below__headcontent {
    padding: 3.2vw 0;
    gap: 3.2vw;
    flex-direction: column;
    justify-content: center;
  }
  .mission__headcontent figure,
  .below__headcontent figure {
    flex: none;
    max-width: none;
    width: 100%;
    margin-bottom: 0;
    text-align: center !important;
  }
  .mission__headcontent figure img,
  .below__headcontent figure img {
    max-width: none;
    width: 80% !important;
  }
  .mission__headcontent .item p,
  .below__headcontent .item p {
    font-size: 2.9333333333vw;
    font-weight: bold;
    line-height: 2.167;
  }
  .mission .sec__1,
  .below .sec__1 {
    padding-bottom: 50px;
  }
  .mission .sec__1 .sec__inner,
  .below .sec__1 .sec__inner {
    padding: 0;
  }
  .mission .sec__1 .sec__catch,
  .below .sec__1 .sec__catch {
    width: 100%;
    padding: 10px 0;
    margin-right: 0;
    font-size: 7.2vw;
    text-align: center;
  }
  .mission .sec__1 p.copy,
  .below .sec__1 p.copy {
    width: 100%;
    white-space: inherit;
    font-size: 4.2666666667vw;
    padding-left: 5%;
  }
  .mission .sec__1 img,
  .below .sec__1 img {
    width: auto;
  }
  .mission .sec__2 p.copy,
  .below .sec__2 p.copy {
    width: 100%;
    white-space: inherit;
    padding-left: 0;
  }
  .mission .sec__2 img,
  .below .sec__2 img {
    width: auto;
  }
  .mission .sec__2 .sec__inner,
  .below .sec__2 .sec__inner {
    flex-direction: column !important;
    padding: 0;
  }
  .mission .sec__2 .sec__inner .sec__title,
  .below .sec__2 .sec__inner .sec__title {
    text-align: right;
  }
  .mission .sec__2:first-child .sec__inner,
  .below .sec__2:first-child .sec__inner {
    flex-direction: column;
    padding: 0;
  }
  .mission .sec__2:first-child .sec__inner .sec__title,
  .below .sec__2:first-child .sec__inner .sec__title {
    transform: none;
  }
}

/* privacy ////*/
.privacy__content {
  padding: 50px 40px;
  margin-bottom: 100px;
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
}
.privacy__content dt {
  font-weight: bold;
  font-size: clamp(1.4rem, 0.25vw + 1.5rem, 1.8rem);
}
.privacy__content dt:not(:first-child) {
  margin-top: 40px;
}
.privacy__content p:last-child {
  margin-top: 50px;
  border-top: 1px solid #000;
  padding-top: 40px;
}

/*========================
ビジョン
========================*/
.vision .postbody a.linktarget {
  text-decoration: underline;
}
.vision .postbody a.linktarget:hover {
  opacity: 0.7;
}
.vision .read {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 45px;
  border-bottom: 1px solid #3e3e3e;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .vision .read {
    font-size: 20px;
  }
}

/*========================
greeting
========================*/
.greeting__photo {
  position: relative;
  text-align: center;
}
.greeting__photo img {
  width: auto;
  border-radius: 8px;
}
.greeting__name {
  padding: 0.5rem 2.6rem;
  padding-right: 0;
  width: fit-content;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  line-height: 1 !important;
  gap: 1rem;
  font-size: 3.2rem;
  font-weight: 600;
}
.greeting__name span {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
}
.greeting__name img {
  max-width: 200px;
}

/* ==========================================================================
Blocks
========================================================================== */
.mediablock {
  background-color: #e9f6ff;
  padding-bottom: 50px;
}
.mediablock__inner {
  display: flex;
  max-width: 1180px;
  padding: 0;
  justify-content: center;
}
.mediablock__inner .item {
  width: 45%;
}
.mediablock__inner .mediablock__image {
  width: 55%;
}
.mediablock__copy {
  white-space: nowrap;
  width: 22em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.mediablock__copy p {
  font-size: 18px;
  margin-bottom: 1em;
  line-height: 2.2;
}
.mediablock__title {
  transform: translateY(-70%);
  margin-bottom: -50px;
  font-weight: 600;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", yugothic, "メイリオ", meiryo, sans-serif;
}
.mediablock__title .main {
  font-family: "Montserrat", sans-serif;
  font-size: 86px;
  color: #3563b0;
  display: block;
  line-height: 0.8;
  margin-bottom: 25px;
  letter-spacing: 0;
}
.mediablock__title .sub {
  font-size: 22px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .mediablock__inner {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .mediablock__inner .item {
    width: 100%;
  }
  .mediablock__inner .mediablock__image {
    width: 100%;
  }
  .mediablock__inner .mediablock__image img {
    width: 100%;
  }
  .mediablock__copy {
    width: 100%;
    white-space: normal;
  }
  .mediablock__copy br {
    display: none;
  }
  .mediablock__title .main {
    font-size: 10.6666666667vw;
    margin-bottom: 25px;
  }
  .mediablock__title .sub {
    font-size: 4.2666666667vw;
  }
}

/*-----------------------------
no head footer
------------------------------*/
.page--nohdft {
  text-align: left;
  font-size: clamp(1.2rem, 0.25vw + 1.3rem, 1.6rem);
  line-height: 2;
}

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