@charset "UTF-8";
/* 
ress.css
 * ------------------------------------------------------ */
/*!
 * ress.css • v1.1.2
 * MIT License
 * github.com/filipelinhares/ress
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*, :after, :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden], template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

b, strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

input {
  border-radius: 0;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, select {
  text-transform: none;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio, canvas, progress, video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

/*
1-1 基本モジュール color　
----------------------------------------*/
/*------*/
/*mixin*/
/*mixin*/
/*-------------------------------------------
* Modules
1. 基本モジュール
4. contents ページ内主要コンテンツ内
5. ページ関連
----------------------------------------*/
html {
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  color: #23221F;
  line-height: 1.78;
  /* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に設定 */
  font-size: 1.6em;
  /*fade*/
  -webkit-animation: fadein 1.5s forwards;
          animation: fadein 1.5s forwards;
  color: #23221F;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
  1. 基本モジュール レスポンシブ
  ----------------------------------------*/
@media (min-width: 768px) {
  .spItem {
    display: none !important;
  }
  .pcItem {
    display: inline-block;
  }
  .pc_ {
    display: none !important;
  }
}
@media (max-width: 1170px) {
  .pc_ {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .pcItem {
    display: none !important;
  }
  .spItem {
    display: inline-block;
  }
  .spCenter {
    text-align: center !important;
  }
  .spLeft {
    text-align: left !important;
  }
}
/*
  1-1 基本モジュール　アンドロイド
  ----------------------------------------*/
h1,
h2,
h3,
h4,
h5,
p {
  max-height: 100%;
}

/*
  1 フルサイズ  -----------------------------------------------------------------------------------*/
@media screen and (min-width: 1192px) {
  .w_fullsize {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}
@media (max-width: 767px) {
  .w_fullsize {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

@media (max-width: 767px) {
  .sp_w_fullsize {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.fontBasicSize {
  font-size: 1.6rem;
}

.fontSmallSize1 {
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .sp_indent {
    padding-left: 1em;
    text-indent: -1em;
  }
  .sp_indent::before {
    display: inline-block !important;
  }
}

/*
.flex 
  ----------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex_end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*
ul 
  ----------------------------------------*/
ul {
  list-style: none;
}

/*
  1-1 
  ----------------------------------------*/
.mLR_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.fL {
  float: left;
}

.fR {
  float: right;
}

.clr {
  clear: both !important;
  font-size: 0px;
  line-height: 0em;
}

.txR {
  text-align: right !important;
}

.txL {
  text-align: left !important;
}

.txC {
  text-align: center !important;
}

/*****/
@media (max-width: 767px) {
  .spL {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  .spC {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .spMt0 {
    margin-top: 0px !important;
  }
}

.txB {
  font-weight: bold !important;
}

.fontBold {
  font-weight: bold !important;
}

/* margin
-----------------------------------------*/
.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr18 {
  margin-right: 18px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr43 {
  margin-right: 43px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.ml2em {
  margin-left: 2em !important;
}

.mt40 {
  margin-top: 40px !important;
}
@media (max-width: 767px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.mt50 {
  margin-top: 50px !important;
}
@media (max-width: 767px) {
  .mt50 {
    margin-top: 40px !important;
  }
}

.mt60 {
  margin-top: 60px !important;
}
@media (max-width: 767px) {
  .mt60 {
    margin-top: 40px !important;
  }
}

.mt70 {
  margin-top: 70px !important;
}
@media (max-width: 767px) {
  .mt70 {
    margin-top: 60px !important;
  }
}

.mt80 {
  margin-top: 80px !important;
}
@media (max-width: 767px) {
  .mt80 {
    margin-top: 70px !important;
  }
}

.mt90 {
  margin-top: 90px !important;
}
@media (max-width: 767px) {
  .mt90 {
    margin-top: 80px !important;
  }
}

.mt100 {
  margin-top: 100px !important;
}

.mt200 {
  margin-top: 200px !important;
}

@media (max-width: 767px) {
  .sp_mt100 {
    margin-top: 100px !important;
  }
}

/****************/
@media (max-width: 767px) {
  .sp_mt50 {
    margin-top: 50px !important;
  }
}

@media (max-width: 767px) {
  .sp_mt60 {
    margin-top: 60px !important;
  }
}

/****************/
@media (max-width: 767px) {
  .sp_mt100 {
    margin-top: 100px !important;
  }
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

/*
  4. layout#contents 全体のフォントの大きさなど
  -------------------------------------------------------------------------------*/
/*mainはページのメインコンテンツheader,footerと同レベル*/
main {
  /*スペース調整*/
}
/*
2. a  -----------------------------------------------------------------------------------*/
a {
  text-decoration: none;
  text-decoration: none;
}
@media (min-width: 768px) {
  a {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

/**header**/
.header {
  width: 100%;
  font-family: sans-serif;
}
.header .container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header {
  /* top bar */
}
.header .header-top {
  background: #F7F5F5;
  font-size: 12px;
}
.header .header-top .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}
.header .header-top .container p {
  font-size: 1.2rem;
  color: #23221F;
}
.header .header-top .container p span {
  color: #888888;
}
.header .top-links a {
  margin-left: 15px;
  color: #888888;
  text-decoration: underline;
}
.header {
  /* main header */
}
.header .header-main {
  background: #fff;
}
.header .header-main .container {
  padding-top: 12px;
  padding-bottom: 12px;
}
.header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 上下中央揃え */
}
.header .logo a p {
  padding-left: 8px;
  color: #28AEA0;
  font-weight: bold;
  font-size: 12px;
}
.header .logo a img {
  width: 183px;
}
.header {
  /* contact button */
}
.header .contact-btn {
  margin-right: 0px;
}
.header .header__btn_right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/****sp*****/
/* ======================================
   drawer base reset
====================================== */
.drawer-contents {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  background: #fff;
}
@media (max-width: 767px) {
  .drawer-contents {
    margin-top: 65px;
  }
}

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

@media (max-width: 767px) {
  html.drawer-open,
  body.drawer-open {
    overflow: hidden;
  }
  body.drawer {
    overflow-x: hidden;
    position: relative;
  }
  .drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 9998;
  }
  .drawer-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    max-width: none !important;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    overflow: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease !important;
    transition: -webkit-transform 0.3s ease !important;
    transition: transform 0.3s ease !important;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
    visibility: hidden;
  }
  .drawer--right.drawer-open .drawer-nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
  }
  .drawer-menu {
    margin: 0;
    padding: 0;
  }
}
/* ======================================
   sp header
====================================== */
.spHeader {
  display: none;
}
@media (max-width: 767px) {
  .spHeader {
    display: block;
    position: relative;
    z-index: 1000;
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .spHeader__inner {
    height: 64px;
    padding: 0 0px 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (max-width: 767px) {
  .spHeader__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .spHeader__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 上下中央揃え */
  }
  .spHeader__logo a p {
    font-size: 12px;
    font-weight: bold;
    padding-left: 8px;
    color: #28AEA0;
  }
}
@media (max-width: 767px) {
  .spHeader__logo img {
    display: block;
    width: 100%;
    max-width: 183px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .spHeader__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/* ======================================
   sp drawer
====================================== */
@media (max-width: 767px) {
  .spDrawer {
    width: 100% !important;
    max-width: none !important;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .spDrawer__inner {
    width: 100%;
    height: 100vh;
    padding: 0px 15px 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow-y: auto;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .spDrawer__logo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
@media (max-width: 767px) {
  .spDrawer__logo a {
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .spDrawer__logo img {
    display: block;
    width: 165px;
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .spDrawer__buttons {
    margin-top: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .spDrawer__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 767px) {
  .spDrawer__btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 42px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (min-width: 768px) {
  .spDrawer__btn a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .spDrawer__btn--outline a {
    border: 2px solid #FFDE55;
    background: #fff;
    color: #222;
  }
}
@media (max-width: 767px) {
  .spDrawer__btn--fill a {
    background: #FFDE55;
    color: #222;
  }
}
.spDrawer__pre_btn {
  margin-top: 134px;
  text-align: center;
}
.spDrawer__pre_btn .spDrawer__btn {
  margin: 0 auto;
  width: 144px;
}
.spDrawer__pre_btn .spDrawer__btn:nth-child(2) {
  margin-top: 60px;
  margin-bottom: 80px;
}
.spDrawer__pre_btn .spDrawer__pre_link {
  font-size: 12px;
  color: #222;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .spDrawer__subNav {
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 14px 24px;
  }
}
@media (max-width: 767px) {
  .spDrawer__subNav li {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .spDrawer__subNav a {
    color: #222;
    font-size: 12px;
    line-height: 1.6;
    text-decoration: underline;
  }
}
.spDrawer__subNav a:hover {
  opacity: 0.6;
}

/* ======================================
   utility
====================================== */
@media (max-width: 767px) {
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}

@media (max-width: 767px) {
  .spDrawer {
    width: 100vw !important;
    max-width: none !important;
    background: #fff;
  }
}
@media (max-width: 767px) {
  .spDrawer.drawer-nav {
    left: 0;
    right: auto !important;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
  }
}

@media (max-width: 767px) {
  .drawer--right.drawer-open .spDrawer.drawer-nav {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
  }
}

/*
  3. footer
  -------------------------------------------------------------------------------*/
.footer {
  background: #fff;
  position: relative;
}
.footer a {
  color: #222;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .footer a:hover {
    opacity: 0.6;
  }
}
.footer {
  /* 上段 */
}
.footer .footer__top {
  background: #fff;
  padding: 80px 0 30px 0;
}
@media (max-width: 767px) {
  .footer .footer__top {
    padding: 70px 0 20px 0;
  }
}
.footer .footer__topInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 150px;
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .footer .footer__topInner {
    padding-right: 110px;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer__topInner {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .footer .footer__topInner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px 0;
    position: relative;
  }
}
.footer .footer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .footer__brandRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 34px;
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .footer .footer__brandRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer .footer__brandRow {
    gap: 18px;
    margin-bottom: 16px;
  }
}
.footer .footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer .footer__logo img {
  display: block;
  width: 325px;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .footer .footer__logo img {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .footer .footer__logo img {
    width: 256px;
  }
}
.footer .footer__address {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}
@media (max-width: 767px) {
  .footer .footer__address {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.footer .footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .footer .footer__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .footer .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .footer__flex .footer__map {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .footer .footer__flex .footer__map {
    font-size: 14px;
  }
}
.footer .footer__flex .footer__map a {
  text-decoration: underline;
}
.footer .footer__flex .footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  list-style: none;
  margin: 4px 0 0;
  margin-left: 45px;
  padding: 0;
}
@media (max-width: 767px) {
  .footer .footer__flex .footer__sns {
    gap: 18px;
    margin-top: 20px;
    margin-left: 0px;
  }
}
.footer .footer__flex .footer__sns li {
  margin: 0;
  padding: 0;
}
.footer .footer__flex .footer__sns a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.footer .footer__flex .footer__sns img {
  display: block;
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .footer .footer__flex .footer__sns img {
    width: 36px;
    height: 36px;
  }
}
.footer .footer__mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0;
}
@media (max-width: 767px) {
  .footer .footer__mark {
    position: absolute;
    right: 15px;
    bottom: 120px;
  }
}
.footer .footer__mark img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .footer .footer__mark img {
    width: 107px;
  }
}
.footer {
  /* 中段ナビ */
}
.footer .footer__navArea {
  padding: 11px 0 11px;
}
@media (max-width: 767px) {
  .footer .footer__navArea {
    padding: 14px 0;
  }
}
@media (max-width: 767px) {
  .footer .footer__nav_current {
    margin-top: 15px;
  }
}
.footer .footer__nav_current p {
  font-size: 16px;
}
.footer .footer__nav_r .footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .footer .footer__nav_r .footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 20px;
  }
}
.footer .footer__nav_r .footer__nav li {
  margin: 0;
  padding: 0;
}
.footer .footer__nav_r .footer__nav li a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer .footer__nav_r .footer__nav li {
    font-size: 12px;
  }
}
.footer .footer__nav_r .footer__nav li:first-child a, .footer .footer__nav_r .footer__nav li:nth-child(2) a {
  font-weight: 700;
  color: #28AEA0;
  font-size: 16px;
  display: block;
}
@media (min-width: 768px) {
  .footer .footer__nav_r .footer__nav li:first-child a, .footer .footer__nav_r .footer__nav li:nth-child(2) a {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer .footer__nav_r .footer__nav li:first-child a, .footer .footer__nav_r .footer__nav li:nth-child(2) a {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .footer .footer__nav_r .footer__nav li.break {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer .footer__nav_r .footer__nav li.break {
    width: 100%; /* 全幅を占有して強制改行 */
    height: 0;
    margin: 0;
    padding: 0;
  }
}
.footer .footer__nav_r .footer__nav a {
  text-decoration: underline;
  line-height: 1.4;
  color: #222;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .footer .footer__nav_r .footer__nav a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer .footer__nav_r .footer__nav a {
    font-size: 1.2rem;
  }
}
.footer {
  /* 下段 */
}
.footer .footer__bottom {
  background: #F2FAF9;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .footer .footer__bottom {
    padding: 6px 0;
  }
}
.footer .footer__bottomInner {
  text-align: center;
}
.footer .footer__copy {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #23221F;
  white-space: nowrap;
}

/*page top
  -------------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  font-size: 0px;
  line-height: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  #page-top {
    bottom: 3px;
    right: 15px;
  }
}
#page-top a:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 0;
  border-top: solid 2px #28AEA0;
  border-right: solid 2px #28AEA0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  left: 38%;
  bottom: 0;
  margin: auto;
}
#page-top a {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  position: relative;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid #28AEA0;
  border-radius: 40px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #page-top a {
    width: 40px;
    height: 40px;
  }
  #page-top a:before {
    content: "";
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 2px #28AEA0;
    border-right: solid 2px #28AEA0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    top: 2px;
    left: 32%;
    bottom: 0;
    margin: auto;
  }
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}

/*
article  ************************************************/
p {
  font-size: 1.6rem;
  line-height: 1.68 !important;
}
p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.68) * 0.5em);
  content: "";
}
p::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.68) * 0.5em);
  content: "";
}
fv p.fontsize12 {
  font-size: 1.2rem;
}
p.fontsize14 {
  font-size: 1.4rem;
}

a {
  color: #23221F;
}
@media (min-width: 768px) {
  a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

/*basicWrap 1216px*/
.basicWrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1216px !important;
}
@media (max-width: 1170px) {
  .basicWrap {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .basicWrap {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*basicWrap 1116px*/
.basicWrap1116 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1116px;
  text-align: left;
}
@media (max-width: 1170px) {
  .basicWrap1116 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*basicWrap 1116px*/
.basicWrap1046 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1046px;
  text-align: left;
}
@media (max-width: 1170px) {
  .basicWrap1046 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*basicWrap 986px*/
.basicWrap986 {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 986px;
  text-align: left;
}
@media (max-width: 1170px) {
  .basicWrap986 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*btnWrap
  -------------------------------------------------------------------------------*/
.btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btnWrap .btn {
  width: 144px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-radius: 30px;
}
.btnWrap .btn.btn_small {
  background: #FFDE55;
  border: 2px solid #FFDE55;
  width: 160px;
  height: 44px;
  color: #23221F;
  font-weight: bold;
}
@media (min-width: 768px) {
  .btnWrap .btn.btn_small:hover {
    opacity: 1;
    background: #FFF;
  }
}
.btnWrap .btn.btn_small2 {
  background: #FFF;
  border: 2px solid #FFDE55;
  width: 192px;
  height: 44px;
  color: #23221F;
  font-weight: bold;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .btnWrap .btn.btn_small2:hover {
    opacity: 1;
    background: #FCF5D7;
  }
}
.btnWrap.sp__ {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.btnWrap.sp__ .btn.btn1__ {
  margin-right: 0px;
  width: 100%;
  max-width: 311px;
}
.btnWrap.sp__ .btn.btn2__ {
  margin-right: 0px;
  margin-top: 40px;
  width: 100%;
  max-width: 311px;
}

@media (min-width: 768px) {
  .btn_white:hover {
    background: #FCF5D7;
  }
}

@media (min-width: 768px) {
  .btn_text {
    color: #23221F;
    text-decoration: underline;
  }
  .btn_text:hover {
    text-decoration: none;
  }
}

/*article
  -------------------------------------------------------------------------------*/
.text__link {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 767px) {
  h1 {
    line-height: 1.7 !important;
  }
  h1::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.7) * 0.5em);
    content: "";
  }
  h1::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.7) * 0.5em);
    content: "";
  }
}
/*pankuzu
  -------------------------------------------------------------------------------*/
.pankuzu {
  padding: 16px 0 14px;
}
@media (max-width: 767px) {
  .pankuzu {
    padding: 12px 0 10px;
  }
}
.pankuzu.bg_g {
  background: #F7F5F5;
}
.pankuzu.bg_w {
  background: #FFF;
}
.pankuzu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #23221F;
}
@media (max-width: 767px) {
  .pankuzu__list {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}
.pankuzu__list span {
  color: #23221F !important;
}
.pankuzu__list a,
.pankuzu__list span {
  position: relative;
  color: #7f7f7f;
}
.pankuzu__list a {
  text-decoration: underline;
}
.pankuzu__list > * {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pankuzu__list > * + * {
  margin-left: 34px;
}
@media (max-width: 767px) {
  .pankuzu__list > * + * {
    margin-left: 18px;
  }
}
.pankuzu__list > * + *::before {
  content: ">";
  position: absolute;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #9a9a9a;
  font-size: 10px;
  line-height: 1;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .pankuzu__list > * + *::before {
    left: -11px;
    font-size: 9px;
  }
}
.pankuzu__home {
  padding-left: 14px;
}
@media (max-width: 767px) {
  .pankuzu__home {
    padding-left: 12px;
  }
}
.pankuzu__home::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url("/wp-content/themes/ds/assets/images/icon_house.svg") no-repeat center center/contain;
}
@media (max-width: 767px) {
  .pankuzu__home::after {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 767px) {
  .body-in {
    margin-top: 64px;
  }
}

/*--------------------------------------*
      kv
  --------------------------------------*/
.kv {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url(/wp-content/themes/ds/assets/images/kv__bg_pc.png), #28AEA0;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom center, center center;
}
@media (max-width: 767px) {
  .kv {
    background: url(/wp-content/themes/ds/assets/images/kv__bg_sp.png), #28AEA0;
    background-repeat: no-repeat, no-repeat;
    background-size: 100%;
    background-position: bottom center, center center;
  }
}
.kv .cta_Btn {
  margin-top: 34px;
}
@media (max-width: 767px) {
  .kv .cta_Btn a {
    margin-left: auto;
    margin-right: auto;
  }
}
.kv__inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 98px;
}
@media (max-width: 1000px) {
  .kv__inner {
    min-height: 560px;
    padding-bottom: 88px;
  }
}
@media (max-width: 767px) {
  .kv__inner {
    display: block;
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 92px;
  }
}
.kv__content {
  width: 55%;
}
@media (max-width: 767px) {
  .kv__content {
    width: 100%;
    padding-top: 0;
  }
}
.kv__lead {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  padding: 0 24px 34px 24px;
  color: #FFDE55;
  font-weight: 700;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.45 !important;
}
.kv__lead::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.45) * 0.5em);
  content: "";
}
.kv__lead::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.45) * 0.5em);
  content: "";
}
.kv__lead {
  background: url(/wp-content/themes/ds/assets/images/kv_lead_line_pc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .kv__lead {
    padding: 0 14px 34px 14px;
    margin-bottom: 15px;
    font-size: 2rem;
    background: url(/wp-content/themes/ds/assets/images/kv_lead_line_sp.png);
    background-position: bottom center;
    background-repeat: no-repeat;
  }
}
.kv__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 5rem;
  line-height: 1.42 !important;
}
.kv__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.42) * 0.5em);
  content: "";
}
.kv__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.42) * 0.5em);
  content: "";
}
@media (max-width: 1100px) {
  .kv__title {
    font-size: 4.2rem;
  }
}
@media (max-width: 1000px) {
  .kv__title {
    font-size: 3.6rem;
  }
}
@media (max-width: 767px) {
  .kv__title {
    font-size: 3rem;
    line-height: 1.5 !important;
  }
  .kv__title::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
  }
  .kv__title::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
  }
}
.kv__text {
  margin-top: 25px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.7 !important;
}
.kv__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: "";
}
.kv__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: "";
}
@media (max-width: 1000px) {
  .kv__text {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .kv__text {
    margin-top: 18px;
    font-size: 1.3rem;
  }
}
.kv__visual {
  position: relative;
  width: 44%;
}
@media (min-width: 768px) {
  .kv__visual {
    max-width: 490px;
  }
}
.kv__visual {
  padding-top: 64px;
  text-align: center;
}
@media (max-width: 767px) {
  .kv__visual {
    width: 100%;
  }
}
.kv__visual img {
  display: block;
  width: 100%;
  max-width: 630px;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .kv__visual img {
    max-width: 520px;
  }
}
@media (max-width: 767px) {
  .kv__visual img {
    max-width: 330px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .kv__visual {
    width: 100%;
    padding-top: 18px;
  }
}
.kv__bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 160px);
  max-width: 920px;
  padding: 18px 24px 20px;
  background: #01565D;
  border-radius: 34px 34px 0 0;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.kv__bottom p {
  margin: 0;
  color: #FFDE55;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.45 !important;
}
.kv__bottom p::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.45) * 0.5em);
  content: "";
}
.kv__bottom p::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.45) * 0.5em);
  content: "";
}
@media (max-width: 1000px) {
  .kv__bottom p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .kv__bottom p {
    font-size: 1.4rem;
    line-height: 1.55 !important;
  }
  .kv__bottom p::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.55) * 0.5em);
    content: "";
  }
  .kv__bottom p::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.55) * 0.5em);
    content: "";
  }
}
.kv__bottom span {
  margin-left: 8px;
  font-size: 1.6rem;
}
@media (max-width: 1000px) {
  .kv__bottom span {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .kv__bottom span {
    display: block;
    margin-top: 2px;
    margin-left: 0;
    font-size: 1.2rem;
  }
}
@media (max-width: 1000px) {
  .kv__bottom {
    width: calc(100% - 80px);
  }
}
@media (max-width: 767px) {
  .kv__bottom {
    width: calc(100% - 30px);
    padding: 14px 14px 16px;
    border-radius: 22px 22px 0 0;
  }
}

/*cta_btn*/
.cta_Btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 372px;
  min-height: 73px;
  border-radius: 52px;
  background: #FFDE55;
  color: #0a2531;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  .cta_Btn a:hover {
    opacity: 1;
    background: #FFF;
    border: 2px solid #FFDE55;
  }
}
@media (max-width: 767px) {
  .cta_Btn a {
    max-width: 345px;
    min-height: 72px;
    padding: 12px 16px 14px;
    border-radius: 36px;
  }
}
@media (max-width: 767px) {
  .cta_Btn {
    margin-top: 22px;
  }
}
.cta_Btn__ctaSub {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.5 !important;
}
.cta_Btn__ctaSub::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.cta_Btn__ctaSub::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
.cta_Btn__ctaSub {
  color: #01565D;
}
@media (max-width: 767px) {
  .cta_Btn__ctaSub {
    font-size: 1.2rem;
  }
}
.cta_Btn__ctaMain {
  display: block;
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.45 !important;
}
.cta_Btn__ctaMain::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.45) * 0.5em);
  content: "";
}
.cta_Btn__ctaMain::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.45) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .cta_Btn__ctaMain {
    margin-top: 5px;
    font-size: 1.8rem;
  }
}

/*tranigng
  -------------------------------------------------------------------------------*/
.caseBlock {
  padding: 90px 0 80px;
  background: #F7F5F5;
}
.caseBlock__title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 80px;
  font-size: 3.6rem;
  line-height: 1.5 !important;
}
.caseBlock__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.caseBlock__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .caseBlock__title {
    margin-bottom: 30px;
    font-size: 2.8rem;
  }
}
.caseBlock__inner {
  background: #fff;
  border-radius: 5px;
  padding: 40px 50px;
}
@media (max-width: 767px) {
  .caseBlock__inner {
    padding: 12px 15px;
  }
}
.caseBlock__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 38px;
}
@media (max-width: 767px) {
  .caseBlock__list {
    display: block;
  }
}
.caseBlock__item {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .caseBlock__item {
    padding: 10px 0;
  }
}
.caseBlock__head {
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .caseBlock__head {
    margin-bottom: 15px;
  }
}
.caseBlock__head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 7px auto 0;
}
@media (max-width: 767px) {
  .caseBlock__head::after {
    width: 100%;
  }
}
.caseBlock__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #28AEA0;
  font-size: 1.4rem;
}
.caseBlock__label img {
  width: 18px;
  height: auto;
}
@media (max-width: 767px) {
  .caseBlock__label {
    font-size: 1.2rem;
  }
}
.caseBlock__text {
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5 !important;
}
.caseBlock__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.caseBlock__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .caseBlock__text {
    margin-top: 15px;
  }
}
.caseBlock__image {
  margin-top: 25px;
}
.caseBlock__image img {
  width: 100%;
  max-width: 168px;
  height: auto;
}

/*ctaSection
  -------------------------------------------------------------------------------*/
.ctaSection {
  background: #28AEA0;
  overflow: hidden;
}
.ctaSection__inner {
  position: relative;
  min-height: 290px;
  padding: 46px 0 36px;
}
@media (max-width: 767px) {
  .ctaSection__inner {
    padding: 50px 0 0px;
  }
}
.ctaSection__inner .cta_Btn {
  margin-top: 35px;
  text-align: center;
}
@media (max-width: 767px) {
  .ctaSection__inner .cta_Btn {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .ctaSection__inner .cta_Btn a {
    margin-left: auto;
    margin-right: auto;
  }
}
.ctaSection__content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
}
@media (max-width: 900px) {
  .ctaSection__content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .ctaSection__content {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
.ctaSection__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4 !important;
}
.ctaSection__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
.ctaSection__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .ctaSection__title {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.4 !important;
  }
  .ctaSection__title::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
    content: "";
  }
  .ctaSection__title::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.4) * 0.5em);
    content: "";
  }
}
.ctaSection__image {
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 1;
  max-width: 445px;
}
.ctaSection__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .ctaSection__image {
    position: static;
    width: 100%;
    max-width: 230px;
    margin: 22px auto 0;
  }
}

/*featureBlock
  -------------------------------------------------------------------------------*/
.featureBlock {
  padding: 160px 0 0px;
  background: #FFF;
}
@media (max-width: 767px) {
  .featureBlock {
    padding: 70px 0 0px;
  }
}
.featureBlock__sectionTitle {
  margin: 0 0 56px;
  text-align: center;
  color: #222;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4 !important;
}
.featureBlock__sectionTitle::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
.featureBlock__sectionTitle::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .featureBlock__sectionTitle {
    margin-bottom: 34px;
    font-size: 2.8rem;
  }
}
.featureBlock__inner {
  background: #F2FAF9;
  border-radius: 5px;
  padding: 50px;
}
@media (max-width: 767px) {
  .featureBlock__inner {
    border-radius: 0;
    padding: 30px 15px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.featureBlock__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}
@media (max-width: 767px) {
  .featureBlock__lead {
    display: block;
  }
}
.featureBlock__textArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 6px;
}
.featureBlock__title {
  margin: 0;
  color: #222;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.55 !important;
}
.featureBlock__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.55) * 0.5em);
  content: "";
}
.featureBlock__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.55) * 0.5em);
  content: "";
}
.featureBlock__title span {
  display: inline-block;
  color: #07bdb2;
}
@media (max-width: 767px) {
  .featureBlock__title {
    font-size: 2.4rem;
  }
}
.featureBlock__text {
  margin: 34px 0 0;
  color: #222;
  font-size: 1.6rem;
  line-height: 2 !important;
}
.featureBlock__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
.featureBlock__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
@media (min-width: 768px) {
  .featureBlock__text {
    max-width: 610px;
  }
}
@media (max-width: 767px) {
  .featureBlock__text {
    margin-top: 28px;
    font-size: 1.6rem;
    line-height: 1.95 !important;
  }
  .featureBlock__text::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.95) * 0.5em);
    content: "";
  }
  .featureBlock__text::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.95) * 0.5em);
    content: "";
  }
}
.featureBlock__image1 {
  width: 50%;
  max-width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 24px;
}
.featureBlock__image1 img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media (max-width: 767px) {
  .featureBlock__image1 {
    width: 80%;
    max-width: 410px;
    margin: 34px auto 0;
    padding-top: 0;
  }
}
.featureBlock__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 46px;
}
@media (max-width: 767px) {
  .featureBlock__cards {
    display: block;
    margin-top: 30px;
  }
}
.featureBlock__card {
  background: #fff;
  border-radius: 5px;
  padding: 25px 35px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .featureBlock__card {
    width: 100%;
    padding: 25px 15px;
  }
}
.featureBlock__cardHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .featureBlock__cardHead {
    gap: 14px;
    margin-bottom: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.featureBlock__cardIcon {
  width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.featureBlock__cardIcon img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .featureBlock__cardIcon {
    width: 40px;
  }
}
.featureBlock__cardTitle {
  margin: 0;
  color: #28AEA0;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5 !important;
}
.featureBlock__cardTitle::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.featureBlock__cardTitle::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .featureBlock__cardTitle {
    font-size: 2rem;
  }
}
.featureBlock__cardText {
  margin: 0;
  color: #222;
  font-size: 1.4rem;
  line-height: 1.7 !important;
}
.featureBlock__cardText::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.7) * 0.5em);
  content: "";
}
.featureBlock__cardText::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.7) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .featureBlock__cardText {
    font-size: 1.4rem;
  }
}
.featureBlock__solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .featureBlock__solution {
    gap: 80px;
  }
}
.featureBlock__solution {
  background: #F2FAF9;
  border-radius: 5px;
  padding: 25px 35px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .featureBlock__solution {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    padding: 30px 15px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 25px;
  }
}
.featureBlock__solution--imageLeft .featureBlock__solutionImage {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.featureBlock__solution--imageLeft .featureBlock__solutionContent {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 767px) {
  .featureBlock__solution--imageLeft .featureBlock__solutionContent {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .featureBlock__solution--imageLeft .featureBlock__solutionImage {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 15px;
  }
  .featureBlock__solution--imageLeft .featureBlock__solutionImage img {
    margin: 0 auto;
    max-width: 396px;
  }
}
@media (max-width: 767px) {
  .featureBlock__solution--imageRight {
    padding-bottom: 40px;
  }
}
.featureBlock__solution--imageRight .featureBlock__solutionContent {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.featureBlock__solution--imageRight .featureBlock__solutionImage {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.featureBlock__solution--imageRight .featureBlock__solutionImage img {
  max-width: 354px;
}
.featureBlock__solutionContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .featureBlock__solutionContent {
    width: 100%;
  }
}
.featureBlock__solutionTitle {
  margin: 0;
  color: #222;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5 !important;
}
.featureBlock__solutionTitle::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.featureBlock__solutionTitle::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
.featureBlock__solutionTitle span {
  color: #28AEA0;
}
@media (max-width: 767px) {
  .featureBlock__solutionTitle {
    font-size: 2.4rem;
    line-height: 1.55 !important;
  }
  .featureBlock__solutionTitle::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.55) * 0.5em);
    content: "";
  }
  .featureBlock__solutionTitle::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.55) * 0.5em);
    content: "";
  }
}
.featureBlock__solutionText {
  margin: 34px 0 0;
  color: #222;
  font-size: 1.6rem;
  line-height: 2 !important;
}
.featureBlock__solutionText::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 2) * 0.5em);
  content: "";
}
.featureBlock__solutionText::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 2) * 0.5em);
  content: "";
}
@media (min-width: 768px) {
  .featureBlock__solutionText {
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .featureBlock__solutionText {
    margin-top: 24px;
    font-size: 1.6rem;
    line-height: 1.95 !important;
  }
  .featureBlock__solutionText::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.95) * 0.5em);
    content: "";
  }
  .featureBlock__solutionText::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.95) * 0.5em);
    content: "";
  }
}
.featureBlock__solutionImage {
  width: 38%;
  max-width: 396px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.featureBlock__solutionImage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .featureBlock__solutionImage {
    width: 100%;
    max-width: none;
    margin: 30px auto 0;
  }
}
.featureBlock__solutionImage--narrow {
  max-width: 430px;
}
@media (max-width: 767px) {
  .featureBlock__solutionImage--narrow {
    max-width: 276px;
  }
}
.featureBlock__memberArea {
  margin-top: 40px;
  background: #F2FAF9;
  padding: 20px 50px 50px 50px;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .featureBlock__memberArea {
    margin-top: 25px;
    padding: 30px 15px 20px 15px;
    border-radius: 5px 5px 0 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.featureBlock__memberHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .featureBlock__memberHead {
    display: block;
    margin-bottom: 24px;
  }
}
.featureBlock__memberHeadText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .featureBlock__memberHeadText {
    padding-top: 45px;
  }
}
.featureBlock__memberLabel {
  margin: 32px 0 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6 !important;
}
.featureBlock__memberLabel::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.featureBlock__memberLabel::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .featureBlock__memberLabel {
    margin-top: 24px;
    font-size: 1.6rem;
  }
}
.featureBlock__memberMainImage {
  width: 36%;
  max-width: 396px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.featureBlock__memberMainImage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .featureBlock__memberMainImage {
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }
  .featureBlock__memberMainImage img {
    border-radius: 0;
  }
}
.featureBlock__memberList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .featureBlock__memberList {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .featureBlock__memberCard {
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
  }
}
.featureBlock__memberCardInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
@media (max-width: 767px) {
  .featureBlock__memberCardInner {
    display: block;
  }
}
.featureBlock__memberImage {
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.featureBlock__memberImage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .featureBlock__memberImage {
    width: 140px;
    margin: 0 auto 18px;
  }
  .featureBlock__memberImage img {
    border-radius: 8px;
  }
}
.featureBlock__memberContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-top: 4px;
}
.featureBlock__memberPosition {
  margin: 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.8 !important;
}
.featureBlock__memberPosition::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
  content: "";
}
.featureBlock__memberPosition::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .featureBlock__memberPosition {
    line-height: 1.5 !important;
  }
  .featureBlock__memberPosition::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
    content: "";
  }
  .featureBlock__memberPosition::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.5) * 0.5em);
    content: "";
  }
}
.featureBlock__memberName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 0;
}
@media (max-width: 767px) {
  .featureBlock__memberName {
    gap: 10px;
    margin-top: 14px;
  }
}
.featureBlock__memberNameJa {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.4 !important;
}
.featureBlock__memberNameJa::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
.featureBlock__memberNameJa::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
.featureBlock__memberNameEn {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6 !important;
}
.featureBlock__memberNameEn::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.featureBlock__memberNameEn::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
.featureBlock__memberText {
  margin: 28px 0 0;
  font-size: 1.4rem;
}
/*themeBlock
  -------------------------------------------------------------------------------*/
.themeBlock {
  padding: 180px 0 0;
  background: #FFF;
}
@media (max-width: 767px) {
  .themeBlock {
    padding: 80px 0 0;
  }
}
.themeBlock__title {
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4 !important;
}
.themeBlock__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
  content: "";
}
.themeBlock__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.4) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .themeBlock__title {
    font-size: 2.4rem;
    line-height: 1.45 !important;
  }
  .themeBlock__title::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.45) * 0.5em);
    content: "";
  }
  .themeBlock__title::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.45) * 0.5em);
    content: "";
  }
}
.themeBlock__note {
  margin: 22px 0 0;
  text-align: right;
  font-size: 1.2rem;
  line-height: 1.6 !important;
}
.themeBlock__note::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.themeBlock__note::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .themeBlock__note {
    margin-top: 30px;
    font-size: 1.2rem;
  }
}
.themeBlock__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #DADADA;
  border-left: 1px solid #DADADA;
}
@media (max-width: 767px) {
  .themeBlock__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
  }
}
.themeBlock__item {
  position: relative;
  min-height: 143px;
  padding-left: 5px;
  padding-right: 5px;
  border-right: 1px solid #DADADA;
  border-bottom: 1px solid #DADADA;
  background: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .themeBlock__item {
    min-height: 140px;
  }
}
.themeBlock__num {
  position: absolute;
  top: 10px;
  left: 8px;
  color: #28AEA0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1 !important;
}
.themeBlock__num::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1) * 0.5em);
  content: "";
}
.themeBlock__num::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .themeBlock__num {
    top: 10px;
    left: 10px;
    font-size: 1.6rem;
  }
}
.themeBlock__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  height: 82px;
  padding: 10px 8px 0 0;
  background: #28AEA0;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  color: #ffe55a;
  text-align: right;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2 !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.themeBlock__badge.badge2 {
  padding-top: 12px;
}
@media (max-width: 767px) {
  .themeBlock__badge.badge2 {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .themeBlock__badge {
    width: 70px;
    height: 64px;
    padding: 8px 6px 0 0;
    font-size: 0.8rem;
  }
}
.themeBlock__badge--en {
  font-size: 1.3rem;
  line-height: 1 !important;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .themeBlock__badge--en {
    padding-top: 15px;
    font-size: 1rem;
  }
}
.themeBlock__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 12px;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.themeBlock__icon img {
  display: block;
  max-width: 58px;
  max-height: 52px;
  width: auto;
  height: auto;
}
.themeBlock__text {
  position: absolute;
  left: 50%;
  top: 90px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  width: 100%;
  color: #23221F;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.55 !important;
}
.themeBlock__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.55) * 0.5em);
  content: "";
}
.themeBlock__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.55) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .themeBlock__text {
    font-size: 1.3rem;
    top: 85px;
    line-height: 1.3 !important;
  }
  .themeBlock__text::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.3) * 0.5em);
    content: "";
  }
  .themeBlock__text::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.3) * 0.5em);
    content: "";
  }
}
.themeBlock a .themeBlock__text span {
  text-decoration: underline;
}
.themeBlock a .themeBlock__text sup {
  text-decoration: none !important;
}

/*exampleBlock
  -------------------------------------------------------------------------------*/
.exampleBlock {
  padding: 150px 0 0px;
}
@media (max-width: 767px) {
  .exampleBlock {
    padding: 68px 0 0px;
  }
}
.exampleBlock__sectionTitle {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .exampleBlock__sectionTitle {
    font-size: 2.4rem;
    line-height: 1.45;
    margin-bottom: 20px;
  }
}
.exampleBlock__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .exampleBlock__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.exampleBlock__card {
  position: relative;
  padding-top: 38px;
}
@media (max-width: 767px) {
  .exampleBlock__card {
    padding-top: 38px;
  }
}
.exampleBlock__cardInner {
  height: 100%;
  border: 1px solid #DADADA;
  border-radius: 5px;
  padding: 34px 18px 30px;
}
@media (max-width: 767px) {
  .exampleBlock__cardInner {
    padding: 40px 14px 25px;
  }
}
.exampleBlock__icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border: 1px solid #DADADA;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
}
.exampleBlock__icon img {
  width: auto;
  height: auto;
  max-width: 42px;
  max-height: 42px;
  display: block;
}
@media (max-width: 767px) {
  .exampleBlock__icon {
    width: 78px;
    height: 78px;
  }
  .exampleBlock__icon img {
    max-width: 40px;
    max-height: 40px;
  }
}
.exampleBlock__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .exampleBlock__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
}
.exampleBlock__company {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.exampleBlock__category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid #28AEA0;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #27c4bc;
  text-align: center;
}
@media (max-width: 767px) {
  .exampleBlock__category {
    min-height: 30px;
    padding: 0 10px;
  }
}
.exampleBlock h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.55;
  color: #222;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #bcbcbc;
}
@media (max-width: 767px) {
  .exampleBlock h3 {
    font-size: 1.9rem;
    line-height: 1.55;
    padding-bottom: 16px;
    margin-bottom: 14px;
    min-height: auto;
  }
}
.exampleBlock__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .exampleBlock__tags {
    gap: 8px 6px;
    margin-bottom: 16px;
  }
}
.exampleBlock__tag {
  background: #F2FAF9;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 767px) {
  .exampleBlock__tag {
    font-size: 1.1rem;
    padding: 6px 10px;
  }
}
.exampleBlock__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.95;
  color: #333;
}
@media (max-width: 767px) {
  .exampleBlock__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

/*priceBlock
  -------------------------------------------------------------------------------*/
.priceBlock {
  padding: 150px 0 0;
}
@media (max-width: 767px) {
  .priceBlock {
    padding: 80px 0 0;
  }
}
.priceBlock h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .priceBlock h2 {
    font-size: 2.8rem;
    line-height: 1.4;
    margin-bottom: 30px;
  }
}
.priceBlock__inner {
  background: #F2FAF9;
  border-radius: 5px;
  padding: 50px 50px 40px 50px;
}
@media (max-width: 1000px) {
  .priceBlock__inner {
    padding: 50px 25px;
  }
}
@media (max-width: 767px) {
  .priceBlock__inner {
    border-radius: 4px;
    padding: 15px 15px 25px 15px;
  }
}
.priceBlock__box {
  background: #fff;
  border-radius: 5px;
  padding: 50px 7.65%;
}
@media (max-width: 767px) {
  .priceBlock__box {
    padding: 36px 20px;
  }
}
.priceBlock__priceRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .priceBlock__priceRow {
    padding-left: 4%;
  }
}
@media (max-width: 767px) {
  .priceBlock__priceRow {
    display: block;
  }
}
.priceBlock__time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  text-align: center;
  position: relative;
  padding-right: 50px;
}
@media (min-width: 768px) {
  .priceBlock__time {
    padding-top: 0.5em;
  }
}
.priceBlock__time::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: #DADADA;
}
@media (max-width: 767px) {
  .priceBlock__time {
    min-width: 0;
    font-size: 1.8rem;
    line-height: 1.4;
    padding-right: 0;
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
  .priceBlock__time::after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 150px;
    height: 1px;
  }
}
.priceBlock__price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
  color: #28AEA0;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .priceBlock__price {
    padding-left: 0;
    line-height: 1.2;
  }
}
.priceBlock__priceMark {
  font-size: 3.2rem;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .priceBlock__priceMark {
    font-size: 2rem;
  }
}
.priceBlock__priceUnit {
  font-size: 3.2rem;
  margin-left: 6px;
  vertical-align: baseline;
}
@media (max-width: 767px) {
  .priceBlock__priceUnit {
    font-size: 2rem;
    margin-left: 4px;
  }
}
.priceBlock__price {
  font-size: 6rem;
}
@media (max-width: 1000px) {
  .priceBlock__price {
    font-size: 4.8rem;
  }
}
@media (max-width: 767px) {
  .priceBlock__price {
    font-size: 3.6rem;
  }
}
.priceBlock__notes {
  max-width: 680px;
  margin: 35px auto 0 auto;
}
@media (max-width: 767px) {
  .priceBlock__notes {
    max-width: 100%;
    margin: 10px auto 0 auto;
  }
}
.priceBlock__note {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 1em;
}
.priceBlock__note::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .priceBlock__note {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}

/*flowBlock
  -------------------------------------------------------------------------------*/
.flowBlock {
  padding: 140px 0 150px 0;
}
@media (max-width: 767px) {
  .flowBlock {
    padding: 72px 0 80px 0;
  }
}
.flowBlock__sectionTitle {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .flowBlock__sectionTitle {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
}
.flowBlock__inner {
  border: 1px solid #DADADA;
  border-radius: 5px;
  background: #FFF;
  padding: 64px;
}
@media (max-width: 767px) {
  .flowBlock__inner {
    padding: 25px 15px;
  }
}
.flowBlock {
  /* =========================
    縦ライン
  ========================= */
}
.flowBlock__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flowBlock__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 95px;
  width: 2px;
  background: #28AEA0;
  bottom: 60px;
}
@media (max-width: 767px) {
  .flowBlock__list::before {
    display: none;
  }
}
.flowBlock__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 190px 36px 1fr;
  grid-template-columns: 190px 1fr;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  min-height: 190px;
}
@media (min-width: 768px) {
  .flowBlock__item:last-child {
    background: #FFF;
  }
}
@media (max-width: 767px) {
  .flowBlock__item {
    -ms-grid-columns: 70px 12px 1fr;
    grid-template-columns: 70px 1fr;
    -ms-grid-rows: auto 14px auto;
        grid-template-areas: "step title" "text text";
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 14px;
    min-height: auto;
    padding-bottom: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flowBlock__item.text_1l_norow {
    row-gap: 0px !important;
  }
}
.flowBlock__item:last-child {
  min-height: auto;
}
@media (max-width: 767px) {
  .flowBlock__item:last-child {
    padding-bottom: 0;
  }
}
.flowBlock {
  /* STEP5など余白大きくしたい場合用 */
}
.flowBlock__item--lg {
  min-height: 230px;
}
@media (max-width: 767px) {
  .flowBlock__item--lg {
    min-height: auto;
  }
}
.flowBlock__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .flowBlock__step {
    display: block;
    grid-area: step;
  }
}
.flowBlock__stepBox {
  width: 210px;
  min-height: 108px;
  background: #F2FAF9;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .flowBlock__stepBox {
    width: 70px;
    min-height: 50px;
    font-size: 1.2rem;
  }
}
.flowBlock__content {
  padding-top: 2px;
}
@media (min-width: 768px) {
  .flowBlock__content {
    min-height: 108px;
  }
}
@media (min-width: 768px) {
  .flowBlock__content.text__1l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flowBlock__content.text__1l h3 {
    margin-bottom: 0px !important;
  }
}
@media (max-width: 767px) {
  .flowBlock__content {
    display: contents;
    padding-top: 0;
  }
}
.flowBlock h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .flowBlock h3 {
    grid-area: title;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 0;
    -ms-grid-row-align: center;
        align-self: center;
  }
}
.flowBlock__text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .flowBlock__text {
    grid-area: text;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
@media (max-width: 767px){
  .flowBlock__step {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .flowBlock h3 {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .flowBlock__text {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

/*faqBlock
-------------------------------------------------------------------------------*/
.faqBlock {
  background: #F2FAF9;
  padding: 150px 0 100px 0;
}
@media (max-width: 767px) {
  .faqBlock {
    padding: 80px 0 80px 0;
  }
}
.faqBlock h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .faqBlock h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
}
.faqBlock__group {
  margin-bottom: 76px;
}
@media (max-width: 767px) {
  .faqBlock__group {
    margin-bottom: 54px;
  }
}
.faqBlock__group:last-child {
  margin-bottom: 0;
}
.faqBlock h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #DADADA;
}
@media (max-width: 767px) {
  .faqBlock h3 {
    font-size: 1.8rem;
    padding-bottom: 12px;
  }
}
.faqBlock__item {
  border-bottom: 1px solid #DADADA;
}
.faqBlock__question {
  width: 100%;
  background: none;
  border: 0;
  padding: 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faqBlock__question {
    padding: 20px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
.faqBlock__questionInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .faqBlock__questionInner {
    gap: 10px;
  }
}
.faqBlock__q {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #28AEA0;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .faqBlock__q {
    font-size: 2rem;
    margin-top: 1px;
  }
}
.faqBlock__questionText {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .faqBlock__questionText {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.faqBlock__toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .faqBlock__toggle {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
}
.faqBlock__toggle::before, .faqBlock__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #28c3bb;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.faqBlock__toggle::before {
  width: 20px;
  height: 2px;
}
.faqBlock__toggle::after {
  width: 2px;
  height: 20px;
}
@media (max-width: 767px) {
  .faqBlock__toggle::after {
    height: 20px;
  }
}
.faqBlock__item.is-open .faqBlock__toggle::after {
  opacity: 0;
}
.faqBlock__answer {
  display: none;
  padding: 0 0 35px;
}
@media (max-width: 767px) {
  .faqBlock__answer {
    padding: 0 0 25px;
  }
}
@media (max-width: 767px) {
  .faqBlock__answerInner {
    padding-left: 0;
  }
}
.faqBlock__answerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 14px;
}
@media (max-width: 767px) {
  .faqBlock__answerHead {
    gap: 10px;
  }
}
.faqBlock__a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .faqBlock__a {
    font-size: 2rem;
    margin-top: 1px;
  }
}
.faqBlock__answerBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-right: 50px;
}
@media (max-width: 767px) {
  .faqBlock__answerBody {
    padding-right: 36px;
  }
}
.faqBlock__answerText {
  font-size: 1.6rem;
  line-height: 2;
  padding-top: 0.5em;
}
.faqBlock__answerText a {
  color: #23221F;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .faqBlock__answerText {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.faqBlock__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  margin-top: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .faqBlock__gallery {
    display: block;
    margin-top: 18px;
  }
}
.faqBlock__galleryItem {
  width: 370px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 370px;
          flex: 0 0 370px;
}
@media (max-width: 767px) {
  .faqBlock__galleryItem {
    width: 100%;
    margin-bottom: 18px;
  }
  .faqBlock__galleryItem:last-child {
    margin-bottom: 0;
  }
}
.faqBlock__galleryImage img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.faqBlock__galleryCaption {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .faqBlock__galleryCaption {
    font-size: 1.2rem;
    margin-top: 8px;
  }
}

/* works archive
-------------------------------------------------------------------------------*/
.worksArchive {
  padding: 50px 0 0;
  background: #FFF;
}
@media (max-width: 767px) {
  .worksArchive {
    padding: 38px 0 0;
  }
}
.worksArchive__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .worksArchive__title {
    font-size: 2.8rem;
    line-height: 1.35 !important;
    margin-bottom: 30px;
  }
}
.worksArchive__body {
  background: #F2FAF9;
  padding: 30px 0 100px;
}
@media (max-width: 767px) {
  .worksArchive__body {
    padding: 24px 0 80px;
  }
}

/* worksFilter
-------------------------------------------------------------------------------*/
.worksFilter {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .worksFilter {
    margin-bottom: 60px;
  }
}
.worksFilter__inner {
  background: #FFF;
  padding: 40px 65px 40px;
}
@media (max-width: 767px) {
  .worksFilter__inner {
    padding: 18px 14px 18px;
  }
}
.worksFilter__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .worksFilter__head {
    margin-bottom: 18px;
  }
}
.worksFilter__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .worksFilter__title {
    font-size: 1.6rem;
    display: inline;
  }
}
.worksFilter__note {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .worksFilter__note {
    margin-left: 8px;
  }
}
.worksFilter__form {
  width: 100%;
}
.worksFilter__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 92px 60px 1fr;
  grid-template-columns: 92px 1fr;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 767px) {
  .worksFilter__row {
    display: block;
  }
}
.worksFilter__label {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  padding-top: 8px;
}
@media (max-width: 767px) {
  .worksFilter__label {
    font-size: 1.4rem;
    padding-top: 0;
    margin-bottom: 12px;
  }
}
.worksFilter__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 14px;
}
@media (max-width: 767px) {
  .worksFilter__options {
    display: block;
  }
}
.worksFilter__option {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .worksFilter__option {
    display: block;
    margin-bottom: 10px;
  }
  .worksFilter__option:last-child {
    margin-bottom: 0;
  }
}
.worksFilter__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.worksFilter__option span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  padding: 0 14px 0 38px;
  border: 1px solid #B4B4B4;
  border-radius: 4px;
  background: #FFF;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #23221F;
}
@media (max-width: 767px) {
  .worksFilter__option span {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: 30px;
    padding: 0 14px 0 30px;
    font-size: 1.3rem;
  }
}
.worksFilter__option span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #9F9F9F;
  background: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .worksFilter__option span::before {
    left: 10px;
    width: 13px;
    height: 13px;
  }
}
.worksFilter__option span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 17px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  -webkit-transform: translateY(-60%) rotate(-45deg);
          transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
}
@media (max-width: 767px) {
  .worksFilter__option span::after {
    left: 13px;
  }
}
.worksFilter__option input:checked + span::before {
  background: #28AEA0;
  border-color: #28AEA0;
}
.worksFilter__option input:checked + span::after {
  opacity: 1;
}
.worksFilter__submit {
  text-align: center;
  margin-top: 38px;
}
.worksFilter__submit button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 126px;
  height: 44px;
  border: 1px solid #7D7D7D;
  border-radius: 999px;
  background: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #23221F;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.worksFilter__submit .btn_text {
  font-size: 1.4rem;
  font-weight: 700;
}

.worksBlock {
  padding: 110px 0 150px;
}
@media (max-width: 767px) {
  .worksBlock {
    padding: 72px 0 80px;
  }
}
.worksBlock__head {
  position: relative;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .worksBlock__head {
    margin-bottom: 18px;
  }
}
.worksBlock h2 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .worksBlock h2 {
    font-size: 2.8rem;
    line-height: 1.35;
  }
}
.worksBlock__archive {
  position: absolute;
  right: 0;
  bottom: -40px;
}
@media (max-width: 767px) {
  .worksBlock__archive {
    position: static;
    margin-top: 10px;
    text-align: right;
    bottom: auto;
  }
}
.worksBlock__archive a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  color: #23221F;
}
.worksBlock__archive a img {
  width: 18px;
  display: block;
}
.worksBlock__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767px) {
  .worksBlock__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.worksBlock__item {
  height: 100%;
}
@media (max-width: 767px) {
  .worksBlock__item {
    height: auto;
  }
}
.worksBlock__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #FFF;
  border: 1px solid #DADADA;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .worksBlock__link {
    height: auto;
  }
}
@media (min-width: 768px) {
  .worksBlock__link:hover {
    opacity: 1;
    border-color: #23221F;
  }
  .worksBlock__link:hover .worksBlock__btn span {
    background: #FCF5D7 !important;
  }
}
.worksBlock__card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background: #FFF;
}
.worksBlock__image {
  position: relative;
  width: 100%;
  aspect-ratio: 35/20;
  overflow: hidden;
  background: #f5f5f5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .worksBlock__image {
    aspect-ratio: 345/198;
  }
}
.worksBlock__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.worksBlock__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 20px 92px;
}
@media (max-width: 767px) {
  .worksBlock__content {
    padding: 15px 15px 20px;
  }
}
.worksBlock__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .worksBlock__category {
    gap: 6px;
    margin-bottom: 16px;
  }
}
.worksBlock__category span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid #28AEA0;
  border-radius: 5px;
  background: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #28AEA0;
}
@media (max-width: 767px) {
  .worksBlock__category span {
    min-height: 31px;
    padding: 0 11px;
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .worksBlock__category.pc_large span {
    min-height: 40px;
    font-size: 2.4rem;
  }
}
.worksBlock__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DADADA;
}
@media (max-width: 767px) {
  .worksBlock__title {
    font-size: 1.9rem;
    line-height: 1.45;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.worksBlock__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .worksBlock__meta {
    gap: 8px;
    margin-bottom: 28px;
  }
}
.worksBlock__metaItem {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 34px;
  background: #F2FAF9;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .worksBlock__metaItem {
    min-height: 32px;
  }
}
.worksBlock__metaLabel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px 0 12px;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #28AEA0;
}
@media (max-width: 767px) {
  .worksBlock__metaLabel {
    padding: 0 6px 0 10px;
  }
}
.worksBlock__metaText {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px 0 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .worksBlock__metaText {
    font-size: 1.3rem;
    padding: 0 10px 0 0;
  }
}
.worksBlock__btn {
  position: absolute;
  left: 50%;
  bottom: 24px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 136px;
  text-align: center;
}
@media (max-width: 767px) {
  .worksBlock__btn {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
.worksBlock__btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 136px;
  height: 40px;
  border: 1px solid #7d7d7d;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  background: #FFF;
}
.worksBlock__empty {
  grid-column: 1/-1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
  text-align: center;
}
.worksBlock__empty p {
  font-size: 1.6rem;
}

/* worksBlock archive adjust
-------------------------------------------------------------------------------*/
.worksBlock--archive {
  padding: 0;
}
@media (max-width: 767px) {
  .worksBlock--archive {
    padding: 0;
  }
}
.worksBlock--archive .worksBlock__list {
  gap: 28px 22px;
}
@media (max-width: 767px) {
  .worksBlock--archive .worksBlock__list {
    gap: 28px;
  }
}

/* paginationBlock
-------------------------------------------------------------------------------*/
/* ======================================
 paginationBlock
====================================== */
.paginationBlock {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .paginationBlock {
    margin-top: 40px;
  }
}
.paginationBlock > .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .paginationBlock > .page-numbers {
    gap: 10px;
  }
}
.paginationBlock > .page-numbers li {
  margin: 0;
  list-style: none;
}
.paginationBlock > .page-numbers a,
.paginationBlock > .page-numbers span.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #888888;
  border-radius: 999px;
  background: #FFF;
  color: #28AEA0;
  text-decoration: none;
  font-family: "Roboto", serif;
  font-size: 2rem;
  line-height: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .paginationBlock > .page-numbers a,
  .paginationBlock > .page-numbers span.current {
    width: 32px;
    height: 32px;
    font-size: 1.6rem;
  }
}
.paginationBlock > .page-numbers .current {
  background: #28AEA0 !important;
  color: #FFF !important;
  border-color: #28AEA0 !important;
}
@media (min-width: 768px) {
  .paginationBlock > .page-numbers a:not(.next):not(.prev):hover {
    border-color: #28AEA0;
    background: #28AEA0;
    color: #FFF;
  }
}
.paginationBlock > .page-numbers .dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #23221F;
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .paginationBlock > .page-numbers .dots {
    font-size: 1.6rem;
  }
}
.paginationBlock > .page-numbers .next,
.paginationBlock > .page-numbers .prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #23221F;
  font-family: "Noto Sans JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.paginationBlock > .page-numbers .next .arrow,
.paginationBlock > .page-numbers .prev .arrow {
  display: inline-block;
  font-style: normal;
}
@media (min-width: 768px) {
  .paginationBlock > .page-numbers .next:hover,
  .paginationBlock > .page-numbers .prev:hover {
    background: transparent;
    color: #23221F;
  }
}

/* worksSingle
-------------------------------------------------------------------------------*/
.worksSingle {
  background: #F2FAF9;
}
.worksSingle__body {
  padding: 35px 0 100px;
}
@media (max-width: 767px) {
  .worksSingle__body {
    padding: 18px 0 80px;
  }
}
.worksSingle__article {
  background: #FFF;
  border-radius: 5px;
  padding: 60px 80px;
}
@media (max-width: 767px) {
  .worksSingle__article {
    padding: 30px 15px;
  }
}
.worksSingle__head {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .worksSingle__head {
    margin-bottom: 28px;
  }
}
.worksSingle__head .worksBlock__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .worksSingle__head .worksBlock__category {
    gap: 6px;
    margin-bottom: 18px;
  }
}
.worksSingle__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #888888;
}
@media (max-width: 767px) {
  .worksSingle__title {
    font-size: 2rem;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
}
.worksSingle__lead {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid #888888;
}
@media (max-width: 767px) {
  .worksSingle__lead {
    font-size: 1.8rem;
    padding-bottom: 14px;
    margin-bottom: 18px;
  }
}
.worksSingle__lead:empty {
  display: none;
}
.worksSingle__meta {
  margin-bottom: 0;
}
.worksSingle__image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 60px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .worksSingle__image {
    max-width: none;
    margin: 0 auto 48px;
  }
}
.worksSingle__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  vertical-align: bottom;
}
.worksSingle__content {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .worksSingle__content {
    max-width: none;
  }
}
.worksSingle__content > *:first-child {
  margin-top: 0;
}
.worksSingle__content > *:last-child {
  margin-bottom: 0;
}
.worksSingle__content p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .worksSingle__content p {
    font-size: 1.4rem;
    line-height: 1.95;
    margin-bottom: 14px;
  }
}
.worksSingle__content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 60px 0 28px;
  word-break: break-word;
}
@media (max-width: 767px) {
  .worksSingle__content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
  }
}
.worksSingle__content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 40px 0 20px;
  word-break: break-word;
}
@media (max-width: 767px) {
  .worksSingle__content h3 {
    font-size: 1.8rem;
    margin: 28px 0 16px;
  }
}
.worksSingle__content h4,
.worksSingle__content h5,
.worksSingle__content h6 {
  font-weight: 700;
  line-height: 1.45;
  margin: 28px 0 16px;
  word-break: break-word;
}
.worksSingle__content ul,
.worksSingle__content ol {
  margin: 0 0 18px;
  padding: 0;
}
@media (max-width: 767px) {
  .worksSingle__content ul,
  .worksSingle__content ol {
    margin-bottom: 14px;
  }
}
.worksSingle__content ul li {
  position: relative;
  list-style: none;
  font-size: 1.6rem;
  line-height: 2;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .worksSingle__content ul li {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.worksSingle__content ul li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.worksSingle__content ul.sm li {
  font-size: 1.4rem;
}
.worksSingle__content ol {
  padding-left: 1.5em;
}
.worksSingle__content ol li {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .worksSingle__content ol li {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.worksSingle__content li + li {
  margin-top: 4px;
}
.worksSingle__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
  border-radius: 10px;
}
.worksSingle__content a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
  word-break: break-word;
}
.worksSingle__content strong {
  font-weight: 700;
}
.worksSingle__content em {
  font-style: italic;
}
.worksSingle__content blockquote {
  margin: 24px 0;
  padding-left: 16px;
  border-left: 3px solid #BDBDBD;
}
.worksSingle__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.worksSingle__content th,
.worksSingle__content td {
  padding: 12px;
  border: 1px solid #DADADA;
  text-align: left;
  vertical-align: top;
}

/* contactPage
-------------------------------------------------------------------------------*/
.contactPage {
  padding: 45px 0 110px;
}
@media (max-width: 767px) {
  .contactPage {
    padding: 28px 0 80px;
  }
}
.contactPage__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .contactPage__title {
    font-size: 2.8rem;
    margin-bottom: 75px;
  }
}
.contactPage__lead {
  max-width: 986px;
  margin: 0 auto 72px;
}
@media (max-width: 767px) {
  .contactPage__lead {
    margin: 0 auto 52px;
  }
}
.contactPage__lead p {
  font-size: 1.6rem;
  line-height: 2;
  color: #23221F;
}
@media (max-width: 767px) {
  .contactPage__lead p {
    font-size: 1.4rem;
    line-height: 1.95;
  }
}
.contactPage__formArea {
  max-width: 986px;
  margin: 0 auto;
}
.contactPage__formTitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contactPage__formTitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}
.contactPage {
  /* ======================================
     Snow Monkey Forms for contact page
  ====================================== */
}
.contactPage .contactPage__formArea :where(form, .smf-form) {
  width: 100%;
}
.contactPage .contactPage__formArea :where(.smf-item, .snow-monkey-forms-item) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 50px 1fr;
  grid-template-columns: 250px 1fr;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-item, .snow-monkey-forms-item) {
    display: block;
    margin-bottom: 22px;
  }
}
.contactPage .contactPage__formArea :where(.smf-item__label, .snow-monkey-forms-item__label) {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-item__label, .snow-monkey-forms-item__label) {
    padding-top: 0;
    margin-bottom: 8px;
  }
}
.contactPage .contactPage__formArea :where(.smf-item__label__required,
.smf-item__required,
.snow-monkey-forms-item__label__required,
.c-required) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 34px;
  height: 20px;
  margin-right: 8px;
  padding: 0 6px;
  border-radius: 4px;
  background: #F14E42;
  color: #FFF !important;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}
.contactPage .contactPage__formArea :where(.smf-item__label__text, .snow-monkey-forms-item__label__text, .smf-item__label label, .smf-item__label) {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #23221F;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-item__label__text, .snow-monkey-forms-item__label__text, .smf-item__label label, .smf-item__label) {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.contactPage .contactPage__formArea :where(.smf-item__controls, .snow-monkey-forms-item__controls) {
  min-width: 0;
}
.contactPage .contactPage__formArea input[type=text],
.contactPage .contactPage__formArea input[type=email],
.contactPage .contactPage__formArea input[type=tel],
.contactPage .contactPage__formArea input[type=number],
.contactPage .contactPage__formArea textarea,
.contactPage .contactPage__formArea select {
  width: 100%;
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  background: #FFF;
  color: #23221F;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea input[type=text],
  .contactPage .contactPage__formArea input[type=email],
  .contactPage .contactPage__formArea input[type=tel],
  .contactPage .contactPage__formArea input[type=number],
  .contactPage .contactPage__formArea textarea,
  .contactPage .contactPage__formArea select {
    font-size: 1.4rem;
  }
}
.contactPage .contactPage__formArea input[type=text]::-webkit-input-placeholder, .contactPage .contactPage__formArea input[type=email]::-webkit-input-placeholder, .contactPage .contactPage__formArea input[type=tel]::-webkit-input-placeholder, .contactPage .contactPage__formArea input[type=number]::-webkit-input-placeholder, .contactPage .contactPage__formArea textarea::-webkit-input-placeholder, .contactPage .contactPage__formArea select::-webkit-input-placeholder {
  color: #B4B4B4;
}
.contactPage .contactPage__formArea input[type=text]::-moz-placeholder, .contactPage .contactPage__formArea input[type=email]::-moz-placeholder, .contactPage .contactPage__formArea input[type=tel]::-moz-placeholder, .contactPage .contactPage__formArea input[type=number]::-moz-placeholder, .contactPage .contactPage__formArea textarea::-moz-placeholder, .contactPage .contactPage__formArea select::-moz-placeholder {
  color: #B4B4B4;
}
.contactPage .contactPage__formArea input[type=text]:-ms-input-placeholder, .contactPage .contactPage__formArea input[type=email]:-ms-input-placeholder, .contactPage .contactPage__formArea input[type=tel]:-ms-input-placeholder, .contactPage .contactPage__formArea input[type=number]:-ms-input-placeholder, .contactPage .contactPage__formArea textarea:-ms-input-placeholder, .contactPage .contactPage__formArea select:-ms-input-placeholder {
  color: #B4B4B4;
}
.contactPage .contactPage__formArea input[type=text]::-ms-input-placeholder, .contactPage .contactPage__formArea input[type=email]::-ms-input-placeholder, .contactPage .contactPage__formArea input[type=tel]::-ms-input-placeholder, .contactPage .contactPage__formArea input[type=number]::-ms-input-placeholder, .contactPage .contactPage__formArea textarea::-ms-input-placeholder, .contactPage .contactPage__formArea select::-ms-input-placeholder {
  color: #B4B4B4;
}
.contactPage .contactPage__formArea input[type=text]::placeholder,
.contactPage .contactPage__formArea input[type=email]::placeholder,
.contactPage .contactPage__formArea input[type=tel]::placeholder,
.contactPage .contactPage__formArea input[type=number]::placeholder,
.contactPage .contactPage__formArea textarea::placeholder,
.contactPage .contactPage__formArea select::placeholder {
  color: #B4B4B4;
}
.contactPage .contactPage__formArea input[type=text],
.contactPage .contactPage__formArea input[type=email],
.contactPage .contactPage__formArea input[type=tel],
.contactPage .contactPage__formArea input[type=number],
.contactPage .contactPage__formArea select {
  height: 54px;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea input[type=text],
  .contactPage .contactPage__formArea input[type=email],
  .contactPage .contactPage__formArea input[type=tel],
  .contactPage .contactPage__formArea input[type=number],
  .contactPage .contactPage__formArea select {
    height: 44px;
    padding: 0 12px;
  }
}
.contactPage .contactPage__formArea textarea {
  min-height: 174px;
  padding: 16px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea textarea {
    min-height: 138px;
    padding: 12px;
  }
}
.contactPage .contactPage__formArea :where(.smf-select-control, .snow-monkey-forms-select) {
  position: relative;
}
.contactPage .contactPage__formArea :where(.smf-select-control, .snow-monkey-forms-select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #8C8C8C;
  border-bottom: 1px solid #8C8C8C;
  -webkit-transform: translateY(-60%) rotate(45deg);
          transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.contactPage .contactPage__formArea :where(.smf-checkboxes-control, .snow-monkey-forms-checkboxes) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 34px;
  padding-top: 4px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-checkboxes-control, .snow-monkey-forms-checkboxes) {
    display: block;
    padding-top: 0;
  }
}
.contactPage .contactPage__formArea :where(.smf-checkboxes-control, .snow-monkey-forms-checkboxes) label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  margin: 0;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #23221F;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-checkboxes-control, .snow-monkey-forms-checkboxes) label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  .contactPage .contactPage__formArea :where(.smf-checkboxes-control, .snow-monkey-forms-checkboxes) label + label {
    margin-top: 12px;
  }
}
.contactPage .contactPage__formArea :where(.smf-checkbox-control, .snow-monkey-forms-checkbox) label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-checkbox-control, .snow-monkey-forms-checkbox) label {
    font-size: 1.4rem;
  }
}
.contactPage .contactPage__formArea input[type=checkbox],
.contactPage .contactPage__formArea input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  accent-color: #28AEA0;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea input[type=checkbox],
  .contactPage .contactPage__formArea input[type=radio] {
    width: 16px;
    height: 16px;
    -ms-flex-preferred-size: 16px;
        flex-basis: 16px;
  }
}
.contactPage .contactPage__formArea :where(.smf-tel-control, .snow-monkey-forms-tel) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-tel-control, .snow-monkey-forms-tel) {
    gap: 8px;
  }
}
.contactPage .contactPage__formArea :where(.smf-tel-control, .snow-monkey-forms-tel) input {
  width: 88px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-tel-control, .snow-monkey-forms-tel) input {
    width: calc((100% - 16px) / 3);
  }
}
.contactPage .contactPage__formArea :where(.smf-tel-control, .snow-monkey-forms-tel) span,
.contactPage .contactPage__formArea :where(.smf-tel-control, .snow-monkey-forms-tel) .smf-tel-control__separator {
  font-size: 1.8rem;
  line-height: 1;
  color: #23221F;
}
.contactPage .contactPage__formArea :where(.smf-zip-code-control, .snow-monkey-forms-zip) {
  max-width: 220px;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-zip-code-control, .snow-monkey-forms-zip) {
    max-width: 140px;
  }
}
.contactPage .contactPage__formArea :where(.smf-error-messages, .smf-error-message, .snow-monkey-forms-error-message) {
  margin-top: 8px;
  color: #F14E42;
  font-size: 1.2rem;
  line-height: 1.6;
}
.contactPage .contactPage__formArea :where(.smf-description, .smf-item__description, .snow-monkey-forms-description) {
  margin-top: 6px;
  color: #777;
  font-size: 1.2rem;
  line-height: 1.6;
}
.contactPage .contactPage__formArea :where(.smf-item[data-name=privacy], .snow-monkey-forms-item[data-name=privacy]) {
  display: block;
  margin-top: 44px;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-item[data-name=privacy], .snow-monkey-forms-item[data-name=privacy]) {
    margin-top: 28px;
    margin-bottom: 24px;
    text-align: left;
  }
}
.contactPage .contactPage__formArea :where(.smf-item[data-name=privacy], .snow-monkey-forms-item[data-name=privacy]) :where(.smf-item__label, .snow-monkey-forms-item__label) {
  display: none;
}
.contactPage .contactPage__formArea :where(.smf-item[data-name=privacy], .snow-monkey-forms-item[data-name=privacy]) :where(.smf-item__controls, .snow-monkey-forms-item__controls) {
  display: inline-block;
  text-align: left;
}
.contactPage .contactPage__formArea :where(.smf-item[data-name=privacy], .snow-monkey-forms-item[data-name=privacy]) :where(.smf-description, .smf-item__description, .snow-monkey-forms-description) {
  margin-top: 8px;
  text-align: left;
}
.contactPage .contactPage__formArea :where(.smf-action, .snow-monkey-forms-action) {
  margin-top: 0;
  text-align: center;
}
.contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 216px;
  height: 52px;
  padding: 0 24px;
  border: 2px solid #FFDE55;
  border-radius: 999px;
  background: #FFDE55;
  color: #23221F;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) {
    min-width: 180px;
    height: 46px;
    font-size: 1.6rem;
  }
}
@media (min-width: 768px) {
  .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control):hover {
    background: #FFF;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .contactPage .contactPage__formArea .zip_num .smf-item__label span {
    padding-left: 44px;
  }
}
.contactPage .contactPage__formArea .smf-form .smf-complete-content p {
  text-align: center;
}
.contactPage .contactPage__formArea :where(.is-required) :where(.smf-item__label, .snow-monkey-forms-item__label) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.contactPage .contactPage__formArea :where(.is-required) :where(.smf-item__label, .snow-monkey-forms-item__label)::before {
  content: "必須";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 36px;
  height: 20px;
  padding: 0 6px;
  border-radius: 5px;
  background: #E8342A;
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 0.3em;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.is-required) :where(.smf-item__label, .snow-monkey-forms-item__label)::before {
    margin-top: 0.1em;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 250px 50px 1fr;
  grid-template-columns: 250px 1fr;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 28px;
  position: relative;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes {
    display: block;
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-item__col--label {
    padding-top: 0;
    margin-bottom: 8px;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-item__label__text {
  display: block;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #23221F;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-item__label__text {
    display: inline;
    font-size: 1.4rem;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-item__label__text {
  white-space: normal;
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-item__col--controls,
.contactPage .contactPage__formArea .is-service-checkboxes .smf-item__controls,
.contactPage .contactPage__formArea .is-service-checkboxes .smf-placeholder,
.contactPage .contactPage__formArea .is-service-checkboxes .smf-checkboxes-control {
  min-width: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-checkboxes-control__control {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: -webkit-max-content 45px -webkit-max-content 45px -webkit-max-content;
    -ms-grid-columns: max-content 45px max-content 45px max-content;
    grid-template-columns: repeat(3, -webkit-max-content);
    grid-template-columns: repeat(3, max-content);
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
    row-gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-checkboxes-control__control {
    display: block;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-label {
  margin: 0;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-label + .smf-label {
    margin-top: 12px;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-label label {
  display: inline-block;
  margin: 0;
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-checkbox-control {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: #23221F;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-checkbox-control {
    white-space: normal;
    font-size: 1.4rem;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-checkbox-control__control {
  width: 18px;
  height: 18px;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  accent-color: #28AEA0;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .is-service-checkboxes .smf-checkbox-control__control {
    width: 16px;
    height: 16px;
    -ms-flex-preferred-size: 16px;
        flex-basis: 16px;
  }
}
.contactPage .contactPage__formArea .is-service-checkboxes .smf-checkbox-control__label {
  display: inline-block;
  line-height: 1.6;
}
.contactPage .contactPage__formArea .smf-form .smf-checkbox-control__control:checked {
  background-color: #28AEA0 !important;
  border-color: #28AEA0 !important;
}
.contactPage .contactPage__formArea .smf-item.txC {
  display: block;
  margin-top: 44px;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .smf-item.txC {
    margin-top: 28px;
    margin-bottom: 24px;
  }
}
.contactPage .contactPage__formArea .smf-item.txC .smf-item__col--label {
  display: none;
}
.contactPage .contactPage__formArea .smf-item.txC .smf-item__col--controls {
  width: 100%;
}
.contactPage .contactPage__formArea .smf-item.txC .smf-item__controls {
  display: inline-block;
  text-align: left;
}
.contactPage .contactPage__formArea .smf-item.txC .smf-checkboxes-control__control {
  display: block;
}
.contactPage .contactPage__formArea .smf-item.txC .smf-label {
  margin: 0;
}
.contactPage .contactPage__formArea .smf-item.txC .smf-label label {
  display: inline-block;
  margin: 0;
}
.contactPage .contactPage__formArea .smf-item.txC .smf-checkbox-control {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #23221F;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .smf-item.txC .smf-checkbox-control {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.contactPage .contactPage__formArea .smf-item.txC .smf-checkbox-control__control {
  width: 18px;
  height: 18px;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  accent-color: #28AEA0;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .smf-item.txC .smf-checkbox-control__control {
    width: 16px;
    height: 16px;
    -ms-flex-preferred-size: 16px;
        flex-basis: 16px;
  }
}
.contactPage .contactPage__formArea .smf-item.txC .smf-checkbox-control__label {
  display: inline-block;
  line-height: 1.6;
}
.contactPage .contactPage__formArea .smf-item.txC::before {
  display: none;
}
.contactPage .contactPage__formArea .smf-item.txC .contactPage__privacyText {
  margin-top: 8px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #23221F;
}
.contactPage .contactPage__formArea .smf-item.txC .contactPage__privacyText a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea .smf-item.txC .contactPage__privacyText {
    text-align: left;
  }
}
.contactPage .contactPage__formArea :where(.smf-action, .snow-monkey-forms-action) {
  margin-top: 45px;
  text-align: center;
}
.contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 286px;
  max-width: 100%;
  height: 44px;
  padding: 0;
  border: 2px solid #FFDE55;
  border-radius: 999px;
  background: #FFDE55;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) {
    width: 286px;
    height: 44px;
  }
}
.contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) button,
.contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) input[type=submit],
.contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control) .smf-button-control__control {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #23221F;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
@media (min-width: 768px) {
  .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control):hover {
    background: #FFF;
    opacity: 1;
  }
  .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control):hover button, .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control):hover input[type=submit], .contactPage .contactPage__formArea :where(.smf-action__submit, .snow-monkey-forms-action__submit, .smf-button-control):hover .smf-button-control__control {
    background: transparent;
  }
}

/*!
 * jquery-drawer v3.2.2
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */
/*!------------------------------------*\
    Base
\*!------------------------------------*/
@media (min-width: 900px) {
  .drawer-hamburger {
    display: none !important;
  }
  .drawer--left .drawer-nav {
    left: 0;
  }
  .drawer-nav {
    position: relative;
  }
  .drawer-nav .drawer-menu li {
    display: inline-block;
  }
}
.drawer-open {
  overflow: hidden !important;
}

.drawer-nav {
  position: fixed;
  z-index: 101;
  top: 0;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  color: #222;
  background-color: #fff;
}

.drawer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3.75rem;
  display: block;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu {
  margin: 0;
  margin-top: 60px;
  padding: 0;
  list-style: none;
}

.drawer-menu-item {
  font-size: 1rem;
  display: block;
  padding: 0.75rem;
  text-decoration: none;
  color: #222;
}

.drawer-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

/*!------------------------------------*\
    Top
\*!------------------------------------*/
/*!------------------------------------*\
    Left
\*!------------------------------------*/
/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -16.25rem;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 16px;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  z-index: 111;
  top: 0;
  display: block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-top: 22px;
  margin-right: 16px;
  width: 22px;
  padding: 0;
  padding-bottom: 18px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #222;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -6px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 6px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .spHeader__menuLabel {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 7px;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    position: relative;
    left: -0.5em;
  }
}

@media (max-width: 767px) {
  .spHeader__menuLabel__close {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 7px;
    line-height: 1;
    white-space: nowrap;
    display: none;
  }
}

@media (max-width: 767px) {
  .drawer-open .spHeader__menuLabel {
    display: none;
  }
}
@media (max-width: 767px) {
  .drawer-open .spHeader__menuLabel__close {
    display: block;
  }
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Sidebar
\*!------------------------------------*/
.drawer--sidebar {
  background-color: #fff;
}

.drawer--sidebar .drawer-contents {
  background-color: #fff;
}

@media (min-width: 64em) {
  .drawer--sidebar .drawer-hamburger {
    display: none;
    visibility: hidden;
  }
  .drawer--sidebar .drawer-nav {
    display: block;
    -webkit-transform: none;
    transform: none;
    position: fixed;
    width: 12.5rem;
    height: 100%;
    z-index: 100;
    /***/
  }
  /*! Left */
  .drawer--sidebar.drawer--left .drawer-nav {
    left: 0;
    border-right: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--left .drawer-contents {
    margin-left: 12.5rem;
  }
  /*! Right */
  .drawer--sidebar.drawer--right .drawer-nav {
    right: 0;
    border-left: 1px solid #ddd;
  }
  .drawer--sidebar.drawer--right .drawer-contents {
    margin-right: 12.5rem;
  }
  /*! container */
  .drawer--sidebar .drawer-container {
    max-width: 48rem;
  }
}
/*!------------------------------------*\
    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 0.75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }
  .drawer-navbar .drawer-menu--right {
    float: right;
  }
  .drawer-navbar .drawer-menu li {
    float: left;
  }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .drawer-navbar .drawer-menu {
    padding: 0;
  }
  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: 0.75rem;
  }
}
/*!------------------------------------*\
    Dropdown
\*!------------------------------------*/
.drawer-dropdown-menu {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.drawer-dropdown-menu > li {
  width: 100%;
  list-style: none;
}

.drawer-dropdown-menu-item {
  line-height: 3.75rem;
  display: block;
  padding: 0;
  padding-right: 0.75rem;
  padding-left: 1.5rem;
  text-decoration: none;
  color: #222;
}

.drawer-dropdown-menu-item:hover {
  text-decoration: underline;
  color: #555;
  background-color: transparent;
}

/*! open */
.drawer-dropdown.open > .drawer-dropdown-menu {
  display: block;
}

/*! drawer-caret */
.drawer-dropdown .drawer-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/*! open */
.drawer-dropdown.open .drawer-caret {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}
@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}
/*==================================================
workRu
===================================*/
.workRulesKv {
  background-color: #008180;
  overflow: hidden;
}
.workRulesKv__bg {
  max-width: 1280px;
  margin: 0 auto;
  background-image: url("/wp-content/themes/ds/assets/images/work-rules_kv_pc.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 767px) {
  .workRulesKv__bg {
    background-position: center bottom;
    background-size: cover;
    background-image: url("/wp-content/themes/ds/assets/images/work-rules_kv_sp.jpg");
  }
}
.workRulesKv__inner {
  min-height: 595px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .workRulesKv__inner {
    min-height: 760px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 34px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.workRulesKv__content {
  width: 420px;
}
@media (max-width: 767px) {
  .workRulesKv__content {
    width: 100%;
  }
}
.workRulesKv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesKv__title {
    font-size: 3.4rem;
    line-height: 1.45;
  }
}
.workRulesKv__lead {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesKv__lead {
    margin-top: 18px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.workRulesKv__cta {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .workRulesKv__cta {
    margin-top: 30px;
  }
}
.workRulesKv__note {
  max-width: 372px;
  margin-top: 12px;
  text-align: center;
  font-size: 1.2rem;
  color: #FFF;
}

/*==================================================
workRulesProblem
===================================*/
.workRulesProblem {
  padding: 80px 0 0px;
}
@media (max-width: 767px) {
  .workRulesProblem {
    padding: 80px 0 0px;
  }
}
.workRulesProblem__inner {
  position: relative;
}
.workRulesProblem__title {
  position: relative;
  z-index: 2;
  width: 646px;
  margin: 0 auto -41px;
  padding: 19px 20px 20px;
  background-color: #008180;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesProblem__title {
    width: 100%;
    margin-bottom: -24px;
    padding: 14px 10px 15px;
    font-size: 2rem;
  }
}
.workRulesProblem__body {
  position: relative;
  min-height: 508px;
}
@media (max-width: 767px) {
  .workRulesProblem__body {
    min-height: auto;
  }
}
.workRulesProblem__image {
  width: 100%;
}
.workRulesProblem__image img {
  display: block;
  width: 100%;
  height: 508px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .workRulesProblem__image {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .workRulesProblem__image img {
    height: auto;
  }
}
.workRulesProblem__box {
  position: absolute;
  top: 80px;
  right: 64px;
  width: 572px;
  padding: 36px 40px 34px;
  background-color: #FFF;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}
@media (max-width: 767px) {
  .workRulesProblem__box {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: -18px auto 0;
    padding: 20px 16px;
  }
}
.workRulesProblem__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 43px 20px 1fr;
  grid-template-columns: 43px 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #707070;
}
.workRulesProblem__item:first-child {
  padding-top: 0;
}
.workRulesProblem__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 767px) {
  .workRulesProblem__item {
    display: block;
  }
}
.workRulesProblem__head {
  display: contents;
}
@media (max-width: 767px) {
  .workRulesProblem__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 12px;
  }
}
.workRulesProblem__num {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 43px;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .workRulesProblem__num {
    width: 40px;
    font-size: 3.6rem;
  }
}
.workRulesProblem__itemTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .workRulesProblem__itemTitle {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 18px;
    line-height: 1.4;
  }
}
.workRulesProblem__text {
  -ms-grid-column: 2;
  grid-column: 2;
  margin-top: 12px;
  font-size: 1.4rem;
  line-height: 1.5 !important;
}
.workRulesProblem__text::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
  content: "";
}
.workRulesProblem__text::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.5) * 0.5em);
  content: "";
}
@media (max-width: 767px) {
  .workRulesProblem__text {
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
  }
}

/*==================================================
workRulesCta
===================================*/
.workRulesCta {
  padding: 88px 0 96px;
  background-color: #FFF;
  text-align: center;
}
@media (max-width: 767px) {
  .workRulesCta {
    padding: 88px 0 80px;
  }
}
.workRulesCta__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (max-width: 767px) {
  .workRulesCta__title {
    font-size: 2.8rem;
    line-height: 1.55;
  }
}
@media (max-width: 767px) {
  .workRulesCta__title.size_s {
    font-size: 2.4rem;
  }
}
.workRulesCta__btn {
  width: 345px;
  margin: 38px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .workRulesCta__btn {
    margin-top: 25px;
    text-align: center;
  }
}
.workRulesCta__note {
  margin-top: 11px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

/*==================================================
workRulesFeature
===================================*/
.workRulesFeature {
  background-color: #008180;
}
.workRulesFeature__bg {
  padding: 58px 0 72px;
  background-image: url("/wp-content/themes/ds/assets/images/work-rules_feature_bg_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1280px auto;
}
@media (max-width: 767px) {
  .workRulesFeature__bg {
    padding: 34px 0 45px;
    background-image: url("/wp-content/themes/ds/assets/images/work-rules_feature_bg_sp.png");
    background-size: 100%;
    background-position: center top;
  }
}
.workRulesFeature__sectionTitle {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #202020;
}
@media (max-width: 767px) {
  .workRulesFeature__sectionTitle {
    font-size: 2.6rem;
    line-height: 1.55;
  }
}
.workRulesFeature__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .workRulesFeature__item {
    display: block;
    margin-top: 52px;
  }
}
.workRulesFeature__item {
  /*==============================
  reverse
  ==============================*/
}
.workRulesFeature__item--reverse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 100px;
}
.workRulesFeature__item--reverse .workRulesFeature__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 640px;
  margin-left: 0;
  margin-right: -68px;
  padding-top: 80px;
}
.workRulesFeature__item--reverse .workRulesFeature__image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.workRulesFeature__item--reverse .workRulesFeature__num {
  top: 0;
  left: 108px;
  left: 40px;
}
.workRulesFeature__item--reverse .workRulesFeature__box {
  width: 100%;
  max-width: none;
  padding: 42px 106px 40px 40px;
}
@media (max-width: 767px) {
  .workRulesFeature__item--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 52px;
  }
  .workRulesFeature__item--reverse .workRulesFeature__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    margin-top: -55px;
    margin-right: 0;
    margin-left: 0;
    padding-top: 0;
  }
  .workRulesFeature__item--reverse .workRulesFeature__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 57%;
    max-width: 220px;
    min-width: 200px;
    margin-left: auto;
  }
  .workRulesFeature__item--reverse .workRulesFeature__num {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    position: relative;
    top: auto;
    left: auto;
    width: 102px;
    margin: 0 auto 8px 14px;
  }
  .workRulesFeature__item--reverse .workRulesFeature__box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 34px 20px 28px;
  }
}
.workRulesFeature__image {
  position: relative;
  z-index: 10;
  width: 52vw;
  max-width: 586px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0;
  line-height: 0;
}
.workRulesFeature__image::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#FFDE55), color-stop(78%, #FFDE55), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, #FFDE55 0%, #FFDE55 78%, rgb(255, 255, 255) 100%);
}
.workRulesFeature__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .workRulesFeature__image {
    width: 57%;
    max-width: 220px;
    min-width: 200px;
  }
  .workRulesFeature__image::before {
    top: -3px;
    height: 4px;
  }
}
.workRulesFeature__content {
  position: relative;
  z-index: 3;
  width: 596px;
  margin-left: -68px;
  padding-top: 72px;
}
@media (max-width: 767px) {
  .workRulesFeature__content {
    width: 100%;
    margin-top: -65px;
    margin-left: 0;
    padding-top: 0;
  }
}
.workRulesFeature__num {
  position: absolute;
  top: 0;
  left: 108px;
  z-index: 2;
  width: 216px;
}
.workRulesFeature__num img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .workRulesFeature__num {
    position: relative;
    top: auto;
    left: auto;
    z-index: 4;
    width: 102px;
    margin: 0 22px 10px auto;
  }
}
.workRulesFeature__box {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 42px 40px 40px 106px;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .workRulesFeature__box {
    max-width: 598px;
  }
}
@media (max-width: 767px) {
  .workRulesFeature__box {
    z-index: 3;
    margin-top: 0;
    padding: 34px 20px 28px;
  }
}
.workRulesFeature__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #202020;
}
@media (max-width: 767px) {
  .workRulesFeature__title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.workRulesFeature__text {
  margin-top: 28px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #202020;
}
@media (max-width: 767px) {
  .workRulesFeature__text {
    margin-top: 18px;
    font-size: 1.5rem;
  }
}

/*==================================================
workRulesCase
===================================*/
/*==================================================
workRulesCase
===================================*/
.workRulesCase {
  position: relative;
  background-color: transparent;
  overflow: hidden;
}
.workRulesCase::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: calc(100% - 50px);
  background-color: #008180;
}
@media (max-width: 767px) {
  .workRulesCase {
    padding: 40px 0 55px;
  }
  .workRulesCase::before {
    top: 33px;
    height: calc(100% - 33px);
  }
}
.workRulesCase__visual {
  position: relative;
  z-index: 1;
  width: 75vw;
  max-width: 895px;
  height: 213px;
  overflow: hidden;
}
.workRulesCase__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .workRulesCase__visual {
    width: 68%;
    max-width: none;
    height: 67px;
    margin-top: -40px;
    margin-left: 0;
    overflow: hidden;
  }
  .workRulesCase__visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.workRulesCase__inner {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 360px 46px 1fr;
  grid-template-columns: 360px 1fr;
  -webkit-column-gap: 46px;
     -moz-column-gap: 46px;
          column-gap: 46px;
  margin-top: -58px;
}
@media (max-width: 767px) {
  .workRulesCase__inner {
    display: block;
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.workRulesCase__side {
  padding-top: 125px;
  text-align: center;
}
@media (max-width: 767px) {
  .workRulesCase__side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 26px;
    padding-top: 24px;
  }
}
.workRulesCase__sectionTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesCase__sectionTitle {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    font-size: 2.6rem;
    line-height: 1.45;
  }
}
.workRulesCase__balance {
  width: 320px;
  margin: 54px auto 0;
}
.workRulesCase__balance img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}
@media (max-width: 767px) {
  .workRulesCase__balance {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 170px;
    margin: 0;
  }
}
.workRulesCase__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 58px;
}
@media (max-width: 767px) {
  .workRulesCase__list {
    gap: 34px;
    margin-top: 40px;
  }
}
.workRulesCase__card {
  position: relative;
  min-height: 340px;
  padding: 40px 40px 40px;
  background-color: #FFF;
  overflow: visible;
}
@media (max-width: 767px) {
  .workRulesCase__card {
    min-height: auto;
    padding: 34px 20px 30px;
  }
}
.workRulesCase__bgText {
  position: absolute;
  top: -30px;
  right: 34px;
  z-index: 1;
  pointer-events: none;
  width: 170px;
}
.workRulesCase__bgText img {
  width: 100%;
}
@media (max-width: 767px) {
  .workRulesCase__bgText {
    top: -20px;
    right: 16px;
    width: 120px;
  }
}
.workRulesCase__company, .workRulesCase__title, .workRulesCase__tags, .workRulesCase__text {
  position: relative;
  z-index: 2;
}
.workRulesCase__company {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #008180;
}
@media (max-width: 767px) {
  .workRulesCase__company {
    font-size: 1.4rem;
  }
}
.workRulesCase__title {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
}
@media (max-width: 767px) {
  .workRulesCase__title {
    margin-top: 10px;
    font-size: 1.8rem;
    line-height: 1.55;
  }
}
.workRulesCase__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.workRulesCase__tags li {
  padding: 5px 12px;
  border-radius: 999px;
  background-color: #F2FAF9;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .workRulesCase__tags {
    margin-top: 18px;
  }
  .workRulesCase__tags li {
    font-size: 1.2rem;
  }
}
.workRulesCase__text {
  margin-top: 20px;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .workRulesCase__text {
    margin-top: 18px;
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

/*==================================================
workRulesPrice
===================================*/
.workRulesPrice {
  padding: 80px 0 60px;
  background-color: #008180;
}
@media (max-width: 767px) {
  .workRulesPrice {
    padding: 58px 0 30px;
  }
}
.workRulesPrice__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .workRulesPrice__head {
    display: block;
    margin-bottom: 12px;
  }
}
.workRulesPrice__sectionTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesPrice__sectionTitle {
    font-size: 2.8rem;
  }
}
.workRulesPrice__tax {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #FFF;
}
@media (min-width: 768px) {
  .workRulesPrice__tax {
    position: relative;
    bottom: -20px;
  }
}
@media (max-width: 767px) {
  .workRulesPrice__tax {
    margin-top: 4px;
    text-align: right;
  }
}
.workRulesPrice__box {
  padding: 45px 40px 45px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .workRulesPrice__box {
    padding: 26px 15px 28px;
  }
}
.workRulesPrice__boxTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .workRulesPrice__boxTitle {
    font-size: 2.4rem;
  }
}
.workRulesPrice__plan {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .workRulesPrice__plan {
    margin-top: 38px;
  }
  .workRulesPrice__plan + .workRulesPrice__plan {
    margin-top: 55px;
  }
}
.workRulesPrice__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px;
}
@media (max-width: 767px) {
  .workRulesPrice__lead {
    display: block;
  }
}
.workRulesPrice__planTitle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 42px;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
  color: #008180;
}
.workRulesPrice__leadText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.workRulesPrice__mainText {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  color: #008180;
}
.workRulesPrice__mainText a {
  color: #008180;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .workRulesPrice__mainText {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
.workRulesPrice__note {
  font-size: 1.2rem;
  margin-top: 4px;
}
@media (max-width: 767px) {
  .workRulesPrice__note {
    margin-top: 5px;
    line-height: 18px !important;
  }
}
.workRulesPrice__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 211px 17px 30px 17px 211px 17px 30px 17px 211px 17px 30px 17px 211px;
  grid-template-columns: 211px 30px 211px 30px 211px 30px 211px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin-top: 18px;
}
@media (max-width: 767px) {
  .workRulesPrice__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
}
.workRulesPrice__items--short {
  -ms-grid-columns: 1fr 36px 1fr 44px 1fr;
  grid-template-columns: 1fr 36px 1fr 44px 1fr;
}
.workRulesPrice__items--short .workRulesPrice__priceCard {
  width: 100%;
}
.workRulesPrice__items--short .workRulesPrice__setCard {
  width: 100%;
}
.workRulesPrice__priceCard {
  position: relative;
  min-height: 130px;
  padding: 22px 16px 18px;
  border: 1px solid #008180;
  border-radius: 4px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .workRulesPrice__priceCard {
    width: 100%;
    min-height: 70px;
    padding: 16px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.workRulesPrice__priceCard--option {
  border-style: dashed;
}
.workRulesPrice__optionLabel {
  position: absolute;
  top: -14px;
  left: 14px;
  padding: 1px 8px;
  border: 1px solid #008180;
  border-radius: 5px;
  background-color: #FFF;
  font-size: 1.2rem;
  line-height: 1.4;
}
.workRulesPrice__cardTitle {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .workRulesPrice__cardTitle {
    font-size: 1.4rem;
  }
}
.workRulesPrice__price {
  margin-top: 6px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
.workRulesPrice__price span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .workRulesPrice__price {
    margin-top: 0;
    text-align: right;
    font-size: 2.4rem;
  }
  .workRulesPrice__price span {
    font-size: 1.4rem;
  }
}
.workRulesPrice__plus {
  width: 30px;
  margin: 0 auto;
}
.workRulesPrice__plus img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .workRulesPrice__plus {
    width: 24px;
  }
}
.workRulesPrice__arrow {
  width: 30px;
  margin: 0 auto;
}
.workRulesPrice__arrow img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .workRulesPrice__arrow {
    width: 26px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.workRulesPrice__setCard {
  min-height: 130px;
  padding: 24px 18px 18px;
  border-radius: 4px;
  background-color: #008180;
  color: #FFF;
}
.workRulesPrice__setCard span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .workRulesPrice__setCard {
    width: 100%;
    min-height: 70px;
    padding: 20px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.workRulesPrice__setLabel {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .workRulesPrice__setLabel {
    font-size: 1.4rem;
  }
}
.workRulesPrice__setPrice {
  margin-top: 22px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .workRulesPrice__setPrice {
    margin-top: 0;
    text-align: right;
    font-size: 2.4rem;
  }
  .workRulesPrice__setPrice span {
    font-size: 1.4rem;
  }
}
.workRulesPrice .workRulesPriceBasic {
  margin-top: 48px;
  padding: 45px 40px 55px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic {
    margin-top: 30px;
    padding: 26px 15px 32px;
  }
}
.workRulesPrice .workRulesPriceBasic__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__title {
    font-size: 2.4rem;
  }
}
.workRulesPrice .workRulesPriceBasic__group {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__group {
    margin-top: 42px;
  }
}
.workRulesPrice .workRulesPriceBasic__group--simple {
  margin-top: 52px;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__group--simple {
    margin-top: 48px;
  }
}
.workRulesPrice .workRulesPriceBasic__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 38px;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__lead {
    display: block;
  }
}
.workRulesPrice .workRulesPriceBasic__groupTitle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 42px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #008180;
}
.workRulesPrice .workRulesPriceBasic__leadText {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.workRulesPrice .workRulesPriceBasic__mainText {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  color: #008180;
}
.workRulesPrice .workRulesPriceBasic__mainText a {
  color: #008180;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__mainText {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
.workRulesPrice .workRulesPriceBasic__note {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #202020;
}
.workRulesPrice .workRulesPriceBasic__cards {
  display: -ms-grid;
  display: grid;
  gap: 56px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .workRulesPrice .workRulesPriceBasic__cards.one_line {
    margin-top: 22px;
  }
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 16px;
  }
}
.workRulesPrice .workRulesPriceBasic__cards--1 {
  -ms-grid-columns: 212px;
  grid-template-columns: 212px;
}
.workRulesPrice .workRulesPriceBasic__cards--3 {
  -ms-grid-columns: (212px)[3];
  grid-template-columns: repeat(3, 212px);
}
.workRulesPrice .workRulesPriceBasic__cards--4 {
  -ms-grid-columns: (212px)[4];
  grid-template-columns: repeat(4, 212px);
}
.workRulesPrice .workRulesPriceBasic__cardWrap {
  width: 212px;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__cardWrap {
    width: 100%;
  }
}
.workRulesPrice .workRulesPriceBasic__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 130px;
  padding: 25px 16px 22px;
  border-radius: 4px;
  background-color: #f1f1f1;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
    min-height: 64px;
    padding: 15px 14px;
  }
}
.workRulesPrice .workRulesPriceBasic__cardTitle {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5 !important;
}
.workRulesPrice .workRulesPriceBasic__cardTitle.small {
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .workRulesPrice .workRulesPriceBasic__cardTitle.small {
    line-height: 1.3 !important;
  }
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__cardTitle {
    font-size: 1.3rem;
  }
}
.workRulesPrice .workRulesPriceBasic__price {
  margin-top: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #202020;
}
.workRulesPrice .workRulesPriceBasic__price span {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__price {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    text-align: right;
    font-size: 2.3rem;
  }
  .workRulesPrice .workRulesPriceBasic__price span {
    font-size: 1.4rem;
  }
}
.workRulesPrice .workRulesPriceBasic__cardNote {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #202020;
}
@media (max-width: 767px) {
  .workRulesPrice .workRulesPriceBasic__cardNote {
    margin-top: 8px;
  }
}

/*==================================================
workRulesFlow
===================================*/
.workRulesFlow {
  position: relative;
  padding: 0 0 80px;
  background-color: #008180;
  overflow: hidden;
}
@media (max-width: 767px) {
  .workRulesFlow {
    padding-bottom: 48px;
  }
}
.workRulesFlow__visual {
  position: relative;
  z-index: 1;
  width: 62.5vw;
  max-width: 800px;
  height: 213px;
  margin-left: auto;
  overflow: hidden;
}
.workRulesFlow__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .workRulesFlow__visual {
    width: 68%;
    max-width: none;
    height: 67px;
    margin-left: 0;
  }
  .workRulesFlow__visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.workRulesFlow__inner {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}
@media (max-width: 767px) {
  .workRulesFlow__inner {
    margin-top: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.workRulesFlow__sectionTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesFlow__sectionTitle {
    font-size: 2.8rem;
  }
}
.workRulesFlow__lead {
  margin-top: 38px;
  max-width: 1060px;
  font-size: 1.6rem;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRulesFlow__lead {
    margin-top: 30px;
  }
}
.workRulesFlow__box {
  margin-top: 40px;
  padding: 40px 65px 40px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .workRulesFlow__box {
    margin-top: 28px;
    padding: 24px 15px 28px;
  }
}
.workRulesFlow__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 66px 1fr;
  grid-template-columns: 320px 1fr;
  -webkit-column-gap: 66px;
     -moz-column-gap: 66px;
          column-gap: 66px;
  padding: 30px 0;
  border-top: 1px solid #707070;
}
.workRulesFlow__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .workRulesFlow__item {
    display: block;
    padding: 24px 0;
  }
}
@media (max-width: 767px) {
  .workRulesFlow__head {
    margin-bottom: 14px;
  }
}
.workRulesFlow__step {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #008180;
}
@media (max-width: 767px) {
  .workRulesFlow__step {
    font-size: 1.3rem;
  }
}
.workRulesFlow__title {
  margin-top: 4px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .workRulesFlow__title {
    font-size: 1.8rem;
  }
}
.workRulesFlow__text {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .workRulesFlow__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.workRulesFlow__text small {
  margin-top: 5px;
  display: block;
  line-height: 18px !important;
}

/*==================================================
workRulesFaq
===================================*/
.workRulesFaq {
  padding: 78px 0 90px;
  background-color: #008180;
  background-image: url("/wp-content/themes/ds/assets/images/work-rules_faq_bg_pc.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1280px auto;
}
@media (max-width: 767px) {
  .workRulesFaq {
    padding: 46px 0 60px;
    background-image: url("/wp-content/themes/ds/assets/images/work-rules_faq_bg_sp.png");
    background-size: 100% auto;
  }
}
.workRulesFaq__sectionTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .workRulesFaq__sectionTitle {
    font-size: 2.8rem;
    margin-bottom: 34px;
  }
}
.workRulesFaq__group {
  margin-bottom: 52px;
}
@media (max-width: 767px) {
  .workRulesFaq__group {
    margin-bottom: 42px;
  }
}
.workRulesFaq__group:last-child {
  margin-bottom: 0;
}
.workRulesFaq__groupTitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .workRulesFaq__groupTitle {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.workRulesFaq__item {
  margin-bottom: 14px;
  background-color: #FFF;
}
.workRulesFaq__item:last-child {
  margin-bottom: 0;
}
.workRulesFaq__question {
  width: 100%;
  padding: 30px 64px 30px 60px;
  background: none;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 767px) {
  .workRulesFaq__question {
    padding: 24px 18px 24px 16px;
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.workRulesFaq__questionInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 34px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .workRulesFaq__questionInner {
    gap: 18px;
  }
}
.workRulesFaq__q {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0rem;
  font-weight: 700;
  line-height: 1;
  color: #008180;
}
@media (min-width: 768px) {
  .workRulesFaq__q {
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .workRulesFaq__q {
    width: 22px;
  }
  .workRulesFaq__q img {
    width: 22px;
  }
}
.workRulesFaq__questionText {
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .workRulesFaq__questionText {
    font-size: 1.6rem;
    line-height: 1.65;
  }
}
.workRulesFaq__toggle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  margin-top: 2px;
}
@media (max-width: 767px) {
  .workRulesFaq__toggle {
    width: 22px;
    height: 22px;
    margin-top: 3px;
  }
}
.workRulesFaq__toggle::before, .workRulesFaq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #008180;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.workRulesFaq__toggle::before {
  width: 18px;
  height: 2px;
}
.workRulesFaq__toggle::after {
  width: 2px;
  height: 18px;
}
.workRulesFaq__item.is-open .workRulesFaq__toggle::after {
  opacity: 0;
}
.workRulesFaq__answer {
  display: none;
  padding: 0 64px 34px 60px;
}
@media (max-width: 767px) {
  .workRulesFaq__answer {
    padding: 0 18px 28px 16px;
  }
}
.workRulesFaq__answerInner {
  padding: 0;
}
.workRulesFaq__answerHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 34px;
}
@media (max-width: 767px) {
  .workRulesFaq__answerHead {
    gap: 18px;
  }
}
.workRulesFaq__a {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0;
}
@media (max-width: 767px) {
  .workRulesFaq__a {
    width: 22px;
  }
  .workRulesFaq__a img {
    width: 22px;
  }
}
.workRulesFaq__answerBody {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .workRulesFaq__answerBody {
    padding-right: 36px;
  }
}
.workRulesFaq__answerText {
  font-size: 1.6rem;
}
.workRulesFaq__answerText a {
  color: #202020;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .workRulesFaq__answerText {
    font-size: 1.4rem;
    line-height: 1.95;
  }
  .workRulesFaq__answerText small {
    margin-top: 5px;
    display: block;
    line-height: 18px !important;
  }
}

/*==================================================
workRules__worksblock
===================================*/
.workRules__worksblock {
  padding: 12px 0 90px;
  background-color: #008180;
}
.workRules__worksblock .worksBlock__head h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  color: #FFF;
}
@media (max-width: 767px) {
  .workRules__worksblock .worksBlock__head h2 {
    font-size: 2.8rem;
  }
}
.workRules__worksblock .worksBlock__link {
  border: #DADADA 1px solid;
}
.workRules__worksblock .worksBlock__archive a {
  color: #FFF;
}