@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Nunito:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

/* 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%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* Natural flow and rhythm in articles by default */
/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

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

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

/* mixin
------------------------------------------------------------*/
/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-sub: "Zen Old Mincho", serif;
  --f-family-en: "Josefin Sans", sans-serif;
  --f-font-size: 16px;
  --f-line-height: 1.4;
  --f-letter-spacing: 0.06em;
  --f-weight-regular: 400;
  --f-weight-medium: 500;
  --f-weight-semibold: 600;
  --f-weight-bold: 700;
  --f-weight-black: 900;
  --c-base: #1f1f1f;
  --c-white: #ffffff;
  --c-brand-navy: #364c63;
  --c-brand-ivory: #f4f3ef;
  --c-required: #d94d61;
  --c-base-rgb: 26, 26, 26;
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 16px;
  width: 100%;
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  font-weight: var(--f-weight-regular);
  line-height: var(--f-line-height);
  background-color: var(--c-brand-ivory);
  color: var(--c-base);
  letter-spacing: var(--f-letter-spacing);
  overflow-wrap: break-word;
  word-break: break-all;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

main {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  main {
    overflow: hidden;
  }
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}
a:hover, a:focus {
  opacity: 0.8;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.9;
}

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

.center {
  margin: 0 auto;
  text-align: center;
}

.c-white {
  color: var(--c-white) !important;
}

/* コンテナー
------------------------------------------------------------*/
/* components
------------------------------------------------------------*/
/* header
------------------------------------------------------------*/
.header {
  position: relative;
  width: 100%;
}
.header__hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
  width: 40px;
  padding: 0;
  position: fixed;
  top: 30px;
  right: 30px;
}
.header__hamburger.active {
  transform: translateX(0);
}
.header__hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}
.header__hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--c-brand-navy);
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  margin: 8px 0;
}
.header__hamburger span:nth-child(3) {
  top: 0;
}
.header__nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
}
.header__nav.active {
  transform: translateX(0);
}
@media screen and (max-width: 1024px) {
  .header__nav {
    width: 100%;
  }
}
.header__nav-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  width: 100%;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .header__nav-contents {
    padding: 24px 6%;
  }
}
.header .nav-items__item {
  margin-bottom: 24px;
}
.header .nav-items__link {
  position: relative;
  display: block;
  font-size: 2.5rem;
  text-align: center;
  color: var(--c-brand-navy);
  font-family: var(--f-family-en);
  font-weight: var(--f-weight-semibold);
}
@media screen and (max-width: 480px) {
  .header .nav-items__link {
    font-size: 1.75rem;
  }
}
.header__sns {
  position: fixed;
  z-index: 1;
  top: 90vh;
  right: 40px;
}
@media screen and (max-width: 1024px) {
  .header__sns {
    display: none;
  }
}
.header__sns__item {
  margin-bottom: 18px;
}
.header__sns__item:last-child {
  margin-bottom: 0;
}
.header__sns__icon {
  display: inline-block;
  width: 18px;
}

/* footer
------------------------------------------------------------*/
.footer {
  background-color: var(--c-brand-navy);
}
.footer__content {
  max-width: 90%;
  margin: 0 auto;
  padding: 120px 0 100px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    max-width: none;
    padding: 120px 4% 100px;
  }
}
@media screen and (max-width: 767px) {
  .footer__content {
    padding: 80px 4% 60px;
  }
}
.footer__column {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer__column {
    flex-direction: column;
  }
}
.footer__logo {
  display: block;
  width: 240px;
}
.footer__nav {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    margin-left: 0;
  }
}
.footer__list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__list {
    gap: 32px;
  }
}
.footer__link {
  font-size: 1rem;
  color: var(--c-white);
  font-family: var(--f-family-en);
}
.footer small {
  display: block;
  background-color: var(--c-base);
  padding: 24px 0 24px 5%;
  font-size: 0.625rem;
  font-family: var(--f-family-en);
  color: var(--c-white);
}

/* modal
------------------------------------------------------------*/
/* form
------------------------------------------------------------*/
/* thanks
------------------------------------------------------------*/
/* TOP
------------------------------------------------------------*/
.test-block {
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
  background-color: var(--c-base);
  color: var(--c-white);
  padding: 1em 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000000;
}

.visual__container {
  width: 100%;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .visual__container .sec-wrap {
    width: 640px;
    backdrop-filter: blur(16px);
    padding: 40px 4%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .visual__container .sec-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .visual__container .ttl-en {
    color: var(--c-white);
  }
}
@media screen and (max-width: 1024px) {
  .visual__container .sec-ttl {
    color: var(--c-white);
  }
}
@media screen and (max-width: 767px) {
  .visual__container .sec-ttl {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 1024px) {
  .visual__container .sec-txt {
    color: var(--c-white);
  }
}
@media screen and (max-width: 1024px) {
  .visual__container .btn-link {
    color: var(--c-white);
    border-bottom: solid 2px var(--c-white);
  }
}
@media screen and (max-width: 1024px) {
  .visual__container .btn-link::after {
    background-image: url(../images/btn-arrow-white.svg);
  }
}
.visual__left-content {
  width: 50%;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .visual__left-content {
    width: 100%;
  }
}
.visual__left-content__inner {
  height: 100vh;
}
.visual__left-content__img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.visual__right-content {
  width: 50%;
  margin-left: auto;
  background-color: var(--c-brand-ivory);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .visual__right-content {
    width: 100%;
    background-color: transparent;
    z-index: 1;
  }
}
.visual__right-content__inner {
  height: 100vh;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visual__right-content__ttl {
  width: 480px;
  max-width: 80%;
  margin: 0 auto 24px;
}
.visual__right-content__catch {
  font-size: 1rem;
  color: var(--c-brand-navy);
  text-align: center;
}

.js-scroll-element .visual__left-content {
  cursor: default;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.js-scroll-element .visual__left-content.is-on {
  cursor: auto;
  pointer-events: auto;
  opacity: 1;
}
.js-scroll-element .visual__left-content.is-off {
  opacity: 0;
}

.sec-wrap {
  width: 520px;
  margin: 0 auto;
}

.ttl-en {
  display: block;
  font-size: 0.875rem;
  color: var(--c-brand-navy);
  font-weight: var(--f-weight-semibold);
  font-family: var(--f-family-en);
  line-height: 1;
  margin-bottom: 12px;
}
.ttl-en.-center {
  text-align: center;
}

.sec-ttl {
  font-size: 2rem;
  color: var(--c-brand-navy);
  font-weight: var(--f-weight-semibold);
  line-height: 1.6;
  margin-bottom: 24px;
}
.sec-ttl.-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    font-size: 1.5rem;
  }
}

.sec-txt {
  font-size: 1rem;
  font-weight: var(--f-weight-regular);
  line-height: 1.8;
  margin-bottom: 24px;
}
.sec-txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sec-txt {
    font-size: 0.875rem;
  }
}

.btn-link {
  display: block;
  font-size: 1.125rem;
  color: var(--c-brand-navy);
  font-weight: var(--f-weight-semibold);
  padding-bottom: 12px;
  border-bottom: solid 2px var(--c-brand-navy);
  margin-top: 48px;
  position: relative;
}
.btn-link::after {
  content: "";
  display: inline-block;
  background-image: url(../images/btn-arrow-navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: right 0.4s ease;
}
.btn-link:hover {
  opacity: 1;
  color: var(--c-base);
  border-bottom: solid 2px var(--c-base);
  letter-spacing: 0.08em;
}
.btn-link:hover::after {
  background-image: url(../images/btn-arrow-black.svg);
  right: 4px;
}

.main-ttl {
  margin-bottom: 48px;
  padding-left: 10%;
}
@media screen and (max-width: 767px) {
  .main-ttl {
    margin-bottom: 24px;
    padding-left: 4%;
  }
}
.main-ttl img {
  width: 480px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .main-ttl img {
    width: 280px;
  }
}
.main-ttl span {
  display: block;
  font-size: 0.875rem;
  color: var(--c-brand-navy);
  font-weight: var(--f-weight-semibold);
  line-height: 1;
}

.service {
  padding: 360px 0 0;
  background-color: var(--c-brand-ivory);
}
@media screen and (max-width: 767px) {
  .service {
    padding: 120px 0 0;
  }
}
.service__outer {
  position: relative;
  z-index: 1;
  height: 800px;
}
@media screen and (max-width: 767px) {
  .service__outer {
    height: auto;
  }
}
.service__content {
  position: relative;
  margin-top: -480px;
  z-index: 10;
  background-color: var(--c-white);
  width: 96%;
  padding: 120px 4% 160px 0;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .service__content {
    flex-direction: column;
    padding: 120px 0 160px 0;
  }
}
@media screen and (max-width: 767px) {
  .service__content {
    padding: 60px 4% 80px 4%;
    margin-top: 40px;
  }
}
.service__wrap {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .service__wrap {
    width: 100%;
  }
}
.service__left {
  width: 55%;
  max-width: 1000px;
  max-height: 600px;
  margin-top: -360px;
  margin-right: 2%;
  margin-left: calc(48.5% - 50vw);
  margin-bottom: 0;
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 1024px) {
  .service__left {
    width: 520px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .service__left {
    max-width: 90%;
    position: absolute;
    top: 150px;
  }
}
.service__left__pc {
  position: relative;
}
.service__left__slide {
  position: absolute;
  top: 1.8vw;
  left: 12%;
  width: 75.6%;
}
@media screen and (max-width: 1024px) {
  .service__left__slide {
    top: -220px;
    left: 50%;
    width: 392px;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .service__left__slide {
    top: 6.5%;
    width: 75.5%;
  }
}
.service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  margin-bottom: 24px;
}
.service__item {
  font-size: 0.875rem;
  text-align: center;
  font-weight: var(--f-weight-semibold);
  padding: 60px 0;
  width: 31.3%;
  margin-bottom: 3%;
  background-color: var(--c-white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .service__item {
    font-size: 0.75rem;
    width: 48.5%;
    padding: 48px 0;
  }
}

.cta {
  width: 96%;
  background-image: url(../images/cta_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 80px 4%;
}
.cta::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .cta__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cta__info {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .cta__info {
    margin-bottom: 40px;
  }
}
.cta__txt {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .cta__txt {
    font-size: 0.875rem;
  }
}
.cta__btn-group {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .cta__btn-group {
    flex-direction: row;
    gap: 4%;
  }
}
@media screen and (max-width: 767px) {
  .cta__btn-group {
    flex-direction: column;
  }
}
.cta__catch {
  font-size: 1.25rem;
  margin-bottom: 24px;
  font-weight: var(--f-weight-medium);
}
.cta__btn {
  background-color: var(--c-white);
  margin-bottom: 24px;
  border-radius: 4px;
  width: 320px;
  height: 68px;
  position: relative;
  display: flex;
  align-items: center;
}
.cta__btn::after {
  content: "";
  display: inline-block;
  background-image: url(../images/btn-arrow-white2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.cta__btn:last-child {
  margin-bottom: 0;
}
.cta__btn a {
  display: inline-block;
  padding: 0 16px;
  position: relative;
}
.cta__btn a img {
  width: 160px;
}
.cta__btn a.link-mail {
  position: relative;
  padding-left: 3.2em;
}
.cta__btn a.link-mail::before {
  content: "";
  display: inline-block;
  background-image: url(../images/link_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.price {
  padding: 360px 0 0;
  background-color: var(--c-brand-ivory);
}
@media screen and (max-width: 767px) {
  .price {
    padding: 160px 0 0;
  }
}
.price__outer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 800px;
}
@media screen and (max-width: 767px) {
  .price__outer {
    height: auto;
  }
}
.price__content {
  position: relative;
  margin-top: -480px;
  z-index: 10;
  background-color: var(--c-white);
  width: 96%;
  margin-left: auto;
  padding: 120px 0 160px 2%;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .price__content {
    flex-direction: column;
    padding: 120px 0 160px 0;
  }
}
@media screen and (max-width: 767px) {
  .price__content {
    padding: 60px 4% 80px 4%;
    margin-top: 40px;
  }
}
.price__wrap {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .price__wrap {
    width: 100%;
  }
}
.price__right {
  width: 65%;
  max-width: 1000px;
  max-height: 600px;
  margin-top: -360px;
  margin-left: 2%;
  position: sticky;
  top: 80px;
  margin-right: calc(44.5% - 50vw);
}
@media screen and (max-width: 1024px) {
  .price__right {
    width: 520px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .price__right {
    max-width: 90%;
    position: absolute;
    top: 150px;
  }
}
.price__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3%;
  margin-bottom: 24px;
}
.price__item {
  font-size: 0.875rem;
  text-align: center;
  font-weight: var(--f-weight-semibold);
  padding: 60px 0;
  width: 31.3%;
  margin-bottom: 3%;
  background-color: var(--c-white);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.flow {
  padding: 360px 0 0;
  background-color: var(--c-brand-ivory);
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 160px 0 0;
  }
}
.flow__outer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 800px;
}
@media screen and (max-width: 767px) {
  .flow__outer {
    height: auto;
  }
}
.flow .sec-ttl {
  margin-bottom: 40px;
}
.flow__content {
  position: relative;
  margin: -580px auto 0;
  z-index: 10;
  background-color: var(--c-white);
  width: 92%;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .flow__content {
    width: 94%;
  }
}
@media screen and (max-width: 767px) {
  .flow__content {
    margin-top: -150px;
    padding: 60px 4%;
  }
}
.flow__wrap {
  width: 100%;
}
.flow__list {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media screen and (max-width: 767px) {
  .flow__list {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .flow__list {
    flex-wrap: wrap;
  }
}
.flow__list::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 50%;
  width: 78%;
  height: 1px;
  border-top: 1px dashed #000;
  z-index: 2;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow__list::before {
    top: 32px;
    left: 10.5vw;
    width: 1px;
    height: 600px;
    border-left: 1px dashed #000;
  }
}
.flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 22%;
  padding: 24px 12px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .flow__item {
    justify-content: unset;
    width: 23.5%;
    padding: 24px 2%;
  }
}
@media screen and (max-width: 767px) {
  .flow__item {
    width: 90%;
    margin: 0 auto 18px;
    padding: 24px 5vw 24px 10vw;
    align-items: flex-start;
    height: 180px;
  }
}
.flow__item::before {
  content: "";
  position: absolute;
  top: 68px;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 100%;
  background-color: var(--c-brand-navy);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flow__item::before {
    top: 26px;
    left: 6.8vw;
    width: 12px;
    height: 12px;
  }
}
.flow__step {
  font-size: 0.875rem;
  font-family: var(--f-family-en);
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .flow__step {
    margin-bottom: 8px;
  }
}
.flow__ttl-sub {
  font-size: 1rem;
  color: var(--c-brand-navy);
  text-align: center;
  font-weight: var(--f-weight-semibold);
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .flow__ttl-sub {
    text-align: left;
  }
}
.flow__description {
  font-size: 0.75rem;
  text-align: justify;
  line-height: 1.65;
}
.flow .sec-txt {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.75rem;
  text-align: center;
}
.flow .cta {
  width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow .cta {
    width: 94%;
  }
}

.news {
  background-color: var(--c-brand-ivory);
  padding: 360px 0 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 160px 0 0;
  }
}
.news__outer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 720px;
}
.news__content {
  position: relative;
  margin-top: -480px;
  z-index: 10;
  background-color: var(--c-white);
  width: 96%;
  margin-left: auto;
  padding: 120px 0 180px 40px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news__content {
    flex-direction: column;
    padding: 80px 0 80px 4%;
  }
}
@media screen and (max-width: 767px) {
  .news__content {
    padding: 60px 0 60px 4%;
    margin-top: -640px;
  }
}
@media screen and (max-width: 767px) {
  .news__wrap .btn-link {
    display: none;
  }
}
.news__right {
  flex: 1;
  width: 100%;
  max-height: 600px;
  margin-top: -160px;
  margin-left: 2%;
  margin-right: calc(35% - 50vw);
}
@media screen and (max-width: 768px) {
  .news__right {
    margin-top: 80px;
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .news__right {
    margin-top: 24px;
  }
}
.news .btn-link.-sp-block {
  display: none;
}
@media screen and (max-width: 767px) {
  .news .btn-link.-sp-block {
    display: block;
    margin-right: 4%;
  }
}
.news__column {
  overflow: hidden;
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .news__column {
    margin-bottom: 24px !important;
  }
}
.news__article {
  width: 400px;
  margin-right: 40px;
}
.news__thum {
  margin-bottom: 18px;
  display: block;
  position: relative;
  overflow: hidden;
}
.news__thum:hover {
  opacity: 1;
}
.news__thum img {
  display: block;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transition: 0.8s;
}
.news__thum img:hover {
  opacity: 1;
  transform: scale(1.1);
}
.news__info {
  margin-bottom: 18px;
}
.news__info time {
  color: var(--c-brand-navy);
  font-family: var(--f-family-en);
}
.news__category {
  background-color: var(--c-brand-navy);
  font-size: 0.875rem;
  color: var(--c-white);
  padding: 0.2em 1em;
  margin-right: 1em;
  transition: 0.4s;
}
.news__category:hover {
  background-color: var(--c-base);
  opacity: 1;
}
.news__name {
  font-size: 0.875rem;
}
.news .sec-wrap {
  margin: 0 80px;
  min-width: 420px;
}
@media screen and (max-width: 1200px) {
  .news .sec-wrap {
    min-width: 360px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .news .sec-wrap {
    min-width: auto;
    width: 100%;
    padding-right: 4%;
  }
}
.news__slider-arrows {
  display: flex;
}
.news__arrow {
  width: 48px;
  padding: 0;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .news__arrow {
    width: 40px;
  }
}
.news__arrow.news__arrow--prev {
  transform: rotate(180deg);
}

.catch {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.2s linear;
}
.catch__content {
  max-width: 640px;
  margin: 0 auto;
  padding: 540px 4%;
}
.catch__logo {
  position: relative;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.catch__logo .logo-navy {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.catch__logo .logo-white {
  opacity: 0;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
}
.catch__logo.is-white .logo-navy {
  opacity: 0;
}
.catch__logo.is-white .logo-white {
  opacity: 1;
}
.catch__txt {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--c-brand-navy);
  transition: color 0.2s ease-in-out;
}
.catch__txt.is-white {
  color: var(--c-white);
}
.catch .cta {
  width: 100%;
}

/* ここから
------------------------------------------------------------*/
.line-box {
  font-size: 0.875rem;
  color: var(--c-base);
  text-align: center;
}
.line-box span {
  font-weight: var(--f-weight-semibold);
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.5);
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}/*# sourceMappingURL=style.css.map */