@charset "UTF-8";

html {
  font-size: 62.5%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  background-color: #fff4f6;
  padding-top: 0;
  overflow-x: hidden;
}

a {
  color: #000;
  outline: 0;
  outline: none;
  text-decoration: none;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #f79bb9;
  outline: 0;
  outline: none;
  text-decoration: none;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

a[href^="tel:"] {
  cursor: default;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

img.img-fluid {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-fluid {
  max-width: 100%;
  padding-right: 0rem;
  padding-left: 0rem;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100%;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

.container-100p {
  width: 100%;
  margin: 0 auto;
}

.row:before,
.row:after {
  width: 0;
}

.row.no-margin {
  margin-right: 0;
  margin-left: 0;
}

.row.flex {
  display: flex;
  flex-wrap: wrap;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.flex-center {
  display: flex;
  align-items: center;
}

ul {
  display: block;
  list-style-type: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

h1 {
  margin: 0 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: none;
}

.fixed-top {
  z-index: 1030;
}

dt {
  font-weight: 600;
}

#wrap {
  position: relative;
  width: 100%;
  background: transparent;
  z-index: 2;
}

/* ------------------------------------------------------------------
[Preloader]
------------------------------------------------------------------- */
/*
Copyright（c）2021 by Ash Thornton（https://codepen.io/ashthornton/pen/ZmxaWv）
Released under the MIT license
https://opensource.org/licenses/mit-license.php
*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}
#loader .grey,
#loader .white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
#loader .grey {
  z-index: 2;
  background-color: #d1e8b2;
}
#loader .white {
  z-index: 1;
  background-color: #f4ff9e;
}
#loader .text-wrap {
  overflow: hidden;
}
#loader .text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
#loader .text-wrap .text {
  display: block;
  text-align: center;
}
#loader .text-wrap .text .texts {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #8a5f2e;
}
#loader .text-wrap .text img {
  display: inline-block;
  width: 240px;
}
#loader .text-wrap .text span {
  display: inline-block;
  font-size: 2rem;
  color: #8a5f2e;
}

/* ------------------------------------------------------------------
[Wrapper]
------------------------------------------------------------------- */
#wrapper {
  display: block;
  width: 100%;
}

/* ------------------------------------------------------------------
[Nav]
------------------------------------------------------------------- */
.nav input {
  position: fixed;
  opacity: 0;
}

.nav label {
  position: absolute;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.nav label::before {
  content: "";
  position: fixed;
  top: 0;
  left: 5%;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 8;
}
.nav label .burger {
  position: fixed;
  top: 50%;
  left: 0;
  width: 5%;
  height: 80px;
  margin-top: -50px;
  padding: 0;
  background-color: #f4ff9e;
  border-radius: 0 40px 40px 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}
.nav label .burger::before,
.nav label .burger .bar,
.nav label .burger::after {
  content: "";
  position: absolute;
  left: 35%;
  display: block;
  width: 2em;
  height: 6px;
  background-color: #8a5f2e;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav label .burger .bar {
  top: 46.5%;
}
.nav label .burger::before {
  top: 30%;
  transform-origin: top left;
}
.nav label .burger::after {
  bottom: 30%;
  transform-origin: bottom left;
}
.nav input:focus + label .burger,
.nav label:hover .burger {
  opacity: 1;
}
:root {
  --menu-dur: 0.8s; /* ← 体感が重ければ 0.6–0.9s に */
  --menu-ease: cubic-bezier(0.19, 1, 0.18, 1);
}

/* パネル本体 */
nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  padding: 5% 5% 5% 10%;
  /* GPU 合成を効かせつつ1行で */
  transform: translate3d(-100%, 0, 0);
  will-change: transform;
  transition: transform var(--menu-dur) var(--menu-ease);
  z-index: 9;
}
/* 開いた状態（クラス名は例） */
nav.is-open {
  transform: translate3d(0, 0, 0);
}
/* 背景の円 */
nav::before {
  content: "";
  position: absolute;
  width: 140vw;
  height: 140vw;
  left: -50vw;
  top: -66vw;
  background-color: #f4ff9e;
  border-radius: 50%;
  transform-origin: bottom left;
  /* クローズ時の初期位置（例） */
  transform: skewX(15deg) translateX(-100%);
  will-change: transform;
  transition: transform var(--menu-dur) var(--menu-ease);
  z-index: -1;
}
/* 開いた状態の背景（例） */
nav.is-open::before {
  transform: skewX(0deg) translateX(0);
}

@media (max-width: 1480px) {
  .nav label .burger {
    width: 6%;
  }
  .nav label .burger::before,
  .nav label .burger .bar,
  .nav label .burger::after {
    left: 30%;
  }
}
@media (max-width: 1200px) {
  nav {
    width: 100%;
  }
  nav::before {
    width: 155vw;
    height: 150vw;
  }
  .nav label .burger {
    width: 7%;
  }
  .nav label .burger::before,
  .nav label .burger .bar,
  .nav label .burger::after {
    left: 20%;
  }
}
@media (max-width: 990px) {
  .nav label .burger {
    width: 9%;
  }
  nav::before {
    width: 155vw;
    height: 250vw;
  }
}
@media (max-width: 749px) {
  .nav label .burger {
    width: 60px;
    height: 50px;
  }
  .nav label .burger::before {
    top: 20%;
  }
  .nav label .burger .bar {
    top: 44%;
  }
  .nav label .burger::after {
    bottom: 20%;
  }
  nav a {
    padding: 1px 0 1px 80px;
    font-size: 1.8rem;
  }
}
@media (max-width: 499px) {
  .nav label .burger {
    top: 12%;
    width: 50px;
    height: 50px;
    background-color: #fff;
  }
  .nav label .burger::before {
    top: 20%;
    left: 10%;
  }
  .nav label .burger .bar {
    top: 44%;
    left: 10%;
  }
  .nav label .burger::after {
    bottom: 20%;
    left: 10%;
  }
  .nav label::before {
    left: 0;
  }
  nav {
    display: block;
    width: 100%;
    height: auto;
    padding: 25px 50px;
    overflow: auto;
    overflow-x: hidden;
  }
  nav::before {
    left: 0;
    top: 0;
    width: 100vw;
    height: 1000px;
    border-radius: 0;
  }
  nav a {
    padding: 1px 0 1px 60px;
    font-size: 1.8rem;
  }
}

main {
  overflow: hidden;
}
main .content {
  transform: translate3d(0, 0, 0);
  /* material acceleration */
  will-change: transform, filter;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
[id="navcheck"]:checked + label::before {
  opacity: 1;
  pointer-events: auto;
}
[id="navcheck"]:checked + label .burger::before,
[id="navcheck"]:checked + label .burger::after {
  width: 70%;
}
[id="navcheck"]:checked + label .burger::before {
  top: 52%;
  border-radius: 0 3px 3px 0;
  transform: rotate(-45deg) translateY(-50%);
}
[id="navcheck"]:checked + label .burger::after {
  bottom: 52%;
  border-radius: 0 3px 3px 0;
  transform: rotate(45deg) translateY(50%);
}
[id="navcheck"]:checked + label .burger .bar {
  transform: scale(0.1);
  opacity: 0;
}
[id="navcheck"]:checked ~ nav {
  transform: translateX(0);
}
[id="navcheck"]:checked ~ nav::before {
  transform: skewX(0deg) translateX(0);
}
[id="navcheck"]:checked ~ nav a {
  transform: translateX(0);
}
[id="navcheck"]:checked ~ main .content {
  transform: translateX(3em);
  transform-origin: left center;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  /* quite laggy :S */
}

.nav-cate-wrapper {
  margin-top: 5%;
  margin-bottom: 5%;
  margin-left: 0;
  margin-right: 0;
}
nav a.cate {
  position: relative;
  display: flex;
  margin: 0 0 20%;
  padding: 0;
  font-size: 1.3vw;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #8a5f2e;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-100%);
  transition: color 0.15s, transform 0.5s;
  transition: 0.5s ease-in-out;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
nav a.cate img {
  display: inline-block;
  width: 60px;
  transform: rotate(-45deg);
  padding: 0 10px 0 0;
}
nav a:hover,
nav a:focus {
  color: #8ebf1f;
  text-decoration: none;
}
.nav-name-img {
  display: block;
  width: 80%;
}
.nav-name-wrap {
  display: block;
  text-align: left;
  margin: 0 0 6%;
  padding: 0;
}
.nav-name {
  display: inline-block;
  font-size: 1.2vw;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 10px;
  padding: 10px 20px;
  background-color: #8ebf1f;
  border-radius: 20px;
}
.nav-address {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  color: #8a5f2e;
  text-align: left;
  margin: 0;
  padding: 0 0 10px;
}
.nav-address br.brbr {
  display: none;
}
.nav-address span.nav-gmap {
  display: block;
  margin: 0;
  padding: 0;
}
.nav-address span.nav-gmap a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #8a5f2e;
  padding: 0;
}
.nav-address span.nav-gmap a:hover {
  color: #8ebf1f;
}
.nav-tel-wrap {
  display: block;
  margin: 0;
  padding: 0;
}
.nav-tel-wrap a {
  display: block;
  font-size: 1.6vw;
  font-weight: 600;
  font-family: "Spinnaker", sans-serif;
  line-height: 1;
  color: #8a5f2e;
  margin: 0 0 8px;
  padding: 0;
}
.nav-tel-wrap a span {
  display: inline-block;
  font-size: 1.5vw;
  padding: 0 10px 0 0;
}
.nav-tel-wrap a:hover {
  color: #8a5f2e;
}
.nav-tel-wrap .nav-tel-uke {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #8a5f2e;
  margin: 0 0 10px;
  padding: 0;
}

@media (max-width: 1480px) {
  nav a.cate {
    margin: 0 0 25%;
  }
  nav a.cate img {
    width: 50px;
  }
  .nav-name {
    font-size: 1.4vw;
  }
  .nav-address {
    font-size: 1.4rem;
  }
  .nav-address span.nav-gmap a {
    font-size: 1.2rem;
  }
  .nav-tel-wrap .nav-tel-uke {
    font-size: 1.2rem;
  }
}
@media (max-width: 1200px) {
  nav a.cate {
    font-size: 1.8vw;
    margin: 0 0 25%;
  }
  .nav-name {
    font-size: 1.8vw;
  }
  .nav-tel-wrap a {
    font-size: 3.2vw;
  }
}
@media (max-width: 990px) {
  nav a.cate {
    font-size: 2.8vw;
    margin: 0 0 20%;
  }
  .nav-name {
    font-size: 2.4vw;
  }
  .nav-address {
    font-size: 1.6rem;
  }
  .nav-address span.nav-gmap a {
    font-size: 1.4rem;
  }
  .nav-tel-wrap a span {
    font-size: 2.4vw;
  }
  .nav-tel-wrap a {
    font-size: 4vw;
  }
  .nav-tel-wrap .nav-tel-uke {
    font-size: 1.6rem;
  }
  .nav-two-img {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  [id="navcheck"]:checked + label .burger::before,
  [id="navcheck"]:checked + label .burger::after {
    width: 65%;
  }
  nav a.cate {
    font-size: 2.2vw;
    margin: 0 0 8%;
  }
  .nav-name-wrap {
    display: none;
  }
}
@media (max-width: 749px) {
  [id="navcheck"]:checked + label .burger::before,
  [id="navcheck"]:checked + label .burger::after {
    width: 65%;
  }
  .menu-text {
    display: none;
  }
  .nav-name-wrap {
    display: none;
  }
}
@media (max-width: 499px) {
  [id="navcheck"]:checked + label .burger::before,
  [id="navcheck"]:checked + label .burger::after {
    width: 55%;
    left: 20%;
  }
  .nav-cate-wrapper {
    margin-top: 0;
    margin-bottom: 30px;
  }
  nav a.cate {
    position: relative;
    font-size: 1.6rem;
    margin: 0 0 0 10px;
    padding: 7% 0;
  }
  nav a.cate::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: repeating-linear-gradient(to right, #8a5f2e 0, #8a5f2e 2px, transparent 2px, transparent 6px);
    opacity: 0.8;
    pointer-events: none;
  }
  nav a.cate img {
    padding: 0 20px 0 0;
  }
  .nav-name-wrap {
    display: block;
    margin: 0 0 30px;
    padding: 0;
  }
  .nav-name {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    padding: 10px 0;
    text-align: center;
  }
  .nav-address br.brbr {
    display: block;
  }
  .nav-address {
    font-size: 1.5rem;
    text-align: center;
  }
  .nav-address span.nav-gmap a {
    font-size: 1.2rem;
  }
  .nav-tel-wrap {
    text-align: center;
  }
  .nav-tel-wrap a span {
    font-size: 1.6rem;
  }
  .nav-tel-wrap a {
    font-size: 2.4rem;
  }
  .nav-tel-wrap .nav-tel-uke {
    font-size: 1.2rem;
  }
}
@media (max-width: 360px) {
  .nav-name {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------------------------
 [Menu Bar Left]
------------------------------------------------------------------- */
.nav-menu-wrap {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #f4ff9e;
  border-radius: 0 50% 50% 0;
  z-index: 9;
}

@media (max-width: 1200px) {
  .nav-menu-wrap {
    display: none;
  }
}

/* ------------------------------------------------------------------
 [Hero]
------------------------------------------------------------------- */
canvas#canvas-container {
  position: fixed;
  top: -15%;
  bottom: -15%;
  left: -15%;
  right: -15%;
  width: 130%;
  height: 130%;
  background-color: #fff;
  z-index: 0;
}
#canvas-wraps-up {
  position: fixed;
  width: 100%;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  background-color: rgba(241, 244, 224, 0.9);
}

@media (max-width: 499px) {
  canvas#canvas-container {
    top: -40%;
    bottom: -40%;
    left: -40%;
    right: -40%;
    width: 180%;
    height: 180%;
  }
}

/* ------------------------------------------------------------------
 [Hero Canvas]
------------------------------------------------------------------- */
#canvas-wrap {
  position: absolute;
  width: 100%;
  height: 100vh;
  padding: 0 0 0 5%;
  overflow: hidden;
}

@media (max-width: 1200px) {
  #canvas-wrap {
    padding: 0;
  }
}

/* ------------------------------------------------------------------
 [Mame]
------------------------------------------------------------------- */
.mame {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}
.mame path {
  animation: mame 20s linear infinite, rot 100s linear infinite;
}
@keyframes mame {
  0% {
    d: path("M120,-157.6C152.7,-141.5,174.3,-102.6,194.8,-58.8C215.3,-14.9,234.6,33.8,228.4,80.8C222.2,127.8,190.4,173.1,148.1,184C105.8,195,52.9,171.5,-2.4,174.8C-57.8,178.2,-115.6,208.4,-137.5,190.9C-159.3,173.3,-145.3,108,-153,56.3C-160.7,4.6,-190.2,-33.4,-178.3,-54.2C-166.4,-75.1,-113.2,-78.8,-76.6,-93.6C-40,-108.3,-20,-134.2,11.9,-150.5C43.7,-166.8,87.4,-173.6,120,-157.6Z");
  }
  25% {
    d: path("M67.8,-97.1C87.8,-78.8,103.8,-58.9,117.4,-34.1C130.9,-9.4,142,20.2,139.5,50.7C137,81.2,120.8,112.6,95.3,150.1C69.8,187.7,34.9,231.3,3.3,226.8C-28.2,222.2,-56.4,169.3,-91.6,134.9C-126.8,100.5,-169,84.6,-179.6,57.1C-190.2,29.7,-169.3,-9.3,-155.2,-49.7C-141,-90.1,-133.7,-132,-109,-148.8C-84.2,-165.6,-42.1,-157.3,-9.1,-144.8C23.9,-132.2,47.8,-115.5,67.8,-97.1Z");
  }
  50% {
    d: path("M137.1,-191.3C172,-163.4,190.6,-115.7,197.2,-70.1C203.8,-24.4,198.5,19.2,178.9,51.5C159.3,83.9,125.5,105,93.3,129.6C61.1,154.1,30.6,182.1,1.1,180.6C-28.4,179.1,-56.8,148.2,-81.2,121.1C-105.6,94.1,-126.1,70.8,-141.6,41.6C-157.2,12.4,-168,-22.9,-153.9,-45C-139.8,-67,-100.7,-76,-70.9,-105.5C-41.1,-135,-20.6,-185,15.3,-206C51.1,-227.1,102.3,-219.1,137.1,-191.3Z");
  }
  75% {
    d: path("M123.7,-157.1C162.4,-142.2,197.2,-108.8,202.8,-70.8C208.3,-32.9,184.5,9.7,169,54.2C153.6,98.7,146.4,145.2,119.7,162.7C92.9,180.2,46.4,168.6,-1.9,171.1C-50.2,173.7,-100.3,190.4,-122.2,171.3C-144.1,152.3,-137.7,97.5,-144.1,52.7C-150.6,7.9,-169.9,-26.8,-170.5,-64.8C-171,-102.8,-152.8,-144,-121.3,-161.3C-89.7,-178.5,-44.9,-171.8,-1.2,-170.1C42.5,-168.5,85,-172,123.7,-157.1Z");
  }
  100% {
    d: path("M120,-157.6C152.7,-141.5,174.3,-102.6,194.8,-58.8C215.3,-14.9,234.6,33.8,228.4,80.8C222.2,127.8,190.4,173.1,148.1,184C105.8,195,52.9,171.5,-2.4,174.8C-57.8,178.2,-115.6,208.4,-137.5,190.9C-159.3,173.3,-145.3,108,-153,56.3C-160.7,4.6,-190.2,-33.4,-178.3,-54.2C-166.4,-75.1,-113.2,-78.8,-76.6,-93.6C-40,-108.3,-20,-134.2,11.9,-150.5C43.7,-166.8,87.4,-173.6,120,-157.6Z");
  }
}

@keyframes rot {
  fom {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------------------------------------------
 [Mame2]
------------------------------------------------------------------- */
.mame2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
}
.mame2 path {
  animation: mame2 20s linear infinite, rot2 100s linear infinite;
}
@keyframes mame2 {
  0% {
    d: path("M120,-157.6C152.7,-141.5,174.3,-102.6,194.8,-58.8C215.3,-14.9,234.6,33.8,228.4,80.8C222.2,127.8,190.4,173.1,148.1,184C105.8,195,52.9,171.5,-2.4,174.8C-57.8,178.2,-115.6,208.4,-137.5,190.9C-159.3,173.3,-145.3,108,-153,56.3C-160.7,4.6,-190.2,-33.4,-178.3,-54.2C-166.4,-75.1,-113.2,-78.8,-76.6,-93.6C-40,-108.3,-20,-134.2,11.9,-150.5C43.7,-166.8,87.4,-173.6,120,-157.6Z");
  }
  25% {
    d: path("M67.8,-97.1C87.8,-78.8,103.8,-58.9,117.4,-34.1C130.9,-9.4,142,20.2,139.5,50.7C137,81.2,120.8,112.6,95.3,150.1C69.8,187.7,34.9,231.3,3.3,226.8C-28.2,222.2,-56.4,169.3,-91.6,134.9C-126.8,100.5,-169,84.6,-179.6,57.1C-190.2,29.7,-169.3,-9.3,-155.2,-49.7C-141,-90.1,-133.7,-132,-109,-148.8C-84.2,-165.6,-42.1,-157.3,-9.1,-144.8C23.9,-132.2,47.8,-115.5,67.8,-97.1Z");
  }
  50% {
    d: path("M137.1,-191.3C172,-163.4,190.6,-115.7,197.2,-70.1C203.8,-24.4,198.5,19.2,178.9,51.5C159.3,83.9,125.5,105,93.3,129.6C61.1,154.1,30.6,182.1,1.1,180.6C-28.4,179.1,-56.8,148.2,-81.2,121.1C-105.6,94.1,-126.1,70.8,-141.6,41.6C-157.2,12.4,-168,-22.9,-153.9,-45C-139.8,-67,-100.7,-76,-70.9,-105.5C-41.1,-135,-20.6,-185,15.3,-206C51.1,-227.1,102.3,-219.1,137.1,-191.3Z");
  }
  75% {
    d: path("M123.7,-157.1C162.4,-142.2,197.2,-108.8,202.8,-70.8C208.3,-32.9,184.5,9.7,169,54.2C153.6,98.7,146.4,145.2,119.7,162.7C92.9,180.2,46.4,168.6,-1.9,171.1C-50.2,173.7,-100.3,190.4,-122.2,171.3C-144.1,152.3,-137.7,97.5,-144.1,52.7C-150.6,7.9,-169.9,-26.8,-170.5,-64.8C-171,-102.8,-152.8,-144,-121.3,-161.3C-89.7,-178.5,-44.9,-171.8,-1.2,-170.1C42.5,-168.5,85,-172,123.7,-157.1Z");
  }
  100% {
    d: path("M120,-157.6C152.7,-141.5,174.3,-102.6,194.8,-58.8C215.3,-14.9,234.6,33.8,228.4,80.8C222.2,127.8,190.4,173.1,148.1,184C105.8,195,52.9,171.5,-2.4,174.8C-57.8,178.2,-115.6,208.4,-137.5,190.9C-159.3,173.3,-145.3,108,-153,56.3C-160.7,4.6,-190.2,-33.4,-178.3,-54.2C-166.4,-75.1,-113.2,-78.8,-76.6,-93.6C-40,-108.3,-20,-134.2,11.9,-150.5C43.7,-166.8,87.4,-173.6,120,-157.6Z");
  }
}

@keyframes rot2 {
  fom {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------------------------------------------
 [Mame3]
------------------------------------------------------------------- */
.mame3 {
  width: 100%;
  height: 100%;
}
.mame3 path {
  animation: mame3 20s linear infinite, rot3 100s linear infinite;
}
@keyframes mame3 {
  0% {
    d: path("M120,-157.6C152.7,-141.5,174.3,-102.6,194.8,-58.8C215.3,-14.9,234.6,33.8,228.4,80.8C222.2,127.8,190.4,173.1,148.1,184C105.8,195,52.9,171.5,-2.4,174.8C-57.8,178.2,-115.6,208.4,-137.5,190.9C-159.3,173.3,-145.3,108,-153,56.3C-160.7,4.6,-190.2,-33.4,-178.3,-54.2C-166.4,-75.1,-113.2,-78.8,-76.6,-93.6C-40,-108.3,-20,-134.2,11.9,-150.5C43.7,-166.8,87.4,-173.6,120,-157.6Z");
  }
  25% {
    d: path("M67.8,-97.1C87.8,-78.8,103.8,-58.9,117.4,-34.1C130.9,-9.4,142,20.2,139.5,50.7C137,81.2,120.8,112.6,95.3,150.1C69.8,187.7,34.9,231.3,3.3,226.8C-28.2,222.2,-56.4,169.3,-91.6,134.9C-126.8,100.5,-169,84.6,-179.6,57.1C-190.2,29.7,-169.3,-9.3,-155.2,-49.7C-141,-90.1,-133.7,-132,-109,-148.8C-84.2,-165.6,-42.1,-157.3,-9.1,-144.8C23.9,-132.2,47.8,-115.5,67.8,-97.1Z");
  }
  50% {
    d: path("M137.1,-191.3C172,-163.4,190.6,-115.7,197.2,-70.1C203.8,-24.4,198.5,19.2,178.9,51.5C159.3,83.9,125.5,105,93.3,129.6C61.1,154.1,30.6,182.1,1.1,180.6C-28.4,179.1,-56.8,148.2,-81.2,121.1C-105.6,94.1,-126.1,70.8,-141.6,41.6C-157.2,12.4,-168,-22.9,-153.9,-45C-139.8,-67,-100.7,-76,-70.9,-105.5C-41.1,-135,-20.6,-185,15.3,-206C51.1,-227.1,102.3,-219.1,137.1,-191.3Z");
  }
  75% {
    d: path("M123.7,-157.1C162.4,-142.2,197.2,-108.8,202.8,-70.8C208.3,-32.9,184.5,9.7,169,54.2C153.6,98.7,146.4,145.2,119.7,162.7C92.9,180.2,46.4,168.6,-1.9,171.1C-50.2,173.7,-100.3,190.4,-122.2,171.3C-144.1,152.3,-137.7,97.5,-144.1,52.7C-150.6,7.9,-169.9,-26.8,-170.5,-64.8C-171,-102.8,-152.8,-144,-121.3,-161.3C-89.7,-178.5,-44.9,-171.8,-1.2,-170.1C42.5,-168.5,85,-172,123.7,-157.1Z");
  }
  100% {
    d: path("M120,-157.6C152.7,-141.5,174.3,-102.6,194.8,-58.8C215.3,-14.9,234.6,33.8,228.4,80.8C222.2,127.8,190.4,173.1,148.1,184C105.8,195,52.9,171.5,-2.4,174.8C-57.8,178.2,-115.6,208.4,-137.5,190.9C-159.3,173.3,-145.3,108,-153,56.3C-160.7,4.6,-190.2,-33.4,-178.3,-54.2C-166.4,-75.1,-113.2,-78.8,-76.6,-93.6C-40,-108.3,-20,-134.2,11.9,-150.5C43.7,-166.8,87.4,-173.6,120,-157.6Z");
  }
}

@keyframes rot3 {
  fom {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------------------------------------------
 [Ball]
------------------------------------------------------------------- */
.ball {
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}
.ball:before {
  background: #d0f334;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.ball:nth-child(1) {
  transform: translate(-66px);
  animation: x-axis-lateral 2s infinite alternate ease-in-out;
}
.ball:nth-child(1):before {
  animation: y-axis-lateral 1s infinite 0.1s alternate ease-in-out;
}
.ball:nth-child(2) {
  animation: x-axis 3s infinite alternate ease-in-out;
}
.ball:nth-child(2):before {
  animation: y-axis 1s infinite 0.5s alternate ease-in-out;
}
.ball:nth-child(3) {
  transform: translate(66px, 78px);
  animation: x-axis-lateral 2s infinite alternate ease;
}
.ball:nth-child(3):before {
  animation: y-axis-lateral 1s infinite 0.4s alternate ease-in-out;
}

@keyframes x-axis {
  0% {
    transform: translate(-96px);
  }
  100% {
    transform: translate(96px);
  }
}
@keyframes y-axis {
  0% {
    transform: translateY(42px);
  }
  50% {
    transform: translateY(-66px) scale(0.8);
    background: #d0f334;
  }
  100% {
    transform: translateY(0) scale(1);
    background: #d0f334;
  }
}
@keyframes x-axis-lateral {
  0% {
    transform: translate(-36px);
  }
  100% {
    transform: translate(36px);
  }
}
@keyframes y-axis-lateral {
  0% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(-60px);
    background: #d0f334;
  }
}

@media (max-width: 1480px) {
  .ball {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
  }
}

/* ------------------------------------------------------------------
 [Header Logo]
------------------------------------------------------------------- */
#header-logo-wrap {
  position: absolute;
  top: 3%;
  left: 5%;
  display: block;
  width: 240px;
  text-align: center;
  margin: 0;
  padding: 0;
  z-index: 3;
}
#header-logo-wrap span {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  color: #8a5f2e;
  text-align: center;
  padding: 5px 0;
}

@media (max-width: 1480px) {
  #header-logo-wrap {
    top: 2%;
    left: 4%;
    width: 200px;
  }
  #header-logo-wrap span {
    padding: 4px 0;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  #header-logo-wrap {
    top: 2%;
    left: 2%;
    width: 180px;
  }
  #header-logo-wrap span {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 749px) {
  #header-logo-wrap {
    width: 150px;
  }
  #header-logo-wrap span {
    font-size: 1.3rem;
  }
}
@media (max-width: 499px) {
  #header-logo-wrap {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    text-align: center;
    margin: 5% 0 0;
    padding: 0;
  }
  #header-logo-wrap img {
    width: 200px;
    margin: 0 auto;
  }
  #header-logo-wrap span {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------------------------
 [Home Hero Copy]
------------------------------------------------------------------- */
#header-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.home-copy-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.home-lead-j {
  display: block;
  font-size: 1.8vw;
  font-weight: 900;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  color: #8a5f2e;
  text-align: center;
  margin: 1% 0 1%;
  padding: 0;
}
.home-lead-j2 {
  display: block;
  font-size: 1.8vw;
  font-weight: 900;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  color: #8a5f2e;
  text-align: center;
  margin: 0 0 1%;
  padding: 0;
}
.home-copy-j {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding: 0;
}
.home-img-wrap {
  display: block;
  width: 50%;
  margin: 0 auto;
  padding: 0;
}
.home-hero-left-wrapper {
  padding-left: 7%;
  padding-right: 0;
  padding-bottom: 20px;
}
.home-hero-left-imgwrapper {
  height: 100%;
  margin-left: 0;
  margin-right: 0;
}
.home-hero-left-imgwrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
}
.home-hero-right-wrapper {
  padding-left: 0;
  padding-right: 7%;
  padding-bottom: 20px;
}

@media (max-width: 1480px) {
  .home-lead-j {
    font-size: 1.6vw;
  }
  .home-lead-j2 {
    font-size: 1.6vw;
  }
}
@media (max-width: 1200px) {
  .home-lead-j {
    font-size: 2.4vw;
  }
  .home-copy-j {
    width: 64%;
  }
  .home-lead-j2 {
    font-size: 2.4vw;
  }
  .home-img-wrap {
    width: 64%;
  }
}
@media (max-width: 990px) {
  .home-lead-j {
    font-size: 3.6vw;
    margin: 1% 0 3%;
  }
  .home-copy-j {
    width: 90%;
  }
  .home-lead-j2 {
    font-size: 3.6vw;
    margin: 1% 0 8%;
  }
  .home-img-wrap {
    width: 90%;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  #header-wrap {
    display: block;
    height: auto;
  }
  .home-lead-j {
    font-size: 2.4vw;
    margin: 2% 0 1%;
  }
  .home-copy-j {
    width: 40%;
  }
  .home-lead-j2 {
    font-size: 2.4vw;
    margin: 1% 0 1%;
  }
  .home-img-wrap {
    width: 50%;
  }
}
@media (max-width: 749px) {
  .home-lead-j {
    font-size: 3vw;
    margin: 4% 0 1%;
  }
  .home-lead-j2 {
    font-size: 3vw;
    margin: 1% 0 1%;
  }
}
@media (max-width: 499px) {
  #header-wrap {
    display: block;
    height: auto;
  }
  .home-lead-j {
    font-size: 5.4vw;
    margin: 8% 0 4%;
  }
  .home-lead-j2 {
    font-size: 5.4vw;
    margin: 4% 0 5%;
  }
  .home-copy-j {
    width: 96%;
  }
  .home-img-wrap {
    width: 100%;
  }
}

/* ------------------------------------------------------------------
 [Home About]
------------------------------------------------------------------- */
.home-contents-section {
  position: relative;
  width: 100%;
  margin: 10vh 0 0;
  padding: 0;
}
.home-about-img-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0%;
  width: 50%;
  margin: 0;
  padding: 0;
}
.home-about-img-wrapper2 {
  position: absolute;
  top: 6%;
  left: 62%;
  width: 24%;
  margin: 0;
  padding: 0;
}

.home-contents-section .mamemame1 {
  position: absolute;
  top: 0;
  right: 20%;
  width: 100px;
  margin: 0;
  padding: 0;
  transform: rotate(-45deg);
}
.home-contents-section .mamemame12 {
  position: absolute;
  top: 0;
  right: 20%;
  width: 50px;
  margin: 0;
  padding: 0;
}
.home-contents-section .mamemame13 {
  position: absolute;
  top: 0;
  right: 18%;
  width: 50px;
  margin: 0;
  padding: 0;
}

.home-contents-section .mamemame2 {
  position: absolute;
  top: 90vh;
  right: 10%;
  width: 100px;
  margin: 0;
  padding: 0;
  transform: rotate(-45deg);
}
.home-contents-section .mamemame22 {
  position: absolute;
  top: 90vh;
  right: 10%;
  width: 50px;
  margin: 0;
  padding: 0;
}
.home-contents-section .mamemame23 {
  position: absolute;
  top: 90vh;
  right: 8%;
  width: 50px;
  margin: 0;
  padding: 0;
}

.furifuri {
  transform-origin: center bottom;
  animation: yurayurayura 2s linear infinite;
}
@keyframes yurayurayura {
  0%,
  100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
}

.jump {
  animation: jumpdance 0.6s ease-in-out infinite;
}
@keyframes jumpdance {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 1480px) {
  .home-contents-section .mamemame13 {
    right: 17%;
  }
  .home-contents-section .mamemame23 {
    right: 7%;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  .home-contents-section .mamemame1 {
    right: 20%;
    width: 80px;
    margin: 0;
    padding: 0;
    transform: rotate(-45deg);
  }
  .home-contents-section .mamemame12 {
    right: 20%;
    width: 40px;
  }
  .home-contents-section .mamemame13 {
    right: 16%;
    width: 40px;
  }
  .home-contents-section .mamemame2 {
    right: 5%;
    width: 80px;
  }
  .home-contents-section .mamemame22 {
    right: 5%;
    width: 40px;
  }
  .home-contents-section .mamemame23 {
    right: 1%;
    width: 40px;
  }
}
@media (max-width: 499px) {
  .home-contents-section {
    margin: 4vh 0 0;
  }
  .home-contents-section .mamemame1 {
    display: none;
  }
  .home-contents-section .mamemame12 {
    display: none;
  }
  .home-contents-section .mamemame13 {
    display: none;
  }
  .home-contents-section .mamemame2 {
    display: none;
  }
  .home-contents-section .mamemame22 {
    display: none;
  }
  .home-contents-section .mamemame23 {
    display: none;
  }
}

.home-contents-headtitle-wrapper {
  margin-left: 0;
  margin-right: 0;
}
.home-contents-headtitle-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 2% 0 4%;
  padding: 0 0 0 20%;
}
.home-contents-headtitle-wrap2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 2% 0 8%;
  padding: 0 0 0 20%;
}
.home-about-title-en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #8a5f2e;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 0 10px 10px;
}
.home-about-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
  margin: 0 0 3%;
  padding: 0;
}
.home-about-title br {
  display: none;
}
.home-about-title .title-onetext {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 0.8;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: #8ebf1f;
  margin: 2px;
  padding: 16px 14px;
  background-color: #fff;
  border-radius: 50%;
}
.home-about-text {
  display: block;
  font-size: 1.1vw;
  font-weight: 500;
  line-height: 1.8;
  color: #8a5f2e;
  margin: 0;
  padding: 0;
}
dl.item-services01 {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 1%;
  padding: 0;
}
dl.item-services01 dt {
  width: 3%;
  font-size: 1.5vw;
  font-weight: 600;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  margin: 0;
  padding: 5px 0;
}
dl.item-services01 dd {
  width: 97%;
  font-size: 1.5vw;
  font-weight: 600;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  margin: 0;
  padding: 5px 0;
}
dl.item-services02 {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 4%;
  padding: 0;
}
dl.item-services02 dt {
  width: 3%;
  font-size: 1.5vw;
  font-weight: 600;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  margin: 0;
  padding: 5px 0;
}
dl.item-services02 dd {
  width: 97%;
  font-size: 1.5vw;
  font-weight: 600;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  margin: 0;
  padding: 5px 0;
}

@media (max-width: 1480px) {
  .home-about-text {
    font-size: 1.3vw;
  }
}
@media (max-width: 1200px) {
  .home-about-title .title-onetext {
    font-size: 2.4vw;
  }
  .home-contents-headtitle-wrap {
    padding: 0 0 0 10%;
  }
  .home-contents-headtitle-wrap2 {
    padding: 0 0 0 10%;
  }
}
@media (max-width: 990px) {
  .home-contents-headtitle-wrap {
    margin: 10% 0;
    padding: 0 12%;
    text-align: center;
  }
  .home-about-title-en {
    font-size: 1.8rem;
    margin: 0;
    padding: 0 0 10px;
  }
  .home-about-title {
    justify-content: center;
    width: 100%;
    margin: 0 auto 5%;
    padding: 0;
    text-align: center;
  }
  .home-about-title .title-onetext {
    font-size: 4.8vw;
  }
  .home-about-text {
    font-size: 2.4vw;
  }
  .home-about-img-wrapper {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .mame2 {
    top: -10vh;
    height: auto;
    vertical-align: top;
  }
  .home-about-img-wrapper2 {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: 60%;
    margin: 0 auto;
    padding: 0;
  }
  .home-contents-headtitle-wrap2 {
    margin: 10% 0;
    padding: 0 12%;
    text-align: center;
  }
  dl.item-services01 {
    width: 74%;
    margin: 0 auto 1%;
  }
  dl.item-services01 dt {
    width: 10%;
    font-size: 3vw;
  }
  dl.item-services01 dd {
    width: 90%;
    font-size: 3vw;
  }
  dl.item-services02 {
    width: 74%;
    margin: 0 auto 5%;
  }
  dl.item-services02 dt {
    width: 10%;
    font-size: 3vw;
  }
  dl.item-services02 dd {
    width: 90%;
    font-size: 3vw;
  }
}
@media (max-width: 749px) {
  .home-contents-headtitle-wrap {
    padding: 0 10%;
  }
}
@media (max-width: 499px) {
  .home-about-title {
    margin: 0 auto 8%;
  }
  .home-about-title .title-onetext {
    font-size: 8.4vw;
  }
  .home-about-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .home-about-text br.br {
    display: none;
  }
  .home-about-img-wrapper {
    width: 100%;
  }
  .home-about-img-wrapper2 {
    width: 80%;
  }
  dl.item-services01 {
    width: 100%;
    margin: 0 auto 3%;
  }
  dl.item-services01 dt {
    width: 10%;
    font-size: 6vw;
  }
  dl.item-services01 dd {
    width: 90%;
    font-size: 5.4vw;
  }
  dl.item-services02 {
    width: 100%;
    margin: 0 auto 10%;
  }
  dl.item-services02 dt {
    width: 10%;
    font-size: 6vw;
  }
  dl.item-services02 dd {
    width: 90%;
    font-size: 5.4vw;
  }
}

/* ------------------------------------------------------------------
 [Home About Btn]
------------------------------------------------------------------- */
.linkbutton-center-about {
  display: block;
  position: relative;
  width: 300px;
  height: 80px;
  text-align: left;
  margin: 0;
  padding: 0 30px;
  background: transparent;
  line-height: 73px;
  background-color: #fff;
  border: solid 4px #8ebf1f;
  border-radius: 40px;
  overflow: hidden;
}
.linkbutton-center-about::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #8ebf1f;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.linkbutton-center-about:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.linkbutton-center-about .text {
  display: inline-block;
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  color: #8a5f2e;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-center-about:hover .text {
  color: #fff;
}
.linkbutton-center-about .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #8a5f2e;
  position: absolute;
  right: 10%;
  top: 45.5%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-center-about:hover .arrow {
  border-color: transparent transparent transparent #fff;
  right: 5%;
}

@media (max-width: 1480px) {
  .linkbutton-center-about {
    width: 280px;
    height: 70px;
    line-height: 60px;
    border-radius: 35px;
  }
  .linkbutton-center-about .text {
    font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .linkbutton-center-about {
    width: 260px;
    height: 60px;
    line-height: 50px;
    border-radius: 30px;
  }
  .linkbutton-center-about .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 990px) {
  .linkbutton-center-about {
    margin: 0 auto;
  }
}

/* ------------------------------------------------------------------
[Home Availability]
------------------------------------------------------------------- */
.home-availability-wrapper {
  position: relative;
  margin-left: 0;
  margin-right: 0;
  padding: 0 6% 8%;
}
.home-availability-wrapper .mamemame3 {
  position: absolute;
  top: 4.5%;
  left: 17%;
  width: 100px;
  margin: 0;
  padding: 0;
  transform: rotate(-45deg);
}
.home-availability-wrapper .mamemame32 {
  position: absolute;
  top: 5%;
  left: 20%;
  width: 50px;
  margin: 0;
  padding: 0;
}
.home-availability-wrapper .mamemame33 {
  position: absolute;
  top: 5%;
  left: 22%;
  width: 50px;
  margin: 0;
  padding: 0;
}
.home-availability-wrapper .mamemame4 {
  position: absolute;
  bottom: 5%;
  left: 27%;
  width: 100px;
  margin: 0;
  padding: 0;
  transform: rotate(-45deg);
}
.home-availability-wrapper .mamemame42 {
  position: absolute;
  bottom: 5%;
  left: 30%;
  width: 50px;
  margin: 0;
  padding: 0;
}
.home-availability-wrapper .mamemame43 {
  position: absolute;
  bottom: 5%;
  left: 32%;
  width: 50px;
  margin: 0;
  padding: 0;
}

@media (max-width: 1480px) {
  .home-availability-wrapper .mamemame33 {
    left: 23%;
  }
  .home-availability-wrapper .mamemame43 {
    left: 33%;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  .home-availability-wrapper .mamemame3 {
    left: 10%;
    width: 80px;
  }
  .home-availability-wrapper .mamemame32 {
    left: 13%;
    width: 40px;
  }
  .home-availability-wrapper .mamemame33 {
    left: 16%;
    width: 40px;
  }
  .home-availability-wrapper .mamemame4 {
    bottom: 0;
    left: 10%;
    width: 80px;
  }
  .home-availability-wrapper .mamemame42 {
    bottom: 0;
    left: 13%;
    width: 40px;
  }
  .home-availability-wrapper .mamemame43 {
    bottom: 0;
    left: 16%;
    width: 40px;
  }
}
@media (max-width: 499px) {
  .home-availability-wrapper .mamemame3 {
    display: none;
  }
  .home-availability-wrapper .mamemame32 {
    display: none;
  }
  .home-availability-wrapper .mamemame33 {
    display: none;
  }
  .home-availability-wrapper .mamemame4 {
    display: none;
  }
  .home-availability-wrapper .mamemame42 {
    display: none;
  }
  .home-availability-wrapper .mamemame43 {
    display: none;
  }
  .home-availability-wrapper {
    padding: 5% 5% 15%;
  }
}

.home-availability-wrap {
  padding-left: 0;
  padding-right: 0;
}
.home-availability-title-wrap {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.home-availability-title-en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #8a5f2e;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  padding: 0 0 10px 5px;
}
.home-availability-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  margin: 0 auto 5%;
}
.home-availability-title .title-onetext {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 0.8;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: #8ebf1f;
  margin: 2px;
  padding: 16px 14px;
  background-color: #fff;
  border-radius: 50%;
}
.home-availability-contents-wrap1 {
  position: relative;
  height: auto;
  padding-top: 0;
  padding-left: 0;
  padding-right: 2%;
}
.home-availability-img-wrapper1 {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}
.home-availability-img-wrapper2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0 26%;
}
.home-availability-contents-wrap2 {
  padding-top: 0;
  padding-left: 2%;
  padding-right: 0;
}
.entry-wrapper {
  margin: 0;
}
.entry-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: repeating-linear-gradient(to right, #8a5f2e 0, #8a5f2e 2px, transparent 2px, transparent 6px);
  opacity: 0.8;
  pointer-events: none;
}
.entry-wrap {
  position: relative;
  padding: 3% 0;
  margin: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.entry-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: repeating-linear-gradient(to right, #8a5f2e 0, #8a5f2e 2px, transparent 2px, transparent 6px);
  opacity: 0.8;
  pointer-events: none;
}
.entry-wrap:hover {
  background-color: #f4ff9e;
  border-bottom-color: #f4ff9e;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
}
.entry-wrap:hover dl.availability-features dt span,
.entry-wrap:hover dl.availability-features dt span::after,
.entry-wrap:hover dl.availability-features dt h4.home-availability-cate,
.entry-wrap:hover dl.availability-features dt h3.home-availability-titles a,
.entry-wrap:hover dl.availability-features dd a {
  color: #8a5f2e;
}
.entry-wrap dl.availability-features {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
.entry-wrap dl.availability-features dt {
  display: block;
  width: 90%;
  text-align: left;
  padding: 0 0 0 15px;
  margin: 0;
}
.entry-wrap dl.availability-features dt span.date {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #8a5f2e;
  padding-right: 20px;
  padding-bottom: 10px;
}
.entry-wrap dl.availability-features dt span.date::after {
  content: "/";
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #8a5f2e;
}
.entry-wrap dl.availability-features dt h4.home-availability-cate {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #8a5f2e;
  padding: 3px 20px 0 15px;
  text-align: center;
  margin-bottom: 10px;
}
.entry-wrap dl.availability-features dt h3.home-availability-titles {
  display: block;
  margin: 10px 0 10px;
}
.entry-wrap dl.availability-features dt h3.home-availability-titles a {
  display: block;
  font-size: 1.3vw;
  font-weight: 600;
  line-height: 1.4;
  color: #8a5f2e;
}
.entry-wrap dl.availability-features dt h3.home-availability-titles a span {
  display: block;
  font-size: 1.2vw;
  padding: 0 0 6px;
}
.entry-wrap dl.availability-features dt h3.home-availability-titles a:hover {
  color: #8a5f2e;
}
.entry-wrap dl.availability-features dd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  margin: 0;
  padding: 0;
}
.entry-wrap dl.availability-features dd a {
  font-size: 2rem;
  color: #8a5f2e;
}
.entry-wrap dl.availability-features dd a:hover {
  color: #fff;
}
.entry-wrap dl.availability-features dt span.date::after:hover {
  color: #fff;
}
.entry-btn-wrap {
  padding: 40px 0 0;
  margin: 0;
}

@media (max-width: 1680px) {
  .entry-wrap {
    padding: 2% 0;
  }
  .entry-wrap dl.availability-features dt {
    display: block;
  }
  .entry-wrap dl.availability-features dt span.date {
    width: auto;
    font-size: 1.2rem;
  }
  .entry-wrap dl.availability-features dt h4.home-availability-cate {
    width: auto;
    font-size: 1.2rem;
    padding: 3px 20px 0 15px;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-title {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .home-availability-title .title-onetext {
    font-size: 2.4vw;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-title {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-title a {
    font-size: 1.4rem;
  }
}
@media (max-width: 990px) {
  .home-availability-title .title-onetext {
    font-size: 4.8vw;
  }
  #home-news-section {
    padding: 0 4% 5%;
  }
  .home-news-left-wrap {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .home-availability-contents-wrap2 {
    padding-left: 10%;
    padding-right: 10%;
  }
  .entry-wrap {
    padding: 3% 0;
  }
  .entry-wrap dl.availability-features dt span.date {
    font-size: 1.5rem;
  }
  .entry-wrap dl.availability-features dt h4.home-availability-cate {
    font-size: 1.5rem;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-title a {
    font-size: 1.8rem;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-titles a span {
    font-size: 1.6rem;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-titles a {
    font-size: 1.8rem;
  }
}
@media (max-width: 499px) {
  .home-availability-title {
    width: 100%;
    margin: 0 auto 8%;
  }
  .home-availability-title .title-onetext {
    font-size: 8.4vw;
  }
  .home-availability-contents-wrap1 {
    padding-right: 0;
  }
  .home-availability-contents-wrap2 {
    padding-top: 8%;
    padding-bottom: 8%;
    padding-left: 0;
    padding-right: 0;
  }
  .home-availability-img-wrapper2 {
    padding: 0 15%;
  }
  .entry-wrap dl.availability-features dt {
    width: 100%;
    padding: 0;
  }
  .entry-wrap dl.availability-features dt span.date {
    font-size: 1.3rem;
    padding-right: 10px;
  }
  .entry-wrap dl.availability-features dt h4.home-availability-cate {
    font-size: 1.4rem;
    padding: 3px 0 0 10px;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-titles a span {
    font-size: 1.5rem;
  }
  .entry-wrap dl.availability-features dt h3.home-availability-titles a {
    font-size: 1.6rem;
  }
}

.home-availability-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 4% 0 0;
  padding-left: 0;
  padding-right: 0;
}
.home-topics-btn-wrap {
  display: flex;
  justify-content: center;
  margin: 3% 0 0;
  padding-left: 0;
  padding-right: 0;
}

/* ------------------------------------------------------------------
[Home Topics]
------------------------------------------------------------------- */
.home-topics-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 8%;
}
.home-topics-title-en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #8a5f2e;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  padding: 0 0 10px 5px;
}
.home-topics-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  margin: 0 auto;
}
.home-topics-title .title-onetext {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 0.8;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: #8ebf1f;
  margin: 2px;
  padding: 16px 14px;
  background-color: #fff;
  border-radius: 50%;
}
.home-topics-slidewrap {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.slide_home01 {
  position: relative;
  width: 100%;
  height: auto;
  padding: 7% 0 0;
}
.slide_home01 li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
}
.slide_home01 li .ball-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -30px;
  z-index: 10;
  filter: url(#filter);
}
.slide_home01 li a.home-topics-link-slidewrap {
  position: relative;
  display: block;
  padding: 5px;
  overflow: hidden;
}
.slide_home01 li a.home-topics-link-slidewrap figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;
  border: solid #f4ff9e 10px;
  overflow: hidden;
}
.slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  margin: 0;
  padding: 20px;
  text-align: center;
  background-color: rgba(244, 255, 158, 0.9);
}
.slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap .date {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  color: #8a5f2e;
  margin: 0 0 6px;
  padding: 0;
}
.slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap .cate {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: #8a5f2e;
  margin: 0 auto;
  padding: 5px 8px;
  background-color: #fff;
  border-radius: 6px;
}
.slide_home01 li a.home-topics-link-slidewrap figure img {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.slide_home01 li a.home-topics-link-slidewrap figure img:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap {
  display: block;
  width: 100%;
  margin: 10px auto 0;
  padding: 0 20px;
  z-index: 1;
}
.slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap .title {
  display: block;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.4;
  color: #8a5f2e;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
}
.slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap .tag {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #8a5f2e;
  margin: 0;
  padding: 0;
  text-align: center;
}
.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: #cf121c;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  background-color: #f4ff9e;
  -webkit-box-shadow: 8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
  box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  border-color: #8a5f2e;
}
.swiper-button-prev {
  left: 2%;
}
.swiper-button-next {
  right: 2%;
}

@media (max-width: 1480px) {
  .slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap .date {
    font-size: 1.3rem;
  }
  .slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap .title {
    font-size: 1.2vw;
  }
}
@media (max-width: 1300px) {
  .slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap .date {
    font-size: 1.2rem;
  }
}
@media (max-width: 1200px) {
  .home-topics-title .title-onetext {
    font-size: 2.4vw;
  }
  .slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap .title {
    font-size: 1.4vw;
  }
}
@media (max-width: 990px) {
  .home-topics-slidewrap .swiper {
    padding: 5% 0 0;
  }
  .home-topics-title .title-onetext {
    font-size: 4.8vw;
  }
  .slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap .title {
    font-size: 2.2vw;
  }
}
@media (max-width: 499px) {
  .home-topics-wrapper {
    padding: 0 0 15%;
  }
  .home-topics-title {
    width: 100%;
    margin: 0 auto;
  }
  .home-topics-title .title-onetext {
    font-size: 8.4vw;
  }
  .home-topics-slidewrap .swiper {
    padding: 20% 0 0;
  }
  .slide_home01 li a.home-topics-link-slidewrap {
    padding: 0px;
  }
  .slide_home01 li a.home-topics-link-slidewrap figure {
    border: solid #f4ff9e 6px;
  }
  .slide_home01 li a.home-topics-link-slidewrap .home-topics-link-slidetextwrap .title {
    font-size: 1.6rem;
  }
  .slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap {
    padding: 10px;
  }
  .slide_home01 li a.home-topics-link-slidewrap figure .slidetext-inwrap .cate {
    font-size: 1.2rem;
    padding: 4px 5px;
  }
  .home-topics-btn-wrap {
    margin: 6% 0 0;
  }
}

/* ------------------------------------------------------------------
[Home Recruit]
------------------------------------------------------------------- */
.home-recruit-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding: 0 6% 10%;
}
.home-recruit-title-en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #8a5f2e;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  padding: 0 0 10px 5px;
}
.home-recruit-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  margin: 0 auto 3%;
}
.home-recruit-title .title-onetext {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 0.8;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: #8ebf1f;
  margin: 2px;
  padding: 16px 14px;
  background-color: #fff;
  border-radius: 50%;
}
.home-recruit-subtitle-wrapper {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 6%;
}
.home-recruit-subtitle {
  display: block;
  font-size: 3vw;
  font-weight: 900;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 0.2vw;
  text-align: center;
  color: #8a5f2e;
  margin: 0 auto 2%;
  padding: 0;
}
.home-recruit-subtitle br {
  display: none;
}
.home-recruit-s-title-wrapper {
  position: relative;
}
.home-recruit-s-title-wrapper .ball-wrap {
  position: absolute;
  top: 1%;
  left: 60%;
  margin-left: -30px;
  z-index: 10;
  filter: url(#filter);
}
.home-recruit-s-title-wrap {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 40px);
  padding: 30% 15% 30%;
  background-color: #f4ff9e;
  border-radius: 50% 20% 50% 20%;
  border: solid 2px #8a5f2e;
}
.home-recruit-s-title-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 50% 20% 49% 20%;
  background-color: #d7e4b8;
  z-index: -1;
}
.home-recruit-s-title {
  display: block;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #8a5f2e;
  margin: 0 auto;
  padding: 0 0 7%;
}
.home-recruit-s-text {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 2%;
}

@media (max-width: 1480px) {
  .home-recruit-wrapper {
    padding: 0 5% 10% 5%;
  }
  .home-recruit-subtitle-wrapper {
    padding-bottom: 8%;
  }
  .home-recruit-s-title-wrap {
    border-radius: 40% 10% 40% 10%;
  }
  .home-recruit-s-title-wrap::before {
    border-radius: 40% 10% 40% 10%;
  }
  .home-recruit-s-text {
    font-size: 1.4rem;
  }
}
@media (max-width: 1200px) {
  .home-recruit-s-title-wrap {
    padding: 20% 10%;
    margin-bottom: 4%;
  }
  .home-recruit-programs-icon {
    font-size: 7.2vw;
  }
  .home-recruit-s-title {
    font-size: 1.8vw;
  }
  .home-recruit-s-title br.br {
    display: block;
  }
}
@media (max-width: 990px) {
  .home-recruit-title .title-onetext {
    font-size: 4.8vw;
  }
  .home-recruit-subtitle {
    font-size: 3.6vw;
  }
  .home-recruit-programs-icon {
    font-size: 15vw;
  }
  .home-recruit-s-title {
    font-size: 3vw;
  }
  .home-recruit-s-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 499px) {
  .home-recruit-wrapper {
    padding: 0 5% 150px 5%;
  }
  .home-recruit-s-title-wrap::before {
    border-radius: 50% 20% 40% 20%;
  }
  .home-recruit-title {
    width: 100%;
    margin: 0 auto 6%;
  }
  .home-recruit-title .title-onetext {
    font-size: 8.4vw;
  }
  .home-recruit-subtitle {
    font-size: 6vw;
    line-height: 1.4;
    margin: 0 auto 10%;
  }
  .home-recruit-subtitle br {
    display: block;
  }
  .home-recruit-s-out-wrapper {
    display: block;
  }
  .home-recruit-s-title-wrapper {
    margin-bottom: 10%;
  }
  .home-recruit-programs-icon {
    font-size: 24vw;
  }
  .home-recruit-s-title {
    font-size: 5.4vw;
  }
  .home-recruit-s-title-wrap {
    padding: 10% 8%;
    margin-bottom: 5%;
  }
}

/* ------------------------------------------------------------------
[Footer]
------------------------------------------------------------------- */
.waves {
  position: relative;
  display: block;
  width: 100%;
  height: 15vh;
  margin-top: -100px;
  margin-bottom: 0;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    margin-top: -40px;
  }
  .content {
    height: 30vh;
  }
}

footer {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 3% 6% 50px;
  background-color: #ffffe0;
}

.footer-container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.footer-logowrap {
  display: flex;
  align-items: center;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.footer-name {
  width: 90%;
  margin: 0;
  padding: 0 10% 20px;
}
.footer-name span {
  display: block;
  font-size: 1.2vw;
  font-weight: 600;
  color: #8a5f2e;
  text-align: center;
  line-height: 1.4;
  padding: 4px 0;
}
.footer-img-wrap {
  padding: 5%;
}
dl.footer-guidelines {
  width: 94%;
  padding: 0;
  margin: 4% auto;
}
dl.footer-guidelines dt.footer-name {
  float: left;
  width: 350px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.6;
  padding: 8px 0;
  margin: 0;
}
dl.footer-guidelines dd.footer-address {
  margin-left: 350px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.6;
  margin-left: 0;
  padding: 8px 0;
}
dl.footer-guidelines dt {
  float: left;
  width: 150px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 8px 0;
  margin: 0;
}
dl.footer-guidelines dd {
  margin-left: 150px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.8;
  padding: 8px 0;
}
dl.footer-guidelines dd br.br {
  display: none;
}
.footer-gmap {
  display: block;
  margin: 0;
  padding: 0;
}
.footer-gmap a {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1;
  color: #8a5f2e;
}
.footer-gmap a:hover {
  color: #8ebf1f;
  text-decoration: none;
}
.footer-info-wrap {
  width: 100%;
  text-align: center;
  margin: 0 0 30px;
  padding: 20px 30px;
  background-color: #f6feb7;
  border-radius: 10px;
}
.footer-info-wrap2 {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 20px 30px;
  background-color: #f6feb7;
  border-radius: 20px;
}
.footer-info-inwrap {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.footer-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.4;
  color: #8a5f2e;
  margin: 0;
  padding: 0 10% 10px;
}
.footer-title span {
  display: block;
  font-size: 2rem;
  color: #8ebf1f;
  padding: 0 0 10px;
}
.footer-tel {
  display: block;
  margin: 0;
  padding: 0 0 6px;
}
.footer-tel a {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  letter-spacing: 2px;
  line-height: 1;
  color: #8a5f2e;
  text-decoration: none;
}
.footer-tel-uke {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 0 10%;
}
.footer-imgwrap {
  margin: 0;
  padding: 12% 0 0;
}
.footer-menu {
  margin: 50px auto;
  padding: 20px 0;
  text-align: center;
  border-top: solid 2px #8a5f2e;
  border-bottom: solid 2px #8a5f2e;
}
.footer-menu li {
  display: inline-block;
  margin: 0;
  padding: 10px 0;
}
.footer-menu li:after {
  content: "/";
  margin-left: 20px;
  margin-right: 20px;
}
.footer-menu li a {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: #8a5f2e;
}
.footer-menu li a:hover {
  color: #8ebf1f;
  text-decoration: none;
}
.footer-menu li.last:after {
  content: "";
  margin-left: 0px;
  margin-right: 0px;
}
.footer-menu-down {
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.footer-menu-down li {
  display: inline-block;
  margin: 0;
  padding: 10px 0;
}
.footer-menu-down li:after {
  content: "/";
  margin-left: 20px;
  margin-right: 20px;
}
.footer-menu-down li a {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  color: #8a5f2e;
}
.footer-menu-down li a:hover {
  color: #8ebf1f;
  text-decoration: none;
}
.footer-menu-down li.last:after {
  content: "";
}
.footer-copyright {
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0px;
  line-height: 1;
  color: #8a5f2e;
  text-align: center;
  margin: 20px 0 0;
  padding: 0;
}

@media (max-width: 1480px) {
  .footer-name span {
    font-size: 1.6vw;
  }
  .footer-img-wrap {
    padding: 10%;
  }
}
@media (max-width: 1300px) {
  .footer-container {
    width: 98%;
  }
  dl.footer-guidelines dt.footer-name {
    width: 250px;
    font-size: 1.5rem;
  }
  dl.footer-guidelines dd.footer-address {
    margin-left: 250px;
    font-size: 1.5rem;
  }
  dl.footer-guidelines dt {
    font-size: 1.5rem;
  }
  dl.footer-guidelines dd {
    font-size: 1.5rem;
  }
}
@media (max-width: 1200px) {
  svg#wave-footer {
    position: absolute;
    top: -150px;
    height: 150px;
  }
  .footer-info-inwrap {
    padding: 20px 0;
  }
  .footer-title {
    font-size: 1.4vw;
  }
  .footer-title span {
    font-size: 1.8vw;
  }
  .footer-tel a {
    font-size: 3rem;
    letter-spacing: 1px;
  }
  dl.footer-guidelines dt {
    font-size: 1.5rem;
  }
  dl.footer-guidelines dd {
    font-size: 1.5rem;
  }
  dl.footer-guidelines dd br.brbr {
    display: none;
  }
}
@media (max-width: 990px) {
  svg#wave-footer {
    display: none;
  }
  footer {
    padding: 70px 5% 50px;
  }
  .footer-name {
    width: 400px;
    margin: 0 auto 20px;
  }
  .footer-name span {
    font-size: 2.4vw;
  }
  .footer-info-wrap {
    margin: 0 0 20px;
  }
  .footer-tel-uke {
    padding: 0 0 0 6%;
  }
  .footer-menu {
    margin: 20px auto 50px;
    border-top: solid 1px #333;
    border-bottom: solid 1px #333;
  }
  dl.footer-guidelines dd br.br {
    display: block;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  .footer-title {
    font-size: 2.4vw;
  }
  .footer-title span {
    font-size: 3vw;
  }
  .footer-tel a {
    font-size: 4.8vw;
  }
}
@media (max-width: 749px) {
  .footer-gmap {
    display: block;
    padding: 5px 0 0 0;
  }
  .footer-info-wrap {
    height: auto;
  }
  dl.footer-guidelines dt {
    width: 110px;
  }
  dl.footer-guidelines dd {
    margin-left: 110px;
  }
}
@media (max-width: 499px) {
  footer {
    padding: 30px 5% 50px;
  }
  .footer-container {
    width: 100%;
  }
  .footer-name {
    width: 100%;
    margin: 0 auto 10px;
    padding: 0 10%;
  }
  .footer-name span {
    font-size: 1.8rem;
  }
  .footer-img-wrap {
    padding: 0;
  }
  .footer-address br.br {
    display: block;
  }
  .footer-container {
    width: 100%;
  }
  .footer-container .col-xs-2 {
    padding-right: 5px;
    padding-left: 5px;
  }
  dl.footer-guidelines {
    width: 100%;
    margin: 40px auto;
    padding: 0;
    border-top: solid 1px #333;
  }
  dl.footer-guidelines dt {
    display: block;
    float: none;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1;
    padding: 15px 10px 10px;
  }
  dl.footer-guidelines dd {
    display: block;
    margin-left: 0px;
    font-size: 1.4rem;
    line-height: 1.8;
    padding: 0px 10px 15px;
    border-bottom: solid 1px #333;
  }
  dl.footer-guidelines dt br {
    display: none;
  }
  dl.footer-guidelines dd br.br {
    display: block;
  }
  dl.footer-guidelines dt.footer-name {
    display: block;
    float: none;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: 15px 10px 10px;
  }
  dl.footer-guidelines dt.footer-name br {
    display: block;
  }
  dl.footer-guidelines dd.footer-address {
    display: block;
    margin-left: 0px;
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 0 10px 15px;
    border-bottom: solid 1px #333;
  }
  .footer-info-inwrap {
    padding: 20px 10px;
  }
  .footer-title {
    font-size: 1.4rem;
    padding: 0 0 10px;
  }
  .footer-tel a {
    font-size: 2.2rem;
  }
  .footer-tel-uke {
    font-size: 1.1rem;
    padding: 0 0 0 0%;
  }
  .footer-menu {
    padding: 10px 0;
    margin: 20px auto 30px;
  }
  .footer-menu li {
    width: 49%;
    padding: 8px 0;
    text-align: center;
  }
  .footer-menu li:after {
    content: "";
    margin-left: 0px;
    margin-right: 0px;
  }
  .footer-menu li a {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .footer-menu-down li:after {
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-menu-down li a {
    font-size: 1.3rem;
  }
  .footer-info-wrap {
    margin: 0 0 10px;
    padding: 10px 10px;
  }
  .footer-title {
    font-weight: 600;
  }
  .footer-title span {
    font-size: 4.4vw;
  }
  .footer-info-wrap2 {
    margin: 0 0 10px;
    padding: 10px 10px;
  }
  .footer-copyright {
    font-size: 1.3rem;
    font-weight: 500;
  }
}

/* ------------------------------------------------------------------
 [Btn C]
------------------------------------------------------------------- */
.button-c {
  display: inline-block;
  width: 90%;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1;
  outline: none;
  margin: 0px auto;
  padding: 20px 0px;
}
.button-c::before,
.button-c::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
.button-c,
.button-c::before,
.button-c::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button-c {
  position: relative;
  z-index: 2;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 40px;
  color: #fff;
  overflow: hidden;
  background-color: #f3a9c9;
}
.button-c:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 49%;
  right: 0;
  width: 3rem;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
  transition: 0.3s cubic-bezier(0.57, 0.15, 0.13, 0.97) -0.2s;
}
.button-c:hover {
  color: #fff;
  text-decoration: none;
}
.button-c::after {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}
.button-c:hover::after {
  left: 0;
  background-color: #ee7bac;
}

@media (max-width: 499px) {
  .button-c {
    width: 100%;
    font-size: 1.3rem;
  }
}
@media (max-width: 359px) {
  .button-c {
    font-size: 1.1rem;
  }
}

/* ------------------------------------------------------------------
[Scroll UP]
------------------------------------------------------------------- */
.scroll-up {
  position: fixed;
  display: none;
  bottom: 10px;
  right: 10px;
  z-index: 4;
}
.scroll-up a {
  display: block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 2rem;
  color: #8a5f2e;
  opacity: 1;
  background-color: #f4ff9e;
  border-radius: 50%;
}
.scroll-up a:hover,
.scroll-up a:active {
  opacity: 1;
  color: #000;
  background-color: #fff;
}

@media (max-width: 990px) {
  .scroll-up {
    right: 5px;
  }
  .scroll-up a {
    height: 40px;
    width: 42px;
    line-height: 40px;
    font-size: 1.6rem;
  }
}
@media (max-width: 749px) {
  .scroll-up a {
    height: 30px;
    width: 32px;
    line-height: 30px;
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------------------------
 [Second Hero]
------------------------------------------------------------------- */
#second-header-wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 60vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.second-header-right-title-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.second-header-right-title {
  display: block;
  font-size: 2.4vw;
  font-weight: 900;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  color: #8ebf1f;
  margin: 0;
  padding: 15% 20% 0 0;
}
.second-header-contents-wrap {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 5% 0 5%;
}
.second-header-contents-img-wrap {
  display: block;
  width: 12%;
}

@media (max-width: 1480px) {
  .second-header-right-title-wrapper {
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
  }
  .second-header-contents-img-wrap {
    width: 14%;
  }
}
@media (max-width: 1380px) {
  .second-header-contents-img-wrap {
    width: 15%;
  }
}
@media (max-width: 1300px) {
  .second-header-contents-img-wrap {
    width: 16%;
  }
}
@media (max-width: 1200px) {
  .second-header-right-title-wrapper {
    top: -140px;
    right: -90px;
    width: 360px;
    height: 360px;
  }
  .second-header-right-title {
    font-size: 3vw;
    padding: 18% 20% 0 0;
  }
  .second-header-contents-img-wrap {
    width: 20%;
  }
}
@media (max-width: 990px) {
  #second-header-wrap {
    height: 50vh;
  }
  .second-header-contents-wrap {
    padding: 20% 0 5%;
  }
  .second-header-right-title {
    font-size: 4vw;
    padding: 22% 20% 0 0;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  #second-header-wrap {
    height: 100vh;
  }
  .second-header-contents-wrap {
    padding: 5% 0 5%;
  }
}
@media (max-width: 749px) {
  .second-header-contents-wrap {
    padding: 15% 0 5%;
  }
}
@media (max-width: 499px) {
  #second-header-wrap {
    height: 60vh;
  }
  .second-header-right-title-wrapper {
    position: relative;
    top: auto;
    right: auto;
    width: 90%;
    height: auto;
    margin: 7% auto 0;
    border-radius: 40px;
  }
  .second-header-right-title {
    font-size: 7.2vw;
    padding: 15px;
  }
  .second-header-contents-wrap {
    padding: 8% 0 5%;
  }
  .second-header-contents-img-wrap {
    width: 36%;
  }
}
@media (orientation: portrait) and (max-height: 700px) {
  #second-header-wrap {
    height: 70vh;
  }
}

.anker-link-btn-wrap {
  margin-left: 10%;
  margin-right: 10%;
}
.linkbutton-anker-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 70px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  line-height: 65px;
  border-radius: 10px;
  overflow: hidden;
}
.linkbutton-anker-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #8a5f2e;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.linkbutton-anker-btn:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.linkbutton-anker-btn .text {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  color: #8a5f2e;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-anker-btn:hover .text {
  color: #fff;
}
.linkbutton-anker-btn .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #8a5f2e;
  position: absolute;
  right: 20px;
  top: 45%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: rotate(90deg);
  z-index: 2;
}
.linkbutton-anker-btn:hover .arrow {
  border-color: transparent transparent transparent #fff;
  right: 25px;
}
@media (max-width: 990px) {
  .linkbutton-anker-btn {
    margin: 0 auto 20px;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
}
@media (max-width: 749px) {
}
@media (max-width: 499px) {
}

/* ------------------------------------------------------------------
 [service.html]
------------------------------------------------------------------- */
.service-contents01 {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 0 150px;
  background-color: rgba(255, 255, 255, 0.5);
}
.service-contents01-wrap {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}
.service-contents01-maintext-wrap {
  display: block;
  width: 680px;
  height: 450px;
  margin: 50px auto 100px;
  padding: 0;
}
.service-contents01-maintext {
  display: block;
  width: 100%;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #8a5f2e;
  margin: 0 auto 0;
  padding: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.service-contents01-maintext span {
  display: block;
  height: 420px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1px;
  padding: 0 40px 0 0;
}
.head-icon-wrap {
  display: block;
  width: 80px;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 20px;
}
.service-contents01-subtitle {
  display: block;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 20px;
  color: #543618;
  text-align: center;
  margin: 0;
  padding: 0 0 40px 20px;
}
.service-contents01-subtext {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #543618;
  text-align: center;
  margin: 0;
  padding: 0 0 60px;
}
.service-contents01-sho-topwrap {
  width: 40%;
  text-align: center;
  margin: 0 auto;
  padding: 0 0 20px;
}
.service-contents01-sho-wrap {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .service-contents01 {
    padding: 0 0 150px;
  }
  .service-contents01-maintext-wrap {
    width: 560px;
    height: 440px;
    margin: 50px auto 100px;
  }
  .service-contents01-maintext {
    width: 100%;
    height: 440px;
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .service-contents01-maintext span {
    height: 440px;
    font-size: 1.8rem;
    line-height: 2;
    padding: 0 40px 0 0;
  }
  .service-contents01-subtitle {
    font-size: 3rem;
    letter-spacing: 20px;
    padding: 0 0 40px 20px;
  }
}
@media (max-width: 990px) {
  .service-contents01 {
    padding: 50px 0 80px;
  }
  .service-contents01-maintext-wrap {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .service-contents01-maintext {
    width: 100%;
    height: auto;
    font-size: 2.4rem;
    letter-spacing: 2px;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .service-contents01-maintext span {
    font-size: 1.8rem;
    line-height: 2;
    text-align: left;
    padding: 40px 20px 0 20px;
  }
  .service-contents01-subtitle {
    font-size: 3rem;
    letter-spacing: 10px;
    padding: 0 0 40px 10px;
  }
}
@media (max-width: 749px) {
  .service-contents01-maintext span {
    font-size: 1.6rem;
    line-height: 2;
    text-align: left;
    padding: 40px 0 0 0;
  }
  .service-contents01-subtitle {
    font-size: 2.4rem;
    letter-spacing: 8px;
    padding: 0 0 40px 8px;
  }
  .service-contents01-subtext {
    font-size: 1.6rem;
    letter-spacing: 0px;
    padding: 0 0 50px;
  }
  .service-contents01-sho-topwrap {
    width: 60%;
  }
}
@media (max-width: 499px) {
  .service-contents01 {
    padding: 50px 0 80px;
  }
  .service-contents01-maintext-wrap {
    width: 90%;
    margin: 0 auto;
  }
  .service-contents01-maintext {
    font-size: 6vw;
    letter-spacing: 0;
    text-align: center;
  }
  .service-contents01-maintext span {
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
    padding: 20px 0 0 0;
  }
  .service-contents01-subtitle {
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 0 0 20px 2px;
  }
  .service-contents01-subtext {
    width: 90%;
    height: auto;
    font-size: 1.5rem;
    margin: 0 auto;
    padding: 0 0 20px;
    text-align: left;
  }
  .service-contents01-subtext br.br {
    display: none;
  }
  .service-contents01-sho-topwrap {
    width: 80%;
  }
}
@media (max-width: 359px) {
  .service-contents01-maintext {
    font-size: 1.8rem;
  }
  .service-contents01-subtitle {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------------------------
 [Second Sub Title]
------------------------------------------------------------------- */
.second-waves-wrap {
  margin-top: -100px;
}
.second-subtitle-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 6%;
  text-align: center;
}
.second-subtitle-en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  color: #8a5f2e;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  padding: 0 0 10px 5px;
}
.second-subtitle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.second-subtitle br {
  display: none;
}
.second-subtitle .title-onetext {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 0.8;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  color: #8ebf1f;
  margin: 2px;
  padding: 16px 14px;
  background-color: #fff;
  border-radius: 50%;
}
.second-sub-subtitle-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5%;
  text-align: center;
}
.second-sub-subtitle {
  position: relative;
  display: inline-block;
  font-size: 1.8vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 0.2vw;
  color: #fff;
  margin: 0 auto;
  padding: 10px 15px;
  background-color: #8ebf1f;
  border-radius: 10px;
}
.second-sub-subtitle br {
  display: none;
}
.second-sub-subtext-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5%;
  text-align: center;
}
.second-sub-subtext {
  position: relative;
  display: block;
  font-size: 1.4vw;
  font-weight: 600;
  line-height: 1.5;
  color: #8a5f2e;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1480px) {
  .second-subtitle br {
    display: block;
  }
  .second-subtitle .title-onetext {
    font-size: 2.4vw;
  }
}
@media (max-width: 990px) {
  .second-subtitle {
    display: block;
    text-align: center;
  }
  .second-subtitle .title-onetext {
    display: inline-block;
    font-size: 4.8vw;
  }
}
@media (max-width: 499px) {
  .second-subtitle-wrap {
    padding-bottom: 30px;
  }
  .second-subtitle .title-onetext {
    font-size: 7vw;
    margin: 0;
    padding: 12px 10px;
  }
}

/* ------------------------------------------------------------------
 [service.html] そらまめが選ばれる7つの由理
------------------------------------------------------------------- */
.service-contents02 {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 50px 10% 100px;
  background-color: rgba(255, 255, 255, 0.5);
}
.service-programs-features-number {
  display: block;
  font-size: 4.4vw;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  line-height: 1;
  margin: 0 auto 4%;
  padding: 0;
}
.service-programs-features-number span.program {
  display: block;
  font-size: 1vw;
  padding: 5px 0 0;
}
.service-programs-item-wrapper {
  margin-left: -20px;
  margin-right: -20px;
}
.service-programs-wrapper {
  padding-top: 0px;
  padding-left: 15px;
  padding-right: 15px;
}
.service-programs-contents-wrap {
  position: relative;
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 40px;
  padding: 3% 4%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
}
.service-programs-contents-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.programs__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin: 0;
  padding: 5% 8%;
  text-align: center;
  background-color: #8ebf1f;
  border-radius: 20px;
}
.service-programs-subtitle-wrap {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.service-programs-subtitle-inwrap {
  display: block;
  margin: 0;
}
.service-programs-subtitle {
  display: block;
  font-size: 1.6vw;
  font-weight: 600;
  color: #8a5f2e;
  line-height: 1.4;
  text-align: left;
  margin: 0 0 3%;
  padding: 0;
}
.service-programs-subtitle br {
  display: none;
}
.service-programs-subtitle span {
  display: inline-block;
  font-size: 1.1vw;
  padding: 0;
}
.service-programs-subtitle span.s-text {
  font-size: 1.1vw;
  padding: 0 0 0 10px;
  font-weight: 500;
  color: #333;
}
.service-programs-photo-wraps {
  margin: 5% 0 5%;
  border-radius: 20px;
  overflow: hidden;
}
.service-programs-subtitleh4 {
  display: block;
  font-size: 1.4vw;
  font-weight: 600;
  color: #000;
  line-height: 1;
  text-align: center;
  margin: 0 auto 5%;
  padding: 0;
}
.service-programs-subtext {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  color: #8a5f2e;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 5%;
  padding: 0;
}
.service-programs-subtexts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  color: #8a5f2e;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  padding: 0;
}

@media (max-width: 1480px) {
  .programs__item {
    width: 110px;
    height: 110px;
    border-radius: 10px;
  }
  .service-programs-subtitle {
    font-size: 1.4vw;
  }
  .service-programs-subtitleh4 {
    font-size: 1.6vw;
  }
  .service-programs-subtext {
    font-size: 1.1vw;
    line-height: 1.5;
  }
  .service-programs-subtexts {
    font-size: 1.1vw;
    line-height: 1.5;
  }
}
@media (max-width: 1200px) {
  .programs__item {
    width: 90px;
    height: 90px;
    border-radius: 10px;
  }
  .service-programs-photo-wraps {
    border-radius: 10px;
  }
  .service-programs-features-number span.program {
    font-size: 1.4vw;
  }
  .service-programs-subtitle {
    font-size: 2vw;
    margin: 0 0 2%;
  }
  .service-programs-subtext {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: left;
  }
  .service-programs-subtext br {
    display: none;
  }
  .service-programs-subtexts {
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: left;
  }
  .service-programs-subtexts br {
    display: none;
  }
  .second-sub-subtitle {
    font-size: 2.4vw;
  }
  .second-sub-subtext {
    font-size: 1.8rem;
  }
}
@media (max-width: 990px) {
  .service-contents02 {
    padding: 40px 8% 100px;
  }
  .service-programs-wrapper {
    padding-left: 5%;
    padding-right: 0;
  }
  .service-programs-contents-wrap {
    padding: 30px 30px;
    background-color: #fff;
    border-radius: 20px;
    border: solid 2px #8a5f2e;
  }
  .programs__item {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }
  .service-programs-features-number span.program {
    font-size: 2vw;
  }
  .service-programs-features-number {
    font-size: 7.2vw;
  }
  .recruit-works-features-number span.program {
    font-size: 1.6vw;
  }
  .recruit-works-features-number {
    font-size: 7.2vw;
  }
  .service-programs-subtitle-wrap {
    display: block;
    margin: 20px 0 0;
  }
  .service-programs-subtitle {
    font-size: 3vw;
    text-align: center;
    margin: 0 0 3%;
  }
  .service-programs-subtitle span {
    font-size: 2.4vw;
  }
  .service-programs-subtitle span.s-text {
    display: block;
    font-size: 2.4vw;
    padding: 10px 0 0;
  }
  .service-programs-photo-wraps {
    margin: 0 0 30px;
    border-radius: 10px;
  }
  .service-programs-subtitleh4 {
    font-size: 3vw;
    margin: 0 0 30px;
  }
  .service-programs-subtext {
    font-size: 1.8rem;
    margin: 0 0 30px;
  }
  .service-programs-subtexts {
    font-size: 1.8rem;
    margin: 0;
  }
  .second-sub-subtext {
    line-height: 1.6;
    margin: 0 20px 20px;
  }
  .second-sub-subtext br {
    display: none;
  }
  .second-sub-subtitle {
    font-size: 3.6vw;
  }
}
@media (max-width: 499px) {
  .service-contents02 {
    padding: 0 5% 50px;
  }
  .service-programs-item-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .service-programs-contents-wrap {
    padding: 30px 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  .programs__item {
    width: 90px;
    height: 90px;
  }
  .service-programs-features-number {
    font-size: 12vw;
  }
  .service-programs-features-number span.program {
    font-size: 4vw;
  }
  .recruit-works-features-number span.program {
    font-size: 2.4vw;
  }
  .recruit-works-features-number {
    font-size: 10.8vw;
  }
  .service-programs-subtitle-wrap {
    margin: 25px 0 0;
  }
  .service-programs-subtitle {
    font-size: 5vw;
    margin: 0 0 20px;
  }
  .service-programs-subtitle br {
    display: block;
  }
  .service-programs-subtitleh4 {
    font-size: 6vw;
    margin: 0 0 20px;
  }
  .service-programs-subtitle span {
    display: block;
    font-size: 4.8vw;
    padding: 10px 0 0;
  }
  .service-programs-subtitle span.s-text {
    font-size: 4vw;
  }
  .service-programs-subtext {
    font-size: 1.5rem;
  }
  .service-programs-subtexts {
    font-size: 1.5rem;
  }
  .second-sub-subtitle {
    font-size: 5.4vw;
    line-height: 1.4;
    margin: 0 auto 20px;
  }
  .second-sub-subtitle br {
    display: block;
  }
  .second-sub-subtext {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* ------------------------------------------------------------------
 [service.html] 訪問看護ステーションそらまめ サービス内容
------------------------------------------------------------------- */
.service-programs-img-wraps {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0 0 3%;
}
.service-programs-item-wrappers {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 3%;
}
.service-programs-contents-wraps {
  position: relative;
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
  padding: 5% 8% 8%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
}
.service-programs-contents-wraps::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.programs__items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.service-programs-features-icon {
  display: block;
  font-size: 4.8vw;
  color: #8ebf1f;
  line-height: 1;
  margin: 0 auto 4%;
  padding: 0;
}
.service-programs-subtitle-wraps {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.service-programs-subtitles {
  display: block;
  font-size: 1.2vw;
  font-weight: 600;
  color: #8a5f2e;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.service-programs-sub-texts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  color: #8a5f2e;
  line-height: 1.6;
  text-align: center;
  margin: 5% 5%;
  padding: 0;
}

@media (max-width: 1480px) {
  .service-programs-features-icon {
    font-size: 6vw;
  }
  .service-programs-sub-texts {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  .service-programs-features-icon {
    font-size: 8.4vw;
  }
  .service-programs-subtitles {
    font-size: 2vw;
  }
}
@media (max-width: 990px) {
  .service-programs-features-icon {
    font-size: 12vw;
  }
  .service-programs-subtitles {
    font-size: 2.6vw;
  }
}
@media (max-width: 499px) {
  .service-programs-item-wrappers {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 3%;
  }
  .service-programs-features-icon {
    font-size: 18vw;
  }
  .service-programs-subtitles {
    font-size: 5vw;
  }
  .service-programs-subtitle-wraps {
    padding-top: 0;
  }
}

/* ------------------------------------------------------------------
 [service.html] 訪問エリア
------------------------------------------------------------------- */
.service-contents04 {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 10% 150px;
  background-color: rgba(255, 255, 255, 0.5);
}
.second-header-area-img-wrap {
  display: block;
  width: 24%;
  margin: 0 auto;
}
.service-area-wrap-left {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.service-area-inwrap {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding: 0;
}
dl.area-guidelines01 {
  width: 100%;
  padding: 15px 0;
  margin: 0 auto;
}
dl.area-guidelines01 dt {
  float: left;
  width: 10%;
  font-size: 1.8vw;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 5px 0;
  margin: 0;
}
dl.area-guidelines01 dd {
  margin-left: 10%;
  font-size: 1.8vw;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 5px 0;
}
dl.area-guidelines02 {
  width: 100%;
  padding: 15px 0;
  margin: 0 auto;
}
dl.area-guidelines02 dt {
  float: left;
  width: 20px;
  font-size: 1.8rem;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 5px 0;
  margin: 0;
}
dl.area-guidelines02 dd {
  margin-left: 20px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 5px 0;
}
dl.area-guidelines03 {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
dl.area-guidelines03 dt {
  float: left;
  width: 24px;
  font-size: 1.8rem;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 5px 0;
  margin: 0;
}
dl.area-guidelines03 dd {
  margin-left: 24px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 5px 0;
}
.service-area-wrap-right {
  padding-left: 0;
  padding-right: 0;
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 1480px) {
  dl.area-guidelines02 dt {
    font-size: 1.6rem;
  }
  dl.area-guidelines02 dd {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  dl.area-guidelines01 dt {
    font-size: 2vw;
  }
  dl.area-guidelines01 dd {
    font-size: 2vw;
  }
}
@media (max-width: 990px) {
  .service-contents04 {
    padding: 0 10% 100px;
  }
  .service-area-inwrap {
    width: 50%;
  }
  dl.area-guidelines01 {
    padding: 0;
  }
  dl.area-guidelines01 dt {
    font-size: 3.6vw;
  }
  dl.area-guidelines01 dd {
    font-size: 3.6vw;
  }
}
@media (max-width: 499px) {
  .service-contents04 {
    padding: 0 5% 70px;
  }
  .second-header-area-img-wrap {
    width: 50%;
  }
  .service-area-inwrap {
    width: 60%;
  }
  dl.area-guidelines01 dt {
    width: 15%;
    font-size: 2rem;
  }
  dl.area-guidelines01 dd {
    margin-left: 15%;
    font-size: 2rem;
  }
  dl.area-guidelines02 dd br {
    display: none;
  }
}

/* ------------------------------------------------------------------
 [service.html] PDFボタン
------------------------------------------------------------------- */
.linkbutton-pdf-btn {
  display: block;
  position: relative;
  width: 50%;
  height: 70px;
  text-align: center;
  margin: 2% auto 0;
  padding: 0 20px;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  line-height: 65px;
  border-radius: 10px;
  overflow: hidden;
}
.linkbutton-pdf-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #8a5f2e;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.linkbutton-pdf-btn:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.linkbutton-pdf-btn .text {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  color: #8a5f2e;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-pdf-btn:hover .text {
  color: #fff;
}
.linkbutton-pdf-btn .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #8a5f2e;
  position: absolute;
  right: 20px;
  top: 45%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transform: rotate(90deg);
  z-index: 2;
}
.linkbutton-pdf-btn:hover .arrow {
  border-color: transparent transparent transparent #fff;
  right: 25px;
}

@media (max-width: 499px) {
  .linkbutton-pdf-btn {
    width: 100%;
    height: 60px;
    line-height: 55px;
  }
}

/* ------------------------------------------------------------------
 [service.html] ご利用までの流れ
------------------------------------------------------------------- */
.service-works-flow-container {
  position: relative;
  display: block;
  width: 100%;
  padding: 2% 0;
  margin: 0 0 10px;
}
.service-works-flow-section-wrap {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 2px;
}

.flow__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(160px - 10px);
  height: calc(160px - 10px);
  margin: 0;
  padding: 5% 8%;
  text-align: center;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  border-radius: 20px;
}
.flow__item::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.service-works-flow-number {
  display: block;
  font-size: 4.4vw;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: #8a5f2e;
  line-height: 0.9;
  margin: 0 auto;
  padding: 0;
}
.service-works-flow-number span {
  display: block;
  font-size: 1.5vw;
  padding: 0 0 5px;
}
.service-works-flow-subtitle-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}
.service-works-flow-subtitle {
  display: block;
  font-size: 1.5vw;
  font-weight: 600;
  color: #8a5f2e;
  line-height: 1;
  margin: 0 auto;
  padding: 20px 0 20px 20px;
}
.service-works-flow-subtitle br {
  display: none;
}
.service-works-flow-subtitle-text {
  display: block;
  font-size: 1vw;
  font-weight: 500;
  color: #666;
  line-height: 1.4;
  margin: 0 auto;
  padding: 0 0 4% 20px;
}

@media (max-width: 1480px) {
  .flow__item {
    width: calc(150px - 10px);
    height: calc(150px - 10px);
  }
  .service-works-flow-subtitle {
    font-size: 1.6vw;
  }
  dl.area-guidelines03 dt {
    font-size: 1.6rem;
  }
  dl.area-guidelines03 dd {
    font-size: 1.6rem;
  }
}
@media (max-width: 1380px) {
  .flow__item {
    width: calc(140px - 10px);
    height: calc(140px - 10px);
  }
}
@media (max-width: 1200px) {
  .flow__item {
    width: calc(120px - 10px);
    height: calc(120px - 10px);
  }
  .service-works-flow-subtitle {
    font-size: 1.8vw;
  }
  dl.area-guidelines03 dt {
    font-size: 1.5rem;
  }
  dl.area-guidelines03 dd {
    font-size: 1.5rem;
  }
}
@media (max-width: 990px) {
  .flow__item {
    width: calc(100px - 10px);
    height: calc(100px - 10px);
  }
  .service-works-flow-number {
    font-size: 6vw;
  }
  .service-works-flow-number span {
    font-size: 2.4vw;
  }
  .service-works-flow-subtitle {
    font-size: 2.4vw;
    line-height: 1.4;
  }
}
@media (max-width: 499px) {
  .flow__item {
    width: calc(80px - 10px);
    height: calc(80px - 10px);
    border-radius: 10px;
  }
  .flow__item::before {
    display: none;
  }
  .service-works-flow-number {
    font-size: 9.6vw;
  }
  .service-works-flow-number span {
    font-size: 3.6vw;
  }
  .service-works-flow-subtitle {
    font-size: 1.7rem;
    line-height: 1.4;
    padding: 0 0 0 30px;
  }
  .service-works-flow-subtitle br {
    display: block;
  }
}

/* ------------------------------------------------------------------
 [service.html] FAQ アコーディオン
------------------------------------------------------------------- */
.service-contents05 {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 10% 200px;
  background-color: rgba(255, 255, 255, 0.5);
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}
.accordion-area li {
  margin: 0;
  padding: 0 0 30px;
}
.accordion-content-inner {
  position: relative;
  width: calc(100% - 20px);
  margin: 0 10px;
  padding: 1% 4% 1%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.accordion-content-inner::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}

/*アコーディオンタイトル*/
.servicetitle {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.6vw;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  color: #8a5f2e;
  padding: 4% 0 4% 40px;
  transition: all 0.5s ease;
}
.servicetitle span {
  display: block;
  font-size: 1.8vw;
  padding: 10px 0 0;
}
.servicetitle br.sp {
  display: none;
}
.servicetitle:hover {
  color: #8ebf1f;
}

/*アイコンの＋×*/
.servicetitle::before,
.servicetitle::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  background-color: #8a5f2e;
}
.servicetitle::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.servicetitle::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.servicetitle.closebtn::before {
  transform: rotate(45deg);
}

.servicetitle.closebtn::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.servicebox {
  display: none; /*はじめは非表示*/
  background-color: #fff;
  margin: 0 0 3%;
  padding: 5%;
  border-radius: 20px;
}

.servicebox .servicebox-img {
  display: block;
  width: 600px;
  margin: 0 auto;
  padding: 0 0 3%;
}
.servicebox .servicebox-text {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  color: #8a5f2e;
  text-align: left;
  margin: 0;
  padding: 0;
}
.servicebox .servicebox-subtitle {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: #666;
  text-align: center;
  margin: 0 0 4%;
  padding: 10px 20px;
  background-color: #fff;
  border: 4px solid #2494df;
  border-radius: 10px;
}
.servicebox .servicebox-subsubtitle01 {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #666;
  text-align: left;
  margin: 0;
  padding: 0 0 2%;
}
.servicebox .servicebox-subsubtitle02 {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #666;
  text-align: left;
  margin: 0;
  padding: 3% 0 2%;
}
.servicebox .servicebox-photo {
  display: block;
  margin: 0;
  padding: 1% 1% 1%;
}
.servicebox .servicebox-photo img {
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .servicebox .servicebox-text {
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .servicebox .servicebox-img {
    width: 80%;
    padding: 0 0 30px;
  }
}
@media (max-width: 990px) {
  .second-faq-headtitle-wrap {
    display: block;
    height: auto;
    margin: 0 15px 30px;
    padding: 5% 5%;
  }
  .servicetitle {
    font-size: 2.4vw;
    line-height: 1.5;
    padding: 4% 0 4% 50px;
  }
}
@media (max-width: 499px) {
  .service-contents05 {
    padding: 0 5% 150px;
  }
  .second-faq-headtitle-wrap {
    padding: 20px 5%;
  }
  .accordion-content-inner {
    position: relative;
    width: calc(100% - 16px);
    margin: 0 8px;
    padding: 0 4%;
  }
  .accordion-area li {
    margin: 0 0 20px;
    padding: 0;
  }
  .servicebox .servicebox-img {
    width: 80%;
    padding: 0 0 8%;
  }
  .servicetitle {
    font-size: 1.7rem;
    padding: 20px 10px 20px 70px;
    margin-bottom: 0;
    text-align: left;
  }
  .servicetitle br.sp {
    display: block;
  }
  .servicetitle span {
    font-size: 1.6rem;
  }
  .servicebox {
    margin: 0;
    padding: 5% 3% 5% 5%;
  }
  .servicebox .servicebox-text {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 0 0 5%;
  }
}

/* ------------------------------------------------------------------
 [company.html]
------------------------------------------------------------------- */
section.company-second-section {
  width: 70%;
  height: auto;
  margin: 0 auto;
  padding: 8% 0 0;
}
.company-second-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.company-second-title {
  display: block;
  font-size: 3.6vw;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 5%;
  padding: 0;
}
.company-second-title span {
  display: block;
  font-size: 1.2vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px 0 0;
}
.company-second-title-b {
  display: block;
  font-size: 3.6vw;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 5%;
  padding: 0;
}
.company-second-title-b span {
  display: block;
  font-size: 1.2vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px 0 0;
}
.company-vision-texts {
  display: block;
  font-size: 2vw;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.5vw;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  padding: 0;
}
.company-vision-texts br.br {
  display: none;
}
.company-second-photo-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.company-second-lead-wrapper {
  display: flex;
  align-items: center;
  padding-left: 5%;
  padding-right: 0;
}
.company-second-lead-wrap {
  display: block;
}
.company-second-lead-left {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  line-height: 1.5;
  color: #8a5f2e;
  text-align: left;
  margin: 0 0 6%;
  padding: 0;
}
.company-text-01 {
  display: block;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 2;
  color: #8a5f2e;
  text-align: left;
  margin: 0 auto;
  padding: 0 0 40px;
}
.company-text-name {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 1px;
  color: #8a5f2e;
  text-align: right;
  margin: 0 auto;
  padding: 0;
}
.company-text-name span {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0 20px 0 0;
}
.company-second-photo-wrapper {
  padding-right: 0;
}
.company-second-photo-wrapper img {
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 1680px) {
  .company-text-01 {
    font-size: 1.1vw;
  }
}
@media (max-width: 1480px) {
  .company-text-01 {
    font-size: 1.3vw;
  }
  table.overview th {
    font-size: 1.6rem;
  }
  table.overview td {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  .company-second-lead-left {
    font-size: 3vw;
  }
  .company-text-01 {
    font-size: 1.7vw;
  }
}
@media (max-width: 990px) {
  .service-contents02.company {
    padding: 50px 10% 100px;
  }
  .company-second-photo-wrapper {
    padding-left: 30%;
    padding-right: 30%;
  }
  .company-second-photo-wrapper img {
    border-radius: 20px;
  }
  .company-second-lead-left {
    font-size: 4vw;
    line-height: 1.4;
    text-align: center;
    margin: 6% 0 6%;
  }
  .company-text-01 {
    font-size: 1.6rem;
    padding: 0 0 20px;
  }
}
@media (max-width: 499px) {
  .service-contents02.company {
    padding: 50px 5% 80px;
  }
  .company-second-lead-left {
    font-size: 2rem;
    margin: 24px 0 20px;
  }
  .company-text-name {
    text-align: center;
  }
}

/* ------------------------------------------------------------------
[company.html] Overview
------------------------------------------------------------------- */
section.company-third-section {
  width: 70%;
  height: auto;
  margin: 0 auto;
  padding: 8% 0;
  background-color: rgba(255, 255, 255, 1);
}
table.overview {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 15px;
}
table.overview th,
table.overview td {
  padding: 20px;
}
table.overview th {
  position: relative;
  width: 25%;
  color: #8a5f2e;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background-color: #f4ff9e;
  border-radius: 8px 0 0 8px;
  overflow: visible;
}
table.overview th:after {
  content: " ";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid transparent;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #f4ff9e;
  border-width: 10px;
  margin-top: -10px;
}
table.overview td {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  color: #8a5f2e;
  padding-left: 40px;
  background-color: #fff;
  border-radius: 0 8px 8px 0;
}
table.overview td br {
  display: none;
}
table.overview td span br {
  display: none;
}
table.overview td span.caution {
  font-size: 1.6rem;
}
table.overview td a {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #8a5f2e;
  line-height: 1;
  padding: 5px 0 0;
}
table.overview td a:hover {
  color: #8ebf1f;
}
table.overview td a.tel {
  font-size: 1.8rem;
  font-weight: 400;
  color: #8a5f2e;
  line-height: 1.6;
  padding: 0;
}
table.overview td a.address-gm {
  font-size: 1.4rem;
  font-weight: 400;
  color: #8a5f2e;
  line-height: 1;
  padding: 10px 0 0;
}
table.overview td a.address-gm:hover {
  color: #8ebf1f;
}

dl.overview-content-wrap {
  width: 100%;
  padding: 0;
  margin: 0;
}
dl.overview-content-wrap dt {
  float: left;
  width: 25px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 5px 0;
  margin: 0;
}
dl.overview-content-wrap dd {
  margin-left: 25px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 5px 0;
}
dl.overview-content-wrap dd span {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0 0 0 15px;
}

@media (max-width: 1480px) {
  table.overview th {
    font-size: 1.6rem;
  }
  table.overview td {
    font-size: 1.6rem;
  }
  table.overview td a.tel {
    font-size: 1.6rem;
  }
  dl.overview-content-wrap dt {
    font-size: 1.6rem;
  }
  dl.overview-content-wrap dd {
    font-size: 1.6rem;
  }
  dl.overview-content-wrap dd span {
    font-size: 1.6rem;
  }
}
@media (max-width: 990px) {
  table.overview td span {
    display: block;
  }
}
@media (max-width: 749px) {
  table.overview td br {
    display: block;
  }
}
@media (max-width: 499px) {
  .service-contents02.overview {
    padding: 0 5% 100px;
  }
  table.overview th {
    position: relative;
    width: 20%;
    min-height: 190px;
    font-size: 1.6rem;
    padding: 20px 10px 20px 10px;
  }
  table.overview th span {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  table.overview td {
    font-size: 1.5rem;
    padding: 20px 10px 20px 20px;
  }
  dl.overview-content-wrap dt {
    font-size: 1.5rem;
  }
  dl.overview-content-wrap dd {
    font-size: 1.5rem;
  }
  dl.overview-content-wrap dd span {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------------------------
 [topics.html]
------------------------------------------------------------------- */
.classification__wrapper {
  width: calc(100% - 20px);
  margin: 0 10px 40px 10px;
}
.classification {
  position: relative;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  border-radius: 10px;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.classification::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 10px;
  background-color: #d7e4b8;
  z-index: -1;
}
.classification__wrap {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.classification__left {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  text-align: center;
  color: #8a5f2e;
  width: 10%;
}
.classification__right {
  align-items: center;
  border-left: 2px solid #8a5f2e;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
  justify-content: flex-start;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  row-gap: 0.75rem;
  width: 90%;
}
.classification__right li {
  display: block;
}
.classification__right li input[type="checkbox"],
.classification__right li input[type="radio"] {
  display: none;
}
.classification__right li input[type="submit"],
.classification__right li input[type="button"],
.classification__right li label,
button,
select {
  cursor: pointer;
}
.classification__right li button.active {
  background: #8a5f2e;
  color: #fff;
}
.classification__right li button {
  outline: none;
  background: #fff;
  border: 1px solid #8a5f2e;
  border-radius: 0.5rem;
  color: #8a5f2e;
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 0;
  text-align: left;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}
.classification__right li button:hover {
  background: #8a5f2e;
  color: #fff;
}

.classification__right li a.active {
  background: #8a5f2e;
  color: #fff;
}
.classification__right li a {
  outline: none;
  background: #fff;
  border: 1px solid #8a5f2e;
  border-radius: 0.5rem;
  color: #8a5f2e;
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin-bottom: 0;
  text-align: left;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}
.classification__right li a:hover {
  background: #8a5f2e;
  color: #fff;
}

.no-results {
  display: none;
  padding-block: 15rem;
  text-align: center;
  color: #8a5f2e;
  font-weight: 500;
}
.masonry-grid {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
}
.masonry-grid.fade-out {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.masonry-grid.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.masonry-grid-wrapper {
  padding-left: 10px;
  padding-right: 0;
}
.masonry-grid-item {
  padding-left: 0;
  padding-right: 0;
}
.pickup-grid {
  width: calc(100% - 20px);
  height: 100%;
  margin: 0 10px 24px 10px;
  padding: 0;
  color: #8a5f2e;
  background-color: transparent;
  border-radius: 14px;
  -webkit-transition: 0.9s ease;
  transition: 0.5s ease;
}
.pickup-img-wrap {
  border-radius: 10px;
  overflow: hidden;
}
.pickup-grid .pickup-grid-txt-wrap {
  width: 100%;
  padding: 8% 5% 8%;
}

/* マウスオーバー時 */
.pickup-grid:hover {
  color: #80b44b;
  transform: scale(1.05);
  z-index: 3;
}

.topics-contents-wrap {
  padding: 0 0 5%;
}
.topics-contents-wraps {
  height: 100%;
  padding: 0;
}
.topics-contents-btnwrap {
  display: block;
  height: calc(100% - 30px);
  padding: 0 10px 10px 0;
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.topics-contents-inner {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 5% 6%;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  border-radius: 20px;
}
.topics-contents-inner::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.topics-contents-inner a img {
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
}

.swiper-slide-titlewrap {
  display: block;
  width: 100%;
  margin: 0;
  padding: 20px 5%;
}
.swiper-slide-category {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding: 6px 10px;
  text-align: center;
  margin-bottom: 10px;
  background-color: #8a5f2e;
  border-radius: 6px;
}
.swiper-slide-day {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #8a5f2e;
  padding: 0 0 0 5px;
  margin: 0 auto 0 0;
}
.swiper-slide-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.3;
  color: #8a5f2e;
  text-align: left;
  margin: 0;
  padding: 15px 0;
}
.swiper-slide-title span {
  display: block;
  font-size: 1.4rem;
  padding: 0 0 8px;
}
.swiper-slide-text {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.4;
  color: #8a5f2e;
  text-align: left;
  margin: 0;
  padding: 0;
}
.swiper-slide-tags2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0 0;
}
.swiper-slide-tags2 li {
  background: #fff;
  border: 1px solid #8a5f2e;
  border-radius: 1.5rem;
  color: #8a5f2e;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 0.8;
  padding: 6px 10px;
  margin-right: 10px;
  margin-bottom: 8px;
  transition: all 0.2s ease-out;
}
.swiper-slide-tags2 li a {
  color: #8a5f2e;
  padding: 0;
  position: relative;
}

@media (max-width: 1680px) {
  .swiper-slide-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 1480px) {
  .classification__left {
    width: 15%;
  }
  .classification__right {
    width: 85%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1200px) {
  .classification__left {
    width: 20%;
  }
  .classification__right {
    width: 80%;
  }
}
@media (max-width: 990px) {
  .second-topics-headtitle-wrap {
    display: block;
    height: auto;
    margin: 0 15px 30px;
    padding: 5% 5%;
  }
  .second-topics-headtitle-wrap .second-topics-headtitles {
    font-size: 3vw;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .swiper-slide-title {
    font-size: 1.8rem;
  }
  .swiper-slide-text {
    font-size: 1.3rem;
  }
}
@media (max-width: 499px) {
  .service-contents02.topics {
    padding: 0 5% 140px;
  }
  .classification__left {
    display: block;
    width: 40%;
  }
  .classification__right {
    width: 60%;
  }
  .topics-contents-btnwrap {
    padding: 0 0 10px 0;
  }
  .second-topics-headtitle-wrap {
    padding: 20px 5%;
  }
  .second-topics-headtitle-wrap .second-topics-headtitles {
    font-size: 6vw;
  }
  .masonry-grid-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
  .topics-contents-wrap {
    padding: 0 0 30px;
  }
  .swiper-slide-title {
    font-size: 1.6rem;
  }
  .swiper-slide-day {
    font-size: 1.4rem;
  }
  .swiper-slide-text {
    font-size: 1.4rem;
    margin: 0 0 10px;
  }
}

/* ------------------------------------------------------------------
[Second Topics Pagination]
------------------------------------------------------------------- */
.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 6px;
  padding: 40px 0 5%;
}
.page-item.active .page-link {
  font-family: "Roboto", sans-serif;
  color: white;
  background: #065fff;
  border-color: #065fff;
}
.page-link {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  color: #8a5f2e;
  margin: 4px;
  padding: 0.5rem 1rem;
  background-color: #fff;
  background-size: 100% 90%;
  border: 1px solid #8a5f2e;
  border-radius: 4px;
}
.page-link:hover {
  z-index: 2;
  color: #fff;
  text-decoration: none;
  background-color: #8a5f2e;
  border-color: #8a5f2e;
}
.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
  background-color: #8a5f2e;
  border-color: #8a5f2e;
  color: #fff;
}

/* ------------------------------------------------------------------
[Second Topics Link Btn]
------------------------------------------------------------------- */
.second-topics-btn-left {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20px);
  margin: 0 10px 30px;
  padding: 0;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.second-topics-btn-left .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #8a5f2e;
  border-right: 0;
  position: absolute;
  right: 10%;
  top: 48%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.second-topics-btn-left .second-topics-btnitem {
  display: block;
  width: 100%;
  color: #8a5f2e;
  font-size: 1.5rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1vw;
  text-align: center;
  margin: 0;
  padding: 5% 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.second-topics-btn-left .second-topics-btnitem .second-topics-btn-left-title {
  display: block;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}
.second-topics-btn-left a:hover {
  background-color: #8a5f2e;
}
.second-topics-btn-left a:hover {
  letter-spacing: 0.4vw;
  color: #fff;
}
.second-topics-btn-left .second-topics-btnitem.diabled {
  pointer-events: none;
}
.second-topics-btn-left:hover .arrow {
  right: 7%;
  border-left: 10px solid #fff;
}

@media (max-width: 990px) {
  .second-topics-btn-left {
    margin: 0 10px 20px;
  }
  .second-topics-btn-left a.second-topics-btnitem .second-topics-btn-left-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 499px) {
  .second-topics-btn-left {
    padding: 8px 0;
    border-radius: 6px;
  }
  .second-topics-btn-left a.second-topics-btnitem .second-topics-btn-left-title {
    font-size: 1.6rem;
  }
}

.topics-bottom-btn-wrap {
  display: block;
}
.topics-bottom-btn-wrap input[type="checkbox"],
.topics-bottom-btn-wrap input[type="radio"] {
  display: none;
}
.topics-bottom-btn-wrap input[type="submit"],
.topics-bottom-btn-wrap input[type="button"],
.topics-bottom-btn-wrap label,
button,
select {
  cursor: pointer;
}
.topics-bottom-btn-wrap button.active {
  background: #8a5f2e;
  color: #fff;
}
.topics-bottom-btn-wrap button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 20px);
  color: #8a5f2e;
  font-size: 1.5rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1vw;
  text-align: center;
  margin: 0 10px 30px;
  padding: 5% 0;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.topics-bottom-btn-wrap button:hover {
  background: #8a5f2e;
  color: #fff;
}

/* ------------------------------------------------------------------
[Second Topics Post]
------------------------------------------------------------------- */
.second-topicspost-headtext-wrap {
  position: relative;
  width: calc(100% - 30px);
  margin: 0 15px 5%;
  padding: 5% 5% 4%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.second-topicspost-headtext-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}

.second-topics-list-section {
  position: relative;
  display: block;
  width: 100%;
  padding: 5% 10% 10%;
  margin: 0;
  background-color: #fff;
}

.topics-item {
  transition: opacity 0.3s ease;
}

.topics-item-wrap {
  padding: 0 0 20px;
}

.topics-item-imgwrap {
  max-width: 60%;
  padding: 0;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
}
.topics-item-imgwrap img {
  width: 100%;
  aspect-ratio: initial;
}

.topics-item-date {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 30px 30px;
}

.topics-item-cate ul {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}

.topics-item-cate ul li a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  padding: 6px 10px;
  text-align: center;
  margin-bottom: 10px;
  background-color: #8a5f2e;
  border-radius: 6px;
}

.topics-item-title {
  font-size: 3.2rem;
  font-weight: 600;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0 0 50px;
  padding: 0 0 20px 20px;
  border-bottom: solid 2px #121212;
}

.topics-item-txt {
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 2;
  color: #8a5f2e;
  margin: 0;
  padding: 0 20px;
}

.topics-item-txt img {
  width: auto;
  max-width: auto;
  height: auto;
}

.topics-banner-wrapper {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 4%;
}

/* .topics-item-txt h1 {
  display: block;
  font-size: 3vw;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.2vw;
  text-align: left;
  color: #8a5f2e;
  margin: 3% 0;
  padding: 15px;
  border-top: solid 5px #8a5f2e;
  border-bottom: solid 5px #8a5f2e;
} */
.topics-item-txt h2 {
  display: block;
  font-size: 2vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.1vw;
  text-align: left;
  color: #8a5f2e;
  margin: 3% 0;
  padding: 4px 20px;
  border-left: solid 15px #8a5f2e;
  border-right: solid 2px #8a5f2e;
  border-top: solid 2px #8a5f2e;
  border-bottom: solid 2px #8a5f2e;
}
.topics-item-txt h3 {
  display: block;
  font-size: 1.6vw;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  margin: 3% 0;
  padding: 10px 20px;
  background-color: #8a5f2e;
}
.topics-item-txt h4 {
  display: block;
  font-size: 1.3vw;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #8a5f2e;
  margin: 2% 0;
  padding: 10px 15px;
  border-bottom: solid 2px #8a5f2e;
}
.topics-item-txt h5 {
  display: block;
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #8a5f2e;
  margin: 3% 0;
  padding: 10px 15px;
}

.topics-item-wrap :where(table, th, td) {
  border: 1px solid #8a5f2e;
}

.availability-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #8a5f2e;
  margin: 0 0 30px;
  padding: 10px 0;
}

.availability-table-title {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  color: #8a5f2e;
  margin: 0;
  padding: 10px 15px;
}
.availability-table-title span {
  font-size: 1.6rem;
}

.availability-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
}

.availability-table th,
.availability-table td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 12px;
}

.availability-table th {
  background-color: #f6f9f0;
  font-weight: bold;
}

.availability-table td {
  font-size: 1.2em;
}

/* 記号カラー */
.circle {
  color: #00a000;
  font-weight: bold;
} /* 〇 */
.triangle {
  color: #ff9900;
  font-weight: bold;
} /* △ */
.cross {
  color: #cc0000;
  font-weight: bold;
} /* ✕ */
.consult {
  color: #333;
  font-size: 0.9em;
} /* 要相談 */

/* スマホ対応 */
@media (max-width: 600px) {
  .availability-table th,
  .availability-table td {
    padding: 10px 0;
    font-size: 1.5rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

/* 凡例 */
.legend {
  margin-top: 20px;
  font-size: 0.9em;
}

.legend span {
  margin-right: 15px;
}

dl.item-availability {
  width: 100%;
  padding: 15px 0;
  margin: 0;
}
dl.item-availability dt {
  float: left;
  width: 20px;
  font-size: 1.5rem;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 4px 0;
  margin: 0;
}
dl.item-availability dd {
  margin-left: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 4px 0;
}

@media (max-width: 1480px) {
  .topics-item-txt h1 {
    letter-spacing: 0;
  }
  .topics-item-txt h2 {
    letter-spacing: 0;
  }
  .topics-item-title {
    font-size: 3rem;
    letter-spacing: 0;
    margin: 0 0 40px;
    padding: 0 0 20px 20px;
  }
  .topics-item-txt {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  .topics-item-txt h4 {
    font-size: 1.6vw;
  }
  .topics-item-txt h5 {
    font-size: 1.6vw;
  }
}
@media (max-width: 990px) {
  .topics-item-txt h1 {
    font-size: 4vw;
  }
  .topics-item-txt h2 {
    font-size: 3vw;
  }
  .topics-item-txt h3 {
    font-size: 2.4vw;
  }
  .topics-item-txt h4 {
    font-size: 1.8rem;
  }
  .topics-item-txt h5 {
    font-size: 1.8rem;
  }
  .second-topics-btn-left a.second-topics-btnitem {
    font-size: 2rem;
  }
}
@media (max-width: 499px) {
  .pagination {
    padding: 10px 0 40px;
  }
  .topics-item-wrap {
    padding: 0 0 40px;
  }
  .topics-item-imgwrap {
    max-width: 90%;
    border-radius: 14px;
  }
  .topics-item-date {
    letter-spacing: 0px;
    padding: 0 0 10px 0px;
  }
  .topics-item-cate ul {
    padding-left: 0px;
    margin-bottom: 10px;
  }
  .topics-item-title {
    font-size: 2.4rem;
    line-height: 1.4;
    margin: 0 0 20px;
    padding: 0 0 20px 0px;
  }
  .topics-item-txt h1 {
    font-size: 1.8rem;
  }
  .topics-item-txt h2 {
    font-size: 1.8rem;
  }
  .topics-item-txt h3 {
    font-size: 1.6rem;
  }
  .topics-item-txt h4 {
    font-size: 1.6rem;
  }
  .topics-item-txt h5 {
    font-size: 1.6rem;
  }
  .topics-item-txt {
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0px;
    padding: 0 0px;
  }
  .second-topicspost-headtext-wrap {
    margin: 0 15px 50px;
  }
  .second-topics-btn-left .arrow {
    top: 45%;
  }
  .second-topics-btn-left a.second-topics-btnitem {
    font-size: 1.8rem;
  }
  .availability-table-title {
    text-align: center;
  }
  .legend span {
    display: inline-block;
  }
}

/* ------------------------------------------------------------------
[recruit.html]
------------------------------------------------------------------- */
.second-recruit-header-img-wrap {
  display: block;
  width: 30%;
}
.second-recruit-contents01 {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0 0 100px;
  background-color: rgba(255, 255, 255, 0.5);
}
.second-recruit-subtitle {
  display: block;
  font-size: 3vw;
  font-weight: 900;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  letter-spacing: 0.2vw;
  text-align: center;
  color: #8a5f2e;
  margin: 4% auto 5%;
  padding: 0;
}
.second-recruit-subtitle br {
  display: none;
}
.second-recruit-youtube-wrap {
  display: block;
  width: 33.333%;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}
.second-recruit-youtube-wrap a {
  position: relative;
  width: calc(100% - 10px);
  display: block;
  margin: 0;
  padding: 0;
  z-index: 1;
  border-radius: 20px;
}
.second-recruit-youtube-wrap a::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.video-youtube-img {
  display: block;
  border: solid 2px #8a5f2e;
  border-radius: 20px;
  overflow: hidden;
}
.mfp-bg {
  background: rgba(142, 191, 31, 0.6);
}

.second-recruit-programs-contents-wrap {
  position: relative;
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 40px;
  padding: 3% 6% 6%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
}
.second-recruit-programs-contents-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}

.second-recruit-programs-contents-wraps {
  position: relative;
  width: calc(100% - 20px);
  height: calc(100% - 40px);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 40px;
  padding: 5% 8% 5%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
}
.second-recruit-programs-contents-wraps::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.second-recruit-programs-subtitles {
  display: block;
  font-size: 1.2vw;
  font-weight: 600;
  color: #8a5f2e;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.second-recruit-programs-subtitles br {
  display: none;
}

.second-recruit-programs__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin: 0;
  padding: 5% 8%;
  text-align: center;
}
.second-recruit-programs-icon {
  display: block;
  font-size: 5vw;
  color: #8ebf1f;
  line-height: 1;
  margin: 0 auto;
  padding: 0;
}
.second-recruit-features-icon {
  display: block;
  width: 30%;
  margin: 0 auto 4%;
  padding: 0;
}
.second-recruit-programs-subtitle {
  display: block;
  font-size: 1.2vw;
  font-weight: 600;
  color: #8a5f2e;
  line-height: 1.4;
  text-align: left;
  margin: 0 0 3%;
  padding: 0;
}

/* 吹き出し本体 Left */
.balloon1 {
  position: relative;
  width: calc(70% - 280px);
  padding: 20px;
  border: solid 2px #8a5f2e;
  border-radius: 20px;
  font-size: 1.2vw;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #8a5f2e;
  background-color: #fff;
  margin-bottom: 4%;
  margin-left: 140px;
  text-align: left;
}

/* 画像配置 */
.balloon1 .icon {
  position: absolute;
  left: -140px;
  top: -30px;
  display: block;
  width: 120px;
}

/* --- 擬似要素：枠線三角形 --- */
.balloon1::before {
  content: "";
  position: absolute;
  left: -19px; /* 枠分ずらす */
  top: 50%;
  margin-top: -17px;
  border-right: 19px solid #8a5f2e; /* 枠線色 */
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}
.balloon1::after {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}

/* 吹き出し本体 Right */
.balloon2 {
  position: relative;
  width: calc(70% - 280px);
  padding: 20px;
  border: solid 2px #8a5f2e;
  border-radius: 20px;
  font-size: 1.2vw;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #8a5f2e;
  background-color: #fff;
  margin-bottom: 4%;
  margin-right: 140px;
  margin-left: calc(30% + 140px);
  text-align: right;
}

/* 画像 - 絶対配置で右上に配置 */
.balloon2 .icon {
  position: absolute;
  right: -140px;
  top: -20px;
  display: block;
  width: 120px;
}

/* --- 擬似要素：枠線三角形 --- */
.balloon2::before {
  content: "";
  position: absolute;
  right: -19px; /* 枠線分外へ */
  top: 50%;
  margin-top: -17px;
  border-left: 19px solid #8a5f2e; /* 枠線色 */
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
}
.balloon2::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: -10px;
  left: -10px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}

.service-recruit-programs-item-wrappers {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 3%;
}
.second-recruit-sub-subtitle-wrap {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 5%;
  text-align: center;
}

/* --- 擬似要素：白い本体三角形 --- */

@media (max-width: 1480px) {
  .second-recruit-header-img-wrap {
    width: 32%;
  }
  .second-recruit-programs__item {
    width: 100px;
    height: 100px;
  }
  .second-recruit-programs-icon {
    font-size: 6.4vw;
  }
  .second-recruit-programs-subtitle {
    font-size: 1.4vw;
  }
  .second-recruit-programs-subtitles {
    font-size: 1.4vw;
  }
  .balloon1 {
    width: calc(80% - 280px);
    font-size: 1.4vw;
    line-height: 1.4;
  }
  .balloon2 {
    width: calc(80% - 280px);
    font-size: 1.4vw;
    line-height: 1.4;
    margin-left: calc(20% + 140px);
  }
}
@media (max-width: 1380px) {
  .second-recruit-header-img-wrap {
    width: 36%;
  }
}
@media (max-width: 1300px) {
  .second-recruit-header-img-wrap {
    width: 40%;
  }
}
@media (max-width: 1200px) {
  .second-recruit-header-img-wrap {
    width: 50%;
  }
  .second-recruit04-subtitle {
    font-size: 2vw;
  }
  .second-recruit-youtube-wrap {
    width: 44%;
  }
  .second-recruit-contents01 {
    padding: 0 0 50px;
  }
  .second-recruit-programs-subtitle {
    font-size: 1.8vw;
  }
  .balloon1 {
    width: calc(90% - 280px);
    font-size: 1.6vw;
  }
  .balloon2 {
    width: calc(90% - 280px);
    font-size: 1.6vw;
    margin-left: calc(10% + 140px);
  }
  .service-recruit-programs-item-wrappers {
    margin-bottom: 0;
  }
  .second-recruit-sub-subtitle-wrap {
    padding-bottom: 0;
  }
}
@media (max-width: 990px) {
  .second-recruit-header-img-wrap {
    width: 60%;
  }
  .second-recruit-subtitle {
    font-size: 6vw;
    line-height: 1.4;
  }
  .second-recruit-subtitle br {
    display: block;
  }
  .second-recruit-contents01 {
    padding: 0 0 100px;
  }
  .second-recruit-youtube-wrap {
    width: 70%;
  }

  .second-recruit-programs-contents-wrap {
    padding: 10px 20px 20px;
  }
  .second-recruit-programs__item {
    width: 100%;
    height: auto;
  }
  .second-recruit-programs-icon {
    font-size: 12vw;
  }
  .second-recruit-programs-subtitle {
    font-size: 3vw;
    text-align: center;
    margin: 0 0 20px;
  }

  .second-recruit-programs-subtitles {
    font-size: 2.4vw;
  }
  .second-recruit-programs-subtitles br {
    display: block;
  }

  .second-recruit04-subtitle {
    font-size: 3vw;
    margin: 0 0 5px;
  }
  .second-recruit04-subtext {
    font-size: 1.8rem;
    font-weight: 600;
    padding: 0 5% 20px;
  }
  .second-recruit04-copy04 {
    font-size: 6vw;
  }
  .balloon1 {
    width: calc(100% - 280px);
    font-size: 2.4vw;
  }
  .balloon1 br {
    display: none;
  }
  .balloon1 .icon {
    position: absolute;
    left: -120px;
    top: -10px;
    display: block;
    width: 100px;
  }
  .balloon2 {
    width: calc(100% - 280px);
    font-size: 2.4vw;
    text-align: left;
    margin-left: 140px;
  }
  .balloon2 br {
    display: none;
  }
  .balloon2 .icon {
    position: absolute;
    right: -120px;
    top: -10px;
    display: block;
    width: 100px;
  }
}
@media (max-width: 499px) {
  .second-recruit-header-img-wrap {
    width: 90%;
  }
  .second-recruit-subtitle {
    font-size: 7.4vw;
  }
  .second-recruit-youtube-wrap {
    width: 90%;
  }
  .second-recruit-programs__item {
    width: 100%;
    height: auto;
    padding: 5% 8% 0;
  }
  .second-recruit-programs-contents-wrap {
    padding: 30px 20px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    border-radius: 10px;
  }
  .second-recruit-programs-icon {
    font-size: 24vw;
  }
  .second-recruit-programs-subtitle {
    font-size: 5.4vw;
  }
  .second-recruit-programs-subtitles {
    font-size: 4.8vw;
  }
  .second-recruit04-title-texts {
    font-size: 2rem;
    margin: 0 0 8%;
  }
  .second-recruit04-img-wrap {
    width: 100%;
    margin: 0 auto 8%;
  }
  .second-recruit04-subtitle {
    font-size: 7.2vw;
    margin: 0 0 5px;
  }
  .second-recruit04-copy04::after {
    width: 50px;
    height: 50px;
  }
  .service-recruit-programs-item-wrappers {
    margin-left: 0px;
    margin-right: 0px;
  }
  .balloon1 {
    width: calc(90% - 100px);
    font-size: 1.6rem;
    padding: 20px;
    margin-bottom: 5%;
    margin-left: 100px;
  }
  .balloon1 .icon {
    top: 10px;
    left: -100px;
    width: 80px;
  }
  .balloon1::before {
    top: 60px;
  }
  .balloon2 {
    width: calc(100% - 140px);
    font-size: 1.6rem;
    padding: 20px;
    margin-bottom: 5%;
    margin-left: 40px;
    margin-right: 100px;
  }
  .balloon2 .icon {
    top: 10px;
    right: -100px;
    width: 80px;
  }
  .balloon2::before {
    top: 60px;
  }
}

/*tabの形状*/
.tab {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.tab li {
  display: flex; /* 新たに中身の高さ調整用 */
  align-items: center; /* 子要素を中央揃え */
  justify-content: center;
  padding: 0;
  border-radius: 20px 20px 0 0;
  border-top: solid 2px #8a5f2e;
  border-left: solid 2px #8a5f2e;
  border-right: solid 2px #8a5f2e;
  background-color: #fff;
}
.tab li.left-tab {
  width: calc(50% - 5px);
  margin: 0 5px 0 0;
}
.tab li.center-tab {
  width: calc(50% - 10px);
  margin: 0 5px;
}
.tab li.right-tab {
  width: calc(50% - 5px);
  margin: 0 0 0 5px;
}
.tab li a {
  display: flex; /* 新たに中身の高さ調整用 */
  align-items: center; /* 子要素を中央揃え */
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.6vw;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
  letter-spacing: 0.1vw;
  text-align: center;
  color: #8a5f2e;
  margin: 0;
  padding: 20px 10px;
  border-radius: 20px 20px 0 0;
}
.tab li.left-tab a {
  background-color: #f4fae4;
}
.tab li.right-tab a {
  background-color: #deeef6;
}
.tab li a span {
  font-size: 1.1vw;
}
.tab li a span br {
  display: none;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  color: #8a5f2e;
}
/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  margin-bottom: 3%;
  padding: 5%;
  border-radius: 0 0 20px 20px;
  border-bottom: solid 2px #8a5f2e;
  border-left: solid 2px #8a5f2e;
  border-right: solid 2px #8a5f2e;
}
/*エリアの表示非表示と形状*/
#nurse.area {
  background-color: #f4fae4;
}
#therapist.area {
  background-color: #deeef6;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.second-recruit-tabtitle {
  display: block;
  width: 100%;
  font-size: 3.6rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  color: #333;
  text-align: center;
  margin: 0 0 4%;
  padding: 0;
}
.second-recruit-tableads {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 4%;
  padding: 0;
}

.second-recruit-tabconwrap {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 30px;
  padding: 5%;
  background-color: #fff;
  border-radius: 20px;
}
.second-recruit-tabwrap {
  display: flex;
  align-items: center;
}
.second-recruit-tabstep {
  margin-bottom: 0;
}
.second-recruit-tabstep span.s01 {
  display: block;
  position: relative;
  color: #2494df;
  font-size: 10rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  padding-left: 50px;
}
.second-recruit-tabstep span.s01::after {
  content: "Step";
  color: #2494df;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 40%;
}

.second-recruit-tabsubtitle {
  display: block;
  font-size: 1.6vw;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1;
  text-align: left;
  color: #2494df;
  margin: 0 0 15px;
  padding: 0;
}
.second-recruit-tabsubtitle br {
  display: none;
}
.second-recruit-tabsubtext {
  display: block;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: left;
  margin: 0;
  padding: 0;
}
.second-recruit-fukurititle {
  display: block;
  font-size: 3rem;
  font-weight: 600;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  margin: 0 0 30px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #f7a0ba;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}
.second-recruit-fukurititle span {
  display: block;
  font-size: 2rem;
  padding: 0;
}
.second-recruit-conbtn-wrapper {
  margin-top: 5%;
}

.col-lg-20p {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 10px;
  padding-right: 10px;
}

@media (max-width: 1480px) {
  .tab li a {
    padding: 20px 15px;
  }
  .second-recruit-tabstep span.s01 {
    font-size: 7.2vw;
  }
}
@media (max-width: 1380px) {
  .tab li a {
    padding: 10px 10px;
  }
}
@media (max-width: 1300px) {
  .col-lg-20p {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1200px) {
  .second-recruit-tabconwrap {
    border-radius: 10px;
  }
  .second-recruit-tabtitle {
    font-size: 3vw;
  }
  .second-recruit-tabsubtitle {
    font-size: 1.8vw;
    margin: 0 0 10px;
  }
  .second-recruit-tabsubtext {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
  }
  .second-recruit-tabsubtext br {
    display: none;
  }
  .second-recruit-fukurititle {
    font-size: 2.4vw;
  }
}
@media (max-width: 990px) {
  .second-recruit-tabstep span.s01 {
    padding-top: 20px;
    padding-left: 0;
  }
  .second-recruit-tabstep span.s01::after {
    left: 20%;
    top: 0;
  }
  .second-recruit-tabsubtitle {
    font-size: 3.6vw;
    line-height: 1.2;
    margin: 0 0 10px;
  }
  .second-recruit-fukurititle {
    font-size: 3.6vw;
    margin: 20px 0 20px;
    padding: 10px 5%;
  }
  .second-recruit-fukurititle span {
    font-size: 3vw;
  }
  .tab li.active a {
    font-size: 2.4vw;
  }
  .tab li.active a span {
    font-size: 1.2rem;
  }
}
@media (max-width: 749px) {
  .second-recruit-tabstep span.s01::after {
    left: 10%;
  }
}
@media (max-width: 499px) {
  .tab li {
    border-radius: 10px 10px 0 0;
  }
  .tab li a {
    flex-direction: column;
    font-size: 1.5rem;
    padding: 10px 0;
    border-radius: 10px 10px 0 0;
  }
  .tab li a span {
    display: block;
    font-size: 1rem;
  }
  .tab li.active a {
    font-size: 1.8rem;
  }
  .tab li.active a span {
    font-size: 1rem;
  }
  .area {
    padding: 10% 5%;
  }
  .second-recruit-tabtitle {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 8%;
  }
  .second-recruit-tabtitle br {
    display: none;
  }
  .second-recruit-tableads {
    font-size: 2rem;
    margin: 0 0 8%;
  }
  .second-recruit-tabwrap {
    display: block;
    text-align: center;
  }
  .second-recruit-tabconwrap {
    padding: 10% 5%;
  }
  .second-recruit-tabstep span.s01 {
    font-size: 7.2rem;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 0;
  }
  .second-recruit-tabstep span.s01::after {
    left: 0;
    top: 0;
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
  }
  .second-recruit-tabsubtitle {
    font-size: 2.4rem;
    line-height: 1.3;
    text-align: center;
    margin: 0 0 10px;
  }
  .second-recruit-tabsubtitle br {
    display: block;
  }
  .second-recruit-tabsubtext {
    text-align: center;
    margin: 0 0 15px;
  }
  .second-recruit-fukurititle {
    font-size: 2.4rem;
    margin: 10px 0 10px;
    padding: 10px 5%;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  }
  .second-recruit-fukurititle span {
    font-size: 1.6rem;
  }
  .home-about-copy02 span.rec-messfin {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 20px 0 0;
  }
  .home-about-copy02 span.rec-messfin br {
    display: none;
  }
  .col-lg-20p {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.recruit-second-guide-title-w {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #8a5f2e;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 5%;
  padding: 0;
}
.recruit-second-guide-title-w span {
  display: block;
  font-size: 1.2vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 20px 0 0;
}

table.guideline {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 15px;
}
table.guideline th,
table.guideline td {
  padding: 30px 20px;
}
table.guideline th {
  position: relative;
  width: 25%;
  color: #8a5f2e;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background-color: #fce2eb;
  border-radius: 8px 0 0 8px;
  overflow: visible;
}
table.guideline th:after {
  content: " ";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  pointer-events: none;
  border: solid transparent;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #fce2eb;
  border-width: 10px;
  margin-top: -10px;
}
table.guideline td {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  color: #8a5f2e;
  padding-left: 40px;
  background-color: #fff;
  border-radius: 0 8px 8px 0;
}
table.guideline td span.caution {
  display: block;
  font-size: 1.6rem;
  padding: 10px 0 0;
}

dl.guideline-content-wrap {
  width: 100%;
  padding: 0;
  margin: 0;
}
dl.guideline-content-wrap dt {
  float: left;
  width: 4%;
  font-size: 1.8rem;
  font-weight: 400;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 5px 0;
  margin: 0;
}
dl.guideline-content-wrap dd {
  margin-left: 4%;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 5px 0;
}
dl.guideline-content-wrap dd span.caution2 {
  display: block;
  font-size: 1.6rem;
  padding: 5px 0 10px;
}

dl.guideline-content-wrap01 {
  width: 100%;
  padding: 0;
  margin: 10px 0;
}
dl.guideline-content-wrap01 dt {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 5px 0;
  margin: 0;
}
dl.guideline-content-wrap01 dd {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  color: #8a5f2e;
  padding: 5px 0;
}

@media (max-width: 1480px) {
  .recruit-occupation-text-w {
    font-size: 1.6rem;
  }
  .recruit-occupation-text-w span {
    font-size: 1.4rem;
  }
  table.guideline th {
    font-size: 1.6rem;
  }
  table.guideline td {
    font-size: 1.6rem;
  }
  table.guideline td span.caution {
    font-size: 1.4rem;
  }
  dl.guideline-content-wrap dt {
    font-size: 1.6rem;
  }
  dl.guideline-content-wrap dd {
    font-size: 1.6rem;
  }
  dl.guideline-content-wrap dd span.caution2 {
    font-size: 1.4rem;
  }
  dl.guideline-content-wrap01 dt {
    font-size: 1.6rem;
  }
  dl.guideline-content-wrap01 dd {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  .recruit-contents-texts-w {
    font-size: 1.8rem;
  }
}
@media (max-width: 990px) {
  .recruit-contents-leads-w {
    padding: 4% 0 0;
  }
  .recruit-contents-texts-w {
    text-align: left;
  }
  .recruit-contents-texts-w br {
    display: none;
  }
  .recruit-occupation-title-w span {
    font-size: 9.6vw;
    margin: 0 auto 10px;
  }
  .recruit-occupation-title-w {
    font-size: 3vw;
    margin: 0 auto 20px;
  }
  .recruit-occupation-text-w {
    margin: 0 auto 6%;
  }
  .recruit-second-guide-title-w {
    font-size: 3.6rem;
  }
  .recruit-second-guide-title-w span {
    font-size: 1.6rem;
    padding: 10px 0 0;
  }
}
@media (max-width: 499px) {
  section.recruit-contents-section-w {
    padding: 15% 8% 12%;
  }
  .recruit-contents-leads-w {
    font-size: 2.4rem;
  }
  .recruit-contents-texts-w {
    font-size: 1.6rem;
  }
  .recruit-occupation-title-w {
    font-size: 2.4rem;
  }
  .recruit-occupation-title-w span {
    font-size: 7.2rem;
  }
  table.guideline th {
    position: relative;
    width: 20%;
    font-size: 1.6rem;
    min-height: 220px;
  }
  table.guideline th span {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  table.guideline td {
    font-size: 1.5rem;
  }
  table.guideline th {
    padding: 20px 10px 20px 10px;
  }
  table.guideline td {
    padding: 20px 10px 20px 20px;
  }
  dl.guideline-content-wrap dt {
    width: 20px;
    font-size: 1.5rem;
  }
  dl.guideline-content-wrap dd {
    margin-left: 20px;
    font-size: 1.5rem;
  }
  dl.guideline-content-wrap01 dt {
    font-size: 1.5rem;
  }
  dl.guideline-content-wrap01 dd {
    font-size: 1.5rem;
  }
}

.contact-recruit-section {
  position: relative;
  width: calc(92% - 42px);
  height: auto;
  text-align: center;
  margin: 0 auto 40px;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  border-radius: 20px;
}
.contact-recruit-section::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.contact-recruit-section-content {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 4% 5% 0 5%;
  border-radius: 0;
}
.contact-leads.recruit {
  font-size: 1.6vw;
  line-height: 1.5;
  text-align: center;
  color: #8a5f2e;
  margin: 0 0 4%;
}
a.contact-tel {
  display: block;
  font-size: 3.5vw;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0;
  padding: 0;
}
a.contact-tel.recruit {
  color: #8a5f2e;
}
.contact-tel-uke {
  display: block;
  font-size: 1.5rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0;
  padding: 10px 0 0;
}
.contact-tel-uke.recruit {
  color: #8a5f2e;
}
.contact-tel-uke.recruit br {
  display: none;
}
.footer-recruit-center-btn {
  display: block;
  width: 40%;
  margin: 2% auto 5%;
  padding: 0;
}

@media (max-width: 990px) {
  .second-recruit-headtitle-wrap {
    display: block;
    height: auto;
    margin: 0 15px 30px;
    padding: 5% 5%;
    text-align: center;
  }
  .second-recruit-headtitle-wrap .second-recruit-headtitle {
    font-size: 3vw;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .second-recruit-copy-wrapper {
    padding: 5% 0;
  }
  .second-recruit-copy-wrapper .second-recruit-copy-ja {
    font-size: 2.8vw;
    color: #fff;
    letter-spacing: 0.2vw;
  }
  .second-recruit-head-img {
    width: 70%;
    margin: 0 auto;
  }

  .contact-recruit-section {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    margin: 0 auto 40px;
    padding: 20px 0 0;
    border: solid 2px #8a5f2e;
    border-radius: 20px;
  }
  .second-recruit-contitles-wrap {
    height: auto;
    margin: 0 15px 30px;
    padding: 8% 5%;
  }
  .second-recruit-contitles {
    display: block;
    font-size: 3vw;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .second-recruit-contitles br {
    display: none;
  }
  .second-recruit-conimgs {
    width: 70%;
    margin: 5% auto;
  }
  .second-recruit-context {
    display: block;
    font-size: 1.8rem;
    line-height: 2;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .second-recruit-context br {
    display: none;
  }

  .second-recruit-sectitle-wrap {
    display: block;
    height: auto;
    margin: 0 15px 30px;
    padding: 5% 5%;
  }
  .second-recruit-sectitle {
    font-size: 3vw;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .second-recruit-contitle-wrap {
    height: auto;
    margin: 0 15px 30px;
    padding: 8% 5% 5%;
  }
  .second-recruit-contitle {
    display: block;
    font-size: 2.6vw;
    line-height: 1.6;
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .second-recruit-contitle br.br {
    display: none;
  }
  .second-recruit-conimg {
    width: 70%;
    margin: 5% auto 0;
  }
  .second-recruit-work-img {
    width: 50%;
    margin: 4% auto 0;
  }
  .second-recruit-stafftitle-wrap {
    display: block;
    height: auto;
    margin: 0 15px 30px;
    padding: 5% 5%;
  }
  .second-recruit-staff-namewrap {
    display: block;
    padding-left: 20px;
  }
  .second-recruit-staffyear-wrap {
    font-size: 1.6rem;
    padding: 10px 0 20px;
  }
  .second-recruit-staff-subleads {
    display: block;
    font-size: 2.4vw;
    line-height: 1.5;
    margin: 0 0 30px;
  }
  .second-recruit-staff-subleads br {
    display: block;
  }
  .second-recruit-staffphoto-wrap {
    margin: 0 0 5%;
  }
  .second-recruit-staff-textswrap-left {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .second-recruit-staff-textswrap-right {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .contact-leads.recruit {
    font-size: 2.4vw;
  }
  .contact-leads.recruit br {
    display: block;
  }
  .footer-recruit-center-btn {
    width: 70%;
    margin: 5% auto 10%;
  }
  a.contact-tel.recruit {
    font-size: 4.8vw;
    color: #8a5f2e;
  }
}
@media (max-width: 499px) {
  .contact-recruit-section {
    padding: 30px 0 0;
  }
  .second-recruit-headtitle-wrap {
    padding: 20px 5%;
  }
  .second-recruit-headtitle-wrap .second-recruit-headtitle {
    font-size: 6vw;
  }
  .second-recruit-copy-wrapper {
    padding: 20px 5%;
  }
  .second-recruit-copy-wrapper .second-recruit-copy-ja {
    font-size: 5.4vw;
    line-height: 1.5;
  }
  .second-recruit-copy-wrapper .second-recruit-copy-ja br {
    display: block;
  }
  .second-recruit-headtext-wrap {
    padding: 30px 7%;
  }
  .second-recruit-head-img {
    width: 100%;
  }
  .second-recruit-contitles-wrap {
    padding: 30px 7%;
  }
  .second-recruit-contitles {
    font-size: 5.4vw;
  }
  .second-recruit-contitles br {
    display: block;
  }
  .second-recruit-conimgs {
    width: 90%;
    margin: 5% auto;
  }
  .second-recruit-context {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .second-recruit-sectitle-wrap {
    padding: 20px 5%;
  }
  .second-recruit-sectitle {
    font-size: 6vw;
  }
  .second-recruit-contitle-wrap {
    padding: 30px 8% 20px;
  }
  .second-recruit-contitle {
    font-size: 5.4vw;
    text-align: left;
  }
  .second-recruit-contitle br {
    display: none;
  }
  .second-recruit-conimg {
    width: 90%;
  }
  .second-service-leadtext br.br {
    display: none;
  }
  .second-recruit-work-img {
    width: 70%;
  }
  .second-recruit-staffcontents-wrap {
    padding: 30px 7%;
  }
  .second-recruit-staff-subleads {
    font-size: 4.8vw;
    padding: 10px 10px;
    text-align: left;
  }
  .second-recruit-staff-subleads br {
    display: none;
  }
  .second-recruit-staffphoto-wrap {
    margin: 0 0 20px;
  }

  section.contact-recruit-section {
    width: 88%;
    margin: 0 auto 100px;
    padding: 20px 0 0;
  }
  .contact-recruit-section-content {
    padding: 0 9%;
  }
  .contact-leads.recruit {
    font-size: 1.6rem;
    text-align: left;
    margin: 0 0 30px;
  }
  .contact-leads.recruit br {
    display: none;
  }
  a.contact-tel.recruit {
    font-size: 8.4vw;
  }
  .contact-tel-uke.recruit {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .contact-tel-uke.recruit br {
    display: block;
  }
  .footer-recruit-center-btn {
    width: 100%;
    margin: 20px auto 40px;
  }
}

.linkbutton-footer {
  display: block;
  position: relative;
  width: 80%;
  height: 60px;
  text-align: center;
  margin: 50px auto 0;
  padding: 0 20px;
  background-color: #fff;
  border: solid 2px #8a5f2e;
  line-height: 54px;
  border-radius: 10px;
  overflow: hidden;
}
.linkbutton-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #8a5f2e;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.linkbutton-footer:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.linkbutton-footer .text {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  color: #8a5f2e;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-footer:hover .text {
  color: #fff;
}
.linkbutton-footer .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #8a5f2e;
  position: absolute;
  right: 20px;
  top: 45%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-footer:hover .arrow {
  border-color: transparent transparent transparent #fff;
  right: 25px;
}

@media (max-width: 1200px) {
  .linkbutton-footer {
    line-height: 55px;
    padding: 0 10px;
  }
  .linkbutton-footer .text {
    font-size: 1.6rem;
  }
}
@media (max-width: 990px) {
  .linkbutton-footer {
    padding: 0 20px;
  }
  .linkbutton-footer .text {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 499px) {
  .linkbutton-footer {
    width: 100%;
    padding: 0 20px;
    text-align: left;
  }
  .linkbutton-footer .text {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* ------------------------------------------------------------------
[contact.html]
------------------------------------------------------------------- */
.second-contact-headtitle-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  margin: 0 15px;
  padding: 15% 5%;
  background-color: #fbb305;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.second-contact-headtitle-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #fceabf;
  z-index: -1;
}
.second-contact-subtitle-wrap {
  position: relative;
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 30px;
  padding: 4% 5%;
  background-color: #fbb305;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.second-contact-subtitle-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #fceabf;
  z-index: -1;
}
.second-contact-subcontents-wrap {
  position: relative;
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 30px;
  padding: 5% 5%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}
.second-contact-subcontents-wrap::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}

.second-contact-titles-img {
  display: block;
  width: 20%;
  margin: 0 auto 2%;
  padding: 0;
}

.second-contact-subcontents-text {
  display: block;
  font-size: 1.1vw;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.6;
  color: #8a5f2e;
  text-align: center;
  margin: 0 0 5%;
  padding: 0;
}
.second-contact-subcontents-text-footer {
  display: block;
  font-size: 1.1vw;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  line-height: 1.6;
  color: #8a5f2e;
  text-align: center;
  margin: 5% 0 0;
  padding: 0;
}
.second-contact-tel-wrap {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}
a.second-contact-tel {
  display: block;
  font-size: 3.5vw;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0;
  padding: 0;
}
.second-contact-tel-uke {
  display: block;
  font-size: 1.5rem;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0;
  padding: 10px 0 0;
}
.second-contact-tel-uke br {
  display: none;
}

@media (max-width: 1200px) {
  .second-contact-subcontents-text-footer {
    font-size: 1.6rem;
  }
  .second-contact-subcontents-text {
    font-size: 1.6rem;
  }
}
@media (max-width: 749px) {
  .second-contact-subcontents-text-footer {
    font-size: 1.5rem;
  }
  .second-contact-subcontents-text {
    font-size: 1.5rem;
  }
}

.second-contact-contents-section {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 15% 5%;
  margin: 0;
  background-color: #fff;
}

.second-contact-title {
  display: block;
  width: 40px;
  height: 250px;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: #000;
  text-align: left;
  margin: 0 auto 80px;
  padding: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media (max-width: 1480px) {
  .second-contact-contents-section {
    padding: 0 10% 5%;
  }
  .second-contact-title {
    width: 36px;
    height: 230px;
    font-size: 3.6rem;
    margin: 0 auto 60px;
  }
}
@media (max-width: 990px) {
  .second-contact-headtitle-wrap {
    display: block;
    height: auto;
    margin: 0 15px 30px;
    padding: 5% 5%;
  }
  .second-contact-subcontents-text {
    font-size: 2vw;
    margin: 0 0 30px;
  }
  .second-contact-subcontents-text br {
    display: none;
  }
  .second-contact-titles-img {
    width: 30%;
  }
  a.second-contact-tel {
    font-size: 6vw;
  }
}
@media (max-width: 749px) {
  .second-contact-title {
    width: 30px;
    height: 190px;
    font-size: 3rem;
    margin: 0 auto 10px;
  }
}
@media (max-width: 499px) {
  .second-contact-headtitle-wrap {
    padding: 20px 5%;
  }
  .second-service-headtitle {
    line-height: 1.4;
  }
  .second-service-headtitle br {
    display: block;
  }

  .second-contact-titles-img {
    width: 50%;
  }
  .second-contact-subcontents-wrap {
    width: 100%;
    margin: 0 0 30px;
    padding: 30px 7%;
  }
  .second-contact-subcontents-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0 0 30px;
    text-align: left;
  }
  a.second-contact-tel {
    font-size: 8.4vw;
  }
  .second-contact-tel-uke {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .second-contact-tel-uke br {
    display: block;
  }
  .second-contact-contents-section {
    padding: 0 8% 50px;
  }
  .second-contact-subtitle-wrap {
    padding: 30px 5%;
    background-color: #fbb305;
    border-radius: 20px;
    border: solid 2px #8a5f2e;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
  }
}

h2.contact-detail-text {
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.8;
  padding: 50px 0 0;
  margin: 0;
  text-align: center;
}

p.contacts-txt-title {
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 0 50px;
  margin: 0;
  text-align: center;
}
p.contacts-txt-title br {
  display: none;
}

p.contacts-txt-titles {
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  text-align: center;
}
p.contacts-txt-title-name {
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  padding: 0 0 20px;
  margin: 0;
  text-align: center;
}
p.contacts-txt-title-address {
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 0 0 10px;
  margin: 0;
  text-align: center;
}
.contact-01-wrap {
  width: 80%;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  background-color: #fff;
}
.item-contacts-l {
  font-size: 7.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  color: #000;
  margin: 0;
  padding: 0 0 10px;
  text-align: center;
}
.item-contacts-l a {
  font-size: 7.2rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #000;
}
.item-contacts-l-teltime {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  color: #000;
  margin: 0;
  padding: 0 0 40px;
  text-align: center;
}
.item-contacts-r {
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1;
  color: #000;
  margin: 0;
  padding: 0 0 10px;
  text-align: left;
}
p.contacts-address {
  display: block;
  width: 100%;
  color: #109954;
  font-size: 1.6rem;
  font-family: "Noto Sans Japanese", sans-serif;
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 0;
  margin: 0 0 30px;
}
p.contacts-address span {
  display: block;
  width: 100%;
  color: #109954;
  font-size: 1.6rem;
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
}
@media (max-width: 1480px) {
  p.contacts-txt-title {
    font-size: 1.8rem;
  }
  p.contacts-address {
    font-size: 1.4rem;
  }
}
@media (max-width: 1300px) {
  h2.contact-detail-text {
    font-size: 1.6rem;
    letter-spacing: 1px;
    line-height: 1.8;
    padding: 40px 0 0;
  }
}
@media (max-width: 1200px) {
  h2.contact-detail-text {
    padding: 30px 0 0;
  }
}
@media (max-width: 990px) {
  .contact-lead {
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 0 0 50px;
  }
  p.contacts-txt-titles {
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 0 0 50px;
  }
}
@media (max-width: 749px) {
  h2.contact-detail-text {
    font-size: 1.5rem;
  }
  .contact-title01-main {
    width: 220px;
    font-size: 2rem;
    letter-spacing: 10px;
    padding: 10px 0;
  }
  .contact-lead {
    font-size: 1.6rem;
    letter-spacing: 1px;
    padding: 0 10% 50px;
  }
  p.contacts-txt-titles br {
    display: none;
  }
}
@media (max-width: 499px) {
  h2.contact-detail-text {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 20px 15px 0;
    text-align: left;
  }
  h2.contact-detail-text br {
    display: none;
  }
  .contact-lead {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 10% 30px;
    text-align: left;
  }
  .contact-lead br {
    display: none;
  }
  p.contacts-txt-titles {
    font-size: 1.6rem;
    letter-spacing: 0px;
    padding: 0 0 40px;
    text-align: left;
  }
  .item-contacts-l a {
    font-size: 3.6rem;
  }
  .item-contacts-l {
    font-size: 3.6rem;
    padding: 0 0 10px;
    text-align: center;
  }
  .item-contacts-l i {
    font-size: 3.6rem;
  }
  .item-contacts-l-teltime {
    font-size: 1.3rem;
    padding: 0 0 30px;
  }
  .item-contacts-r {
    font-size: 2.4rem;
    padding: 0 0 20px;
    text-align: center;
  }
  p.contacts-txt-title br {
    display: none;
  }
  p.contacts-txt-title-name {
    font-size: 1.6rem;
  }
  p.contacts-txt-title-address {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  p.contacts-txt-title {
    font-size: 1.6rem;
    letter-spacing: 0px;
    line-height: 1.6;
    padding: 30px 0;
    text-align: left;
  }
  p.contacts-txt-title br {
    display: none;
  }
  p.contacts-txt-titles {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 0 0 20px;
    text-align: left;
  }
  p.contacts-txt-titles br {
    display: none;
  }
  p.contacts-address {
    font-size: 1.4rem;
    letter-spacing: 0px;
  }
  p.contacts-address span {
    font-size: 1.5rem;
    padding: 0 0 10px 0;
  }
  dl.item-contacts {
    width: 100%;
    padding: 30px 0;
  }
  dl.item-contacts dd {
    font-size: 2.4rem;
  }
}
@media (max-width: 350px) {
  dl.item-contacts dt {
    width: 40px;
    font-size: 2.4rem;
  }
  dl.item-contacts dd {
    margin-left: 40px;
    font-size: 2.4rem;
  }
  p.contacts-address {
    font-size: 1.2rem;
  }
}

/* ------------------------------------------------------------------
[Second Contact Innner]
------------------------------------------------------------------- */
.contact-inner {
  width: 90%;
  font-size: 1.8rem;
  color: #8a5f2e;
  line-height: 2;
  text-align: left;
  margin: 0 auto;
  padding: 0;
}
/* txt */
.tell {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 50px;
}
.tell span.num {
  font-size: 4.8rem;
  font-weight: 600;
}
.tell span.time {
  font-size: 1.6rem;
}
.contact-txt001 {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3%;
}
.contact-txt001 br {
  display: none;
}
.contact-txt01 {
  margin-bottom: 2em;
}
.contact-txt02 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2em;
}
.contact-txt02 span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1em;
}
.contact-txt03 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5em;
}
em {
  color: #d63638;
  font-style: normal;
}

/* CF7標準エラーテキスト */
.wpcf7-not-valid-tip,
.wpcf7-spinner {
  display: none !important;
}

.error-message {
  position: absolute;
  margin-top: 4px;
  color: #d63638;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0;
  animation: slideIn 0.2s ease-out forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-list textarea.error {
  box-shadow: 0 0 0 1px rgba(231, 76, 60, 1);
}
/* エラー状態のフィールド */
.form-list input.error,
.form-list textarea.error {
  box-shadow: 0 0 0 1px rgba(231, 76, 60, 1);
}

.contact-inner dl[class*="Block"] dd {
  margin-bottom: 4rem;
}
.contact-inner dl[class*="Block"] dd p {
  margin-bottom: initial;
}

/* --------------------------------------
	itemBlock
----------------------------------------*/
.itemBlock {
  margin-bottom: 30px;
  line-height: 1;
  font-size: 1.6rem;
}
.itemBlock .radios {
  display: grid;
  row-gap: 16px;
}
.itemBlock .title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}
.itemBlock p {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
}
.itemBlock label {
  cursor: pointer;
  display: block;
}
.itemBlock label:after {
  content: "";
  clear: both;
  display: block;
}
.itemBlock label input {
  float: left;
  font-size: 1.8rem;
}
.itemBlock label input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0 4px 0 0;
}
.itemBlock label p {
  float: left;
  padding: 0 0 0 4px;
  margin: 0;
  width: calc(100% - 24px);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}

/* --------------------------------------
	contentsBlock
----------------------------------------*/
.contentsBlock {
  line-height: 1.5;
  margin-bottom: 30px;
}
.contentsBlock .title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}
.contentsBlock .title span {
  font-size: 1.8rem;
}

/* --------------------------------------
	addressBlock
----------------------------------------*/
.addressBlock {
  margin-bottom: 30px;
  line-height: 1.5;
  font-size: 1.6rem;
}
.addressBlock .title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
}
.addressBlock p {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.addressBlock p span {
  font-size: 1.4rem;
  font-weight: 400;
}

/* --------------------------------------
	privacyBlock
----------------------------------------*/
.privacyBlock {
  line-height: 2;
  font-size: 1.6rem;
  margin-bottom: 60px;
}
.privacyBlock .title p {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.privacyBlock dd p + p {
  margin-top: 4px;
}
.privacyBlock label {
  cursor: pointer;
  display: block;
}
.privacyBlock label:after {
  content: "";
  clear: both;
  display: block;
}
.privacyBlock label input {
  float: left;
  font-size: 1.6rem;
}
.privacyBlock label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 6px 4px 0 0;
}
.privacyBlock p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}
.privacyBlock label p {
  float: left;
  padding: 0 0 0 4px;
  margin: 0;
  width: calc(100% - 24px);
  font-size: 1.8rem;
  line-height: 1.2;
}
.privacyBlock a {
  text-decoration: underline;
  font-weight: 500;
  color: #8a5f2e;
}
.privacyBlock a:hover {
  text-decoration: none;
}

/* --------------------------------------
	form
----------------------------------------*/
.form-control-w20p {
  display: inline-block;
  width: 10em;
  height: 34px;
  padding: 6px 12px;
  font-size: 1.4rem;
  line-height: 1.42857143;
  color: #8a5f2e;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control-w20p:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.addressBlock input[type="text"],
.addressBlock input[type="email"] {
  font-size: 1.6rem;
  font-weight: 400;
  padding-right: 6px;
  padding-left: 6px;
  margin-right: 10px;
  color: #000;
  display: inline-block;
  border-color: #333;
  border-radius: 4px;
}
.contentsBlock textarea {
  font-size: 1.6rem;
  font-weight: 400;
  padding-right: 6px;
  padding-left: 6px;
  margin-right: 10px;
  color: #000;
  display: inline-block;
  height: 8em;
  border-color: #333;
  border-radius: 8px;
}
.itemBlock select {
  height: 38px;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 6px 6px 10px 6px;
  margin-right: 10px;
  color: #8a5f2e;
  display: inline-block;
  border-color: #333;
}
.itemBlock label {
  font-weight: normal;
  color: #8a5f2e;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
.itemBlock label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0 0 0 0;
}

/* --------------------------------------
	Left Side  dl.contact-use-w
----------------------------------------*/
dl.contact-use-w {
  width: 100%;
  padding: 0;
  margin: 0;
}
dl.contact-use-w dt {
  float: left;
  width: 20px;
  font-size: 1.8rem;
  color: #000;
  text-align: left;
  line-height: 1.2;
  padding: 0 0 10px 0;
  margin: 0;
}
dl.contact-use-w dd {
  margin-left: 24px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.2;
  padding: 0 0 10px 0;
}

/* --------------------------------------
	Left Side  tel
----------------------------------------*/
.tell p.num {
  font-size: 6rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.tell p.time {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.tell p.tel-txt {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 10px 0 20px 0;
  margin: 0;
}
a.telcall {
  display: none;
}

/* --------------------------------------
	confirmBlock
----------------------------------------*/
.confirmBlock {
  text-align: center;
  line-height: 1;
}
.confirmBlock .submit {
  width: fit-content;
  margin: 0 auto;
  font-size: 1.8rem;
  padding-block: 0;
}
.confirmBlock .submit p {
  position: relative;
  margin: initial;
}
.confirmBlock .submit p::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 40px;
  translate: 0 -50%;
  color: #fff;
  font-family: "Font Awesome 5 Free"; /* 4の場合は "FontAwesome" */
  font-weight: 900;
}
/* .confirmBlock .submit .reset {
  background-color: #c9c9c9;
  color: #434343;
  border: none;
  text-decoration: none;
  padding: 15px 40px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.confirmBlock .submit li .reset:hover {
  background-color: #000;
  color: #fff;
  cursor: pointer;
} */
.confirmBlock .submit .confirm-button {
  display: inline-block;
  position: relative;
  border-radius: 2px;
  border: none;
  color: #f1f1f1;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 0 auto;
  padding: 30px 80px;
  background: #8ebf1f;
  border-radius: 8px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.confirmBlock .submit .confirm-button:hover {
  background-color: #678917;
  color: #fff;
  border: none;
  cursor: pointer;
}
input[type="file"] {
  display: block;
}
@media (max-width: 1480px) {
  .itemBlock .title {
    font-size: 2rem;
  }
  .contentsBlock .title {
    font-size: 2rem;
  }
  .addressBlock .title {
    font-size: 2rem;
  }
}
@media (max-width: 1300px) {
  .headline-inline .headline-contact01 {
    font-size: 1.6rem;
  }
  .headline-inline .headline-contact02 {
    font-size: 1.6rem;
  }
  .itemBlock .title {
    font-size: 1.6rem;
  }
  .contentsBlock .title {
    font-size: 1.6rem;
  }
  .contentsBlock .title span {
    font-size: 1.6rem;
  }
  .addressBlock .title {
    font-size: 1.6rem;
  }
  .privacyBlock .title {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  .contact-inner {
    width: 100%;
    padding: 5% 0 0;
  }
  .tell p.num {
    font-size: 4.9rem;
  }
  .tell p.time {
    font-size: 1.4rem;
  }
  .tell p.tel-txt {
    font-size: 1.4rem;
  }
  .contact-txt02 {
    font-size: 1.4rem;
  }
}
@media (max-width: 990px) {
  .contact-inner {
    font-size: 1.4rem;
    padding: 10px 0 0;
  }
  .contact-txt001 {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .contact-txt03 {
    font-size: 1.4rem;
  }
  .headline-inline .headline-contact01 {
    font-size: 2rem;
    text-align: center;
  }
  .headline-inline .headline-contact02 {
    font-size: 2rem;
    text-align: center;
  }
  .tell {
    margin-bottom: 2em;
  }
  .tell span.num {
    font-size: 3.2rem;
  }
  .tell span.time {
    font-size: 1.4rem;
  }
  .contact-txt01 {
    margin-bottom: 1em;
  }
  .contact-txt02 {
    font-size: 1.4rem;
  }
  .contact-txt02 span {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
  .itemBlock .title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .contentsBlock {
    font-size: 1.6rem;
  }
  .contentsBlock .title span {
    font-size: 1.3rem;
  }
  .privacyBlock {
    margin-bottom: 20px;
  }
  .addressBlock .title {
    font-size: 1.6rem;
  }
  .privacyBlock .title {
    font-size: 1.8rem;
  }
  .privacyBlock {
    line-height: 1.2;
    font-size: 1.4rem;
  }
  .privacyBlock label {
    font-size: 1.6rem;
    margin-top: 10px;
  }
  .contact-inner .tell p.num {
    font-size: 3.6rem;
  }
  .confirmBlock .submit {
    margin-top: 50px;
    padding-bottom: 2%;
  }
  .confirmBlock .submit p::after {
    right: 20px;
  }
}
@media (max-width: 740px) {
  .headline-inline .headline-contact01 {
    font-size: 1.7rem;
    text-align: left;
  }
  .headline-inline .headline-contact02 {
    font-size: 1.7rem;
    text-align: left;
  }
  .addressBlock {
    margin-bottom: 15px;
  }
  .addressBlock p {
    margin-bottom: 5px;
  }
  .addressBlock .title {
    margin-bottom: 20px;
  }
  .addressBlock span {
    font-size: 1.2rem;
  }
  .contentsBlock .title {
    font-size: 1.6rem;
  }
  .privacyBlock .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 680px) {
  /* SP */
  a.telcall {
    display: block;
  }
}
@media (max-width: 499px) {
  .service-contents02.contact {
    padding: 0 5% 120px;
  }
  /* SP */
  .contact-inner {
    padding: 5% 0 0;
  }
  .contact-txt001 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
  }
  .contact-txt001 br {
    display: block;
  }
  #staff.bussiness-about-company {
    padding-top: 80px;
    margin-top: -80px;
  }
  .headline-inline .headline-contact01 {
    font-size: 1.5rem;
    padding: 10px 50px 10px 0;
  }
  .headline-inline .headline-contact02 {
    font-size: 1.5rem;
  }

  .error-message {
    margin-top: 2px;
    font-size: 1.2rem;
  }
  .contact-inner dl[class*="Block"] dd {
    margin-bottom: 3rem;
  }

  .itemBlock {
    font-size: 1.4rem;
  }

  .itemBlock p {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .itemBlock .title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .itemBlock select {
    font-size: 1.3rem !important;
  }
  .contentsBlock {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .contentsBlock .title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .contentsBlock .title span {
    font-size: 1.5rem;
  }
  .addressBlock .title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .addressBlock span.age {
    display: block;
    font-size: 1.2rem;
  }
  .privacyBlock {
    margin-bottom: 50px;
  }
  .privacyBlock .title {
    font-size: 1.6rem;
  }
  .addressBlock p {
    font-size: 1.6rem;
  }
  .itemBlock label p {
    font-size: 1.5rem;
  }
  .privacyBlock p {
    font-size: 1.5rem;
  }
  .privacyBlock label p {
    font-size: 1.6rem;
  }
  .tell p.time {
    font-size: 1.2rem;
  }
  .tell p.tel-txt {
    font-size: 1.2rem;
  }
  .contact-txt02 {
    font-size: 1.2rem;
  }
  .form-control-w20p {
    width: 6em;
    margin-right: 0px !important;
  }
  .confirmBlock .submit .confirm-button {
    padding: 30px 40px;
  }
}
@media (max-width: 360px) {
  .headline-inline .headline-contact01 {
    font-size: 1.5rem;
    padding: 10px 60px 10px 0;
  }
  .contact-inner .tell p.num {
    font-size: 3rem;
  }
  .tell p.time {
    font-size: 1.2rem;
  }
  .tell p.tel-txt {
    font-size: 1.2rem;
  }
  .contact-txt02 {
    font-size: 1.2rem;
  }
  .contents01 .titleBlock p.read {
    font-size: 1.6rem;
  }
  .business-service-2x h5 {
    margin: 0 0 10px;
  }
  .business-service-2x p {
    font-size: 1rem;
  }
  .contents02 .titleBlock02 p.read {
    font-size: 1.6rem;
  }
  .about-company-left h2.about-copy {
    font-size: 1.6rem;
  }
  .about-company-left h2.recruit-copy {
    font-size: 1.8rem;
  }
}

/* ------------------------------------------------------------------
Second Contact 確認画面
------------------------------------------------------------------- */
.contact-inner .conbox-head {
  width: 100%;
  margin: 20px auto 80px;
  text-align: center;
}
.contact-inner .conbox-head p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  text-align: center;
  margin: 0;
}
@media (max-width: 1200px) {
  .contact-inner .conbox-head {
    width: 100%;
  }
  .contact-inner .conbox-head p {
    font-size: 1.4rem;
  }
}
@media (max-width: 499px) {
  .contact-inner .conbox-head p {
    font-size: 1.5rem;
    text-align: left;
  }
  .contact-inner .conbox-head p br {
    display: none;
  }
}

.contact-inner .conbox01 {
  width: 100%;
  margin: 0 auto;
  font-size: 1.8rem;
}

.contact .note {
  margin-top: 40px;
  color: #8a5f2e;
}
.contact .note a {
  color: #8a5f2e;
  font-weight: 600;
  text-decoration: underline;
}

/* reCAPTCHA バッジ */
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
}

/* ------------------------------------------------------------------
Second Contact 確認画面
------------------------------------------------------------------- */
.formWrap {
  width: 100%;
  margin: 10% auto;
  color: #8a5f2e;
  line-height: 1.4;
  font-size: 1.6rem;
}
.formWrap h4 {
  width: 100%;
  margin: 10% auto;
  color: #8a5f2e;
  line-height: 1.4;
  font-size: 1.6rem;
}
@media (max-width: 499px) {
  .formWrap h4 {
    margin: 20% auto;
    font-size: 1.6rem;
    text-align: left;
  }
}

p.error_messe {
  margin: 15px 0;
  color: red;
}
@media (max-width: 499px) {
  p.error_messe {
    text-align: left;
  }
}

.formWrap .backto {
  display: block;
  width: 300px;
  text-decoration: none;
  margin: 0 auto;
  padding: 20px;
  font-size: 1.6rem;
  text-align: center;
  background-color: #ccc;
  color: #000;
  border: 0px outset buttonface;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 499px) {
  .formWrap .backto {
    width: 200px;
  }
}

.formWrap .backto:hover {
  background-color: #666;
  color: #fff;
  cursor: pointer;
}

.formWrap h3 {
  width: 100%;
  margin: 10% auto;
  color: #8a5f2e;
  line-height: 1.4;
  font-size: 2.4rem;
  text-align: center;
}
.formWrap .textcenter {
  margin: 0 auto 5%;
  line-height: 1.5;
  text-align: center;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

table.formTable td,
table.formTable th {
  border-bottom: 1px solid #ccc;
  padding: 20px;
}

table.formTable th {
  width: 34%;
  font-weight: bold;
  text-align: left;
}

.formWrap .textcenter .submitmail {
  display: inline-block;
  width: 300px;
  margin: 30px auto;
  padding: 20px;
  border-radius: 8px;
  border: none;
  background: #8ebf1f;
  color: #fff;
  text-align: center;
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.formWrap .textcenter .submitmail:hover {
  background: #678917;
}
@media (max-width: 499px) {
  .formWrap .textcenter .submitmail {
    width: 200px;
  }
}

/*簡易版レスポンシブ用CS*/
@media screen and (max-width: 990px) {
  .formWrap {
    width: 95%;
    margin: 0 auto;
  }
  table.formTable th,
  table.formTable td {
    width: auto;
    display: block;
  }
  table.formTable th {
    margin-top: 5px;
    border-bottom: 0;
    padding: 20px 20px 0 20px;
  }
  form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 990px) and (max-width: 499px) {
  .formWrap {
    font-size: 1.5rem;
  }
  form input[type="submit"],
  form input[type="reset"],
  form input[type="button"] {
    height: auto;
  }
}

/* ------------------------------------------------------------------
Second Contact 完了画面
------------------------------------------------------------------- */
.contactfin-title-box {
  padding: 10% 0;
  text-align: center;
}
.contacts-txt-complete {
  padding: 0 0 50px;
  font-size: 1.8rem;
}
@media (max-width: 990px) {
  .contacts-txt-complete {
    font-size: 1.6rem;
  }
}
@media (max-width: 749px) {
  .contacts-txt-complete br.br {
    display: none;
  }
}
@media (max-width: 499px) {
  .contacts-txt-complete {
    text-align: left;
  }
}
.backtotop {
  width: 240px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  background: #8ebf1f;
  transition: all 0.3s ease;
}
.backtotop a {
  color: #fff;
}
.backtotop:hover {
  background-color: #8a5f2e;
  cursor: pointer;
}
.backtotop:hover a {
  color: #fff;
}

/* ------------------------------------------------------------------
privacy.html
------------------------------------------------------------------- */
.second-header-contents-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  margin: 0;
  padding: 5% 0 5%;
}
.second-header-contents-text-wrap {
  display: block;
  font-size: 2.4vw;
  font-weight: 900;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.4;
  color: #8ebf1f;
  margin: 0;
  padding: 0;
  text-align: center;
}
.privacyBlock iframe {
  width: 100%;
  height: 250px;
  margin: 0 0 10px;
  border-width: 0px;
  border-radius: 0.25rem;
  overflow: hidden;
}

.privacy-title-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 50px 0;
  background-color: #f5f5f5;
}
.privacy-inner-title {
  display: block;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #8a5f2e;
  text-align: center;
  margin: 0;
  padding: 0;
}
.privacy-inner-title span {
  display: block;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 10px 0 0;
}
.privacy-inner-section {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 40px 0 50px;
  margin: 0;
}
.privacy-inner {
  margin: 0;
  padding: 0;
  text-align: left;
}
.privacy-title-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #8a5f2e;
  padding: 0 0 30px;
}
.privacy-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 15px;
}
.privacy-title-right {
  font-size: 1.5rem;
  font-weight: 400;
  color: #8a5f2e;
  text-align: right;
  margin: 0;
  padding: 0;
}
.privacy-txt {
  font-size: 1.6rem;
  font-weight: 400;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 40px;
}
.privacy-txt02 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 20px;
}
.privacy-txt-last {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1px;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 50px;
}
.privacy-txt-last a {
  color: #8a5f2e;
}
dl.item-privacy-lines {
  width: 100%;
  padding: 0 0 0 20px;
  margin: 0 0 50px;
}
dl.item-privacy-lines dt {
  float: left;
  width: 30px;
  font-size: 1.6rem;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  padding: 4px 0;
  margin: 0;
}
dl.item-privacy-lines dd {
  margin-left: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  color: #8a5f2e;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 1px;
  padding: 4px 0;
}

@media (max-width: 1480px) {
  .second-header-contents-text-wrap {
    font-size: 3vw;
  }
}
@media (max-width: 1380px) {
}
@media (max-width: 1300px) {
}
@media (max-width: 1200px) {
}
@media (max-width: 990px) {
  .second-header-contents-text-wrap {
    font-size: 4.8vw;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  .second-header-contents-title-wrap {
    height: 100vh;
  }
}
@media (max-width: 749px) {
  .second-header-contents-title-wrap {
    height: 100vh;
  }
}
@media (max-width: 499px) {
  .service-contents02.privacy {
    padding: 0 5% 100px;
  }
  .second-header-contents-title-wrap {
    height: 50vh;
  }
  .second-header-contents-text-wrap {
    font-size: 7.2vw;
  }
  .privacy-title-text {
    font-size: 1.6rem;
  }
  .privacy-inner-section {
    padding: 0 25px 0 30px;
  }
  .privacy-title {
    font-size: 1.5rem;
    padding: 0 0 30px;
  }
  .privacy-subtitle {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .privacy-txt {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------------------------------
[404error.html]
------------------------------------------------------------------- */
.comingsoon-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}
.notfound-contents-section {
  position: relative;
  display: block;
  width: 60%;
  text-align: center;
  margin: 0;
  padding: 3% 3%;
  background-color: #fff;
  border-radius: 20px;
  border: solid 2px #8a5f2e;
}
.notfound-contents-section::before {
  content: "";
  position: absolute;
  top: 5px;
  right: -10px;
  bottom: -10px;
  left: 5px;
  border: solid 2px #8a5f2e;
  border-radius: 20px 30px 20px 30px;
  background-color: #d7e4b8;
  z-index: -1;
}
.notfound-contents-section .notfound-title {
  display: block;
  font-size: 2.4vw;
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  line-height: 1.1;
  color: #8a5f2e;
  margin: 0;
  padding: 0 0 30px;
}
.notfound-contents-section .notfound-text {
  display: block;
  font-size: 1vw;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1.4;
  color: #8a5f2e;
  margin: 0;
  padding: 0;
}

@media (max-width: 1480px) {
  .notfound-contents-section {
    width: 66%;
  }
  .notfound-contents-section .notfound-text {
    font-size: 1.1vw;
  }
}
@media (max-width: 1380px) {
  .notfound-contents-section {
    width: 70%;
    padding: 40px 30px 30px;
  }
  .notfound-contents-section .notfound-text {
    font-size: 1.2vw;
  }
}
@media (max-width: 1200px) {
  .notfound-contents-section .notfound-text {
    font-size: 1.4vw;
  }
}
@media (max-width: 990px) {
  .notfound-contents-section {
    width: 80%;
  }
  .notfound-contents-section .notfound-title {
    font-size: 4vw;
  }
  .notfound-contents-section .notfound-text {
    font-size: 1.6rem;
    text-align: left;
  }
  .notfound-contents-section .notfound-text br {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 990px) {
  .comingsoon-section {
    height: 200vh;
  }
  .notfound-contents-section .notfound-title {
    font-size: 3.6vw;
  }
}
@media (max-width: 749px) {
  .comingsoon-section {
    height: 200vh;
  }
  .notfound-contents-section .notfound-title {
    font-size: 3.6vw;
  }
}
@media (max-width: 499px) {
  .comingsoon-section {
    height: 100vh;
  }
  .notfound-contents-section {
    width: 90%;
    padding: 30px 20px 20px;
  }
  .notfound-contents-section .notfound-title {
    font-size: 5vw;
    padding: 0 0 20px;
  }
  .notfound-contents-section .notfound-text {
    font-size: 1.4rem;
  }
}

/* Btn Center 100%
 * --------------------------------------- */
.llinkbutton-wrapper-100 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.linkbutton-center-100 {
  display: block;
  position: relative;
  width: 60%;
  height: 60px;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  line-height: 52px;
  border: solid 2px #8a5f2e;
  border-radius: 6px;
  overflow: hidden;
}
.linkbutton-center-100::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #8a5f2e;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.linkbutton-center-100:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.linkbutton-center-100 .text {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Noto Sans JP", serif;
  letter-spacing: 0;
  color: #8a5f2e;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-center-100:hover {
  border: solid 2px #8a5f2e;
}
.linkbutton-center-100:hover .text {
  color: #fff;
}
.linkbutton-center-100 .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #8a5f2e;
  position: absolute;
  right: 15px;
  top: 45%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}
.linkbutton-center-100:hover .arrow {
  border-color: transparent transparent transparent #fff;
  right: 20px;
}

@media (max-width: 499px) {
  .llinkbutton-wrapper-100 {
    margin-top: 20px;
  }
  .linkbutton-center-100 {
    width: 100%;
  }
  .linkbutton-center-100 .text {
    font-size: 1.6rem;
  }
}
