@charset "UTF-8";
/*--------------------------------------------------
BASE
--------------------------------------------------*/
img {
  width: 100%;
}

body.is-fixed {
  overflow: hidden;
}

/*--------------------------------------------------
UTILITY
--------------------------------------------------*/
.u-mb16 {
  margin-bottom: 16px;
}
.u-mb32 {
  margin-bottom: 32px;
}
.u-mb64 {
  margin-bottom: 64px;
}

.u-marker--red {
  background: #F9D3D4;
}
.u-marker--yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(50%, #FFFF00));
  background: linear-gradient(transparent 60%, #FFFF00 50%);
}
.u-marker--black {
  background: #000;
}

.u-fc--50 {
  font-size: 50px;
}
.u-fc--40 {
  font-size: 40px;
}
.u-fc--30 {
  font-size: 30px;
}
.u-fc--16 {
  font-size: 16px;
}

.u-fm--notoSerif {
  font-family: "Noto Serif JP", serif;
}
.u-fm--notoSans {
  font-family: "Noto Sans JP", sans-serif;
}

.u-txtWeight--600 {
  font-weight: 600;
}
.u-txtWeight--300 {
  font-weight: 300;
}
.u-txtWeight--200 {
  font-weight: 200;
}

.u-txtAlign--center {
  text-align: center;
}
.u-txtAlign--left {
  text-align: left;
}

.u-col--blue {
  color: #001E6E;
}
.u-col--yellow {
  color: #FFFF00;
}
.u-col--white {
  color: #fff;
}

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

/*--------------------------------------------------
COMPONENT
--------------------------------------------------*/
.c-container {
  padding: 0 16px 64px;
}

.c-cta {
  background: #001E6E;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  text-align: center;
  width: 100%;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-cta :hover {
  opacity: 0.7;
}

.c-field {
  margin-bottom: 16px;
}
.c-field input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 95%;
  padding: 8px;
}
.c-field textarea {
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 95%;
  padding: 8px;
}

.c-fieldset {
  margin-bottom: 16px;
}

.c-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.c-label .u-required {
  font-size: 12px;
  background: #F7E9E9;
  border: #B22222 solid 1px;
  border-radius: 4px;
  color: #B22222;
  padding: 2px 4px;
  height: 100%;
  min-width: 34px;
  text-align: center;
}
.c-label .u-option {
  font-size: 12px;
  background: #D0D0D0;
  border-radius: 4px;
  padding: 2px 4px;
  min-width: 34px;
  height: 100%;
  text-align: center;
}

.c-tabs {
  color: #fff;
}

.c-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.c-tabs__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: #121212;
  color: #fff;
  padding: 32px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  line-height: 1.3;
  min-width: 180px;
  text-align: left;
  outline-offset: 2px;
  -webkit-box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.06);
          box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.06);
  width: 50%;
}
@media screen and (max-width: 768px) {
  .c-tabs__tab {
    min-width: unset;
    min-height: 126px;
    padding: 8px 8px 16px;
  }
}

.c-tabs__tab .c-tabs__label {
  display: block;
  font-size: 16px;
  color: #fff;
  opacity: 0.9;
}

.c-tabs__label span {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .c-tabs__label span {
    font-size: 24px;
  }
}

.c-tabs__tab .c-tabs__title {
  display: block;
}

.c-tabs__title {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-tabs__title {
    font-size: 18px;
  }
}

.c-tabs__tab.is-active {
  background: #000;
  -webkit-box-shadow: inset 0 -3px 0 #00C2FF;
          box-shadow: inset 0 -3px 0 #00C2FF;
}

.c-tabs__panels {
  background: #000;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
          box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.c-tabs__panel.is-hidden {
  display: none;
}

.c-tabs__figure {
  background: #fff;
  border-radius: 8px;
  padding: 32px 16px;
  margin: 0 0 16px;
}
.c-tabs__figure.case-1 img {
  margin: 0 auto;
  max-width: 710px;
}
.c-tabs__figure.case-2 img {
  margin: 0 auto;
  max-width: 840px;
}

.c-tabs__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.c-tabs__desc {
  color: #e6e6e6;
  font-size: 16px;
  line-height: 1.8;
}

button#tab-case-1 {
  background: #333;
}
button#tab-case-1 .c-tabs__panels {
  background: #333;
}

.c-tabs__panels.bg-case-1 {
  background: #333;
}

.c-tabs__panels.bg-case-2 {
  background: #000;
}

@media (min-width: 768px) {
  .c-tabs__list {
    gap: 16px;
  }
  .c-tabs__panels {
    padding: 42px 64px;
  }
}
/*--------------------------------------------------
PROJECT
--------------------------------------------------*/
/* ---------------------------------------
 * Accordion (dl.p-ac)
 * 構造: dl.p-ac > dt.p-ac__parent + dd.p-ac__child（ペア繰り返し）
 * 仕様:
 *  - 奇数ペア(dt基準)に #f5f5ed 背景
 *  - ラベル(span)は奇数= #001e6e / 偶数= #001EC8
 *  - dd[hidden] も display:none 扱い
 *  - .abnormal / .bg-white / .bg-skyblue 対応
 * ------------------------------------- */
.p-ac {
  margin: 0 auto;
  max-width: 1050px;
  width: 100%;
  /* 共通ラッパ（dt/dd 両方に使えるクラス） */
  /* =======================
   * 見出し（dt）
   * ======================= */
  /* =======================
   * 内容（dd）
   * ======================= */
  /* =======================
   * 奇数ペア背景（dt基準で数える）
   * ======================= */
  /* 任意の詳細領域（必要時に表示切替） */
}
.p-ac__menu {
  position: relative;
  overflow: hidden;
}
.p-ac dt.p-ac__parent {
  border-top: 1px solid #ccc;
  color: #383838;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 32px 32px 32px 120px;
  position: relative;
  /* ラベル（「果実 01」など）: 奇数デフォ色 */
  /* 偶数番目 dt のラベル色変更 */
  /* +/- アイコン */
  /* 横棒 */
  /* 縦棒（開閉で消える） */
  /* 異常系（余白広め） */
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent {
    font-size: 18px;
    padding: 16px 16px 16px 96px;
  }
}
.p-ac dt.p-ac__parent.bg-white {
  background: #fff !important;
}
.p-ac dt.p-ac__parent.bg-skyblue {
  background: #e1ebf5 !important;
}
.p-ac dt.p-ac__parent span {
  color: #fff;
  font-size: 16px;
  padding: 2px 8px;
  position: absolute;
  top: 50%;
  left: 32px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #001e6e;
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent span {
    font-size: 14px;
    left: 16px;
  }
}
.p-ac dt.p-ac__parent:nth-of-type(even) span {
  background: #001EC8;
}
.p-ac dt.p-ac__parent::before, .p-ac dt.p-ac__parent::after {
  content: "";
  position: absolute;
  top: 50%;
  background: #506499;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-ac dt.p-ac__parent::before {
  right: 64px;
  width: 14px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent::before {
    right: 10px;
  }
}
.p-ac dt.p-ac__parent::after {
  right: 70px;
  width: 2px;
  height: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent::after {
    right: 16px;
  }
}
.p-ac dt.p-ac__parent.open::after {
  top: 25%;
  opacity: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.p-ac dt.p-ac__parent.abnormal {
  padding: 32px 32px 32px 180px;
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent.abnormal {
    padding: 8px 24px 8px 130px;
  }
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent.abnormal::before {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-ac dt.p-ac__parent.abnormal::after {
    right: 16px;
  }
}
.p-ac dt.p-ac__parent.abnormal span {
  font-size: 12px;
}
.p-ac dd.p-ac__child {
  display: none;
  padding: 0 32px 48px;
  /* hidden 属性サポート */
}
@media screen and (max-width: 768px) {
  .p-ac dd.p-ac__child {
    padding: 0 16px 32px;
  }
}
.p-ac dd.p-ac__child[hidden] {
  display: none;
}
.p-ac dd.p-ac__child.bg-white {
  background: #fff !important;
}
.p-ac dd.p-ac__child.bg-skyblue {
  background: #e1ebf5 !important;
}
.p-ac dd.p-ac__child--label {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-ac dd.p-ac__child--label {
    font-size: 14px;
    padding: 0 16px 32px;
  }
}
.p-ac dd.p-ac__child--label .common-checkbox__dummy-input {
  position: absolute;
  display: block;
  top: 20px;
  left: 16px;
}
.p-ac dd.p-ac__child--label .common-checkbox__label-text {
  font-size: 16px;
  margin-left: 28px;
}
.p-ac dt.p-ac__parent:nth-of-type(odd),
.p-ac dt.p-ac__parent:nth-of-type(odd) + dd.p-ac__child {
  background: #f5f5ed;
}
.p-ac__details {
  display: none;
}

/*--------------------------------------------------
LAYOUT
--------------------------------------------------*/
.l-header {
  padding: 32px;
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
}
.l-header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.l-header nav ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header nav ul li a {
    color: #fff;
    font-size: 23px;
  }
}
.l-header nav ul li a:hover {
  opacity: 0.7;
}

.l-header__toggle {
  display: none; /* PCでは非表示（SPで表示） */
  position: relative;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.l-header__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #001EC8;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease, -webkit-transform 0.25s ease;
}
.l-header__toggle span:nth-child(1) {
  top: 4px;
}
.l-header__toggle span:nth-child(2) {
  top: 16px;
}
.l-header__toggle span:nth-child(3) {
  top: 27px;
}

@media screen and (max-width: 768px) {
  .l-header {
    padding: 16px 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-header--logo img {
    width: auto;
    display: block;
    max-width: 150px;
  }
  .l-header__toggle {
    display: inline-block;
  }
  .l-header nav {
    position: fixed;
    inset: 0;
    background: #001E6E;
    display: none;
    z-index: 999;
  }
  .l-header nav::before {
    background: url("../img/logo_white.png");
    background-size: cover;
    content: "";
    position: absolute;
    top: 26px;
    left: 16px;
    width: 150px;
    height: 17px;
  }
  .l-header.is-open .l-header__toggle {
    position: fixed;
    top: 17px;
    right: 16px;
    z-index: 1000;
  }
  .l-header.is-open .l-header__toggle span {
    background: #fff;
  }
  .l-header.is-open .l-header__toggle span:nth-child(1) {
    -webkit-transform: translateY(15px) rotate(45deg);
            transform: translateY(15px) rotate(45deg);
  }
  .l-header.is-open .l-header__toggle span:nth-child(2) {
    opacity: 0;
  }
  .l-header.is-open .l-header__toggle span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  .l-header nav ul {
    position: absolute;
    inset: 0;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    justify-items: center;
    gap: 80px;
    padding: 0 24px;
  }
  .l-header nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .l-header nav li:last-child {
    margin-top: 24px;
  }
  .l-header nav li:last-child .c-btn--cta {
    font-size: 16px;
    padding: 14px 22px;
    -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  }
  .l-header.is-open nav {
    display: block;
  }
}
nav#global-nav {
  display: none;
}

@media (min-width: 768px) {
  .l-header__toggle {
    display: none;
  }
}
.l-firstView {
  background: url("../img/bg-firstView.png") no-repeat top/cover;
  background-position-y: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  min-height: 570px;
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-firstView {
    background: url("../img/bg-firstView--sp.png") no-repeat bottom/cover;
    gap: 16px;
    height: 100vh;
  }
}
.l-firstView__category {
  border: 1px solid #000;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 200;
  letter-spacing: 5px;
  padding: 8px;
  position: absolute;
  top: 50px;
  left: 16%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .l-firstView__category {
    font-size: 17px;
    position: relative;
    top: 0;
    left: 0;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
}
.l-firstView .logo {
  color: #001EC8;
  font-family: "Noto Serif JP", serif;
  font-size: 55px;
  font-weight: 600;
  letter-spacing: -2.5px;
  text-align: center;
}
.l-firstView .logo span {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .l-firstView .logo span {
    font-size: 25px;
    margin-top: -8px;
  }
}
@media screen and (max-width: 768px) {
  .l-firstView .logo {
    font-size: 30px;
    letter-spacing: -1.5px;
  }
}
.l-firstView .catch {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 85px;
  font-weight: 200;
  letter-spacing: -3.5px;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .l-firstView .catch {
    font-size: 45px;
    letter-spacing: -2.5px;
    bottom: 16px;
    padding: 0 8px;
    margin-bottom: 0;
  }
}
.l-firstView .catch span {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .l-firstView .catch span {
    font-size: 30px;
  }
}
.l-firstView p {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-firstView p {
    font-size: 15px;
  }
}
.l-firstView p span {
  background: #001EC8;
  color: #fff;
  display: inline-block;
  font-size: 35px;
}
@media screen and (max-width: 768px) {
  .l-firstView p span {
    display: none;
  }
}
.l-firstView p.bg {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-firstView p.bg {
    background: #001EC8;
    color: #fff;
    display: inline-block;
    font-size: 27px;
    padding: 8px 16px;
  }
}

.l-cta {
  background: #001E6E;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-cta {
    padding: 32px 0;
  }
}
.l-cta a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-cta a:hover {
  opacity: 0.7;
}
.l-cta a img {
  width: 100%;
  max-width: 530px;
}
@media screen and (max-width: 768px) {
  .l-cta a img {
    max-width: 200px;
  }
}

.l-section01 {
  background: #4C6199;
  padding: 64px 16px 0;
}
@media screen and (max-width: 768px) {
  .l-section01 {
    padding: 64px 24px 32px;
  }
}
.l-section01__wrap {
  margin: 0 auto;
  max-width: 1050px;
}
.l-section01__flex {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Noto Serif JP", serif;
  gap: 56px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l-section01__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.l-section01__flex .left h2 {
  font-size: 30px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .l-section01__flex .left h2 {
    font-size: 25px;
  }
}
.l-section01__flex .left p {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .l-section01__flex .left p {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .l-section01__flex .right img {
    max-width: 220px;
  }
}
.l-section01__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l-section01__img {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-section01__img picture {
  width: 100%;
}
.l-section01__img picture:nth-child(1) {
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .l-section01__img picture:nth-child(1) {
    max-width: 325px;
  }
}
.l-section01__img picture:nth-child(2) {
  max-width: 290px;
}
@media screen and (max-width: 768px) {
  .l-section01__img picture:nth-child(2) {
    max-width: 325px;
  }
}
.l-section01__img picture:nth-child(3) {
  max-width: 330px;
}
@media screen and (max-width: 768px) {
  .l-section01__img picture:nth-child(3) {
    max-width: 325px;
  }
}
.l-section01__text p {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-section01__text p {
    font-size: 13px;
    text-align: left;
  }
}
.l-section01__text h2 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 200;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-section01__text h2 {
    font-size: 25px;
    text-align: left;
  }
}
.l-section01__line img {
  width: 100%;
}

.l-section02 {
  padding: 64px 16px;
}
.l-section02__wrap {
  margin: 0 auto;
  max-width: 1290px;
}
@media screen and (max-width: 768px) {
  .l-section02 p.u-fc--30 {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .l-section02 p .u-fc--40 {
    font-size: 32px;
  }
}
.l-section02 h2 {
  border: 1px solid #001EC8;
  color: #001EC8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 600;
  padding: 32px 64px;
}
@media screen and (max-width: 768px) {
  .l-section02 h2 {
    font-size: 25px;
    padding: 24px;
    letter-spacing: 1.7px;
    line-height: 1.8;
  }
}

.l-section03 {
  background: #F5F5ED;
  padding: 64px 16px;
}
.l-section03__wrap {
  margin: 0 auto;
  max-width: 1050px;
}
.l-section03__head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 200;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-section03__head h2 {
    font-size: 25px;
    line-height: 1.6;
    letter-spacing: -1px;
  }
}
.l-section03__head h2 span {
  background: #000;
  color: #fff;
  font-size: 40px;
  padding: 16px 32px;
}
@media screen and (max-width: 768px) {
  .l-section03__head h2 span {
    display: none;
  }
}
.l-section03__head h2 div {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-section03__head h2 div {
    background: #000;
    color: #fff;
    display: inline-block;
    font-size: 30px;
    line-height: 1.6;
    padding: 16px;
    margin-top: 16px;
    text-align: center;
  }
}
.l-section03__head p {
  color: #000;
  font-size: 16px;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-section03__head p {
    font-size: 13px;
    text-align: left;
  }
}
.l-section03__box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  border-top: 1px solid #000;
  padding: 32px 16px;
}
@media screen and (max-width: 768px) {
  .l-section03__box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.8;
    gap: 32px;
    padding: 32px 0;
  }
}
.l-section03__box.abnormal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-section03__box:last-of-type {
  border-bottom: 1px solid #000;
}
.l-section03__box .left img {
  width: unset;
}
.l-section03__box .right p {
  color: #000;
  font-family: "Noto Sans Jp", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-section03__box .right p {
    font-size: 13px;
  }
}

.l-section04 {
  background: #4C6199;
  padding: 64px 16px;
}
@media screen and (max-width: 768px) {
  .l-section04 {
    padding: 40px 16px;
  }
}
.l-section04__wrap {
  margin: 0 auto;
  max-width: 1050px;
}
.l-section04__text {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}
.l-section04__text p {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 768px) {
  .l-section04__text p {
    font-size: 13px;
  }
}
.l-section04__text h2 {
  font-size: 30px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .l-section04__text h2 {
    font-size: 25px;
  }
}
.l-section04__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}
.l-section04__flex .box {
  background: #000;
  border-radius: 8px;
  padding: 16px;
  max-width: 500px;
  width: 44.572%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-section04__flex .box {
    max-width: 100%;
    width: 100%;
  }
}
.l-section04__flex .box .img10 {
  max-width: 118px;
  margin-bottom: 8px;
}
.l-section04__flex .box .img11 {
  max-width: 110px;
  margin-bottom: 8px;
}
.l-section04__flex .box .img12 {
  max-width: 119px;
  margin-bottom: 8px;
}
.l-section04__flex .box .img13 {
  max-width: 115px;
  margin-bottom: 8px;
}
.l-section04__flex .box p {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .l-section04__flex .box p {
    font-size: 13px;
  }
}
.l-section04__flex .box p:last-of-type {
  margin-bottom: 0;
}

.l-section05 {
  background: #fff;
  padding: 64px 0;
}
.l-section05__wrap {
  margin: 0 auto;
  max-width: 1050px;
  min-height: 200px;
  padding: 0 16px;
}
.l-section05__head h2 {
  color: #001E6E;
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-weight: 200;
  text-align: center;
  letter-spacing: -2.5px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l-section05__head h2 {
    font-size: 35px;
  }
}
.l-section05__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .l-section05__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-section05__flex .right {
    padding: 0 24px;
  }
}
.l-section05__flex .right p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-section05__flex .right p {
    font-size: 13px;
  }
}
.l-section05__flex .right h2 {
  color: #001EC8;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 200;
  letter-spacing: -1.5px;
}
@media screen and (max-width: 768px) {
  .l-section05__flex .right h2 {
    font-size: 35px;
  }
}

.l-section06 {
  background: #F5F5ED;
}
.l-section06__wrap {
  margin: 0 auto;
  max-width: 1050px;
  padding: 64px 16px;
}
.l-section06 p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.5px;
}
.l-section06 h2 {
  border-bottom: 1px solid #000;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: -1.5px;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.l-section06__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .l-section06__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-section06__flex .right ul li {
  color: #001E6E;
  font-size: 16px;
  font-weight: 600;
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
}
.l-section06__flex .right ul li::before {
  content: url("../img/icon-check.png");
  position: absolute;
  top: 0;
  left: 0;
}
.l-section06__link {
  text-align: center;
}
.l-section06__link picture img {
  max-width: 680px;
}
@media screen and (max-width: 768px) {
  .l-section06__link picture img {
    max-width: 310px;
  }
}

.l-contact_form__wrap {
  margin: 0 auto;
  max-width: 1000px;
  padding: 80px 16px;
}
@media screen and (max-width: 768px) {
  .l-contact_form__wrap {
    padding: 40px 16px;
  }
}

.l-footer {
  background: #001E6E;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 0 16px;
  }
}
.l-footer__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin: 0 auto;
  max-width: 1280px;
  padding: 32px 16px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .l-footer__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer nav {
  padding: 32px 0;
}
@media screen and (max-width: 768px) {
  .l-footer nav {
    display: none;
  }
}
.l-footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer nav ul li a {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer nav ul li a:hover {
  opacity: 0.7;
}
.l-footer--copy {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 32px 0;
}

.t-archive-voice__wrap {
  padding: 64px 30px;
  max-width: 1140px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.t-archive-voice__title {
  padding: 0 30px 32px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.t-archive-voice__title h1 {
  font-size: clamp(2rem, 5.74vw, 3.875rem);
  font-weight: bold;
  color: #001E6E;
}
.t-archive-voice .t-voice-title {
  background: #001E6E;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 8px 16px;
  word-wrap: break-word;
  line-height: 1.7;
  position: relative;
}
.t-archive-voice .t-voice-title a {
  color: #fff;
}

.gcbfixed-title {
  padding: 64px 16px 0;
}
@media screen and (max-width: 768px) {
  .gcbfixed-title {
    padding: 32px 16px 0;
  }
}
.gcbfixed-title .h2-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 85px;
  font-weight: 200;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gcbfixed-title .h2-ttl {
    font-size: 35px;
  }
}
.gcbfixed-title .h2-ttl span {
  color: #001EC8;
  font-weight: 600;
}
.gcbfixed-title .read {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 35px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .gcbfixed-title .read {
    font-size: 18px;
  }
}
.gcbfixed-title .read span {
  background: #001EC8;
}
.gcbfixed-title .back_heading {
  color: #e1e4f3;
  font-family: "Noto Serif JP", serif;
  font-size: 185px;
  font-weight: 700;
  line-height: 0.87;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gcbfixed-title .back_heading {
    font-size: 32px;
  }
}

.gcb-heading {
  font-size: 40px;
  font-weight: 200;
  font-family: "Noto Serif JP", serif;
  position: relative;
  max-width: 1050px;
  margin: 64px auto 32px;
  padding: 20px 24px;
  color: #fff;
  line-height: 1.4;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .gcb-heading {
    font-size: 24px;
  }
}
.gcb-heading.abnormal {
  background: #001EC8;
  max-width: 100%;
  text-align: center;
}
.gcb-heading.abnormal::before {
  display: none;
}

.gcb-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
  --tail: 20%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #001ec8), to(transparent));
  background: linear-gradient(to right, #001ec8 0 calc(100% - var(--tail)), transparent calc(100% - var(--tail)) 100%);
}
@media screen and (max-width: 1024px) {
  .gcb-heading::before {
    background: #001EC8;
  }
}

.l-about_sec01 {
  background: url("../img/img-about14.png");
  background-size: cover;
  padding: 80px 16px;
}
@media screen and (max-width: 768px) {
  .l-about_sec01 {
    padding: 40px 16px;
  }
}
.l-about_sec01__wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 64px;
  margin: 0 auto;
  max-width: 922px;
}
@media screen and (max-width: 768px) {
  .l-about_sec01__wrap {
    padding: 32px 16px;
  }
}
.l-about_sec01 h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .l-about_sec01 h3 {
    font-size: 24px;
  }
}
.l-about_sec01 p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.gcbflex-box__wrap {
  padding: 32px 16px;
  margin: 0 auto;
  max-width: 1300px;
}
.gcbflex-box__txt {
  color: #001ec8;
  font-size: 23px;
  font-weight: 600;
  margin: 0 auto 40px;
  max-width: 940px;
}
@media screen and (max-width: 768px) {
  .gcbflex-box__txt {
    font-size: 16px;
  }
}
.gcbflex-box--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1170px;
  margin-top: 0;
  margin-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .gcbflex-box--flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
  }
}
.gcbflex-box--flex.left {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .gcbflex-box--flex.left .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .gcbflex-box--flex.left .txt {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.gcbflex-box--flex:last-of-type {
  margin-bottom: 0;
}
.gcbflex-box--flex .img {
  width: 100%;
  max-width: 445px;
}
.gcbflex-box--flex .txt {
  width: 100%;
}
.gcbflex-box--flex .txt h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 200;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .gcbflex-box--flex .txt h3 {
    font-size: 20px;
  }
}
.gcbflex-box--flex .txt p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.8;
}
.gcbflex-box--flex .txt.abnormal {
  margin: 0 auto 64px;
  max-width: 1050px;
}
.gcbflex-box--flex.abnormal .h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 76px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .gcbflex-box--flex.abnormal .h3 {
    font-size: 20px;
  }
}
.gcbflex-box--flex.abnormal .h3 .cube {
  background: #001EC8;
  color: #fff;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 16px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gcbflex-box--flex.abnormal .h3 .cube div {
  font-size: 16px;
}

.l-about_sec02 {
  background: #f5f5ed;
  padding-top: 10px;
}
.l-about_sec02__wrap {
  margin: 0 auto;
  max-width: 1290px;
  width: 100%;
}
.l-about_sec02__tabBox {
  border: 2px solid #001E6E;
}
.l-about_sec02__tabBox .title {
  background: #001E6E;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  padding: 8px 120px;
}
@media screen and (max-width: 768px) {
  .l-about_sec02__tabBox .title {
    padding: 8px 16px;
  }
}
.l-about_sec02__tabBox .content {
  background: #fff;
  padding: 64px 120px;
}
@media screen and (max-width: 768px) {
  .l-about_sec02__tabBox .content {
    padding: 24px 16px;
  }
}
.l-about_sec02__box {
  background: #f5f5ed;
  padding: 42px 64px;
  margin: 0 auto;
  max-width: 1050px;
}
@media screen and (max-width: 768px) {
  .l-about_sec02__box {
    padding: 24px;
  }
}
.l-about_sec02__box p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.8;
}
.l-about_sec02__box--img {
  background: #fff;
  padding: 32px 16px;
  margin: 0 0 32px;
  text-align: center;
}
.l-about_sec02__box--img img {
  margin: 0 auto;
  max-width: 830px;
}
.l-about_sec02__box.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l-about_sec02__box.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-about_sec02__box.flex .item {
  width: 100%;
}
.l-about_sec02__box.flex .item h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
  min-height: 100px;
  vertical-align: middle;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*--------------------------------------------------
Service
--------------------------------------------------*/
.l-service_sec01 {
  background: #001e6e;
  padding: 64px 16px;
}
.l-service_sec01__wrap {
  margin: 0 auto;
  max-width: 1050px;
}
.l-service_sec01 .start_sentence {
  color: #fff;
  font-size: 23px;
}
@media screen and (max-width: 768px) {
  .l-service_sec01 .start_sentence {
    font-size: 18px;
  }
}
.l-service_sec01__box {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
}
@media screen and (max-width: 768px) {
  .l-service_sec01__box {
    padding: 16px;
  }
}
.l-service_sec01__box .title {
  background: #001ec8;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 23px;
  gap: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .l-service_sec01__box .title {
    font-size: 18px;
  }
}
.l-service_sec01__box .title.bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#a08059), color-stop(#efd4a2), color-stop(#a08059), to(#a08059));
  background: linear-gradient(180deg, #a08059, #efd4a2, #a08059, #a08059);
}
.l-service_sec01__box .title span {
  background: #001e6e;
  padding: 8px 12px;
  vertical-align: middle;
}
.l-service_sec01__box .title p {
  padding: 8px;
}
.l-service_sec01__box .content {
  padding-left: 64px;
}
@media screen and (max-width: 768px) {
  .l-service_sec01__box .content {
    padding-left: 0;
  }
}
.l-service_sec01__box .content p {
  font-size: 16px;
}

.l-service_sec02__container {
  padding: 0 16px 64px;
}
.l-service_sec02__wrap {
  margin: 0 auto;
  max-width: 1290px;
  width: 100%;
}
.l-service_sec02__text {
  background: #f5f5ed;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  padding: 64px 32px;
}
.l-service_sec02__text--inner {
  margin: 0 auto;
  max-width: 1050px;
}
.l-service_sec02__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 600;
}

.l-service_sec03 {
  background: #f5f5ed;
  padding-top: 64px;
}
.l-service_sec03__container {
  padding: 0 16px 64px;
}
.l-service_sec03__wrap {
  margin: 0 auto;
  max-width: 1050px;
  width: 100%;
}
.l-service_sec03 p {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 32px;
}

.l-service_sec04__container {
  padding: 0 16px 64px;
}
.l-service_sec04__wrap {
  margin: 0 auto;
  max-width: 1050px;
}

.l-service_sec05 {
  background: #e1ebf5;
  padding: 16px 0 64px;
}
.l-service_sec05__container {
  padding: 0 16px 64px;
}
.l-service_sec05__wrap {
  margin: 0 auto;
  max-width: 1290px;
}
.l-service_sec05__text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 1050px;
}
.l-service_sec05__text p:nth-child(1) span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 600;
}
.l-service_sec05__text p:nth-child(3) {
  font-size: 23px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .l-service_sec05__text p:nth-child(3) {
    font-size: 18px;
  }
}

.l-service_sec06__wrap {
  margin: 0 auto;
  max-width: 1290px;
}

.l-service_sec07 {
  background: #f5f5ed;
  padding-top: 16px;
}

.l-service_sec08__container {
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .l-service_sec08__container {
    padding: 32px 16px;
  }
}
.l-service_sec08 .gcbflex-box--flex {
  max-width: 1365px;
}
.l-service_sec08 .gcbflex-box--flex .img {
  max-width: 640px;
}
.l-service_sec08__wrap {
  margin: 0 auto;
  max-width: 1050px;
}

.l-service_cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url("../img/img-service15.png") no-repeat top/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .l-service_cta {
    min-height: 300px;
  }
}
.l-service_cta a img {
  max-width: 650px;
}

/*--------------------------------------------------
Contact
--------------------------------------------------*/
.l-contact {
  background: #e1e4f3;
  padding-top: 1px;
}
.l-contact .c-container {
  padding: 0 16px 0 16px;
}
.l-contact__wrap {
  margin: 0 auto;
  max-width: 1050px;
}
.l-contact__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .l-contact__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-contact__flex:nth-last-child(2) {
  margin-bottom: 64px;
}
.l-contact__flex .text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.8;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-contact__flex .text {
    font-size: 13px;
  }
}
.l-contact__flex .img {
  width: 100%;
  max-width: 490px;
}
.l-contact__text {
  text-align: center;
}
.l-contact__text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 16px;
}
.l-contact__text h4 {
  color: #001ec8;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 16px;
}
.l-contact__text p {
  font-family: "Noto Serif JP", serif;
}
.l-contact__text p:first-child {
  font-size: 16px;
}
.l-contact__text p:last-child {
  font-size: 21px;
}