@charset "UTF-8";
/* =====================
	倉敷ハウジング株式会社
 ======================= */
/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_text: #000000;
  --c_wht: #fff;
  --c_green: #4B9B37;
  --c_bg: #F4F3F0;
  --c_orange: #F98C02;
  /* フォント定義 */
  --font_ja: YakuHanJP, 'Noto Sans JP', sans-serif;
  --font_eng: "Montserrat", sans-serif;
  --font_mix: "Montserrat", YakuHanJP, 'Noto Sans JP', sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
  /*---------- filter定義
	https://codepen.io/sosuke/pen/Pjoqqp ---------- */
  /* #000 → #000 */
  --filter_text: none;
  /* #000 → #FFF */
  --filter_wht: invert(100%) sepia(5%) saturate(22%) hue-rotate(176deg) brightness(104%) contrast(108%);
  /* #000 → #4B9B37 */
  --filter_green: invert(47%) sepia(53%) saturate(555%) hue-rotate(62deg) brightness(99%) contrast(87%);
  /* #000 → #F98C02 */
  --filter_orange: invert(56%) sepia(56%) saturate(1642%) hue-rotate(359deg) brightness(98%) contrast(99%);
}

body {
  font-family: var(--font_ja);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--c_text);
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.clearfix {
  clear: both;
}

a {
  color: var(--c_text);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/** ------------------------ COMMON STYLE ------------------------ **/
.section {
  padding: 100px 0;
}

.bg-gray {
  background: var(--c_bg);
}

.inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.cmn-title01 {
  margin-bottom: 30px;
}

.cmn-title01-eng {
  font-family: var(--font_eng);
  font-size: 86px;
  font-weight: 700;
}

.cmn-title01-jp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.cmn-title01-jp:before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cmn-title02 {
  margin-bottom: 50px;
  text-align: center;
}

.cmn-title02-eng {
  font-family: var(--font_eng);
  font-weight: 700;
  color: var(--c_green);
  line-height: 1.19;
}

.cmn-title02-jp {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.44;
}

.cmn-btn-wht {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 12px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 228px;
  margin: 0 auto;
  border: 2px solid var(--c_green);
  border-radius: 100px;
  background: var(--c_wht);
  color: var(--c_green);
  font-weight: 700;
}

.cmn-btn-wht > span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 10px;
}

.cmn-btn-wht:after {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -webkit-filter: var(--filter_green);
          filter: var(--filter_green);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.cmn-btn-wht:hover {
  opacity: 1.0;
  background: var(--c_green);
  color: var(--c_wht);
}

.cmn-btn-wht:hover:after {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.cmn-btn-trans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 12px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 228px;
  margin: 0 auto;
  border: 2px solid var(--c_wht);
  border-radius: 100px;
  background: transparent;
  color: var(--c_wht);
}

.cmn-btn-trans > span {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 10px;
}

.cmn-btn-trans:after {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.cmn-btn-trans:hover {
  opacity: 1.0;
  background: var(--c_wht);
  color: var(--c_text);
}

.cmn-btn-trans:hover:after {
  -webkit-filter: var(--filter_text);
          filter: var(--filter_text);
}

/** ------------------------ MASK ------------------------ **/
#mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
}

/** ------------------------ HEADER ------------------------ **/
.header {
  position: relative;
  height: 100px;
}

.header .header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background: var(--c_wht);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: clamp(2vw, 2vw, 40px);
     -moz-column-gap: clamp(2vw, 2vw, 40px);
          column-gap: clamp(2vw, 2vw, 40px);
  padding: 0 clamp(2vw, 2vw, 40px);
}

.header .header-logo {
  width: 200px;
  margin-right: auto;
}

.header .gnav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(2vw, 2vw, 40px);
     -moz-column-gap: clamp(2vw, 2vw, 40px);
          column-gap: clamp(2vw, 2vw, 40px);
  height: 100%;
}

.header .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(2vw, 2vw, 40px);
     -moz-column-gap: clamp(2vw, 2vw, 40px);
          column-gap: clamp(2vw, 2vw, 40px);
  height: 100%;
}

.header .gnav-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: 700;
}

.header .gnav-list > li > a {
  display: block;
}

.header .gnav-list > li.gnav-list-parent {
  position: relative;
  cursor: pointer;
}

.header .gnav-list > li.gnav-list-parent > span, .header .gnav-list > li.gnav-list-parent > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.header .gnav-list > li.gnav-list-parent > span:after, .header .gnav-list > li.gnav-list-parent > a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .gnav-list > li.gnav-list-parent:hover .gnav-list-children {
  visibility: visible;
  opacity: 1.0;
  pointer-events: auto;
}

.header .gnav-list > li .gnav-list-children {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 600px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--c_bg);
  border: 3px solid var(--c_bg);
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.header .gnav-list > li .gnav-list-children:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent var(--c_bg) transparent;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: auto;
}

.header .gnav-list > li .gnav-list-children-bg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 3);
          flex: 0 0 calc(100% / 3);
}

.header .gnav-list > li .gnav-list-children-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header .gnav-list > li .gnav-list-children > ul {
  padding: 25px 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header .gnav-list > li .gnav-list-children > ul > li {
  border-bottom: 2px solid #DCDCDC;
  padding: 15px 28px;
}

.header .gnav-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.header .gnav-cta > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  position: relative;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c_green);
  padding: 8px 14px 8px 26px;
  border-radius: 100px;
  border: 1px solid var(--c_green);
  background: var(--c_wht);
}

.header .gnav-cta > li a:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/common/arrow_fill.png) no-repeat center/contain;
  -webkit-filter: var(--filter_green);
          filter: var(--filter_green);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.header .gnav-cta > li a:hover {
  opacity: 1.0;
  background: var(--c_green);
  color: var(--c_wht);
}

.header .gnav-cta > li a:hover:after {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.header .menu-btn {
  width: 53px;
  height: 25px;
  position: relative;
  cursor: pointer;
}

.header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c_text);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.header .menu-btn span:first-child {
  top: 0;
}

.header .menu-btn span:nth-child(2), .header .menu-btn span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .menu-btn span:last-child {
  bottom: 0;
}

.header .menu-btn.is-open span:first-child, .header .menu-btn.is-open span:last-child {
  opacity: 0;
}

.header .menu-btn.is-open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header .menu-btn.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.header .menu {
  position: fixed;
  top: 100px;
  right: 0;
  width: 550px;
  max-width: 100%;
  max-height: calc(100% - 100px);
  z-index: 500;
  background: var(--c_bg);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.header .menu::-webkit-scrollbar {
  width: 0;
}

.header .menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.header .menu .menu-inner {
  width: 100%;
  min-height: 100%;
}

.header .menu .menu-sitemap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header .menu .menu-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header .menu .menu-list > li {
  font-weight: 700;
  border-right: 1px solid #DCDCDC;
  border-bottom: 1px solid #DCDCDC;
}

.header .menu .menu-list > li > a, .header .menu .menu-list > li > span {
  padding: 8px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 50px;
}

.header .menu .menu-list:nth-child(even) > li {
  border-right: 0;
  border-left: 1px solid #DCDCDC;
  margin-left: -1px;
}

.header .menu .menu-list-parent {
  cursor: pointer;
}

.header .menu .menu-list-parent > span {
  position: relative;
}

.header .menu .menu-list-parent > span:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: var(--anim);
  transition: var(--anim);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .menu .menu-list-parent.is-open > span:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.header .menu .menu-list-children {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.header .menu .menu-list-children.is-open {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

.header .menu .menu-list-children > ul {
  overflow: hidden;
}

.header .menu .menu-list-children li {
  font-weight: 400;
  padding: 5px 5px 5px 45px;
  font-size: 14px;
  position: relative;
}

.header .menu .menu-list-children li:before {
  content: "";
  width: 15px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 20px;
  top: 14px;
}

.header .menu .menu-list-children li:last-child {
  padding-bottom: 20px;
}

.header .menu .menu-list-children li a[target="_blank"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.header .menu .menu-list-children li a[target="_blank"]:after {
  content: "";
  width: 12px;
  height: 14px;
  background: url(../img/common/icon_link.png) no-repeat center/contain;
}

.header .menu .menu-sns {
  padding: 20px 0 30px;
}

.header .menu .menu-sns-title {
  text-align: center;
  font-family: var(--font_eng);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.header .menu .menu-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.header .menu .menu-sns-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26px;
          flex: 0 1 26px;
}

/** ------------------------ FOOTER ------------------------ **/
.footer {
  padding: 140px 0;
  background: var(--c_bg);
}

.footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-company {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31%;
          flex: 0 1 31%;
  border-right: 1px solid #C8C8C8;
}

.footer .footer-logo {
  width: 302px;
  margin-bottom: 20px;
}

.footer .footer-address {
  line-height: 1.875;
}

.footer .footer-sns {
  margin-top: 50px;
}

.footer .footer-sns-title {
  font-family: var(--font_eng);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 20px;
}

.footer .footer-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.footer .footer-sns-list > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28px;
          flex: 0 1 28px;
}

.footer .footer-nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer-nav-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 4%;
  border-right: 1px solid #C8C8C8;
}

.footer .footer-nav-list:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer .footer-nav-list > li {
  font-weight: 700;
  margin-bottom: 36px;
}

.footer .footer-nav-list > li:last-child {
  margin-bottom: 0;
}

.footer .footer-nav-list > li > ul:not(.cv) {
  margin-top: 12px;
}

.footer .footer-nav-list > li > ul:not(.cv) > li {
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 8px 0;
}

.footer .footer-nav-list > li > ul:not(.cv) > li:first-child {
  padding-top: 0;
}

.footer .footer-nav-list > li > ul:not(.cv) > li:last-child {
  padding-bottom: 0;
}

.footer .footer-nav-list > li > ul:not(.cv) > li:before {
  content: "";
  width: 15px;
  height: 1px;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}

.footer .footer-nav-list > li > ul:not(.cv) > li a[target="_blank"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.footer .footer-nav-list > li > ul:not(.cv) > li a[target="_blank"]:after {
  content: "";
  width: 12px;
  height: 14px;
  background: url(../img/common/icon_link.png) no-repeat center/contain;
}

.footer .footer-nav-list > li > ul.cv {
  margin-top: 10px;
}

.footer .footer-nav-list > li > ul.cv > li {
  margin-bottom: 8px;
}

.footer .footer-nav-list > li > ul.cv > li:last-child {
  margin-bottom: 0;
}

.footer .footer-nav-list > li > ul.cv > li a {
  color: var(--c_green);
  border: 1px solid var(--c_green);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 7px;
  max-width: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.footer .footer-nav-list > li > ul.cv > li a:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/arrow_fill.png) no-repeat center/contain;
  -webkit-filter: var(--filter_green);
          filter: var(--filter_green);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.footer .footer-nav-list > li > ul.cv > li a:hover {
  opacity: 1.0;
  background: var(--c_green);
  color: var(--c_wht);
}

.footer .footer-nav-list > li > ul.cv > li a:hover:after {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

.footer .footer-nav-list > li > .reform {
  color: #0041c0;
  border: 1px solid #0041c0;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.footer .footer-nav-list > li > .reform:after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/arrow_fill.png) no-repeat center/contain;
  -webkit-filter: invert(16%) sepia(84%) saturate(3155%) hue-rotate(215deg) brightness(95%) contrast(110%);
          filter: invert(16%) sepia(84%) saturate(3155%) hue-rotate(215deg) brightness(95%) contrast(110%);
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

.footer .footer-nav-list > li > .reform:hover {
  opacity: 1.0;
  background: #0041c0;
  color: var(--c_wht);
}

.footer .footer-nav-list > li > .reform:hover:after {
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
}

/** ------------------------ 2025/6/20追加------------------------ **/
.footer-zeh a {
  width: 60%;
  display: block;
  border: 1px solid #000;
  font-size: 100%;
  text-align: center;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  line-height: 200%;
}

.footer-zeh a:hover {
  background-color: #000;
  color: #fff;
}

/** ------------------------ CTA ------------------------ **/
.cta {
  background: var(--c_bg);
  padding: 100px 0 0;
}

.cta.bg-wht {
  background: none;
}

.cta .cta-txt {
  text-align: center;
  margin: -20px 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.cta .cta-txt:before, .cta .cta-txt:after {
  content: "";
  width: 3px;
  height: 9em;
  background: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.cta .cta-txt:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cta .cta-txt-main {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3888888889;
}

.cta .cta-txt-main img {
  width: 4.4em;
  display: inline-block;
  margin-right: 2px;
}

.cta .cta-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cta .cta-list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
}

.cta .cta-list-item a {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.16);
}

.cta .cta-list-item a .title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  background: #86BC36;
  color: var(--c_wht);
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.cta .cta-list-item a .title:after {
  content: "";
  width: 1em;
  height: 1em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -webkit-filter: var(--filter_wht);
          filter: var(--filter_wht);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta .cta-list-item:nth-child(even) a .title {
  background: #F98C02;
}

/** ------------------------ PAGE TITLE ------------------------ **/
.page-header {
  position: relative;
  padding: 100px 0;
}

.page-header:not(.page-header--img) + .section {
  padding-top: 0;
}

.page-header-title {
  text-align: center;
}

.page-header-title-eng {
  font-family: var(--font_eng);
  font-size: 86px;
  font-weight: 700;
  line-height: 1.22;
}

.page-header-title-jp {
  font-size: 20px;
}

.page-header--img {
  color: var(--c_wht);
  padding: 135px 0;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-header-bg:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/** ------------------------ SUBPAGE LINK ------------------------ **/
.subpage {
  padding: 100px 20px 80px;
}

.subpage .subpage-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 217px) clamp(1.46%, 1.46%, 28px) minmax(auto, 217px) clamp(1.46%, 1.46%, 28px) minmax(auto, 217px) clamp(1.46%, 1.46%, 28px) minmax(auto, 217px) clamp(1.46%, 1.46%, 28px) minmax(auto, 217px) clamp(1.46%, 1.46%, 28px) minmax(auto, 217px);
  grid-template-columns: repeat(6, minmax(auto, 217px));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px clamp(1.46%, 1.46%, 28px);
}

/** ------------------------ LINEUP ------------------------ **/
.lineup-subpage {
  padding: 100px 0;
}

.lineup-subpage .lineup-subpage-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 282px) 2% minmax(auto, 282px) 2% minmax(auto, 282px) 2% minmax(auto, 282px);
  grid-template-columns: repeat(4, minmax(auto, 282px));
  gap: 10px 2%;
}

.lineup-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 50px;
}

.lineup-list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  background: var(--c_wht);
  -webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.16);
}

.lineup-list-item-thumb {
  position: relative;
}

.lineup-list-item-thumb:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/lineup_shadow.png) no-repeat center bottom/cover;
  position: absolute;
  top: 0;
  left: 0;
}

.lineup-list-item-thumb img {
  width: 100%;
}

.lineup-list-item-thumb figcaption {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c_wht);
}

.lineup-list-item-body {
  padding: 40px 13.2653% 76px;
}

.lineup-list-item-logo {
  margin-bottom: 40px;
}

.lineup-list-item-detail {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(126px, auto) 0 1fr;
  grid-template-columns: minmax(126px, auto) 1fr;
  gap: 20px 0;
}

.lineup-list-item-detail dt {
  text-align: center;
  background: #EADFBE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px;
}

.lineup-list-item-detail dd {
  border-bottom: 2px solid #EADFBE;
  padding: 4px 0 4px 30px;
}

/** ------------------------ WP-PageNavi ------------------------ **/
.wp-pagenavi {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em 1em;
  font-size: 20px;
  font-weight: 700;
}

.wp-pagenavi .current {
  border-bottom: 2px solid currentColor;
}

/** ------------------------ Pagenation ------------------------ **/
.single-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.single-pagenation > span {
  pointer-events: none;
  opacity: 0.3;
}

.single-pagenation-item {
  font-size: 22px;
  font-weight: 700;
}

.single-pagenation-item--prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.single-pagenation-item--prev:before {
  content: "";
  width: 2em;
  height: 2em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.single-pagenation-item--all {
  padding: 12px 35px;
  border: 2px solid var(--c_text);
  border-radius: 50px;
}

.single-pagenation-item--all:hover {
  opacity: 1.0;
  background: var(--c_text);
  color: var(--c_wht);
}

.single-pagenation-item--next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  position: relative;
}

.single-pagenation-item--next:after {
  content: "";
  width: 2em;
  height: 2em;
  background: url(../img/common/arrow.png) no-repeat center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: var(--anim);
  transition: var(--anim);
}

/* PCのみ
  ------------------------ */
@media (min-width: 700px) {
  .sm-only {
    display: none !important;
  }
}

/* タブレット
  ------------------------ */
@media (max-width: 1240px) {
  .header .gnav-list {
    display: none;
  }
  .footer .footer-company {
    border-right: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .footer .footer-nav {
    display: none;
  }
  .cta .cta-txt {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .cta .cta-txt-main {
    font-size: 28px;
  }
}

/** -------------------- フォーム共通 -------------------- **/
section.form {
  /**  確認エリア **/
  /** デフォルトのサンクスメッセージは非表示 **/
  /** 送信中メッセージ **/
  /** 完了ページ **/
}

section.form .form-lead {
  text-align: center;
  margin-bottom: 50px;
  font-size: 26px;
  line-height: 1.4;
}

section.form .form-flow {
  max-width: 996px;
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  overflow: hidden;
}

section.form .form-flow-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-right: 45px;
}

section.form .form-flow-item:before, section.form .form-flow-item:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 52px 0 52px 45px;
  border-color: transparent transparent transparent var(--c_green);
  position: absolute;
  right: 0;
  top: -2px;
  z-index: -1;
}

section.form .form-flow-item:after {
  border-color: transparent transparent transparent var(--c_wht);
  right: 4px;
}

section.form .form-flow-item > div {
  font-size: 24px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--c_wht);
  border: 3px solid var(--c_green);
  border-width: 3px 0;
}

section.form .form-flow-item.is-current:after {
  border-color: transparent transparent transparent var(--c_green);
}

section.form .form-flow-item.is-current > div {
  background: var(--c_green);
  color: var(--c_wht);
}

section.form .form-dl {
  max-width: 996px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(auto, 40.9%) 1fr;
  grid-template-columns: minmax(auto, 40.9%) 1fr;
}

section.form .form-dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 20px;
  line-height: 1.5;
  padding: 56px 10px 50px 25%;
  border-bottom: 1px solid #D2D2C8;
}

section.form .form-dl dt:last-of-type {
  border-bottom: 0;
}

section.form .form-dl dt .icon-req,
section.form .form-dl dt .icon-any {
  padding: 0 14px;
  border-radius: 50px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

section.form .form-dl dt .icon-req {
  background: #DE4D00;
  color: #fff;
}

section.form .form-dl dt .icon-any {
  background: #D2D2C8;
  color: #fff;
}

section.form .form-dl dd {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  height: 100%;
  padding: 50px 0;
  border-bottom: 1px solid #D2D2C8;
  font-size: 20px;
}

section.form .form-dl dd:last-of-type {
  border-bottom: 0;
}

section.form .form-dl dd input[type=text], section.form .form-dl dd input[type=tel], section.form .form-dl dd input[type=email] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-family: var(--font_ja);
  font-size: 20px;
  line-height: 1.45;
  border: 1px solid var(--c_text);
  background: #fff;
  border-radius: 0;
  padding: 5px 20px;
}

section.form .form-dl dd input[type=text]::-webkit-input-placeholder, section.form .form-dl dd input[type=tel]::-webkit-input-placeholder, section.form .form-dl dd input[type=email]::-webkit-input-placeholder {
  color: #D2D2C8;
}

section.form .form-dl dd input[type=radio], section.form .form-dl dd input[type=checkbox] {
  margin: 0;
  width: 1em;
  height: 1em;
  font-size: 100%;
}

section.form .form-dl dd input[type=number] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font_ja);
  font-size: 20px;
  line-height: 1.45;
  border: 1px solid var(--c_text);
  background: #fff;
  border-radius: 0;
  padding: 5px 20px;
}

section.form .form-dl dd input[type=number]::-webkit-input-placeholder {
  color: #D2D2C8;
}

section.form .form-dl dd input[type=date] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font_ja);
  font-size: 20px;
  line-height: 1.45;
  border: 1px solid var(--c_text);
  background: #fff;
  border-radius: 0;
  padding: 5px 20px;
}

section.form .form-dl dd input[type=date]::-webkit-input-placeholder {
  color: #D2D2C8;
}

section.form .form-dl dd textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  font-family: var(--font_ja);
  font-size: 20px;
  height: 200px;
  line-height: 1.45;
  border: 1px solid var(--c_text);
  background: #fff;
  padding: 5px 20px;
}

section.form .form-dl dd textarea::-webkit-input-placeholder {
  color: #D2D2C8;
}

section.form .form-dl dd label {
  font-size: 20px;
  cursor: pointer;
}

section.form .form-dl dd label a {
  text-decoration: underline;
}

section.form .form-dl dd select {
  font-family: var(--font_ja);
  font-size: 20px;
  line-height: 1.45;
  border: 1px solid var(--c_text);
  background: #fff;
  padding: 5px 20px;
}

section.form .form-dl dd .wpcf7-radio,
section.form .form-dl dd .wpcf7-checkbox,
section.form .form-dl dd .wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 1em;
  padding-top: 8px;
}

section.form .form-dl dd .wpcf7-list-item {
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}

section.form .form-dl dd .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}

section.form .form-dl dd .wpcf7-checkbox.is-radio input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 50%;
  border: 5px solid var(--c_wht);
  -webkit-box-shadow: 0 0 0 1px #D2D2C8;
          box-shadow: 0 0 0 1px #D2D2C8;
}

section.form .form-dl dd .wpcf7-checkbox.is-radio input[type=checkbox]:checked {
  background: var(--c_text);
}

section.form .form-dl dd.name-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

section.form .form-dl dd.name-dd > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48%;
          flex: 0 1 48%;
}

section.form .form-dl dd .address-dd-txt {
  font-size: 20px;
  line-height: 1.45;
  margin: 20px 0 0;
  display: inline-block;
}

section.form .form-dl dd.date-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 10px;
}

section.form .form-dl dd.date-dd select {
  margin-right: 4px;
}

section.form .form-dl dd.num-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px 50px;
}

section.form .form-dl dd.num-dd > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.form .form-dl dd.num-dd input[type=number] {
  width: 6em;
  margin: 0 5px 0 20px;
}

section.form .form-dl .notice {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
  font-size: 12px;
  line-height: 1.67;
  padding-left: 10.24096%;
  padding-bottom: 50px;
  border-bottom: 1px solid #D2D2C8;
  background: var(--c_wht);
  margin-top: -1px;
}

section.form .form-send {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 40px;
  position: relative;
}

section.form .form-send input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: var(--font_ja);
  font-size: 21px;
  font-weight: 700;
  background: url(../img/common/arrow_fill_wht.png) no-repeat right 25px center/34px, var(--c_text);
  color: var(--c_wht);
  border: 2px solid var(--c_text);
  border-radius: 100px;
  padding: 16px 65px 16px 40px;
  cursor: pointer;
  -webkit-transition: var(--anim);
  transition: var(--anim);
  min-width: 383px;
}

section.form .form-send input:disabled {
  opacity: 0.5;
  pointer-events: none;
}

section.form .form-send input:hover {
  background: url(../img/common/arrow_fill.png) no-repeat right 25px center/34px, var(--c_wht);
  color: var(--c_text);
}

section.form .form-send input.back_button {
  background: url(../img/common/arrow_left_fill_wht.png) no-repeat left 25px center/34px, #D2D2C8;
  border-color: #D2D2C8;
  color: var(--c_wht);
  padding: 16px 40px 16px 65px;
}

section.form .form-send input.back_button:hover {
  opacity: 0.7;
}

section.form .form-send .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

section.form .check-area {
  display: none;
}

section.form .check-area .form-dl dd {
  padding: 56px 0;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

section.form .check-area .form-dl dd.name-dd {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}

section.form .check-area .form-dl dd.name-dd > * {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

section.form .check-area .form-dl dd .confirm-checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
}

section.form .wpcf7-response-output {
  display: none;
}

section.form .sending-area {
  display: none;
  text-align: center;
}

section.form .thanks-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

section.form .thanks-txt {
  text-align: center;
  line-height: 2.2;
  margin: 32px 0 60px;
}

section.form .thanks-txt:last-child {
  margin-bottom: 0;
}

/* スマホ
  ------------------------ */
@media (max-width: 699px) {
  body {
    font-size: 14px;
  }
  .pc-only {
    display: none !important;
  }
  /** ------------------------ COMMON STYLE ------------------------ **/
  .section {
    padding: 50px 0;
  }
  .inner {
    width: 87.2%;
    padding: 0;
  }
  .cmn-title01 {
    margin-bottom: 10px;
  }
  .cmn-title01-eng {
    font-size: 30px;
  }
  .cmn-title01-jp {
    font-size: 10px;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
  }
  .cmn-title01-jp:before {
    width: 20px;
  }
  .cmn-title02 {
    margin-bottom: 32px;
  }
  .cmn-title02-eng {
    font-size: 10px;
  }
  .cmn-title02-jp {
    font-size: 20px;
  }
  /** ------------------------ HEADER ------------------------ **/
  .header {
    height: 55px;
  }
  .header .header-container {
    height: 55px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
    padding: 0 4%;
  }
  .header .header-logo {
    width: 111px;
  }
  .header .gnav-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .header .gnav-cta > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .header .gnav-cta > li a {
    border-radius: 0;
    height: 40px;
    font-size: 10px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
    border-bottom: 0;
    border-right: 0;
    padding: 4px;
  }
  .header .gnav-cta > li a:after {
    width: 13px;
    height: 13px;
  }
  .header .gnav-cta > li:first-child a {
    border-left: 0;
  }
  .header .menu-btn {
    width: 26px;
    height: 12px;
  }
  .header .menu {
    top: 55px;
    height: calc(100% - 55px);
    max-height: none;
  }
  .header .menu .menu-list > li > a, .header .menu .menu-list > li > span {
    padding: 4px 12px;
  }
  .header .menu .menu-list-children li {
    padding: 5px 5px 5px 28px;
  }
  .header .menu .menu-list-children li:before {
    width: 10px;
    left: 12px;
  }
  .header .menu .menu-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 160px;
    margin: 20px auto;
  }
  .header .menu .menu-cta > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    position: relative;
    font-weight: 700;
    line-height: 1.5;
    color: var(--c_green);
    padding: 8px 14px 8px 26px;
    border-radius: 100px;
    border: 1px solid var(--c_green);
    background: var(--c_wht);
  }
  .header .menu .menu-cta > li a:after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/common/arrow_fill.png) no-repeat center/contain;
    -webkit-filter: var(--filter_green);
            filter: var(--filter_green);
    -webkit-transition: var(--anim);
    transition: var(--anim);
  }
  .header .menu .menu-cta > li a:hover {
    opacity: 1.0;
    background: var(--c_green);
    color: var(--c_wht);
  }
  .header .menu .menu-cta > li a:hover:after {
    -webkit-filter: var(--filter_wht);
            filter: var(--filter_wht);
  }
  /** ------------------------ FOOTER ------------------------ **/
  .footer {
    padding: 80px 0;
  }
  .footer .footer-sns {
    margin-top: 30px;
  }
  /** ------------------------ CTA ------------------------ **/
  .cta {
    padding: 50px 0 0;
  }
  .cta .cta-txt {
    margin: -10px 0 20px;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .cta .cta-txt:before, .cta .cta-txt:after {
    height: 100px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
  }
  .cta .cta-txt:after {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
  .cta .cta-txt-main {
    font-size: 18px;
  }
  .cta .cta-list {
    row-gap: 15px;
  }
  .cta .cta-list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .cta .cta-list-item a {
    border-radius: 10px;
  }
  .cta .cta-list-item a .title {
    font-size: 16px;
    padding: 10px 0;
  }
  /** ------------------------ PAGE TITLE ------------------------ **/
  .page-header {
    padding: 50px 0;
  }
  .page-header-title-eng {
    font-size: 36px;
  }
  .page-header-title-jp {
    font-size: 14px;
  }
  .page-header--img {
    padding: 70px 0;
  }
  /** ------------------------ SUBPAGE LINK ------------------------ **/
  .subpage {
    padding: 50px 20px;
  }
  .subpage .subpage-list {
    -ms-grid-columns: 1fr 5px 1fr 5px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  /** ------------------------ LINEUP ------------------------ **/
  .lineup-subpage {
    padding: 50px 0;
  }
  .lineup-subpage .lineup-subpage-list {
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .lineup-list {
    row-gap: 30px;
  }
  .lineup-list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
  .lineup-list-item-thumb figcaption {
    bottom: 12px;
    font-size: 14px;
  }
  .lineup-list-item-body {
    padding: 20px;
  }
  .lineup-list-item-logo {
    margin-bottom: 20px;
  }
  .lineup-list-item-detail {
    -ms-grid-columns: minmax(100px, auto) 0 1fr;
    grid-template-columns: minmax(100px, auto) 1fr;
    gap: 12px 0;
  }
  .lineup-list-item-detail dd {
    border-width: 1px;
    padding-left: 12px;
  }
  /** ------------------------ WP-PageNavi ------------------------ **/
  .wp-pagenavi {
    padding: 50px 0;
    font-size: 15px;
  }
  /** ------------------------ Pagenation ------------------------ **/
  .single-pagenation-item {
    font-size: 14px;
  }
  .single-pagenation-item--prev, .single-pagenation-item--next {
    -webkit-column-gap: 4px;
       -moz-column-gap: 4px;
            column-gap: 4px;
  }
  .single-pagenation-item--all {
    padding: 4px 16px;
  }
  /** -------------------- フォーム共通 -------------------- **/
  section.form {
    /**  確認エリア **/
    /** 完了ページ **/
  }
  section.form .form-lead {
    font-size: 16px;
    margin-bottom: 24px;
  }
  section.form .form-flow {
    margin-bottom: 28px;
    height: 50px;
  }
  section.form .form-flow-item {
    padding-right: 20px;
  }
  section.form .form-flow-item:before, section.form .form-flow-item:after {
    border-width: 27px 0 27px 20px;
    right: 1px;
  }
  section.form .form-flow-item:after {
    right: 3px;
  }
  section.form .form-flow-item > div {
    font-size: 14px;
    border-width: 2px 0;
  }
  section.form .form-dl {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 0;
  }
  section.form .form-dl dt {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    font-size: 16px;
    border-bottom: 0;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.form .form-dl dt .icon-req,
  section.form .form-dl dt .icon-any {
    font-size: 12px;
  }
  section.form .form-dl dd {
    padding: 12px 0;
    font-size: 16px;
  }
  section.form .form-dl dd + dt {
    margin-top: 12px;
  }
  section.form .form-dl dd input[type=text], section.form .form-dl dd input[type=tel], section.form .form-dl dd input[type=email] {
    font-size: 16px;
    padding: 4px 8px;
  }
  section.form .form-dl dd input[type=number] {
    font-size: 16px;
    padding: 4px 8px;
  }
  section.form .form-dl dd input[type=date] {
    font-size: 16px;
    padding: 4px 8px;
  }
  section.form .form-dl dd textarea {
    font-size: 16px;
    padding: 4px 8px;
    height: 120px;
  }
  section.form .form-dl dd label {
    font-size: 16px;
  }
  section.form .form-dl dd select {
    font-size: 16px;
    padding: 4px 8px;
  }
  section.form .form-dl dd .wpcf7-radio,
  section.form .form-dl dd .wpcf7-acceptance {
    padding-top: 0;
  }
  section.form .form-dl dd .wpcf7-checkbox.is-radio input[type=checkbox] {
    border-width: 3px;
  }
  section.form .form-dl dd .address-dd-txt {
    font-size: 100%;
    margin: 12px 0 0;
  }
  section.form .form-dl .notice {
    grid-column: auto;
    font-size: 11px;
    padding: 0 0 12px;
    margin-bottom: 12px;
  }
  section.form .form-dl .notice:last-child {
    margin-bottom: 0;
  }
  section.form .form-send {
    margin-top: 40px;
  }
  section.form .form-send input {
    font-size: 16px;
    border-width: 1px;
    padding: 12px 20px;
    width: 80%;
    min-width: auto;
  }
  section.form .form-send input.back_button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  section.form .check-area .form-dl dd {
    padding: 12px 0;
  }
  section.form .check-area .form-dl dd.name-dd {
    -webkit-column-gap: 1em;
       -moz-column-gap: 1em;
            column-gap: 1em;
  }
  section.form .thanks-title {
    font-size: 16px;
  }
  section.form .thanks-txt {
    line-height: 1.75;
    margin: 24px 0 40px;
    text-align: left;
  }
}
