@charset "UTF-8";
/*!
Theme Name: m_atc_2025
Theme URI: http://underscores.me/
Author: Heads.Inc
Author URI: -------
Description: m_atc_2025 Theme
Version: 1.0.0
License: GNU General Public License v2 or later
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　直接編集しないように注意してください。a
--------------------------------------------------------------- */
/* 基本設定
============================================================================ */
/* base > color
============================================================================================================ */
/* 基本色一覧*/
/*白*/
/*黒*/
/*灰色*/
/*紺色*/
/*黄*/
/*赤*/
/*青*/
:root {
  --color-primary: #19598B;
  --color-yellow: #fdd000;
  --color-red: #B60000;
  --color-recruit: #d6e3ff;
}

:root {
  --drop-shadow: drop-shadow(
    0 0 6px color-mix(in srgb, black 55%, transparent)
  );
  --fontFamily-en: "Oswald", sans-serif;
  font-family: var(--fontFamily-en);
  --width-inner: 1060;
  --leading-trim: calc((1em - 1lh) / 2);
  --gutter: max(20px, calc(20 / 375 * 100%));
}

/* mixin
============================================================================ */
/* フォントサイズをremに変換するmixin ($base-font-sizeはbase/_base.scssに)*/
/* フレックスボックス */
/* SCSS メディアクエリ */
/*最後の要素の余白リセット*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  font-size: 0;
  backface-visibility: hidden;
}

/*-------------------------------------------------------------
display指定class

【only】
.pc-only / .tab-only / .pad-only / .sp-only /.se-only
.pctab-only / .tabsp-only / .sp-none

-------------------------------------------------------------*/
.pc-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only {
    display: none !important;
  }
}
.pc-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only--flex {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only {
    display: none !important;
  }
}
.tab-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only--flex {
    display: none !important;
  }
}

.pad-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only {
    display: none !important;
  }
}
.pad-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only--flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .sp-only {
    display: block !important;
  }
}
.sp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .sp-only--flex {
    display: flex !important;
  }
}

.se-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only {
    display: block !important;
  }
}
.se-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only--flex {
    display: flex !important;
  }
}

.pctab-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pctab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only {
    display: none !important;
  }
}
.pctab-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pctab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only--flex {
    display: none !important;
  }
}

.tabsp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only {
    display: block !important;
  }
}
.tabsp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 320px) {
  .sp-none {
    display: none;
  }
}

/* 共通部分
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

ul,
ol,
dl,
p {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  /* ress.cssだとunderlineがつくのを阻止 */
  text-decoration: none;
}

select {
  color: #333333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1 !important;
  position: relative;
}

table {
  table-layout: fixed;
  /* ress.css用 */
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

small {
  font-size: 100%;
}
html,
body {
  width: 100%;
  line-height: 2;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0em;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  -webkit-print-color-adjust: exact;
  overflow-x: hidden;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
@media (max-width: 767px) {
  html,
  body {
    line-height: 2;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

body {
  opacity: 0;
  font-weight: 500;
}
body.loaded {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 1s;
}

.font-en {
  font-weight: 400;
  font-family: var(--fontFamily-en);
}

a {
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  -webkit-transition: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition: 0.6s;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

#Wrapper {
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  min-height: 100vh;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 767px) {
  #Wrapper {
    border: none;
  }
}

#Footer {
  margin-top: auto;
  height: 100%;
}

img.object_fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

.equalspace-1em {
  letter-spacing: 1em;
  text-indent: 1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

.youtube-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* base > heading
============================================================================================================ */
/* 基本設定 */
img.size-auto,
img.size-large,
img.size-full,
img.size-medium {
  max-width: 100%;
  height: auto;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 15px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 15px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  background: #f1f1f1;
  border: none;
  border-radius: 0;
  color: #888;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
  padding: 4px;
  text-align: center;
}

.wp-caption img {
  margin: 5px;
}

.wp-caption p.wp-caption-text {
  margin: 0 0 4px;
}

.wp-smiley {
  margin: 0;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #398f14;
  padding: 50px 10px;
  text-align: center;
  font-weight: bold;
  margin: 50px 0;
}

.comments-area {
  margin: 0 auto 60px;
}

.comments-area > :last-child {
  margin-bottom: 0;
}

.comment-list + .comment-respond {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.comment-list + .comment-respond,
.comment-navigation + .comment-respond {
  padding-top: 1.6em;
}

.comments-title,
.comment-reply-title {
  border-top: 1px solid red;
  border-bottom: 1px solid red;
  padding: 12px 6px;
  font-weight: bold;
}

.comments-title {
  margin-bottom: 1.3333em;
}

.comment-list {
  list-style: none;
  margin: 0;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  padding: 1.6em 0;
}

.comment-list .children {
  list-style: none;
  margin: 0;
}

.comment-list .children > li {
  padding-left: 0.8em;
}

.comment-author {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  margin-bottom: 0.4em;
}

.comment-author a:hover {
  border-bottom: 1px solid #707070;
  border-bottom: 1px solid rgba(51, 51, 51, 0.7);
}

.comment-author .avatar {
  float: left;
  height: 24px;
  margin-right: 0.8em;
  width: 24px;
}

.comment-metadata,
.pingback .edit-link {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.comment-metadata a,
.pingback .edit-link a {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
}

.comment-metadata a:hover,
.pingback .edit-link a:hover {
  border-bottom: 1px solid #333;
}

.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .edit-link a:hover,
.pingback .edit-link a:focus {
  color: #333;
}

.comment-metadata {
  margin-bottom: 1.6em;
}

.comment-metadata .edit-link {
  margin-left: 1em;
}

.pingback .edit-link {
  margin-left: 1em;
}

.pingback .edit-link:before {
  top: 5px;
}

.comment-content ul,
.comment-content ol {
  margin: 0 0 1.6em 1.3333em;
}

.comment-content li > ul,
.comment-content li > ol {
  margin-bottom: 0;
}

.comment-content > :last-child {
  margin-bottom: 0;
}

.comment-list .reply {
  font-size: 12px;
}

.comment-list .reply a {
  border: 1px solid #eaeaea;
  border: 1px solid rgba(51, 51, 51, 0.1);
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-top: 2em;
  padding: 0.4167em 0.8333em;
  text-transform: uppercase;
}

.comment-list .reply a:hover,
.comment-list .reply a:focus {
  border-color: #333;
  color: #333;
  outline: 0;
}

.comment-form {
  padding-top: 1.6em;
}

.comment-form label {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.comment-form #comment,
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url] {
  width: 100%;
  max-width: 100%;
  border-radius: 6px;
  padding: 3px;
  border: 1px solid #ccc;
}

.comment-form input[type=submit] {
  margin: 20px auto;
}

.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 2em;
}

.logged-in-as a:hover {
  border-bottom: 1px solid #333;
}

.no-comments {
  border-top: 1px solid #eaeaea;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-weight: 700;
  padding-top: 1.6em;
}

.comment-navigation + .no-comments {
  border-top: 0;
}

.form-allowed-tags code {
  font-family: monospace;
}

.form-submit {
  margin-bottom: 0;
}

/*.required {
	color: #c0392b;
}*/
.comment-reply-title small {
  font-size: 100%;
}

.comment-reply-title small a {
  border: 0;
  float: right;
  height: 32px;
  overflow: hidden;
  width: 26px;
}

.comment-reply-title small a:before {
  content: "\f405";
  font-size: 32px;
  position: relative;
  top: -3px;
}

.comment-form #wp-comment-cookies-consent {
  margin: 0 10px 0 0;
}

.comment-form .comment-form-cookies-consent label {
  display: inline;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}

/* layout
============================================================================ */
/* layout > common
============================================================================================================ */
.common-main {
  width: 100%;
  height: 100%;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .common-main {
    margin-top: 20vw;
  }
}

.home .common-main {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .home .common-main {
    padding-bottom: 32vw;
  }
}

/* layout > header
============================================================================== */
/* layout > header
============================================================================== */
.common-header {
  width: 100%;
  height: 82px;
  background: white;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  color: white;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .common-header {
    height: 20vw;
  }
}
.common-header__inner {
  position: relative;
  max-width: 96.875vw;
  width: 100%;
  height: 100%;
  padding-left: 0.78125vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 38px;
       column-gap: 38px;
}
@media screen and (max-width: 1280px) {
  .common-header__inner {
    -moz-column-gap: 2.96875vw;
         column-gap: 2.96875vw;
  }
}
@media (max-width: 1024px) {
  .common-header__inner {
    padding: 0 20px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (max-width: 767px) {
  .common-header__inner {
    padding: 0 5.3333333333vw;
  }
}
@media (max-width: 1024px) {
  .common-header__inner:before {
    content: "";
    width: 100vw;
    background: #2C628C;
    height: 101%;
    left: 192px;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
  }
}
@media (max-width: 767px) {
  .common-header__inner:before {
    width: 66.1333333333vw;
    left: 38.9333333333vw;
  }
}
.common-header__logo {
  min-width: 131px;
  position: relative;
  font-size: 0;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .common-header__logo {
    min-width: 10.234375vw;
  }
}
@media (max-width: 767px) {
  .common-header__logo {
    min-width: auto;
    width: 24.2666666667vw;
  }
}
.common-header__logo a {
  display: block;
  position: relative;
  width: 100%;
}
.common-header__toggle {
  display: none;
}
@media (max-width: 1024px) {
  .common-header__toggle {
    color: #19598B;
    background: white;
    width: 55px;
    height: 55px;
    padding-top: 2px;
    right: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .common-header__toggle {
    width: 14.6666666667vw;
    height: 14.6666666667vw;
    padding-top: 0.5333333333vw;
    right: 5.3333333333vw;
    border-radius: 2.1333333333vw;
  }
}
@media (max-width: 1024px) {
  .common-header__toggle > span.icn {
    width: 25px;
    height: 19px;
    display: block;
    position: relative;
  }
}
@media (max-width: 767px) {
  .common-header__toggle > span.icn {
    width: 6.6666666667vw;
    height: 5.0666666667vw;
  }
}
@media (max-width: 1024px) {
  .common-header__toggle > span.icn > span {
    background: #19598B;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: 0.4s;
    will-change: transform;
  }
}
@media (max-width: 767px) {
  .common-header__toggle > span.icn > span {
    height: 0.5333333333vw;
  }
}
.common-header__toggle > span.icn > span:first-of-type {
  top: 0;
}
.common-header__toggle > span.icn > span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.common-header__toggle > span.icn > span:last-of-type {
  bottom: 0;
}
@media (max-width: 1024px) {
  .common-header__toggle > span.txt {
    font-size: 10px;
    line-height: 1;
    display: block;
    margin-top: 5px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .common-header__toggle > span.txt {
    font-size: 5px;
    font-size: 2.6666666667vw;
    margin-top: 1.3333333333vw;
  }
}
.common-header__toggle > span.txt:before {
  content: "MENU";
  opacity: 1;
  transition: opacity 0.4s;
}
.common-header__toggle > span.txt:after {
  content: "CLOSE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.common-header__toggle.open > span.icn > span:first-of-type {
  top: 50%;
  transform: translateY(30%) rotate(-38deg);
}
.common-header__toggle.open > span.icn > span:nth-of-type(2) {
  opacity: 0;
}
.common-header__toggle.open > span.icn > span:last-of-type {
  bottom: 50%;
  transform: translateY(130%) rotate(38deg);
}
.common-header__toggle.open > span.txt:before {
  opacity: 0;
}
.common-header__toggle.open > span.txt:after {
  opacity: 1;
}
.common-header__switch {
  background: white;
  min-width: 115px;
  height: 32px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .common-header__switch {
    font-size: 1.09375vw;
    min-width: 8.984375vw;
    height: 2.5vw;
  }
}
@media (max-width: 1024px) {
  .common-header__switch {
    min-width: 215px;
    height: 32px;
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .common-header__switch {
    min-width: 57.3333333333vw;
    height: 8.5333333333vw;
    border-radius: 6.4vw;
  }
}
.common-header__switch > a {
  color: #909090;
  height: 100%;
  min-width: 65px;
  padding-bottom: 1px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .common-header__switch > a {
    min-width: 5.078125vw;
  }
}
@media (max-width: 1024px) {
  .common-header__switch > a {
    min-width: 122px;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .common-header__switch > a {
    font-size: 7px;
    font-size: 3.7333333333vw;
    min-width: 32.5333333333vw;
  }
}
.common-header__switch > a:before {
  content: "";
  border-color: transparent transparent #FDD000 transparent;
  border-width: 0px 0px 32px 16px;
  position: absolute;
  opacity: 0;
}
@media (max-width: 1024px) {
  .common-header__switch > a:before {
    border-width: 0px 0px 32px 32px;
  }
}
@media (max-width: 767px) {
  .common-header__switch > a:before {
    border-width: 0px 0px 8.5333333333vw 8.5333333333vw;
  }
}
.common-header__switch > a:first-of-type {
  padding-left: 18px;
}
@media screen and (max-width: 1280px) {
  .common-header__switch > a:first-of-type {
    padding-left: 1.40625vw;
  }
}
@media (max-width: 1024px) {
  .common-header__switch > a:first-of-type {
    padding-left: 46px;
  }
}
@media (max-width: 767px) {
  .common-header__switch > a:first-of-type {
    padding-left: 12.2666666667vw;
  }
}
.common-header__switch > a:first-of-type:before {
  left: calc(100% - 1px);
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .common-header__switch > a:first-of-type:before {
    left: calc(100% - 0.2666666667vw);
  }
}
.common-header__switch > a:last-of-type {
  padding-right: 18px;
  justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  .common-header__switch > a:last-of-type {
    padding-right: 1.40625vw;
  }
}
@media (max-width: 1024px) {
  .common-header__switch > a:last-of-type {
    padding-right: 46px;
  }
}
@media (max-width: 767px) {
  .common-header__switch > a:last-of-type {
    padding-right: 12.2666666667vw;
  }
}
.common-header__switch > a:last-of-type:before {
  right: calc(100% - 1px);
}
@media (max-width: 767px) {
  .common-header__switch > a:last-of-type:before {
    right: calc(100% - 0.2666666667vw);
  }
}
.common-header__switch > a.is-current {
  color: #19598B;
  background: #FDD000;
  min-width: 50px;
}
@media screen and (max-width: 1280px) {
  .common-header__switch > a.is-current {
    min-width: 3.90625vw;
  }
}
@media (max-width: 1024px) {
  .common-header__switch > a.is-current {
    min-width: 93px;
  }
}
@media (max-width: 767px) {
  .common-header__switch > a.is-current {
    min-width: 24.8vw;
  }
}
.common-header__switch > a.is-current:first-of-type:before {
  opacity: 1;
}
.common-header__switch > a.is-current:last-of-type:before {
  opacity: 1;
}
.common-header__switch > a:hover {
  opacity: 1;
}
.common-header__nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 39px;
       column-gap: 39px;
}
@media screen and (max-width: 1280px) {
  .common-header__nav {
    -moz-column-gap: 3.046875vw;
         column-gap: 3.046875vw;
  }
}
@media (max-width: 1024px) {
  .common-header__nav {
    width: 100vw;
    height: calc(100vh - 82px);
    padding: 120px 80px;
    background: #2C628C;
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .common-header__nav {
    height: calc(100vh - 20vw);
    padding: 10.6666666667vw 21.3333333333vw;
  }
}
.common-header__navInner {
  background: #2C628C;
  width: 100%;
  height: 100%;
  padding: 0 1.640625vw 0 1.09375vw;
  margin-left: 1.25vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .common-header__navInner {
    max-width: 68.671875vw;
  }
}
@media (max-width: 1024px) {
  .common-header__navInner {
    max-width: none;
    width: 100%;
    height: auto;
    padding: 0;
    margin-left: 0;
    justify-content: flex-start;
    flex-direction: column;
  }
}
.common-header__navInner:before {
  content: "";
  border-color: transparent transparent #2C628C transparent;
  border-width: 0px 0px 82px 39px;
  position: absolute;
  top: 0;
  right: calc(100% - 1px);
}
@media (max-width: 1024px) {
  .common-header__navInner:before {
    display: none;
  }
}
.common-header__navInner:after {
  content: "";
  border-color: transparent transparent #2C628C transparent;
  border-width: 0px 0px 82px 39px;
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .common-header__navInner:after {
    display: none;
  }
}
.common-header__menu {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 1280px) {
  .common-header__menu {
    -moz-column-gap: 1.875vw;
         column-gap: 1.875vw;
  }
}
@media (max-width: 1024px) {
  .common-header__menu {
    text-align: center;
    padding-top: 79px;
    flex-direction: column;
    align-items: center;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 35px;
  }
}
@media (max-width: 767px) {
  .common-header__menu {
    padding-top: 21.0666666667vw;
    row-gap: 9.3333333333vw;
  }
}
.common-header__menu li a {
  letter-spacing: 0em;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .common-header__menu li a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 1024px) {
  .common-header__menu li a {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}
@media (max-width: 767px) {
  .common-header__menu li a {
    font-size: 9px;
    font-size: 4.8vw;
  }
}
.common-header__menu li:last-of-type {
  margin-right: 0;
}
.common-header__btn {
  color: #19598B;
  background: #FDD000;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  min-width: 128px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  padding: 8px 0;
  border-radius: 17px;
}
@media screen and (max-width: 1280px) {
  .common-header__btn {
    min-width: 10vw;
    padding: 0.625vw 0;
  }
}
@media (max-width: 1024px) {
  .common-header__btn {
    font-size: 18px;
    line-height: 1.2222222222;
    min-width: auto;
    width: 180px;
    padding: 7px 0 9px;
    margin: 76px auto 0;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .common-header__btn {
    font-size: 9px;
    font-size: 4.8vw;
    width: 48vw;
    padding: 1.8666666667vw 0 2.4vw;
    margin-top: 20.2666666667vw;
    border-radius: 5.3333333333vw;
  }
}

/*  layout > footer
============================================================================================================ */
/*  layout > footer
============================================================================================================ */
.common-footer {
  position: relative;
  background-color: white;
}
.common-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .common-footer__inner {
    flex-direction: column-reverse;
  }
}
.common-footer__left {
  width: 317px;
  padding: 72px 40px;
}
@media (max-width: 1024px) {
  .common-footer__left {
    width: 30.95703125vw;
    padding: 7.03125vw 3.90625vw;
  }
}
@media (max-width: 767px) {
  .common-footer__left {
    width: 100%;
    padding: 5.3333333333vw;
  }
}
.common-footer__left .logo {
  line-height: 1;
  width: 130px;
}
@media (max-width: 767px) {
  .common-footer__left .logo {
    width: 40vw;
  }
}
.common-footer__left > address {
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0em;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .common-footer__left > address {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    margin-top: 4.2666666667vw;
  }
}
.common-footer__left .contact {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .common-footer__left .contact {
    margin-top: 2.9333333333vw;
  }
}
.common-footer__left .contact .tel {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .common-footer__left .contact .tel {
    font-size: 9px;
    font-size: 4.8vw;
    letter-spacing: 0.014em;
  }
}
.common-footer__left .contact .mail {
  color: white;
  background: #19598B;
  font-size: 16px;
  line-height: 1.4375;
  font-weight: 600;
  letter-spacing: 0em;
  width: 179px;
  height: 36px;
  padding-bottom: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-radius: 18px;
}
@media (max-width: 767px) {
  .common-footer__left .contact .mail {
    font-size: 8px;
    font-size: 4.2666666667vw;
    width: 47.7333333333vw;
    height: 9.6vw;
    padding-bottom: 0.2666666667vw;
    -moz-column-gap: 2.1333333333vw;
         column-gap: 2.1333333333vw;
    border-radius: 4.8vw;
  }
}
.common-footer__left .contact .mail > span {
  line-height: 1;
  width: 29px;
  height: 19px;
  margin-top: 2px;
  display: block;
}
@media (max-width: 767px) {
  .common-footer__left .contact .mail > span {
    width: 7.7333333333vw;
    height: 5.0666666667vw;
    margin-top: 0.5333333333vw;
  }
}
.common-footer__left .contact .mail > span svg {
  width: 100%;
  height: 100%;
  display: block;
}
.common-footer__left .contact .mail > span svg path {
  fill: transparent;
}
.common-footer__left .info {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .common-footer__left .info {
    font-size: 7px;
    font-size: 3.7333333333vw;
    letter-spacing: -0.07em;
    margin-top: 3.4666666667vw;
  }
}
.common-footer__left .info span {
  display: block;
}
.common-footer__right {
  color: white;
  background: #031c52;
  width: calc(100% - 317px);
  padding: 40px 20px 20px 80px;
}
@media (max-width: 1024px) {
  .common-footer__right {
    width: calc(100% - 30.95703125vw);
    padding: 3.90625vw 1.953125vw 6.25vw 3.90625vw;
  }
}
@media (max-width: 767px) {
  .common-footer__right {
    width: 100%;
    padding: 10.4vw 5.3333333333vw 5.3333333333vw;
  }
}
.common-footer__right > nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 1024px) {
  .common-footer__right > nav {
    width: 420px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .common-footer__right > nav {
    width: auto;
    -moz-column-gap: 10.6666666667vw;
         column-gap: 10.6666666667vw;
    row-gap: 10.1333333333vw;
  }
}
.common-footer__right > nav > ul {
  width: 120px;
}
@media (max-width: 767px) {
  .common-footer__right > nav > ul {
    width: 32vw;
  }
}
.common-footer__right > nav > ul > li {
  font-size: 16px;
  line-height: 1.4375;
  letter-spacing: 0em;
  width: 100%;
  padding-bottom: 6px;
  margin-bottom: 18px;
  border-bottom: solid 2px #FDD000;
}
@media (max-width: 767px) {
  .common-footer__right > nav > ul > li {
    font-size: 8px;
    font-size: 4.2666666667vw;
    padding-bottom: 0.8vw;
    margin-bottom: 3.7333333333vw;
    border-bottom-width: 0.5333333333vw;
  }
}
.common-footer__right > nav > ul > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 17px;
}
@media (max-width: 767px) {
  .common-footer__right > nav > ul > ul {
    row-gap: 3.4666666667vw;
  }
}
.common-footer__right > nav > ul > ul > li {
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .common-footer__right > nav > ul > ul > li {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.common-footer__right > nav > ul > ul > li a.external {
  position: relative;
}
.common-footer__right > nav > ul > ul > li a.external::before {
  content: "";
  display: block;
  width: 1.25em;
  aspect-ratio: 21/21;
  background-image: url(img/page/icn_external_w.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
}
.common-footer__right .bottom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: stretch;
  flex-direction: row;
  margin-top: 92px;
}
@media (max-width: 767px) {
  .common-footer__right .bottom {
    margin-top: 10.4vw;
  }
}
.common-footer__right .bottom > nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 1024px) {
  .common-footer__right .bottom > nav > ul {
    -moz-column-gap: 2.734375vw;
         column-gap: 2.734375vw;
  }
}
@media (max-width: 767px) {
  .common-footer__right .bottom > nav > ul {
    -moz-column-gap: 5.3333333333vw;
         column-gap: 5.3333333333vw;
  }
}
.common-footer__right .bottom > nav > ul > li {
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .common-footer__right .bottom > nav > ul > li {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.common-footer > small {
  color: white;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0em;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 19px;
}
@media (max-width: 1024px) {
  .common-footer > small {
    right: 1.953125vw;
    bottom: 1.85546875vw;
  }
}
@media (max-width: 767px) {
  .common-footer > small {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    text-align: center;
    background: #19598B;
    padding: 4.8vw 0;
    position: relative;
    right: auto;
    bottom: auto;
  }
}

/* layout > front page （TOP,HOME）
============================================================================================================ */
/* layout > archive
============================================================================================================ */
/* layout > single
============================================================================================================ */
/*  layout > container
============================================================================================================ */
.l-container--1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .l-container--1000 {
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .l-container--1000 {
    max-width: 184vw;
  }
}

/* layout > contact
============================================================================================================ */
.page-contact__intro {
  padding-top: 80px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  font-size: 16px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-contact__intro {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.page-contact__introParts {
  display: inline-block;
}
@media (max-width: 767px) {
  .page-contact__introParts:nth-of-type(3) {
    margin-top: 8px;
  }
}

.page-contact__body {
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: white;
}
@media (max-width: 767px) {
  .page-contact__body {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.page-contact__form {
  margin-left: auto;
  margin-right: auto;
  --color-cf7-input: white;
  --color-cf7-bg: #f1f1f1;
  background-color: #F1F1F1;
  padding-top: 40px;
  padding-bottom: 60px;
}

.contact-thanks {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 120px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .contact-thanks {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.contact-thanks__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.contact-thanks__heading {
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .contact-thanks__heading {
    font-size: 24px;
  }
}

.contact-thanks__txt {
  margin-top: 50px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-thanks__txt {
    margin-top: 25px;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-align: left;
  }
}

.contact-thanks__btn {
  margin-top: 40px;
  display: grid;
  place-items: center;
}

.page-contact__form .tab {
  width: 972px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .page-contact__form .tab {
    width: 85.2631578947vw;
  }
}
@media (max-width: 1024px) {
  .page-contact__form .tab {
    width: 740px;
  }
}
@media (max-width: 767px) {
  .page-contact__form .tab {
    width: 85.8666666667vw;
  }
}
.page-contact__form .tab .wpcf7-form-control-wrap {
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
}
@media screen and (max-width: 1140px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio {
    -moz-column-gap: 1.4035087719vw;
         column-gap: 1.4035087719vw;
    row-gap: 1.0526315789vw;
  }
}
@media (max-width: 1024px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio {
    -moz-column-gap: 13px;
         column-gap: 13px;
    row-gap: 11px;
  }
}
@media (max-width: 767px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio {
    -moz-column-gap: 2.1333333333vw;
         column-gap: 2.1333333333vw;
    row-gap: 2.6666666667vw;
  }
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  width: 231px;
  margin: 0;
}
@media screen and (max-width: 1140px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 20.2631578947vw;
  }
}
@media (max-width: 1024px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 175px;
  }
}
@media (max-width: 767px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 41.8666666667vw;
  }
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item.is-checked > label {
  color: white;
  background: #19598B;
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item > label {
  background: white;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s;
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    font-weight: 500;
    line-height: 1.2307692308;
    padding: 2.1333333333vw;
  }
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label:before {
  display: none !important;
}
.page-contact__form .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label:after {
  display: none !important;
}
.page-contact__form .wpcf7-form {
  background: transparent;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
.page-contact__form .wpcf7-form table {
  width: 620px;
  padding-top: 58px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form table {
    width: 78.6666666667vw;
    padding-top: 10.6666666667vw;
  }
}
.page-contact__form .wpcf7-form table tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 29px;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form table tbody {
    row-gap: 6.1333333333vw;
  }
}
.page-contact__form .wpcf7-form table tbody tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 8px;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form table tbody tr {
    row-gap: 2.6666666667vw;
  }
}
.page-contact__form .wpcf7-form table tbody tr th {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-bottom: solid 1px #909090;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form table tbody tr th {
    font-size: 7px;
    font-size: 3.7333333333vw;
    line-height: 1.2142857143;
    padding-bottom: 2.6666666667vw;
    -moz-column-gap: 1.0666666667vw;
         column-gap: 1.0666666667vw;
    border-bottom-width: 0.2666666667vw;
  }
}
.page-contact__form .wpcf7-form table tbody tr th > span {
  font-size: 14px;
  line-height: 1.4285714286;
  color: #B60000;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form table tbody tr th > span {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.page-contact__form .wpcf7-form-control-wrap {
  line-height: 1;
  display: block;
}
.page-contact__form .wpcf7-form input[type=text],
.page-contact__form .wpcf7-form input[type=email],
.page-contact__form .wpcf7-form input[type=date],
.page-contact__form .wpcf7-form input[type=tel],
.page-contact__form .wpcf7-form select,
.page-contact__form .wpcf7-form textarea {
  background: white;
}
.page-contact__form .wpcf7-form .wpcf7-radio {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 29px;
       column-gap: 29px;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-radio {
    align-items: stretch;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 2.6666666667vw;
  }
}
.page-contact__form .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin-left: auto;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
  }
}
.page-contact__form .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  line-height: 1;
  display: block;
  cursor: pointer;
}
.page-contact__form .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-size: 18px;
  line-height: 1.4444444444;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.page-contact__form .wpcf7-form .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.page-contact__form .wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:before {
  content: "";
  background: white;
  border-radius: 50%;
  border: 2px solid #909090;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:before {
    width: 6.4vw;
    height: 6.4vw;
    margin-right: 2.9333333333vw;
    border-width: 0.5333333333vw;
  }
}
.page-contact__form .wpcf7-form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #19598B;
  box-shadow: inset 0 0 0 3px white;
  border-color: #2C628C;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
    box-shadow: inset 0 0 0 0.8vw white;
  }
}
.page-contact__form .wpcf7-form .wpcf7-radio input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #19598B;
}
.page-contact__form .wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.page-contact__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.page-contact__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-of-type(n + 2) {
    margin-top: 8vw;
  }
}
.page-contact__form .wpcf7-form .wpcf7-list-item-label {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .wpcf7-list-item-label {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.page-contact__form .wpcf7-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.page-contact__form .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
.page-contact__form .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  background: white;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border: solid 2px #909090;
  border-radius: 3px;
  cursor: pointer;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    border-width: 0.5333333333vw;
    border-radius: 0.8vw;
    margin-right: 3.2vw;
  }
}
.page-contact__form .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:after {
  content: "";
  width: 14px;
  height: 13px;
  background-image: url(./img/common/icn_check-accept.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 4px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:after {
    width: 3.7333333333vw;
    height: 3.4666666667vw;
    top: 1.8666666667vw;
    left: 1.0666666667vw;
  }
}
.page-contact__form .wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.page-contact__form .wpcf7-form input[type=checkbox]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197ee;
}
.page-contact__form .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.page-contact__form .wpcf7-form .cf7-policy {
  background: white;
  width: 740px;
  height: 228px;
  padding: 20px 24px;
  margin: 40px auto 0;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .cf7-policy {
    width: 78.6666666667vw;
    height: 60.8vw;
    padding: 2.1333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.page-contact__form .wpcf7-form .cf7-policy .p-p .inner {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .cf7-policy .p-p .inner {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
  }
}
.page-contact__form .wpcf7-form .cf7-policy .p-p .inner h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .cf7-policy .p-p .inner h2 {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
  }
}
.page-contact__form .wpcf7-form .accept {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .accept {
    margin-top: 9.8666666667vw;
    -moz-column-gap: 1.0666666667vw;
         column-gap: 1.0666666667vw;
  }
}
.page-contact__form .wpcf7-form .accept .wpcf7-list-item {
  margin: 0;
}
.page-contact__form .wpcf7-form .accept .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.page-contact__form .wpcf7-form .accept .wpcf7-list-item-label > a {
  font-weight: 700;
  color: #19598B;
  text-decoration: underline;
}
.page-contact__form .wpcf7-form .accept > span.must {
  color: #B60000;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  display: block;
}
.page-contact__form .wpcf7-form .submit-buttons {
  margin-top: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .submit-buttons {
    margin-top: 1.3333333333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    align-content: normal;
    flex-direction: column;
    row-gap: 1.0666666667vw;
  }
}
.page-contact__form .wpcf7-form .submit-buttons > span.caution {
  color: #B60000;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 175px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .page-contact__form .wpcf7-form .submit-buttons > span.caution {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    width: auto;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0);
  }
}
.page-contact__form .wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 8px;
}

/*  layout > form
============================================================================================================ */
.form__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .form__row {
    align-items: flex-start;
  }
}
.form__row:nth-of-type(n + 2) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .form__row:nth-of-type(n + 2) {
    margin-top: 16vw;
  }
}
.form__row.kinds .form__col:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
}
.form__row.content {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .form__row.content {
    margin-top: 16vw;
  }
}
.form__col:first-of-type {
  font-size: 14px;
  font-size: 1rem;
  line-height: 2;
  width: 173px;
}
@media (max-width: 767px) {
  .form__col:first-of-type {
    font-size: 14px;
    font-size: 7.4666666667vw;
    line-height: 1.25;
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.form__col:nth-of-type(2) {
  font-size: 14px;
  font-size: 1rem;
  width: 411px;
}
@media (max-width: 767px) {
  .form__col:nth-of-type(2) {
    font-size: 14px;
    font-size: 7.4666666667vw;
    width: 100%;
  }
}
.form__note {
  font-size: 14px;
  font-size: 1rem;
  display: block;
  width: 100%;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .form__note {
    font-size: 14px;
    font-size: 7.4666666667vw;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 8vw;
  }
}
.form__note a {
  color: blue;
  text-decoration: underline;
}
.form__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: normal;
  align-content: normal;
  flex-direction: row;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .form__btn {
    align-items: center;
    flex-direction: column-reverse;
    margin-top: 26.6666666667vw;
  }
}
.form__btn-col.submit {
  margin-top: 0;
}
.form__btn-col.back {
  margin-top: 0;
}
.form__btn-col.back:before {
  left: auto;
  right: 0;
  transform: rotateY(180deg);
}

/* layout > privacy-policy
============================================================================================================ */
.page-privacy {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .page-privacy {
    padding-left: unset;
    padding-right: unset;
  }
}

.page-privacy__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 160px;
  background-color: white;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .page-privacy__inner {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.page-privacy__contents {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media (max-width: 767px) {
  .page-privacy__contents {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}
.page-privacy__contents h2 {
  font-size: 28px;
  line-height: 1.4642857143;
  margin-top: 40px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page-privacy__contents h2 {
    font-size: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }
}
.page-privacy__contents h2:first-of-type {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .page-privacy__contents h2:first-of-type {
    margin-top: 30px;
  }
}
.page-privacy__contents h3 {
  font-size: 20px;
  margin-top: 20px;
  line-height: 1.45;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .page-privacy__contents h3 {
    font-size: 15px;
    letter-spacing: 0;
    margin-top: 15px;
  }
}
.page-privacy__contents ul {
  counter-reset: privacy-list-item;
}
.page-privacy__contents li {
  counter-increment: privacy-list-item;
  text-indent: -1em;
  padding-left: 1em;
}
.page-privacy__contents li::before {
  content: counter(privacy-list-item) ".";
  margin-right: 0.5em;
}
.page-privacy__contents .page-privacy__foot {
  margin-top: 40px;
}

/* layout > 404
============================================================================================================ */
.page-404 {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .page-404 {
    padding-left: unset;
    padding-right: unset;
  }
}

.page-404__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  background-color: white;
  margin-right: auto;
  padding-top: 110px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .page-404__inner {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.page-404__heading {
  color: var(--color-primary);
  letter-spacing: 0.02em;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: var(--fontFamily-en);
}
@media (max-width: 767px) {
  .page-404__heading {
    font-size: 30px;
  }
}

.page-404__num {
  font-size: 275%;
  display: block;
  line-height: 1;
}
@media (max-width: 767px) {
  .page-404__num {
    font-size: cal(80/30);
  }
}

.page-404__en {
  line-height: 1;
  display: block;
}

.page-404__catch {
  font-size: 20px;
  line-height: 1.45;
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-404__catch {
    font-size: 15px;
  }
}

.page-404__txt {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-404__txt {
    letter-spacing: 0.03em;
    font-size: 13px;
    max-width: 84.4776119403%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

.page-404__btn {
  margin-top: 40px;
  display: grid;
  place-items: center;
}

.company-mission {
  padding-top: 80px;
  padding-bottom: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .company-mission {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.company-mission__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.company-mission__catch {
  margin-top: 60px;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .company-mission__catch {
    margin-top: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
}

.company-mission__catchParts {
  display: inline-block;
}

.company-mission__visual {
  aspect-ratio: 693/282;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .company-mission__visual {
    aspect-ratio: 335/174;
    margin-top: 20px;
  }
}

.company-mission__visualImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company-mission__subVisual {
  display: grid;
  grid-template-columns: 102fr 78fr 57fr;
  grid-template-rows: repeat(2, 120fr) 60fr;
  aspect-ratio: 237/300;
  max-width: 237px;
}
@media (max-width: 767px) {
  .company-mission__subVisual {
    grid-template-columns: 184fr 17fr 136fr;
    grid-template-rows: 107fr 161fr 50fr;
    aspect-ratio: 335/308;
    max-width: 100%;
  }
}
.company-mission__subVisual > *:nth-child(1) {
  grid-area: 1/1/3/3;
  width: 100%;
}
.company-mission__subVisual > *:nth-child(2) {
  grid-area: 2/2/4/4;
  width: 100%;
}

.company-mission__desc {
  margin-top: 20px;
  line-height: 2;
  text-align: center;
  font-size: 17px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .company-mission__desc {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
}

.company-mission__lower {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 764px;
  display: grid;
  grid-template-columns: 237px 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .company-mission__lower {
    margin-top: 40px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.company-mission__lowerRight {
  justify-self: flex-end;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .company-mission__lowerRight {
    padding-top: 0;
  }
}

.company-mission__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .company-mission__txt {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}
.company-mission__txt:not(:first-of-type) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .company-mission__txt:not(:first-of-type) {
    margin-top: 20px;
  }
}

.company-outline {
  padding-top: 100px;
  padding-bottom: 60px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: var(--color-primary);
  color: white;
}
@media (max-width: 767px) {
  .company-outline {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.company-outline__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.company-outline__layout {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .company-outline__layout {
    margin-top: 40px;
  }
}

.company-outline__term {
  font-size: 20px;
  border-left: 5px solid #FDD000;
  padding-left: 8px;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .company-outline__term {
    border-left: 4px solid #FDD000;
    line-height: 1.5625;
    padding-left: 4px;
    font-size: 16px;
  }
}
.company-outline__term:not(:first-of-type) {
  margin-top: 28px;
}

.company-outline__desc {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  padding-left: 13px;
}
@media (max-width: 767px) {
  .company-outline__desc {
    font-size: 12px;
    line-height: 2;
    margin-top: 5px;
    letter-spacing: 0.05em;
  }
}

.company-map__inner iframe {
  aspect-ratio: 1280/388;
  width: 100%;
  max-width: 100%;
  max-height: 388px;
  height: auto;
}
@media (max-width: 767px) {
  .company-map__inner iframe {
    aspect-ratio: 375/190;
  }
}

.company-history {
  padding-top: 160px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .company-history {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.company-history__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.company-history__list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  max-width: 703px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .company-history__list {
    margin-top: 35px;
    grid-template-columns: 1.7fr 2fr;
  }
}

.company-history__term {
  text-align: right;
  padding-right: 50px;
  padding-top: 5px;
  position: relative;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-weight: 500;
}
@media (max-width: 767px) {
  .company-history__term {
    font-size: 15px;
    padding-right: 30px;
  }
}
.company-history__term::before {
  position: absolute;
  content: "";
  height: 100%;
  background-color: #FDD000;
  width: 3px;
  display: block;
  right: 23px;
  top: 6px;
}
@media (max-width: 767px) {
  .company-history__term::before {
    right: 13px;
  }
}
.company-history__term:last-of-type::before {
  background-color: unset;
  background-image: linear-gradient(to bottom, #FDD000 0 50%, transparent 50% 55%, #FDD000 55% 60%, transparent 60% 65%, #FDD000 65% 70%, transparent 70% 75%, #FDD000 75% 80%, transparent 80% 85%, #FDD000 85% 90%, transparent 90% 95%, #FDD000 95% 100%);
}
@media (max-width: 767px) {
  .company-history__term:last-of-type::before {
    background-image: linear-gradient(to bottom, #FDD000 0 70%, transparent 70% 75%, #FDD000 75% 80%, transparent 80% 85%, #FDD000 85% 90%, transparent 90% 95%, #FDD000 95% 100%);
  }
}
.company-history__term::after {
  position: absolute;
  content: "";
  background-color: var(--color-primary);
  width: 17px;
  height: 17px;
  display: block;
  border-radius: 999em;
  top: 6px;
  right: 24px;
  translate: 50%;
}
@media (max-width: 767px) {
  .company-history__term::after {
    right: 14px;
    width: 13px;
    height: 13px;
  }
}

.company-history__desc {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .company-history__desc {
    font-size: 13px;
    padding-bottom: 25px;
  }
}

.company-organization {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .company-organization {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.company-organization__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.company-organization__figure {
  display: grid;
  place-items: center;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .company-organization__figure {
    margin-top: 40px;
  }
}

.company-tm {
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .company-tm {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

.company-tm__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.company-tm__slider {
  margin-top: 60px;
  width: 100%;
}
@media (max-width: 767px) {
  .company-tm__slider {
    width: unset;
    padding-left: unset;
    margin-top: 40px;
  }
}
.company-tm__slider .swiper {
  overflow: visible;
}
.company-tm__slider .swiper-wrapper {
  gap: 0 20px;
}
@media (max-width: 767px) {
  .company-tm__slider .swiper-wrapper {
    gap: unset;
  }
}
.company-tm__slider .swiper-slide {
  width: 196px;
}
@media (max-width: 767px) {
  .company-tm__slider .swiper-slide {
    width: 72.8vw;
  }
}
.company-tm__slider .swiper-scrollbar {
  width: 827px !important;
  height: 14px !important;
  margin-top: 20px;
  position: static !important;
  background-color: white;
  --swiper-scrollbar-size: 14px;
  --swiper-scrollbar-sides-offset: 13%;
  margin-left: 6%;
  display: none;
}
@media (max-width: 767px) {
  .company-tm__slider .swiper-scrollbar {
    display: block;
    width: 89.3333333333vw !important;
    height: 12px !important;
    --swiper-scrollbar-sides-offset: 0;
    margin-left: unset;
    margin-right: var(--gutter);
    margin-top: 15px;
  }
}
.company-tm__slider .swiper-scrollbar-drag {
  background-color: #909090;
  height: 8px;
  top: 3px;
}
@media (max-width: 767px) {
  .company-tm__slider .swiper-scrollbar-drag {
    top: 2px;
  }
}

.resident-about {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .resident-about {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.resident-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.resident-nav {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.resident-nav__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.resident-nav__nav {
  width: 76.0377358491%;
  margin-left: auto;
  margin-right: auto;
}

.resident-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 30px;
}

.resident-about__desc {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .resident-about__desc {
    letter-spacing: 0.03em;
    font-size: 13px;
  }
}

.resident-desc {
  padding-top: 60px;
  padding-bottom: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  overflow: hidden;
}
@media (max-width: 767px) {
  .resident-desc {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.resident-desc__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.resident-desc__heading {
  background-color: var(--color-primary);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: white;
  padding: 5px 20px;
}
@media (max-width: 767px) {
  .resident-desc__heading.resident-desc__heading--sp-lg {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .resident-desc__heading {
    padding: 10px 20px;
    font-size: 16px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
.resident-desc__heading:not(:first-of-type) {
  margin-top: 60px;
}

.resident-desc__list {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .resident-desc__list {
    font-size: 13px;
    letter-spacing: 0.03em;
    margin-top: 25px;
  }
}
.resident-desc__list ul {
  padding-left: 1em;
}
.resident-desc__list ul li {
  list-style-type: disc;
}

.resident-cancel {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .resident-cancel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.resident-cancel__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.resident-cancel__form {
  --color-cf7-input: white;
  --color-cf7-bg: #f1f1f1;
  margin-top: 60px;
  max-width: 882px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .resident-cancel__form {
    margin-top: 40px;
  }
}

.resident-faq {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .resident-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.resident-faq__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.resident-faq__faq {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .resident-faq__faq {
    margin-top: 40px;
  }
}

.resident-contact {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 170px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .resident-contact {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.resident-contact__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.resident-contact__intro {
  margin-top: 60px;
  max-width: 465px;
  background-color: #FFFEF7;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .resident-contact__intro {
    padding: 12px;
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.resident-contact__introLink {
  -webkit-text-decoration: revert;
          text-decoration: revert;
  color: var(--color-primary);
}

.resident-contact__form {
  --color-cf7-input: white;
  --color-cf7-bg: #f1f1f1;
  margin-top: 40px;
  max-width: 882px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .resident-contact__form {
    margin-top: 20px;
  }
}

.resident-accordion__list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .resident-accordion__list {
    row-gap: 20px;
  }
}

.resident-accordion__trigger {
  background-color: white;
  display: block;
  width: 100%;
  display: grid;
  grid-template-columns: 47px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 40px;
  padding-right: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .resident-accordion__trigger {
    grid-template-columns: 35px 1fr;
    -moz-column-gap: 15px;
         column-gap: 15px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 64px;
  }
}
.resident-accordion__trigger::after {
  content: "＋";
  position: absolute;
  right: 30px;
  top: 50%;
  translate: -50% -50%;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 767px) {
  .resident-accordion__trigger::after {
    right: 7px;
  }
}
.resident-accordion__trigger[aria-expanded=true]::after {
  content: "－";
}

.resident-accordion__icon {
  display: grid;
  align-items: flex-start;
}

.resident-accordion__panel {
  background-color: white;
}

.resident-accordion__body {
  background-color: white;
  display: block;
  width: 100%;
  display: grid;
  grid-template-columns: 47px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-bottom: 24px;
  padding-left: 40px;
  padding-right: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .resident-accordion__body {
    grid-template-columns: 35px 1fr;
    -moz-column-gap: 15px;
         column-gap: 15px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.resident-accordion__q {
  text-align: left;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: 0.75em;
}
@media (max-width: 767px) {
  .resident-accordion__q {
    font-size: 13px;
    padding-top: unset;
  }
}

.resident-accordion__a {
  text-align: left;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .resident-accordion__a {
    padding-top: unset;
  }
}

.csr-about {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .csr-about {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.csr-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.csr-about__heading {
  font-size: 40px;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .csr-about__heading {
    font-size: 20px;
    letter-spacing: 0.05em;
  }
}

.csr-about__catch {
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .csr-about__catch {
    font-size: 15px;
    margin-top: 5px;
  }
}

.csr-about__desc {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: 628px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .csr-about__desc {
    font-size: 13px;
    letter-spacing: 0.03em;
    margin-top: 15px;
  }
}

.csr-activity {
  padding-top: 40px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .csr-activity {
    padding-top: 15px;
    padding-bottom: 100px;
  }
}

.csr-activity__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.csr-activity__body {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .csr-activity__body {
    margin-top: 40px;
  }
}

.csr-activity__catch {
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .csr-activity__catch {
    font-size: 15px;
  }
}

.csr-activity__desc {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: 628px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .csr-activity__desc {
    font-size: 13px;
    letter-spacing: 0.03em;
    margin-top: 15px;
  }
}

.csr-activity__list {
  margin-top: 60px;
  width: 88.3018867925%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .csr-activity__list {
    margin-top: 30px;
    grid-template-columns: 1fr;
    row-gap: 30px;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

.csr-card {
  height: 100%;
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .csr-card {
    padding: 20px 15px 30px;
  }
}
.csr-card .mod-btn {
  margin-top: 20px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .csr-card .mod-btn {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .csr-card__thumbnail {
    aspect-ratio: 305/211;
  }
}

.csr-card__thumbnailImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.csr-card__heading {
  font-size: 20px;
  margin-block: var(--leading-trim);
}
@media (max-width: 767px) {
  .csr-card__heading {
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
  }
}

.csr-card__txt {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .csr-card__txt {
    letter-spacing: 0.03em;
    font-size: 13px;
    margin-top: -5px;
  }
}

.recruitment-message {
  padding-top: 80px;
  padding-bottom: 85px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .recruitment-message {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.recruitment-message__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.recruitment-message__layout {
  margin-top: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 767px) {
  .recruitment-message__layout {
    margin-top: 40px;
    row-gap: 20px;
  }
}
.recruitment-message__layout > *:nth-child(2) {
  justify-self: flex-end;
}
@media (max-width: 767px) {
  .recruitment-message__layout > *:nth-child(2) {
    justify-self: center;
  }
}
@media (max-width: 767px) {
  .recruitment-message__layout {
    grid-template-columns: 1fr;
  }
}

.recruitment-message__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .recruitment-message__txt {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.recruitment-occupation {
  padding-top: 5px;
  padding-bottom: 120px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .recruitment-occupation {
    padding-bottom: 60px;
  }
}

.recruitment-occupation__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.recruitment-occupation__subheading {
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 60px;
  line-height: 1;
}
@media (max-width: 767px) {
  .recruitment-occupation__subheading {
    font-size: 20px;
    margin-top: 45px;
  }
}

.recruitment-occupationTabpanel__list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 767px) {
  .recruitment-occupationTabpanel__list {
    row-gap: 15px;
  }
}

.recruitment-occupationTabpanel__item {
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 1.5fr 150px;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 767px) {
  .recruitment-occupationTabpanel__item {
    grid-template-columns: 1fr;
    padding-bottom: unset;
    border-bottom: unset;
  }
  .recruitment-occupationTabpanel__item:not(:first-of-type) {
    border-top: 1px solid #333333;
    padding-top: 15px;
  }
}
.recruitment-occupationTabpanel__item .mod-btn {
  padding: 1px 10px;
  width: 150px;
}

.recruitment-occupationTabpanel__name {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .recruitment-occupationTabpanel__name {
    font-size: 14px;
  }
}

.recruitment-occupationTabpanel__sub {
  text-align: right;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .recruitment-occupationTabpanel__sub {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-align: left;
  }
}

.recruitment-message__body {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .recruitment-message__body {
    margin-top: 25px;
  }
}

.recruitment-insta {
  padding: 0 var(--gutter) 100px;
}
@media (max-width: 767px) {
  .recruitment-insta {
    padding-bottom: 60px;
  }
}

.recruitment-insta__inner {
  width: 800px;
  height: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.recruitment-youtube {
  padding: 0 var(--gutter) 100px;
}
@media (max-width: 767px) {
  .recruitment-youtube {
    padding-bottom: 60px;
  }
}

.recruitment-youtube__inner {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.recruitment-youtube__inner iframe {
  width: 384px;
  height: 682px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recruitment-youtube__inner iframe {
    width: 89.3333333333vw;
    height: 181.8666666667vw;
  }
}

.recruitment-interview {
  background-color: var(--color-recruit);
  padding-top: 100px;
  padding-bottom: 40px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .recruitment-interview {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.recruitment-interview__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.recruitment-interview__slider {
  margin-top: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (max-width: 767px) {
  .recruitment-interview__slider {
    overflow: visible;
    padding-top: unset;
    padding-bottom: unset;
    margin-top: 50px;
    margin-left: unset;
    margin-right: unset;
  }
}
.recruitment-interview__slider .swiper {
  overflow: visible !important;
}
.recruitment-interview__slider img {
  width: 100%;
  height: auto;
}
.recruitment-interview__slider .slider-control {
  padding-top: 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .recruitment-interview__slider .slider-control {
    padding-top: 20px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.recruitment-interview__slider .swiper-button-prev {
  position: static;
  line-height: 1;
  width: 30px;
  height: 30px;
  margin: 0;
  position: relative;
  left: auto;
  right: auto;
  opacity: 1;
}
.recruitment-interview__slider .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  display: block;
}
.recruitment-interview__slider .swiper-button-prev::after {
  display: none;
}
.recruitment-interview__slider .swiper-button-next {
  rotate: 180deg;
  position: static;
  line-height: 1;
  width: 30px;
  height: 30px;
  margin: 0;
  position: relative;
  left: auto;
  right: auto;
  opacity: 1;
}
.recruitment-interview__slider .swiper-button-next svg {
  width: 100%;
  height: 100%;
  display: block;
}
.recruitment-interview__slider .swiper-button-next::after {
  display: none;
}
.recruitment-interview__slider .swiper-pagination {
  width: auto !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 12px;
  column-gap: 12px;
  margin: 0 !important;
  position: relative;
  left: auto !important;
  bottom: auto !important;
}
.recruitment-interview__slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  background-color: #d9d9d9 !important;
  opacity: 1 !important;
}
.recruitment-interview__slider .swiper-pagination-bullet-active {
  background-color: #fdd000 !important;
}
.recruitment-interview__slider .swiper-slide {
  transition: transform 0.6s;
  transform: scale(0.8672727273) !important;
  width: 550px;
}
@media (max-width: 767px) {
  .recruitment-interview__slider .swiper-slide {
    transform: scale(1) !important;
  }
}
.recruitment-interview__slider .swiper-slide .sliderItem-interview__info {
  transform: scale(1.1530398323) !important;
}
@media (max-width: 767px) {
  .recruitment-interview__slider .swiper-slide .sliderItem-interview__info {
    transform: scale(1) !important;
  }
}
.recruitment-interview__slider .swiper-slide-active {
  transform: scale(1) !important;
}

.recruitment-movie {
  padding: 100px var(--gutter) 0;
}
@media (max-width: 767px) {
  .recruitment-movie {
    padding-top: 60px;
  }
}

.recruitment-movie__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
.recruitment-movie__inner.youtube {
  margin-top: 60px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .recruitment-movie__inner.youtube {
    display: block;
    margin-top: 40px;
  }
}
.recruitment-movie__inner.youtube iframe {
  width: 48.1132075472%;
  aspect-ratio: 560/315;
  height: auto;
}
@media (max-width: 767px) {
  .recruitment-movie__inner.youtube iframe {
    width: 100%;
    margin-top: 20px;
  }
  .recruitment-movie__inner.youtube iframe:first-of-type {
    margin-top: 0;
  }
}

.recruitment-office {
  padding-top: 100px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .recruitment-office {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

.recruitment-office__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.recruitment-office__map {
  margin-top: 60px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (max-width: 767px) {
  .recruitment-office__map {
    margin-top: 40px;
  }
}
.recruitment-office__map iframe {
  aspect-ratio: 1280/388;
  width: 100%;
  max-width: 100%;
  max-height: 388px;
  height: auto;
}
@media (max-width: 767px) {
  .recruitment-office__map iframe {
    aspect-ratio: 375/114;
  }
}

.recruitment-office__address {
  max-width: 493px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.recruitment-office__addressUpper {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .recruitment-office__addressUpper {
    font-size: 14px;
  }
}

.recruitment-office__addressLower {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .recruitment-office__addressLower {
    font-size: 13px;
    margin-top: 10px;
  }
}

.recruitment-office__slider {
  margin-top: 50px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (max-width: 767px) {
  .recruitment-office__slider {
    margin-top: 40px;
  }
}
.recruitment-office__slider img {
  width: 100%;
  height: auto;
}
.recruitment-office__slider .swiper-slide {
  transition: transform 0.6s;
  transform: scale(0.8620689655) !important;
  width: 580px;
}
.recruitment-office__slider .swiper-slide-active {
  transform: scale(1) !important;
}
@media (max-width: 767px) {
  .recruitment-office__slider .swiper-slide-active {
    transform: scale(1) !important;
  }
}

.requirements-body {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .requirements-body {
    padding-left: unset;
    padding-right: unset;
  }
}

.requirements-body__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding: 80px 80px 160px;
}
@media (max-width: 767px) {
  .requirements-body__inner {
    padding-top: 40px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 100px;
  }
}

.requirements-body__tag {
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: white;
  background-color: var(--color-primary);
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 8px;
  padding-right: 8px;
}

.requirements-body__heading {
  margin-top: 10px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.requirements-body__head {
  border-bottom: 1px solid #333333;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .requirements-body__head {
    padding-bottom: 25px;
  }
}

.requirements-body__body {
  padding-top: 24px;
}

.requirements-body__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .requirements-body__txt {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.requirements-body__list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 164px 1fr;
  border-top: 1px solid #333333;
}
@media (max-width: 767px) {
  .requirements-body__list {
    grid-template-columns: 130px 1fr;
    margin-top: 15px;
  }
}

.requirements-body__term {
  border-bottom: 1px solid #333333;
  padding-right: 20px;
  font-size: 18px;
  line-height: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .requirements-body__term {
    font-size: 14px;
  }
}

.requirements-body__desc {
  border-bottom: 1px solid #333333;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .requirements-body__desc {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.requirements-body__btn {
  margin-top: 60px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .requirements-body__btn {
    margin-top: 40px;
  }
}

.entry-form {
  padding-top: 80px;
  padding-bottom: 130px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .entry-form {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.entry-form__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.entry-form__form {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.entry-confirm {
  padding-top: 80px;
  padding-bottom: 130px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.entry-confirm__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.entry-confirm__form {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.entry-confirm__form .wpcf7-form .accept {
  display: none;
}

.entry-complete {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .entry-complete {
    padding-left: unset;
    padding-right: unset;
  }
}

.entry-complete__inner {
  background-color: white;
  padding-top: 80px;
  padding-bottom: 160px;
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .entry-complete__inner {
    padding-top: 60px;
    padding-bottom: 100px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.entry-complete__heading {
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .entry-complete__heading {
    font-size: 24px;
  }
}

.entry-complete__txt {
  margin-top: 50px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 767px) {
  .entry-complete__txt {
    margin-top: 25px;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-align: left;
  }
}

.entry-complete__btn {
  margin-top: 40px;
  display: grid;
  place-items: center;
}

.service-header {
  width: 100%;
  height: 82px;
  background: #EDEFF3;
  border-bottom: 1px solid #999999;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.5s;
}
@media (max-width: 767px) {
  .service-header {
    height: 20vw;
  }
}
.service-header__inner {
  position: relative;
  max-width: 96.875vw;
  width: 100%;
  height: 100%;
  padding-left: 0.78125vw;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media screen and (max-width: 1280px) {
  .service-header__inner {
    -moz-column-gap: 2.5vw;
         column-gap: 2.5vw;
  }
}
@media (max-width: 1024px) {
  .service-header__inner {
    padding: 0 20px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (max-width: 767px) {
  .service-header__inner {
    padding: 0 5.3333333333vw;
  }
}
.service-header__logo {
  min-width: 131px;
  position: relative;
  font-size: 0;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .service-header__logo {
    min-width: 10.234375vw;
  }
}
@media (max-width: 767px) {
  .service-header__logo {
    min-width: auto;
    width: 24.2666666667vw;
  }
}
.service-header__logo a {
  display: block;
  position: relative;
  width: 100%;
}
.service-header__toggle {
  display: none;
}
@media (max-width: 1024px) {
  .service-header__toggle {
    color: #19598B;
    width: 55px;
    height: 55px;
    padding-top: 2px;
    right: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: normal;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  .service-header__toggle {
    width: 14.6666666667vw;
    height: 14.6666666667vw;
    padding-top: 0.5333333333vw;
    right: 5.3333333333vw;
    border-radius: 2.1333333333vw;
  }
}
@media (max-width: 1024px) {
  .service-header__toggle > span.icn {
    width: 25px;
    height: 19px;
    display: block;
    position: relative;
  }
}
@media (max-width: 767px) {
  .service-header__toggle > span.icn {
    width: 6.6666666667vw;
    height: 5.0666666667vw;
  }
}
@media (max-width: 1024px) {
  .service-header__toggle > span.icn > span {
    background: #19598B;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: 0.4s;
    will-change: transform;
  }
}
@media (max-width: 767px) {
  .service-header__toggle > span.icn > span {
    height: 0.5333333333vw;
  }
}
.service-header__toggle > span.icn > span:first-of-type {
  top: 0;
}
.service-header__toggle > span.icn > span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.service-header__toggle > span.icn > span:last-of-type {
  bottom: 0;
}
@media (max-width: 1024px) {
  .service-header__toggle > span.txt {
    font-size: 10px;
    line-height: 1;
    display: block;
    margin-top: 5px;
    position: relative;
  }
}
@media (max-width: 767px) {
  .service-header__toggle > span.txt {
    font-size: 5px;
    font-size: 2.6666666667vw;
    margin-top: 1.3333333333vw;
  }
}
.service-header__toggle > span.txt:before {
  content: "MENU";
  opacity: 1;
  transition: opacity 0.4s;
}
.service-header__toggle > span.txt:after {
  content: "CLOSE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-header__toggle.open > span.icn > span:first-of-type {
  top: 50%;
  transform: translateY(30%) rotate(-38deg);
}
.service-header__toggle.open > span.icn > span:nth-of-type(2) {
  opacity: 0;
}
.service-header__toggle.open > span.icn > span:last-of-type {
  bottom: 50%;
  transform: translateY(130%) rotate(38deg);
}
.service-header__toggle.open > span.txt:before {
  opacity: 0;
}
.service-header__toggle.open > span.txt:after {
  opacity: 1;
}
.service-header__switch {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  margin-left: 28px;
}
@media (max-width: 1024px) {
  .service-header__switch {
    margin-left: 0;
    justify-content: center;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 767px) {
  .service-header__switch {
    top: 8.5333333333vw;
  }
}
.service-header__switch > a {
  color: #999999;
  min-width: calc(2em + 26px);
  line-height: 1;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 1280px) {
  .service-header__switch > a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 1024px) {
  .service-header__switch > a {
    min-width: calc(2em + 38px);
    font-size: 16px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 767px) {
  .service-header__switch > a {
    min-width: calc(2em + 6.9333333333vw);
    padding-left: 3.2vw;
    padding-right: 3.2vw;
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-header__switch > a:first-of-type {
  border-right: 1px solid #999999;
}
.service-header__switch > a.is-current {
  color: #333333;
  font-weight: 700;
}
.service-header__switch > a.is-current:before {
  content: "";
  display: block;
  width: 2em;
  height: 4px;
  background-color: #333333;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .service-header__switch > a.is-current:before {
    height: 1.0666666667vw;
    bottom: -2.1333333333vw;
  }
}
.service-header__nav {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .service-header__nav {
    width: 100vw;
    height: calc(100vh - 82px);
    padding: 100px 80px;
    background: #EDEFF3;
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .service-header__nav {
    height: calc(100vh - 20vw);
    padding: 8.5333333333vw 10.1333333333vw 21.3333333333vw;
  }
}
.service-header__menu {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 1280px) {
  .service-header__menu {
    -moz-column-gap: 1.5625vw;
         column-gap: 1.5625vw;
  }
}
@media (max-width: 1024px) {
  .service-header__menu {
    padding-top: 100px;
    display: block;
  }
}
@media (max-width: 767px) {
  .service-header__menu {
    padding-top: 17.0666666667vw;
  }
}
@media (max-width: 1024px) {
  .service-header__menu li {
    width: 100%;
    border-top: 1px solid #ccc;
  }
}
@media (max-width: 1024px) {
  .service-header__menu li:last-of-type {
    border-bottom: 1px solid #ccc;
  }
}
.service-header__menu li a {
  letter-spacing: 0em;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .service-header__menu li a {
    font-size: 1.09375vw;
  }
}
@media (max-width: 1024px) {
  .service-header__menu li a {
    font-size: 18px;
    line-height: 1.2222222222;
    display: block;
    text-align: left;
    padding: 20px 22px;
  }
}
@media (max-width: 767px) {
  .service-header__menu li a {
    font-size: 8px;
    font-size: 4.2666666667vw;
    line-height: 1;
    padding: 5.3333333333vw 5.8666666667vw;
  }
}
@media (max-width: 1024px) {
  .service-header__menu li a:after {
    content: "";
    display: block;
    width: 1.25em;
    aspect-ratio: 21/21;
    background-image: url(img/page/service/icn_header.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .service-header__menu li a:after {
    right: 5.3333333333vw;
  }
}
.service-header__menu li a.external {
  margin-right: 20px;
}
@media (max-width: 1024px) {
  .service-header__menu li a.external {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .service-header__menu li a.external:after {
    content: "";
    display: block;
    width: 1.25em;
    aspect-ratio: 21/21;
    background-image: url(img/page/icn_external.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .service-header__menu li a.external:after {
    right: 5.3333333333vw;
  }
}
.service-header__menu li a.external::before {
  content: "";
  display: block;
  width: 1.25em;
  aspect-ratio: 21/21;
  background-image: url(img/page/icn_external.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .service-header__menu li a.external::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-header__menu li a.external::before {
    display: none;
  }
}
.service-header__menu li:last-of-type {
  margin-right: 0;
}
.service-header__btn {
  color: white;
  background: #265989;
  line-height: 1.1428571429;
  letter-spacing: 0em;
  min-width: 128px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  padding: 7px 0;
  border-radius: 17px;
}
@media screen and (max-width: 1280px) {
  .service-header__btn {
    min-width: 10vw;
    padding: 0.546875vw 0;
  }
}
@media (max-width: 1024px) {
  .service-header__btn {
    font-size: 18px;
    line-height: 1.2222222222;
    min-width: auto;
    width: 180px;
    padding: 7px 0 9px;
    margin: 76px auto 0;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .service-header__btn {
    font-size: 7px;
    font-size: 3.7333333333vw;
    width: 43.7333333333vw;
    padding: 1.8666666667vw 0 2.4vw;
    margin-top: 10.6666666667vw;
    border-radius: 5.3333333333vw;
  }
}

.service-child .service-main {
  width: 100%;
  height: 100%;
  margin-top: 82px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  background-color: #EDEFF3;
}
@media (max-width: 767px) {
  .service-child .service-main {
    padding-left: 4.2666666667vw;
    padding-right: 4.2666666667vw;
    margin-top: 20vw;
  }
}

.service-fv {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.service-fv hgroup {
  padding-top: 82px;
  padding-bottom: 87px;
  position: relative;
}
@media (max-width: 767px) {
  .service-fv hgroup {
    padding-top: 16vw;
    padding-bottom: 21.3333333333vw;
  }
}
.service-fv hgroup:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #999999;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.service-fv hgroup:after {
  content: "";
  display: block;
  width: 12.0689655172%;
  aspect-ratio: 140/140;
  border-radius: 50%;
  background-color: #EDEFF3;
  position: absolute;
  bottom: 0;
  right: 4.3103448276%;
  transform: translateY(50%);
  background-image: url(img/page/service/icn_fv.svg);
  background-size: 86.4285714286% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: 1;
}
@media (max-width: 767px) {
  .service-fv hgroup:after {
    width: 19.2vw;
    right: 3.2vw;
    background-size: 86.1111111111% auto;
  }
}
.service-fv hgroup p {
  color: #3EA1CF;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-fv hgroup p {
    font-size: 8px;
    font-size: 4.2666666667vw;
  }
}
.service-fv hgroup h1 {
  font-size: 44px;
  font-weight: 700;
  color: #172D55;
  line-height: 1.4772727273;
  letter-spacing: 0.08em;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .service-fv hgroup h1 {
    font-size: 14px;
    font-size: 7.4666666667vw;
    line-height: 1.4642857143;
    margin-top: 2.1333333333vw;
  }
}
.service-fv img {
  display: block;
  width: 100%;
  backface-visibility: visible;
}

.service-icnTtl {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #172D55;
  padding-left: 32px;
  position: relative;
}
@media (max-width: 767px) {
  .service-icnTtl {
    font-size: 10px;
    font-size: 5.3333333333vw;
    padding-left: 8.5333333333vw;
  }
}
.service-icnTtl.white {
  color: white;
}
.service-icnTtl:before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 20/20;
  background-image: url(img/page/service/icn_ttl.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 0;
}
@media (max-width: 767px) {
  .service-icnTtl:before {
    width: 1em;
    top: 1.0666666667vw;
  }
}

.service-lead {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .service-lead {
    padding-top: 16vw;
    padding-bottom: 32vw;
  }
}
.service-lead__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .service-lead__wrap {
    display: block;
    margin-top: 16vw;
  }
}
.service-lead__wrap.mt0 {
  margin-top: 0;
}
.service-lead__wrap.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .service-lead__wrap.tb_full {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-lead__wrap.tb_full .ttl {
    width: 100% !important;
  }
}
@media (max-width: 1024px) {
  .service-lead__wrap.tb_full .service-lead__txt {
    width: 100% !important;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-lead__wrap.tb_full .service-lead__txt {
    margin-top: 10.6666666667vw;
  }
}
.service-lead .ttl {
  color: #172D55;
  line-height: 1.6;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .service-lead .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.development-business .service-lead .ttl {
  width: 50%;
}
@media (max-width: 767px) {
  .development-business .service-lead .ttl {
    width: 100%;
  }
}
.development-business .service-lead .ttl .br {
  display: none;
}
@media (max-width: 1240px) {
  .development-business .service-lead .ttl .br {
    display: block;
  }
}
@media (max-width: 1024px) {
  .development-business .service-lead .ttl .br {
    display: none;
  }
}
@media (max-width: 767px) {
  .development-business .service-lead .ttl .br {
    display: block;
  }
}
.real-estate .service-lead .ttl .br {
  display: none;
}
@media (max-width: 1200px) {
  .real-estate .service-lead .ttl .br {
    display: block;
  }
}
.service-lead__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-lead__txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-lead__txt {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-lead__txt.sp-mt {
    margin-top: 10.6666666667vw;
  }
}
.service-lead__txt p {
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-lead__txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-lead__txt p:first-of-type {
  margin-top: 0;
}
.chintai-management .service-lead__txt p .br01 {
  display: none;
}
@media (max-width: 1240px) {
  .chintai-management .service-lead__txt p .br01 {
    display: block;
  }
}
@media (max-width: 767px) {
  .chintai-management .service-lead__txt p .br01 {
    display: none;
  }
}
.chintai-management .service-lead__txt p .br02 {
  display: none;
}
@media (max-width: 1050px) {
  .chintai-management .service-lead__txt p .br02 {
    display: block;
  }
}
@media (max-width: 767px) {
  .chintai-management .service-lead__txt p .br02 {
    display: none;
  }
}
.chintai-management .service-lead__txt p .br03 {
  display: none;
}
@media (max-width: 820px) {
  .chintai-management .service-lead__txt p .br03 {
    display: block;
  }
}
@media (max-width: 767px) {
  .chintai-management .service-lead__txt p .br03 {
    display: none;
  }
}
.chintai-management .service-lead__txt p .br04 {
  display: none;
}
@media (max-width: 1200px) {
  .chintai-management .service-lead__txt p .br04 {
    display: block;
  }
}
@media (max-width: 767px) {
  .chintai-management .service-lead__txt p .br04 {
    display: none;
  }
}
.real-estate .service-lead__txt p .br01,
.real-estate .service-lead__txt p .br02 {
  display: none;
}
@media (max-width: 1180px) {
  .real-estate .service-lead__txt p .br01,
  .real-estate .service-lead__txt p .br02 {
    display: block;
  }
}
@media (max-width: 767px) {
  .real-estate .service-lead__txt p .br01,
  .real-estate .service-lead__txt p .br02 {
    display: none;
  }
}
.real-estate .service-lead__txt p .br03,
.real-estate .service-lead__txt p .br04 {
  display: none;
}
@media (max-width: 840px) {
  .real-estate .service-lead__txt p .br03,
  .real-estate .service-lead__txt p .br04 {
    display: block;
  }
}
@media (max-width: 767px) {
  .real-estate .service-lead__txt p .br03,
  .real-estate .service-lead__txt p .br04 {
    display: none;
  }
}
.building-materials .service-lead__txt p .br01 {
  display: none;
}
@media (max-width: 1300px) {
  .building-materials .service-lead__txt p .br01 {
    display: block;
  }
}
@media (max-width: 767px) {
  .building-materials .service-lead__txt p .br01 {
    display: none;
  }
}
.building-materials .service-lead__txt p .br02 {
  display: none;
}
@media (max-width: 850px) {
  .building-materials .service-lead__txt p .br02 {
    display: block;
  }
}
@media (max-width: 767px) {
  .building-materials .service-lead__txt p .br02 {
    display: none;
  }
}
.building-materials .service-lead__txt p .br03 {
  display: none;
}
@media (max-width: 1200px) {
  .building-materials .service-lead__txt p .br03 {
    display: block;
  }
}
@media (max-width: 767px) {
  .building-materials .service-lead__txt p .br03 {
    display: none;
  }
}
.building-materials .service-lead__txt p .br04 {
  display: none;
}
@media (max-width: 1250px) {
  .building-materials .service-lead__txt p .br04 {
    display: block;
  }
}
@media (max-width: 767px) {
  .building-materials .service-lead__txt p .br04 {
    display: none;
  }
}
.service-lead__img {
  width: 50%;
  aspect-ratio: 580/400;
  position: relative;
}
@media (max-width: 1024px) {
  .service-lead__img {
    aspect-ratio: auto;
  }
}
@media (max-width: 767px) {
  .service-lead__img {
    width: 100%;
    margin-top: 16vw;
  }
}
.service-lead__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-lead__img img {
    width: 100%;
    position: static;
    transform: none;
  }
}

.service-appeal {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding: 40px 40px 60px;
}
@media (max-width: 767px) {
  .service-appeal {
    padding: 10.6666666667vw 3.2vw;
  }
}
.service-appeal .ttl {
  text-align: center;
  color: #172D55;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .service-appeal .ttl {
    font-size: 9px;
    font-size: 4.8vw;
  }
}
.service-appeal .ttl > span {
  display: inline-block;
  font-size: 36px;
  line-height: 1.4166666667em;
  background-color: #EDEFF3;
  padding-left: 0.3333333333em;
  padding-right: 0.3333333333em;
  margin: 16px 8px 0;
}
@media (max-width: 767px) {
  .service-appeal .ttl > span {
    font-size: 12px;
    font-size: 6.4vw;
    line-height: 1.5416666667em;
    padding-right: 0.3333333333em;
    margin: 4.2666666667vw 2.1333333333vw 0;
  }
}
.service-appeal .ttl > span.mb {
  margin-top: 0;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .service-appeal .ttl > span.mb {
    margin-bottom: 4.2666666667vw;
  }
}
.service-appeal .ttl > span.mt0 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .service-appeal .ttl > span.sp-1line {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.service-appeal__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .service-appeal__wrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-appeal__wrap {
    margin-top: 8.5333333333vw;
  }
}
.service-appeal__wrap iframe {
  width: 55.5555555556%;
  aspect-ratio: 560/315;
  height: auto;
}
@media (max-width: 1024px) {
  .service-appeal__wrap iframe {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.service-appeal__txt {
  width: 39.0740740741%;
}
@media (max-width: 1024px) {
  .service-appeal__txt {
    width: 100%;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .service-appeal__txt {
    margin-top: 8.5333333333vw;
  }
}
.service-appeal .subttl {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  color: #172D55;
}
@media (max-width: 767px) {
  .service-appeal .subttl {
    font-size: 8px;
    font-size: 4.2666666667vw;
  }
}
.service-appeal .subttl > span {
  margin-top: 1.6em;
  display: block;
}
.service-appeal .subttl > span:first-of-type {
  margin-top: 0;
}
.service-appeal ul {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-appeal ul {
    margin-top: 5.3333333333vw;
  }
}
.service-appeal ul > li {
  color: #333333;
  font-size: 14px;
  line-height: 2;
  padding-left: 1em;
  position: relative;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-appeal ul > li {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-appeal ul > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.service-appeal p {
  color: #333333;
  font-size: 14px;
  line-height: 2;
  margin-top: 2em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-appeal p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-appeal p:first-of-type {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-appeal p:first-of-type {
    margin-top: 5.3333333333vw;
  }
}

.service-step {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .service-step {
    margin-top: 32vw;
  }
}
.service-step__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-step__wrap {
    display: block;
    margin-top: 10.6666666667vw;
  }
}
.service-step__img {
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .service-step__img {
    margin-left: auto;
    margin-right: auto;
  }
}
.service-step__img.development {
  aspect-ratio: 580/477;
}
@media (max-width: 1024px) {
  .service-step__img.development {
    aspect-ratio: 401/398;
  }
}
@media (max-width: 767px) {
  .service-step__img.development {
    width: 63.2vw;
    aspect-ratio: 237/282;
  }
}
@media (max-width: 1024px) {
  .service-step__img.development img {
    max-width: 401px;
  }
}
@media (max-width: 767px) {
  .service-step__img.development img {
    max-width: 100%;
  }
}
.service-step__img.buildingMaterials {
  aspect-ratio: 580/400;
}
@media (max-width: 1024px) {
  .service-step__img.buildingMaterials {
    aspect-ratio: 552/317;
  }
}
@media (max-width: 767px) {
  .service-step__img.buildingMaterials {
    aspect-ratio: 327/237;
    width: 87.2vw;
  }
}
@media (max-width: 767px) {
  .service-step__img.buildingMaterials + dl {
    margin-top: 7.4666666667vw;
  }
}
@media (max-width: 1024px) {
  .service-step__img.buildingMaterials img {
    max-width: 552px;
  }
}
@media (max-width: 767px) {
  .service-step__img.buildingMaterials img {
    max-width: 100%;
  }
}
.service-step__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 767px) {
  .service-step__img img {
    width: 100%;
  }
}
.service-step dl {
  counter-reset: listnum;
  margin-top: -40px;
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-step dl {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-step dl {
    width: 100%;
    max-width: 100%;
    margin-top: 2.1333333333vw;
  }
}
.service-step dl > div {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #999999;
  padding-left: 51px;
  position: relative;
}
@media (max-width: 767px) {
  .service-step dl > div {
    padding-top: 8.5333333333vw;
    padding-bottom: 8.5333333333vw;
    padding-left: 10.4vw;
  }
}
.service-step dl > div:before {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  position: absolute;
  top: 40px;
  left: 0;
}
@media (max-width: 767px) {
  .service-step dl > div:before {
    font-size: 10px;
    font-size: 5.3333333333vw;
    top: 8.5333333333vw;
  }
}
.service-step dl > div:first-of-type:before {
  color: #265989;
}
.service-step dl > div:nth-of-type(2):before {
  color: #3D88CE;
}
.service-step dl > div:nth-of-type(3):before {
  color: #729EC8;
}
.service-step dl > div:nth-last-of-type(2):before {
  color: #3EA1CF;
}
.service-step dl > div:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.service-step dl > div:last-of-type:before {
  color: #96C9E0;
}
.service-step dl dt {
  color: #333333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .service-step dl dt {
    font-size: 9px;
    font-size: 4.8vw;
  }
}
.service-step dl dd {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 28px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-step dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}

.service-devSociety {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .service-devSociety {
    margin-top: 32vw;
  }
}
.service-devSociety .ttl {
  color: #172D55;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .service-devSociety .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-devSociety__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-devSociety__wrap {
    display: block;
    margin-top: 10.6666666667vw;
  }
}
.service-devSociety__img {
  width: 50%;
  aspect-ratio: 580/400;
  position: relative;
}
@media (max-width: 1024px) {
  .service-devSociety__img {
    aspect-ratio: 360/388;
  }
}
@media (max-width: 767px) {
  .service-devSociety__img {
    width: 100%;
    width: 69.3333333333vw;
    aspect-ratio: 260/300;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-devSociety__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-devSociety__img img {
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .service-devSociety__img img {
    max-width: 100%;
    width: 100%;
  }
}
.service-devSociety__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-devSociety__txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-devSociety__txt {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
.service-devSociety__txt p {
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-devSociety__txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-devSociety__txt p:first-of-type {
  margin-top: 0;
}
.service-devSociety__txt p .br01 {
  display: none;
}
@media (max-width: 1250px) {
  .service-devSociety__txt p .br01 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devSociety__txt p .br01 {
    display: none;
  }
}
.service-devSociety__txt p .br02 {
  display: none;
}
@media (max-width: 1120px) {
  .service-devSociety__txt p .br02 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devSociety__txt p .br02 {
    display: none;
  }
}
.service-devSociety__txt p .br03 {
  display: none;
}
@media (max-width: 1240px) {
  .service-devSociety__txt p .br03 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devSociety__txt p .br03 {
    display: none;
  }
}
.service-devSociety__txt p .br04 {
  display: none;
}
@media (max-width: 1300px) {
  .service-devSociety__txt p .br04 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devSociety__txt p .br04 {
    display: none;
  }
}

.service-devIXO {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  position: relative;
  padding-top: 160px;
  padding-bottom: 128px;
}
@media (max-width: 767px) {
  .service-devIXO {
    margin-top: 32vw;
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.service-devIXO:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #172D55;
  pointer-events: none;
}
.service-devIXO__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  position: relative;
}
@media (max-width: 1024px) {
  .service-devIXO__wrap {
    display: block;
  }
}
.service-devIXO .ttl {
  font-weight: 700;
  color: white;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  width: 56.0344827586%;
}
@media (max-width: 1024px) {
  .service-devIXO .ttl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-devIXO .ttl {
    font-size: 12px;
    font-size: 6.4vw;
    width: 100%;
  }
}
.service-devIXO .ttl .br {
  display: none;
}
@media (max-width: 1250px) {
  .service-devIXO .ttl .br {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-devIXO .ttl .br {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-devIXO .ttl .br {
    display: block;
  }
}
.service-devIXO .txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: white;
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-devIXO .txt {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-devIXO .txt {
    margin-top: 10.6666666667vw;
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-devIXO .bnr {
  display: block;
  width: 800px;
  max-width: 100%;
  margin: 120px auto 0;
  position: relative;
}
@media (max-width: 1024px) {
  .service-devIXO .bnr {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-devIXO .bnr {
    margin-top: 10.6666666667vw;
  }
}
.service-devIXO .bnr img {
  display: block;
  width: 100%;
  backface-visibility: visible;
}

.service-devProject {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .service-devProject {
    display: block;
    margin-top: 32vw;
  }
}
.service-devProject__wrap {
  width: 50%;
}
@media (max-width: 767px) {
  .service-devProject__wrap {
    width: 100%;
  }
}
.service-devProject .ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #172D55;
}
@media (max-width: 900px) {
  .service-devProject .ttl {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .service-devProject .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-devProject .ttl .br {
  display: none;
}
@media (max-width: 1250px) {
  .service-devProject .ttl .br {
    display: block;
  }
}
.service-devProject .txt {
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-devProject .txt {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.service-devProject .txt .br01 {
  display: none;
}
@media (max-width: 850px) {
  .service-devProject .txt .br01 {
    display: block;
  }
}
.service-devProject .txt .br02 {
  display: none;
}
@media (max-width: 950px) {
  .service-devProject .txt .br02 {
    display: block;
  }
}
.service-devProject .img {
  display: block;
  max-width: 100%;
  margin-top: 60px;
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-devProject .img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-devProject .img {
    margin-top: 10.6666666667vw;
  }
}
.service-devProject dl {
  width: 39.8275862069%;
  counter-reset: listnum;
}
@media (max-width: 1024px) {
  .service-devProject dl {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-devProject dl {
    width: 100%;
    margin-top: 16vw;
  }
}
.service-devProject dl > div {
  padding-left: 66px;
  padding-bottom: 40px;
  padding-top: 13px;
  position: relative;
}
@media (max-width: 767px) {
  .service-devProject dl > div {
    padding-left: 16.5333333333vw;
    padding-right: 1.0666666667vw;
    padding-top: 2.6666666667vw;
    padding-bottom: 8vw;
  }
}
.service-devProject dl > div:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #999999;
  position: absolute;
  top: 0;
  left: 5.4112554113%;
}
@media (max-width: 1024px) {
  .service-devProject dl > div:before {
    left: 25px;
  }
}
@media (max-width: 767px) {
  .service-devProject dl > div:before {
    left: 6.6666666667vw;
  }
}
.service-devProject dl > div:after {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  width: 50px;
  aspect-ratio: 50/50;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEFF3;
}
@media (max-width: 767px) {
  .service-devProject dl > div:after {
    font-size: 9px;
    font-size: 4.8vw;
    width: 10.6666666667vw;
    left: 1.3333333333vw;
  }
}
.service-devProject dl > div:first-of-type:after {
  color: #172D55;
  border: 1px solid #172D55;
}
.service-devProject dl > div:nth-of-type(2):after {
  color: #3D88CE;
  border: 1px solid #3D88CE;
}
.service-devProject dl > div:nth-of-type(3):after {
  color: #3EA1CF;
  border: 1px solid #3EA1CF;
}
.service-devProject dl > div:last-of-type {
  padding-bottom: 0;
}
.service-devProject dl > div:last-of-type:before {
  content: none;
}
.service-devProject dl > div:last-of-type:after {
  color: #96C9E0;
  border: 1px solid #96C9E0;
}
.service-devProject dl dt {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-devProject dl dt {
    font-size: 9px;
    font-size: 4.8vw;
  }
}
.service-devProject dl dd {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 28px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-devProject dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}

.service-devDesign {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  padding-bottom: 156px;
}
@media (max-width: 767px) {
  .service-devDesign {
    margin-top: 40vw;
    padding-bottom: 32vw;
  }
}
.service-devDesign .ttl {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #172D55;
}
@media (max-width: 767px) {
  .service-devDesign .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-devDesign .ttl .br {
  display: none;
}
@media (max-width: 1200px) {
  .service-devDesign .ttl .br {
    display: block;
  }
}
.service-devDesign__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-devDesign__wrap {
    display: block;
    margin-top: 16vw;
  }
}
.service-devDesign__img {
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .service-devDesign__img {
    margin-left: auto;
    margin-right: auto;
  }
}
.service-devDesign__img.top {
  aspect-ratio: 580/200;
}
@media (max-width: 1024px) {
  .service-devDesign__img.top {
    aspect-ratio: 425/200;
  }
}
@media (max-width: 767px) {
  .service-devDesign__img.top {
    width: 80.8vw;
    aspect-ratio: 303/150;
  }
}
.service-devDesign__img.bottom {
  aspect-ratio: 580/240;
}
@media (max-width: 1024px) {
  .service-devDesign__img.bottom {
    aspect-ratio: 424/240;
  }
}
@media (max-width: 767px) {
  .service-devDesign__img.bottom {
    width: 91.4666666667vw;
  }
}
.service-devDesign__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-devDesign__img img {
    max-width: 425px;
  }
}
@media (max-width: 767px) {
  .service-devDesign__img img {
    max-width: 100%;
    width: 100%;
  }
}
.service-devDesign__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-devDesign__txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-devDesign__txt {
    width: 100%;
    margin-top: 8.5333333333vw;
  }
}
.service-devDesign__txt p {
  font-weight: 700;
  color: #172D55;
  line-height: 1.6;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-devDesign__txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-devDesign__txt p:first-of-type {
  margin-top: 0;
}
.service-devDesign__txt p .br01 {
  display: none;
}
@media (max-width: 1200px) {
  .service-devDesign__txt p .br01 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devDesign__txt p .br01 {
    display: none;
  }
}
.service-devDesign__txt p .br02,
.service-devDesign__txt p .br03 {
  display: none;
}
@media (max-width: 1060px) {
  .service-devDesign__txt p .br02,
  .service-devDesign__txt p .br03 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devDesign__txt p .br02,
  .service-devDesign__txt p .br03 {
    display: none;
  }
}
.service-devDesign__txt p .br04,
.service-devDesign__txt p .br05 {
  display: none;
}
@media (max-width: 880px) {
  .service-devDesign__txt p .br04,
  .service-devDesign__txt p .br05 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devDesign__txt p .br04,
  .service-devDesign__txt p .br05 {
    display: none;
  }
}
.service-devDesign__txt p .br06 {
  display: none;
}
@media (max-width: 1120px) {
  .service-devDesign__txt p .br06 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-devDesign__txt p .br06 {
    display: none;
  }
}

.service-chintaiSupport {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
}
@media (max-width: 1024px) {
  .service-chintaiSupport {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-chintaiSupport {
    margin-top: 32vw;
  }
}
.service-chintaiSupport .ttl {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #172D55;
  width: 50%;
}
@media (max-width: 1024px) {
  .service-chintaiSupport .ttl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-chintaiSupport .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-chintaiSupport .txt {
  color: #172D55;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-chintaiSupport .txt {
    margin-top: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-chintaiSupport .txt {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiSupport dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl {
    display: block;
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiSupport dl > div {
  width: 33.3333333333%;
  padding: 30px 20px 20px;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl > div {
    width: 100%;
    aspect-ratio: 343/272;
    padding: 8vw 5.3333333333vw 5.3333333333vw;
  }
}
.service-chintaiSupport dl > div:first-of-type {
  border: 1px solid #265989;
  border-right: none;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl > div:first-of-type {
    border-right: 1px solid #265989;
    border-bottom: none;
  }
}
.service-chintaiSupport dl > div:first-of-type dt:before {
  background-image: url(img/page/service/icn_chintaiSupport01.svg);
}
.service-chintaiSupport dl > div:nth-of-type(2) {
  border: 1px solid #3D88CE;
  border-right: none;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl > div:nth-of-type(2) {
    border-right: 1px solid #3D88CE;
    border-bottom: none;
  }
}
.service-chintaiSupport dl > div:nth-of-type(2) dt:before {
  background-image: url(img/page/service/icn_chintaiSupport02.svg);
}
.service-chintaiSupport dl > div:last-of-type {
  border: 1px solid #3EA1CF;
}
.service-chintaiSupport dl > div:last-of-type dt:before {
  background-image: url(img/page/service/icn_chintaiSupport03.svg);
}
.service-chintaiSupport dl dt {
  font-weight: 700;
  font-size: 20px;
  color: #333333;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl dt {
    font-size: 8px;
    font-size: 4.2666666667vw;
  }
}
.service-chintaiSupport dl dt:before {
  content: "";
  display: block;
  width: 25.8397932817%;
  aspect-ratio: 100/100;
  margin: 0 auto 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl dt:before {
    width: 16vw;
    margin-bottom: 4.2666666667vw;
  }
}
.service-chintaiSupport dl dd {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
  color: #333333;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiSupport dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}

.service-chintaiMarumie {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .service-chintaiMarumie {
    margin-top: 32vw;
  }
}
.service-chintaiMarumie .ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #172D55;
  width: 50%;
}
@media (max-width: 1024px) {
  .service-chintaiMarumie .ttl {
    width: 100%;
    max-width: 580px;
  }
}
@media (max-width: 767px) {
  .service-chintaiMarumie .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-chintaiMarumie .txt {
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-chintaiMarumie .txt {
    margin-top: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-chintaiMarumie .txt {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiMarumie__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__wrap {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-chintaiMarumie__wrap.tab_full {
    display: block;
  }
}
.service-chintaiMarumie__wrap.mt {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .service-chintaiMarumie__wrap.mt {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-chintaiMarumie__wrap.mt {
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiMarumie__img {
  width: 50%;
  aspect-ratio: 580/400;
  position: relative;
}
@media (max-width: 1024px) {
  .service-chintaiMarumie__img {
    aspect-ratio: 380/380;
  }
}
@media (max-width: 767px) {
  .service-chintaiMarumie__img {
    margin-left: auto;
    margin-right: auto;
    width: 60vw;
    aspect-ratio: 225/237;
  }
}
.service-chintaiMarumie__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-chintaiMarumie__img img {
    max-width: 380px;
  }
}
@media (max-width: 767px) {
  .service-chintaiMarumie__img img {
    max-width: 100%;
    width: 100%;
  }
}
.service-chintaiMarumie__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-chintaiMarumie__txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiMarumie__txt p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-chintaiMarumie__txt dl {
  margin-top: 40px;
  counter-reset: listnum;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt dl {
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiMarumie__txt dl > div {
  margin-top: 28px;
  padding-top: 13px;
  padding-left: 66px;
  position: relative;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt dl > div {
    margin-top: 7.4666666667vw;
    padding-top: 2.6666666667vw;
    padding-left: 14.9333333333vw;
  }
}
.service-chintaiMarumie__txt dl > div:after {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  width: 50px;
  aspect-ratio: 50/50;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt dl > div:after {
    font-size: 9px;
    font-size: 4.8vw;
    width: 10.6666666667vw;
    left: 1.3333333333vw;
  }
}
.service-chintaiMarumie__txt dl > div:first-of-type {
  margin-top: 0;
}
.service-chintaiMarumie__txt dl > div:first-of-type:after {
  border: 1px solid #265989;
  color: #265989;
}
.service-chintaiMarumie__txt dl > div:first-of-type dt {
  color: #265989;
}
.service-chintaiMarumie__txt dl > div:nth-of-type(2):after {
  border: 1px solid #3D88CE;
  color: #3D88CE;
}
.service-chintaiMarumie__txt dl > div:nth-of-type(2) dt {
  color: #3D88CE;
}
.service-chintaiMarumie__txt dl > div:last-of-type:after {
  border: 1px solid #3EA1CF;
  color: #3EA1CF;
}
.service-chintaiMarumie__txt dl > div:last-of-type dt {
  color: #3EA1CF;
}
.service-chintaiMarumie__txt dl dt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt dl dt {
    font-size: 10px;
    font-size: 5.3333333333vw;
  }
}
.service-chintaiMarumie__txt dl dd {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-top: 12px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiMarumie__txt dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 3.2vw;
  }
}

.service-chintaiPoint {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 180px;
  position: relative;
  padding-top: 158px;
  padding-bottom: 163px;
}
@media (max-width: 767px) {
  .service-chintaiPoint {
    margin-top: 32vw;
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.service-chintaiPoint:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #172D55;
  pointer-events: none;
}
.service-chintaiPoint__inner {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
}
@media (max-width: 767px) {
  .service-chintaiPoint__inner {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.service-chintaiPoint__inner:first-of-type {
  padding-top: 0;
  border-bottom: 1px solid white;
}
.service-chintaiPoint__inner:last-of-type {
  padding-bottom: 0;
}
.service-chintaiPoint__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .service-chintaiPoint__wrap {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-chintaiPoint__wrap.tab_full {
    display: block;
  }
}
.service-chintaiPoint__wrap.center {
  align-items: center;
}
.service-chintaiPoint__wrap.mt {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-chintaiPoint__wrap.mt {
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiPoint__wrap .ttl {
  font-weight: 700;
  color: white;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .service-chintaiPoint__wrap .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-chintaiPoint__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-chintaiPoint__txt {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-chintaiPoint__txt {
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiPoint__txt .subttl {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiPoint__txt .subttl {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-chintaiPoint__txt .txt {
  color: white;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 20px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiPoint__txt .txt {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: size_sp 20;
  }
}
.service-chintaiPoint__img {
  width: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .service-chintaiPoint__img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-chintaiPoint__img.channel {
  aspect-ratio: 580/320;
}
@media (max-width: 1024px) {
  .service-chintaiPoint__img.channel {
    aspect-ratio: 304/285;
  }
}
@media (max-width: 767px) {
  .service-chintaiPoint__img.channel {
    width: 48vw;
    aspect-ratio: 180/189;
  }
}
@media (max-width: 1024px) {
  .service-chintaiPoint__img.channel img {
    max-width: 380px;
  }
}
@media (max-width: 767px) {
  .service-chintaiPoint__img.channel img {
    max-width: 100%;
  }
}
.service-chintaiPoint__img.attraction, .service-chintaiPoint__img.estimate, .service-chintaiPoint__img.photo, .service-chintaiPoint__img.meeting {
  aspect-ratio: 580/280;
}
@media (max-width: 767px) {
  .service-chintaiPoint__img.attraction, .service-chintaiPoint__img.estimate, .service-chintaiPoint__img.photo, .service-chintaiPoint__img.meeting {
    width: 100%;
  }
}
.service-chintaiPoint__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-chintaiPoint__img img {
    width: 100%;
  }
}
.service-chintaiPoint ul {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul {
    margin-top: 16vw;
  }
}
.service-chintaiPoint ul > li {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li {
    margin-top: 16vw;
  }
}
.service-chintaiPoint ul > li:first-of-type {
  margin-top: 0;
}
.service-chintaiPoint ul > li dl {
  width: 39.8275862069%;
  counter-reset: listnum;
}
@media (max-width: 1024px) {
  .service-chintaiPoint ul > li dl {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li dl {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiPoint ul > li dl > div {
  margin-top: 28px;
  padding-left: 66px;
  position: relative;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li dl > div {
    margin-top: 7.4666666667vw;
    padding-left: 14.9333333333vw;
  }
}
.service-chintaiPoint ul > li dl > div:after {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  width: 50px;
  aspect-ratio: 50/50;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li dl > div:after {
    font-size: 9px;
    font-size: 4.8vw;
    width: 10.6666666667vw;
    left: 1.3333333333vw;
  }
}
.service-chintaiPoint ul > li dl > div:first-of-type {
  margin-top: 0;
}
.service-chintaiPoint ul > li dl > div:first-of-type:after {
  color: #729EC8;
  border: 1px solid #729EC8;
}
.service-chintaiPoint ul > li dl > div:first-of-type dt {
  color: #729EC8;
}
.service-chintaiPoint ul > li dl > div:nth-of-type(2):after {
  color: #3EA1CF;
  border: 1px solid #3EA1CF;
}
.service-chintaiPoint ul > li dl > div:nth-of-type(2) dt {
  color: #3EA1CF;
}
.service-chintaiPoint ul > li dl > div:last-of-type:after {
  color: #96C9E0;
  border: 1px solid #96C9E0;
}
.service-chintaiPoint ul > li dl > div:last-of-type dt {
  color: #96C9E0;
}
.service-chintaiPoint ul > li dl dt {
  padding-top: 13px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li dl dt {
    font-size: 9px;
    font-size: 4.8vw;
    padding-top: 2.6666666667vw;
  }
}
.service-chintaiPoint ul > li dl dd {
  color: white;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 12px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 3.2vw;
  }
}
.service-chintaiPoint ul > li .txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-chintaiPoint ul > li .txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li .txt {
    width: 100%;
    margin-top: 7.4666666667vw;
  }
}
.service-chintaiPoint ul > li .txt p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: white;
  margin-top: 1.6em;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li .txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-chintaiPoint ul > li .txt p:first-of-type {
  margin-top: 0;
}
.service-chintaiPoint ul > li .txt p.small {
  font-size: 14px;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .service-chintaiPoint ul > li .txt p.small {
    font-size: 6px;
    font-size: 3.2vw;
    margin-top: 3.7333333333vw;
    width: 82.9333333333vw;
  }
}

.service-chintaiAlignment {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .service-chintaiAlignment {
    margin-top: 32vw;
    padding-bottom: 32vw;
  }
}
.service-chintaiAlignment__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .service-chintaiAlignment__wrap {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-chintaiAlignment__wrap.tab_full {
    display: block;
  }
}
.service-chintaiAlignment__wrap.mt {
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .service-chintaiAlignment__wrap.mt {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-chintaiAlignment__wrap.mt {
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiAlignment .ttl {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #172D55;
  width: 50%;
}
@media (max-width: 1024px) {
  .service-chintaiAlignment .ttl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-chintaiAlignment .ttl {
    font-size: 12px;
    font-size: 6.4vw;
    letter-spacing: 0.09em;
  }
}
.service-chintaiAlignment .ttl .br {
  display: none;
}
@media (max-width: 1160px) {
  .service-chintaiAlignment .ttl .br {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-chintaiAlignment .ttl .br {
    display: none;
  }
}
.service-chintaiAlignment .txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-chintaiAlignment .txt {
    margin-top: 40px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-chintaiAlignment .txt {
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiAlignment .txt p {
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-chintaiAlignment .txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-chintaiAlignment .txt p:first-of-type {
  margin-top: 0;
}
.service-chintaiAlignment__img {
  width: 50%;
  aspect-ratio: 580/400;
  position: relative;
}
@media (max-width: 1024px) {
  .service-chintaiAlignment__img {
    aspect-ratio: 526/360;
  }
}
@media (max-width: 767px) {
  .service-chintaiAlignment__img {
    width: 100%;
    width: 82.9333333333vw;
    aspect-ratio: 311/237;
    margin-left: auto;
    margin-right: auto;
  }
}
.service-chintaiAlignment__img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: visible;
}
@media (max-width: 1024px) {
  .service-chintaiAlignment__img img {
    max-width: 526px;
  }
}
@media (max-width: 767px) {
  .service-chintaiAlignment__img img {
    max-width: 100%;
    width: 100%;
  }
}
.service-chintaiAlignment dl {
  width: 39.8275862069%;
  counter-reset: listnum;
}
@media (max-width: 1024px) {
  .service-chintaiAlignment dl {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-chintaiAlignment dl {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
.service-chintaiAlignment dl > div {
  margin-top: 28px;
  padding-top: 13px;
  padding-left: 66px;
  position: relative;
}
@media (max-width: 767px) {
  .service-chintaiAlignment dl > div {
    margin-top: 7.4666666667vw;
    padding-top: 2.6666666667vw;
    padding-left: 14.9333333333vw;
  }
}
.service-chintaiAlignment dl > div:after {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  width: 50px;
  aspect-ratio: 50/50;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .service-chintaiAlignment dl > div:after {
    font-size: 9px;
    font-size: 4.8vw;
    width: 10.6666666667vw;
    left: 1.3333333333vw;
  }
}
.service-chintaiAlignment dl > div:first-of-type {
  margin-top: 0;
}
.service-chintaiAlignment dl > div:first-of-type:after {
  border: 1px solid #265989;
  color: #265989;
}
.service-chintaiAlignment dl > div:first-of-type dt {
  color: #265989;
}
.service-chintaiAlignment dl > div:nth-of-type(2):after {
  border: 1px solid #3D88CE;
  color: #3D88CE;
}
.service-chintaiAlignment dl > div:nth-of-type(2) dt {
  color: #3D88CE;
}
.service-chintaiAlignment dl > div:last-of-type:after {
  border: 1px solid #3EA1CF;
  color: #3EA1CF;
}
.service-chintaiAlignment dl > div:last-of-type dt {
  color: #3EA1CF;
}
.service-chintaiAlignment dl dt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-chintaiAlignment dl dt {
    font-size: 10px;
    font-size: 5.3333333333vw;
  }
}
.service-chintaiAlignment dl dd {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-top: 12px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-chintaiAlignment dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 3.2vw;
  }
}

.service-realStep {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .service-realStep {
    margin-top: 31.2vw;
  }
}
.service-realStep dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  margin-top: 85px;
  counter-reset: listnum;
}
@media (max-width: 767px) {
  .service-realStep dl {
    margin-top: 10.6666666667vw;
    display: block;
  }
}
.service-realStep dl > div {
  width: 25%;
  padding: 30px 20px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .service-realStep dl > div {
    width: 86.1333333333vw;
    margin-left: auto;
    padding: 5.3333333333vw;
  }
}
.service-realStep dl > div:after {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  width: 50px;
  aspect-ratio: 50/50;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEFF3;
}
@media (max-width: 767px) {
  .service-realStep dl > div:after {
    font-size: 9px;
    font-size: 4.8vw;
    width: 10.6666666667vw;
    top: 5.3333333333vw;
    left: -5.3333333333vw;
    transform: none;
  }
}
.service-realStep dl > div:first-of-type {
  border: 1px solid #265989;
  border-right: none;
}
@media (max-width: 767px) {
  .service-realStep dl > div:first-of-type {
    border-right: 1px solid #265989;
    border-bottom: none;
  }
}
.service-realStep dl > div:first-of-type:after {
  color: #265989;
  border: 1px solid #265989;
}
.service-realStep dl > div:first-of-type dt:before {
  background-image: url(img/page/service/icn_realStep01.svg);
}
.service-realStep dl > div:nth-of-type(2) {
  border: 1px solid #3D88CE;
  border-right: none;
}
@media (max-width: 767px) {
  .service-realStep dl > div:nth-of-type(2) {
    border-right: 1px solid #3D88CE;
    border-bottom: none;
  }
}
.service-realStep dl > div:nth-of-type(2):after {
  color: #3D88CE;
  border: 1px solid #3D88CE;
}
.service-realStep dl > div:nth-of-type(2) dt:before {
  background-image: url(img/page/service/icn_realStep02.svg);
}
.service-realStep dl > div:nth-of-type(3) {
  border: 1px solid #3EA1CF;
  border-right: none;
}
@media (max-width: 767px) {
  .service-realStep dl > div:nth-of-type(3) {
    border-right: 1px solid #3EA1CF;
    border-bottom: none;
  }
}
.service-realStep dl > div:nth-of-type(3):after {
  color: #3EA1CF;
  border: 1px solid #3EA1CF;
}
.service-realStep dl > div:nth-of-type(3) dt:before {
  background-image: url(img/page/service/icn_realStep03.svg);
}
.service-realStep dl > div:last-of-type {
  border: 1px solid #729EC8;
}
@media (max-width: 767px) {
  .service-realStep dl > div:last-of-type {
    border-right: 1px solid #729EC8;
  }
}
.service-realStep dl > div:last-of-type:after {
  color: #729EC8;
  border: 1px solid #729EC8;
}
.service-realStep dl > div:last-of-type dt:before {
  background-image: url(img/page/service/icn_realStep04.svg);
}
.service-realStep dl dt {
  color: #333333;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .service-realStep dl dt {
    font-size: 9px;
    font-size: 4.8vw;
  }
}
.service-realStep dl dt:before {
  content: "";
  display: block;
  width: 100px;
  aspect-ratio: 100/100;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  margin: 0 auto 16px;
}
@media (max-width: 767px) {
  .service-realStep dl dt:before {
    width: 16vw;
    margin-bottom: 4.2666666667vw;
  }
}
.service-realStep dl dd {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .service-realStep dl dd {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 4.2666666667vw;
  }
}

.service-realBnr {
  margin-top: 160px;
  height: 39.0625vw;
  position: relative;
}
@media (max-width: 767px) {
  .service-realBnr {
    height: 39.2vw;
    margin-top: 37.0666666667vw;
  }
}
.service-realBnr a {
  display: block;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.service-realBnr img {
  width: 100%;
  backface-visibility: visible;
}

.service-realSummary {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .service-realSummary {
    margin-top: 31.2vw;
    padding-bottom: 31.2vw;
  }
}
.service-realSummary__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .service-realSummary__wrap {
    display: block;
  }
}
.service-realSummary__wrap.mt {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-realSummary__wrap.mt {
    margin-top: 10.6666666667vw;
  }
}
.service-realSummary .ttl {
  color: #172D55;
  line-height: 1.6;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 50%;
}
@media (max-width: 1024px) {
  .service-realSummary .ttl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-realSummary .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-realSummary .subttl {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-realSummary .subttl {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-realSummary .subttl {
    margin-top: 10.6666666667vw;
  }
}
.service-realSummary .subttl p {
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-realSummary .subttl p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-realSummary .subttl p:first-of-type {
  margin-top: 0;
}
.service-realSummary dl {
  width: 50%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .service-realSummary dl {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .service-realSummary dl {
    display: block;
  }
}
.service-realSummary dl > div {
  width: 47.9310344828%;
  border-radius: 12px;
  padding: 20px 3.1034482759% 24px;
  position: relative;
}
@media (max-width: 767px) {
  .service-realSummary dl > div {
    width: 74.1333333333vw;
    border-radius: 3.2vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5.3333333333vw 4.8vw 6.4vw;
  }
}
.service-realSummary dl > div:before {
  content: "";
  display: block;
  width: 21.5827338129%;
  aspect-ratio: 60/60;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  right: 4.3165467626%;
}
@media (max-width: 1024px) {
  .service-realSummary dl > div:before {
    width: 60px;
  }
}
@media (max-width: 767px) {
  .service-realSummary dl > div:before {
    width: 16vw;
    top: 3.2vw;
    right: 3.2vw;
  }
}
.service-realSummary dl > div:first-of-type {
  background-color: #3EA1CF;
}
.service-realSummary dl > div:first-of-type:before {
  background-image: url(img/page/service/icn_realSummary01.svg);
}
.service-realSummary dl > div:last-of-type {
  background-color: #265989;
}
@media (max-width: 767px) {
  .service-realSummary dl > div:last-of-type {
    margin-top: 5.3333333333vw;
  }
}
.service-realSummary dl > div:last-of-type:before {
  background-image: url(img/page/service/icn_realSummary02.svg);
}
.service-realSummary dl dt {
  font-size: 18px;
  line-height: 1.2;
  color: white;
  height: calc(2.4em + 18px);
  font-weight: 700;
  padding-bottom: 18px;
  display: flex;
  align-items: flex-end;
  width: 75.5395683453%;
  border-bottom: 1px solid white;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .service-realSummary dl dt {
    width: calc(100% - 68px);
  }
}
@media (max-width: 767px) {
  .service-realSummary dl dt {
    font-size: 9px;
    font-size: 4.8vw;
    padding-bottom: 4.8vw;
    width: 47.4666666667vw;
    margin-bottom: 4.8vw;
    height: calc(2.4em + 4.8vw);
  }
}
.service-realSummary dl dt .br {
  display: none;
}
@media (max-width: 1200px) {
  .service-realSummary dl dt .br {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-realSummary dl dt .br {
    display: none;
  }
}
.service-realSummary dl dd {
  color: white;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 767px) {
  .service-realSummary dl dd {
    font-size: 8px;
    font-size: 4.2666666667vw;
    margin-top: 2.1333333333vw;
  }
}
.service-realSummary dl dd:before {
  content: "・";
}
.service-realSummary dl dd:first-of-type {
  margin-top: 0;
}
.service-realSummary ul {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-realSummary ul {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-realSummary ul {
    margin-top: 10.6666666667vw;
  }
}
.service-realSummary ul > li {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  margin-top: 20px;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 767px) {
  .service-realSummary ul > li {
    font-size: 8px;
    font-size: 4.2666666667vw;
    margin-top: 5.3333333333vw;
  }
}
.service-realSummary ul > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.service-realSummary ul > li:first-of-type {
  margin-top: 0;
}

.service-buildIXO {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .service-buildIXO {
    margin-top: 32vw;
  }
}
.service-buildIXO__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .service-buildIXO__wrap {
    display: block;
  }
}
.service-buildIXO__wrap.mt {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-buildIXO__wrap.mt {
    margin-top: 10.6666666667vw;
  }
}
.service-buildIXO .ttl {
  color: #172D55;
  line-height: 1.6;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 50%;
}
@media (max-width: 767px) {
  .service-buildIXO .ttl {
    width: 100%;
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-buildIXO .subttl {
  width: 39.8275862069%;
  color: #172D55;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .service-buildIXO .subttl {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-buildIXO .subttl {
    width: 100%;
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.service-buildIXO .subttl .br {
  display: none;
}
@media (max-width: 1240px) {
  .service-buildIXO .subttl .br {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildIXO .subttl .br {
    display: none;
  }
}
.service-buildIXO img {
  width: 50%;
  display: block;
  backface-visibility: visible;
}
@media (max-width: 767px) {
  .service-buildIXO img {
    width: 100%;
  }
}
.service-buildIXO__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-buildIXO__txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-buildIXO__txt {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
.service-buildIXO__txt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-buildIXO__txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-buildIXO__txt p:first-of-type {
  margin-top: 0;
}
.service-buildIXO__txt p .br01 {
  display: none;
}
@media (max-width: 1200px) {
  .service-buildIXO__txt p .br01 {
    display: block;
  }
}
.service-buildIXO__txt p .br02 {
  display: none;
}
@media (max-width: 820px) {
  .service-buildIXO__txt p .br02 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildIXO__txt p .br02 {
    display: none;
  }
}
.service-buildIXO a {
  margin-top: 40px;
  background-color: #265989;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 44px;
  border-radius: 44px;
  color: white;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .service-buildIXO a {
    font-size: 7px;
    font-size: 3.7333333333vw;
    margin-top: 10.6666666667vw;
    width: 53.8666666667vw;
    height: 9.0666666667vw;
  }
}

.service-buildContrib {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  position: relative;
  padding-top: 94px;
  padding-bottom: 167px;
}
@media (max-width: 767px) {
  .service-buildContrib {
    margin-top: 32vw;
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.service-buildContrib:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #172D55;
  pointer-events: none;
}
.service-buildContrib__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  position: relative;
}
@media (max-width: 1024px) {
  .service-buildContrib__wrap {
    display: block;
  }
}
.service-buildContrib__wrap.mt {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .service-buildContrib__wrap.mt {
    margin-top: 10.6666666667vw;
  }
}
.service-buildContrib__wrap .left {
  width: 50%;
}
@media (max-width: 1024px) {
  .service-buildContrib__wrap .left {
    width: 100%;
  }
}
.service-buildContrib__wrap .right {
  width: 41.5517241379%;
}
@media (max-width: 1024px) {
  .service-buildContrib__wrap .right {
    width: 100%;
    margin-top: 40px;
    position: relative;
    padding-bottom: calc(56.2068965517% + 40px);
  }
}
@media (max-width: 767px) {
  .service-buildContrib__wrap .right {
    margin-top: 10.6666666667vw;
  }
}
.service-buildContrib .ttl {
  color: white;
  line-height: 1.6;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .service-buildContrib .ttl {
    font-size: 12px;
    font-size: 6.4vw;
    letter-spacing: 0.09em;
  }
}
.service-buildContrib .ttl .br {
  display: none;
}
@media (max-width: 1240px) {
  .service-buildContrib .ttl .br {
    display: block;
  }
}
@media (max-width: 1024px) {
  .service-buildContrib .ttl .br {
    display: none;
  }
}
.service-buildContrib .txt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  color: white;
  letter-spacing: 0.1em;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-buildContrib .txt {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-buildContrib .txt:first-of-type {
  margin-top: 0;
}
.service-buildContrib__youtube {
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.service-buildContrib__youtube.first {
  width: 100%;
  aspect-ratio: 580/326;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .service-buildContrib__youtube.first {
    margin-top: 0;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.service-buildContrib__youtube.second {
  position: relative;
  width: 800px;
  max-width: 100%;
  aspect-ratio: 800/450;
  margin-top: 120px;
}
@media (max-width: 1024px) {
  .service-buildContrib__youtube.second {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-buildContrib__youtube.second {
    margin-top: 10.6666666667vw;
  }
}

.service-buildSummary {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 160px;
  padding-bottom: 156px;
}
@media (max-width: 767px) {
  .service-buildSummary {
    margin-top: 32vw;
    padding-bottom: 32vw;
  }
}
.service-buildSummary .ttl {
  color: #172D55;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .service-buildSummary .ttl {
    font-size: 12px;
    font-size: 6.4vw;
  }
}
.service-buildSummary__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: stretch;
  flex-direction: row;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-buildSummary__wrap {
    flex-direction: column-reverse;
    margin-top: 10.6666666667vw;
  }
}
.service-buildSummary img {
  width: 50%;
  display: block;
  backface-visibility: visible;
}
@media (max-width: 767px) {
  .service-buildSummary img {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
.service-buildSummary__txt {
  width: 39.8275862069%;
}
@media (max-width: 1024px) {
  .service-buildSummary__txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt {
    width: 100%;
  }
}
.service-buildSummary__txt p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #172D55;
  margin-top: 1.6em;
}
@media (max-width: 767px) {
  .service-buildSummary__txt p {
    font-size: 7px;
    font-size: 3.7333333333vw;
  }
}
.service-buildSummary__txt p:first-of-type {
  margin-top: 0;
}
.service-buildSummary__txt p .br01 {
  display: none;
}
@media (max-width: 1060px) {
  .service-buildSummary__txt p .br01 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br01 {
    display: none;
  }
}
.service-buildSummary__txt p .br02 {
  display: none;
}
@media (max-width: 860px) {
  .service-buildSummary__txt p .br02 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br02 {
    display: none;
  }
}
.service-buildSummary__txt p .br03 {
  display: none;
}
@media (max-width: 1050px) {
  .service-buildSummary__txt p .br03 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br03 {
    display: none;
  }
}
.service-buildSummary__txt p .br04 {
  display: none;
}
@media (max-width: 1250px) {
  .service-buildSummary__txt p .br04 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br04 {
    display: none;
  }
}
.service-buildSummary__txt p .br05 {
  display: none;
}
@media (max-width: 1200px) {
  .service-buildSummary__txt p .br05 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br05 {
    display: none;
  }
}
.service-buildSummary__txt p .br06 {
  display: none;
}
@media (max-width: 900px) {
  .service-buildSummary__txt p .br06 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br06 {
    display: none;
  }
}
.service-buildSummary__txt p .br07 {
  display: none;
}
@media (max-width: 1050px) {
  .service-buildSummary__txt p .br07 {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-buildSummary__txt p .br07 {
    display: none;
  }
}

.p-development_business__consulting__inner {
  background: #eff3f9;
}
.p-development_business__consulting .c-title__h2--page {
  margin-bottom: 3.3333333333rem;
}
@media (width <= 768px) {
  .p-development_business__consulting .c-title__h2--page {
    margin-bottom: rem_sp(20);
  }
}
.p-development_business__consulting .c-flex-list__item {
  padding-bottom: 2.3333333333rem;
}
@media (width <= 768px) {
  .p-development_business__consulting .c-flex-list__item {
    padding-bottom: rem_sp(20);
  }
}
.p-development_business__flow .c-title__h3--page {
  margin-bottom: 0.8666666667rem;
}
.p-development_business__flow .c-flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4.7333333333rem;
}
@media (width <= 768px) {
  .p-development_business__flow .c-flow-list {
    width: 100%;
    margin-top: rem_sp(40);
  }
}
.p-development_business__flow .c-flow-list__item {
  width: calc(50% - 30px);
}
@media (width <= 768px) {
  .p-development_business__flow .c-flow-list__item {
    width: 100%;
  }
}
.p-development_business__package {
  left: 50%;
  transform: translateX(-50%);
  width: 112%;
}
.p-development_business__package__inner:nth-of-type(1) {
  background: #425d8e;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6.6666666667rem), 50% 100%, 0 calc(100% - 6.6666666667rem));
  padding-bottom: 10.6666666667rem;
}
@media (width <= 768px) {
  .p-development_business__package__inner:nth-of-type(1) {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - rem_sp(50)), 50% 100%, 0 calc(100% - rem_sp(50)));
    padding-bottom: rem_sp(100);
  }
}
.p-development_business__package__inner:nth-of-type(2) {
  background: #f5f5f5;
  margin-top: -6.6666666667rem;
  padding-top: 8rem;
}
@media (width <= 768px) {
  .p-development_business__package__inner:nth-of-type(2) {
    margin-top: rem_sp(-80);
    padding-top: rem_sp(120);
  }
}
.p-development_business__package__inner:nth-of-type(2) .c-title__h3--page {
  margin-bottom: 1.8666666667rem;
}
@media (width <= 768px) {
  .p-development_business__package__inner:nth-of-type(2) .c-title__h3--page {
    margin-bottom: rem_sp(20);
  }
}
.p-development_business__package__p {
  margin-bottom: 2.1333333333rem;
}
.p-development_business__package .c-title__h2--page {
  border-bottom: 0.1333333333rem solid #fff;
  line-height: 1.26;
  margin-bottom: 1rem;
}
.p-development_business__package .c-title__h3--page {
  margin-bottom: 1rem;
}
.p-development_business__package .c-confident-box {
  padding: 2rem 0;
}
@media (width <= 768px) {
  .p-development_business__package .c-confident-box {
    padding: rem_sp(20) 0;
  }
}
.p-development_business__package .c-confident-box:nth-of-type(1) {
  margin-top: 3.8rem;
}
@media (width <= 768px) {
  .p-development_business__package .c-confident-box:nth-of-type(1) {
    margin-top: 0;
    padding-bottom: 0;
  }
}
@media (width <= 768px) {
  .p-development_business__package .c-confident-box:nth-of-type(1) .c-confident-box__item {
    border-bottom: 1px solid #747070 !important;
    padding-bottom: rem_sp(20);
    margin-bottom: rem_sp(20);
  }
}
.p-development_business__package .c-confident-box:last-of-type {
  padding-bottom: 0;
}
@media (width <= 768px) {
  .p-development_business__package .c-confident-box:last-of-type {
    padding: 0;
  }
}
.p-development_business__package__thumb {
  text-align: center;
  max-width: 371px;
  width: auto;
  margin: 0 auto;
}
@media (width <= 768px) {
  .p-development_business__package__thumb {
    max-width: 100%;
  }
}
.p-development_business__package .c-arrow {
  margin: 2.6666666667rem auto 2rem;
}
@media (width <= 768px) {
  .p-development_business__package .c-arrow {
    margin: rem_sp(19) auto rem_sp(15);
  }
}
.p-development_business__package__note {
  font-size: 0.8rem;
}
@media (width <= 768px) {
  .p-development_business__package__note {
    font-size: rem_sp(12);
    margin-top: rem_sp(10);
  }
}
.p-development_business__recommend {
  max-width: 40rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.6666666667rem;
  padding: 3.3333333333rem 3.3333333333rem 2rem;
  color: #212121;
}
@media (width <= 768px) {
  .p-development_business__recommend {
    padding: rem_sp(20);
    max-width: inherit;
    border-radius: rem_sp(10);
  }
}
.p-development_business__recommend .c-list__item {
  font-size: 1.3333333333rem;
  font-weight: 700;
  padding-left: 2.3333333333rem;
}
@media (width <= 768px) {
  .p-development_business__recommend .c-list__item {
    font-size: rem_sp(16);
    padding-left: rem_sp(25);
  }
}
.p-development_business__recommend .c-list__item:before {
  font-size: 1.6rem;
}
@media (width <= 768px) {
  .p-development_business__recommend .c-list__item:before {
    font-size: rem_sp(16);
  }
}

.single-interview__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .single-interview__inner {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.single-interview__subInner {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.single-interview__ttl {
  text-align: center;
  font-size: 40px;
  text-decoration: underline;
  text-decoration-color: #fdd000;
  text-underline-offset: 20%;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .single-interview__ttl {
    font-size: 24px;
    text-align: left;
  }
}

.single-interview__intro {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .single-interview__intro {
    font-size: 14px;
    margin-top: 10px;
  }
}

.single-interview__profile {
  margin-top: 40px;
}

.single-interview__body {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .single-interview__body {
    margin-top: 45px;
  }
}

.single-interview__q {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media (max-width: 767px) {
  .single-interview__q {
    margin-top: 30px;
  }
}
.single-interview__q:first-of-type {
  margin-top: unset;
}

.single-interview__qNum {
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--fontFamily-en);
  line-height: 1;
}
@media (max-width: 767px) {
  .single-interview__qNum {
    font-size: 22px;
  }
}

.single-interview__pic {
  display: grid;
  place-items: center;
}

.single-interview__qTxt {
  line-height: 1.4285714286;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-weight: 700;
}
@media (max-width: 767px) {
  .single-interview__qTxt {
    font-size: 16px;
    line-height: 1.375;
  }
}

.single-interview__visual {
  margin-top: 40px;
  margin-left: -105px;
  margin-right: -105px;
}
@media (max-width: 767px) {
  .single-interview__visual {
    aspect-ratio: 375/200;
    max-height: 408px;
    height: auto;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}

.single-interview__visualImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-interview__a {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .single-interview__a {
    margin-top: 15px;
  }
}
.single-interview__a.single-interview__a--col-txt-pic {
  margin-right: -105px;
  display: grid;
  grid-template-columns: 1fr 394px;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 1060px) {
  .single-interview__a.single-interview__a--col-txt-pic {
    margin-right: unset;
  }
}
@media (max-width: 767px) {
  .single-interview__a.single-interview__a--col-txt-pic {
    grid-template-columns: 1fr;
    margin-right: unset;
    row-gap: 40px;
  }
}

.single-interview__aTxt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media (max-width: 767px) {
  .single-interview__aTxt {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.single-interviewOther__inner {
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-primary);
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .single-interviewOther__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: var(--gutter);
    padding-right: unset;
  }
}

.single-interviewOther__subInner {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.single-interviewOther__slider {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .single-interviewOther__slider {
    margin-top: 40px;
  }
}
.single-interviewOther__slider .swiper-slide {
  width: 243px;
}
.single-interviewOther__slider .swiper-scrollbar {
  margin-top: 20px;
  position: static !important;
  background-color: white;
  --swiper-scrollbar-size: 14px;
  --swiper-scrollbar-sides-offset: 5%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .single-interviewOther__slider .swiper-scrollbar {
    margin-right: var(--gutter);
    margin-left: unset;
  }
}
.single-interviewOther__slider .swiper-scrollbar-drag {
  background-color: #909090;
  height: 8px;
  top: 3px;
}

.single-interviewBottom {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .single-interviewBottom {
    padding-left: unset;
    padding-right: unset;
  }
}

.single-interviewBottom__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .single-interviewBottom__inner {
    padding-top: 60px;
    padding-bottom: 100px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.single-interviewBottom__subInner {
  max-width: 494px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 30px;
  padding-bottom: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .single-interviewBottom__subInner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.single-interviewBottom__subInner::before {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  height: 2px;
  width: 100%;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.single-interviewBottom__subInner::after {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  height: 2px;
  width: 78.9029535865%;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media (max-width: 767px) {
  .single-interviewBottom__subInner::after {
    width: 100%;
  }
}

.single-interviewBottom__lead {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-interviewBottom__lead {
    font-size: 13px;
  }
}

.single-interviewBottom__btn {
  display: grid;
  place-items: center;
  margin-top: 20px;
}

.archive-portfolio {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .archive-portfolio {
    padding-left: unset;
    padding-right: unset;
  }
}

.archive-portfolio__inner {
  max-width: calc(var(--width-inner) * 1px);
  padding-top: 80px;
  padding-bottom: 160px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .archive-portfolio__inner {
    padding-top: 40px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-bottom: 100px;
  }
}

.archive-portfolio__list {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .archive-portfolio__list {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}

.archive-portfolio__pagination {
  margin-top: 40px;
}

.single-portfolio-wrap {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .single-portfolio-wrap {
    padding-left: unset;
    padding-right: unset;
  }
}

.single-portfolio__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 160px;
  background-color: white;
}
@media (max-width: 767px) {
  .single-portfolio__inner {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.single-portfolio__subInner {
  max-width: 786px;
  margin-left: auto;
  margin-right: auto;
}

.single-portfolio__heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .single-portfolio__heading {
    font-size: 24px;
  }
}

.single-portfolio__body {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .single-portfolio__body {
    margin-top: 30px;
  }
}
.single-portfolio__body .editor-content p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .single-portfolio__body .editor-content p {
    font-size: 13px;
    margin-top: 10px;
  }
}
.single-portfolio__body .editor-content img:not(:first-of-type) {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .single-portfolio__body .editor-content img:not(:first-of-type) {
    margin-top: 20px;
  }
}

.single-portfolio__thumb {
  aspect-ratio: 1.6477987421;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .single-portfolio__thumb {
    aspect-ratio: 1.6502463054;
    margin-bottom: 12px;
  }
}

.single-portfolio__list {
  margin-top: 80px;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 120px 1fr;
  background-color: #F1F1F1;
}
@media (max-width: 767px) {
  .single-portfolio__list {
    margin-top: 40px;
    padding: 12px;
  }
}

.single-portfolio__term {
  padding-right: 10px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #909090;
  font-weight: 700;
}

.single-portfolio__desc {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-top: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #909090;
}

.single-portfolio__other {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .single-portfolio__other {
    padding-top: 50px;
  }
}

.single-portfolio__otherList {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .single-portfolio__otherList {
    margin-top: 30px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}

.single-portfolio__btn {
  display: grid;
  place-items: center;
  margin-top: 40px;
}

.archive-news-wrap {
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .archive-news-wrap {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.archive-news__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.archive-news__subInner {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.archive-news__intro {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

.archive-news__anchor {
  margin-top: 120px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .archive-news__anchor {
    margin-top: 40px;
    -moz-column-gap: 16px;
         column-gap: 16px;
    justify-content: flex-start;
    row-gap: 16px;
  }
}

.archive-news__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .archive-news__list {
    row-gap: 20px;
    margin-top: 30px;
  }
}

.archive-news__pagination {
  display: grid;
  place-items: center;
  margin-top: 40px;
}

.single-news-wrap {
  padding-top: 80px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .single-news-wrap {
    padding-top: 30px;
    padding-bottom: 100px;
  }
}

.single-news__inner {
  max-width: 803px;
  margin-left: auto;
  margin-right: auto;
}

.single-news__head {
  border-bottom: 1px solid #FDD000;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .single-news__head {
    padding-bottom: 32px;
  }
}

.single-news__heading {
  font-size: 40px;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .single-news__heading {
    font-size: 24px;
    line-height: 1.3;
  }
}

.single-news__meta {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .single-news__meta {
    margin-top: 10px;
  }
}

.single-news__categoryList {
  letter-spacing: 0.05em;
  color: var(--color-primary);
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .single-news__categoryList {
    font-size: 13px;
  }
}

.single-news__date {
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .single-news__date {
    font-size: 13px;
  }
}

.single-news__body {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .single-news__body {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.single-news__body .editor-content {
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 2;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .single-news__body .editor-content {
    font-size: 13px;
    letter-spacing: 0.03em;
    padding-bottom: 32px;
  }
}
.single-news__body .editor-content > * + * {
  margin-top: 20px;
}
.single-news__body .editor-content h2 {
  font-size: 28px;
  background-color: var(--color-primary);
  color: white;
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.5;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 10px;
  font-weight: 500;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .single-news__body .editor-content h2 {
    letter-spacing: 0.05em;
    font-size: 20px;
    line-height: 1.2;
  }
}
.single-news__body .editor-content h3 {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.45;
  padding-bottom: 6px;
  font-weight: 500;
  border-bottom: 2px solid var(--color-primary);
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .single-news__body .editor-content h3 {
    font-size: 15px;
    line-height: 1.2;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 3px;
    margin-top: 30px;
  }
}
.single-news__body .editor-content p {
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 767px) {
  .single-news__body .editor-content p {
    padding-left: unset;
    padding-right: unset;
  }
}

.single-news__related {
  border-top: 1px solid #FDD000;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .single-news__related {
    padding-top: 32px;
  }
}

.single-related__heading {
  font-size: 20px;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .single-related__heading {
    font-size: 15px;
    line-height: 1.2;
  }
}

.single-related__btn {
  display: grid;
  place-items: center;
  margin-top: 40px;
}

.single-related__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .single-related__list {
    margin-top: 15px;
    row-gap: 15px;
  }
}

.single-related__btn {
  display: grid;
  place-items: center;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .single-related__btn {
    margin-top: 40px;
  }
}

/* layout > archive > property
============================================================================================================ */
.single-buy #Wrapper, .single-rent #Wrapper {
  background-color: #ffffff;
}

.archive-property__banner {
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .archive-property__banner {
    margin-top: 10.6666666667vw;
  }
}

.archive-property__banner-inner {
  width: 800px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.archive-property__inner {
  max-width: 1280px;
  padding: 80px 64px 160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .archive-property__inner {
    padding: 40px 20px 100px;
  }
}

.archive-property__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 1024px) {
  .archive-property__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .archive-property__list {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.single-property__inner {
  max-width: 1280px;
  padding: 80px 64px 160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .single-property__inner {
    padding: 40px 20px 100px;
  }
}

.single-property-head__label {
  font-size: 0.8666666667rem;
  line-height: 1.3;
  background-color: #172d55;
  color: #fff;
  display: inline-block;
  padding: 5px;
  margin-bottom: 5px;
}

.single-property-head__title h1 {
  font-size: 1.6666666667rem;
  line-height: 1.3;
}

.single-property-head__details {
  margin-top: 10px;
}

.single-property-head__price {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #ff4b00;
  font-weight: 700;
}

.single-property-head__price-money {
  margin-top: 5px;
  font-size: 0.9333333333rem;
  color: #333;
}

.single-property-slider__inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.single-property-slider__inner .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e3dfdf;
}
.single-property-slider__inner .swiper-slide .swiper-slide-bg {
  width: 100%;
  height: 100%;
  max-width: 700px;
  overflow: hidden;
  position: relative;
}
.single-property-slider__inner .swiper-slide .swiper-slide-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-property-slider__inner .mySwiper2 {
  height: auto;
  width: 100%;
  position: relative;
}
.single-property-slider__inner .mySwiper2 .swiper-button-next, .single-property-slider__inner .mySwiper2 .swiper-button-prev {
  background: #172d55;
  padding: 0.3333333333rem;
  width: 60px !important;
  height: 60px !important;
  color: #fff !important;
}
.single-property-slider__inner .mySwiper2 .swiper-button-next:after, .single-property-slider__inner .mySwiper2 .swiper-button-prev:after {
  font-size: 30px !important;
}
.single-property-slider__inner .mySwiper2 .swiper-button-prev {
  left: 0 !important;
}
.single-property-slider__inner .mySwiper2 .swiper-button-next {
  right: 0 !important;
}
.single-property-slider__inner .mySwiper2 .swiper-wrapper {
  position: relative;
}
.single-property-slider__inner .mySwiper2 .swiper-wrapper .swiper-slide {
  height: 450px !important;
}
@media (max-width: 1024px) {
  .single-property-slider__inner .mySwiper2 .swiper-wrapper .swiper-slide {
    height: 300px !important;
  }
}
.single-property-slider__inner .mySwiper {
  height: 120px;
  box-sizing: border-box;
  padding: 10px 0;
}
.single-property-slider__inner .mySwiper .swiper-wrapper .swiper-slide {
  width: 100px !important;
  height: 100px;
  opacity: 0.4;
  cursor: pointer;
}
.single-property-slider__inner .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 3px solid #172d55;
}
.single-property-slider__inner .mySwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-property-point__top {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 20px;
  width: 100%;
  color: #555;
  font-size: 16px;
  background: #fff;
  border: solid 3px #ff4b00;
  box-sizing: border-box;
  border-radius: 10px;
}
.single-property-point__top:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid #fff;
  z-index: 2;
}
.single-property-point__top:after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #ff4b00;
  z-index: 1;
}
.single-property-point__top h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: bold;
}
.single-property-point__top p {
  margin: 0;
  padding: 0;
  font-size: 0.8666666667rem;
}

.single-property-info__wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 10px;
  gap: 20px;
}

.single-property-info__item {
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  align-items: center;
}

.single-property-info__label {
  background-color: #172d55;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.single-property-info__value {
  color: #333;
  font-weight: 500;
  font-size: 0.8666666667rem;
  line-height: 1.2;
}

.single-property-detail__inner {
  padding: 4.6666666667rem 0;
}

.single-property-detail__heading {
  border-top: 0.4rem solid #d5c200;
  border-bottom: 0.1333333333rem solid #212121;
  font-size: 1.8666666667rem;
  font-weight: 700;
  padding: 0.8666666667rem 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.6666666667rem;
}

.single-property-detail__table {
  background-color: #fff;
  width: 100%;
  border: 2px solid #dedede;
}
.single-property-detail__table th {
  background-color: #f7f7f7;
  font-weight: 700;
}
.single-property-detail__table td, .single-property-detail__table th {
  font-size: 0.9333333333rem;
  border-bottom: 1px solid #ededed;
  border-left: 1px solid #ededed;
  padding: var(--ark-padding--cell, 0.5em 0.75em) !important;
  vertical-align: top;
  word-break: break-all;
}

.single-property-contact__wrapper {
  text-align: center;
  background-color: #172d55;
  padding: 3rem 2.6666666667rem 2rem;
}

.single-property-contact__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.single-property-contact__property-name {
  font-size: 0.8666666667rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #fff;
}
.single-property-contact__property-name a {
  color: #d5c200;
  text-decoration: underline;
}

.single-property-contact__columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1024px) {
  .single-property-contact__columns {
    flex-direction: column;
  }
}

.single-property-contact__email {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  flex: 1;
}

.single-property-contact__phone {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  flex: 1;
}

.single-property-contact__subtitle {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
}

.single-property-contact__button {
  display: inline-block;
  background-color: #ff4b00;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  width: 80%;
}

.single-property-contact__phone-link {
  line-height: 2;
  display: block;
  color: inherit;
  text-decoration: none;
}

.single-property-contact__phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-property-contact__phone-icon {
  margin-right: 5px;
  width: 1.3333333333rem;
}

.single-property-contact__phone-number {
  font-size: 1.3333333333rem;
  font-weight: bold;
  color: #172d55;
}

.single-property-contact__phone-hours {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #555;
}

.card-property a {
  height: 100%;
  display: block;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card-property__thumb {
  aspect-ratio: 125/87;
  position: relative;
}
.card-property__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-property__category {
  background-color: #172d55;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 0.9rem;
  font-weight: bold;
  position: absolute;
  left: 0px;
  bottom: 0;
}

.card-property__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-property__details {
  padding: 15px;
}

.card-property__info-row {
  display: flex;
  justify-content: start;
  margin-bottom: 5px;
  border-bottom: 1px solid #bfbfbf;
  padding: 0.3333333333rem 0;
}
.card-property__info-row:last-of-type {
  border-bottom: none;
}

.card-property__info-label {
  font-weight: bold;
  color: #555;
  font-size: 0.8666666667rem;
  min-width: 4rem;
}

.card-property__info-value {
  color: #333;
  font-size: 0.8666666667rem;
}
.card-property__info-value .label-price-reduction {
  font-size: 0.7333333333rem;
  background-color: #00cfd5;
  color: #fff;
  padding: 2px 10px;
  border-radius: 100px;
  margin-left: 0.3333333333rem;
}

/* layout > page
============================================================================ */
/*  layout > page > hojin
============================================================================================================ */
.page-hojin__fv {
  width: 100%;
  height: 648px;
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .page-hojin__fv {
    height: 147.4666666667vw;
    padding-bottom: 30.9333333333vw;
  }
}
.page-hojin__fv:before {
  content: "";
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(102, 102, 102, 0) 100%);
  width: 100%;
  height: 149px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .page-hojin__fv:before {
    height: 39.7333333333vw;
  }
}
.page-hojin__fvInner {
  font-size: 44px;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .page-hojin__fvInner {
    width: 642px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .page-hojin__fvInner {
    font-size: 13px;
    font-size: 6.9333333333vw;
    letter-spacing: 0em;
    width: auto;
  }
}
.page-hojin__fvInner span {
  display: inline-block;
}
@media (max-width: 1024px) {
  .page-hojin__fvInner span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    flex-direction: row;
  }
}
.page-hojin__fvInner > span {
  padding: 4px 20px 9px;
  background: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1024px) {
  .page-hojin__fvInner > span {
    background: transparent;
    padding: 0;
  }
}
.page-hojin__fvInner > span:nth-of-type(2) {
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .page-hojin__fvInner > span:nth-of-type(2) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .page-hojin__fvInner > span:nth-of-type(2) {
    margin-top: 5.3333333333vw;
  }
}
.page-hojin__fvInner > span:nth-of-type(3) {
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .page-hojin__fvInner > span:nth-of-type(3) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .page-hojin__fvInner > span:nth-of-type(3) {
    margin-top: 5.3333333333vw;
  }
}
@media (max-width: 1024px) {
  .page-hojin__fvInner > span > span {
    padding: 4px 20px 9px;
    background: rgba(255, 255, 255, 0.5);
  }
}
@media (max-width: 767px) {
  .page-hojin__fvInner > span > span {
    padding: 0.8vw 2.4vw 1.3333333333vw;
  }
}
@media (max-width: 1024px) {
  .page-hojin__fvInner > span > span:nth-of-type(n + 2) {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .page-hojin__fvInner > span > span:nth-of-type(n + 2) {
    margin-top: 2.1333333333vw;
  }
}
.page-hojin__fvInner > span > span > font {
  color: #19598B;
}
.page-hojin__fvScroll {
  color: white;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.2em;
  padding-bottom: 60px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .page-hojin__fvScroll {
    font-size: 10px;
    font-size: 5.3333333333vw;
    padding-bottom: 16vw;
  }
}
.page-hojin__fvScroll:before {
  content: "";
  background: white;
  width: 2px;
  height: 50px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50% -50%);
  animation: scroll_line 1.4s infinite;
}
@media (max-width: 767px) {
  .page-hojin__fvScroll:before {
    width: 0.5333333333vw;
    height: 13.3333333333vw;
  }
}
@keyframes scroll_line {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.page-hojin__check {
  background: white;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .page-hojin__check {
    padding: 10.6666666667vw 0 16.2666666667vw;
  }
}
.page-hojin__checkInner {
  max-width: 490px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .page-hojin__checkInner {
    max-width: 72.8vw;
  }
}
.page-hojin__checkInner > h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .page-hojin__checkInner > h2 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    text-align: center;
  }
}
.page-hojin__checkInner > ul {
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width: 767px) {
  .page-hojin__checkInner > ul {
    padding-top: 5.3333333333vw;
    row-gap: 5.8666666667vw;
  }
}
.page-hojin__checkInner > ul > li {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
@media (max-width: 767px) {
  .page-hojin__checkInner > ul > li {
    font-size: 8px;
    font-size: 4.2666666667vw;
    -moz-column-gap: 3.4666666667vw;
         column-gap: 3.4666666667vw;
  }
}
.page-hojin__checkInner > ul > li > span {
  min-width: 23px;
  height: 22px;
  margin-top: 2px;
  border: solid 2px #333333;
  border-radius: 1px;
  position: relative;
}
@media (max-width: 767px) {
  .page-hojin__checkInner > ul > li > span {
    min-width: 6.4vw;
    height: 6.4vw;
    margin-top: 0.2666666667vw;
    border-width: 0.5333333333vw;
    border-radius: 0.2666666667vw;
  }
}
.page-hojin__checkInner > ul > li > span:before {
  content: "";
  width: 24px;
  height: 19px;
  background-image: url(./img/page/business/icn_check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 3px;
  bottom: 4px;
}
@media (max-width: 767px) {
  .page-hojin__checkInner > ul > li > span:before {
    width: 6.4vw;
    height: 5.0666666667vw;
    left: 0.8vw;
    bottom: 1.3333333333vw;
  }
}
.page-hojin__achievements {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .page-hojin__achievements {
    margin-top: 16vw;
  }
}
.page-hojin__achievements > ul {
  max-width: 1052px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 1140px) {
  .page-hojin__achievements > ul {
    max-width: 92.2807017544vw;
    -moz-column-gap: 1.7543859649vw;
         column-gap: 1.7543859649vw;
    row-gap: 3.5087719298vw;
  }
}
@media (max-width: 767px) {
  .page-hojin__achievements > ul {
    max-width: 89.3333333333vw;
    padding-top: 10.6666666667vw;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.3333333333vw;
    align-items: center;
    flex-direction: column;
  }
}
.page-hojin__achievements > ul > li {
  width: 516px;
}
@media screen and (max-width: 1140px) {
  .page-hojin__achievements > ul > li {
    width: 45.2631578947vw;
  }
}
@media (max-width: 767px) {
  .page-hojin__achievements > ul > li {
    width: 100%;
  }
}
.page-hojin__achievementsEmbed {
  max-width: 800px;
  width: 100%;
  margin: 160px auto 0;
  aspect-ratio: 16/9;
}
@media (max-width: 1024px) {
  .page-hojin__achievementsEmbed {
    max-width: 78.125vw;
    margin-top: 15.625vw;
  }
}
@media (max-width: 767px) {
  .page-hojin__achievementsEmbed {
    max-width: 89.3333333333vw;
    margin-top: 16vw;
  }
}
.page-hojin__achievementsEmbed iframe {
  width: 100%;
  height: 100%;
}
.page-hojin__service {
  margin-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .page-hojin__service {
    margin-top: 32vw;
    padding-bottom: 32vw;
  }
}
.page-hojin__service > ul {
  max-width: 1052px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 1140px) {
  .page-hojin__service > ul {
    width: 92.2807017544vw;
    padding-top: 7.0175438596vw;
    -moz-column-gap: 1.7543859649vw;
         column-gap: 1.7543859649vw;
    row-gap: 1.7543859649vw;
  }
}
@media (max-width: 767px) {
  .page-hojin__service > ul {
    max-width: 89.3333333333vw;
    padding-top: 10.6666666667vw;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.3333333333vw;
  }
}
.page-hojin__service > ul > li {
  width: 516px;
  padding-top: 169px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1140px) {
  .page-hojin__service > ul > li {
    width: 45.2631578947vw;
  }
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li {
    width: 100%;
    padding-top: 33.0666666667vw;
  }
}
.page-hojin__service > ul > li > figure {
  width: 100%;
  height: 237px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li > figure {
    height: 44.8vw;
  }
}
.page-hojin__service > ul > li > .inner {
  height: 100%;
  padding: 39px 16px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: stretch;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li > .inner {
    padding: 7.4666666667vw 4.2666666667vw 5.3333333333vw;
  }
}
.page-hojin__service > ul > li > .inner:before {
  content: "";
  background: white;
  width: 100%;
  height: 62px;
  clip-path: polygon(0 0, 100% 98%, 100% 100%, 0% 100%);
  position: absolute;
  top: 1px;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li > .inner:before {
    height: 11.7333333333vw;
    top: 0.2666666667vw;
  }
}
.page-hojin__service > ul > li > .inner:after {
  content: "";
  background: white;
  width: 100%;
  height: calc(100% - 62px);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li > .inner:after {
    height: calc(100% - 11.7333333333vw);
  }
}
.page-hojin__service > ul > li > .inner > .cont {
  width: 100%;
}
.page-hojin__service > ul > li > .inner > .cont > h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  color: #19598B;
  width: 100%;
  margin-bottom: 19px;
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li > .inner > .cont > h3 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    line-height: 1.2;
    margin-bottom: 3.2vw;
  }
}
.page-hojin__service > ul > li > .inner > .cont > p {
  width: 100%;
}
.page-hojin__service > ul > li > .inner > .mod-btn {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .page-hojin__service > ul > li > .inner > .mod-btn {
    margin-top: 4.5333333333vw;
  }
}
.page-hojin__permission {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .page-hojin__permission {
    margin-top: 32vw;
  }
}
.page-hojin__permissionCont {
  padding-top: 78px;
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-hojin__permissionCont {
    max-width: 89.3333333333vw;
    padding-top: 10.6666666667vw;
    flex-direction: column;
  }
}
.page-hojin__permissionCont > h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  min-width: 146px;
}
@media (max-width: 767px) {
  .page-hojin__permissionCont > h3 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    line-height: 1.2;
    min-width: auto;
  }
}
.page-hojin__permissionCont > ul {
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  width: 430px;
  padding-top: 2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 767px) {
  .page-hojin__permissionCont > ul {
    font-size: 7px;
    font-size: 3.7333333333vw;
    line-height: 1.2142857143;
    width: 100%;
    padding-top: 5.3333333333vw;
    row-gap: 5.3333333333vw;
  }
}
.page-hojin__contact {
  background: var(--color-recruit);
  padding: 100px 0 160px;
  margin-top: 160px;
}
@media (max-width: 767px) {
  .page-hojin__contact {
    padding: 10.6666666667vw 0 26.6666666667vw;
    margin-top: 32vw;
  }
}
.page-hojin__contactInner {
  background: #F1F1F1;
  max-width: 1056px;
  width: 100%;
  padding: 40px 0;
  margin: 80px auto 0;
}
@media screen and (max-width: 1140px) {
  .page-hojin__contactInner {
    max-width: 92.6315789474vw;
    padding: 3.5087719298vw 0;
    margin-top: 7.0175438596vw;
  }
}
@media (max-width: 1024px) {
  .page-hojin__contactInner {
    max-width: 948px;
  }
}
@media (max-width: 767px) {
  .page-hojin__contactInner {
    max-width: 89.3333333333vw;
    padding: 10.6666666667vw 0;
    margin-top: 10.6666666667vw;
  }
}
.page-hojin__contactInner .tab {
  width: 972px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .page-hojin__contactInner .tab {
    width: 85.2631578947vw;
  }
}
@media (max-width: 1024px) {
  .page-hojin__contactInner .tab {
    width: 740px;
  }
}
@media (max-width: 767px) {
  .page-hojin__contactInner .tab {
    width: 85.8666666667vw;
  }
}
.page-hojin__contactInner .tab .wpcf7-form-control-wrap {
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
}
@media screen and (max-width: 1140px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio {
    -moz-column-gap: 1.4035087719vw;
         column-gap: 1.4035087719vw;
    row-gap: 1.0526315789vw;
  }
}
@media (max-width: 1024px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio {
    -moz-column-gap: 13px;
         column-gap: 13px;
    row-gap: 11px;
  }
}
@media (max-width: 767px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio {
    -moz-column-gap: 2.1333333333vw;
         column-gap: 2.1333333333vw;
    row-gap: 2.6666666667vw;
  }
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  width: 231px;
  margin: 0;
}
@media screen and (max-width: 1140px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 20.2631578947vw;
  }
}
@media (max-width: 1024px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 175px;
  }
}
@media (max-width: 767px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    width: 41.8666666667vw;
  }
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item.is-checked > label {
  color: white;
  background: #19598B;
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item > label {
  background: white;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.4s;
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 600;
  letter-spacing: 0em;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    font-weight: 500;
    line-height: 1.2307692308;
    padding: 2.1333333333vw;
  }
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label:before {
  display: none !important;
}
.page-hojin__contactInner .tab .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label:after {
  display: none !important;
}
.page-hojin__contactInner .wpcf7-form {
  background: transparent;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
.page-hojin__contactInner .wpcf7-form table {
  width: 620px;
  padding-top: 58px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form table {
    width: 78.6666666667vw;
    padding-top: 10.6666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form table tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 29px;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form table tbody {
    row-gap: 6.1333333333vw;
  }
}
.page-hojin__contactInner .wpcf7-form table tbody tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 8px;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form table tbody tr {
    row-gap: 2.6666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form table tbody tr th {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0em;
  text-align: left;
  padding-bottom: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 8px;
       column-gap: 8px;
  border-bottom: solid 1px #909090;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form table tbody tr th {
    font-size: 7px;
    font-size: 3.7333333333vw;
    line-height: 1.2142857143;
    padding-bottom: 2.6666666667vw;
    -moz-column-gap: 1.0666666667vw;
         column-gap: 1.0666666667vw;
    border-bottom-width: 0.2666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form table tbody tr th > span {
  font-size: 14px;
  line-height: 1.4285714286;
  color: #B60000;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form table tbody tr th > span {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.page-hojin__contactInner .wpcf7-form-control-wrap {
  line-height: 1;
  display: block;
}
.page-hojin__contactInner .wpcf7-form input[type=text], .page-hojin__contactInner .wpcf7-form input[type=email], .page-hojin__contactInner .wpcf7-form input[type=date], .page-hojin__contactInner .wpcf7-form input[type=tel], .page-hojin__contactInner .wpcf7-form select, .page-hojin__contactInner .wpcf7-form textarea {
  background: white;
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 29px;
       column-gap: 29px;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-radio {
    align-items: stretch;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 2.6666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin-left: auto;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  line-height: 1;
  display: block;
  cursor: pointer;
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-size: 18px;
  line-height: 1.4444444444;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:before {
  content: "";
  background: white;
  border-radius: 50%;
  border: 2px solid #909090;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:before {
    width: 6.4vw;
    height: 6.4vw;
    margin-right: 2.9333333333vw;
    border-width: 0.5333333333vw;
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #19598B;
  box-shadow: inset 0 0 0 3px white;
  border-color: #2C628C;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
    box-shadow: inset 0 0 0 0.8vw white;
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #19598B;
}
.page-hojin__contactInner .wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.page-hojin__contactInner .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: 0;
}
.page-hojin__contactInner .wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-checkbox .wpcf7-list-item:nth-of-type(n + 2) {
    margin-top: 8vw;
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-list-item-label {
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0em;
  cursor: pointer;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .wpcf7-list-item-label {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
  }
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  background: white;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border: solid 2px #909090;
  border-radius: 3px;
  cursor: pointer;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:before {
    width: 5.8666666667vw;
    height: 5.8666666667vw;
    border-width: 0.5333333333vw;
    border-radius: 0.8vw;
    margin-right: 3.2vw;
  }
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:after {
  content: "";
  width: 14px;
  height: 13px;
  background-image: url(./img/common/icn_check-accept.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 4px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:after {
    width: 3.7333333333vw;
    height: 3.4666666667vw;
    top: 1.8666666667vw;
    left: 1.0666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197EE;
}
.page-hojin__contactInner .wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.page-hojin__contactInner .wpcf7-form .cf7-policy {
  background: white;
  width: 740px;
  height: 228px;
  padding: 20px 24px;
  margin: 40px auto 0;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .cf7-policy {
    width: 78.6666666667vw;
    height: 60.8vw;
    padding: 2.1333333333vw;
    margin-top: 10.6666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form .cf7-policy .p-p .inner {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .cf7-policy .p-p .inner {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form .cf7-policy .p-p .inner h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .cf7-policy .p-p .inner h2 {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form .accept {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .accept {
    margin-top: 9.8666666667vw;
    -moz-column-gap: 1.0666666667vw;
         column-gap: 1.0666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form .accept .wpcf7-list-item {
  margin: 0;
}
.page-hojin__contactInner .wpcf7-form .accept .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.page-hojin__contactInner .wpcf7-form .accept .wpcf7-list-item-label > a {
  font-weight: 700;
  color: #19598B;
  text-decoration: underline;
}
.page-hojin__contactInner .wpcf7-form .accept > span.must {
  color: #B60000;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  display: block;
}
.page-hojin__contactInner .wpcf7-form .submit-buttons {
  margin-top: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .submit-buttons {
    margin-top: 1.3333333333vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: center;
    align-content: normal;
    flex-direction: column;
    row-gap: 1.0666666667vw;
  }
}
.page-hojin__contactInner .wpcf7-form .submit-buttons > span.caution {
  color: #B60000;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 175px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .page-hojin__contactInner .wpcf7-form .submit-buttons > span.caution {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    width: auto;
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0);
  }
}
.page-hojin__contactInner .wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 8px;
}

/* module
============================================================================ */
.mod-sliderTm .swiper {
  overflow: visible;
}
.mod-sliderTm .swiper-scrollbar {
  width: 827px !important;
  height: 14px !important;
  margin-top: 20px;
  position: static !important;
  background-color: white;
  --swiper-scrollbar-size: 14px;
  --swiper-scrollbar-sides-offset: 13%;
  margin-left: 6%;
}
@media (max-width: 767px) {
  .mod-sliderTm .swiper-scrollbar {
    width: 89.3333333333vw !important;
    height: 12px !important;
    --swiper-scrollbar-sides-offset: 0;
    margin-left: unset;
    margin-right: var(--gutter);
    margin-top: 15px;
  }
}

.mod-sliderTm__txt {
  text-align: center;
  margin-top: 15px;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .mod-sliderTm__txt {
    font-size: 14px;
  }
}

/* module > Page Title
============================================================================ */
/* module > form
============================================================================ */
/*////////////////////////// 基本スタイル //////////////////////////*/
input[type=text],
input[type=email],
input[type=date],
input[type=tel],
select,
textarea {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 8px 16px 7px;
  min-height: auto;
  outline: none;
  background: var(--color-cf7-input, #f1f1f1);
  box-sizing: border-box;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  vertical-align: bottom;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, input[type=date]:-moz-placeholder, input[type=tel]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #909090;
}
input[type=text]:placeholder-shown,
input[type=email]:placeholder-shown,
input[type=date]:placeholder-shown,
input[type=tel]:placeholder-shown,
select:placeholder-shown,
textarea:placeholder-shown {
  color: #909090;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #909090;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #909090;
  opacity: 1;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #909090;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #909090;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=date],
  input[type=tel],
  select,
  textarea {
    padding: 9px 12px 8px;
    font-size: 13px;
  }
}
input[type=text][aria-invalid=true],
input[type=email][aria-invalid=true],
input[type=date][aria-invalid=true],
input[type=tel][aria-invalid=true],
select[aria-invalid=true],
textarea[aria-invalid=true] {
  color: var(--color-red);
}

select option:checked {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  background-color: var(--color-primary);
  color: white;
}

input[type=date] {
  max-width: 200px;
}

select {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 65px;
}

/*////////////////////////// テキストエリア //////////////////////////*/
textarea {
  height: 183px;
  overflow-y: scroll;
}

/*////////////////////////// セレクトボックス //////////////////////////*/
select {
  height: 43px;
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
  position: relative;
  background-image: url("./img/common/arw_select.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 10px;
  box-sizing: border-box;
}

::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}

.wpcf7-form {
  padding: 40px 7.7%;
  background: var(--color-cf7-bg, white);
}
@media (max-width: 767px) {
  .wpcf7-form {
    padding: 15px 15px 40px;
  }
}
.wpcf7-form .cf7-body {
  padding-left: 6.9%;
  padding-right: 6.9%;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-body {
    padding-left: unset;
    padding-right: unset;
  }
}
.wpcf7-form .cf7-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-error {
    margin-bottom: 10px;
    padding-top: 5px;
  }
}
.wpcf7-form .cf7-error__txt {
  border-radius: 8px;
  color: var(--color-red);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  background-color: #fed2d2;
  padding-left: 20px;
  padding-right: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-error__txt {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}
.wpcf7-form .cf7-note {
  font-size: 14px;
  color: var(--color-red);
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 8px;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-note {
    font-size: 10px;
  }
}
.wpcf7-form .cf7-note.cf7-note--first {
  margin-top: unset;
  text-align: right;
  margin-bottom: -5px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-note.cf7-note--first {
    margin-bottom: 10px;
  }
}
.wpcf7-form .cf7-heading-confirm {
  text-align: center;
  color: var(--color-primary);
  font-size: 40px;
  letter-spacing: 0.02em;
  line-height: 1.45;
  font-weight: 700;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-heading-confirm {
    font-size: 24px;
    padding-top: 20px;
  }
}
.wpcf7-form .cf7-heading {
  font-size: 20px;
  border-bottom: 1px solid #909090;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-heading {
    font-size: 15px;
  }
}
.wpcf7-form .cf7-heading:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-heading:not(:first-of-type) {
    margin-top: 20px;
  }
}
.wpcf7-form .cf7-heading + .cf7-desc {
  margin-top: 8px;
}
.wpcf7-form .cf7-heading__star {
  color: var(--color-red);
  font-size: 14px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-heading__star {
    font-size: 10px;
  }
}
.wpcf7-form .cf7-term {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-term {
    font-size: 14px;
    margin-top: 10px;
  }
}
.wpcf7-form .cf7-term.cf7-term--bar {
  border-bottom: 1px solid #909090;
}
.wpcf7-form .cf7-term.cf7-term--bar + .cf7-desc {
  margin-top: 8px;
}
.wpcf7-form .cf7-term__star {
  color: var(--color-red);
  font-size: 14px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-term__star {
    font-size: 10px;
  }
}
.wpcf7-form .cf7-desc.cf7-desc--birth {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 12px;
  width: 100%;
}
.wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(1) {
  flex-basis: 138px;
}
.wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(2) {
  flex-basis: 1em;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(2) {
    flex-basis: calc(100% - 200px);
  }
}
.wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(3) {
  flex-basis: 102px;
}
.wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(4) {
  flex-basis: 1em;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(4) {
    flex-basis: calc(100% - 200px);
  }
}
.wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(5) {
  flex-basis: 102px;
}
.wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(6) {
  flex-basis: 1em;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-desc.cf7-desc--birth > *:nth-child(6) {
    flex-basis: calc(100% - 200px);
  }
}
.wpcf7-form .cf7-subheading {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-subheading + .cf7-desc {
    margin-top: 10px;
  }
}
.wpcf7-form-control-wrap {
  line-height: 1;
  display: block;
}
.wpcf7-form .wpcf7-radio {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  row-gap: 5px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-radio {
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 16px;
  }
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  margin-left: unset;
  position: relative;
  cursor: pointer;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  line-height: 1;
  display: block;
  cursor: pointer;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
  font-size: 18px;
  line-height: 1.4444444444;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 13px;
  }
}
.wpcf7-form .wpcf7-radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #19598B;
  box-shadow: inset 0 0 0 3px white;
  border-color: #2C628C;
}
.wpcf7-form .wpcf7-radio input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #19598B;
}
.wpcf7-form .wpcf7-radio input[type=radio] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.wpcf7-form .wpcf7-checkbox {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-checkbox {
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 16px;
  }
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  display: block;
  margin-left: unset;
}
.wpcf7-form .wpcf7-list-item-label {
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  cursor: pointer;
}
@media (max-width: 767px) {
  .wpcf7-form .wpcf7-list-item-label {
    font-size: 13px;
  }
}
.wpcf7-form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  background: var(--color-primary);
  border: solid 2px var(--color-primary);
}
.wpcf7-form input[type=checkbox]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197ee;
}
.wpcf7-form input[type=checkbox] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.wpcf7-form .form__row.file input[type=file] {
  display: none;
}
.wpcf7-form .form__row.file .form__col {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
}
.wpcf7-form .form__row.file .form__col .file_name {
  display: inline-block;
  word-break: break-all;
  line-height: 1.2;
  max-width: 40%;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .wpcf7-form .form__row.file .form__col .file_name {
    max-width: 60%;
    margin-top: 5.3333333333vw;
    margin-left: 0;
  }
}
.wpcf7-form .form__row.file a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wpcf7-form .file_label {
  font-size: 16px;
  font-size: 1.1428571429rem;
  display: block;
  width: 172px;
  padding: 2px 7px;
  min-height: auto;
  border-radius: 10px;
  outline: none;
  text-align: center;
  background: #ddd;
  cursor: pointer;
}
.wpcf7-form .file_label:-moz-placeholder {
  color: #aaa;
}
.wpcf7-form .file_label:placeholder-shown {
  color: #aaa;
}
.wpcf7-form .file_label::-webkit-input-placeholder {
  color: #aaa;
}
.wpcf7-form .file_label:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.wpcf7-form .file_label::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.wpcf7-form .file_label:-ms-input-placeholder {
  color: #aaa;
}
@media (max-width: 767px) {
  .wpcf7-form .file_label {
    font-size: 14px;
    font-size: 7.4666666667vw;
    padding: 0 3.7333333333vw;
    border-radius: 4vw;
  }
}
.wpcf7-form .cf7-policy {
  background: var(--color-cf7-input, #f1f1f1);
  height: 228px;
  padding: 20px 24px;
  margin: 40px auto 0;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-policy {
    margin-top: 20px;
  }
}
.wpcf7-form .cf7-policy .p-p .inner {
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-policy .p-p .inner {
    letter-spacing: 0.03em;
    font-size: 13px;
  }
}
.wpcf7-form .cf7-policy .p-p .inner h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 767px) {
  .wpcf7-form .cf7-policy .p-p .inner h2 {
    letter-spacing: 0.03em;
    font-size: 13px;
  }
}
.wpcf7-form .accept {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
@media (max-width: 767px) {
  .wpcf7-form .accept {
    margin-top: 20px;
  }
}
.wpcf7-form .accept .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form .accept .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.wpcf7-form .accept .wpcf7-list-item-label > a {
  font-weight: 700;
  color: #19598B;
  text-decoration: underline;
}
.wpcf7-form .accept > span.must {
  color: #B60000;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  display: block;
}
@media (max-width: 767px) {
  .wpcf7-form .accept > span.must {
    font-size: 10px;
  }
}
.wpcf7-form .submit-buttons {
  margin-top: 20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 767px) {
  .wpcf7-form .submit-buttons {
    flex-direction: column-reverse;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 12px;
  }
}
.wpcf7-form .submit-buttons > span.caution {
  color: #B60000;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 175px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
}
.wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 8px;
}

/*///////////////// チェックボックス //////////////////////////*/
/*////////////////////////// ファイル添付 //////////////////////////*/
.page-contact.confirm .file_label {
  display: none;
}

/*////////////////////////// ボタン //////////////////////////*/
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
}

/*////////////////////////// 入力画面・確認画面 //////////////////////////*/
.wpcf7-spinner {
  display: none;
}

.resident-cancel__form input[type=radio] {
  position: absolute;
  opacity: 0;
}
.resident-cancel__form input[type=radio] + .wpcf7-list-item-label:before {
  content: "";
  background: white;
  border-radius: 50%;
  border: 2px solid #909090;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
@media (max-width: 767px) {
  .resident-cancel__form input[type=radio] + .wpcf7-list-item-label:before {
    width: 22px;
    height: 22px;
  }
}
.resident-cancel__form input[type=radio]:checked + .wpcf7-list-item-label:before {
  background-color: #19598B;
  box-shadow: inset 0 0 0 3px white;
  border-color: #2C628C;
}
.resident-cancel__form input[type=radio]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #19598B;
}
.resident-cancel__form input[type=radio] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}
.resident-cancel__form input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.resident-cancel__form input[type=checkbox] + .wpcf7-list-item-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: normal;
  flex-direction: row;
  position: relative;
}
.resident-cancel__form input[type=checkbox] + .wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  background: white;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border: solid 2px #909090;
  border-radius: 3px;
  cursor: pointer;
  transition: all 250ms ease;
}
.resident-cancel__form input[type=checkbox] + .wpcf7-list-item-label:after {
  content: "";
  width: 14px;
  height: 13px;
  background-image: url(./img/common/icn_check-accept-white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 4px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.resident-cancel__form input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.resident-cancel__form input[type=checkbox]:checked + .wpcf7-list-item-label:before {
  background: var(--color-primary);
  border: solid 2px var(--color-primary);
}
.resident-cancel__form input[type=checkbox]:focus + .wpcf7-list-item-label:before {
  outline: none;
  border-color: #3197ee;
}
.resident-cancel__form input[type=checkbox] + .wpcf7-list-item-label:empty:before {
  margin-right: 0;
}

/* module > btn
============================================================================ */
.mod-btn {
  color: #19598B;
  letter-spacing: 0em;
  width: auto;
  padding: 1px 38px;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  border: solid 2px #19598B;
  border-radius: 42px;
  transition: 0.4s;
}
.mod-btn[aria-current=true] {
  color: white;
  background: #19598B;
  opacity: 1;
}
.mod-btn:hover {
  color: white;
  background: #19598B;
  opacity: 1;
}
.mod-btn.yellow {
  color: white;
  background: transparent;
  border-color: #FDD000;
}
.mod-btn.yellow:hover {
  color: #19598B;
  background: #FDD000;
}

.btn__more {
  font-size: 14px;
  font-size: 1rem;
  position: relative;
  display: block;
  width: 261px;
  padding: 15px 0;
  margin: 50px auto 0;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  left: 0.05em;
  background: black;
  color: white;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn__more {
    font-size: 13px;
    font-size: 6.9333333333vw;
    width: 116vw;
    padding-bottom: 10.6666666667vw;
    margin-top: 22.6666666667vw;
  }
}
.btn__more:hover {
  opacity: 1;
}

.btn-anchor {
  border: 2px solid currentColor;
  color: var(--color-primary);
  border-radius: 40px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  padding: 10px 57px;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.btn-anchor:hover {
  color: white;
  background-color: var(--color-primary);
  opacity: 1;
  border: 2px solid var(--color-primary);
}
@media (max-width: 767px) {
  .btn-anchor {
    padding: 3px 40px;
    min-height: 34px;
  }
}

.btn-anchor__txt {
  font-size: 14px;
  line-height: 1;
}

/*  module > breadcrumbs
============================================================================================================ */
/* module > pagination （WP-Pagenavi）
============================================================================ */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 8px;
       column-gap: 8px;
  justify-content: center;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink {
  border: 1px solid currentColor;
  color: var(--color-primary);
  height: 30px;
  min-width: 34px;
  display: grid;
  place-items: center;
  padding: 5px;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .page:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: #448CC5;
  color: white;
  border: 1px solid #448CC5;
  opacity: 1;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 0;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  display: block;
  width: 9px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  background-color: currentColor; /* 色は文字色に追従 */
  -webkit-mask: url('data:image/svg+xml;utf8,	<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 12">	<path d="M1.13953 1L7 6L1 11" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-miterlimit="4.10912"/>	</svg>') no-repeat center/contain;
  mask: url('data:image/svg+xml;utf8,	<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 12">	<path d="M1.13953 1L7 6L1 11" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-miterlimit="4.10912"/>	</svg>') no-repeat center/contain;
}
.wp-pagenavi .previouspostslink::before {
  transform: translate(-60%, -50%) rotate(180deg);
}
.wp-pagenavi .current {
  background-color: var(--color-primary);
  border: 1px solid currentColor;
  color: white;
  height: 30px;
  min-width: 34px;
  display: grid;
  place-items: center;
  padding: 5px;
  font-size: 16px;
  letter-spacing: 0.05em;
  border-radius: 4px;
  line-height: 1;
}

.service-child .common-pageheader__bg {
  height: 400px;
}
@media (max-width: 767px) {
  .service-child .common-pageheader__bg {
    height: auto;
  }
}

.common-pageheader {
  display: grid;
  max-height: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .common-pageheader {
    aspect-ratio: 375/257;
    width: 100%;
    max-height: 300px;
  }
}

.common-pageheader__bg {
  grid-area: 1/-1;
}

.common-pageheader__bgImg {
  max-height: 400px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.common-pageheader__body {
  grid-area: 1/-1;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.common-pageheader__en {
  text-transform: capitalize;
  font-size: clamp(20px, 3.0188679245vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  color: white;
  filter: var(--drop-shadow);
  font-family: var(--fontFamily-en);
}
@media (max-width: 767px) {
  .common-pageheader__en {
    font-size: 10px;
    font-size: 5.3333333333vw;
  }
}

.common-pageheader__bar {
  margin-top: 10px;
  margin-bottom: 15px;
  height: 3px;
  display: block;
  width: 100%;
  background-color: var(--color-primary);
}
@media (max-width: 767px) {
  .common-pageheader__bar {
    margin-top: 8px;
    margin-bottom: 7px;
  }
}

.common-pageheader__ja {
  font-size: clamp(32px, 5.6603773585vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  color: white;
  filter: var(--drop-shadow);
  padding-left: 0.2em;
  padding-right: 0.2em;
}
@media (max-width: 767px) {
  .common-pageheader__ja {
    font-size: 32px;
  }
}

.common-pageheader__overview {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.36);
  margin-top: 23px;
}
@media (max-width: 767px) {
  .common-pageheader__overview {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
    text-shadow: 0px 0px 3.2vw rgba(0, 0, 0, 0.36);
    margin-top: 2.1333333333vw;
  }
}

.common-pageheader__cta {
  width: 274px;
  height: 95px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
}
@media (max-width: 767px) {
  .common-pageheader__cta {
    left: 50%;
    right: auto;
    top: calc(100% - 55px);
    bottom: auto;
    transform: translateX(-50%);
  }
}
.common-pageheader__cta:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(109.68deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.common-pageheader__cta-inner {
  padding: 12px 20px 11px;
  position: relative;
}

.common-pageheader__cta-ttl {
  color: white;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .common-pageheader__cta-ttl {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}

.common-pageheader__cta-btn {
  color: white;
  background: #19598B;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  width: 100%;
  display: block;
  padding: 9px 40px 11px;
  border-radius: 40px;
  box-shadow: 0px 5px 21px rgba(0, 0, 0, 0.25);
}

.heading-bar {
  color: var(--color-primary);
  font-size: 40px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  border-left: 7px solid #FDD000;
  padding-left: 5px;
  translate: -3px;
}
@media (max-width: 767px) {
  .heading-bar {
    line-height: 1.0416666667;
    border-left: 4px solid #FDD000;
    translate: -2px;
    padding-left: 4px;
    font-size: 24px;
  }
}
.heading-bar.heading-bar--white {
  color: white;
}

.mod-tabmenu__tablist {
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .mod-tabmenu__tablist {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.mod-tabmenu__tab {
  background-color: var(--color-primary);
  color: white;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-size: 18px;
  text-align: center;
  min-width: 134px;
  border-top: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .mod-tabmenu__tab {
    border-top: 1px solid var(--color-primary);
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
    margin-bottom: -1px;
  }
}
@media (max-width: 767px) {
  .mod-tabmenu__tab {
    font-size: 14px;
    min-width: 98px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
}
.mod-tabmenu__tab[aria-selected=true] {
  background-color: white;
  border-bottom: 2px solid white;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .mod-tabmenu__tab[aria-selected=true] {
    border-bottom: 1px solid white;
  }
}

.mod-tabmenu__tabpanel {
  border: 2px solid var(--color-primary);
  background-color: white;
}
@media (max-width: 767px) {
  .mod-tabmenu__tabpanel {
    border: 1px solid var(--color-primary);
  }
}
.mod-tabmenu__tabpanel.mod-tabmenu__tabpanel--radius {
  border-radius: 20px;
}
.mod-tabmenu__tabpanel.mod-tabmenu__tabpanel--padding {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 7.5471698113%;
  padding-right: 7.5471698113%;
}
@media (max-width: 767px) {
  .mod-tabmenu__tabpanel.mod-tabmenu__tabpanel--padding {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.card-portfolio__head {
  position: relative;
}

.card-portfolio__category {
  position: absolute;
  top: 0;
  left: 0;
}

.card-portfolio__thumbnail {
  aspect-ratio: 480/292;
}
@media (max-width: 767px) {
  .card-portfolio__thumbnail {
    aspect-ratio: 162/99;
  }
}

.card-portfolio__thumbnailImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-portfolio__body {
  background-color: var(--color-primary);
  color: white;
  padding: 15px 20px 20px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media (max-width: 767px) {
  .card-portfolio__body {
    padding: 8px;
  }
}

.card-portfolio__ttl {
  font-size: 20px;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .card-portfolio__ttl {
    font-size: 12px;
    line-height: 1.5;
  }
}

.card-portfolio__subtitle {
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 2;
}
@media (max-width: 767px) {
  .card-portfolio__subtitle {
    font-size: 10px;
  }
}

.label-category {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.8571428571;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 114px;
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .label-category {
    font-size: 10px;
    min-width: 66px;
  }
}

.label-category--yellow {
  background-color: #FDD000;
  color: white;
}

.label-category--primary {
  background-color: var(--color-primary);
  color: white;
}

.row-related {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .row-related {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

.row-related__link {
  display: grid;
  grid-template-columns: 100px 1fr;
  -moz-column-gap: 130px;
       column-gap: 130px;
}
@media (max-width: 767px) {
  .row-related__link {
    grid-template-columns: 1fr;
  }
}

.row-related__ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.row-news {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  border-top: 1px solid #909090;
  border-left: 1px solid #909090;
  padding-top: 12px;
  padding-left: 20px;
  padding-right: 20px;
  height: 100px;
}
@media (max-width: 767px) {
  .row-news {
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
  }
}

.row-news__link {
  display: grid;
  align-items: center;
  grid-template-columns: 100px 100px 120px 1fr;
  -moz-column-gap: 25px;
       column-gap: 25px;
  margin-top: 6px;
}
@media (max-width: 767px) {
  .row-news__link {
    display: grid;
    grid-template-columns: 85px 1fr;
    grid-template-rows: auto auto;
  }
  .row-news__link > *:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .row-news__link > *:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .row-news__link > *:nth-child(3) {
    grid-area: 2/1/3/2;
  }
  .row-news__link > *:nth-child(4) {
    grid-area: 2/2/3/3;
  }
}
.row-news__link.no-thumb {
  grid-template-columns: 100px 100px 1fr;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .row-news__link.no-thumb {
    grid-template-columns: 65px 1fr;
    row-gap: 2px;
    margin-top: 0;
  }
  .row-news__link.no-thumb > *:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .row-news__link.no-thumb > *:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  .row-news__link.no-thumb > *:nth-child(3) {
    grid-area: 2/1/3/3;
  }
}
.row-news__link img {
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .row-news__link img {
    width: 90px;
    height: 60px;
  }
}

.row-news__category {
  color: var(--color-primary);
}

.row-news__ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mod-profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 16px;
}
@media (max-width: 767px) {
  .mod-profile {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.mod-profile > *:nth-child(1) {
  grid-area: 1/1/3/2;
}
@media (max-width: 767px) {
  .mod-profile > *:nth-child(1) {
    grid-area: auto;
  }
}
.mod-profile > *:nth-child(2) {
  grid-area: 1/2/2/3;
}
@media (max-width: 767px) {
  .mod-profile > *:nth-child(2) {
    grid-area: auto;
  }
}
.mod-profile > *:nth-child(3) {
  grid-area: 2/2/3/3;
}
@media (max-width: 767px) {
  .mod-profile > *:nth-child(3) {
    grid-area: auto;
  }
}

.mod-profile__upper {
  background-color: var(--color-primary);
  color: white;
  padding: 8px;
}

.mod-profile__name {
  line-height: 1.5;
  font-size: 20px;
}
@media (max-width: 767px) {
  .mod-profile__name {
    font-size: 15px;
  }
}

.mod-profile__sub {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .mod-profile__sub {
    font-size: 14px;
  }
}

.mod-profile__intro {
  line-height: 2;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .mod-profile__intro {
    font-size: 13px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 767px) {
  .mod-profile__thumbnail {
    aspect-ratio: 335/200;
  }
}

.mod-profile__thumbnailImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sliderItem-interview__link:hover {
  opacity: 1;
}

.sliderItem-interview__body {
  position: relative;
}

.sliderItem-interview__ttl {
  position: absolute;
  bottom: 12px;
  left: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
@media (max-width: 767px) {
  .sliderItem-interview__ttl {
    font-size: 12px;
  }
}

.sliderItem-interview__ttlParts {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(transparent 0%, white 0%);
  padding: 5px;
}
.sliderItem-interview__ttlParts:not(:first-of-type) {
  margin-top: 8px;
  padding: 8px;
}

.sliderItem-interview__info {
  background-color: #265989;
  position: absolute;
  top: 0;
  right: 0;
  translate: 20% -20%;
  border-radius: 999em;
  color: white;
  text-align: center;
  aspect-ratio: 1/1;
  width: 150px;
  padding: 12px;
  display: grid;
  place-items: center;
  transition: width 0.3s;
  z-index: 3;
}
@media (max-width: 767px) {
  .sliderItem-interview__info {
    width: 116px;
    padding: 8px;
    translate: 8px -8px;
  }
}

.sliderItem-interview__infoUpper {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sliderItem-interview__infoUpper {
    font-size: 10px;
  }
}

.sliderItem-interview__infoMiddle {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sliderItem-interview__infoMiddle {
    font-size: 10px;
  }
}

.sliderItem-interview__infoLower {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .sliderItem-interview__infoLower {
    font-size: 14px;
    margin-top: 10px;
  }
}

.sliderItem-interview__thumbnail {
  aspect-ratio: 11/9;
  position: relative;
}
.sliderItem-interview__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sliderItem-interview__hoverTxt {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, #D9D9D9 70%, transparent);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.sliderItem-interview__link:hover .sliderItem-interview__hoverTxt {
  opacity: 1;
}

.sliderItem-interview__hoverTxtBody {
  display: flex;
  justify-content: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
}

.sliderItem-interviewOther {
  color: white;
}

.sliderItem-interviewOther__thumbnailImg {
  aspect-ratio: 243/324;
}

.sliderItem-interviewOther__body {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .sliderItem-interviewOther__body {
    padding-bottom: unset;
  }
}

.sliderItem-interviewOther__name {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sliderItem-interviewOther__name {
    font-size: 13px;
  }
}

.sliderItem-interviewOther__sub {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sliderItem-interviewOther__sub {
    font-size: 13px;
  }
}

.sliderItem-interviewOther__txt {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 20px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sliderItem-interviewOther__txt {
    font-size: 12px;
    margin-top: 12px;
  }
}

.sliderItem-interviewOther__btn {
  margin-top: 20px;
}

/* module > ixo
============================================================================ */
.mod-ixo {
  background: linear-gradient(126.02deg, #D99730 26.73%, #FFD84B 40.69%, #FFFAB4 50%, #FFD84B 59.31%, #D99730 73.27%);
  position: relative;
  z-index: 1;
}
.mod-ixo__cont {
  color: white;
  background: #122C51;
  padding: 2.5vw 0;
  clip-path: polygon(0 0, 100% 34%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 1280px) {
  .mod-ixo__cont {
    padding: 32px 0;
  }
}
@media (max-width: 1024px) {
  .mod-ixo__cont {
    padding: 64px 0;
  }
}
@media (max-width: 767px) {
  .mod-ixo__cont {
    padding: 16vw 0 10.6666666667vw;
    clip-path: polygon(0 0, 100% 37.5%, 100% 100%, 0% 100%);
  }
}
.mod-ixo__inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 64px;
       column-gap: 64px;
}
@media screen and (max-width: 1280px) {
  .mod-ixo__inner {
    max-width: 91.40625vw;
    -moz-column-gap: 5vw;
         column-gap: 5vw;
  }
}
@media (max-width: 1024px) {
  .mod-ixo__inner {
    padding: 0 64px;
    max-width: none;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .mod-ixo__inner {
    padding: 0 5.3333333333vw;
  }
}
.mod-ixo__inner > figure {
  line-height: 1;
  min-width: 227px;
  width: 227px;
}
@media (max-width: 767px) {
  .mod-ixo__inner > figure {
    min-width: auto;
    width: 31.2vw;
  }
}
.mod-ixo__inner > figure > img {
  display: block;
}
.mod-ixo__inner .cont {
  padding-top: 98px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: normal;
  flex-direction: row;
  -moz-column-gap: 64px;
       column-gap: 64px;
}
@media screen and (max-width: 1280px) {
  .mod-ixo__inner .cont {
    -moz-column-gap: 5vw;
         column-gap: 5vw;
  }
}
@media (max-width: 1024px) {
  .mod-ixo__inner .cont {
    padding-top: 42px;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (max-width: 767px) {
  .mod-ixo__inner .cont {
    padding-top: 10.6666666667vw;
  }
}
.mod-ixo__inner .cont > p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: 589px;
  padding-bottom: 46px;
}
@media screen and (max-width: 1280px) {
  .mod-ixo__inner .cont > p {
    width: 46.015625vw;
  }
}
@media (max-width: 1024px) {
  .mod-ixo__inner .cont > p {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mod-ixo__inner .cont > p {
    font-size: 7px;
    font-size: 3.7333333333vw;
    padding: 0 1.0666666667vw 10.6666666667vw;
  }
}
.mod-ixo__inner .cont .mod-btn {
  min-width: 150px;
}
@media (max-width: 767px) {
  .mod-ixo__inner .cont .mod-btn {
    min-width: auto;
  }
}

/* module > top
============================================================================ */
/*  module > top > fv
============================================================================================================ */
.top-fv {
  width: 100%;
  position: relative;
}
.top-fv__inner {
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 40vw;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-fv__inner {
    height: 585px;
  }
}
@media (max-width: 767px) {
  .top-fv__inner {
    height: 142.4vw;
  }
}
.top-fv__cont {
  width: 100%;
  height: 100%;
  padding-top: 9.375vw;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  row-gap: 17px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .top-fv__cont {
    padding-top: 120px;
  }
}
@media (max-width: 1024px) {
  .top-fv__cont {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .top-fv__cont {
    padding-top: 21.3333333333vw;
    row-gap: 1.8666666667vw;
  }
}
.top-fv__cont:before {
  content: "";
  width: 100%;
  height: 7.8125vw;
  background-image: url(./img/top/fv/icn_shape.svg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1280px) {
  .top-fv__cont:before {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .top-fv__cont:before {
    height: 25.8666666667vw;
    background-image: url(./img/top/fv/icn_shape-sp.svg);
    bottom: -0.2666666667vw;
  }
}
.top-fv__cont > h2 {
  font-size: 56px;
  line-height: 1.4464285714;
  position: relative;
  z-index: 1;
}
.top-fv__cont > h2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 73px;
  left: -17px;
  z-index: -1;
  bottom: 0;
  background-color: white;
}
@media (max-width: 767px) {
  .top-fv__cont > h2::after {
    height: 24vw;
    left: -1.0666666667vw;
  }
}
@media (max-width: 767px) {
  .top-fv__cont > h2 {
    font-size: 16px;
    font-size: 8.5333333333vw;
    line-height: 1.4375;
    letter-spacing: 0.05em;
  }
}
.top-fv__cont > p {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0em;
  position: relative;
  z-index: 1;
}
.top-fv__cont > p::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 29px;
  left: -7px;
  z-index: -1;
  bottom: 0;
  background-color: white;
}
@media (max-width: 767px) {
  .top-fv__cont > p::after {
    height: 10.6666666667vw;
    left: -1.6vw;
    bottom: -1.0666666667vw;
  }
}
@media (max-width: 767px) {
  .top-fv__cont > p {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.2307692308;
    margin-top: 2.6666666667vw;
  }
}
.top-fv__scroll {
  color: #122C51;
  font-size: 16px;
  line-height: 1.6875;
  letter-spacing: 0.2em;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  row-gap: 7px;
  position: absolute;
  left: 50%;
  bottom: -160px;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 767px) {
  .top-fv__scroll {
    display: none;
  }
}
.top-fv__scroll-arw {
  line-height: 1;
  width: 31px;
  display: block;
}
.top-fv__scroll-arw svg {
  width: 100%;
  height: 100%;
  display: block;
}
.top-fv__banner {
  max-width: 1280px;
  width: 100%;
  margin: -100px auto 0;
  padding: 0 32px 0;
}
@media (max-width: 767px) {
  .top-fv__banner {
    padding: 0;
    position: absolute;
    left: 50%;
    bottom: -7.4666666667vw;
    transform: translateX(-50%);
  }
}
.top-fv__banner-wrapper .swiper-pagination {
  display: none;
}
@media (max-width: 767px) {
  .top-fv__banner-wrapper .swiper-pagination {
    width: 80%;
    margin: 12px auto 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    flex-direction: row;
    position: relative;
    left: auto !important;
    bottom: auto !important;
    gap: 12px;
  }
}
.top-fv__banner-wrapper .swiper-pagination .swiper-pagination-bullet {
  background: #D9D9D9;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.top-fv__banner-wrapper .swiper-pagination .swiper-pagination-bullet-active {
  background: #2C628C;
}
.top-fv__banner-list {
  padding: 15px 0;
}
@media (max-width: 767px) {
  .top-fv__banner-list.swiper-wrapper {
    display: flex;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.top-fv__banner-item {
  width: 292px !important;
  height: auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  background: white;
}
.top-fv__banner-item.swiper-slide {
  width: auto;
}
@media (max-width: 767px) {
  .top-fv__banner-item.swiper-slide {
    width: 70.6666666667vw !important;
    margin: 0 2.6666666667vw;
  }
}
.top-fv__banner-link {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1.7804878049;
}

/*  module > top > flow
============================================================================================================ */
.top-flow {
  padding: 46px 0 120px;
  background: linear-gradient(to top, #2C628C 0%, rgba(255, 255, 255, 0) 69.71%);
}
@media (max-width: 767px) {
  .top-flow {
    padding: 5.6vw 0 16vw;
  }
}
.top-flow__inner {
  max-width: 1028px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .top-flow__inner {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .top-flow__inner {
    max-width: 89.3333333333vw;
  }
}
.top-flow__tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1024px) {
  .top-flow__tab {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 767px) {
  .top-flow__tab {
    width: 79.2vw;
    margin: 0 auto;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 4.2666666667vw;
  }
}
.top-flow__tab button {
  line-height: 1.5;
  color: white;
  background: #448CC5;
  width: 158px;
  padding: 13px 11px 11px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  border-radius: 10px 10px 0px 0px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .top-flow__tab button {
    width: 142px;
    padding: 1.26953125vw 4px 1.07421875vw;
  }
}
@media (max-width: 767px) {
  .top-flow__tab button {
    font-size: 7px;
    font-size: 3.7333333333vw;
    width: 100%;
    padding: 3.2vw 2.9333333333vw;
    border-radius: 2.6666666667vw;
  }
}
@media (max-width: 767px) {
  .top-flow__tab button:before {
    content: "";
    width: 3.7333333333vw;
    height: 2.4vw;
    background-image: url(./img/top/flow/icn_arw.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 2.9333333333vw;
    transform: translateY(-50%);
  }
}
.top-flow__tab button.is-active {
  background: #19598B;
}
.top-flow__panel {
  background: white;
  width: 100%;
  padding: 48px 0 40px;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .top-flow__panel {
    padding: 48px 5 40px;
  }
}
@media (max-width: 767px) {
  .top-flow__panel {
    padding: 9.8666666667vw 5.3333333333vw 10.6666666667vw;
    margin-top: 10.6666666667vw;
  }
}
.top-flow__panelInner {
  width: 905px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .top-flow__panelInner {
    width: 88.37890625vw;
  }
}
@media (max-width: 767px) {
  .top-flow__panelInner {
    width: 100%;
  }
}
.top-flow__panelItem {
  display: none;
}
.top-flow__panelItem.is-active {
  display: block;
}
.top-flow__panelItem .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
.top-flow__panelItem .inner > h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner > h3 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    line-height: 1.45;
    margin-bottom: 6.6666666667vw;
  }
}
.top-flow__panelItem .inner .cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
.top-flow__panelItem .inner .cont .flow {
  padding-bottom: 59px;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow {
    width: 100%;
    padding-bottom: 8.5333333333vw;
  }
}
.top-flow__panelItem .inner .cont .flow > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 1024px) {
  .top-flow__panelItem .inner .cont .flow > ul {
    -moz-column-gap: 1.953125vw;
         column-gap: 1.953125vw;
  }
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow > ul {
    flex-direction: column;
    row-gap: 5.3333333333vw;
  }
}
.top-flow__panelItem .inner .cont .flow > ul > li {
  width: 165px;
}
@media (max-width: 1024px) {
  .top-flow__panelItem .inner .cont .flow > ul > li {
    width: 16.11328125vw;
  }
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow > ul > li {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: stretch;
    flex-direction: row;
    -moz-column-gap: 5.3333333333vw;
         column-gap: 5.3333333333vw;
  }
}
.top-flow__panelItem .inner .cont .flow > ul > li:last-of-type .flow-step:before {
  width: 100%;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow > ul > li:last-of-type .flow-step:before {
    display: none;
  }
}
.top-flow__panelItem .inner .cont .flow-step {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  width: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow-step {
    min-width: 12vw;
    width: 12vw;
    font-size: 5px;
    font-size: 2.6666666667vw;
  }
}
.top-flow__panelItem .inner .cont .flow-step:before {
  content: "";
  width: calc(100% + 20px);
  height: 3px;
  background: #FDD000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1024px) {
  .top-flow__panelItem .inner .cont .flow-step:before {
    width: calc(100% + 1.953125vw);
  }
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow-step:before {
    width: 0.5333333333vw;
    height: calc(100% + 5.3333333333vw);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-flow__panelItem .inner .cont .flow-step .circle {
  color: white;
  background: #19598B;
  width: 64px;
  height: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow-step .circle {
    width: 12vw;
    height: 12vw;
  }
}
.top-flow__panelItem .inner .cont .flow-step .circle > span {
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow-step .circle > span {
    font-size: 10px;
    font-size: 5.3333333333vw;
  }
}
.top-flow__panelItem .inner .cont .flow-cont {
  width: 134px;
  padding-top: 12px;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .top-flow__panelItem .inner .cont .flow-cont {
    width: 13.0859375vw;
    padding-top: 1.171875vw;
  }
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow-cont {
    width: 100%;
    padding-top: 0;
    align-items: flex-start;
  }
}
.top-flow__panelItem .inner .cont .flow-cont > span {
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 13px;
  display: block;
}
@media (max-width: 1024px) {
  .top-flow__panelItem .inner .cont .flow-cont > span {
    margin-top: 1.26953125vw;
  }
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .flow-cont > span {
    font-size: 7px;
    font-size: 3.7333333333vw;
    line-height: 1.5;
    margin-top: 0;
  }
}
.top-flow__panelItem .inner .cont > p {
  width: 100%;
  padding: 0 6px;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont > p {
    padding: 0;
  }
}
.top-flow__panelItem .inner .cont .mod-btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .top-flow__panelItem .inner .cont .mod-btn {
    margin-top: 10.6666666667vw;
  }
}

/*  module > top > news
============================================================================================================ */
.top-news {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .top-news {
    margin-top: 17.8666666667vw;
  }
}
.top-news__inner {
  max-width: 940px;
  width: 100%;
  padding-top: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .top-news__inner {
    max-width: 91.796875vw;
    padding-top: 7.8125vw;
  }
}
@media (max-width: 767px) {
  .top-news__inner {
    max-width: 89.3333333333vw;
    padding-top: 10.6666666667vw;
  }
}
.top-news__inner > ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 1024px) {
  .top-news__inner > ul {
    row-gap: 2.34375vw;
  }
}
@media (max-width: 767px) {
  .top-news__inner > ul {
    row-gap: 3.2vw;
  }
}
.top-news__inner > ul > li {
  border-top: solid 1px #909090;
  border-left: solid 1px #909090;
}
@media (max-width: 767px) {
  .top-news__inner > ul > li {
    border-top-width: 0.2666666667vw;
    border-left-width: 0.2666666667vw;
  }
}
.top-news__inner > ul > li > a {
  padding: 29px 20px 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 33px;
       column-gap: 33px;
}
@media (max-width: 1024px) {
  .top-news__inner > ul > li > a {
    padding: 2.83203125vw 1.953125vw 1.953125vw;
    -moz-column-gap: 3.22265625vw;
         column-gap: 3.22265625vw;
  }
}
@media (max-width: 767px) {
  .top-news__inner > ul > li > a {
    padding: 4.8vw 5.0666666667vw 2.4vw;
    flex-direction: column;
  }
}
.top-news__inner > ul > li > a:hover > h3 {
  color: #909090;
}
.top-news__inner > ul > li > a > .info {
  min-width: 240px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 1024px) {
  .top-news__inner > ul > li > a > .info {
    min-width: 23.4375vw;
    -moz-column-gap: 4.8828125vw;
         column-gap: 4.8828125vw;
  }
}
@media (max-width: 767px) {
  .top-news__inner > ul > li > a > .info {
    min-width: auto;
    width: 100%;
    margin-bottom: 2.1333333333vw;
    -moz-column-gap: 6.9333333333vw;
         column-gap: 6.9333333333vw;
  }
}
.top-news__inner > ul > li > a > .info > span {
  color: #19598B;
  display: block;
}
.top-news__inner > ul > li > a > h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .top-news__inner > ul > li > a > h3 {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
}
.top-news__inner > .mod-btn {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .top-news__inner > .mod-btn {
    margin-top: 3.90625vw;
  }
}
@media (max-width: 767px) {
  .top-news__inner > .mod-btn {
    margin-top: 10.6666666667vw;
  }
}

/*  module > top > about
============================================================================================================ */
.top-about {
  max-width: 1064px;
  width: 100%;
  padding: 179px 221px 0 0;
  margin: 160px auto 0;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .top-about {
    max-width: 93.3333333333vw;
    padding: 15.701754386vw 19.3859649123vw 0 0;
    margin-top: 14.0350877193vw;
  }
}
@media (max-width: 767px) {
  .top-about {
    max-width: none;
    padding: 0;
    margin-top: 32vw;
  }
}
.top-about > figure {
  width: 483px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1140px) {
  .top-about > figure {
    width: 42.3684210526vw;
  }
}
@media (max-width: 767px) {
  .top-about > figure {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
  }
}
.top-about > figure > img {
  aspect-ratio: 483/320;
}
@media (max-width: 767px) {
  .top-about > figure > img {
    aspect-ratio: 335/222;
  }
}
.top-about__inner {
  background: white;
  padding: 40px 94px 42px 101px;
  border-radius: 16px;
}
@media screen and (max-width: 1140px) {
  .top-about__inner {
    padding: 3.5087719298vw 8.2456140351vw 3.6842105263vw 8.8596491228vw;
  }
}
@media (max-width: 767px) {
  .top-about__inner {
    max-width: 89.3333333333vw;
    width: 100%;
    padding: 0;
    margin: 14.1333333333vw auto 0;
    border-radius: 0px 0px 4.2666666667vw 4.2666666667vw;
    overflow: hidden;
  }
}
.top-about__inner .top-heading {
  max-width: auto;
  padding: 0;
}
.top-about__inner .cont {
  width: 100%;
  padding-top: 40px;
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: stretch;
  flex-direction: column;
}
@media (max-width: 767px) {
  .top-about__inner .cont {
    padding: 5.3333333333vw;
  }
}
.top-about__inner .cont > h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
  width: 100%;
  margin-bottom: 21px;
}
@media (max-width: 767px) {
  .top-about__inner .cont > h3 {
    font-size: 9px;
    font-size: 4.8vw;
    font-weight: 700;
    line-height: 1.4444444444;
    letter-spacing: 0em;
    margin-bottom: 5.3333333333vw;
  }
}
.top-about__inner .cont > p {
  width: 100%;
}
.top-about__inner .cont .mod-btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .top-about__inner .cont .mod-btn {
    margin-top: 5.3333333333vw;
  }
}

/*  module > top > service
============================================================================================================ */
.top-service {
  margin-top: 160px;
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .top-service {
    margin-top: 32vw;
    padding-bottom: 32vw;
  }
}
.top-service__inner {
  padding-top: 96px;
}
@media (max-width: 767px) {
  .top-service__inner {
    padding-top: 13.6vw;
  }
}
.top-service__inner > ul {
  max-width: 908px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 77px;
}
@media (max-width: 1024px) {
  .top-service__inner > ul {
    max-width: 88.671875vw;
    -moz-column-gap: 5.859375vw;
         column-gap: 5.859375vw;
    row-gap: 7.51953125vw;
  }
}
@media (max-width: 767px) {
  .top-service__inner > ul {
    max-width: 89.3333333333vw;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 13.8666666667vw;
  }
}
.top-service__inner > ul > li {
  width: 424px;
  min-height: 517px;
  position: relative;
}
@media (max-width: 1024px) {
  .top-service__inner > ul > li {
    width: 41.40625vw;
    min-height: 50.48828125vw;
  }
}
@media (max-width: 767px) {
  .top-service__inner > ul > li {
    width: 100%;
    min-height: auto;
  }
}
.top-service__inner > ul > li .inner {
  height: 100%;
  padding: 45px 32px 32px;
  background: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  align-content: stretch;
  flex-direction: column;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .top-service__inner > ul > li .inner {
    padding: 4.39453125vw 3.125vw 3.125vw;
  }
}
@media (max-width: 767px) {
  .top-service__inner > ul > li .inner {
    padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
    border-radius: 4.2666666667vw;
  }
}
.top-service__inner > ul > li .inner > h3 {
  font-size: 28px;
  line-height: 1.4642857143;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 0 32px;
  position: absolute;
  left: 50%;
  bottom: calc(100% - 26px);
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .top-service__inner > ul > li .inner > h3 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    line-height: 1.2;
    padding: 0;
    bottom: calc(100% - 3.2vw);
    letter-spacing: 0em;
  }
}
.top-service__inner > ul > li .inner .cont {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 767px) {
  .top-service__inner > ul > li .inner .cont {
    row-gap: 5.3333333333vw;
  }
}
.top-service__inner > ul > li .inner .cont > figure {
  width: 100%;
}
.top-service__inner > ul > li .inner .cont > figure > img {
  aspect-ratio: 60/29;
}
@media (max-width: 767px) {
  .top-service__inner > ul > li .inner .cont > figure > img {
    aspect-ratio: 59/32;
  }
}
@media (max-width: 767px) {
  .top-service__inner > ul > li .inner .mod-btn {
    margin-top: 5.3333333333vw;
  }
}

/*  module > top > csr
============================================================================================================ */
.top-csr {
  background: white;
  padding: 160px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media screen and (max-width: 1140px) {
  .top-csr {
    -moz-column-gap: 5.2631578947vw;
         column-gap: 5.2631578947vw;
  }
}
@media (max-width: 1024px) {
  .top-csr {
    padding: 15.625vw 4.1015625vw;
  }
}
@media (max-width: 767px) {
  .top-csr {
    padding: 32vw 5.3333333333vw;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.top-csr .cont {
  min-width: 354px;
  width: 354px;
}
@media (max-width: 767px) {
  .top-csr .cont {
    min-width: auto;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    align-content: stretch;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .top-csr .cont > figure {
    width: 100%;
    margin-top: 10.6666666667vw;
  }
}
@media (max-width: 767px) {
  .top-csr .cont > figure > img {
    aspect-ratio: 335/238;
  }
}
.top-csr .cont .top-heading {
  padding: 0;
  max-width: none;
}
.top-csr .cont .info {
  padding-top: 56px;
}
@media (max-width: 767px) {
  .top-csr .cont .info {
    padding-top: 5.3333333333vw;
  }
}
.top-csr .cont .info > h3 {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0em;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .top-csr .cont .info > h3 {
    font-size: 9px;
    font-size: 4.8vw;
    line-height: 1.4444444444;
    margin-bottom: 5.3333333333vw;
    width: 100%;
  }
}
.top-csr .cont .info > p {
  width: 100%;
}
.top-csr .cont .mod-btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .top-csr .cont .mod-btn {
    margin-top: 10.6666666667vw;
  }
}
.top-csr > figure {
  width: 646px;
}
@media screen and (max-width: 1140px) {
  .top-csr > figure {
    width: 56.6666666667vw;
  }
}
.top-csr > figure > img {
  aspect-ratio: 323/205;
}

/*  module > top > recruit
============================================================================================================ */
.top-recruit {
  color: white;
  background: var(--color-recruit);
  padding: 40px 0 60px;
}
@media screen and (max-width: 1140px) {
  .top-recruit {
    padding: 3.5087719298vw 0 5.2631578947vw;
  }
}
@media (max-width: 1024px) {
  .top-recruit {
    padding: 5.46875vw 0 6.25vw;
  }
}
@media (max-width: 767px) {
  .top-recruit {
    padding: 10.6666666667vw 0 11.2vw;
  }
}
.top-recruit__inner {
  max-width: 1060px;
  padding-top: 60px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1140px) {
  .top-recruit__inner {
    max-width: 92.9824561404vw;
    padding-top: 5.2631578947vw;
    -moz-column-gap: 3.5087719298vw;
         column-gap: 3.5087719298vw;
  }
}
@media (max-width: 1024px) {
  .top-recruit__inner {
    max-width: 78.125vw;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .top-recruit__inner {
    padding: 10.6666666667vw 5.3333333333vw 0;
    flex-direction: column;
  }
}
.top-recruit__inner > figure {
  width: 514px;
}
@media screen and (max-width: 1140px) {
  .top-recruit__inner > figure {
    width: 45.0877192982vw;
  }
}
@media (max-width: 1024px) {
  .top-recruit__inner > figure {
    width: 100%;
  }
}
.top-recruit__inner > figure > img {
  aspect-ratio: 257/160;
}
@media (max-width: 767px) {
  .top-recruit__inner > figure > img {
    aspect-ratio: 335/204;
  }
}
.top-recruit__inner > .cont {
  width: 506px;
  color: black;
}
@media (max-width: 1024px) {
  .top-recruit__inner > .cont {
    width: 100%;
    padding-top: 3.125vw;
  }
}
@media (max-width: 767px) {
  .top-recruit__inner > .cont {
    padding-top: 5.3333333333vw;
  }
}
.top-recruit__inner > .cont > ul {
  padding-top: 56px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1140px) {
  .top-recruit__inner > .cont > ul {
    padding-top: 4.9122807018vw;
  }
}
@media (max-width: 1024px) {
  .top-recruit__inner > .cont > ul {
    padding-top: 4.6875vw;
  }
}
@media (max-width: 767px) {
  .top-recruit__inner > .cont > ul {
    padding-top: 10.6666666667vw;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5.0666666667vw;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.top-recruit__inner > .cont > ul > li > hgroup > p {
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}
@media (max-width: 767px) {
  .top-recruit__inner > .cont > ul > li > hgroup > p {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    line-height: 1.4615384615;
    margin-bottom: -0.8vw;
  }
}
.top-recruit__inner > .cont > ul > li > hgroup > h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4642857143;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .top-recruit__inner > .cont > ul > li > hgroup > h3 {
    font-size: 10px;
    font-size: 5.3333333333vw;
    line-height: 1.45;
  }
}
.top-recruit__inner > .cont > ul > li > .mod-btn {
  margin-top: 11px;
}
@media (max-width: 767px) {
  .top-recruit__inner > .cont > ul > li > .mod-btn {
    margin-top: 2.6666666667vw;
  }
}

/*  module > top > portfolio
============================================================================================================ */
.top-portfolio {
  margin-top: 160px;
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .top-portfolio {
    margin-top: 32vw;
    margin-bottom: 32vw;
  }
}
.top-portfolio__inner {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .top-portfolio__inner {
    padding-top: 10.6666666667vw;
  }
}
.top-portfolio__slider {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: column;
}
.top-portfolio__slider > ul > li {
  width: 470px;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .top-portfolio__slider > ul > li {
    width: 100%;
    padding: 0 5.3333333333vw;
  }
}
.top-portfolio__slider > ul > li .inner > figure {
  aspect-ratio: 5/4;
  position: relative;
}
@media (max-width: 767px) {
  .top-portfolio__slider > ul > li .inner > figure {
    aspect-ratio: 335/246;
  }
}
.top-portfolio__slider > ul > li .inner > figure > span {
  color: white;
  background: #FDD000;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 5px 19px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .top-portfolio__slider > ul > li .inner > figure > span {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
    padding: 1.8666666667vw 5.0666666667vw;
  }
}
.top-portfolio__slider > ul > li .inner .cont {
  color: white;
  background: #031c52;
  padding: 20px 20px 15px;
}
@media (max-width: 767px) {
  .top-portfolio__slider > ul > li .inner .cont {
    padding: 4.2666666667vw;
  }
}
.top-portfolio__slider > ul > li .inner .cont > h3 {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .top-portfolio__slider > ul > li .inner .cont > h3 {
    font-size: 9px;
    font-size: 4.8vw;
    line-height: 1.4444444444;
  }
}
.top-portfolio__slider > ul > li .inner .cont > span {
  line-height: 2;
  letter-spacing: 0.05em;
  display: block;
}
@media (max-width: 767px) {
  .top-portfolio__slider > ul > li .inner .cont > span {
    font-size: 6.5px;
    font-size: 3.4666666667vw;
  }
}
.top-portfolio__sliderControl {
  padding-top: 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .top-portfolio__sliderControl {
    padding-top: 10.6666666667vw;
    -moz-column-gap: 10.6666666667vw;
         column-gap: 10.6666666667vw;
  }
}
.top-portfolio__sliderControl .swiper-pagination {
  width: auto !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin: 0 !important;
  position: relative;
  left: auto !important;
  bottom: auto !important;
}
@media (max-width: 767px) {
  .top-portfolio__sliderControl .swiper-pagination {
    -moz-column-gap: 3.2vw;
         column-gap: 3.2vw;
  }
}
.top-portfolio__sliderControl .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .top-portfolio__sliderControl .swiper-pagination-bullet {
    width: 3.2vw;
    height: 3.2vw;
  }
}
.top-portfolio__sliderControl .swiper-button {
  line-height: 1;
  width: 30px;
  height: 30px;
  margin: 0;
  position: relative;
  left: auto;
  right: auto;
  opacity: 1;
}
@media (max-width: 767px) {
  .top-portfolio__sliderControl .swiper-button {
    width: 8vw;
    height: 8vw;
  }
}
.top-portfolio__sliderControl .swiper-button > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.top-portfolio__sliderControl .swiper-button:after {
  display: none;
}
.top-portfolio__sliderControl .swiper-button-next {
  transform: rotate(180deg);
}
.top-portfolio__slider .mod-btn {
  margin-top: 42px;
}
@media (max-width: 767px) {
  .top-portfolio__slider .mod-btn {
    margin-top: 10.6666666667vw;
  }
}

/*  module > top > heading
============================================================================================================ */
.top-heading {
  color: #19598B;
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: stretch;
  flex-direction: row;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
@media screen and (max-width: 1140px) {
  .top-heading {
    max-width: 100%;
    padding: 0 4.1015625vw;
  }
}
@media (max-width: 767px) {
  .top-heading {
    max-width: none;
    padding: 0 5.3333333333vw;
    -moz-column-gap: 1.3333333333vw;
         column-gap: 1.3333333333vw;
  }
}
.top-heading.yellow {
  color: #FDD000;
}
.top-heading > h2 {
  font-size: 60px;
  line-height: 1.4833333333;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .top-heading > h2 {
    font-size: 18px;
    font-size: 9.6vw;
    line-height: 1.4722222222;
  }
}
.top-heading > p {
  font-size: 16px;
  line-height: 1.5;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .top-heading > p {
    font-size: 6px;
    font-size: 3.2vw;
    padding-top: 6.1333333333vw;
  }
}/*# sourceMappingURL=style.css.map */