@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

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

/**** pc,spだし分け　*****/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*****  タイトル系　*******/
h1,
h2 {
  font-weight: normal;
}

.section__title {
  text-transform: uppercase;
  font-family: "Helvetica", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2272727273;
  letter-spacing: 0.3em;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 1.1875rem;
    line-height: 1.1842105263;
    margin-bottom: 8px;
  }
}

.section__title.center {
  text-align: center;
}

.section__title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #74caff;
}
@media screen and (max-width: 768px) {
  .section__title::after {
    bottom: -6px;
    left: 0;
    width: 16px;
  }
}

.section__title.center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section__title--jp {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 3.8461538462;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .section__title--jp {
    font-size: 0.625rem;
    line-height: 2.5;
  }
}

.section__title--jp.center {
  text-align: center;
}

/***** innerなど余白 *****/
/***** pageTop-arrow ******/
.pageTop-arrow {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: #16345f;
  position: absolute;
  right: 135px;
  top: -40px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .pageTop-arrow {
    width: 50px;
    height: 50px;
    right: 15px;
    top: -25px;
  }
}

.pageTop-arrow:hover span {
  -webkit-transform: translate(30px, 20px);
  transform: translate(30px, 20px);
}
@media screen and (max-width: 768px) {
  .pageTop-arrow:hover span {
    -webkit-transform: translate(17px, 13px);
    transform: translate(17px, 13px);
  }
}

.pageTop-arrow span {
  display: block;
  width: 24px;
  height: 20px;
  background-image: url(../images/pageTop-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(30px, 30px);
  transform: translate(30px, 30px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .pageTop-arrow span {
    -webkit-transform: translate(17px, 18px);
    transform: translate(17px, 18px);
    width: 14px;
    height: 15px;
  }
}

/****** bar ******/
.bar {
  display: block;
  padding: 30px 100px 30px 0;
  border-top: 1px solid rgba(12, 75, 114, 0.3);
  position: relative;
}
@media screen and (max-width: 768px) {
  .bar {
    padding: 20px 70px 18px 0;
  }
}
.bar:last-of-type {
  border-bottom: 1px solid rgba(12, 75, 114, 0.3);
}
.bar::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 1px solid #16345f;
  border-radius: 50%;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .bar::after {
    right: 10px;
    width: 35px;
    height: 35px;
  }
}
.bar:hover:after {
  transform: scale(1.2) translateY(-42%);
}
.bar::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 46px;
  transform: translate(0, -50%);
  width: 15px;
  height: 12px;
  background-image: url(../images/blue-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media ( max-width:768px ){
  .bar::before{
    right: 22px;
    width: 11px;
    height: 9px;
  }
}

.bar__date {
  display: block;
  margin-bottom: 10px;
  color: #0c4b72;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .bar__date {
    font-size: 12px;
  }
}
.bar__title {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .bar__title {
    font-size: 12px;
  }
}

/*****スクロール時にふわっと**********/
#fadein {
  -webkit-transform: translateY(140px);
  transform: translateY(140px);
  opacity: 0;
}

#fadein.scrollin {
  -webkit-transform: unset;
  transform: unset;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.footer {
  background-color: #16345f;
  color: #fff;
  margin-top: auto;
  position: relative;
  padding: 0 20px;
}

.footer .inner {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 87px 0px 40px;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    padding: 90px 40px 40px;
  }
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .footer__wrapper {
    margin-bottom: 49px;
  }
}

@media screen and (max-width: 768px) {
  .footer__left {
    margin-top: -50px;
  }
}

.footer__right {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__right {
    margin-top: -8px;
  }
}

.footer__logo {
  width: 210px;
  height: 57px;
  margin-bottom: 54px;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 130px;
    height: 35px;
    margin-bottom: 11px;
  }
}

.footer__access {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .footer__access {
    font-size: 0.625rem;
    line-height: 2.5;
  }
}

.footer__links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__links ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__link {
  margin-right: 70px;
}
@media screen and (max-width: 768px) {
  .footer__link {
    margin-right: 0;
    text-align: right;
    font-size: 0.625rem;
    line-height: 3;
  }
}

.footer__link:last-child {
  margin-right: 0px;
}

.footer__link a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__link a {
    font-size: 0.625rem;
    line-height: 1.45;
  }
}

.copylight {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.4545454545;
  text-align: right;
}

.copylight span.pc {
  display: inline-block;
}

.header {
  height: 90px;
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  z-index: 1000;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header .inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .header .inner {
    padding-left: 15px;
  }
}

.header-logo {
  width: 166px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 111px;
    height: 30px;
  }
}

/****　ハンバーガー（トリガー）****/
.p-hamburger {
  cursor: pointer;
  text-align: center;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #16345f;
  position: fixed;
  top: 0;
  right: 0pt;
  margin-left: auto;
  display: none;
}
@media screen and (max-width: 1280px) {
  .p-hamburger {
    display: block;
  }
}

.p-hamburger span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 37px;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-hamburger span:nth-child(1) {
  top: 16px;
}

.p-hamburger span:nth-child(2) {
  top: 28px;
}

.p-hamburger span:nth-child(3) {
  top: 40px;
}

/* ナビ開いてる時のバツボタン */
.p-hamburger.active span {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.p-hamburger.active span:nth-child(1) {
  top: 27px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.p-hamburger.active span:nth-child(2) {
  display: none;
}

.p-hamburger.active span:nth-child(3) {
  top: 27px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg) translate(-1px, 0px);
}

/* ナビメニュー内 */
.p-globalMenuSp {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  margin: auto;
  height: 100%;
  background-color: #16345f;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}

@media screen and (max-width: 1280px) {
  .p-globalMenuSp.active {
    top: 0px;
    visibility: visible;
    display: block;
    -webkit-transition: top 0.5s;
    transition: top 0.5s;
    position: fixed;
    z-index: 2;
    top: 0;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-top: 15px;
  }
}

.p-globalMenuSp__logo {
  width: 111px;
  height: 30px;
  margin: 0 0 43px 15px;
  display: block;
}

.p-globalMenuSp ul {
  width: 100%;
  padding: 0 40px;
}

.p-globalMenuSp__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 22px;
}

.p-globalMenuSp__link a {
  display: block;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4583333333;
  font-weight: 500;
}

.p-globalMenuPc {
  height: inherit;
}
@media screen and (max-width: 1320px) {
  .p-globalMenuPc {
    display: none;
  }
}

.p-globalMenuPc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-globalMenuPc__link {
  height: inherit;
  padding: 0 35px;
}

.p-globalMenuPc__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-globalMenuPc__link:last-child {
  width: 160px;
  background-color: #16345f;
  color: #fff;
  margin-left: 35px;
}

.mv {
  width: 100vw;
  height: 45.5vw;
  background-image: url(../images/top.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 98%;
  background-color: #0c4b72;
  position: relative;
  margin-bottom: 190px;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 162% 15px 0;
    background-position: 60% center;
    margin-bottom: 90px;
  }
}

.mv__text {
  position: absolute;
  top: 45%;
  left: 6.8vw;
}
@media screen and (max-width: 768px) {
  .mv__text {
    top: 56%;
    left: 0px;
    padding: 0 15px 0 40px;
  }
}

.mv__title {
  color: #74caff;
  font-size: 116px;
  font-size: 7.25rem;
  line-height: 1.2672413793;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "Helvetica", sans-serif;
  padding-left: 27px;
  margin-bottom: 51px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1180px) {
  .mv__title {
    margin-bottom: -8px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 3rem;
    padding-left: 0px;
    margin-bottom: 8px;
  }
}

.mv__title span {
  display: block;
  text-transform: lowercase;
  font-size: 128px;
  font-size: 8rem;
  letter-spacing: 0.06em;
  color: #fff;
  font-family: "Birthstone Bounce", cursive;
  position: relative;
  z-index: 1;
  margin-right: -50px;
}
@media screen and (max-width: 768px) {
  .mv__title span {
    font-size: 3.5rem;
    margin-right: -28px;
  }
}

.mv p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.06em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv p {
    font-size: 0.6875rem;
    line-height: 2.7272727273;
  }
}

.about {
  margin-bottom: 310px;
}
@media screen and (max-width: 768px) {
  .about {
    margin-bottom: 150px;
  }
}

.about .inner {
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .about .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.about__left {
  width: 67.3%;
  background-color: #16345f;
  color: #fff;
  padding: 107px 20.1vw 126px 136px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .about__left {
    padding: 60px 24px;
    width: 92%;
    margin: -77% auto 0;
  }
}

.about__right {
  width: 50%;
  margin-left: -15vw;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about__right {
    width: 100%;
    margin: 0;
  }
}

.about .section__title--jp {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .about .section__title--jp {
    margin-bottom: 19px;
  }
}

.about__head {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.9285714286;
  letter-spacing: 0.1em;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .about__head {
    font-size: 1rem;
    line-height: 2.25;
    margin-bottom: 20px;
  }
}

.about__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 0.75rem;
    line-height: 2.0833333333;
  }
}

/**** news ***/
.news {
  margin-bottom: 160px;
  background: rgb(22, 52, 95);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(22, 52, 95)),
    color-stop(50%, rgb(22, 52, 95)),
    color-stop(50%, rgb(255, 255, 255)),
    to(rgb(255, 255, 255))
  );
  background: linear-gradient(
    90deg,
    rgb(22, 52, 95) 0%,
    rgb(22, 52, 95) 50%,
    rgb(255, 255, 255) 50%,
    rgb(255, 255, 255) 100%
  );
  padding-left: 14%;
}
@media screen and (max-width: 768px) {
  .news {
    margin-bottom: 60px;
    padding-left: 0;
  }
}

.news .inner {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  background-color: #16345f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 220px 0;
}
@media screen and (max-width: 768px) {
  .news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 0 60px 40px;
  }
}

@media screen and (max-width: 768px) {
  .news .section__title--jp {
    margin-bottom: 25px;
  }
}

.news__left {
  color: #fff;
  width: 17.5%;
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .news__left {
    width: 100%;
  }
}

.news__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
  padding: 90px 0 120px 110px;
}
@media screen and (max-width: 768px) {
  .news__right {
    padding: 30px 57.5px 30px 25px;
    margin-left: 0;
  }
}

/**** business ****/
.business {
  padding-bottom: 324px;
  background-image: url(../images/business-back.jpg);
  background-size: 76%;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
}
@media screen and (max-width: 768px) {
  .business {
    background-size: 96%;
    padding-bottom: 150px;
  }
}

.business::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 83%;
  background-color: #fff;
}

.business .inner {
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
}

.business__topImage {
  width: 91.8%;
  margin-left: auto;
  position: relative;
  padding-top: 30%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .business__topImage {
    width: 96%;
    padding-top: 29%;
    margin-left: 0;
    position: relative;
  }
}

.business__topImage img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.business__text {
  width: 100%;
  max-width: 1180px;
  margin-left: 8.2%;
  margin-top: -153px;
  background-color: #fff;
  position: relative;
  padding: 53px 0 0px;
  z-index: 2;
}
@media (max-width: 1280px) {
  .business__text {
    margin-left: 0;
    margin: 0 auto;
    padding: 53px 20px;
  }
}
@media screen and (max-width: 768px) {
  .business__text {
    width: 96%;
    margin-left: 0;
    margin-top: 0;
    padding: 60px 32px 60px 40px;
  }
}

.business .section__title {
  color: #0c4b72;
}

.business .section__title--jp {
  margin-bottom: 56px;
  color: #0c4b72;
}
@media screen and (max-width: 768px) {
  .business .section__title--jp {
    margin-bottom: 25px;
  }
}

.business__desc {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .business__desc {
    font-size: 0.75rem;
    line-height: 2.0833333333;
    margin-bottom: 24px;
  }
}

.business__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22%;
}
@media screen and (max-width: 768px) {
  .business__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.business__item {
  position: relative;
}

.business__item::after {
  display: block;
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
@media screen and (max-width: 768px) {
  .business__item::after {
    top: 32px;
  }
}

.business__item:first-of-type {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .business__item:first-of-type {
    width: 100%;
    margin-bottom: 30px;
  }
}

.business__item:last-of-type {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .business__item:last-of-type {
    width: 100%;
  }
}

.business__item--title {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.6470588235;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .business__item--title {
    font-size: 1rem;
    margin-bottom: 26px;
  }
}

.business__item--title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .business__item--title::after {
    bottom: -8px;
  }
}

.business__item--category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 17px;
}
@media screen and (max-width: 768px) {
  .business__item--category ul {
    gap: 10px 10px;
  }
}

.business__item--category ul li {
  color: #0c4b72;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  padding: 3px 16px;
  border: 1px solid #0c4b72;
}
@media screen and (max-width: 768px) {
  .business__item--category ul li {
    font-size: 0.75rem;
    line-height: 2.0833333333;
    padding: 0px 9px;
  }
}

/*** equipment ****/
.equipment {
  padding: 110px 0 160px;
  background-color: #16345f;
  color: #fff;
  margin-bottom: 163px;
}
@media screen and (max-width: 768px) {
  .equipment {
    padding: 60px 40px 20px;
    margin-bottom: 100px;
  }
}

.equipment .section__title,
.equipment .section__title--jp {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .equipment .section__title,
  .equipment .section__title--jp {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .equipment .section__title.center::after {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.equipment .section__title--jp {
  margin-bottom: 76px;
}
@media screen and (max-width: 768px) {
  .equipment .section__title--jp {
    margin-bottom: 38px;
  }
}

.equipment__top {
  position: relative;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto 50px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.7777777778;
  letter-spacing: 0.3em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .equipment__top {
    font-size: 0.75rem;
    margin: 0 auto 25px;
  }
}

.equipment__top::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 100px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .equipment__top::after {
    left: 69px;
    width: 18px;
  }
}

.equipment__swiper {
  margin-top: -123px;
}
@media screen and (max-width: 768px) {
  .equipment__swiper {
    margin-top: -68px;
  }
}

.swiper-wrapper {
  padding-top: 110px;
  margin-left: 68px;
}
@media screen and (max-width: 768px) {
  .swiper-wrapper {
    padding-top: 98px;
    margin-left: 0;
  }
}

.slide__img {
  padding-top: 70.7%;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .slide__img {
    padding-top: 62.7%;
    margin-bottom: 22px;
  }
}

.slide__img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slide__name {
  font-size: 18px;
  font-size: 1.125rem;
  height: 60px;
  width: 270px;
  background-color: #16345f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 18px;
  position: relative;
  z-index: 1;
  margin: -77px 0 20px auto;
}
@media screen and (max-width: 768px) {
  .slide__name {
    font-size: 0.75rem;
    width: 210px;
    height: 32px;
    margin: -54px 0 16px auto;
  }
}

.slide__desc {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media screen and (max-width: 768px) {
  .slide__desc {
    font-size: 0.75rem;
  }
}

.slide__english {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .slide__english {
    font-size: 0.625rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background: #16345f;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid #fff;
  top: 8% !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px !important;
    height: 35px !important;
    top: 8% !important;
  }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.swiper-button-next {
  right: 14% !important;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 11px !important;
  }
}

.swiper-button-prev {
  left: auto !important;
  right: calc(14% + 70px) !important;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    right: 65px !important;
  }
}

.swiper-button-prev .arrow,
.swiper-button-next .arrow {
  width: 20px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev .arrow,
  .swiper-button-next .arrow {
    width: 13px;
  }
}

.swiper-button-prev .arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*** company ******/
.company {
  margin-bottom: 174px;
}
@media screen and (max-width: 768px) {
  .company {
    margin-bottom: 60px;
  }
}

.company .inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company .inner {
    padding: 0 40px;
  }
}

.company .section__title {
  color: #0c4b72;
}
@media screen and (max-width: 768px) {
  .company .section__title {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .company .section__title::after {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.company .section__title--jp {
  margin-bottom: 72px;
  color: #0c4b72;
}
@media screen and (max-width: 768px) {
  .company .section__title--jp {
    text-align: left;
    margin-bottom: 30px;
  }
}

.company dl {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(12, 75, 114, 0.3);
}
@media screen and (max-width: 768px) {
  .company dl {
    height: 47px;
  }
}

.company dl:first-of-type {
  border-top: 1px solid rgba(12, 75, 114, 0.3);
}

.company dt,
.company dd {
  font-size: 15px;
  font-size: 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company dt,
  .company dd {
    font-size: 0.6875rem;
  }
}

.company dt {
  width: 170px;
  color: #0c4b72;
  font-weight: 500;
  background-color: rgba(12, 75, 114, 0.02);
  padding-left: 19px;
}
@media screen and (max-width: 768px) {
  .company dt {
    width: 75px;
    padding-left: 10px;
  }
}

.company dd {
  padding-left: 4em;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company dd {
    padding-left: 1em;
  }
}

/**** contact ****/
.contact {
  background-image: url(../images/contact-back.jpg);
  background-size: 71%;
  background-repeat: no-repeat;
  background-position: right 30%;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .contact {
    background-size: 95%;
    background-image: url(../images/contact-back-sp.jpg);
    padding: 0;
  }
}

.contact__topImage {
  width: 86%;
}
@media screen and (max-width: 768px) {
  .contact__topImage {
    width: 100%;
  }
}

.contact .inner {
  width: 100%;
  max-width: 1180px;
  margin: -134px auto 0px;
  background-color: #fff;
  padding: 110px 100px 160px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact .inner {
    margin: -80px auto 0;
    width: 92%;
    padding: 60px 25px 105px;
  }
}

.contact .section__title {
  color: #0c4b72;
}
@media screen and (max-width: 768px) {
  .contact .section__title {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .contact .section__title::after {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.contact .section__title--jp {
  margin-bottom: 71px;
  color: #0c4b72;
}
@media screen and (max-width: 768px) {
  .contact .section__title--jp {
    text-align: left;
    margin-bottom: 28px;
  }
}

.contact__top {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .contact__top {
    font-size: 0.75rem;
    margin-bottom: 30px;
  }
}

.contact dl {
  border-top: 1px solid rgba(12, 75, 114, 0.3);
  padding: 30px 20px 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .contact dl {
    padding: 20px 10px 14px;
    font-size: 0.6875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.contact dl.inquiry {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact__form label {
  color: #0c4b72;
  padding-right: 10px;
}

.contact__form dt {
  width: 35.2%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact__form dt {
    margin-bottom: 10px;
    width: 100%;
  }
}

.contact__form dt.must::after {
  display: inline;
  content: "※";
  position: absolute;
  top: 0;
  left: auto;
  width: 15px;
  height: 15px;
  color: #ff0000;
}

.contact__form dd {
  width: 100%;
}

.contact__form dd input,
.contact__form dd textarea {
  background-color: #f7f9fb;
  width: 100%;
  min-height: 50px;
  padding: 10px;
  width: 100%;
  font-size: 16px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
@media screen and (max-width: 768px) {
  .contact__form dd input,
  .contact__form dd textarea {
    min-height: 30px;
  }
}

.contact__form dd textarea {
  min-height: 230px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .contact__form dd textarea {
    min-height: 120px;
  }
}

.contact__form dd input.error:invalid,
.contact__form dd textarea.error:invalid {
  border: 1px solid #ff0000;
}

.contact dl.privacy {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 51px 0 70px;
}
@media screen and (max-width: 768px) {
  .contact dl.privacy {
    padding: 25px 0 40px;
  }
}

.privacy__top {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .privacy__top {
    font-size: 0.75rem;
    line-height: 2.0833333333;
    margin-bottom: 25px;
  }
}

.privacy__desc {
  border: 1px solid #ccc;
  width: 100%;
  padding: 30px 30px 22px;
  height: 150px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .privacy__desc {
    padding: 15px 10px;
    height: 125px;
  }
}

.privacy__desc--title {
  font-weight: bold;
  margin-bottom: 1em;
}

.contact__btn {
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  border: 1px solid #0c4b72;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    padding: 11px 0;
  }
}

.contact__btn label,
.contact__btn a {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #0c4b72;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact__btn label,
  .contact__btn a {
    font-size: 0.75rem;
    padding: 15px 0;
  }
}

.contact__btn input {
  display: none;
}

.error-message {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #ff0000;
  margin-top: 10px;
  display: none;
}
@media screen and (max-width: 768px) {
  .error-message {
    font-size: 0.6875rem;
    margin-top: 5px;
  }
}

.contact__form input.error:invalid + .error-message,
.contact__form textarea.error:invalid + .error-message {
  display: block;
}

/*
--------------------
確認画面
--------------------
*/
.contact.confirm {
  background-image: none;
}

.contact.confirm .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 0px;
  background-color: #fff;
  padding: 146px 0px 150px;
}
@media screen and (max-width: 768px) {
  .contact.confirm .inner {
    margin: 0px auto 0;
    width: 92%;
    padding: 52px 25px 105px;
  }
}

.contact.confirm dd {
  background-color: #fff;
}

.contact.confirm .contact__form dd input,
.contact.confirm .contact__form dd textarea {
  background-color: #fff;
  border: none;
}

.contact.confirm dl.inquiry {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact.confirm dl.inquiry {
    margin-bottom: 30px;
  }
}

/*
--------------------
完了
--------------------
*/
.contact.thanks {
  background-image: none;
}

.contact.thanks .inner {
  width: 100%;
  max-width: 610px;
  margin: 0 auto 0px;
  background-color: #fff;
  padding: 174px 0px;
}
@media screen and (max-width: 768px) {
  .contact.thanks .inner {
    margin: 0 auto 0;
    width: 92%;
    padding: 16px 25px 105px;
  }
}

.thanks__top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 70px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
}
@media screen and (max-width: 768px) {
  .thanks__top {
    font-size: 0.75rem;
    line-height: 2.0833333333;
    margin-bottom: 40px;
  }
}
#contact.thanks .submit {
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  border: 1px solid #0c4b72;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact.thanks .submit {
    padding: 11px 0;
  }
}

#contact.thanks .submit a {
  font-size: 17px;
  color: #0c4b72;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  display: block;
}
@media screen and (max-width: 768px) {
  #contact.thanks .submit a {
    font-size: 12px;
    padding: 15px 0;
  }
}

/*
  -----------------------------------
2023.05.31　ニュース記事追加
  -----------------------------------
  */

#single-news .news {
  background: #fff;
  margin-bottom: 0;
  padding: 0 10px;
}
@media (max-width: 768px) {
  #single-news .news {
    padding: 0;
  }
}
#single-news .news .inner {
  background-color: #fff;
  margin-left: auto;
  padding: 190px 0px 0px 0px;
  max-width: 1400px;
}
@media (max-width: 768px) {
  #single-news .news .inner {
    padding: 61px 40px 4px 40px;
  }
}
#single-news .news__left {
  color: #0c4b72;
  width: 200px;
}
#single-news .news__right {
  padding: 0 43px 0px 66px;
  max-width: 980px;
}
@media (max-width: 768px) {
  #single-news .news__right {
    padding: 0 0 0 0;
  }
}
#single-news .news__right .bar {
  padding: 0px 20px 17px 0;
  border-top: none;
  border-bottom: 1px solid rgba(12, 75, 114, 0.3);
}
@media (max-width: 768px) {
  #single-news .news__right .bar {
    padding: 0 20px 13px 0;
  }
}
#single-news .news__right .bar::after,
#single-news .news__right .bar::before {
  display: none;
}
#single-news .news__right .news__content {
  padding: 20px 0 0 0;
}
@media (max-width: 768px) {
  #single-news .news__right .news__content {
    padding: 13px 0 0 0;
  }
}
#single-news .news__right .news__content p {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 2;
}
@media (max-width: 768px) {
  #single-news .news__right .news__content p {
    font-size: 12px;
  }
}
#single-news .news__right .news__content .news__gallery {
  display: flex;
  gap: 90px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  align-items: center;
}
@media (max-width: 768px) {
  #single-news .news__right .news__content .news__gallery {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
#single-news .news__right .news__content .news__img {
  width: calc(100% / 2 - 90px / 2);
  padding-top: 29%;
  position: relative;
  background-color: #efefef;
}
@media (max-width: 768px) {
  #single-news .news__right .news__content .news__img {
    width: 79%;
    padding-top: 49%;
  }
}
#single-news .news__right .news__content .news__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link-btn {
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
  border: 1px solid #0c4b72;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .link-btn {
    max-width: 295px;
    padding: 0;
  }
}

.link-btn a {
  font-size: 17px;
  font-size: 1.0625rem;
  color: #0c4b72;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding: 30px 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .link-btn a {
    font-size: 0.75rem;
    padding: 15px 0;
  }
}
.news .link-btn{
  margin-bottom: 100px;
}
@media ( max-width:768px ){
  .news .link-btn{
    margin-bottom: 50px;
  }
}

/*
  -----------------------------------
 ボタンのホバーアクション
  -----------------------------------
  */

.contact__btn,
.link-btn {
  position: relative;
  background-color: transparent;
}

.contact__btn::after,
.link-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #16345f;
  transform-origin: 0% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.link-btn::after {
  z-index: initial;
}
.link-btn a {
  position: relative;
  transition: all 0.3s;
  z-index: 1;
}

.contact__btn:hover label,
.link-btn:hover a {
  color: #fff;
}
.contact__btn:hover:after,
.link-btn:hover:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

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