@charset "utf-8";

@media screen and (min-width: 768px) { }
@media screen and (max-width: 767px) { }
@media (hover: hover) { }

:root {
  /* Brand */
  --color-brand-brown: #3e3a39;
  --color-brand-pink: #d56a80;
  --color-brand-green: #19a3a2;

  /* Base */
  --color-white: #fff;
  --color-white-op40: rgba(255, 255, 255, 0.4);
  --color-white-op40: rgba(255, 255, 255, 0.4);
  --color-white-op8: rgba(255, 255, 255, 0.08);
  --color-gray-0: #f7f7f7;
  --color-gray-5: #f2f2f2;
  --color-gray-10: #ebebeb;
  --color-gray-15: #ddd;
  --color-gray-20: #d0d0d0;
  --color-gray-30: #b2b2b2;
  --color-gray-40: #8f8f8f;

  /* Styling */
  --color-calmBrown: #75706e;
  --color-darkBrown: #292626;
  --color-whitePink: #feeff2;
  --color-darkPink: #c84d66;
  --color-whiteGrayGreen: #e9f2f2;
  --color-whiteGreen: #f3f8f8;
  --color-lightGreen: #e1f2f2;
  --color-paleGreen: #a9dfd9;
  --color-middleGreen: #179999;
  --color-vividGreen: #0c8e8d;
  --color-deepGreen: #146b6a;
  --color-lightGreenGray: #c7d1d0;
  --color-greenGray: #497271;
  --color-khaki: #748684;
  
  /* UI */
  --color-ui-blue: #2c80cf;
  --color-ui-darkBlue: #186ebe;
  --color-ui-whiteRed: #fff9f7;
  --color-ui-red: #cc4328;
}

/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  color: var(--color-brand-brown);
  font-feature-settings: 'palt';
}
button,
select,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
}

/* == utility ============================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-clearfix::after {
  content: '';
  display: block;
  clear: both;
}
.u-bold {
  font-weight: 700;
}
.u-center {
  text-align: center;
}
.u-hover {
  transition: opacity 0.3s;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .u-hover:hover {
    opacity: 0.6;
  }
}
.u-barlow {
  font-family: "Barlow", sans-serif;
}
.u-bgFill {
  background-color: var(--color-gray-0);
}
.u-hidden {
  overflow: hidden;
}
.u-displayNone {
  display: none !important;
}
.u-noPost {
  width: 90%;
  font-size: 1.6rem;
  text-align: center;
  padding: 24px 0;
  margin: 0 auto;
}

/* == base style ============================================== */
.c-mainText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  color: var(--color-brand-brown);
  letter-spacing: 0.06em;
  word-break: break-all;
}
.c-mainText::after {
  content: '';
  display: block;
  clear: both;
}
.c-mainText--noM > *:first-child {
  margin-top: 0;
}
.c-mainText--noM > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-mainText {
    font-size: 1.6rem;
  }
}
/* --- 見出し --- */
.c-mainText h1,
.c-h1 {
  font-size: 3.6rem;
  line-height: 1.75;
  font-weight: 700;
  margin: 72px 0 32px;
}
@media screen and (max-width: 767px) {
  .c-mainText h1,
  .c-h1 {
    font-size: 2.8rem;
  }
}
.c-mainText h2,
.c-h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 72px 0 32px;
}
@media screen and (max-width: 767px) {
  .c-mainText h2,
  .c-h2 {
    font-size: 2.8rem;
  }
}
.c-mainText h3,
.c-h3 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 64px 0 24px;
}
@media screen and (max-width: 767px) {
  .c-mainText h3,
  .c-h3 {
    font-size: 2.4rem;
  }
}
.c-mainText h4,
.c-h4 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 56px 0 16px;
}
@media screen and (max-width: 767px) {
  .c-mainText h4,
  .c-h4 {
    font-size: 2rem;
  }
}
.c-mainText h2 + h3,
.c-mainText h3 + h4, 
.c-mainText h2 + h4,
.c-h2 + .c-h3,
.c-h3 + .c-h4, 
.c-h2 + .c-h4 {
  margin-top: 40px;
}
.c-mainText h5,
.c-mainText h6,
.c-h5,
.c-h6 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 24px 0 16px;
}
/* --- 段落 --- */
.c-mainText > p,
.c-par {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  margin: 36px 0;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-mainText > p,
  .c-par {
    font-size: 1.6rem;
  }
}
/* --- 引用 --- */
.c-mainText blockquote,
.c-blockquote {
  font-size: 1.6rem;
  line-height: 2;
  background: var(--color-whiteGreen);
  border: 4px solid #f7f7f7;
  padding: 32px 40px;
  margin: 48px 0;
}
@media screen and (max-width: 767px) {
  .c-mainText blockquote,
  .c-blockquote {
    font-size: 1.4rem;
    padding: 24px 32px;
  }
}
.c-mainText blockquote > *:first-child,
.c-blockquote > *:first-child {
  margin-top: 0;
}
.c-mainText blockquote > *:last-child,
.c-blockquote > *:last-child {
  margin-bottom: 0;
}
/* --- テーブル --- */
.c-tableScroll {
  width: 100%;
  max-width: none;
  min-height: 0.01%;
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText figure {
  margin: 48px 0;
}
.wp-block-table thead {
  border: 0;
}
.c-tableScroll::-webkit-scrollbar {
  height: 8px;
}
.c-tableScroll::-webkit-scrollbar-track {
  background: #eaeaea;
}
.c-tableScroll::-webkit-scrollbar-thumb {
  background: #d0d3d9;
}
.c-mainText table th,
.c-mainText table td,
.c-table th,
.c-table td {
  border: 1px solid var(--color-brand-green);
}
.c-mainText table th,
.c-table th {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: var(--color-whiteGreen);
  padding: 10px 20px;
}
.c-mainText table td,
.c-table td {
  font-size: 1.4rem;
  background: #f7f7f7;
  padding: 16px 20px;
}
.c-mainText table th a,
.c-table th a {
  color: var(--color-brand-brown) !important;
}
.c-mainText caption {
  text-align: left;
}
/* --- 定義リスト --- */
.c-mainText dl,
.c-dl {
  width: 100%;
  margin: 24px 0;
}
.c-mainText dt,
.c-dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-mainText dl,
  .c-dl {
    display: flex;
    flex-wrap: wrap;
  }
  .c-mainText dt,
  .c-dt {
    width: 200px;
    padding: 0 10px 0 0;
    margin: 8px 0;
  }
  .c-mainText dd,
  .c-dd {
    width: calc(100% - 200px);
    margin: 8px 0;
  }
}
/* --- 非順序リスト --- */
.c-mainText ul,
.c-ul {
  padding: 0 0 0 14px;
  margin: 48px 0;
}
.c-mainText ul ul,
.c-mainText ol ul,
.c-ul .c-ul,
.c-ol .c-ul {
  padding: 0;
  margin: 0;
}
.c-mainText ul > li,
.c-ul > li {
  font-size: 1.8rem;
  line-height: 2;
  text-indent: -26px;
  margin: 8px 0 0 20px;
}
.c-mainText ul > li::before,
.c-ul > li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-green);
  margin: -2px 18px 0 0;
}
@media screen and (max-width: 767px) {
  .c-mainText ul > li,
  .c-ul > li {
    font-size: 1.6rem;
  }
  .c-mainText ul > li::before,
  .c-ul > li::before {
    width: 6px;
    height: 6px;
  }
}
/* --- 順序リスト --- */
.c-mainText ol,
.c-ol {
  counter-reset: olNum;
  padding: 0 0 0 14px;
  margin: 48px 0;
}
.c-mainText ol ol,
.c-mainText ul ol,
.c-ol .c-ol,
.c-ul .c-ol  {
  padding: 0;
  margin: 0;
}
.c-mainText ol > li,
.c-ol > li {
  font-size: 1.8rem;
  line-height: 2;
  text-indent: -26px;
  margin: 8px 0 0 20px;
}
.c-mainText ol > li::before,
.c-ol > li::before {
  counter-increment: olNum;
  content: counter(olNum) ".";
  font-weight: 700;
  color: var(--color-brand-green);
  margin: 0 6px 0 0;
}
@media screen and (max-width: 767px) {
  .c-mainText ol > li,
  .c-ol > li {
    font-size: 1.6rem;
  }
}
/* --- 要素タグ --- */
/* [罫線] */
.c-mainText hr,
.c-hr {
  width: 100%;
  height: 2px;
  background: var(--color-gray-15);
  border: 0;
  margin: 80px 0;
}
/* [強調] */
.c-mainText strong,
.c-mainText b,
.c-par strong,
.c-par b {
  font-weight: 700;
}
/* [強調] ( 斜体 ) */
.c-mainText em,
.c-par em  {
  font-style: italic;
}
/* [強調] ( マーカー ) */
.c-mainText mark,
.c-par mark {
  background: linear-gradient(transparent 70%, var(--color-paleGreen) 70%);
}
/* [打ち消し] */
.c-mainText del,
.c-par del {
  text-decoration: line-through;
}
/* [住所] */
.c-mainText address,
.c-mainText address *,
.c-address,
.c-address * {
  font-style: italic;
}
/* [アンカー] ( リンク ) */
.c-mainText a:not([class]),
.c-anchor {
  color: var(--color-brand-pink);
  text-decoration: underline;
}
.c-mainText p > a:not([class])[target="_blank"],
.c-anchor[target="_blank"] {
  background: url(../img/common/icon/icon_blank.svg) no-repeat center right 0;
  background-size: 20px auto;
  padding: 0 26px 0 0;
}
@media (hover: hover) {
  .c-mainText a:not([class]):hover,
  .c-anchor:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .c-mainText p > a:not([class])[target="_blank"],
  .c-anchor[target="_blank"] {
    background-size: 16px auto;
    padding: 0 22px 0 0;
  }
}
/* [略語、頭字語] ( abbreviation ) */
.c-mainText abbr[title],
.c-abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}
/* [引用元] */
.c-mainText cite,
.c-cite {
  font-style: italic;
}
/* [コード] */
.c-mainText code,
.c-code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [追加、挿入] */
.c-mainText ins,
.c-ins {
  text-decoration: underline;
}
/* [キーボード入力要素] */
.c-mainText kbd,
.c-kbd {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [コードブロック] */
.c-mainText pre,
.c-pre {
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
  background: #25292f;
  color: #fff;
  /* white-space: pre-wrap; */
  overflow: auto;
  overflow-y: hidden;
}
.c-mainText pre::-webkit-scrollbar,
.c-pre::-webkit-scrollbar {
  height: 6px;
}
.c-mainText pre::-webkit-scrollbar-track,
.c-pre::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText pre::-webkit-scrollbar-thumb,
.c-pre::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
/* [一部引用] */
.c-mainText q::before,
.c-q::before {
  content: open-quote;
}
.c-mainText q::after,
.c-q::after {
  content: close-quote;
}
/* [下付き、上付き文字] */
.c-mainText sub,
.c-mainText sup,
.c-sub,
.c-sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.c-mainText sub,
.c-sub {
  bottom: -0.25em;
}
.c-mainText sup,
.c-sup {
  top: -0.5em;
}
/* [変数、引数、因数] */
.c-mainText var,
.c-var  {
  font-style: italic;
}
/* --- 画像 --- */
.c-mainText img {
  max-width: 100%;
}
.c-mainText figcaption,
.c-mainText .wp-caption,
.c-mainText .wp-caption-text,
.c-mainText .wp-block-embed figcaption {
  max-width: 100%;
  font-size: 1.2rem;
  line-height: 1.66;
  margin: 8px 0;
}
/* --- 動画 --- */
.wp-embed-aspect-16-9.wp-has-aspect-ratio iframe {
	width:100%;
	height:auto;
	aspect-ratio:16 / 9;
}
.wp-embed-aspect-4-3.wp-has-aspect-ratio iframe {
	width:100%;
	height:auto;
	aspect-ratio:4 / 3;
}
/* --- 配置 --- */
.c-mainText img.alignright {
  display: inline;
  margin: 0 auto 30px 24px;
}
.c-mainText img.alignleft {
  display: inline;
  margin: 0 24px 30px auto;
}
.c-mainText img.aligncenter {
  display: block;
  margin: 14px auto;
}
.c-mainText .alignright {
  float: right;
  margin: 0 auto 30px 24px;
}
.c-mainText .alignleft {
  float: left;
  margin: 0 24px 30px auto;
}
.c-mainText .aligncenter {
  clear: both;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-mainText img.alignright {
    display: block;
    margin: 15px auto;
  }
  .c-mainText img.alignleft {
    display: block;
    margin: 15px auto;
  }
  .c-mainText .alignright {
    float: none;
  }
  .c-mainText .alignleft {
    float: none;
  }
}

/* == parts ============================================== */
/*** inner *********************************/
.l-inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 92%;
  }
}

/*** heading *********************************/
.c-heading {
  margin: 0 0 64px;
}
.c-heading__text {
  display: block;
  text-align: center;
}
.c-heading__main {
  display: block;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-brand-green);
}
.c-heading__sub {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 52px;
  margin: 20px 0 0;
  position: relative;
}
.c-heading__sub::before,
.c-heading__sub::after {
  content: '';
  display: block;
  width: 32px;
  height: 12px;
  background: url(../img/common/icon/icon_arrow_title.svg) no-repeat center;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-heading__sub::after {
  left: auto;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-heading__main {
    font-size: 5.6rem;
  }
  .c-heading__sub {
    font-size: 1.6rem;
    padding: 0 44px;
    margin: 16px 0 0;
  }
}
/* --- */
.c-heading02 {
  margin: 0 0 64px;
}
.c-heading02__text {
  display: block;
  text-align: center;
}
.c-heading02__sub {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-brand-green);
  margin: 0 0 20px;
}
.c-heading02__main {
  display: block;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-heading02__sub {
    margin: 0 0 16px;
  }
  .c-heading02__main {
    font-size: 3.6rem;
  }
}
/* --- */
.c-heading03 {
  max-width: 508px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.c-heading03::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-brand-brown);
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 0;
}
.c-heading03__text {
  display: inline-flex;
  align-items: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-vividGreen);
  text-align: center;
  letter-spacing: 0.06em;
  padding: 0 40px;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-heading03 {
    max-width: 320px;
  }
  .c-heading03__text {
    font-size: 3.2rem;
    padding: 0 20px;
  }
}
/* --- */
.c-heading04 {
  width: 100%;
  background: var(--color-brand-green);
  padding: 8px 20px;
  border-radius: 4px;
  margin: 0 0 32px;
}
.c-heading04__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0 0 0 12px;
  position: relative;
}
.c-heading04__text::before {
  content: '';
  display: block;
  width: 2px;
  height: calc(100% - 0.5em);
  background: var(--color-paleGreen);
  border-radius: 2px;
  position: absolute;
  top: 0.25em;
  left: 0;
}
/* --- */
.c-featureHeading {
  max-width: 656px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.c-featureHeading::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-brand-brown);
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 0;
}
.c-featureHeading__text {
  display: inline-flex;
  align-items: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 0 40px;
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-featureHeading__text .logo {
  vertical-align: middle;
  margin: 0 8px 0 0;
}
.c-featureHeading__s {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-featureHeading__text {
    font-size: 3.2rem;
  }
  .c-featureHeading__text .logo {
    width: 172px;
  }
  .c-featureHeading__s {
    font-size: 2.4rem;
  }
}
/* --- */
.c-cplHeading {
  margin: 0 0 58px;
}
.c-cplHeading__text {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--color-brand-green);
}
.c-cplHeading--en .c-cplHeading__text {
  letter-spacing: 0.02em;
}
.c-cplHeading__text::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  background: url(../img/common/icon/icon_check03.svg) no-repeat center;
  background-size: contain;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767px) {
  .c-cplHeading {
    margin: 0 0 40px;
  }
  .c-cplHeading__text {
    font-size: 2.8rem;
  }
}
/* --- */
.c-enHeading {
  margin: 0 0 64px;
}
.c-enHeading__text {
  display: block;
  text-align: center;
}
.c-enHeading__main {
  display: inline-block;
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-brand-green);
  padding: 0 84px;
  position: relative;
}
.c-enHeading__main::before,
.c-enHeading__main::after {
  content: '';
  display: block;
  width: 56px;
  height: 20px;
  background: url(../img/common/icon/icon_arrow_title.svg) no-repeat center;
  background-size: contain;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-enHeading__main::after {
  left: auto;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-enHeading__main {
    font-size: 5.6rem;
    padding: 0;
  }
  .c-enHeading__main::before,
  .c-enHeading__main::after {
    content: none;
  }
}

/*** title *********************************/
.c-enTitle {
  margin: 0 0 48px;
}
.c-enTitle__text {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-brand-green);
  padding: 0 44px 0 0;
  position: relative;
}
.c-enTitle__text::before {
  content: '';
  display: block;
  width: 32px;
  height: 12px;
  background: url(../img/common/icon/icon_arrow_title.svg) no-repeat center;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 0;
}
@media screen and (max-width: 767px) {
  .c-enTitle {
    margin: 0 0 40px;
  }
}

/*** button *********************************/
.c-btn + .c-btn {
  margin-top: 24px;
}
.c-btn button {
  -webkit-appearance: none;
  appearance: none;
}
.c-btn .c-btn__item {
  color: inherit;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 360px;
  min-height: 88px;
  background: #fff;
  text-align: center;
  border: 3px solid var(--color-brand-pink);
  border-radius: 24px;
  cursor: pointer;
  padding: 14px 24px;
  text-decoration: none;
  position: relative;
  box-shadow: 0px 6px 0px rgba(213, 106, 128, 0.4);
  transition: background-color 0.4s;
}
.c-btn__text {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-brand-pink);
  padding: 0 40px 0 20px;
  position: relative;
}
.c-btn__text::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url(../img/common/icon/icon_arrow02.svg), url(../img/common/icon/icon_arrow02.svg);
  background-repeat: no-repeat, no-repeat;
  background-color: var(--color-brand-pink);
  background-position: center left 10px, center left -12px;
  background-size: 12px auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: background-position 0.4s;
}
@media (hover: hover)  {
  .c-btn .c-btn__item:hover {
    background-color: var(--color-whitePink);
  }
  .c-btn__item:hover .c-btn__text::before {
    background-position: center left 32px, center left 10px;

  }
}
/* --- */
.c-btn--dw .c-btn__text::before {
  background-image: url(../img/common/icon/icon_download.svg), url(../img/common/icon/icon_download.svg);
  background-position: top 6px center, top -20px center;
  background-size: 20px auto;
}
@media (hover: hover)  {
  .c-btn--dw .c-btn__item:hover .c-btn__text::before {
    background-position: top 32px center, top 6px center;
  }
}
/* --- */
.c-btn--cta .c-btn__item {
  background: var(--color-brand-pink);
  border: 2px solid #fff;
}
.c-btn--cta .c-btn__text {
  color: #fff;
  padding: 0 44px 0 40px;
}
.c-btn--cta .c-btn__text::after {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/common/icon/icon_mail.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-btn--cta .c-btn__text::before {
  background-image: url(../img/common/icon/icon_arrow01.svg), url(../img/common/icon/icon_arrow01.svg);
  background-color: #fff;
}
@media (hover: hover)  {
  .c-btn--cta .c-btn__item:hover {
    background-color: var(--color-darkPink);
  }
}
/* --- */
.c-btn--center {
  text-align: center;
}
/* --- */
.c-btn--back .c-btn__text {
  padding: 0 20px 0 40px;
}
.c-btn--back .c-btn__text::before {
  left: 0;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}
/* --- */
.c-btn--black .c-btn__item {
  background: var(--color-brand-brown);
  border: 3px solid #fff;
  box-shadow: 0px 6px 0px var(--color-gray-30);
}
.c-btn--black .c-btn__text {
  color: #fff;
}
.c-btn--black .c-btn__text::before {
  background-image: url(../img/common/icon/icon_arrow03.svg), url(../img/common/icon/icon_arrow03.svg);
  background-color: #fff;
}
@media (hover: hover)  {
  .c-btn--black .c-btn__item:hover {
    background-color: var(--color-darkBrown);
  }
}
/* --- */
.c-btn--white .c-btn__item {
  background: #fff;
  border: 3px solid var(--color-brand-brown);
  box-shadow: 0px 6px 0px var(--color-gray-30);
}
.c-btn--white .c-btn__text {
  color: var(--color-brand-brown);
}
.c-btn--white .c-btn__text::before {
  background-image: url(../img/common/icon/icon_arrow02.svg), url(../img/common/icon/icon_arrow02.svg);
  background-color: var(--color-brand-brown);
}
@media (hover: hover)  {
  .c-btn--white .c-btn__item:hover {
    background-color: var(--color-gray-5);
  }
}
/* --- */
.c-btn--anchor  .c-btn__text {
  width: 100%;
  text-align: left;
  padding: 0 40px 0 8px;
}
.c-btn--anchor  .c-btn__text::before {
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 767px) {
  .c-btn .c-btn__item {
    max-width: 320px;
    padding: 14px 12px;
  }
  .c-btn--cta .c-btn__text {
    padding: 0 42px 0 38px;
  }
}
/* --- */
.c-btn--en .c-btn__text {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .c-btn--en .c-btn__text {
    font-size: 1.8rem;
  }
}

/*** seminar card *********************************/
.c-seminarCard {
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-gray-15);
  box-shadow: 0px 6px 0px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  overflow: hidden;
  margin: 0 0 32px;
}
.c-seminarCard__item {
  display: flex;
  width: 100%;
}
.c-seminarCard__img {
  width: 44.46%;
  max-width: 498px;
  flex-shrink: 0;
}
.c-seminarCard__imgItem {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.c-seminarCard__imgItem img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s;
}
@supports (object-fit: cover) {
  .c-seminarCard__imgItem img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (hover: hover)  {
  .c-seminarCard__item:hover .c-seminarCard__imgItem img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
/* @supports (object-fit: contain) {
  .c-seminarCard__imgItem img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
} */
.c-seminarCard__detail {
  /* min-height: 288px; */
  display: flex;
  align-items: center;
  min-height: 280px;
  flex: 1;
  padding: 60px 64px 60px 40px;
  position: relative;
}
.c-seminarCard__detail::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon/icon_arrow01.svg), url(../img/common/icon/icon_arrow01.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: center left 0, center left -20px;
  background-size: 20px auto;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: background-position 0.4s;
}
@media (hover: hover)  {
  .c-seminarCard__item:hover .c-seminarCard__detail::before  {
    background-position: center left 20px, center left 0;
  }
}
.c-seminarCard__cat {
  font-size: 0;
}
.c-seminarCard__catItem {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--color-deepGreen);
  background-color: var(--color-lightGreen);
  border-radius: 2px;
  padding: 4px 12px;
  margin: 0 10px 10px 0;
  letter-spacing: 0.06em;
}
.c-seminarCard__catItem--end {
  color: var(--color-brand-brown);
  background-color: var(--color-gray-15);
}
.c-seminarCard__title {
  display: inline;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-brand-brown);
  border-width: 0;
  transition: border-width 0.3s;
}
@media (hover: hover)  {
  .c-seminarCard__item:hover .c-seminarCard__title {
    border-width: 0 0 1px;
  }
}
.c-seminarCard__date {
  display: flex;
  margin: 28px 0 0;
}
.c-seminarCard__dateTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 68px;
  height: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  border: 1px solid var(--color-brand-brown);
  border-radius: 2px;
  margin: 0 10px 0 0;
}
.c-seminarCard__dateItem {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-seminarCard {
    margin: 0 0 40px;
  }
  .c-seminarCard__item {
    display: block;
  }
  .c-seminarCard__img {
    width: 100%;
    max-width: none !important;
  }
  .c-seminarCard__imgItem {
    padding: 55.87% 0 0;
  }
  .c-seminarCard__detail {
    min-height: auto;
    padding: 20px 28px 40px 16px;
  }
  .c-seminarCard__detail::before {
    top: auto;
    right: 24px;
    bottom: 16px;
    transform: none;
  }
  .c-seminarCard__title {
    font-size: 1.6rem;
  }
  .c-seminarCard__date {
    margin: 20px 0 0;
  }
  .c-seminarCard__dateTitle {
    width: 68px;
    height: 24px;
  }
  .c-seminarCard__dateItem {
    font-size: 1.4rem;
    padding: 4px 0 0;
  }
}

/*** article *********************************/
.c-article__item {
  display: flex;
  padding: 48px 56px 48px 40px;
  border-bottom: 1px solid var(--color-gray-15);
  transition: background-color 0.4s;
  position: relative;
}
.c-article__item::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon/icon_arrow01.svg), url(../img/common/icon/icon_arrow01.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: center left 0, center left -16px;
  background-size: 16px auto;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: background-position 0.4s;
}
.c-article__date {
  display: block;
  width: 120px;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-brand-green);
  font-weight: 700;
  flex-shrink: 0;
}
.c-article__title {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  flex: 1;
  padding: 0 0 0 16px;
}
@media (hover: hover)  {
  .c-article__item:hover {
    background: var(--color-gray-0);
  }
  .c-article__item:hover::before {
    background-position: center left 16px, center left 0;
  }
}
@media screen and (max-width: 767px) {
  .c-article__item {
    display: block;
    padding: 48px 32px 48px 16px;
  }
  .c-article__item::before {
    right: 8px;
  }
  .c-article__date {
    width: 100%;
    margin: 0 0 16px;
  }
  .c-article__title {
    padding: 0;
  }
}

/*** feature *********************************/
.c-featureIcon {
  max-width: 240px;
}
.c-featureIcon__item {
  width: 100%;
  padding: 100% 0 0;
  border-radius: 50%;
  background: var(--color-gray-10);
  position: relative;
}
.c-featureIcon img { 
  max-width: 50%;
  max-height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-featureIcon__num {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand-green);
  position: absolute;
  top: 0;
  left: -10px;
}

/*** download *********************************/
.c-dw {
  padding: 144px 0;
  position: relative;
}
.c-dw .d {
  max-width: 1440px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
.c-dw .dItem {
  position: absolute;
}
.c-dw .dItem--01 {
  top: 208px;
  left: -16px;
}
.c-dw .dItem--02 {
  top: 116px;
  right: 44px;
}
.c-dw .dItem--03 {
  bottom: 184px;
  right: 16px;
}
.c-dw .dItem--04 {
  bottom: 80px;
  right: 40px;
}
@media screen and (max-width: 767px) {
  .c-dw .dItem--01 {
    width: 152px;
    top: 244px;
    left: -48px;
  }
  .c-dw .dItem--02 {
    width: 15px;
    top: 24px;
    right: 16px;
  }
  .c-dw .dItem--03 {
    width: 48px;
    bottom: 48px;
    right: 12px;
  }
  .c-dw .dItem--04 {
    width: 152px;
    bottom: -10px;
    right: -23px;
  }
}
.c-dwList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.c-dwCard {
  width: calc(100% / 3);
  padding: 0 20px;
  margin: 0 0 40px;
}
@media screen and (max-width: 1170px) {
  .c-dwCard {
    width: calc(100% / 2);
  }
}
.c-dwCard__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
}
.c-dwCard__detail {
  width: 100%;
}
.c-dwCard__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.c-dwCard__text {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin: 24px 0 0;
}
.c-dwCard .c-btn {
  width: 100%;
  margin: 24px 0 0;
}
.c-dwCard .c-btn__item {
  min-height: 80px;
}
@media screen and (max-width: 767px) {
  .c-dw {
    padding: 120px 0;
  }
  .c-dwList {
    display: block;
    margin: 0;
  }
  .c-dwCard {
    width: 100%;
    padding: 0;
    margin: 0 0 16px;
  }
  .c-dwCard__item {
    padding: 32px 24px;
  }
  .c-dwCard__title {
    font-size: 2.2rem;
  }
  .c-dwCard__text {
    margin: 20px 0 0;
  }
  .c-dwCard .c-btn {
    margin: 20px 0 0;
  }
}

/* --- en -------------------- */
.c-dw--en .c-dwCard__title,
.c-dw--en .c-dwCard__text {
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-dw--en::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-dw--en .dItem--01 {
    top: 204px;
  }
  .c-dw--en .dItem--02 {
    top: 0;
  }
}

/*** cta area *********************************/
.c-cta {
  padding: 40px 0 0;
  position: relative;
  z-index: 1;
}
.c-cta .l-inner {
  max-width: 1360px;
}
.c-cta__item {
  width: 100%;
  background: url(../img/common/bg_cta_pc.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  border-radius: 40px;
  padding: 64px 0 56px;
}
.c-cta__inner {
  width: 86%;
  margin: 0 auto;
}
.c-cta__head {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-white-op40);
  padding: 0 0 28px;
  margin: 0 0 48px;
}
.c-cta__head .head__heading {
  width: 324px;
  flex-shrink: 0;
  margin: 0 20px 20px 0;
}
.c-cta__head .head__headingText {
  font-weight: 700;
}
.c-cta__head .head__headingText__main {
  display: block;
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-cta__head .head__headingText__sub {
  display: block;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 16px 0 0;
}
.c-cta__head .head__detailtext {
  display: inline;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  background:linear-gradient(transparent 60%, rgba(25, 163, 162, 0.3) 60%);
  padding: 0 0 8px;
}
.c-cta__head .head__detailtext .m {
  font-size: 3.6rem;
}
.c-cta__head .head__sprt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 0;
}
.c-cta__head .head__sprtText {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.c-cta__head .head__sprtList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 12px;
}
.c-cta__head .head__sprtList__item {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0 0 0 32px;
  position: relative;
}
.c-cta__head .head__sprtList__item::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/common/icon/icon_check.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}
.c-cta__ctc .ctc__lead {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 32px;
}
.c-cta__ctc .ctc__cardWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-cta__ctc .ctc__card {
  width: 48.29%;
  background: #fff;
  border-radius: 24px;
  text-align: center;
  padding: 32px 10px 40px;
  color: var(--color-brand-brown);
  position: relative;
}
@media screen and (max-width: 1170px) {
  .c-cta__ctc .ctc__cardWrap {
    display: block;
  }
  .c-cta__ctc .ctc__card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 16px;
  }
}
.c-cta__ctc .ctc__card .dItem {
  position: absolute;
}
.c-cta__ctc .ctc__card--mail .dItem--01 {
  top: -24px;
  left: -24px;
}
.c-cta__ctc .ctc__card--mail .dItem--02 {
  right: 28px;
  bottom: -16px;
}
.c-cta__ctc .ctc__card--tel .dItem--01 {
  top: -8px;
  left: 16px;
}
.c-cta__ctc .ctc__card--tel .dItem--02 {
  right: -24px;
  bottom: -24px;
}
.c-cta__ctc .ctc__cardTitle {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--color-brand-pink);
  margin: 0 0 16px;
}
.c-cta__ctc .ctc__card--tel .ctc__cardTitle {
  color: var(--color-brand-green);
}
.c-cta__ctc .ctc__cardTel__itemNum {
  display: inline-block;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  padding: 0 0 0 56px;
  position: relative;
}
.c-cta__ctc .ctc__cardTel__itemNum::before {
  content: '';
  width: 44px;
  height: 44px;
  background: url(../img/common/icon/icon_tel_round.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-cta__ctc .ctc__cardTel__time {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 12px 0 0;
}
.c-cta__ctc .ctc__notice {
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  background: url(../img/common/icon/icon_info_round.svg) no-repeat center left 40px var(--color-white-op8);
  background-size: 40px auto;
  padding: 16px 40px 16px 112px;
  margin: 48px 0 0;
}
.c-cta__ctc .ctc__notice p + p {
  margin: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .c-cta .l-inner {
    width: 100%;
  }
  .c-cta__item {
    border-radius: 24px;
    padding: 56px 0 32px;
  }
  .c-cta__inner {
    width: 90%;
  }
  .c-cta__head {
    display: block;
    padding: 0 0 48px;
    margin: 0 0 32px;
  }
  .c-cta__head .head__heading {
    width: 100%;
    margin: 0;
  }
  .c-cta__head .head__headingText {
    text-align: center;
  }
  .c-cta__head .head__headingText__main {
    font-size: 5.6rem;
  }
  .c-cta__head .head__headingText__sub {
    font-size: 1.6rem;
  }
  .c-cta__head .head__detail {
    text-align: center;
    margin: 40px 0 0;
  }
  .c-cta__head .head__detailtext {
    font-size: 2rem;
  }
  .c-cta__head .head__detailtext .m {
    font-size: 3.2rem;
  }
  .c-cta__head .head__sprt {
    justify-content: center;
    margin: 24px 0 0;
  }
  .c-cta__head .head__sprtList {
    justify-content: center;
    align-items: center;
    margin: 4px 0 0;
  }
  .c-cta__head .head__sprtList__item {
    font-size: 2rem;
    margin: 0 6px;
  }
  .c-cta__head .head__sprtList__item::before {
    width: 24px;
    height: 24px;
  }
  .c-cta__ctc .ctc__lead {
    font-size: 1.4rem;
    margin: 0 0 24px;
  }
  .c-cta__ctc .ctc__card {
    padding: 24px 15px 32px;
  }
  .c-cta__ctc .ctc__cardTitle {
    margin: 0 0 8px;
  }
  .c-cta__ctc .ctc__cardTel__itemNum {
    font-size: 4rem;
    padding: 0 0 0 44px;
  }
  .c-cta__ctc .ctc__cardTel__itemNum::before {
    width: 36px;
    height: 36px;
  }
  .c-cta__ctc .ctc__notice {
    background-size: 24px auto;
    background-position: top 18px left 16px;
    padding: 16px 16px 24px 48px;
    margin: 32px 0 0;
  }
}

/* --- en -------------------- */
.c-cta--en .head__headingText__main {
  letter-spacing: 0.02em;
}
.c-cta--en .c-cta__head {
  justify-content: flex-start;
}
.c-cta--en .c-cta__head .head__heading {
  width: 264px;
  margin-right: 56px;
}
.c-cta--en .c-cta__head .head__detailtext {
  font-size: 2rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-weight: 500;
  background: linear-gradient(transparent 40%, rgba(25, 163, 162, 0.3) 40%);
  padding: 0 0 4px;
}
.c-cta--en .c-cta__head .head__detailtext .m {
  font-size: 2.8rem;
  font-weight: 700;
}
.c-cta--en .c-cta__head .head__sprt {
  margin: 8px 0 0;
}
.c-cta--en .c-cta__head .head__sprtText,
.c-cta--en .c-cta__ctc .ctc__lead {
  letter-spacing: 0.02em;
  line-height: 1.75;
}
.c-cta--en .ctc__cardTel__time {
  font-size: 1.2rem;
}
.c-cta--en .ctc__cardTel__time .m {
  font-size: 1.4rem;
  font-weight: 700;
}
.c-cta--en .c-cta__ctc .c-btn__item {
  padding: 14px 16px 14px 24px;
}
.c-cta--en .c-cta__ctc .c-btn__text {
  letter-spacing: 0.04em;
  padding: 0 40px;
}
.c-cta--en .c-cta__ctc .ctc__notice {
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-cta--en .c-cta__head .head__heading {
    width: 100%;
    margin: 0;
  }
  .c-cta--en .c-cta__head .head__detail,
  .c-cta--en .c-cta__ctc .ctc__lead {
    text-align: left;
  }
  .c-cta--en .c-cta__head .head__sprt {
    margin: 24px 0 0;
  }
  .c-cta--en .c-cta__ctc .c-btn__text {
    font-size: 1.6rem;
    padding: 0px 36px 0 30px;
  }
  .c-cta--en .c-cta__ctc .c-btn__text::after {
    width: 26px;
    height: 26px;
  }
}

/*** breadcrumb *********************************/
.c-breadcrumb {
  padding: 24px 32px;
}
.c-breadcrumbList {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-khaki);
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.c-breadcrumbList__item {
  display: inline;
  vertical-align: middle;
  position: relative;
}
.c-breadcrumbList__item:nth-of-type(n + 2) {
  padding: 0 0 0 24px;
}
.c-breadcrumbList__item:nth-of-type(n + 2)::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-lightGreenGray);
  border-width: 2px 2px 0 0;
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 7px;
  transform: rotate(45deg);
}
.c-breadcrumbList__item a {
  display: inline-block;
  color: var(--color-greenGray);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-breadcrumbList__item a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 16px 16px 0;
  }
} 

/*** under title *********************************/
.c-underTitle {
  width: calc(100% - 32px);
  background: var(--color-lightGreen);
  border-radius: 24px;
  padding: 0 32px 144px;
  margin: 0 auto 120px;
  position: relative;
}
.c-underTitle__item {
  width: 100%;
  padding: 144px 0 0;
}
.c-underTitle .c-breadcrumb {
  padding: 24px 0;
}
.c-breadcrumb + .c-underTitle__item {
  padding: 78px 0 0;
}
.c-underTitle .c-heading,
.c-underTitle .c-enHeading {
  margin: 0;
}
.c-underTitle .dItem {
  position: absolute;
}
.c-underTitle .dItem--01 {
  bottom: -96px;
  left: 40px;
}
.c-underTitle .dItem--02 {
  top: 32px;
  right: -48px;
}
@media screen and (max-width: 767px) {
  .c-underTitle {
    width: calc(100% - 16px);
    padding: 0 20px 114px;
    margin-bottom: 80px;
  }
  .c-underTitle__item {
    padding: 114px 0 0;
  }
  .c-underTitle .c-breadcrumb {
    padding: 16px 0;
  }
  .c-breadcrumb + .c-underTitle__item {
    padding: 84px 0 0;
  }
  .c-underTitle .dItem--01 {
    width: 72px;
    bottom: -40px;
    left: 16px;
  }
  .c-underTitle .dItem--02 {
    width: 152px;
    top: 48px;
    right: -24px;
  }
  .c-underTitle .c-enHeading__main {
    font-size: 4.8rem;
  }
}

/*** annotation *********************************/
.c-anno {
  display: inline-block;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0 0 0 calc(1em + 4px);
}
.c-anno::before {
  content: '※';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/*** callout *********************************/
.c-callout {
  width: 100%;
  max-width: 1080px;
  background: var(--color-whiteGreen);
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.06em;
  padding: 40px 40px 40px 80px;
  margin: 0 auto;
  position: relative;
}
.c-callout::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon/icon_info_round02.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 42px;
  left: 34px;
}
.c-callout__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--color-deepGreen);
  margin: 0 0 12px;
}
.c-callout__list,
.c-mainText .c-callout__list {
  padding: 0;
  margin: 12px 0;
}
.c-callout__listItem,
.c-mainText .c-callout__listItem {
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 0 0 0 1em;
  text-indent: 0;
  margin: 4px 0;
  position: relative;
}
.c-callout__listItem::before,
.c-mainText .c-callout__listItem::before {
  content: '・';
  width: auto;
  height: auto;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.c-callout p + p {
  margin-top: 12px;
}
/* --- */
.c-callout--s {
  max-width: 960px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: var(--color-deepGreen);
  padding: 32px 32px 32px 88px;
  border-radius: 16px;
}
.c-callout--s::before {
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-callout {
    padding: 24px 24px 24px 64px;
  }
  .c-callout::before {
    width: 36px;
    height: 36px;
    top: 22px;
    left: 20px;
  }
  /* --- */
  .c-callout--s {
    font-size: 1.4rem;
    padding: 16px 16px 16px 48px;
  }
  .c-callout--s::before {
    width: 24px;
    height: 24px;
    top: 18px;
    left: 16px;
    transform: none;
  }
}

/*** pagination *********************************/
.c-pagination {
  margin: 80px auto 0;
}
.c-paginationList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-paginationList__item {
  display: inline-block;
  min-width: 35px;
  height: 44px;
  font-family: "Barlow", sans-serif;
  font-size: 1.8rem;
  line-height: 44px;
  font-weight: 700;
  text-align: center;
  margin: 6px 4px;
  border-radius: 8px;
  position: relative;
}
.c-paginationList__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-paginationList__item a::before {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--color-brand-brown);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.4s;
}
.c-paginationList__itemNum {
  display: inline-block;
  padding: 0 4px;
  position: relative;
  transition: color 0.3s;
}
/* --- prev / next --- */
.c-paginationList__item--prev,
.c-paginationList__item--next {
  min-width: 44px;
  font-size: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  transition: background-color 0.3s;
  position: relative;
}
.c-paginationList__item--prev::before,
.c-paginationList__item--next::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url(../img/common/icon/icon_arrow03.svg), url(../img/common/icon/icon_arrow03.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: center left 0, center left -16px;
  background-size: 16px auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-position 0.4s;
}
.c-paginationList__item--prev a::before,
.c-paginationList__item--next a::before {
  content: none;
}
.c-paginationList__item--prev {
  transform: scale(-1, 1);
  margin-left: 0;
}
.c-paginationList__item--next {
  margin-right: 0;
}
/* --- current --- */
.c-paginationList__item.is-current {
  min-width: 44px;
  color: #fff;
  background-color: var(--color-brand-brown);
  margin-right: 8px;
  margin-left: 8px;
}
/* --- disable --- */
.c-paginationList__item.is-disable {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 64px;
  }
}
@media (hover: hover) {
  .c-paginationList__item a:hover::before {
    width: 100%;
  }
  .c-paginationList__item--prev:hover,
  .c-paginationList__item--next:hover {
    background-color: var(--color-gray-0);
  }
  .c-paginationList__item--prev:hover::before,
  .c-paginationList__item--next:hover::before {
    background-position: center left 16px, center left 0;
  }
}

/*** sns share *********************************/
.c-shareList {
  display: flex;
  flex-wrap: wrap;
  margin: 56px -6px 0;
}
.c-shareList__item {
  width: calc(100% / 3);
  padding: 12px 6px;
}
.c-shareList__link {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid var(--color-gray-15);
  padding: 14px 20px;
  position: relative;
}
.c-shareList__link::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-brand-brown);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.4s;
  border: 1px solid #000;
}
.c-shareList__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
}
.c-shareList__icon img {
  /* width: auto; */
  /* height: auto; */
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-shareList__text {
  display: block;
  flex: 1;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 0 12px 0 4px;
}
@media (hover: hover) {
  .c-shareList__link:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .c-shareList {
    display: block;
    max-width: 320px;
    margin: 56px auto 0;
  }
  .c-shareList__item {
    width: 100%;
    padding: 0;
    margin: 12px 0;
  }
}

/*** contact form *********************************/
.c-contactForm {
  max-width: 800px;
  background: var(--color-gray-0);
  padding: 48px 56px;
  margin: 0 auto;
}
.c-contactForm__dl + .c-contactForm__dl {
  margin: 40px 0 0;
}
.c-contactForm__dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.c-contactForm__dd {
  position: relative;
}
.c-contactForm__placeholder {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 12px 0;
}
/* -- */
.c-contactForm--en .c-contactForm__dt {
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.c-contactForm--en .c-contactForm__placeholder {
  letter-spacing: 0.02em;
}

/* ----- 必須 ----- */
.c-contactForm .required {
  display: block;
  padding: 0 0 0 54px;
  position: relative;
}
.c-contactForm .required::before {
  content: "必須";
  display: block;
  width: 42px;
  height: 24px;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background: var(--color-ui-red);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-contactForm--en .required {
  padding: 0 0 0 68px;
}
.c-contactForm--en .required::before {
  content: "Required";
  width: 56px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

/* ----- 任意 ----- */
.c-contactForm .any {
  display: block;
  padding: 0 0 0 54px;
  position: relative;
}
.c-contactForm .any::before {
  content: "任意";
  display: block;
  width: 42px;
  height: 24px;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-align: center;
  background: var(--color-gray-20);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* ----- input ----- */
.c-contactForm input {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-brand-brown);
  background: #fff;
  border: 1px solid var(--color-gray-20);
  border-radius: 8px;
  padding: 14px 16px;
}
.c-contactForm input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}
.c-contactForm input:autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

/* ----- textarea ----- */
.c-contactForm textarea {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-brand-brown);
  background: #fff;
  border: 1px solid var(--color-gray-20);
  border-radius: 8px;
  padding: 14px 16px;
}

/* ----- placeholder ----- */
.c-contactForm input::placeholder,
.c-contactForm textarea::placeholder {
  color: var(--color-gray-30);
  font-weight: 400;
}

/* ----- select ----- */
.c-contactForm select {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--color-brand-brown);
  background: #fff;
  border: 1px solid var(--color-gray-20);
  border-radius: 8px;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 14px 16px;
}
.c-contactForm select::-ms-expand {
  display: none;
}
.c-contactForm__selectWrap {
  position: relative;
}
.c-contactForm__selectWrap::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon/icon_arrow_down.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

/* ----- radio ----- */
.c-contactForm__radioWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .radio-field,
.c-contactForm .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0px 0 0px 32px;
  margin: 12px 28px 20px 12px;
  position: relative;
}
.c-contactForm__radioWrap.vertical .radio-field,
.c-contactForm__radioWrap.vertical .wpcf7-radio .wpcf7-list-item {
  display: block;
}
.c-contactForm .radio-field label,
.c-contactForm .wpcf7-radio .wpcf7-list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.c-contactForm input[type="radio"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-contactForm .radio-field-text,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label {
  display: block;
}
.c-contactForm .radio-field-text::before,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-ui-blue);
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.c-contactForm .radio-field-text::after,
.c-contactForm .wpcf7-radio .wpcf7-list-item-label::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: var(--color-ui-blue);
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 4px;
  opacity: 0;
  transform: scale3d(0.3, 0.3, 1);
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
/* selected */
.c-contactForm input[type="radio"]:checked + .radio-field-text::after,
.c-contactForm input[type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.c-contactForm input[type="radio"]:focus + .radio-field-text::before,
.c-contactForm input[type="radio"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/* ----- checkbox ----- */
.c-contactForm__checkWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .checkbox-field,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0px 0 0px 32px;
  margin: 12px 28px 12px 12px;
  position: relative;
}
.c-contactForm__checkWrap.vertical .checkbox-field,
.c-contactForm__checkWrap.vertical .wpcf7-checkbox .wpcf7-list-item {
  display: block;
}
.c-contactForm .checkbox-field label,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item label {
  display: block;
  width: 100%;
  cursor: pointer;
}
.c-contactForm input[type="checkbox"] {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.c-contactForm .checkbox-field-text,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
}
.c-contactForm .checkbox-field-text::before,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gray-20);
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.c-contactForm .checkbox-field-text::after,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border: 1px solid var(--color-gray-20);
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 8px;
  left: 7px;
  transform: rotate(-45deg);
}
/* selected */
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  border-color: var(--color-ui-blue);
  background-color: var(--color-ui-blue);
}
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::after,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  border-color: #fff;
}
.c-contactForm input[type="checkbox"]:focus + .checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/* ----- submit ----- */
.c-contactForm__btn {
  margin: 40px 0 0;
}

/* ----- validation error ----- */
.c-contactForm input.is-error,
.c-contactForm textarea.is-error,
.c-contactForm select.is-error {
  outline: 2px solid var(--color-ui-red);
  outline-offset: -2px;
  background-color: var(--color-ui-whiteRed);
}
.c-error-txt {
  width: 100%;
}
.c-error-txt .is-error:nth-of-type(n + 2) {
  display: none !important;
}
.c-error-txt .is-error {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-ui-red);
  margin: 12px 0 0;
  padding: 0 0 0 28px;
  position: relative;
}
.c-error-txt .is-error::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon/icon_error.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 5px;
  left: 0;
}

/* ----- 個別スタイル ----- */
/* メールアドレス（確認用） */
.c-contactForm__dl--mailConfirm {
  display: flex;
  align-items: center;
  margin-top: 8px !important;
}
.c-contactForm__dl--mailConfirm .c-contactForm__dt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin: 0 16px 0 0;
}
.c-contactForm__dl--mailConfirm .c-contactForm__dd {
  flex: 1;
}
/* 相談希望日時 */
.c-contactForm__dateSet {
  display: flex;
}
.c-contactForm__dateSet .dateSet__label {
  display: block;
  flex-shrink: 0;
  width: 74px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 18px 0 0;
}
.c-contactForm__dateSet .dateSet__item {
  flex: 1;
}
.c-contactForm__dateSet--date .inputWrap {
  position: relative;
}
.c-contactForm__dateSet--date .inputWrap::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon/icon_calendar.svg) no-repeat center;
  background-size: contain;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 1;
}
.c-contactForm__dateSet--date input {
  padding-left: 46px;
}
.c-contactForm__dateSet--time {
  margin: 16px 0 0;
}
/* 承認確認 */
.c-contactForm__dl--agree .privacyPolicy {
  width: 100%;
  height: 340px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.75;
  background: #fff;
  padding: 12px 16px;
  overflow: auto;
  overflow-x: hidden;
  margin: 0 0 12px;
}
.c-contactForm__dl--agree .privacyPolicy::-webkit-scrollbar {
  width: 14px;
}
.c-contactForm__dl--agree .privacyPolicy::-webkit-scrollbar-track {
  background: #f4f4f4;
  border: 2px solid #fff;
}
.c-contactForm__dl--agree .privacyPolicy::-webkit-scrollbar-thumb {
  background: #d3d3d3;
  border: 3px solid #f4f4f4;
  border-radius: 999px;
}
/* -- */
.c-contactForm--en .c-contactForm__dl--agree .privacyPolicy {
  letter-spacing: 0.02em;
}

/* ----- cf7 打ち消し ----- */
.wpcf7-form-control-wrap {
  display: block;
  font-size: 0;
}
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  display: none !important;
}

/* ----- 確認画面 ----- */
body.is-confirm {
  background-color: var(--color-gray-0);
}
.c-contactForm.is-confirm {
  max-width: 960px;
  background: #fff;
  border-radius: 24px;
  padding: 80px;
}
.c-contactForm__confirm__title {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  margin: 0 0 72px;
}
.c-contactForm--en .c-contactForm__confirm__title {
  font-size: 2.8rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-contactForm--en .c-contactForm__confirm__title {
    font-size: 2.4rem;
  }
}
.c-contactForm__confirm .c-contactForm__dl {
  display: flex;
  border-bottom: 1px solid var(--color-gray-15);
  padding: 0 0 48px;
  margin: 24px 0 0 !important;
}
.c-contactForm__confirm .c-contactForm__dl.is-hidden {
  display: none;
}
.c-contactForm__confirm .c-contactForm__dt {
  width: 264px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin: 0;
}
.c-contactForm--en .c-contactForm__confirm .c-contactForm__dt {
  width: 296px;
  letter-spacing: 0.02em;
}
.c-contactForm__confirm .c-contactForm__dd {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  flex: 1;
  padding: 0 0 0 24px;
}
.c-contactForm__confirm .c-contactForm__btn {
  display: flex;
}
.c-contactForm__confirm .c-contactForm__btn .c-btn {
  width: 50%;
  margin: 12px;
}

@media screen and (max-width: 767px) {
  .c-contactForm {
    padding: 48px 16px;
  }
  /* ----- 確認画面 ----- */
  .c-contactForm.is-confirm {
    padding: 80px 16px;
  }
  .c-contactForm__confirm__title {
    font-size: 2.8rem;
  }
  .c-contactForm__confirm .c-contactForm__dl {
    display: block;
    padding: 0 16px 48px;
  }
  .c-contactForm__confirm .c-contactForm__dt {
    width: 100%;
    margin: 0 0 16px;
  }
  .c-contactForm__confirm .c-contactForm__dd {
    padding: 0;
  }
  .c-contactForm__confirm .c-contactForm__btn {
    display: block;
  }
  .c-contactForm__confirm .c-contactForm__btn .c-btn {
    width: 100%;
    text-align: center;
    margin: 24px 0;
  }
  .c-contactForm__confirm .c-btn--white .c-btn__item {
    max-width: 240px;
    min-height: 64px;
    border-width: 1px;
    box-shadow: none;
    border-radius: 16px;
    background-color: var(--color-gray-0);
    padding: 20px 16px;
  }
  .c-contactForm__confirm .c-btn--white .c-btn__text {
    font-size: 1.6rem;
    padding: 0;
  }
  .c-contactForm__confirm .c-btn--white .c-btn__text::before {
    content: none;
  }
}

/*** form info *********************************/
.c-formInfo {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
  border: 2px solid var(--color-ui-red);
  padding: 24px 32px;
  margin: 24px 0;
}
.c-formInfo__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-ui-red);
  padding: 0 0 0 28px;
  margin: 0 0 12px;
  position: relative;
}
.c-formInfo__title::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon/icon_error.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.c-formInfo__list {
  margin: 12px 0 0;
}
.c-formInfo__list__item {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-ui-blue);
  margin: 8px 0;
}
.c-formInfo__list__item a {
  text-decoration: underline;
}
.c-formInfo__list__item a[target="_blank"] {
  background: url(../img/common/icon/icon_blank02.svg) no-repeat center right 0;
  background-size: 16px auto;
  padding: 0 22px 0 0;
}
@media (hover: hover) {
  .c-formInfo__list__item a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .c-formInfo {
    padding: 16px 24px;
    margin: 24px 0 60px;
  }
}

/*** float btn *********************************/
.c-floatBtn {
  width: 120px;
  height: 120px;
  position: fixed;
  bottom: 24px;
  right: 16px;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.c-floatBtn.is-active {
  opacity: 1;
  visibility: visible;
}
.c-floatBtn.is-hidden {
  opacity: 0;
  visibility: hidden;
} 
.c-floatBtn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.06em;
  color: #fff;
  border: 2px solid #fff;
  background: var(--color-brand-green);
  border-radius: 50%;
  padding: 20px 0 0;
  box-shadow: 0px 4px 0px rgba(25, 163, 162, 0.5);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
.c-floatBtn a::before {
  content: '';
  display: block;
  width: 36px;
  height: 36px;
  background: url(../img/common/icon/icon_seminar.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}
@media (hover: hover) {
  .c-floatBtn a:hover {
    background: var(--color-vividGreen);
    box-shadow: none;
    transform: translateY(4px);
  } 
}

/*** faq *********************************/
.c-faq + .c-faq {
  border-top: 1px solid var(--color-gray-15);
  padding: 40px 0 0;
  margin: 40px 0 0;
}
.c-faq__q {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.06em;
  padding: 0 0 0 40px;
  position: relative;
}
.c-faq__q::before {
  content: 'Q';
  font-family: "Barlow", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand-green);
  position: absolute;
  top: -5px;
  left: 0;
}
.c-faq__a {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.06em;
  padding: 0 0 0 40px;
  margin: 24px 0 0;
  position: relative;
}
.c-faq__a::before {
  content: 'A';
  font-family: "Barlow", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-brand-pink);
  position: absolute;
  top: 0;
  left: 0;
}

/* == header ============================================== */
.l-header {
  width: 100%;
  height: 136px;
  position: relative;
  background: #fff;
}
.l-header__inner {
  width: 98%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
}
.l-header__logo {
  width: 194px;
  height: 88px;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
.l-header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background: url(../img/common/logo/logo01.svg) no-repeat center;
  background-size: contain;
}
.l-header__nav .nav__upper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-header__nav .nav__upper .contents {
  display: flex;
  justify-content: center;
}
.l-header__nav .snsList {
  display: flex;
  position: relative;
  padding: 0 20px 0 0;
}
.l-header__nav .snsList::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: var(--color-brand-brown);
  opacity: 0.2;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.l-header__nav .snsList__item {
  width: 36px;
  height: 36px;
  margin: 0 4px;
}
.l-header__nav .snsList__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .l-header__nav .snsList__link:hover {
    background-color: var(--color-gray-5);
  }
}
.l-header__nav .snsList__link img {
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header__nav .langBtn {
  width: 102px;
  height: 36px;
  margin: 0 12px;
  position: relative;
}
.l-header__nav .langBtn::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: var(--color-brand-brown);
  opacity: 0.2;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
}
.l-header__nav .langBtn__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  background: url(../img/common/icon/icon_global.svg) no-repeat left 12px center;
  background-size: 20px auto;
  padding: 8px 12px;
  transition: background-color 0.3s;
}
@media (hover: hover) {
  .l-header__nav .langBtn__link:hover {
    background-color: var(--color-gray-5);
  }
}
.l-header__nav .headerInfo {
  display: flex;
  align-items: center;
}
.l-header__nav .headerInfo__tel {
  margin: 0 12px 0 24px;
}
.l-header__nav .headerInfo__tel__num {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0 0 0 40px;
  position: relative;
}
.l-header__nav .headerInfo__tel__num::before {
  content: '';
  width: 32px;
  height: 32px;
  background: url(../img/common/icon/icon_tel_round.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-header__nav .headerInfo__time__upper {
  display: flex;
  align-items: center;
}
.l-header__nav .headerInfo__time__text {
  font-size: 1.2rem;
  line-height: 1.5;
}
.l-header__nav .headerInfo__time__text--time {
  font-size: 1.4rem;
  margin: 0 0 0 8px;
}
.l-header__nav .nav__lower {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 16px 0 0;
}
.l-header__nav .navList {
  display: flex;
}
.l-header__nav .navList__item {
  margin: 0 24px 0 0;
}
.l-header__nav .navList__item a {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 12px 0;
  position: relative;
}
.l-header__nav .navList__item a::after {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-brand-brown);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.4s;
}
.l-header__nav .navList__item.is-current a::after {
  width: 100%;
}
@media (hover: hover) { 
  .l-header__nav .navList__item a:hover::after {
    width: 100%;
  }
}
.l-header .contactBtn {
  width: 212px;
}
.l-header .contactBtn__item {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-pink);
  border-radius: 12px;
  padding: 12px 16px;
  transition: background-color 0.4s;
}
@media (hover: hover) {
  .l-header .contactBtn__item:hover {
    background-color: var(--color-darkPink);
  }
}
.l-header .contactBtn__text {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #fff;
  padding: 0 0 0 28px;
  position: relative;
}
.l-header .contactBtn__text::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon/icon_mail.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-header .contactBtn--01,
.l-header .contactBtn--03 {
  display: none;
}
/* --- */
.l-header__fixed {
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  transform: translateY(-100%);
  transition: transform 0.4s;
}
.l-header__fixed.is-visible {
  transform: translateY(0);
}
.l-header__fixed .l-header__logo {
  width: 142px;
  height: 48px;
}
.l-header__fixed .l-header__logo a {
  background-image: url(../img/common/logo/logo03.svg);
}
.l-header__fixed .nav__contents {
  display: flex;
  align-items: center;
}

/*** hamburger btn *********************************/
.c-hamburger {
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: var(--color-gray-10);
  border-radius: 8px;
  position: absolute;
  top: 24px;
  right: 8px;
  z-index: 10;
  display: none;
}
.c-hamburger__line {
  width: 20px;
  height: 1px;
  background: var(--color-brand-brown);
  position: absolute;
  left: 14px;
  transition: all 0.4s;
}
.c-hamburger__line--1 {
  top: 17px;
}
.c-hamburger__line--2 {
  top: 24px;
}
.c-hamburger__line--3 {
  top: 31px;
}
/* --- active --- */
.c-hamburger.is-active .c-hamburger__line--1 {
  top: 24px;
  transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__line--2 {
  transform: translateX(100%);
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line--3 {
  top: 24px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1280px) { 
  .l-header__nav .navList__item {
    margin: 0 10px 0 0;
  }
  .l-header__nav .navList__item a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1170px) {
  .c-hamburger {
    display: block;
  }
  .c-hamburger.is-fixed {
    position: fixed;
    top: 8px;
    right: 8px;
    transform: translateY(-64px);
  }
  .c-hamburger.is-posiSet {
    transition: transform 0.4s;
  }
  .c-hamburger.is-visible {
    transform: translateY(0);
  }
  .l-header {
    height: 96px;
  }
  .l-header__inner {
    width: 100%;
  }
  .l-header__meta {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #fff;
    position: relative;
    z-index: 6;
  }
  .l-header__logo {
    width: 144px;
    height: 65px;
    z-index: 6;
  }
  .l-header__nav {
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: var(--color-gray-0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }
  .l-header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
  .l-header__nav .nav__inner {
    width: 84%;
    height: calc(100% - 150px);
    overflow: hidden;
    overflow-y: auto;
    padding: 40px 0 100px;
    margin: 100px auto 0;
  }
  .l-header__nav .nav__contents {
    display: flex;
    flex-wrap: wrap-reverse;
  }
  .l-header__nav .nav__upper {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-header__nav .nav__upper .contents {
    width: 100%;
    border: 1px solid rgba(62, 58, 57, 0.2);
    border-width: 1px 0;
    padding: 32px 0;
    margin: 0 0 32px;
  }
  .l-header__nav .snsList::after {
    content: none;
  }
  .l-header__nav .snsList__item {
    width: 40px;
    height: 40px;
    margin: 0 16px 0 0;
  }
  .l-header__nav .snsList__link img {
    width: 100%;
    height: 100%;
  }
  .l-header__nav .langBtn {
    width: auto;
    height: auto;
  }
  .l-header__nav .langBtn::after {
    content: none;
  }
  .l-header__nav .langBtn__link {
    font-size: 1.8rem;
    padding: 0 0 0 28px;
    background-position: left center;
    background-size: 24px auto;
  }
  .l-header__nav .headerInfo {
    /* width: 100%; */
    display: block;
  }
  .l-header__nav .headerInfo__tel {
    margin: 0 0 8px;
  }
  .l-header__nav .headerInfo__tel__num {
    font-size: 4rem;
    padding: 0 0 0 44px;
  }
  .l-header__nav .headerInfo__tel__num::before {
    width: 36px;
    height: 36px;
    text-align: center;
  }
  .l-header__nav .headerInfo__time {
    display: flex;
    justify-content: center;
  }
  .l-header__nav .nav__lower {
    width: 100%;
    margin: 0;
  }
  .l-header__nav .navList {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .l-header__nav .navList__item {
    width: 47%;
    margin: 0 0 32px;
  }
  .l-header__nav .navList__item a {
    font-size: 1.8rem;
    padding: 0;
  }
  .l-header .contactBtn {
    width: 125px;
    margin: 0 60px 0 0;
    position: relative;
    z-index: 6;
  }
  .l-header .contactBtn__item {
    min-height: 48px;
    padding: 9px 12px;
    border-radius: 8px;
  }
  .l-header .contactBtn__text {
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 0 0 0 25px;
  }
  .l-header__nav .contactBtn {
    width: 100%;
    margin: 32px 0 0;
  }
  .l-header__nav .contactBtn__item {
    min-height: 64px;
  }
  .l-header__nav .contactBtn__text {
    font-size: 1.8rem;
    padding: 0 0 0 32px;
  }
  .l-header__nav .contactBtn__text::before {
    width: 24px;
    height: 24px;
  }
  .l-header .contactBtn--01,
  .l-header .contactBtn--03 {
    display: block;
  }
  .l-header__nav .contactBtn--02 {
    display: none;
  }
  .l-header__nav .contactBtn--03,
  .l-header .contactBtn--03 .contactBtn__item {
    width: 100%;
  }
  /* --- */
  .l-header__fixed {
    height: 64px;
  }
  .l-header__fixed .l-header__logo {
    width: 118px;
    height: 40px;
  }
  .l-header__fixed .l-header__nav {
    display: none;
  }
}

/* --- en -------------------- */
.l-header--en .l-header__nav .langBtn {
  width: 92px;
}
.l-header--en .l-header__nav .headerInfo__time__text--time {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.l-header--en  .l-header__nav .navList__item a {
  letter-spacing: 0;
}
.l-header--en .contactBtn--01,
.l-header--en .contactBtn--02 {
  width: 122px;
}
@media screen and (max-width: 1170px) {
.l-header--en .contactBtn--01 .contactBtn__text,
.l-header--en .contactBtn--02 .contactBtn__text {
    font-size: 1.4rem;
  }
  .l-header--en .l-header__nav .navList__item {
    width: 100%;
  }
  .l-header--en .l-header__nav .headerInfo__time {
    display: block;
  }
}


/* == simple header ============================================== */
.l-simpleHeader {
  width: 100%;
  height: 80px;
  position: relative;
}
.l-simpleHeader__inner {
  width: 98%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
}
.l-simpleHeader__logo {
  width: 124px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
.l-simpleHeader__logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background: url(../img/common/logo/logo03.svg) no-repeat center;
  background-size: contain;
}

/* == footer ============================================== */
.l-footer {
  background: linear-gradient(180deg, #fff 0%, #ddf1f1 100%);
  padding: 80px 0 24px;
  position: relative;
}
.l-footer .dItem {
  position: absolute;
}
.l-footer .dItem--01 {
  top: -176px;
  left: 6px;
}
.l-footer .dItem--02 {
  top: -44px;
  right: 0px;
}
.l-footer .dItem--03 {
  bottom: -80px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-footer .dItem--01 {
    width: 104px;
    top: -44px;
    left: -12px;
  }
  .l-footer .dItem--03 {
    width: 104px;
    bottom: auto;
    top: 730px;
    right: -16px;
  }
  .l-footer .dItem--04 {
    top: 536px;
    left: -6px;
  }
  .l-footer .dItem--05 {
    top: 680px;
    left: -97px;
  }
  .l-footer .dItem--06 {
    top: 240px;
    right: 14px;
  }
}
.l-footer__inner {
  width: 92%;
  max-width: 1328px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.l-footer__upper .l-footer__inner {
  display: flex;
  justify-content: space-between;
}
.l-footer__infoArea {
  width: 448px;
  flex-shrink: 0;
}
.l-footer__infoArea .infoArea__logo {
  width: 100%;
  max-width: 265px;
}
.l-footer__infoArea .infoArea__logoText {
  font-size: 1.2rem;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin: 20px 0 0;
}
.l-footer__infoArea .infoArea__logoText .en {
  font-size: 1rem;
}
.l-footer__infoArea .infoArea__info {
  font-size: 1.4rem;
  line-height: 1.75;
  border-left: 1px solid var(--color-lightGreenGray);
  padding: 0 0 0 40px;
  margin: 48px 0 0;
}
.l-footer__infoArea .infoArea__infoTel {
  margin: 20px 0 0;
}
.l-footer__infoArea .infoTel__itemNum {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 0 0 0 40px;
  position: relative;
}
.l-footer__infoArea .infoTel__itemNum::before {
  content: '';
  width: 36px;
  height: 36px;
  background: url(../img/common/icon/icon_tel.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-footer__infoArea .infoTel__time {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 4px 0 0;
}
.l-footer__infoArea .infoTel__timeText {
  font-size: 1.4rem;
}
.l-footer__infoArea .infoArea__info .c-btn {
  max-width: 256px;
  margin: 20px 0 0;
}
.l-footer__infoArea .infoArea__info .c-btn__item {
  min-height: 64px;
  border-radius: 16px;
  padding: 14px 20px;
}
.l-footer__infoArea .infoArea__info .c-btn__text {
  font-size: 1.6rem;
  padding: 0 34px 0 12px;
}
.l-footer__infoArea .infoArea__info .c-btn__text::after {
  content: none;
}
.l-footer__infoArea .infoArea__info .c-btn__text::before {
  width: 28px;
  height: 28px;
  background-position: center left 8px, center left -12px;
}
@media (hover: hover)  {
  .l-footer__infoArea .infoArea__info .c-btn__item:hover .c-btn__text::before {
    background-position: center left 32px, center left 8px;
  }
}
.l-footer__mapArea {
  flex: 1;
  max-width: 800px;
  height: 460px;
  position: relative;
  overflow: hidden;
}
.l-footer__mapArea iframe {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.l-footer__lower .navList {
  display: flex;
  flex-wrap: wrap;
  margin: 44px 0 0;
}
.l-footer__lower .navList__item {
  width: calc(100% / 7);
  text-align: center;
  position: relative;
  padding: 0 20px;
  margin: 20px 0;
}
.l-footer__lower .navList__item::before,
.l-footer__lower .navList__item::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: var(--color-brand-brown);
  opacity: 0.1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.l-footer__lower .navList__item::after {
  left: auto;
  right: -1px;
}
.l-footer__lower .navList__item a {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  position: relative;
}
.l-footer__lower .navList__item a::after {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: var(--color-brand-brown);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s;
}
@media (hover: hover) { 
  .l-footer__lower .navList__item a:hover::after {
    width: 100%;
  }
} 
.l-footer__lower .bnrList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 52px 0 0;
}
.l-footer__lower .bnrList__item {
  width: 200px;
  height: 72px;
  margin: 4px 12px;
}
.l-footer__lower .bnrList__item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.l-footer__lower .bnrList__item img {
  width: auto;
  height: auto;
  max-width: 136px;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .l-footer__lower .bnrList__item a:hover img {
    opacity: 0.7;
  }
}
.l-footer__lower .bottomArea {
  display: flex;
  justify-content: space-between;
  margin: 24px 0;
}
.l-footer__lower .bottomArea .link {
  font-size: 1.4rem;
  text-decoration: underline;
  letter-spacing: 0.06em;
}
.l-footer__lower .copyright {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1170px) {
  .l-footer__lower .navList__item {
    width: calc(100% / 4);
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: 88%;
  }
  .l-footer__upper .l-footer__inner {
    display: block;
  }
  .l-footer__infoArea {
    width: 100%;
  }
  .l-footer__infoArea .infoArea__logo {
    margin: 0 auto;
    text-align: center;
  }
  .l-footer__infoArea .infoArea__info {
    text-align: center;
    border: 0;
    padding: 0;
  }
  .l-footer__infoArea .infoArea__info .c-btn {
    margin: 20px auto 0;
  }
  .l-footer__mapArea {
    width: 100%;
    height: 198px;
    margin: 56px 0 0;
  }
  .l-footer__mapArea iframe {
    border-radius: 16px;
  }
  .l-footer__lower .navList {
    justify-content: space-between;
    margin: 64px 0 0;
  }
  .l-footer__lower .navList__item {
    width: 48%;
    padding: 0;
    text-align: left;
    margin: 0 0 10px;
  }
  .l-footer__lower .navList__item::before,
  .l-footer__lower .navList__item::after {
    content: none;
  }
  .l-footer__lower .bnrList {
    display: block;
  }
  .l-footer__lower .bnrList__item {
    margin: 8px auto;
  }
  .l-footer__lower .bottomArea {
    display: block;
    margin: 40px 0 0;
  }
  .l-footer__lower .copyright {
    margin: 10px 0 0;
  }
}
/* --- en -------------------- */
.l-footer--en .l-footer__infoArea .infoTel__timeText {
  font-weight: 700;
}
.l-footer--en .l-footer__infoArea .infoArea__info .c-btn {
  max-width: 280px;
}
.l-footer--en .l-footer__infoArea .infoArea__info .c-btn__item {
  padding: 14px 8px;
}
.l-footer--en .navList__item {
  width: auto;
  text-align: left;
  padding: 0;
  margin-right: 40px;
}
.l-footer--en  .navList__item::before,
.l-footer--en  .navList__item::after {
  content: none;
}
.l-footer--en .navList__item__text {
  display: inline-block;
  letter-spacing: 0.02em;
  padding: 0 0 0 32px;
  position: relative;
}
.l-footer--en .navList__item__text::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-image: url(../img/common/icon/icon_arrow02.svg), url(../img/common/icon/icon_arrow02.svg);
  background-repeat: no-repeat, no-repeat;
  background-color: var(--color-brand-brown);
  background-position: center left 6px, center left -12px;
  background-size: 12px auto;
  position: absolute;
  top: 0;
  left: 0;
  transition: background-position 0.4s;
}
@media (hover: hover)  {
  .l-footer--en .navList__item a:hover .navList__item__text::before {
    background-position: center left 24px, center left 6px;
  }
}
.l-footer--en .l-footer__lower .bottomArea {
  align-items: flex-end;
}
.l-footer--en .l-footer__lower .bnrList {
  margin: 0;
}
.l-footer--en .l-footer__lower .bnrList__item {
  margin: 4px 24px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer--en .l-footer__lower .navList {
    display: block;
  }
  .l-footer--en .navList__item {
    text-align: center;
    margin: 0 0 16px;
  }
  .l-footer--en .navList__item__text {
    padding: 0;
  }
  .l-footer--en .navList__item__text::before {
    content: none;
  }
  .l-footer--en .l-footer__lower .bnrList__item {
    margin: 8px auto;
  }
  .l-footer--en .l-footer__lower .copyright {
    margin: 40px 0 0;
  }
}

/* == simple footer ============================================== */
.l-simpleFooter {
  padding: 0 0 40px;
}
.l-simpleFooter__inner {
  width: 90%;
  margin: 0 auto;
}
.l-simpleFooter .copyright {
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}
/* == underPage ============================================== */
#underPage {}

@media screen and (min-width: 768px) { }
@media screen and (max-width: 767px) { }
@media (hover: hover) { }