@charset "utf-8";

@media screen and (min-width: 768px) {
  /* PC size */
}
@media screen and (max-width: 767px) {
  /* SP size */
}
@media (hover: hover) {
  /* hover style */
}

/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  color: #333;
}
button,
select,
input,
textarea {
  font-family: "Zen Kaku Gothic New", 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-noPost {
  width: 90%;
  font-size: 1.8rem;
  text-align: center;
  padding: 24px 0;
  margin: 0 auto;
}

/* == base style ============================================== */
.c-mainText {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  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;
}
/* --- 見出し --- */
.c-mainText h1 {
  line-height: 1.8;
  font-weight: 700;
  font-size: 2.8rem;
  padding: 0 0 22px;
  margin: 80px 0 40px;
}
.c-mainText h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 80px 0 40px;
}
.c-mainText h3 {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 700;
  background: rgba(14, 135, 159, 0.2);
  padding: 12px 16px;
  margin: 80px 0 40px;
}
.c-mainText h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  border-left: 4px solid #0e879f;
  padding: 0 0 0 8px;
  margin: 80px 0 40px;
}
.c-mainText h2 + h3,
.c-mainText h3 + h4, 
.c-mainText h2 + h4 {
  margin-top: 40px;
}
.c-mainText h5,
.c-mainText h6 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  margin: 24px 0 24px;
}
/* --- 段落 --- */
.c-mainText p,
.c-par {
  margin: 24px 0;
}
/* --- 引用 --- */
.c-mainText blockquote,
.c-blockquote {
  font-size: 1.6rem;
  line-height: 2;
  background: #eee;
  border: 4px solid #f7f7f7;
  padding: 32px;
  margin: 40px 0;
}
.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: 40px 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 {
  border: 2px solid #fff;
}
.c-mainText table {
  border-top: 3px solid #d4ded2;
  border-bottom: 3px solid #d4ded2;
}
.c-mainText table tr *:first-of-type {
  border-left: 0;
}
.c-mainText table tr *:last-of-type {
  border-right: 0;
}
.c-mainText table th {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: rgba(14, 135, 159, 0.2);
  padding: 10px 20px;
}
.c-mainText table td {
  font-size: 1.4rem;
  background: #f7f7f7;
  padding: 16px 20px;
}
.c-mainText table th a {
  color: #333 !important;
}
.c-mainText caption {
  text-align: left;
}
/* --- 定義リスト --- */
.c-mainText dl {
  width: 100%;
  margin: 24px 0;
}
.c-mainText dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-mainText dl {
    display: flex;
    flex-wrap: wrap;
  }
  .c-mainText dt {
    width: 200px;
    padding: 0 10px 0 0;
    margin: 8px 0;
  }
  .c-mainText dd {
    width: calc(100% - 200px);
    margin: 8px 0;
  }
}
/* --- 非順序リスト --- */
.c-mainText ul {
  padding: 0 0 0 24px;
  margin: 40px 0;
}
.c-mainText ul ul,
.c-mainText ol ul {
  padding: 0;
  margin: 0;
}
.c-mainText ul > li {
  font-size: 1.6rem;
  line-height: 1.5;
  text-indent: -22px;
  margin: 16px 0 0 20px;
}
.c-mainText ul > li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0e879f;
  margin: -2px 10px 0 8px;
}
.c-mainText ul ul > li::before {
  background: #fff;
  border: 1px solid #0e879f;
}
@media screen and (max-width: 767px) {
  .c-mainText ul  {
    padding: 0 0 0 6px;
  }
}
/* --- 順序リスト --- */
.c-mainText ol {
  counter-reset: olNum;
  padding: 0 0 0 24px;
  margin: 40px 0;
}
.c-mainText ol ol,
.c-mainText ul ol {
  padding: 0;
  margin: 0;
}
.c-mainText ol > li {
  font-size: 1.6rem;
  line-height: 1.5;
  text-indent: -22px;
  margin: 16px 0 0 20px;
}
.c-mainText ol > li::before {
  counter-increment: olNum;
  content: counter(olNum) ".";
  font-weight: 700;
  color: #0e879f;
  margin: 0 6px 0 0;
}
/* .c-mainText ol ol > li::before {
  content: counter(olNum, lower-alpha) ".";
} */
@media screen and (max-width: 767px) {
  .c-mainText ol {
    padding: 0 0 0 6px;
  }
}
/* --- 要素タグ --- */
/* [罫線] */
.c-mainText hr {
  width: 100%;
  height: 2px;
  background: #d4ded2;
  border: 0;
  margin: 80px 0;
}
/* [強調] */
.c-mainText strong,
.c-mainText b {
  font-weight: 700;
}
/* [強調] ( 斜体 ) */
.c-mainText em {
  font-style: italic;
}
/* [強調] ( マーカー ) */
.c-mainText mark {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
/* [打ち消し] */
.c-mainText del {
  text-decoration: line-through;
}
/* [住所] */
.c-mainText address,
.c-mainText address * {
  font-style: italic;
}
/* [アンカー] ( リンク ) */
.c-mainText a:not([class]),
.c-anchor,
a.c-anchor {
  color: #0e879f;
  text-decoration: underline;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .c-mainText a:not([class]):hover {
    opacity: 0.7;
  }
}
/* [略語、頭字語] ( abbreviation ) */
.c-mainText abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration-style: dotted;
}
/* [引用元] */
.c-mainText cite {
  font-style: italic;
}
/* [コード] */
.c-mainText code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [追加、挿入] */
.c-mainText ins {
  text-decoration: underline;
}
/* [キーボード入力要素] */
.c-mainText kbd {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
}
/* [コードブロック] */
.c-mainText 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 {
  height: 6px;
}
.c-mainText pre::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.c-mainText pre::-webkit-scrollbar-thumb {
  background: #cbcbcb;
}
/* [一部引用] */
.c-mainText q::before {
  content: open-quote;
}
.c-mainText q::after {
  content: close-quote;
}
/* [下付き、上付き文字] */
.c-mainText sub,
.c-mainText sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.c-mainText sub {
  bottom: -0.25em;
}
.c-mainText sup {
  top: -0.5em;
}
/* [変数、引数、因数] */
.c-mainText 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: 1rem;
  line-height: 1.66;
  margin: 8px 0;
}
/* --- 配置 --- */
.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 40px;
}
.c-heading__en {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #0e879f;
  padding: 0 0 0 24px;
  margin: 0 0 8px;
  position: relative;
}
.c-heading__en::before {
  content: '';
  display: block;
  width: 8px;
  height: 20px;
  background: #0e879f;
  transform: skew(-20deg, 0deg);
  position: absolute;
  top: -1px;
  left: 4px;
}
.c-heading__ja {
  display: block;
  font-size: 4rem;
  line-height: 1.6;
  font-weight: 700;
}
.c-heading__jaSmall {
  font-size: 2.4rem;
}
/* --- */
.c-heading--white .c-heading__en {
  color: #fff;
}
.c-heading--white .c-heading__en::before {
  background: #fff;
}
.c-heading--white .c-heading__ja {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-heading__ja {
    font-size: 3.2rem;
  }
  .c-heading__jaSmall {
    font-size: 2rem;
  }
}

/*** button *********************************/
.c-btn button {
  -webkit-appearance: none;
  appearance: none;
}
.c-btn__item {
  color: inherit;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 400px;
  text-align: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  padding: 14px 16px;
  text-decoration: none;
  position: relative;
  background-color: #e92c1b;
  background-image: url(../img/common/icon_arrow02.svg);
  background-repeat: no-repeat;
  background-size: 24px auto;
  background-position: center right 16px;
  transition: background-color 0.3s;
}
.c-btn__text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 30px;
}
@media (hover: hover) {
  .c-btn .c-btn__item:hover {
    background-color: #333;
  }
}
/* --- */
.c-btn--back .c-btn__item {
  background-image: none;
  background-color: #6c6c6c;
}  
/* --- */
.c-btn--center {
  text-align: center;
}
/* --- */
.c-btn--white .c-btn__item {
  background-color: #fff;
  background-image: url(../img/common/icon_arrow03.svg);
}
.c-btn--white .c-btn__text {
  color: #0e879f;
}
/* --- */
.c-btn--l .c-btn__item {
  padding: 26px 16px;
}
/* --- */
.c-btn--mail .c-btn__item::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_mail01.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
.c-btn--white.c-btn--mail .c-btn__item::before {
  background-image: url(../img/common/icon_mail02.svg);
}

/*** contact cta *********************************/
.c-cta {
  color: #fff;
  background: url(../img/common/texture01.png) repeat;
  background-size: 1440px auto;
  padding: 80px 0;
  position: relative;
}
.c-cta::before {
  content: '';
  display: block;
  width: 598px;
  height: 100%;
  background: url(../img/common/bg_contact.png) no-repeat center right;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.c-cta .l-inner {
  display: flex;
  position: relative;
  z-index: 1;
}
.c-cta__heading {
  width: 30%;
  padding: 40px 0;
}
.c-cta__itemWrap {
  flex: 1;
  display: flex;
}
.c-cta__item {
  width: 50%;
  padding: 40px;
}
.c-cta__item--tel {
  padding-right: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-width: 0 0 0 1px;
}
.c-cta__itemTitle {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.c-cta__itemCaption {
  text-align: center;
  margin: 8px 0 0;
}
.c-cta__itemNum {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-cta__itemNum__text {
  display: inline-block;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
  padding-left: 38px;
  background: url(../img/common/icon_tel02.svg) no-repeat top 15px left;
  background-size: 26px auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1260px) {
  .c-cta__itemTitle {
    font-size: 2rem;
  }
  .c-cta__itemNum__text {
    font-size: 4rem;
    font-weight: 900;
    padding-left: 38px;
    background-position: top 8px left;
  }
}
@media screen and (max-width: 991px) {
  .c-cta__heading {
    width: 100%;
  }
  .c-cta .l-inner {
    display: block;
  }
  .c-cta__item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-cta::before {
    width: 100%;
    height: 100%;
    background-image: url(../img/common/bg_contact02.png);
    background-size: 100% auto;
    background-position: top center;
  }
  .c-cta .l-inner {
    display: block;
  }
  .c-cta__heading {
    width: 100%;
  }
  .c-cta__itemWrap {
    display: block;
  }
  .c-cta__item {
    width: 100%;
    padding: 40px 20px;
  }
  .c-cta__item--tel {
    border-width: 1px 0 0 0;
  }
  .c-cta__itemTitle {
    font-size: 1.6rem;
    margin: 0 0 24px;
  }
  .c-cta__itemNum__text {
    font-size: 4rem;
    background-position: top 8px left;
    padding-left: 34px;
  }
}

/*** article list *********************************/
.c-article {
  width: 100%;
}
.c-article__item {
  display: block;
  padding: 24px 40px 24px 0;
  border: 1px solid #333;
  border-width: 1px 0;
  position: relative;
  transition: background-color 0.3s;
  margin: -1px 0 0;
}
.c-article__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_arrow01.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.c-article__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
.c-article__date {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 8px 0 0;
}
@media (hover: hover) {
  .c-article__item:hover {
    background-color: #eee;
  }
}

/*** faq *********************************/
.c-faq {
  width: 100%;
  margin: 0 0 16px;
}
.c-faq__q {
  padding: 56px 140px 56px 40px;
  cursor: pointer;
  position: relative;
  background: #fff;
}
.c-faq__q::before,
.c-faq__q::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  position: absolute;
  top: 72px;
  right: 24px;
  transition: transform 0.4s;
}
.c-faq__q:after {
  transform: rotate(90deg);
}
.c-faq__q.is-active::after {
  transform: rotate(0);
}
.c-faq__qTitle {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}
.c-faq__a {
  display: none;
  padding: 40px 128px;
  background: rgba(14, 135, 159, 0.1);
  position: relative;
}
.c-faq__a::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-faq__q {
    padding: 24px 24px 64px;
  }
  .c-faq__q::before,
  .c-faq__q::after {
    width: 24px;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
  }
  .c-faq__a {
    padding: 46px 24px;
  }
}

/*** breadcrumb *********************************/
.c-breadcrumb {
  padding: 64px 0 0;
}
.c-breadcrumbList {
  width: 98%;
  max-width: 1280px;
  line-height: 1.5;
  margin: 0 auto;
}
.c-breadcrumbList__item {
  display: inline;
  vertical-align: middle;
  font-size: 1.6rem;
  position: relative;
}
.c-breadcrumbList__item:nth-of-type(n + 2) {
  padding: 0 0 0 32px;
}
.c-breadcrumbList__item:nth-of-type(n + 2)::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid #333;
  border-width: 2px 2px 0 0;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 12px;
  transform: rotate(45deg);
}
.c-breadcrumbList__item a {
  color: #0e879f;
  text-decoration: underline;
}
@media (hover: hover) {
  .c-breadcrumbList__item a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 24px 0 0;
  }
  .c-breadcrumbList {
    width: 92%;
  }
  .c-breadcrumbList__item {
    font-size: 1.2rem;
  }
  .c-breadcrumbList__item:nth-of-type(n + 2)::before {
    width: 8px;
    height: 8px;
    top: 5px;
  }
} 

/*** under title *********************************/
.c-underTitle {
  width: 100%;
  height: 378px;
  background: url(../img/common/wave02.png) no-repeat bottom center;
  background-size: 100% auto;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.c-underTitle__text {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1;
  color: #0e879f;
  opacity: 0.1;
  position: absolute;
  top: 100px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .c-underTitle {
    height: 208px;
    background-image: url(../img/common/wave02_sp.png);
    background-position: top center;
  }
  .c-underTitle__text {
    font-size: 8rem;
    top: auto;
    bottom: 0;
    right: -8px;
  }
}

/*** 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: 40px;
  height: 40px;
  font-size: 1.8rem;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  margin: 6px 10px;
  position: relative;
  border-radius: 8px;
}
.c-paginationList__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.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 {
  background: url(../img/common/icon_arrow02.svg) no-repeat center #0e879f;
  background-size: 24px auto;
  font-size: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  transition: opacity 0.3s;
}
.c-paginationList__item--prev {
  transform: scale(-1, 1);
  margin-right: 40px;
  margin-left: 0;
}
.c-paginationList__item--next {
  margin-right: 0;
  margin-left: 40px;
}
/* --- current --- */
.c-paginationList__item.is-current {
  color: #0e879f;
}
/* --- disable --- */
.c-paginationList__item.is-disable {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin: 40px auto;
  }
  .c-paginationList__item {
    margin: 6px 4px;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .c-paginationList__item a:hover {
    color: #0e879f;
  }
  .c-paginationList__item--prev:hover,
  .c-paginationList__item--next:hover {
    /* background-color: #333; */
    opacity: 0.6;
  }
}

/*** contact form *********************************/
.c-contactForm {
  max-width: 1024px;
  margin: 100px auto 0;
}
.c-contactForm__dl {
  display: flex;
  flex-wrap: wrap;
}
.c-contactForm__dl + .c-contactForm__dl {
  margin: 48px 0 0;
}
.c-contactForm__dt {
  width: 200px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 18px 0 0;
}
.c-contactForm__dd {
  width: calc(100% - 200px);
  position: relative;
}

/****** 必須 ******/
.c-contactForm .required {
  display: inline;
  padding: 0 0 0 44px;
  position: relative;
}
.c-contactForm .required::before {
  content: "必須";
  display: block;
  width: 36px;
  height: 22px;
  font-size: 1.2rem;
  line-height: 22px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  color: #fff;
  background: #ee0606;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-font-smoothing: antialiased;
}

/****** 任意 ******/
.c-contactForm .any {
  display: inline;
  padding: 0 0 0 44px;
  position: relative;
}
.c-contactForm .any::before {
  content: "任意";
  display: block;
  width: 36px;
  height: 22px;
  font-size: 1.2rem;
  line-height: 22px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  color: #333;
  background: #ccc;
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-font-smoothing: antialiased;
}

/****** input ******/
.c-contactForm input {
  width: 100%;
  min-height: 56px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 4px;
  padding: 6px 12px 6px;
}
.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;
}
.c-contactForm input {
  max-width: 440px;
}
.c-contactForm .c-contactForm__dl--mail input {
  max-width: none;
}

/****** テキストエリア ******/
.c-contactForm textarea {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #333;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.3);
  border-radius: 4px;
  padding: 18px 20px;
}

/****** placeholder ******/
.c-contactForm input::placeholder,
.c-contactForm textarea::placeholder {
  color: #ccc;
  font-weight: 400;
}

/****** チェックボックス ******/
.c-contactForm__checkWrap {
  font-size: 0;
  padding: 4px 0 0;
}
.c-contactForm .checkbox-field,
.c-contactForm .mwform-checkbox-field,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.75;
  padding: 0px 0 0px 44px;
  margin: 6px 24px 10px 0;
  position: relative;
}
.c-contactForm .checkbox-field label,
.c-contactForm .mwform-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 .mwform-checkbox-field-text,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label {
  display: block;
}
.c-contactForm .checkbox-field-text::before,
.c-contactForm .mwform-checkbox-field-text::before,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #adadad;
  position: absolute;
  top: 0;
  left: 0;
}
.c-contactForm .checkbox-field-text::after,
.c-contactForm .mwform-checkbox-field-text::after,
.c-contactForm .wpcf7-checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  border: 1px solid #fff;
  border-width: 0 0 3px 3px;
  opacity: 0;
  position: absolute;
  top: 9px;
  left: 7px;
  transform: rotate(-45deg);
}
/* --- selected --- */
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::before,
.c-contactForm
  input[type="checkbox"]:checked
  + .mwform-checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background: #0e879f;
  border-color: #0e879f;
}
.c-contactForm input[type="checkbox"]:checked + .checkbox-field-text::after,
.c-contactForm
  input[type="checkbox"]:checked
  + .mwform-checkbox-field-text::after,
.c-contactForm input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.c-contactForm input[type="checkbox"]:focus + .checkbox-field-text::before,
.c-contactForm
  input[type="checkbox"]:focus
  + .mwform-checkbox-field-text::before,
.c-contactForm input[type="checkbox"]:focus + .wpcf7-list-item-label::before {
  outline: auto;
}

/****** 送信ボタン ******/
.c-contactForm__btn {
  text-align: center;
  font-size: 0;
  margin: 64px 0 0;
}
.c-contactForm__btn .c-btn {
  margin: 20px 0;
}
.c-contactForm__btn .c-btn .c-btn__item {
  max-width: 630px;
  padding: 30px 16px;
}

/****** validation error ******/
.c-contactForm input.is-error,
.c-contactForm select.is-error {
  border: 1px solid #df543a;
}
.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.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #df543a;
  margin: 10px 0 0;
  padding: 0px 0 0 34px;
  position: relative;
}
.c-error-txt .is-error::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/common/icon_error.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/****** 個別スタイル ******/
/* 承認確認 */
.c-contactForm__agree  {
  margin: 40px 0 0 200px;
}

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

@media screen and (max-width: 767px) {
  .c-contactForm__dl {
    display: block;
  }
  .c-contactForm__dt {
    width: 100%;
    padding: 0;
    margin: 0 0 8px;
  }
  .c-contactForm__dd {
    width: 100%;
  }
  .c-contactForm .checkbox-field,
  .c-contactForm .mwform-checkbox-field,
  .c-contactForm .wpcf7-checkbox .wpcf7-list-item {
    display: block;
    font-size: 1.6rem;
    line-height: 1.75;
    margin: 6px 0 10px;
  }
  .c-contactForm__agree {
    margin: 40px 0 0;
  }
}

/****** 確認 ******/
.c-contactForm__confirm {
  display: none;
}
.c-contactForm__confirm .c-contactForm__dl.is-hidden {
  display: none;
}
.c-contactForm__confirm .c-contactForm__dl {
  display: block;
}
.c-contactForm__confirm .c-contactForm__dt {
  width: 100%;
  padding: 0;
  margin: 0 0 10px;
}
.c-contactForm__confirm .c-contactForm__dateSet .dateSet__label {
  padding: 4px 10px 0 0;
}

/*** xxx *********************************/
@media screen and (max-width: 767px) {}
@media (hover: hover) {}

/* == header ============================================== */
.l-header {
  width: 100%;
  height: 104px;
  border-top: 16px solid #0e879f;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.l-header__inner {
  width: 98%;
  max-width: 1280px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.l-header__logo {
  width: 442px;
  height: 55px;
  position: relative;
}
.l-header__logo a {
  width: 100%;
  height: 100%;
  display: block;
  text-indent: 110%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background: url(../img/common/logo01.svg) no-repeat center;
  background-size: contain;
}
.l-header__cta {
  display: flex;
  align-items: center;
}
.l-header__cta .cta__tel {
  margin-right: 32px;
}
.l-header__cta .cta__telNum {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding-left: 22px;
  background: url(../img/common/icon_tel01.svg) no-repeat top 8px left;
  background-size: 18px auto;
}
.l-header__cta .c-btn {
  min-width: 277px;
}
@media screen and (max-width: 991px) {
  .l-header__cta .cta__tel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 84px;
    border-width: 12px 0 0;
  }
  .l-header__inner {
    width: 92%;
  }
  .l-header__logo {
    width: 178px;
    height: 40px;
  }
  .l-header__logo a {
    background-image: url(../img/common/logo02.svg);
  }
  .l-header__cta .cta__tel {
    display: none;
  }
  .l-header__cta .cta__mail {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 8px;
    z-index: 5;
    text-align: center;
  }
  .l-header__cta .c-btn__item {
    border-radius: 8px 8px 0 0;
    padding: 23px 16px;
  }
}

/* == footer ============================================== */
.l-footer {
  background: #0e879f;
  padding: 20px 0 26px;
  margin: 16px 0 0;
}
.l-footer .copyright {
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 20px 0 100px;
    margin: 8px 0 0;
  }
}

/* == underPage ============================================== */
#underPage main {
  margin: 104px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #underPage main {
    margin: 84px 0 0;
  }
}
