@charset "UTF-8";
/*=========== variables =============*/
body {
  --pcHeaderHeight:70;
  --spHeaderHeight:60;
  --pcFooterHeight:67;
  --spFooterHeight:342;
  --base: #C3CBC3;
  --black:#555555;
  --commonGreen:#4A6C46;
  --subGreen:#AEBBAD;
}

.kumazasa, [data-pageid=kumazasa] {
  --key: #4A6C46;
  --color1: #89A980;
  --color2: #A3BC9C;
  --color3: #BECEB8;
}

.locogol, [data-pageid=locogol] {
  --key: #40679B;
  --color1: #91ACBC;
  --color2: #AFBBC2;
  --color3: #BEC9D6;
}

.golf, [data-pageid=golf] {
  --key: #C55A5A;
  --color1: #C0A6A0;
  --color2: #CCB9B5;
  --color3: #D1C6C6;
}

/*=========== mixins =============*/
/*=========== rem rem =============*/
html {
  font-size: 62.5%;
}
@media screen and (min-width: 320px) and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 10px;
  }
}

@keyframes bodyReady {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
body {
  min-height: 100vh;
  background-color: var(--base);
  color: var(--black);
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic Pro", メイリオ, MS Ｐゴシック, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
  overscroll-behavior: none;
}
body::after {
  content: "";
  display: block;
  background-color: var(--base);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}
body.active::after {
  animation: bodyReady 0.3s forwards;
}
body *, body *:before, body *:after {
  box-sizing: border-box;
  letter-spacing: 0.1em;
}

::-moz-selection {
  color: #333d42;
  background-color: #000;
}

::selection {
  color: #333d42;
  background-color: #000;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  color: var(--black);
}

a {
  text-decoration: none;
  color: var(--black);
  outline: none;
}

a:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: inherit;
}

a:visited {
  color: var(--black);
}

i {
  display: inline-block;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  height: auto;
}

canvas, video {
  vertical-align: top;
}

button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: inherit;
  white-space: normal;
  cursor: pointer;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  backface-visibility: hidden;
}

input:focus, textarea:focus, input[type]:focus, .uneditable-input:focus {
  outline: 0;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

select,
input[type=text],
input[type=search],
input[type=tel],
input[type=url],
input[type=email],
input[type=password],
input[type=number],
input[type=file],
input[type=date],
textarea,
select:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=file]:focus,
input[type=date]:focus,
textarea:focus {
  padding: 0 1rem;
  border: 2px solid #000;
  width: 335px;
  height: 56px;
  font-size: 15px;
  font-weight: bold;
}
@media (max-width: 768px) {
  select,
  input[type=text],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=file],
  input[type=date],
  textarea,
  select:focus,
  input[type=text]:focus,
  input[type=search]:focus,
  input[type=tel]:focus,
  input[type=url]:focus,
  input[type=email]:focus,
  input[type=password]:focus,
  input[type=number]:focus,
  input[type=file]:focus,
  input[type=date]:focus,
  textarea:focus {
    padding: 0 15px;
    height: 42px;
    font-size: 12px;
    border: 1px solid #000;
    width: 100%;
  }
  html.ANDROID select,
  html.ANDROID input[type=text],
  html.ANDROID input[type=search],
  html.ANDROID input[type=tel],
  html.ANDROID input[type=url],
  html.ANDROID input[type=email],
  html.ANDROID input[type=password],
  html.ANDROID input[type=number],
  html.ANDROID input[type=file],
  html.ANDROID input[type=date],
  html.ANDROID textarea,
  html.ANDROID select:focus,
  html.ANDROID input[type=text]:focus,
  html.ANDROID input[type=search]:focus,
  html.ANDROID input[type=tel]:focus,
  html.ANDROID input[type=url]:focus,
  html.ANDROID input[type=email]:focus,
  html.ANDROID input[type=password]:focus,
  html.ANDROID input[type=number]:focus,
  html.ANDROID input[type=file]:focus,
  html.ANDROID input[type=date]:focus,
  html.ANDROID textarea:focus {
    padding: 0 15px;
  }
}

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

select {
  cursor: pointer;
  font-weight: bold;
}
@media (max-width: 768px) {
  select {
    background-position: right 1.2rem top 50%;
    background-size: 1.2rem;
  }
}

textarea, textarea:focus {
  font-weight: bold;
  height: 135px;
}

input[type=checkbox],
input[type=radio],
input[type=checkbox]:focus,
input[type=radio]:focus {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  margin-right: 10px;
  position: relative;
}
input[type=checkbox][type=radio],
input[type=radio][type=radio],
input[type=checkbox]:focus[type=radio],
input[type=radio]:focus[type=radio] {
  border-radius: 20px;
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
  background-color: #000;
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
input[type=checkbox]:checked[type=radio],
input[type=radio]:checked[type=radio] {
  border-radius: 20px;
}
input[type=checkbox]:checked[type=radio]:before,
input[type=radio]:checked[type=radio]:before {
  border-radius: 20px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
  .btn, a {
    display: inline-block;
    opacity: 1;
    transition: all 0.1s linear;
    text-decoration: none;
  }
  .btn svg, a svg {
    transition: all 0.1s linear;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .btn:hover, a:hover {
    opacity: 0.65;
  }
}
@media (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
  svg {
    fill: var(--black);
  }
}
svg {
  width: 100%;
}

.scrAnim {
  pointer-events: none;
}
.scrAnim.uk-scrollspy-inview {
  pointer-events: auto;
}

/* TELリンク spのみ対応
********************************/
a[href*="tel:"] {
  text-decoration: none;
  background-color: inherit;
}

/*========= english font ===============*/
.en {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0em;
}

/*========= japanese sefif font ===============*/
.serif {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
}

.sansserif {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic Pro", メイリオ, MS Ｐゴシック, sans-serif;
}

.reg {
  font-weight: 400;
}

.medi {
  font-weight: 500;
}

.semi {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

[data-pageid=top] header,
[data-pageid=top] .sticky-wrap {
  opacity: 1;
  pointer-events: auto;
}
[data-pageid=top] header.none {
  opacity: 0;
  pointer-events: none;
}
[data-pageid=top] header {
  transition: opacity 0.6s ease;
}

/*============ header ============*/
header.header {
  z-index: 10;
  position: fixed;
  top: 0;
  background-color: var(--base);
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 769px) {
  header.header {
    height: calc(var(--pcHeaderHeight) * 0.1rem);
  }
}
@media (max-width: 768px) {
  header.header {
    min-height: calc(var(--spHeaderHeight) * 0.1rem);
  }
}
header.header .header-inner {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 769px) {
  header.header .header-inner {
    align-items: center;
  }
}
header.header .logo {
  display: block;
}
@media all and (min-width: 769px) {
  header.header .logo {
    margin-left: 4rem;
  }
  header.header .logo else {
    margin-left: 40;
  }
}
@media all and (max-width: 768px) {
  header.header .logo {
    margin-left: 2rem;
  }
  header.header .logo else {
    margin-left: 20;
  }
}
@media all and (min-width: 769px) {
  header.header .logo {
    width: 12.2rem;
  }
  header.header .logo else {
    width: 122;
  }
}
@media all and (max-width: 768px) {
  header.header .logo {
    width: 8.9rem;
  }
  header.header .logo else {
    width: 89;
  }
}
@media all and (min-width: 769px) {
  header.header .logo {
    padding-top: 2.3rem;
  }
  header.header .logo else {
    padding-top: 23;
  }
}
@media all and (max-width: 768px) {
  header.header .logo {
    padding-top: 2rem;
  }
  header.header .logo else {
    padding-top: 20;
  }
}
@media (min-width: 769px) {
  header.header .logo {
    margin-bottom: auto;
  }
}
header.header .logo .btn {
  display: flex;
}
header.header .menu-btn-wrap {
  display: flex;
}
@media (max-width: 768px) {
  header.header .menu-btn-wrap {
    flex-direction: column;
  }
}
header.header .menu-btn {
  position: relative;
  display: flex;
}
@media all and (min-width: 769px) {
  header.header .menu-btn {
    padding: 1.9rem 2.4rem 1.9rem 2.4rem;
  }
}
@media all and (max-width: 768px) {
  header.header .menu-btn {
    padding: 1.5rem 0.5rem 3.4rem 1.8rem;
  }
}
@media (max-width: 768px) {
  header.header .menu-btn {
    min-width: 1.5rem;
  }
}
header.header .menu-btn::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.2rem;
  position: absolute;
  left: 0;
  background-color: var(--black);
}
@media (min-width: 769px) {
  header.header .menu-btn::after {
    margin-top: 2rem;
  }
}
@media (max-width: 768px) {
  header.header .menu-btn::after {
    width: 1rem;
    height: 1px;
    margin-top: 0.8rem;
  }
}
@media (min-width: 769px) {
  header.header .menu-btn:first-of-type::after {
    content: none;
  }
}
@media (min-width: 769px) {
  header.header .menu-txt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
header.header .company-btn {
  display: flex;
  position: relative;
}
@media all and (min-width: 769px) {
  header.header .company-btn {
    padding: 1.8rem 4rem 2rem 4rem;
  }
}
@media all and (max-width: 768px) {
  header.header .company-btn {
    padding: 3.5rem 0rem 3.4rem 1.8rem;
  }
}
@media (min-width: 769px) {
  header.header .company-btn {
    margin-right: 2.3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media all and (min-width: 769px) {
  header.header .menu-txt, header.header .company-txt {
    font-size: 1.5rem;
  }
  header.header .menu-txt else, header.header .company-txt else {
    font-size: 15;
  }
}
@media all and (max-width: 768px) {
  header.header .menu-txt, header.header .company-txt {
    font-size: 1.5rem;
  }
  header.header .menu-txt else, header.header .company-txt else {
    font-size: 15;
  }
}
header.header .menu-txt-sub,
header.header .company-txt-sub {
  transform: scale(0.9);
  letter-spacing: 0.144em;
  color: var(--commonGreen);
}
@media all and (min-width: 769px) {
  header.header .menu-txt-sub,
  header.header .company-txt-sub {
    margin-bottom: 0.7rem;
  }
  header.header .menu-txt-sub else,
  header.header .company-txt-sub else {
    margin-bottom: 7;
  }
}
@media all and (max-width: 768px) {
  header.header .menu-txt-sub,
  header.header .company-txt-sub {
    margin-bottom: 0rem;
  }
  header.header .menu-txt-sub else,
  header.header .company-txt-sub else {
    margin-bottom: 0;
  }
}
@media all and (min-width: 769px) {
  header.header .menu-txt-sub,
  header.header .company-txt-sub {
    font-size: 1rem;
  }
  header.header .menu-txt-sub else,
  header.header .company-txt-sub else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  header.header .menu-txt-sub,
  header.header .company-txt-sub {
    font-size: 1.1rem;
  }
  header.header .menu-txt-sub else,
  header.header .company-txt-sub else {
    font-size: 11;
  }
}
@media (max-width: 768px) {
  header.header .menu-txt-sub,
  header.header .company-txt-sub {
    position: absolute;
    margin-top: 2.3rem;
    left: 0;
    transform: translateX(1.8rem);
  }
}
header.header .header-contact-btn {
  width: 25rem;
  height: 7rem;
  border-bottom-left-radius: 1.6rem;
  background: var(--commonGreen);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header.header .header-contact-btn .contact-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header.header .header-contact-btn .contact-txt {
  font-size: 1.5rem;
  color: #fff;
}
header.header .header-contact-btn .contact-txt-sub {
  margin-top: -0.3rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.017em;
  color: #A4B5A2;
}
header.header .header-contact-btn .ico-arrow {
  fill: #fff;
  width: 0.6rem;
  padding-top: 0.1rem;
  margin-left: 1.5rem;
  margin-right: -0.5rem;
}
@media (max-width: 768px) {
  header.header .menu-accordion .uk-accordion-title.btn::after {
    display: none;
  }
  header.header .menu-accordion .line {
    display: block;
    width: 2.4rem;
    height: 0.7rem;
    position: relative;
  }
  header.header .menu-accordion .line::before, header.header .menu-accordion .line::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: 1px;
    background: var(--black);
    position: absolute;
    transition: all 0.3s linear;
  }
  header.header .menu-accordion .line::before {
    top: 0;
  }
  header.header .menu-accordion .line::after {
    bottom: 0;
  }
  header.header .menu-accordion .txt {
    font-size: 1.2rem;
    letter-spacing: 0.017em;
    position: relative;
    display: block;
    width: 2.4rem;
    height: 0.7rem;
  }
  header.header .menu-accordion .txt::before, header.header .menu-accordion .txt::after {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 50%;
    transform: translate(50%);
    transition: all 0.3s linear;
    letter-spacing: 0.017em;
  }
  header.header .menu-accordion .txt::before {
    content: "Menu";
    opacity: 1;
  }
  header.header .menu-accordion .txt::after {
    content: "Close";
    opacity: 0;
  }
  header.header .menu-accordion.uk-open .line::before {
    transform: rotate(-14deg);
    transform-origin: right;
  }
  header.header .menu-accordion.uk-open .line::after {
    transform: rotate(14deg);
    transform-origin: right;
  }
  header.header .menu-accordion.uk-open .txt::before {
    content: "Open";
    opacity: 0;
  }
  header.header .menu-accordion.uk-open .txt::after {
    content: "Close";
    opacity: 1;
  }
  header.header .menu-accordion .uk-accordion-content {
    height: 34.5rem;
  }
  header.header .menu-accordion .uk-accordion-content .accordion-inner {
    padding-top: 2.3rem;
    padding-left: 2.3rem;
    padding-right: 2.3rem;
    height: 34.5rem;
    position: absolute;
    width: 100vw;
    left: 0;
    display: flex;
    flex-direction: column;
  }
  header.header .uk-accordion-title {
    display: flex;
    flex-direction: column;
    height: 6rem;
    width: 6.8rem;
    padding: 1.9rem 2rem 1.4rem;
    gap: 0.8rem;
  }
  header.header .uk-accordion-title::before {
    content: none;
  }
}

@media (max-width: 768px) {
  #accordion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    background: rgba(0, 0, 0, 0.2);
    z-index: 5;
    pointer-events: none; /* 初期はクリックできないようにする */
    transition: opacity 0.7s ease;
  }
  #accordion-overlay.is-visible {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  /* スクロール禁止用 */
  body.noscroll {
    overflow: hidden !important;
  }
}
.non-sticky-wrap {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 769px) {
  .non-sticky-wrap {
    margin-top: 0rem;
  }
  .non-sticky-wrap else {
    margin-top: 0;
  }
}
@media all and (max-width: 768px) {
  .non-sticky-wrap {
    margin-top: -5.5rem;
  }
  .non-sticky-wrap else {
    margin-top: -55;
  }
}
@media all and (min-width: 769px) {
  .non-sticky-wrap {
    padding-bottom: 8rem;
  }
  .non-sticky-wrap else {
    padding-bottom: 80;
  }
}
@media all and (max-width: 768px) {
  .non-sticky-wrap {
    padding-bottom: 1.5rem;
  }
  .non-sticky-wrap else {
    padding-bottom: 15;
  }
}

.sticky-wrap {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 769px) {
  .sticky-wrap {
    padding-bottom: 8rem;
  }
  .sticky-wrap else {
    padding-bottom: 80;
  }
}
@media all and (max-width: 768px) {
  .sticky-wrap {
    padding-bottom: 1.5rem;
  }
  .sticky-wrap else {
    padding-bottom: 15;
  }
}
@media (max-width: 768px) {
  .sticky-wrap {
    position: sticky;
    bottom: 0;
    z-index: 3;
  }
  .sticky-wrap .contact-btn {
    width: 27rem;
    height: 4rem;
  }
  .sticky-wrap .contact-btn .ico-arrow {
    right: 1.5rem;
  }
}

.contact-btn {
  border-bottom-left-radius: 1.6rem;
  background: var(--commonGreen);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media all and (min-width: 769px) {
  .contact-btn {
    width: 47rem;
  }
  .contact-btn else {
    width: 470;
  }
}
@media all and (max-width: 768px) {
  .contact-btn {
    width: 35rem;
  }
  .contact-btn else {
    width: 350;
  }
}
@media all and (min-width: 769px) {
  .contact-btn {
    height: 9rem;
  }
  .contact-btn else {
    height: 90;
  }
}
@media all and (max-width: 768px) {
  .contact-btn {
    height: 6.8rem;
  }
  .contact-btn else {
    height: 68;
  }
}
@media all and (min-width: 769px) {
  .contact-btn {
    border-radius: 4.5rem;
  }
  .contact-btn else {
    border-radius: 45;
  }
}
@media all and (max-width: 768px) {
  .contact-btn {
    border-radius: 3.4rem;
  }
  .contact-btn else {
    border-radius: 34;
  }
}
@media all and (min-width: 769px) {
  .contact-btn {
    padding-left: 0.2rem;
  }
  .contact-btn else {
    padding-left: 2;
  }
}
@media all and (max-width: 768px) {
  .contact-btn {
    padding-left: 0.4rem;
  }
  .contact-btn else {
    padding-left: 4;
  }
}
.contact-btn .contact-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 769px) {
  .contact-btn .contact-text-wrap {
    margin-top: -0.4rem;
  }
  .contact-btn .contact-text-wrap else {
    margin-top: -4;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .contact-text-wrap {
    margin-top: -0.3rem;
  }
  .contact-btn .contact-text-wrap else {
    margin-top: -3;
  }
}
.contact-btn .contact-txt {
  color: #fff;
}
@media all and (min-width: 769px) {
  .contact-btn .contact-txt {
    font-size: 1.4rem;
  }
  .contact-btn .contact-txt else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .contact-txt {
    font-size: 1.1rem;
  }
  .contact-btn .contact-txt else {
    font-size: 11;
  }
}
@media (max-width: 768px) {
  .contact-btn .contact-txt {
    font-weight: 400;
  }
}
.contact-btn .contact-txt-sub {
  letter-spacing: 0.05em;
  color: #fff;
}
@media all and (min-width: 769px) {
  .contact-btn .contact-txt-sub {
    margin-top: 0rem;
  }
  .contact-btn .contact-txt-sub else {
    margin-top: 0;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .contact-txt-sub {
    margin-top: 0rem;
  }
  .contact-btn .contact-txt-sub else {
    margin-top: 0;
  }
}
@media all and (min-width: 769px) {
  .contact-btn .contact-txt-sub {
    margin-bottom: 0.6rem;
  }
  .contact-btn .contact-txt-sub else {
    margin-bottom: 6;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .contact-txt-sub {
    margin-bottom: 0.4rem;
  }
  .contact-btn .contact-txt-sub else {
    margin-bottom: 4;
  }
}
@media all and (min-width: 769px) {
  .contact-btn .contact-txt-sub {
    font-size: 2.4rem;
  }
  .contact-btn .contact-txt-sub else {
    font-size: 24;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .contact-txt-sub {
    font-size: 1.8rem;
  }
  .contact-btn .contact-txt-sub else {
    font-size: 18;
  }
}
.contact-btn .ico-arrow {
  fill: #fff;
  position: absolute;
}
@media all and (min-width: 769px) {
  .contact-btn .ico-arrow {
    width: 1rem;
  }
  .contact-btn .ico-arrow else {
    width: 10;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .ico-arrow {
    width: 0.7rem;
  }
  .contact-btn .ico-arrow else {
    width: 7;
  }
}
@media all and (min-width: 769px) {
  .contact-btn .ico-arrow {
    padding-top: 0.1rem;
  }
  .contact-btn .ico-arrow else {
    padding-top: 1;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .ico-arrow {
    padding-top: 0.1rem;
  }
  .contact-btn .ico-arrow else {
    padding-top: 1;
  }
}
@media all and (min-width: 769px) {
  .contact-btn .ico-arrow {
    margin-left: 1.5rem;
  }
  .contact-btn .ico-arrow else {
    margin-left: 15;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .ico-arrow {
    margin-left: 3.2rem;
  }
  .contact-btn .ico-arrow else {
    margin-left: 32;
  }
}
@media all and (min-width: 769px) {
  .contact-btn .ico-arrow {
    margin-right: -0.5rem;
  }
  .contact-btn .ico-arrow else {
    margin-right: -5;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .ico-arrow {
    margin-right: 0rem;
  }
  .contact-btn .ico-arrow else {
    margin-right: 0;
  }
}
@media all and (min-width: 769px) {
  .contact-btn .ico-arrow {
    right: 3.8rem;
  }
  .contact-btn .ico-arrow else {
    right: 38;
  }
}
@media all and (max-width: 768px) {
  .contact-btn .ico-arrow {
    right: 2.3rem;
  }
  .contact-btn .ico-arrow else {
    right: 23;
  }
}

/* 非表示時 */
@media (max-width: 768px) {
  .contactBtnJs {
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .contactBtnJs.hide {
    transform: translateY(150%);
    opacity: 0;
  }
  .contactBtnJs.none {
    opacity: 0;
    pointer-events: none;
  }
}
/*============ footer ============*/
footer.footer {
  width: 100%;
  border-top: 1px solid #A3BC9C;
}
@media all and (min-width: 769px) {
  footer.footer {
    height: 6.7rem;
  }
  footer.footer else {
    height: 67;
  }
}
@media all and (max-width: 768px) {
  footer.footer {
    height: 37.5rem;
  }
  footer.footer else {
    height: 375;
  }
}
@media (max-width: 768px) {
  footer.footer {
    margin-top: 6.5rem;
  }
}
footer.footer .footer-inner {
  display: flex;
  height: 100%;
}
@media all and (min-width: 769px) {
  footer.footer .footer-inner {
    padding: 0rem 3.3rem 0.2rem 4rem;
  }
}
@media all and (max-width: 768px) {
  footer.footer .footer-inner {
    padding: 3rem 2.5rem 2rem 2.5rem;
  }
}
@media (min-width: 769px) {
  footer.footer .footer-inner {
    align-items: center;
  }
}
@media (max-width: 768px) {
  footer.footer .footer-inner {
    flex-direction: column;
  }
}
footer.footer .logo {
  display: block;
}
@media all and (min-width: 769px) {
  footer.footer .logo {
    margin-right: 3rem;
  }
  footer.footer .logo else {
    margin-right: 30;
  }
}
@media all and (max-width: 768px) {
  footer.footer .logo {
    margin-right: 0rem;
  }
  footer.footer .logo else {
    margin-right: 0;
  }
}
@media all and (min-width: 769px) {
  footer.footer .logo {
    width: 9.2rem;
  }
  footer.footer .logo else {
    width: 92;
  }
}
@media all and (max-width: 768px) {
  footer.footer .logo {
    width: 9.2rem;
  }
  footer.footer .logo else {
    width: 92;
  }
}
footer.footer .logo .btn {
  display: flex;
}
footer.footer .menu-btn-wrap {
  display: flex;
}
@media (max-width: 768px) {
  footer.footer .menu-btn-wrap {
    flex-direction: column;
    margin-top: 3.7rem;
  }
}
footer.footer .menu-btn {
  position: relative;
  display: flex;
  align-items: center;
}
@media all and (min-width: 769px) {
  footer.footer .menu-btn {
    padding: 2.5rem 2rem 3rem 2rem;
  }
}
@media all and (max-width: 768px) {
  footer.footer .menu-btn {
    padding: 1.5rem 1.8rem 1.5rem 1.8rem;
  }
}
@media (max-width: 768px) {
  footer.footer .menu-btn {
    min-width: 1.5rem;
  }
}
footer.footer .menu-btn::after {
  content: "";
  display: block;
  width: 1px;
  height: 1rem;
  position: absolute;
  left: 0;
  background-color: var(--black);
}
@media (min-width: 769px) {
  footer.footer .menu-btn::after {
    margin-top: 0.2rem;
  }
}
@media (max-width: 768px) {
  footer.footer .menu-btn::after {
    width: 1rem;
    height: 1px;
    margin-top: 0.1rem;
  }
}
@media (min-width: 769px) {
  footer.footer .menu-btn:first-of-type::after {
    content: none;
  }
}
@media all and (min-width: 769px) {
  footer.footer .company-btn {
    padding: 2.5rem 2rem 3rem 2rem;
  }
}
@media all and (max-width: 768px) {
  footer.footer .company-btn {
    padding: 1.5rem 1.8rem 1.5rem 0rem;
  }
}
@media (max-width: 768px) {
  footer.footer .company-btn {
    margin-top: 2rem;
  }
}
@media all and (min-width: 769px) {
  footer.footer .menu-txt, footer.footer .company-txt {
    font-size: 1.2rem;
  }
  footer.footer .menu-txt else, footer.footer .company-txt else {
    font-size: 12;
  }
}
@media all and (max-width: 768px) {
  footer.footer .menu-txt, footer.footer .company-txt {
    font-size: 1.5rem;
  }
  footer.footer .menu-txt else, footer.footer .company-txt else {
    font-size: 15;
  }
}
footer.footer .copy {
  letter-spacing: 0.14em;
}
@media all and (min-width: 769px) {
  footer.footer .copy {
    font-size: 1rem;
  }
  footer.footer .copy else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  footer.footer .copy {
    font-size: 1rem;
  }
  footer.footer .copy else {
    font-size: 10;
  }
}
@media (min-width: 769px) {
  footer.footer .copy {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  footer.footer .copy {
    transform: scale(0.9) translateX(-1.8rem);
    margin-top: auto;
  }
}

/*============ UK Animation ============*/
/*============ UK Accordion ============*/
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*=uk-animation-] {
  animation: 0.5s ease-out both;
}

/* Animations
 ========================================================================== */
/*
 * Fade
 */
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

/*
 * Scale
 */
.uk-animation-scale-up {
  animation-name: uk-fade, uk-scale-up;
}

.uk-animation-scale-down {
  animation-name: uk-fade, uk-scale-down;
}

/*
 * Slide
 */
.uk-animation-slide-top {
  animation-name: uk-fade, uk-slide-top;
}

.uk-animation-slide-bottom {
  animation-name: uk-fade, uk-slide-bottom;
}

.uk-animation-slide-left {
  animation-name: uk-fade, uk-slide-left;
}

.uk-animation-slide-right {
  animation-name: uk-fade, uk-slide-right;
}

/*
 * Slide Small
 */
.uk-animation-slide-top-small {
  animation-name: uk-fade, uk-slide-top-small;
}

.uk-animation-slide-bottom-small {
  animation-name: uk-fade, uk-slide-bottom-small;
}

.uk-animation-slide-left-small {
  animation-name: uk-fade, uk-slide-left-small;
}

.uk-animation-slide-right-small {
  animation-name: uk-fade, uk-slide-right-small;
}

/*
 * Slide Medium
 */
.uk-animation-slide-top-medium {
  animation-name: uk-fade, uk-slide-top-medium;
}

.uk-animation-slide-bottom-medium {
  animation-name: uk-fade, uk-slide-bottom-medium;
}

.uk-animation-slide-left-medium {
  animation-name: uk-fade, uk-slide-left-medium;
}

.uk-animation-slide-right-medium {
  animation-name: uk-fade, uk-slide-right-medium;
}

/*
 * Kenburns
 */
.uk-animation-kenburns {
  animation-name: uk-kenburns;
  animation-duration: 15s;
}

/*
 * Shake
 */
.uk-animation-shake {
  animation-name: uk-shake;
}

/*
 * SVG Stroke
 * The `--uk-animation-stroke` custom property contains the longest path length.
 * Set it manually or use `uk-svg="stroke-animation: true"` to set it automatically.
 * All strokes are animated by the same pace and doesn't end simultaneously.
 * To end simultaneously, `pathLength="1"` could be used, but it's not working in Safari yet.
 */
.uk-animation-stroke {
  animation-name: uk-stroke;
  animation-duration: 2s;
  stroke-dasharray: var(--uk-animation-stroke);
}

/* Direction modifier
 ========================================================================== */
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Duration modifier
 ========================================================================== */
.uk-animation-fast {
  animation-duration: 0.1s;
}

/* Toggle animation based on the State of the Parent Element
 ========================================================================== */
.uk-animation-toggle:not(:hover):not(:focus) [class*=uk-animation-] {
  animation-name: none;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
 * Scale
 */
@keyframes uk-scale-up {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes uk-scale-down {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*
 * Slide
 */
@keyframes uk-slide-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Small
 */
@keyframes uk-slide-top-small {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-small {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left-small {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right-small {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Slide Medium
 */
@keyframes uk-slide-top-medium {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-bottom-medium {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes uk-slide-left-medium {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes uk-slide-right-medium {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
/*
 * Kenburns
 */
@keyframes uk-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*
 * Shake
 */
@keyframes uk-shake {
  0%, 100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
/*
 * Stroke
 */
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* ========================================================================
   Component: Accordion
 ========================================================================== */
.uk-accordion {
  padding: 0;
  list-style: none;
}

/* Title
 ========================================================================== */
.uk-accordion-title {
  display: block;
  color: var(--black);
  overflow: hidden;
}

.uk-accordion-title::after {
  content: "";
  width: 1.4em;
  height: 1.4em;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (max-width: 768px) {
  .uk-accordion-title::after {
    position: absolute;
    top: 0;
    right: -0.1rem;
  }
}

.uk-open > .uk-accordion-title::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}

/* Content
 ========================================================================== */
.uk-accordion-content {
  display: flow-root;
}

/*
 * Remove margin from the last-child
 */
.uk-accordion-content > :last-child {
  margin-bottom: 0;
}

[hidden],
.uk-hidden {
  display: none !important;
}

.uk-button {
  padding: 0;
}

section.section.contact {
  /* -- error message -------------------------------------------------------------------------------- */
  /* -- button -------------------------------------------------------------------------------- */
}
section.section.contact form#mail_form {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form {
    width: 64rem;
  }
  section.section.contact form#mail_form else {
    width: 640;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form {
    width: 34.5rem;
  }
  section.section.contact form#mail_form else {
    width: 345;
  }
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form {
    margin-top: 6.4rem;
  }
  section.section.contact form#mail_form else {
    margin-top: 64;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form {
    margin-top: 8rem;
  }
  section.section.contact form#mail_form else {
    margin-top: 80;
  }
}
section.section.contact dl {
  display: flex;
  margin: 0;
  border-top: 1px solid var(--subGreen);
}
@media (max-width: 768px) {
  section.section.contact dl {
    flex-direction: column;
  }
}
@media all and (min-width: 769px) {
  section.section.contact dl {
    padding: 2.5rem 2rem;
  }
}
@media all and (max-width: 768px) {
  section.section.contact dl {
    padding: 2rem 1rem;
  }
}
@media all and (min-width: 769px) {
  section.section.contact dl:last-of-type {
    padding-bottom: 4rem;
  }
  section.section.contact dl:last-of-type else {
    padding-bottom: 40;
  }
}
@media all and (max-width: 768px) {
  section.section.contact dl:last-of-type {
    padding-bottom: 6rem;
  }
  section.section.contact dl:last-of-type else {
    padding-bottom: 60;
  }
}
@media all and (min-width: 769px) {
  section.section.contact dt {
    font-size: 1.4rem;
  }
  section.section.contact dt else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  section.section.contact dt {
    font-size: 1.3rem;
  }
  section.section.contact dt else {
    font-size: 13;
  }
}
section.section.contact dd {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  section.section.contact dd {
    margin-top: 1.8rem;
  }
}
section.section.contact dd:has(.error_blank:empty) input, section.section.contact dd:has(.error_blank:empty) textarea, section.section.contact dd:has(.error_blank:empty) select {
  border: none;
}
section.section.contact dd:has(.error_blank) input, section.section.contact dd:has(.error_blank) textarea, section.section.contact dd:has(.error_blank) select {
  border: 1px solid #C55A5A;
}
section.section.contact .select-wrap {
  position: relative;
}
section.section.contact .select-wrap select:focus-visible {
  outline: none;
}
section.section.contact .select-wrap select {
  position: relative;
}
section.section.contact .select-wrap .ico-arrow {
  position: absolute;
  display: block;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media all and (min-width: 769px) {
  section.section.contact .select-wrap .ico-arrow {
    top: 1.3rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    top: 13;
  }
}
@media all and (max-width: 768px) {
  section.section.contact .select-wrap .ico-arrow {
    top: 1.2rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    top: 12;
  }
}
@media all and (min-width: 769px) {
  section.section.contact .select-wrap .ico-arrow {
    right: 2rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    right: 20;
  }
}
@media all and (max-width: 768px) {
  section.section.contact .select-wrap .ico-arrow {
    right: 1.3rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    right: 13;
  }
}
@media all and (min-width: 769px) {
  section.section.contact .select-wrap .ico-arrow {
    width: 0.8rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    width: 8;
  }
}
@media all and (max-width: 768px) {
  section.section.contact .select-wrap .ico-arrow {
    width: 0.6rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    width: 6;
  }
}
@media all and (min-width: 769px) {
  section.section.contact .select-wrap .ico-arrow {
    height: 1.3rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    height: 13;
  }
}
@media all and (max-width: 768px) {
  section.section.contact .select-wrap .ico-arrow {
    height: 1.3rem;
  }
  section.section.contact .select-wrap .ico-arrow else {
    height: 13;
  }
}
section.section.contact .select-wrap .ico-arrow svg {
  fill: var(--black);
  transform: rotate(90deg);
  width: 100%;
}
section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
  background-color: #BBC6B7;
  border: 1px solid var(--subGreen);
  color: var(--black);
}
@media all and (min-width: 769px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    width: 39rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    width: 390;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    width: 32.5rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    width: 325;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    padding: 0rem 2rem;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    padding: 0rem 1.2rem;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    border-radius: 0.5rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    border-radius: 5;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    border-radius: 0.5rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    border-radius: 5;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    font-size: 1.3rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    font-size: 1.2rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    font-size: 12;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    height: 4rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    height: 40;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input, section.section.contact textarea, section.section.contact select, section.section.contact .privacy_contents {
    height: 3.6rem;
  }
  section.section.contact input else, section.section.contact textarea else, section.section.contact select else, section.section.contact .privacy_contents else {
    height: 36;
  }
}
section.section.contact input::-moz-placeholder, section.section.contact textarea::-moz-placeholder, section.section.contact select::-moz-placeholder, section.section.contact .privacy_contents::-moz-placeholder {
  color: var(--black);
  opacity: 0.3;
}
section.section.contact input::placeholder, section.section.contact textarea::placeholder, section.section.contact select::placeholder, section.section.contact .privacy_contents::placeholder {
  color: var(--black);
  opacity: 0.3;
}
@media all and (min-width: 769px) {
  section.section.contact textarea, section.section.contact .privacy_contents {
    padding: 0.8rem 2.5rem 0.6rem 2rem;
  }
}
@media all and (max-width: 768px) {
  section.section.contact textarea, section.section.contact .privacy_contents {
    padding: 0.8rem 1.8rem 0.6rem 2rem;
  }
}
section.section.contact textarea {
  line-height: 1.5;
}
@media all and (min-width: 769px) {
  section.section.contact textarea {
    min-height: 20rem;
  }
  section.section.contact textarea else {
    min-height: 200;
  }
}
@media all and (max-width: 768px) {
  section.section.contact textarea {
    min-height: 18rem;
  }
  section.section.contact textarea else {
    min-height: 180;
  }
}
@media all and (min-width: 769px) {
  section.section.contact textarea {
    width: 39rem !important;
  }
}
@media all and (max-width: 768px) {
  section.section.contact textarea {
    width: 32.5rem !important;
  }
}
section.section.contact p.privacy_contents {
  overflow-y: auto;
  background: var(--base);
  line-height: 1.9;
  letter-spacing: 0.14em;
  scrollbar-color: #AEBBAD rgba(174, 187, 173, 0);
  scrollbar-width: thin;
}
@media all and (min-width: 769px) {
  section.section.contact p.privacy_contents {
    min-height: 13.1rem;
  }
  section.section.contact p.privacy_contents else {
    min-height: 131;
  }
}
@media all and (max-width: 768px) {
  section.section.contact p.privacy_contents {
    min-height: 13.1rem;
  }
  section.section.contact p.privacy_contents else {
    min-height: 131;
  }
}
@media all and (min-width: 769px) {
  section.section.contact p.privacy_contents {
    font-size: 1rem;
  }
  section.section.contact p.privacy_contents else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  section.section.contact p.privacy_contents {
    font-size: 1rem;
  }
  section.section.contact p.privacy_contents else {
    font-size: 10;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=name_1],
  section.section.contact input[name=name_2],
  section.section.contact input[name=read_1],
  section.section.contact input[name=read_2] {
    width: 19rem;
  }
  section.section.contact input[name=name_1] else,
  section.section.contact input[name=name_2] else,
  section.section.contact input[name=read_1] else,
  section.section.contact input[name=read_2] else {
    width: 190;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=name_1],
  section.section.contact input[name=name_2],
  section.section.contact input[name=read_1],
  section.section.contact input[name=read_2] {
    width: 15.5rem;
  }
  section.section.contact input[name=name_1] else,
  section.section.contact input[name=name_2] else,
  section.section.contact input[name=read_1] else,
  section.section.contact input[name=read_2] else {
    width: 155;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=phone_1],
  section.section.contact input[name=phone_2],
  section.section.contact input[name=phone_3] {
    width: 10rem;
  }
  section.section.contact input[name=phone_1] else,
  section.section.contact input[name=phone_2] else,
  section.section.contact input[name=phone_3] else {
    width: 100;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=phone_1],
  section.section.contact input[name=phone_2],
  section.section.contact input[name=phone_3] {
    width: 9.1rem;
  }
  section.section.contact input[name=phone_1] else,
  section.section.contact input[name=phone_2] else,
  section.section.contact input[name=phone_3] else {
    width: 91;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=phone_1],
  section.section.contact input[name=phone_2],
  section.section.contact input[name=phone_3] {
    margin-left: 1.5rem;
  }
  section.section.contact input[name=phone_1] else,
  section.section.contact input[name=phone_2] else,
  section.section.contact input[name=phone_3] else {
    margin-left: 15;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=phone_1],
  section.section.contact input[name=phone_2],
  section.section.contact input[name=phone_3] {
    margin-left: 0.5rem;
  }
  section.section.contact input[name=phone_1] else,
  section.section.contact input[name=phone_2] else,
  section.section.contact input[name=phone_3] else {
    margin-left: 5;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=phone_1],
  section.section.contact input[name=phone_2],
  section.section.contact input[name=phone_3] {
    margin-right: 1.5rem;
  }
  section.section.contact input[name=phone_1] else,
  section.section.contact input[name=phone_2] else,
  section.section.contact input[name=phone_3] else {
    margin-right: 15;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=phone_1],
  section.section.contact input[name=phone_2],
  section.section.contact input[name=phone_3] {
    margin-right: 0.5rem;
  }
  section.section.contact input[name=phone_1] else,
  section.section.contact input[name=phone_2] else,
  section.section.contact input[name=phone_3] else {
    margin-right: 5;
  }
}
section.section.contact input[name=phone_1] {
  margin-left: 0;
}
section.section.contact input[name=phone_3] {
  margin-right: 0;
}
@media all and (min-width: 769px) {
  section.section.contact input[name=zip_1] {
    width: 14.5rem;
  }
  section.section.contact input[name=zip_1] else {
    width: 145;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=zip_1] {
    width: 10rem;
  }
  section.section.contact input[name=zip_1] else {
    width: 100;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=zip_1] {
    margin-right: 1.6rem;
  }
  section.section.contact input[name=zip_1] else {
    margin-right: 16;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=zip_1] {
    margin-right: 1rem;
  }
  section.section.contact input[name=zip_1] else {
    margin-right: 10;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=zip_2] {
    width: 20rem;
  }
  section.section.contact input[name=zip_2] else {
    width: 200;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=zip_2] {
    width: 19.5rem;
  }
  section.section.contact input[name=zip_2] else {
    width: 195;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input[name=zip_2] {
    margin-left: 1.6rem;
  }
  section.section.contact input[name=zip_2] else {
    margin-left: 16;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input[name=zip_2] {
    margin-left: 1rem;
  }
  section.section.contact input[name=zip_2] else {
    margin-left: 10;
  }
}
@media all and (min-width: 769px) {
  section.section.contact input + input {
    margin-left: 1rem;
  }
  section.section.contact input + input else {
    margin-left: 10;
  }
}
@media all and (max-width: 768px) {
  section.section.contact input + input {
    margin-left: 1.5rem;
  }
  section.section.contact input + input else {
    margin-left: 15;
  }
}
section.section.contact form#mail_form dl dt span.required {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form dl dt span.required {
    width: 1rem;
  }
  section.section.contact form#mail_form dl dt span.required else {
    width: 10;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form dl dt span.required {
    width: 1rem;
  }
  section.section.contact form#mail_form dl dt span.required else {
    width: 10;
  }
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form dl dt span.required {
    height: 1rem;
  }
  section.section.contact form#mail_form dl dt span.required else {
    height: 10;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form dl dt span.required {
    height: 1rem;
  }
  section.section.contact form#mail_form dl dt span.required else {
    height: 10;
  }
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form dl dt span.required {
    margin-right: 0.7rem;
  }
  section.section.contact form#mail_form dl dt span.required else {
    margin-right: 7;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form dl dt span.required {
    margin-right: 0.7rem;
  }
  section.section.contact form#mail_form dl dt span.required else {
    margin-right: 7;
  }
}
section.section.contact form#mail_form dl dt span.required::after {
  content: "＊";
  font-weight: 500;
  font-style: normal;
  position: absolute;
  color: var(--commonGreen);
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form dl dt span.required::after {
    font-size: 1rem;
  }
  section.section.contact form#mail_form dl dt span.required::after else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form dl dt span.required::after {
    font-size: 1rem;
  }
  section.section.contact form#mail_form dl dt span.required::after else {
    font-size: 10;
  }
}
section.section.contact form#mail_form dl dd span.error_blank,
section.section.contact form#mail_form dl dd span.error_format,
section.section.contact form#mail_form dl dd span.error_match {
  display: none;
}
section.section.contact .error-message {
  display: none;
  color: #C55A5A;
  text-align: center;
  letter-spacing: 0.031em;
  font-weight: 500;
  line-height: 1.6;
}
@media all and (min-width: 769px) {
  section.section.contact .error-message {
    font-size: 1.3rem;
  }
  section.section.contact .error-message else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  section.section.contact .error-message {
    font-size: 1.2rem;
  }
  section.section.contact .error-message else {
    font-size: 12;
  }
}
@media all and (min-width: 769px) {
  section.section.contact .error-message {
    margin-bottom: 2rem;
  }
  section.section.contact .error-message else {
    margin-bottom: 20;
  }
}
@media all and (max-width: 768px) {
  section.section.contact .error-message {
    margin-bottom: 2rem;
  }
  section.section.contact .error-message else {
    margin-bottom: 20;
  }
}
@media (max-width: 768px) {
  section.section.contact .error-message {
    letter-spacing: 0.033em;
  }
}
section.section.contact .error-message.has-error {
  display: block;
}
section.section.contact form#mail_form p#form_submit,
section.section.contact .back-wrap {
  margin: 0 auto;
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form p#form_submit,
  section.section.contact .back-wrap {
    margin-top: 3rem;
  }
  section.section.contact form#mail_form p#form_submit else,
  section.section.contact .back-wrap else {
    margin-top: 30;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form p#form_submit,
  section.section.contact .back-wrap {
    margin-top: 4rem;
  }
  section.section.contact form#mail_form p#form_submit else,
  section.section.contact .back-wrap else {
    margin-top: 40;
  }
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form p#form_submit,
  section.section.contact .back-wrap {
    width: 47rem;
  }
  section.section.contact form#mail_form p#form_submit else,
  section.section.contact .back-wrap else {
    width: 470;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form p#form_submit,
  section.section.contact .back-wrap {
    width: 35rem;
  }
  section.section.contact form#mail_form p#form_submit else,
  section.section.contact .back-wrap else {
    width: 350;
  }
}
section.section.contact form#mail_form p#form_submit input,
section.section.contact .back-wrap input {
  width: 100%;
}
section.section.contact form#mail_form input[type=button],
section.section.contact a.back {
  -webkit-appearance: none;
  background-color: var(--commonGreen);
  border: none;
  color: #fff;
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form input[type=button],
  section.section.contact a.back {
    height: 6.4rem;
  }
  section.section.contact form#mail_form input[type=button] else,
  section.section.contact a.back else {
    height: 64;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form input[type=button],
  section.section.contact a.back {
    height: 6.8rem;
  }
  section.section.contact form#mail_form input[type=button] else,
  section.section.contact a.back else {
    height: 68;
  }
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form input[type=button],
  section.section.contact a.back {
    border-radius: 4.5rem;
  }
  section.section.contact form#mail_form input[type=button] else,
  section.section.contact a.back else {
    border-radius: 45;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form input[type=button],
  section.section.contact a.back {
    border-radius: 3.4rem;
  }
  section.section.contact form#mail_form input[type=button] else,
  section.section.contact a.back else {
    border-radius: 34;
  }
}
@media all and (min-width: 769px) {
  section.section.contact form#mail_form input[type=button],
  section.section.contact a.back {
    font-size: 2.4rem;
  }
  section.section.contact form#mail_form input[type=button] else,
  section.section.contact a.back else {
    font-size: 24;
  }
}
@media all and (max-width: 768px) {
  section.section.contact form#mail_form input[type=button],
  section.section.contact a.back {
    font-size: 1.7rem;
  }
  section.section.contact form#mail_form input[type=button] else,
  section.section.contact a.back else {
    font-size: 17;
  }
}
@media (hover: hover) and (pointer: fine) {
  section.section.contact form#mail_form input[type=button]:hover,
  section.section.contact a.back:hover {
    cursor: pointer;
  }
}

/* -- loading -------------------------------------------------------------------------------- */
div.loading-layer {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
}

span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffffff;
  transform: translateZ(0);
  animation: load-circle 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@keyframes load-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.scrAnim {
  opacity: 0;
}

.scrAnim.uk-scrollspy-inview {
  opacity: 1;
}

.main-wrap {
  overflow: hidden;
}

.section-inner {
  width: 100%;
  z-index: 1;
  position: relative;
}

/*========= layout ===============*/
section {
  position: relative;
}
@media all and (min-width: 769px) {
  section {
    padding-top: 8rem;
  }
  section else {
    padding-top: 80;
  }
}
@media all and (max-width: 768px) {
  section {
    padding-top: 6.4rem;
  }
  section else {
    padding-top: 64;
  }
}
@media (min-width: 769px) {
  section:first-of-type {
    padding-top: calc(var(--pcHeaderHeight) * 0.1rem);
  }
}
@media (max-width: 768px) {
  section:first-of-type {
    padding-top: calc(var(--spHeaderHeight) * 0.1rem);
  }
}

.bg-light {
  position: relative;
}
.bg-light::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--base);
  mix-blend-mode: soft-light;
  z-index: 0;
}

.section-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 769px) {
  .section-ttl {
    margin-bottom: 4.8rem;
  }
  .section-ttl else {
    margin-bottom: 48;
  }
}
@media all and (max-width: 768px) {
  .section-ttl {
    margin-bottom: 4rem;
  }
  .section-ttl else {
    margin-bottom: 40;
  }
}
.section-ttl .ttl-main {
  color: var(--commonGreen);
  letter-spacing: 0.02em;
}
@media all and (min-width: 769px) {
  .section-ttl .ttl-main {
    font-size: 5rem;
  }
  .section-ttl .ttl-main else {
    font-size: 50;
  }
}
@media all and (max-width: 768px) {
  .section-ttl .ttl-main {
    font-size: 3.5rem;
  }
  .section-ttl .ttl-main else {
    font-size: 35;
  }
}
.section-ttl .ttl-sub {
  letter-spacing: 0.019em;
}
@media all and (min-width: 769px) {
  .section-ttl .ttl-sub {
    margin-top: 0.8rem;
  }
  .section-ttl .ttl-sub else {
    margin-top: 8;
  }
}
@media all and (max-width: 768px) {
  .section-ttl .ttl-sub {
    margin-top: 1rem;
  }
  .section-ttl .ttl-sub else {
    margin-top: 10;
  }
}
@media all and (min-width: 769px) {
  .section-ttl .ttl-sub {
    font-size: 2.1rem;
  }
  .section-ttl .ttl-sub else {
    font-size: 21;
  }
}
@media all and (max-width: 768px) {
  .section-ttl .ttl-sub {
    font-size: 1.6rem;
  }
  .section-ttl .ttl-sub else {
    font-size: 16;
  }
}

.bg-line {
  width: 100%;
  position: absolute;
}
@media all and (min-width: 769px) {
  .bg-line.n1 {
    top: 12.6rem;
  }
  .bg-line.n1 else {
    top: 126;
  }
}
@media all and (max-width: 768px) {
  .bg-line.n1 {
    top: 2.6rem;
  }
  .bg-line.n1 else {
    top: 26;
  }
}
.bg-line.n1 .lineanim {
  stroke: #A3BC9C;
  fill: none;
  stroke-width: 1;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
@media all and (min-width: 769px) {
  .bg-line.n2 {
    top: 118.8rem;
  }
  .bg-line.n2 else {
    top: 1188;
  }
}
@media all and (max-width: 768px) {
  .bg-line.n2 {
    top: 76.5rem;
  }
  .bg-line.n2 else {
    top: 765;
  }
}
@media all and (min-width: 769px) {
  .bg-line.n3 {
    top: 188rem;
  }
  .bg-line.n3 else {
    top: 1880;
  }
}
@media all and (max-width: 768px) {
  .bg-line.n3 {
    top: 138.3rem;
  }
  .bg-line.n3 else {
    top: 1383;
  }
}
@media all and (min-width: 769px) {
  .bg-line.n4 {
    top: 242rem;
  }
  .bg-line.n4 else {
    top: 2420;
  }
}
@media all and (max-width: 768px) {
  .bg-line.n4 {
    top: 292.7rem;
  }
  .bg-line.n4 else {
    top: 2927;
  }
}
@media (max-width: 768px) {
  .bg-line.n5 {
    top: 367.5rem;
  }
}

.section.kv .section-inner {
  position: relative;
}
@media all and (min-width: 769px) {
  .section.kv .section-inner {
    height: 73rem;
  }
  .section.kv .section-inner else {
    height: 730;
  }
}
@media all and (max-width: 768px) {
  .section.kv .section-inner {
    height: 50.9rem;
  }
  .section.kv .section-inner else {
    height: 509;
  }
}
@media screen and (min-width: 1280px) {
  .section.kv .section-inner {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
.section.kv .chunk span {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.section.kv .kv-txt-wrap {
  position: absolute;
}
@media all and (min-width: 769px) {
  .section.kv .kv-txt-wrap {
    top: 11rem;
  }
  .section.kv .kv-txt-wrap else {
    top: 110;
  }
}
@media all and (max-width: 768px) {
  .section.kv .kv-txt-wrap {
    top: 3.4rem;
  }
  .section.kv .kv-txt-wrap else {
    top: 34;
  }
}
@media all and (min-width: 769px) {
  .section.kv .kv-txt-wrap {
    left: 91.1rem;
  }
  .section.kv .kv-txt-wrap else {
    left: 911;
  }
}
@media all and (max-width: 768px) {
  .section.kv .kv-txt-wrap {
    left: 28.1rem;
  }
  .section.kv .kv-txt-wrap else {
    left: 281;
  }
}
.section.kv .kv-txt {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  .section.kv .kv-txt {
    gap: 3.5rem;
  }
  .section.kv .kv-txt else {
    gap: 35;
  }
}
@media all and (max-width: 768px) {
  .section.kv .kv-txt {
    gap: 2rem;
  }
  .section.kv .kv-txt else {
    gap: 20;
  }
}
@media all and (min-width: 769px) {
  .section.kv .kv-txt {
    font-size: 3.5rem;
  }
  .section.kv .kv-txt else {
    font-size: 35;
  }
}
@media all and (max-width: 768px) {
  .section.kv .kv-txt {
    font-size: 2rem;
  }
  .section.kv .kv-txt else {
    font-size: 20;
  }
}
.section.kv .kv-txt * {
  letter-spacing: 0.4em;
}
@media (max-width: 768px) {
  .section.kv .kv-txt * {
    letter-spacing: 0.41em;
  }
}
.section.kv .kv-txt .chunk {
  display: block;
  visibility: hidden;
}
@media all and (min-width: 769px) {
  .section.kv .kv-txt .chunk:last-of-type {
    margin-top: 6.2rem;
  }
  .section.kv .kv-txt .chunk:last-of-type else {
    margin-top: 62;
  }
}
@media all and (max-width: 768px) {
  .section.kv .kv-txt .chunk:last-of-type {
    margin-top: 6.2rem;
  }
  .section.kv .kv-txt .chunk:last-of-type else {
    margin-top: 62;
  }
}
.section.kv .pic {
  display: none;
  overflow: hidden;
  position: absolute;
}
@media all and (min-width: 769px) {
  .section.kv .pic {
    border-radius: 1.6rem;
  }
  .section.kv .pic else {
    border-radius: 16;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic {
    border-radius: 0.8rem;
  }
  .section.kv .pic else {
    border-radius: 8;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n1 {
    width: 28rem;
  }
  .section.kv .pic.n1 else {
    width: 280;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n1 {
    width: 12rem;
  }
  .section.kv .pic.n1 else {
    width: 120;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n1 {
    top: 4.5rem;
  }
  .section.kv .pic.n1 else {
    top: 45;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n1 {
    top: 2.7rem;
  }
  .section.kv .pic.n1 else {
    top: 27;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n1 {
    left: -2rem;
  }
  .section.kv .pic.n1 else {
    left: -20;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n1 {
    left: -8.6rem;
  }
  .section.kv .pic.n1 else {
    left: -86;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n2 {
    border-radius: 2.6rem;
  }
  .section.kv .pic.n2 else {
    border-radius: 26;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n2 {
    border-radius: 1rem;
  }
  .section.kv .pic.n2 else {
    border-radius: 10;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n2 {
    width: 30rem;
  }
  .section.kv .pic.n2 else {
    width: 300;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n2 {
    width: 19rem;
  }
  .section.kv .pic.n2 else {
    width: 190;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n2 {
    top: 16.2rem;
  }
  .section.kv .pic.n2 else {
    top: 162;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n2 {
    top: 12rem;
  }
  .section.kv .pic.n2 else {
    top: 120;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n2 {
    left: 49rem;
  }
  .section.kv .pic.n2 else {
    left: 490;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n2 {
    left: 5.6rem;
  }
  .section.kv .pic.n2 else {
    left: 56;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n3 {
    width: 19rem;
  }
  .section.kv .pic.n3 else {
    width: 190;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n3 {
    width: 12rem;
  }
  .section.kv .pic.n3 else {
    width: 120;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n3 {
    top: 29.7rem;
  }
  .section.kv .pic.n3 else {
    top: 297;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n3 {
    top: 38rem;
  }
  .section.kv .pic.n3 else {
    top: 380;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n3 {
    left: 113.8rem;
  }
  .section.kv .pic.n3 else {
    left: 1138;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n3 {
    left: 31.5rem;
  }
  .section.kv .pic.n3 else {
    left: 315;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n4 {
    width: 22rem;
  }
  .section.kv .pic.n4 else {
    width: 220;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n4 {
    width: 10rem;
  }
  .section.kv .pic.n4 else {
    width: 100;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n4 {
    top: 46.2rem;
  }
  .section.kv .pic.n4 else {
    top: 462;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n4 {
    top: 34.8rem;
  }
  .section.kv .pic.n4 else {
    top: 348;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n4 {
    left: 19.5rem;
  }
  .section.kv .pic.n4 else {
    left: 195;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n4 {
    left: 2rem;
  }
  .section.kv .pic.n4 else {
    left: 20;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n5 {
    width: 19rem;
  }
  .section.kv .pic.n5 else {
    width: 190;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n5 {
    width: 12rem;
  }
  .section.kv .pic.n5 else {
    width: 120;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n5 {
    top: 82.6rem;
  }
  .section.kv .pic.n5 else {
    top: 826;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n5 {
    top: 104.5rem;
  }
  .section.kv .pic.n5 else {
    top: 1045;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n5 {
    left: -4.1rem;
  }
  .section.kv .pic.n5 else {
    left: -41;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n5 {
    left: -2.1rem;
  }
  .section.kv .pic.n5 else {
    left: -21;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n6 {
    border-radius: 2.6rem;
  }
  .section.kv .pic.n6 else {
    border-radius: 26;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n6 {
    border-radius: 1rem;
  }
  .section.kv .pic.n6 else {
    border-radius: 10;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n6 {
    width: 30rem;
  }
  .section.kv .pic.n6 else {
    width: 300;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n6 {
    width: 19rem;
  }
  .section.kv .pic.n6 else {
    width: 190;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n6 {
    top: 68.9rem;
  }
  .section.kv .pic.n6 else {
    top: 689;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n6 {
    top: 97.5rem;
  }
  .section.kv .pic.n6 else {
    top: 975;
  }
}
@media all and (min-width: 769px) {
  .section.kv .pic.n6 {
    left: 100rem;
  }
  .section.kv .pic.n6 else {
    left: 1000;
  }
}
@media all and (max-width: 768px) {
  .section.kv .pic.n6 {
    left: 21.9rem;
  }
  .section.kv .pic.n6 else {
    left: 219;
  }
}
@media (max-width: 768px) {
  .section.kv .pic.n5, .section.kv .pic.n6 {
    display: block !important;
    opacity: 1 !important;
  }
}

.section.lead {
  padding-top: 0;
}

.lead-block {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .lead-block {
    width: 60rem;
  }
  .lead-block else {
    width: 600;
  }
}
@media all and (max-width: 768px) {
  .lead-block {
    width: 32.5rem;
  }
  .lead-block else {
    width: 325;
  }
}
@media all and (min-width: 769px) {
  .lead-block {
    gap: 1.5rem;
  }
  .lead-block else {
    gap: 15;
  }
}
@media all and (max-width: 768px) {
  .lead-block {
    gap: 1rem;
  }
  .lead-block else {
    gap: 10;
  }
}
.lead-block .txt {
  line-height: 2.5;
  letter-spacing: 0.15em;
  text-align: center;
}
@media all and (min-width: 769px) {
  .lead-block .txt {
    font-size: 1.6rem;
  }
  .lead-block .txt else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .lead-block .txt {
    font-size: 1.4rem;
  }
  .lead-block .txt else {
    font-size: 14;
  }
}

@media (max-width: 768px) {
  .section.service {
    padding-top: 25.6rem;
  }
}

.service-list-block {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 769px) {
  .service-list-block {
    gap: 5rem;
  }
  .service-list-block else {
    gap: 50;
  }
}
@media all and (max-width: 768px) {
  .service-list-block {
    gap: 5rem;
  }
  .service-list-block else {
    gap: 50;
  }
}
@media (min-width: 769px) {
  .service-list-block {
    max-width: 106rem;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service-list-block {
    flex-direction: column;
    align-items: center;
  }
}

.service-list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (min-width: 769px) {
  .service-list-item {
    width: 32rem;
  }
  .service-list-item else {
    width: 320;
  }
}
@media all and (max-width: 768px) {
  .service-list-item {
    width: 31.5rem;
  }
  .service-list-item else {
    width: 315;
  }
}
.service-list-item .pic {
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .service-list-item .pic {
    border-radius: 1.6rem;
  }
  .service-list-item .pic else {
    border-radius: 16;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .pic {
    border-radius: 0.8rem;
  }
  .service-list-item .pic else {
    border-radius: 8;
  }
}
.service-list-item .ttl-wrap {
  display: flex;
  align-items: flex-end;
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap {
    margin-top: 0.9rem;
  }
  .service-list-item .ttl-wrap else {
    margin-top: 9;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap {
    margin-top: 0.9rem;
  }
  .service-list-item .ttl-wrap else {
    margin-top: 9;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap .ico-service {
    width: 6rem;
  }
  .service-list-item .ttl-wrap .ico-service else {
    width: 60;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap .ico-service {
    width: 5.2rem;
  }
  .service-list-item .ttl-wrap .ico-service else {
    width: 52;
  }
}
.service-list-item .ttl-wrap .ico-service svg {
  fill: var(--color1);
}
.service-list-item .ttl-wrap .ttl {
  z-index: 1;
  white-space: nowrap;
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap .ttl {
    margin-bottom: 2.4rem;
  }
  .service-list-item .ttl-wrap .ttl else {
    margin-bottom: 24;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap .ttl {
    margin-bottom: 1.9rem;
  }
  .service-list-item .ttl-wrap .ttl else {
    margin-bottom: 19;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap .ttl {
    margin-left: -2rem;
  }
  .service-list-item .ttl-wrap .ttl else {
    margin-left: -20;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap .ttl {
    margin-left: -1.2rem;
  }
  .service-list-item .ttl-wrap .ttl else {
    margin-left: -12;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap .ttl {
    font-size: 2rem;
  }
  .service-list-item .ttl-wrap .ttl else {
    font-size: 20;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap .ttl {
    font-size: 1.8rem;
  }
  .service-list-item .ttl-wrap .ttl else {
    font-size: 18;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap .small {
    margin-left: -1rem;
  }
  .service-list-item .ttl-wrap .small else {
    margin-left: -10;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap .small {
    margin-left: -0.8rem;
  }
  .service-list-item .ttl-wrap .small else {
    margin-left: -8;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .ttl-wrap .small {
    font-size: 1.3rem;
  }
  .service-list-item .ttl-wrap .small else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .ttl-wrap .small {
    font-size: 1.1rem;
  }
  .service-list-item .ttl-wrap .small else {
    font-size: 11;
  }
}
@media (max-width: 768px) {
  .service-list-item.kumazasa .ttl-wrap {
    margin-left: 0.8rem;
  }
}
@media (max-width: 768px) {
  .service-list-item.golf .ttl-wrap {
    margin-top: 1.6rem;
    margin-bottom: -0.8rem;
  }
}
@media all and (min-width: 769px) {
  .service-list-item.golf .ttl-wrap .ttl {
    margin-bottom: 1.9rem;
  }
  .service-list-item.golf .ttl-wrap .ttl else {
    margin-bottom: 19;
  }
}
@media all and (max-width: 768px) {
  .service-list-item.golf .ttl-wrap .ttl {
    margin-bottom: 2.6rem;
  }
  .service-list-item.golf .ttl-wrap .ttl else {
    margin-bottom: 26;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .txt-wrap {
    margin-top: -0.4rem;
  }
  .service-list-item .txt-wrap else {
    margin-top: -4;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .txt-wrap {
    margin-top: 0.1rem;
  }
  .service-list-item .txt-wrap else {
    margin-top: 1;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .txt-wrap {
    margin-bottom: 2.4rem;
  }
  .service-list-item .txt-wrap else {
    margin-bottom: 24;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .txt-wrap {
    margin-bottom: 2.4rem;
  }
  .service-list-item .txt-wrap else {
    margin-bottom: 24;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .txt-wrap {
    padding: 0rem 1rem;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .txt-wrap {
    padding: 0rem 0.8rem;
  }
}
.service-list-item .txt-wrap .txt {
  line-height: 1.92;
  letter-spacing: 0.138em;
}
@media all and (min-width: 769px) {
  .service-list-item .txt-wrap .txt {
    font-size: 1.3rem;
  }
  .service-list-item .txt-wrap .txt else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .txt-wrap .txt {
    font-size: 1.3rem;
  }
  .service-list-item .txt-wrap .txt else {
    font-size: 13;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .txt-wrap .txt + .txt {
    margin-top: 1.1rem;
  }
  .service-list-item .txt-wrap .txt + .txt else {
    margin-top: 11;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .txt-wrap .txt + .txt {
    margin-top: 1.1rem;
  }
  .service-list-item .txt-wrap .txt + .txt else {
    margin-top: 11;
  }
}
.service-list-item .btn-more {
  margin-left: auto;
  color: var(--key);
  border: 1px solid var(--key);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more {
    width: 13.2rem;
  }
  .service-list-item .btn-more else {
    width: 132;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more {
    width: 13.2rem;
  }
  .service-list-item .btn-more else {
    width: 132;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more {
    height: 3.1rem;
  }
  .service-list-item .btn-more else {
    height: 31;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more {
    height: 3.1rem;
  }
  .service-list-item .btn-more else {
    height: 31;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more {
    border-radius: 1.8rem;
  }
  .service-list-item .btn-more else {
    border-radius: 18;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more {
    border-radius: 1.8rem;
  }
  .service-list-item .btn-more else {
    border-radius: 18;
  }
}
@media (min-width: 769px) {
  .service-list-item .btn-more {
    margin-right: 1rem;
    margin-top: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .service-list-item .btn-more.btn:hover {
    opacity: 1;
    background: var(--key);
    color: #fff;
  }
  .service-list-item .btn-more.btn:hover .ico-arrow svg {
    fill: #fff;
  }
}
.service-list-item .btn-more .btn-txt {
  letter-spacing: 0.02em;
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more .btn-txt {
    font-size: 1.5rem;
  }
  .service-list-item .btn-more .btn-txt else {
    font-size: 15;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more .btn-txt {
    font-size: 1.5rem;
  }
  .service-list-item .btn-more .btn-txt else {
    font-size: 15;
  }
}
.service-list-item .btn-more .ico-arrow svg {
  fill: var(--key);
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more .ico-arrow svg {
    width: 0.7rem;
  }
  .service-list-item .btn-more .ico-arrow svg else {
    width: 7;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more .ico-arrow svg {
    width: 0.7rem;
  }
  .service-list-item .btn-more .ico-arrow svg else {
    width: 7;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more .ico-arrow svg {
    margin-left: 1.3rem;
  }
  .service-list-item .btn-more .ico-arrow svg else {
    margin-left: 13;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more .ico-arrow svg {
    margin-left: 1.3rem;
  }
  .service-list-item .btn-more .ico-arrow svg else {
    margin-left: 13;
  }
}
@media all and (min-width: 769px) {
  .service-list-item .btn-more .ico-arrow svg {
    margin-right: -0.5rem;
  }
  .service-list-item .btn-more .ico-arrow svg else {
    margin-right: -5;
  }
}
@media all and (max-width: 768px) {
  .service-list-item .btn-more .ico-arrow svg {
    margin-right: -0.5rem;
  }
  .service-list-item .btn-more .ico-arrow svg else {
    margin-right: -5;
  }
}

.voice-list-block-inner {
  display: flex;
}

.voice-list-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media all and (min-width: 769px) {
  .voice-list-item {
    margin: 0rem 2rem;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item {
    margin: 0rem 0.6rem;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item {
    width: 35rem;
  }
  .voice-list-item else {
    width: 350;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item {
    width: 30rem;
  }
  .voice-list-item else {
    width: 300;
  }
}
@media (max-width: 768px) {
  .voice-list-item {
    flex-shrink: 0;
  }
}
.voice-list-item .ttl-wrap {
  background-color: var(--key);
  display: flex;
  align-items: center;
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap {
    padding: 1.2rem 3rem 1.2rem;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap {
    padding: 1rem 2rem 1rem;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap {
    border-top-right-radius: 2rem;
  }
  .voice-list-item .ttl-wrap else {
    border-top-right-radius: 20;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap {
    border-top-right-radius: 1.5rem;
  }
  .voice-list-item .ttl-wrap else {
    border-top-right-radius: 15;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap {
    border-top-left-radius: 2rem;
  }
  .voice-list-item .ttl-wrap else {
    border-top-left-radius: 20;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap {
    border-top-left-radius: 1.5rem;
  }
  .voice-list-item .ttl-wrap else {
    border-top-left-radius: 15;
  }
}
.voice-list-item .ttl-wrap .ico-voice {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap .ico-voice {
    width: 3.6rem;
  }
  .voice-list-item .ttl-wrap .ico-voice else {
    width: 36;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap .ico-voice {
    width: 2.8rem;
  }
  .voice-list-item .ttl-wrap .ico-voice else {
    width: 28;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap .ico-voice {
    height: 3.6rem;
  }
  .voice-list-item .ttl-wrap .ico-voice else {
    height: 36;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap .ico-voice {
    height: 2.8rem;
  }
  .voice-list-item .ttl-wrap .ico-voice else {
    height: 28;
  }
}
.voice-list-item .ttl-wrap .ico-voice svg {
  fill: var(--color1);
}
.voice-list-item .ttl-wrap .ttl {
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 1;
  white-space: nowrap;
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap .ttl {
    margin-left: -0.8rem;
  }
  .voice-list-item .ttl-wrap .ttl else {
    margin-left: -8;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap .ttl {
    margin-left: -0.5rem;
  }
  .voice-list-item .ttl-wrap .ttl else {
    margin-left: -5;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap .ttl {
    font-size: 1.6rem;
  }
  .voice-list-item .ttl-wrap .ttl else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap .ttl {
    font-size: 1.4rem;
  }
  .voice-list-item .ttl-wrap .ttl else {
    font-size: 14;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap .small {
    margin-top: 0.8rem;
  }
  .voice-list-item .ttl-wrap .small else {
    margin-top: 8;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap .small {
    margin-top: 0.6rem;
  }
  .voice-list-item .ttl-wrap .small else {
    margin-top: 6;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .ttl-wrap .small {
    font-size: 1rem;
  }
  .voice-list-item .ttl-wrap .small else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .ttl-wrap .small {
    font-size: 1rem;
  }
  .voice-list-item .ttl-wrap .small else {
    font-size: 10;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item.golf .ttl-wrap .ico-voice {
    margin-top: 0.4rem;
  }
  .voice-list-item.golf .ttl-wrap .ico-voice else {
    margin-top: 4;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item.golf .ttl-wrap .ico-voice {
    margin-top: 0.2rem;
  }
  .voice-list-item.golf .ttl-wrap .ico-voice else {
    margin-top: 2;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item.golf .ttl-wrap .ico-voice {
    margin-bottom: -0.4rem;
  }
  .voice-list-item.golf .ttl-wrap .ico-voice else {
    margin-bottom: -4;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item.golf .ttl-wrap .ico-voice {
    margin-bottom: -0.2rem;
  }
  .voice-list-item.golf .ttl-wrap .ico-voice else {
    margin-bottom: -2;
  }
}
@media all and (min-width: 769px) {
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice {
    width: 4.8rem;
  }
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice else {
    width: 48;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice {
    width: 4rem;
  }
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice else {
    width: 40;
  }
}
@media all and (min-width: 769px) {
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice {
    height: 4.8rem;
  }
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice else {
    height: 48;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice {
    height: 4rem;
  }
  [data-pageid=top] .voice-list-item .ttl-wrap .ico-voice else {
    height: 40;
  }
}
.voice-list-item .txt-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #D3D9D2;
  flex-grow: 1;
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap {
    padding: 6rem 2.5rem 3rem 2.5rem;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap {
    padding: 4rem 2rem 2.4rem 1.6rem;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap {
    border-bottom-right-radius: 2rem;
  }
  .voice-list-item .txt-wrap else {
    border-bottom-right-radius: 20;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap {
    border-bottom-right-radius: 1.5rem;
  }
  .voice-list-item .txt-wrap else {
    border-bottom-right-radius: 15;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap {
    border-bottom-left-radius: 2rem;
  }
  .voice-list-item .txt-wrap else {
    border-bottom-left-radius: 20;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap {
    border-bottom-left-radius: 1.5rem;
  }
  .voice-list-item .txt-wrap else {
    border-bottom-left-radius: 15;
  }
}
.voice-list-item .txt-wrap .deco {
  position: absolute;
  z-index: 0;
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .deco {
    width: 4.3rem;
  }
  .voice-list-item .txt-wrap .deco else {
    width: 43;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .deco {
    width: 3.9rem;
  }
  .voice-list-item .txt-wrap .deco else {
    width: 39;
  }
}
.voice-list-item .txt-wrap .deco svg {
  fill: var(--color3);
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .deco.n1 {
    top: 3.5rem;
  }
  .voice-list-item .txt-wrap .deco.n1 else {
    top: 35;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .deco.n1 {
    top: 2.4rem;
  }
  .voice-list-item .txt-wrap .deco.n1 else {
    top: 24;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .deco.n1 {
    left: 1.7rem;
  }
  .voice-list-item .txt-wrap .deco.n1 else {
    left: 17;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .deco.n1 {
    left: 1rem;
  }
  .voice-list-item .txt-wrap .deco.n1 else {
    left: 10;
  }
}
.voice-list-item .txt-wrap .deco.n2 {
  transform: rotate(180deg);
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .deco.n2 {
    right: 1.5rem;
  }
  .voice-list-item .txt-wrap .deco.n2 else {
    right: 15;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .deco.n2 {
    right: 1rem;
  }
  .voice-list-item .txt-wrap .deco.n2 else {
    right: 10;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .deco.n2 {
    bottom: 7.6rem;
  }
  .voice-list-item .txt-wrap .deco.n2 else {
    bottom: 76;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .deco.n2 {
    bottom: 5.9rem;
  }
  .voice-list-item .txt-wrap .deco.n2 else {
    bottom: 59;
  }
}
.voice-list-item .txt-wrap .head-txt {
  z-index: 1;
  position: relative;
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .head-txt {
    font-size: 1.8rem;
  }
  .voice-list-item .txt-wrap .head-txt else {
    font-size: 18;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .head-txt {
    font-size: 1.6rem;
  }
  .voice-list-item .txt-wrap .head-txt else {
    font-size: 16;
  }
}
.voice-list-item .txt-wrap .txt {
  letter-spacing: 0.142em;
  line-height: 1.92;
  z-index: 1;
  margin-bottom: auto;
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .txt {
    margin-top: 1.6rem;
  }
  .voice-list-item .txt-wrap .txt else {
    margin-top: 16;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .txt {
    margin-top: 1.6rem;
  }
  .voice-list-item .txt-wrap .txt else {
    margin-top: 16;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .txt-wrap .txt {
    font-size: 1.2rem;
  }
  .voice-list-item .txt-wrap .txt else {
    font-size: 12;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .txt-wrap .txt {
    font-size: 1.2rem;
  }
  .voice-list-item .txt-wrap .txt else {
    font-size: 12;
  }
}
.voice-list-item .txt-wrap .underline {
  position: relative;
  text-underline-offset: -0.04rem;
  text-decoration-color: var(--color3);
  text-decoration-style: solid;
  text-decoration-line: underline;
  text-decoration-thickness: 0.4rem;
}
.voice-list-item .evaluation {
  display: flex;
  align-items: center;
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation {
    margin-top: 2.9rem;
  }
  .voice-list-item .evaluation else {
    margin-top: 29;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation {
    margin-top: 1.5rem;
  }
  .voice-list-item .evaluation else {
    margin-top: 15;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation {
    gap: 0.6rem;
  }
  .voice-list-item .evaluation else {
    gap: 6;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation {
    gap: 0.6rem;
  }
  .voice-list-item .evaluation else {
    gap: 6;
  }
}
.voice-list-item .evaluation .ico-person {
  display: block;
  border-radius: 50%;
  background: #D3D9D2;
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .ico-person {
    width: 4.2rem;
  }
  .voice-list-item .evaluation .ico-person else {
    width: 42;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .ico-person {
    width: 3.7rem;
  }
  .voice-list-item .evaluation .ico-person else {
    width: 37;
  }
}
.voice-list-item .evaluation .right {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .right {
    margin-top: 0.2rem;
  }
  .voice-list-item .evaluation .right else {
    margin-top: 2;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .right {
    margin-top: 0rem;
  }
  .voice-list-item .evaluation .right else {
    margin-top: 0;
  }
}
.voice-list-item .evaluation .stars {
  display: flex;
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .stars {
    gap: 0.2rem;
  }
  .voice-list-item .evaluation .stars else {
    gap: 2;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .stars {
    gap: 0rem;
  }
  .voice-list-item .evaluation .stars else {
    gap: 0;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .stars {
    padding: 0rem 0.7rem;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .stars {
    padding: 0rem 0.4rem;
  }
}
.voice-list-item .evaluation .stars .star {
  display: flex;
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .stars .star {
    width: 1.5rem;
  }
  .voice-list-item .evaluation .stars .star else {
    width: 15;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .stars .star {
    width: 1.5rem;
  }
  .voice-list-item .evaluation .stars .star else {
    width: 15;
  }
}
.voice-list-item .evaluation .person-info {
  letter-spacing: 0.136em;
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .person-info {
    margin-top: 0.8rem;
  }
  .voice-list-item .evaluation .person-info else {
    margin-top: 8;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .person-info {
    margin-top: 0.7rem;
  }
  .voice-list-item .evaluation .person-info else {
    margin-top: 7;
  }
}
@media all and (min-width: 769px) {
  .voice-list-item .evaluation .person-info {
    font-size: 1.1rem;
  }
  .voice-list-item .evaluation .person-info else {
    font-size: 11;
  }
}
@media all and (max-width: 768px) {
  .voice-list-item .evaluation .person-info {
    font-size: 1rem;
  }
  .voice-list-item .evaluation .person-info else {
    font-size: 10;
  }
}
@media (max-width: 768px) {
  .voice-list-item .evaluation .person-info {
    letter-spacing: 0.14em;
  }
}

@media all and (min-width: 769px) {
  [data-pageid=kumazasa] .voice-list-item .ttl-wrap,
  [data-pageid=locogol] .voice-list-item .ttl-wrap,
  [data-pageid=golf] .voice-list-item .ttl-wrap {
    padding: 0.3rem 2.4rem;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=kumazasa] .voice-list-item .ttl-wrap,
  [data-pageid=locogol] .voice-list-item .ttl-wrap,
  [data-pageid=golf] .voice-list-item .ttl-wrap {
    padding: 0.6rem 2rem;
  }
}
@media all and (min-width: 769px) {
  [data-pageid=kumazasa] .voice-list-item .ttl-wrap .ico-voice,
  [data-pageid=locogol] .voice-list-item .ttl-wrap .ico-voice,
  [data-pageid=golf] .voice-list-item .ttl-wrap .ico-voice {
    width: 3.6rem;
  }
  [data-pageid=kumazasa] .voice-list-item .ttl-wrap .ico-voice else,
  [data-pageid=locogol] .voice-list-item .ttl-wrap .ico-voice else,
  [data-pageid=golf] .voice-list-item .ttl-wrap .ico-voice else {
    width: 36;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=kumazasa] .voice-list-item .ttl-wrap .ico-voice,
  [data-pageid=locogol] .voice-list-item .ttl-wrap .ico-voice,
  [data-pageid=golf] .voice-list-item .ttl-wrap .ico-voice {
    width: 2.8rem;
  }
  [data-pageid=kumazasa] .voice-list-item .ttl-wrap .ico-voice else,
  [data-pageid=locogol] .voice-list-item .ttl-wrap .ico-voice else,
  [data-pageid=golf] .voice-list-item .ttl-wrap .ico-voice else {
    width: 28;
  }
}
@media all and (min-width: 769px) {
  [data-pageid=kumazasa] .voice-list-item .txt-wrap,
  [data-pageid=locogol] .voice-list-item .txt-wrap,
  [data-pageid=golf] .voice-list-item .txt-wrap {
    padding-top: 4rem;
  }
  [data-pageid=kumazasa] .voice-list-item .txt-wrap else,
  [data-pageid=locogol] .voice-list-item .txt-wrap else,
  [data-pageid=golf] .voice-list-item .txt-wrap else {
    padding-top: 40;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=kumazasa] .voice-list-item .txt-wrap,
  [data-pageid=locogol] .voice-list-item .txt-wrap,
  [data-pageid=golf] .voice-list-item .txt-wrap {
    padding-top: 3rem;
  }
  [data-pageid=kumazasa] .voice-list-item .txt-wrap else,
  [data-pageid=locogol] .voice-list-item .txt-wrap else,
  [data-pageid=golf] .voice-list-item .txt-wrap else {
    padding-top: 30;
  }
}

@media all and (min-width: 769px) {
  .section.profile .section-inner {
    padding-bottom: 11.8rem;
  }
  .section.profile .section-inner else {
    padding-bottom: 118;
  }
}
@media all and (max-width: 768px) {
  .section.profile .section-inner {
    padding-bottom: 9.5rem;
  }
  .section.profile .section-inner else {
    padding-bottom: 95;
  }
}

.profile-block {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .profile-block {
    flex-direction: column;
    gap: 3rem;
  }
}
@media (min-width: 769px) {
  .profile-block .pic-wrap {
    margin-right: -4.4rem;
  }
}
.profile-block .pic-wrap .pic {
  overflow: hidden;
  position: relative;
}
@media all and (min-width: 769px) {
  .profile-block .pic-wrap .pic.n1 {
    width: 39.5rem;
  }
  .profile-block .pic-wrap .pic.n1 else {
    width: 395;
  }
}
@media all and (max-width: 768px) {
  .profile-block .pic-wrap .pic.n1 {
    width: 28.8rem;
  }
  .profile-block .pic-wrap .pic.n1 else {
    width: 288;
  }
}
@media all and (min-width: 769px) {
  .profile-block .pic-wrap .pic.n1 {
    border-radius: 2rem;
  }
  .profile-block .pic-wrap .pic.n1 else {
    border-radius: 20;
  }
}
@media all and (max-width: 768px) {
  .profile-block .pic-wrap .pic.n1 {
    border-radius: 1rem;
  }
  .profile-block .pic-wrap .pic.n1 else {
    border-radius: 10;
  }
}
@media (max-width: 768px) {
  .profile-block .pic-wrap .pic.n1 {
    margin-left: auto;
    margin-right: 1.6rem;
  }
}
@media (min-width: 769px) {
  .profile-block .pic-wrap .pic.n2 {
    margin-top: 2.4rem;
    margin-left: -5rem;
    position: absolute;
  }
}
@media (max-width: 768px) {
  .profile-block .pic-wrap .pic.n2 {
    margin-top: -1.1rem;
    margin-left: 3.1rem;
    margin-right: auto;
  }
}
@media all and (min-width: 769px) {
  .profile-block .pic-wrap .pic.n2 {
    width: 26.2rem;
  }
  .profile-block .pic-wrap .pic.n2 else {
    width: 262;
  }
}
@media all and (max-width: 768px) {
  .profile-block .pic-wrap .pic.n2 {
    width: 19.1rem;
  }
  .profile-block .pic-wrap .pic.n2 else {
    width: 191;
  }
}
@media all and (min-width: 769px) {
  .profile-block .pic-wrap .pic.n2 {
    border-radius: 1.8rem;
  }
  .profile-block .pic-wrap .pic.n2 else {
    border-radius: 18;
  }
}
@media all and (max-width: 768px) {
  .profile-block .pic-wrap .pic.n2 {
    border-radius: 0.8rem;
  }
  .profile-block .pic-wrap .pic.n2 else {
    border-radius: 8;
  }
}
.profile-block .txt-wrap {
  background-color: #D3D9D2;
}
@media all and (min-width: 769px) {
  .profile-block .txt-wrap {
    margin-top: 4.6rem;
  }
  .profile-block .txt-wrap else {
    margin-top: 46;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt-wrap {
    margin-top: 0rem;
  }
  .profile-block .txt-wrap else {
    margin-top: 0;
  }
}
@media all and (min-width: 769px) {
  .profile-block .txt-wrap {
    padding: 5rem 6rem 4rem 8rem;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt-wrap {
    padding: 4rem 1.8rem 4rem 2rem;
  }
}
@media all and (min-width: 769px) {
  .profile-block .txt-wrap {
    width: 54rem;
  }
  .profile-block .txt-wrap else {
    width: 540;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt-wrap {
    width: 34rem;
  }
  .profile-block .txt-wrap else {
    width: 340;
  }
}
@media all and (min-width: 769px) {
  .profile-block .txt-wrap {
    border-radius: 2rem;
  }
  .profile-block .txt-wrap else {
    border-radius: 20;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt-wrap {
    border-radius: 1.4rem;
  }
  .profile-block .txt-wrap else {
    border-radius: 14;
  }
}
@media (max-width: 768px) {
  .profile-block .txt-wrap {
    margin: 0 auto;
  }
}
@media all and (min-width: 769px) {
  .profile-block .name {
    font-size: 2.4rem;
  }
  .profile-block .name else {
    font-size: 24;
  }
}
@media all and (max-width: 768px) {
  .profile-block .name {
    font-size: 1.9rem;
  }
  .profile-block .name else {
    font-size: 19;
  }
}
.profile-block .name .small {
  letter-spacing: 0.018em;
  color: var(--commonGreen);
}
@media all and (min-width: 769px) {
  .profile-block .name .small {
    margin-left: 0rem;
  }
  .profile-block .name .small else {
    margin-left: 0;
  }
}
@media all and (max-width: 768px) {
  .profile-block .name .small {
    margin-left: 0.4rem;
  }
  .profile-block .name .small else {
    margin-left: 4;
  }
}
@media all and (min-width: 769px) {
  .profile-block .name .small {
    font-size: 1.7rem;
  }
  .profile-block .name .small else {
    font-size: 17;
  }
}
@media all and (max-width: 768px) {
  .profile-block .name .small {
    font-size: 1.6rem;
  }
  .profile-block .name .small else {
    font-size: 16;
  }
}
.profile-block .txt {
  line-height: 1.92;
  letter-spacing: 0.142em;
}
@media all and (min-width: 769px) {
  .profile-block .txt {
    margin-top: 2.4rem;
  }
  .profile-block .txt else {
    margin-top: 24;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt {
    margin-top: 2.6rem;
  }
  .profile-block .txt else {
    margin-top: 26;
  }
}
@media all and (min-width: 769px) {
  .profile-block .txt {
    font-size: 1.3rem;
  }
  .profile-block .txt else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt {
    font-size: 1.2rem;
  }
  .profile-block .txt else {
    font-size: 12;
  }
}
.profile-block .txt .chunk {
  line-height: 1.92;
  letter-spacing: 0.142em;
  display: inline-block;
}
@media all and (min-width: 769px) {
  .profile-block .txt .chunk + .chunk {
    margin-top: 1rem;
  }
  .profile-block .txt .chunk + .chunk else {
    margin-top: 10;
  }
}
@media all and (max-width: 768px) {
  .profile-block .txt .chunk + .chunk {
    margin-top: 1rem;
  }
  .profile-block .txt .chunk + .chunk else {
    margin-top: 10;
  }
}

@media all and (min-width: 769px) {
  .kumazasa .section-inner, .locogol .section-inner, .golf .section-inner {
    padding-top: 8rem;
  }
  .kumazasa .section-inner else, .locogol .section-inner else, .golf .section-inner else {
    padding-top: 80;
  }
}
@media all and (max-width: 768px) {
  .kumazasa .section-inner, .locogol .section-inner, .golf .section-inner {
    padding-top: 4rem;
  }
  .kumazasa .section-inner else, .locogol .section-inner else, .golf .section-inner else {
    padding-top: 40;
  }
}

.section__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media all and (min-width: 769px) {
  .section__ttl-txt {
    font-size: 3.5rem;
  }
  .section__ttl-txt else {
    font-size: 35;
  }
}
@media all and (max-width: 768px) {
  .section__ttl-txt {
    font-size: 2.8rem;
  }
  .section__ttl-txt else {
    font-size: 28;
  }
}
@media (max-width: 768px) {
  .section__ttl-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.section__ttl-txt .small {
  display: inline-block;
}
@media all and (min-width: 769px) {
  .section__ttl-txt .small {
    font-size: 2.2rem;
  }
  .section__ttl-txt .small else {
    font-size: 22;
  }
}
@media all and (max-width: 768px) {
  .section__ttl-txt .small {
    font-size: 1.6rem;
  }
  .section__ttl-txt .small else {
    font-size: 16;
  }
}
@media (max-width: 768px) {
  .section__ttl-txt .small {
    margin-top: 1.4rem;
  }
}

@media all and (min-width: 769px) {
  .section__ttl-deco {
    width: 6rem;
  }
  .section__ttl-deco else {
    width: 60;
  }
}
@media all and (max-width: 768px) {
  .section__ttl-deco {
    width: 4rem;
  }
  .section__ttl-deco else {
    width: 40;
  }
}
@media all and (min-width: 769px) {
  .section__ttl-deco {
    margin-top: 4rem;
  }
  .section__ttl-deco else {
    margin-top: 40;
  }
}
@media all and (max-width: 768px) {
  .section__ttl-deco {
    margin-top: 2rem;
  }
  .section__ttl-deco else {
    margin-top: 20;
  }
}
.section__ttl-deco svg {
  fill: var(--key);
}

.intro {
  display: flex;
}
@media all and (min-width: 769px) {
  .intro {
    margin-top: 5rem;
  }
  .intro else {
    margin-top: 50;
  }
}
@media all and (max-width: 768px) {
  .intro {
    margin-top: 3rem;
  }
  .intro else {
    margin-top: 30;
  }
}
@media all and (min-width: 769px) {
  .intro {
    gap: 4rem;
  }
  .intro else {
    gap: 40;
  }
}
@media all and (max-width: 768px) {
  .intro {
    gap: 4rem;
  }
  .intro else {
    gap: 40;
  }
}
@media (min-width: 769px) {
  .intro {
    justify-content: center;
    margin-left: 10rem;
  }
}
@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    align-items: center;
  }
}

.intro__pic {
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .intro__pic {
    width: 38rem;
  }
  .intro__pic else {
    width: 380;
  }
}
@media all and (max-width: 768px) {
  .intro__pic {
    width: 24rem;
  }
  .intro__pic else {
    width: 240;
  }
}
@media all and (min-width: 769px) {
  .intro__pic {
    height: 38rem;
  }
  .intro__pic else {
    height: 380;
  }
}
@media all and (max-width: 768px) {
  .intro__pic {
    height: 24rem;
  }
  .intro__pic else {
    height: 240;
  }
}
@media all and (min-width: 769px) {
  .intro__pic {
    border-radius: 1.6rem;
  }
  .intro__pic else {
    border-radius: 16;
  }
}
@media all and (max-width: 768px) {
  .intro__pic {
    border-radius: 1rem;
  }
  .intro__pic else {
    border-radius: 10;
  }
}

.intro__content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media all and (min-width: 769px) {
  .intro__content {
    width: 64rem;
  }
  .intro__content else {
    width: 640;
  }
}
@media all and (max-width: 768px) {
  .intro__content {
    width: 32.5rem;
  }
  .intro__content else {
    width: 325;
  }
}

.intro__content-ttl {
  line-height: 1.6;
}
@media all and (min-width: 769px) {
  .intro__content-ttl {
    font-size: 2.8rem;
  }
  .intro__content-ttl else {
    font-size: 28;
  }
}
@media all and (max-width: 768px) {
  .intro__content-ttl {
    font-size: 2.1rem;
  }
  .intro__content-ttl else {
    font-size: 21;
  }
}

.intro__content-txt {
  line-height: 2.12;
}
@media all and (min-width: 769px) {
  .intro__content-txt {
    margin-top: 4rem;
  }
  .intro__content-txt else {
    margin-top: 40;
  }
}
@media all and (max-width: 768px) {
  .intro__content-txt {
    margin-top: 2.4rem;
  }
  .intro__content-txt else {
    margin-top: 24;
  }
}
@media all and (min-width: 769px) {
  .intro__content-txt {
    font-size: 1.6rem;
  }
  .intro__content-txt else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .intro__content-txt {
    font-size: 1.4rem;
  }
  .intro__content-txt else {
    font-size: 14;
  }
}
.intro__content-txt .chunk + .chunk {
  display: inline-block;
}
@media all and (min-width: 769px) {
  .intro__content-txt .chunk + .chunk {
    margin-top: 2.4rem;
  }
  .intro__content-txt .chunk + .chunk else {
    margin-top: 24;
  }
}
@media all and (max-width: 768px) {
  .intro__content-txt .chunk + .chunk {
    margin-top: 1.6rem;
  }
  .intro__content-txt .chunk + .chunk else {
    margin-top: 16;
  }
}

.about {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .about {
    padding-top: 8.3rem;
  }
  .about else {
    padding-top: 83;
  }
}
@media all and (max-width: 768px) {
  .about {
    padding-top: 7rem;
  }
  .about else {
    padding-top: 70;
  }
}
@media all and (min-width: 769px) {
  .about {
    padding-bottom: 8rem;
  }
  .about else {
    padding-bottom: 80;
  }
}
@media all and (max-width: 768px) {
  .about {
    padding-bottom: 8rem;
  }
  .about else {
    padding-bottom: 80;
  }
}
@media all and (min-width: 769px) {
  .about {
    width: 58rem;
  }
  .about else {
    width: 580;
  }
}
@media all and (max-width: 768px) {
  .about {
    width: 32.5rem;
  }
  .about else {
    width: 325;
  }
}

.about__item {
  position: relative;
}
@media all and (min-width: 769px) {
  .about__item + .about__item {
    margin-top: 6.4rem;
  }
  .about__item + .about__item else {
    margin-top: 64;
  }
}
@media all and (max-width: 768px) {
  .about__item + .about__item {
    margin-top: 4rem;
  }
  .about__item + .about__item else {
    margin-top: 40;
  }
}
@media (max-width: 768px) {
  .about__item + .about__item.n3 {
    margin-top: 5rem;
  }
}

@media all and (min-width: 769px) {
  .about__item.n1 .about__item-top {
    padding-top: 4.8rem;
  }
  .about__item.n1 .about__item-top else {
    padding-top: 48;
  }
}
@media all and (max-width: 768px) {
  .about__item.n1 .about__item-top {
    padding-top: 5.4rem;
  }
  .about__item.n1 .about__item-top else {
    padding-top: 54;
  }
}
.about__item.n2 .about__item-top {
  margin-left: auto;
}
@media all and (min-width: 769px) {
  .about__item.n2 .about__item-top {
    padding-top: 2.7rem;
  }
  .about__item.n2 .about__item-top else {
    padding-top: 27;
  }
}
@media all and (max-width: 768px) {
  .about__item.n2 .about__item-top {
    padding-top: 11rem;
  }
  .about__item.n2 .about__item-top else {
    padding-top: 110;
  }
}
.about__item.n3 .about__item-top {
  margin-left: auto;
}
@media all and (min-width: 769px) {
  .about__item.n3 .about__item-top {
    padding-top: 8.8rem;
  }
  .about__item.n3 .about__item-top else {
    padding-top: 88;
  }
}
@media all and (max-width: 768px) {
  .about__item.n3 .about__item-top {
    padding-top: 11.6rem;
  }
  .about__item.n3 .about__item-top else {
    padding-top: 116;
  }
}

.about__item-top-pic {
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .about__item-top-pic {
    width: 26.5rem;
  }
  .about__item-top-pic else {
    width: 265;
  }
}
@media all and (max-width: 768px) {
  .about__item-top-pic {
    width: 23rem;
  }
  .about__item-top-pic else {
    width: 230;
  }
}
@media all and (min-width: 769px) {
  .about__item-top-pic {
    border-radius: 0.8rem;
  }
  .about__item-top-pic else {
    border-radius: 8;
  }
}
@media all and (max-width: 768px) {
  .about__item-top-pic {
    border-radius: 0.8rem;
  }
  .about__item-top-pic else {
    border-radius: 8;
  }
}
.about__item.n1 .about__item-top-pic {
  margin-left: auto;
}
@media all and (min-width: 769px) {
  .about__item.n1 .about__item-top-pic {
    margin-right: 3rem;
  }
  .about__item.n1 .about__item-top-pic else {
    margin-right: 30;
  }
}
@media all and (max-width: 768px) {
  .about__item.n1 .about__item-top-pic {
    margin-right: 0rem;
  }
  .about__item.n1 .about__item-top-pic else {
    margin-right: 0;
  }
}
@media all and (min-width: 769px) {
  .about__item.n2 .about__item-top-pic {
    margin-left: 13.1rem;
  }
  .about__item.n2 .about__item-top-pic else {
    margin-left: 131;
  }
}
@media all and (max-width: 768px) {
  .about__item.n2 .about__item-top-pic {
    margin-left: 0rem;
  }
  .about__item.n2 .about__item-top-pic else {
    margin-left: 0;
  }
}
.about__item.n3 .about__item-top-pic {
  margin-left: auto;
}
@media (min-width: 769px) {
  .about__item.n3 .about__item-top-pic {
    margin-left: 16.4rem;
  }
}

.about__item-top-ttl {
  writing-mode: vertical-rl;
  color: var(--commonGreen);
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  letter-spacing: 0.42em;
}
@media all and (min-width: 769px) {
  .about__item-top-ttl {
    font-size: 2.4rem;
  }
  .about__item-top-ttl else {
    font-size: 24;
  }
}
@media all and (max-width: 768px) {
  .about__item-top-ttl {
    font-size: 2.2rem;
  }
  .about__item-top-ttl else {
    font-size: 22;
  }
}
@media all and (min-width: 769px) {
  .about__item-top-ttl {
    gap: 0.2rem;
  }
  .about__item-top-ttl else {
    gap: 2;
  }
}
@media all and (max-width: 768px) {
  .about__item-top-ttl {
    gap: 0.4rem;
  }
  .about__item-top-ttl else {
    gap: 4;
  }
}
@media all and (min-width: 769px) {
  .about__item-top-ttl {
    margin-top: -0.8rem;
  }
  .about__item-top-ttl else {
    margin-top: -8;
  }
}
@media all and (max-width: 768px) {
  .about__item-top-ttl {
    margin-top: 0.5rem;
  }
  .about__item-top-ttl else {
    margin-top: 5;
  }
}
@media (max-width: 768px) {
  .about__item-top-ttl {
    margin-left: 0.3rem;
    margin-right: 0.5rem;
  }
}
@media all and (min-width: 769px) {
  .about__item.n1 .about__item-top-ttl {
    font-size: 2.6rem;
  }
  .about__item.n1 .about__item-top-ttl else {
    font-size: 26;
  }
}
@media all and (max-width: 768px) {
  .about__item.n1 .about__item-top-ttl {
    font-size: 2.2rem;
  }
  .about__item.n1 .about__item-top-ttl else {
    font-size: 22;
  }
}
.about__item.n2 .about__item-top-ttl {
  right: 0;
  left: auto;
}
.about__item-top-ttl .chunk {
  display: block;
  letter-spacing: 0.42em;
  background: #758B73;
  color: #fff;
}
@media all and (min-width: 769px) {
  .about__item-top-ttl .chunk {
    padding: 1.2rem 0.7rem 0.1rem;
  }
}
@media all and (max-width: 768px) {
  .about__item-top-ttl .chunk {
    padding: 0.7rem 0.4rem 0rem;
  }
}
.about__item-top-ttl .chunk + .chunk {
  margin-top: auto;
}
@media all and (min-width: 769px) {
  .about__item.n2 .about__item-top-ttl .chunk + .chunk {
    margin-top: 10.2rem;
  }
  .about__item.n2 .about__item-top-ttl .chunk + .chunk else {
    margin-top: 102;
  }
}
@media all and (max-width: 768px) {
  .about__item.n2 .about__item-top-ttl .chunk + .chunk {
    margin-top: 8.5rem;
  }
  .about__item.n2 .about__item-top-ttl .chunk + .chunk else {
    margin-top: 85;
  }
}
@media all and (min-width: 769px) {
  .about__item.n3 .about__item-top-ttl .chunk + .chunk {
    margin-top: 19.7rem;
  }
  .about__item.n3 .about__item-top-ttl .chunk + .chunk else {
    margin-top: 197;
  }
}
@media all and (max-width: 768px) {
  .about__item.n3 .about__item-top-ttl .chunk + .chunk {
    margin-top: 18.6rem;
  }
  .about__item.n3 .about__item-top-ttl .chunk + .chunk else {
    margin-top: 186;
  }
}

@media all and (min-width: 769px) {
  .about__item-bottom {
    margin-top: 6rem;
  }
  .about__item-bottom else {
    margin-top: 60;
  }
}
@media all and (max-width: 768px) {
  .about__item-bottom {
    margin-top: 4rem;
  }
  .about__item-bottom else {
    margin-top: 40;
  }
}

.about__item-bottom-txt {
  line-height: 1.92;
  letter-spacing: 0.143em;
}
@media all and (min-width: 769px) {
  .about__item-bottom-txt {
    width: 50rem;
  }
  .about__item-bottom-txt else {
    width: 500;
  }
}
@media all and (max-width: 768px) {
  .about__item-bottom-txt {
    width: 30rem;
  }
  .about__item-bottom-txt else {
    width: 300;
  }
}
@media all and (min-width: 769px) {
  .about__item-bottom-txt {
    font-size: 1.4rem;
  }
  .about__item-bottom-txt else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .about__item-bottom-txt {
    font-size: 1.3rem;
  }
  .about__item-bottom-txt else {
    font-size: 13;
  }
}
@media (max-width: 768px) {
  .about__item-bottom-txt {
    letter-spacing: 0.138em;
  }
}
.about__item-bottom-txt + .about__item-bottom-txt {
  margin-left: auto;
}
@media all and (min-width: 769px) {
  .about__item-bottom-txt + .about__item-bottom-txt {
    margin-top: 2rem;
  }
  .about__item-bottom-txt + .about__item-bottom-txt else {
    margin-top: 20;
  }
}
@media all and (max-width: 768px) {
  .about__item-bottom-txt + .about__item-bottom-txt {
    margin-top: 2rem;
  }
  .about__item-bottom-txt + .about__item-bottom-txt else {
    margin-top: 20;
  }
}

.president-talk {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media all and (min-width: 769px) {
  .president-talk {
    margin-top: 14.3rem;
  }
  .president-talk else {
    margin-top: 143;
  }
}
@media all and (max-width: 768px) {
  .president-talk {
    margin-top: 11.7rem;
  }
  .president-talk else {
    margin-top: 117;
  }
}
@media all and (min-width: 769px) {
  .president-talk {
    margin-bottom: 12rem;
  }
  .president-talk else {
    margin-bottom: 120;
  }
}
@media all and (max-width: 768px) {
  .president-talk {
    margin-bottom: 10rem;
  }
  .president-talk else {
    margin-bottom: 100;
  }
}
@media all and (min-width: 769px) {
  .president-talk {
    width: 75rem;
  }
  .president-talk else {
    width: 750;
  }
}
@media all and (max-width: 768px) {
  .president-talk {
    width: 35.5rem;
  }
  .president-talk else {
    width: 355;
  }
}
@media (min-width: 769px) {
  .president-talk {
    background-color: #D3D9D2;
    padding: 5rem 6rem 5rem 12rem;
  }
}
@media (min-width: 769px) and (min-width: 769px) {
  .president-talk {
    border-radius: 2rem;
  }
  .president-talk else {
    border-radius: 20;
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .president-talk {
    border-radius: 1.4rem;
  }
  .president-talk else {
    border-radius: 14;
  }
}
@media (max-width: 768px) {
  .president-talk {
    padding-top: 23.8rem;
  }
}

.president-talk__top {
  display: flex;
}
@media (max-width: 768px) {
  .president-talk__top {
    flex-direction: column;
    position: absolute;
    top: 0;
  }
}

.president-talk__top-ttl {
  writing-mode: vertical-rl;
  white-space: nowrap;
  position: absolute;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.42em;
}
@media all and (min-width: 769px) {
  .president-talk__top-ttl {
    font-size: 2.6rem;
  }
  .president-talk__top-ttl else {
    font-size: 26;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-ttl {
    font-size: 2.2rem;
  }
  .president-talk__top-ttl else {
    font-size: 22;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-ttl {
    top: -4.6rem;
  }
  .president-talk__top-ttl else {
    top: -46;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-ttl {
    top: -4rem;
  }
  .president-talk__top-ttl else {
    top: -40;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-ttl {
    left: 4.4rem;
  }
  .president-talk__top-ttl else {
    left: 44;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-ttl {
    left: 1.5rem;
  }
  .president-talk__top-ttl else {
    left: 15;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-ttl {
    gap: 1.6rem;
  }
  .president-talk__top-ttl else {
    gap: 16;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-ttl {
    gap: 1.2rem;
  }
  .president-talk__top-ttl else {
    gap: 12;
  }
}
@media (max-width: 768px) {
  .president-talk__top-ttl {
    margin-left: -0.3rem;
    margin-right: 0.5rem;
  }
}
.president-talk__top-ttl .chunk {
  display: block;
  letter-spacing: 0.42em;
}
@media all and (min-width: 769px) {
  .president-talk__top-ttl .chunk {
    padding: 1.1rem 0.6rem 0.3rem;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-ttl .chunk {
    padding: 0.8rem 0.3rem 0rem;
  }
}
.president-talk__top-ttl .chunk + .chunk {
  margin-top: auto;
}
@media all and (min-width: 769px) {
  .president-talk__item.n2 .president-talk__top-ttl .chunk + .chunk {
    margin-top: 10.2rem;
  }
  .president-talk__item.n2 .president-talk__top-ttl .chunk + .chunk else {
    margin-top: 102;
  }
}
@media all and (max-width: 768px) {
  .president-talk__item.n2 .president-talk__top-ttl .chunk + .chunk {
    margin-top: 8.5rem;
  }
  .president-talk__item.n2 .president-talk__top-ttl .chunk + .chunk else {
    margin-top: 85;
  }
}
@media all and (min-width: 769px) {
  .president-talk__item.n3 .president-talk__top-ttl .chunk + .chunk {
    margin-top: 19.7rem;
  }
  .president-talk__item.n3 .president-talk__top-ttl .chunk + .chunk else {
    margin-top: 197;
  }
}
@media all and (max-width: 768px) {
  .president-talk__item.n3 .president-talk__top-ttl .chunk + .chunk {
    margin-top: 18.6rem;
  }
  .president-talk__item.n3 .president-talk__top-ttl .chunk + .chunk else {
    margin-top: 186;
  }
}

.president-talk__top-pic {
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .president-talk__top-pic {
    width: 26.4rem;
  }
  .president-talk__top-pic else {
    width: 264;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic {
    width: 21.2rem;
  }
  .president-talk__top-pic else {
    width: 212;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic {
    height: 19.7rem;
  }
  .president-talk__top-pic else {
    height: 197;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic {
    height: 15.8rem;
  }
  .president-talk__top-pic else {
    height: 158;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic {
    border-radius: 1.5rem;
  }
  .president-talk__top-pic else {
    border-radius: 15;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic {
    border-radius: 0.8rem;
  }
  .president-talk__top-pic else {
    border-radius: 8;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic {
    margin-left: 4.5rem;
  }
  .president-talk__top-pic else {
    margin-left: 45;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic {
    margin-left: 6.4rem;
  }
  .president-talk__top-pic else {
    margin-left: 64;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic.n2 {
    width: 17.5rem;
  }
  .president-talk__top-pic.n2 else {
    width: 175;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic.n2 {
    width: 14.1rem;
  }
  .president-talk__top-pic.n2 else {
    width: 141;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic.n2 {
    height: 13.2rem;
  }
  .president-talk__top-pic.n2 else {
    height: 132;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic.n2 {
    height: 10.6rem;
  }
  .president-talk__top-pic.n2 else {
    height: 106;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic.n2 {
    border-radius: 0.8rem;
  }
  .president-talk__top-pic.n2 else {
    border-radius: 8;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic.n2 {
    border-radius: 0.6rem;
  }
  .president-talk__top-pic.n2 else {
    border-radius: 6;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic.n2 {
    margin-top: 9.7rem;
  }
  .president-talk__top-pic.n2 else {
    margin-top: 97;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic.n2 {
    margin-top: 1.5rem;
  }
  .president-talk__top-pic.n2 else {
    margin-top: 15;
  }
}
@media all and (min-width: 769px) {
  .president-talk__top-pic.n2 {
    margin-left: 2rem;
  }
  .president-talk__top-pic.n2 else {
    margin-left: 20;
  }
}
@media all and (max-width: 768px) {
  .president-talk__top-pic.n2 {
    margin-left: 18.9rem;
  }
  .president-talk__top-pic.n2 else {
    margin-left: 189;
  }
}

@media all and (min-width: 769px) {
  .president-talk__bottom {
    margin-top: 3.7rem;
  }
  .president-talk__bottom else {
    margin-top: 37;
  }
}
@media all and (max-width: 768px) {
  .president-talk__bottom {
    margin-top: 0rem;
  }
  .president-talk__bottom else {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .president-talk__bottom {
    background-color: #D3D9D2;
    padding: 8rem 1.5rem 6rem 1.5rem;
  }
}
@media (max-width: 768px) and (min-width: 769px) {
  .president-talk__bottom {
    border-radius: 2rem;
  }
  .president-talk__bottom else {
    border-radius: 20;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .president-talk__bottom {
    border-radius: 1.4rem;
  }
  .president-talk__bottom else {
    border-radius: 14;
  }
}

.president-talk__bottom-txt {
  line-height: 1.92;
  letter-spacing: 0.138em;
}
@media all and (min-width: 769px) {
  .president-talk__bottom-txt {
    font-size: 1.3rem;
  }
  .president-talk__bottom-txt else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  .president-talk__bottom-txt {
    font-size: 1.3rem;
  }
  .president-talk__bottom-txt else {
    font-size: 13;
  }
}
@media (max-width: 768px) {
  .president-talk__bottom-txt {
    letter-spacing: 0.138em;
  }
}
@media all and (min-width: 769px) {
  .president-talk__bottom-txt + .president-talk__bottom-txt {
    margin-top: 1rem;
  }
  .president-talk__bottom-txt + .president-talk__bottom-txt else {
    margin-top: 10;
  }
}
@media all and (max-width: 768px) {
  .president-talk__bottom-txt + .president-talk__bottom-txt {
    margin-top: 1rem;
  }
  .president-talk__bottom-txt + .president-talk__bottom-txt else {
    margin-top: 10;
  }
}

@media all and (min-width: 769px) {
  .service-info {
    padding-top: 10rem;
  }
  .service-info else {
    padding-top: 100;
  }
}
@media all and (max-width: 768px) {
  .service-info {
    padding-top: 8rem;
  }
  .service-info else {
    padding-top: 80;
  }
}
@media (max-width: 768px) {
  [data-pageid=kumazasa] .service-info {
    padding-top: 6.4rem;
  }
}
@media all and (min-width: 769px) {
  .service-info {
    padding-bottom: 10rem;
  }
  .service-info else {
    padding-bottom: 100;
  }
}
@media all and (max-width: 768px) {
  .service-info {
    padding-bottom: 8.8rem;
  }
  .service-info else {
    padding-bottom: 88;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product__catch {
  line-height: 1.5;
  color: var(--commonGreen);
  z-index: 1;
  text-align: center;
}
@media all and (min-width: 769px) {
  .product__catch {
    font-size: 3rem;
  }
  .product__catch else {
    font-size: 30;
  }
}
@media all and (max-width: 768px) {
  .product__catch {
    font-size: 2.5rem;
  }
  .product__catch else {
    font-size: 25;
  }
}

.product__pic {
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .product__pic {
    margin-top: -1.7rem;
  }
  .product__pic else {
    margin-top: -17;
  }
}
@media all and (max-width: 768px) {
  .product__pic {
    margin-top: -1.3rem;
  }
  .product__pic else {
    margin-top: -13;
  }
}
@media all and (min-width: 769px) {
  .product__pic {
    width: 37.5rem;
  }
  .product__pic else {
    width: 375;
  }
}
@media all and (max-width: 768px) {
  .product__pic {
    width: 26.5rem;
  }
  .product__pic else {
    width: 265;
  }
}
@media all and (min-width: 769px) {
  .product__pic {
    border-radius: 0.8rem;
  }
  .product__pic else {
    border-radius: 8;
  }
}
@media all and (max-width: 768px) {
  .product__pic {
    border-radius: 0.8rem;
  }
  .product__pic else {
    border-radius: 8;
  }
}

.product__txt {
  line-height: 1.92;
  letter-spacing: 0.143em;
  text-align: center;
}
@media all and (min-width: 769px) {
  .product__txt {
    margin-top: 3rem;
  }
  .product__txt else {
    margin-top: 30;
  }
}
@media all and (max-width: 768px) {
  .product__txt {
    margin-top: 2rem;
  }
  .product__txt else {
    margin-top: 20;
  }
}
@media all and (min-width: 769px) {
  .product__txt {
    font-size: 1.4rem;
  }
  .product__txt else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .product__txt {
    font-size: 1.3rem;
  }
  .product__txt else {
    font-size: 13;
  }
}
@media (max-width: 768px) {
  .product__txt {
    letter-spacing: 0.138em;
  }
}

@media all and (min-width: 769px) {
  [data-pageid=kumazasa] .recommend {
    padding-top: 8rem;
  }
  [data-pageid=kumazasa] .recommend else {
    padding-top: 80;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=kumazasa] .recommend {
    padding-top: 5.4rem;
  }
  [data-pageid=kumazasa] .recommend else {
    padding-top: 54;
  }
}

.recommend__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 769px) {
  .recommend__ttl {
    font-size: 2.2rem;
  }
  .recommend__ttl else {
    font-size: 22;
  }
}
@media all and (max-width: 768px) {
  .recommend__ttl {
    font-size: 1.8rem;
  }
  .recommend__ttl else {
    font-size: 18;
  }
}

.recommend__ttl-deco {
  display: flex;
}
@media all and (min-width: 769px) {
  .recommend__ttl-deco {
    margin-top: 1rem;
  }
  .recommend__ttl-deco else {
    margin-top: 10;
  }
}
@media all and (max-width: 768px) {
  .recommend__ttl-deco {
    margin-top: 1.2rem;
  }
  .recommend__ttl-deco else {
    margin-top: 12;
  }
}
@media all and (min-width: 769px) {
  .recommend__ttl-deco {
    width: 23.2rem;
  }
  .recommend__ttl-deco else {
    width: 232;
  }
}
@media all and (max-width: 768px) {
  .recommend__ttl-deco {
    width: 23.2rem;
  }
  .recommend__ttl-deco else {
    width: 232;
  }
}
.recommend__ttl-deco svg {
  fill: var(--key);
}

.recommend__list {
  display: grid;
  grid-template-rows: auto;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .recommend__list {
    margin-top: 3.9rem;
  }
  .recommend__list else {
    margin-top: 39;
  }
}
@media all and (max-width: 768px) {
  .recommend__list {
    margin-top: 3.9rem;
  }
  .recommend__list else {
    margin-top: 39;
  }
}
@media all and (min-width: 769px) {
  .recommend__list {
    width: 59.2rem;
  }
  .recommend__list else {
    width: 592;
  }
}
@media all and (max-width: 768px) {
  .recommend__list {
    width: 24.7rem;
  }
  .recommend__list else {
    width: 247;
  }
}
@media all and (min-width: 769px) {
  .recommend__list {
    -moz-column-gap: 6rem;
         column-gap: 6rem;
  }
  .recommend__list else {
    -moz-column-gap: 60;
         column-gap: 60;
  }
}
@media all and (max-width: 768px) {
  .recommend__list {
    -moz-column-gap: 0rem;
         column-gap: 0rem;
  }
  .recommend__list else {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media all and (min-width: 769px) {
  .recommend__list {
    row-gap: 2.5rem;
  }
  .recommend__list else {
    row-gap: 25;
  }
}
@media all and (max-width: 768px) {
  .recommend__list {
    row-gap: 2rem;
  }
  .recommend__list else {
    row-gap: 20;
  }
}
@media (max-width: 768px) {
  .recommend__list {
    grid-template-columns: repeat(1fr);
  }
}
@media (min-width: 769px) {
  .recommend__list {
    grid-template-columns: repeat(auto-fit, minmax(26.6rem, 1fr));
  }
}
@media (min-width: 769px) {
  .recommend__list {
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  [data-pageid=locogol] .recommend__list {
    width: 81.2rem;
    grid-template-columns: repeat(auto-fit, minmax(37.6rem, 1fr));
  }
}
@media (max-width: 768px) {
  [data-pageid=locogol] .recommend__list {
    width: 28.3rem;
  }
}
@media (min-width: 769px) {
  [data-pageid=golf] .recommend__list {
    width: 70.2rem;
    grid-template-columns: repeat(auto-fit, minmax(31.1rem, 1fr));
  }
}
@media (max-width: 768px) {
  [data-pageid=golf] .recommend__list {
    width: 28.7rem;
  }
}

.recommend__list-item {
  display: flex;
  align-items: flex-start;
  letter-spacing: 0.138em;
  line-height: 1.4;
}
@media all and (min-width: 769px) {
  .recommend__list-item {
    font-size: 1.6rem;
  }
  .recommend__list-item else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .recommend__list-item {
    font-size: 1.4rem;
  }
  .recommend__list-item else {
    font-size: 14;
  }
}
@media (max-width: 768px) {
  .recommend__list-item {
    letter-spacing: 0.143em;
    line-height: 1.4;
  }
}
.recommend__list-item .ico-check {
  display: flex;
  flex-shrink: 0;
}
@media all and (min-width: 769px) {
  .recommend__list-item .ico-check {
    width: 1.6rem;
  }
  .recommend__list-item .ico-check else {
    width: 16;
  }
}
@media all and (max-width: 768px) {
  .recommend__list-item .ico-check {
    width: 1.6rem;
  }
  .recommend__list-item .ico-check else {
    width: 16;
  }
}
@media all and (min-width: 769px) {
  .recommend__list-item .ico-check {
    margin-top: 0.3rem;
  }
  .recommend__list-item .ico-check else {
    margin-top: 3;
  }
}
@media all and (max-width: 768px) {
  .recommend__list-item .ico-check {
    margin-top: 0.3rem;
  }
  .recommend__list-item .ico-check else {
    margin-top: 3;
  }
}
@media all and (min-width: 769px) {
  .recommend__list-item .ico-check {
    margin-right: 1.5rem;
  }
  .recommend__list-item .ico-check else {
    margin-right: 15;
  }
}
@media all and (max-width: 768px) {
  .recommend__list-item .ico-check {
    margin-right: 1.3rem;
  }
  .recommend__list-item .ico-check else {
    margin-right: 13;
  }
}
.recommend__list-item .ico-check svg {
  fill: var(--key);
}

@media all and (min-width: 769px) {
  .efficacy {
    margin-top: 10rem;
  }
  .efficacy else {
    margin-top: 100;
  }
}
@media all and (max-width: 768px) {
  .efficacy {
    margin-top: 6rem;
  }
  .efficacy else {
    margin-top: 60;
  }
}

.efficacy__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .efficacy__list {
    gap: 4rem 4rem;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list {
    gap: 3rem 0rem;
  }
}
@media all and (min-width: 769px) {
  .efficacy__list {
    width: 98rem;
  }
  .efficacy__list else {
    width: 980;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list {
    width: 32.5rem;
  }
  .efficacy__list else {
    width: 325;
  }
}

.efficacy__list-item {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  .efficacy__list-item {
    gap: 2.4rem;
  }
  .efficacy__list-item else {
    gap: 24;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list-item {
    gap: 1.6rem;
  }
  .efficacy__list-item else {
    gap: 16;
  }
}
@media (min-width: 769px) {
  .efficacy__list-item {
    width: 30rem;
  }
}

.efficacy__list-item-head {
  position: relative;
  color: var(--commonGreen);
}
@media all and (min-width: 769px) {
  .efficacy__list-item-head {
    padding-top: 5.1rem;
  }
  .efficacy__list-item-head else {
    padding-top: 51;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list-item-head {
    padding-top: 4.1rem;
  }
  .efficacy__list-item-head else {
    padding-top: 41;
  }
}
@media all and (min-width: 769px) {
  .efficacy__list-item-head {
    padding-left: 1.6rem;
  }
  .efficacy__list-item-head else {
    padding-left: 16;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list-item-head {
    padding-left: 1.5rem;
  }
  .efficacy__list-item-head else {
    padding-left: 15;
  }
}
@media all and (min-width: 769px) {
  .efficacy__list-item-head {
    font-size: 1.8rem;
  }
  .efficacy__list-item-head else {
    font-size: 18;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list-item-head {
    font-size: 1.6rem;
  }
  .efficacy__list-item-head else {
    font-size: 16;
  }
}
.efficacy__list-item-head .ico-efficacy {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}
@media all and (min-width: 769px) {
  .efficacy__list-item-head .ico-efficacy {
    width: 6rem;
  }
  .efficacy__list-item-head .ico-efficacy else {
    width: 60;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list-item-head .ico-efficacy {
    width: 5rem;
  }
  .efficacy__list-item-head .ico-efficacy else {
    width: 50;
  }
}

.efficacy__list-item-bottom {
  letter-spacing: 0.143em;
  line-height: 1.8;
}
@media all and (min-width: 769px) {
  .efficacy__list-item-bottom {
    font-size: 1.4rem;
  }
  .efficacy__list-item-bottom else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .efficacy__list-item-bottom {
    font-size: 1.3rem;
  }
  .efficacy__list-item-bottom else {
    font-size: 13;
  }
}
@media (max-width: 768px) {
  .efficacy__list-item-bottom {
    letter-spacing: 0.138em;
  }
}

.service-information {
  background: #F3F4F3;
  border: 1px solid var(--key);
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .service-information {
    margin-top: 10rem;
  }
  .service-information else {
    margin-top: 100;
  }
}
@media all and (max-width: 768px) {
  .service-information {
    margin-top: 7rem;
  }
  .service-information else {
    margin-top: 70;
  }
}
@media all and (min-width: 769px) {
  .service-information {
    padding: 7rem 6.4rem 5rem;
  }
}
@media all and (max-width: 768px) {
  .service-information {
    padding: 4.8rem 1.5rem 4rem;
  }
}
@media all and (min-width: 769px) {
  .service-information {
    width: 100rem;
  }
  .service-information else {
    width: 1000;
  }
}
@media all and (max-width: 768px) {
  .service-information {
    width: 35.5rem;
  }
  .service-information else {
    width: 355;
  }
}
@media all and (min-width: 769px) {
  .service-information {
    border-radius: 2.4rem;
  }
  .service-information else {
    border-radius: 24;
  }
}
@media all and (max-width: 768px) {
  .service-information {
    border-radius: 1.2rem;
  }
  .service-information else {
    border-radius: 12;
  }
}

.service-information__inner {
  display: flex;
}
@media all and (min-width: 769px) {
  .service-information__inner {
    gap: 4rem;
  }
  .service-information__inner else {
    gap: 40;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner {
    gap: 2.4rem;
  }
  .service-information__inner else {
    gap: 24;
  }
}
@media (min-width: 769px) {
  .service-information__inner {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .service-information__inner {
    flex-direction: column;
    align-items: center;
  }
}

.service-information__inner-pic {
  display: flex;
  flex-shrink: 0;
}
@media all and (min-width: 769px) {
  .service-information__inner-pic {
    width: 37.2rem;
  }
  .service-information__inner-pic else {
    width: 372;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-pic {
    width: 32.5rem;
  }
  .service-information__inner-pic else {
    width: 325;
  }
}
.service-information__inner-pic picture, .service-information__inner-pic img {
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .service-information__inner-pic picture, .service-information__inner-pic img {
    border-radius: 0.8rem;
  }
  .service-information__inner-pic picture else, .service-information__inner-pic img else {
    border-radius: 8;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-pic picture, .service-information__inner-pic img {
    border-radius: 0.8rem;
  }
  .service-information__inner-pic picture else, .service-information__inner-pic img else {
    border-radius: 8;
  }
}

@media all and (min-width: 769px) {
  .service-information__inner-content .content-head {
    padding-left: 0.8rem;
  }
  .service-information__inner-content .content-head else {
    padding-left: 8;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-head {
    padding-left: 0.8rem;
  }
  .service-information__inner-content .content-head else {
    padding-left: 8;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-head {
    font-size: 2.2rem;
  }
  .service-information__inner-content .content-head else {
    font-size: 22;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-head {
    font-size: 1.8rem;
  }
  .service-information__inner-content .content-head else {
    font-size: 18;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-head .small {
    font-size: 1.3rem;
  }
  .service-information__inner-content .content-head .small else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-head .small {
    font-size: 1.2rem;
  }
  .service-information__inner-content .content-head .small else {
    font-size: 12;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list {
    margin-top: 1.6rem;
  }
  .service-information__inner-content .content-list else {
    margin-top: 16;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list {
    margin-top: 0.6rem;
  }
  .service-information__inner-content .content-list else {
    margin-top: 6;
  }
}
.service-information__inner-content .content-list-item {
  display: flex;
  line-height: 1.8;
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item {
    padding: 1.4rem 1.2rem 1.4rem 0.8rem;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item {
    padding: 0.8rem 0.6rem 0.8rem 0.8rem;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item {
    gap: 2.2rem;
  }
  .service-information__inner-content .content-list-item else {
    gap: 22;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item {
    gap: 1.4rem;
  }
  .service-information__inner-content .content-list-item else {
    gap: 14;
  }
}
.service-information__inner-content .content-list-item:not(:first-of-type) {
  border-top: 1px solid var(--subGreen);
}
.service-information__inner-content .content-list-item .left {
  flex-shrink: 0;
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .left {
    width: 11.1rem;
  }
  .service-information__inner-content .content-list-item .left else {
    width: 111;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .left {
    width: 9.5rem;
  }
  .service-information__inner-content .content-list-item .left else {
    width: 95;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .left {
    font-size: 1.4rem;
  }
  .service-information__inner-content .content-list-item .left else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .left {
    font-size: 1.2rem;
  }
  .service-information__inner-content .content-list-item .left else {
    font-size: 12;
  }
}
@media (min-width: 769px) {
  [data-pageid=locogol] .service-information__inner-content .content-list-item .left {
    width: 6.3rem;
  }
}
@media (min-width: 769px) {
  [data-pageid=golf] .service-information__inner-content .content-list-item .left {
    width: 6.2rem;
  }
}
.service-information__inner-content .content-list-item .right {
  letter-spacing: 0.142em;
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .right {
    padding-right: 0.9rem;
  }
  .service-information__inner-content .content-list-item .right else {
    padding-right: 9;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .right {
    padding-right: 0rem;
  }
  .service-information__inner-content .content-list-item .right else {
    padding-right: 0;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .right {
    padding-top: 0.2rem;
  }
  .service-information__inner-content .content-list-item .right else {
    padding-top: 2;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .right {
    padding-top: 0.2rem;
  }
  .service-information__inner-content .content-list-item .right else {
    padding-top: 2;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .right {
    font-size: 1.2rem;
  }
  .service-information__inner-content .content-list-item .right else {
    font-size: 12;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .right {
    font-size: 1.2rem;
  }
  .service-information__inner-content .content-list-item .right else {
    font-size: 12;
  }
}
.service-information__inner-content .content-list-item .right .note {
  display: block;
  letter-spacing: 0.14em;
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .right .note {
    margin-top: 0.6rem;
  }
  .service-information__inner-content .content-list-item .right .note else {
    margin-top: 6;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .right .note {
    margin-top: 0.4rem;
  }
  .service-information__inner-content .content-list-item .right .note else {
    margin-top: 4;
  }
}
@media all and (min-width: 769px) {
  .service-information__inner-content .content-list-item .right .note {
    font-size: 1rem;
  }
  .service-information__inner-content .content-list-item .right .note else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  .service-information__inner-content .content-list-item .right .note {
    font-size: 1rem;
  }
  .service-information__inner-content .content-list-item .right .note else {
    font-size: 10;
  }
}

.service-information__lesson-flow {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow {
    margin-top: 5.2rem;
  }
  .service-information__lesson-flow else {
    margin-top: 52;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow {
    margin-top: 5rem;
  }
  .service-information__lesson-flow else {
    margin-top: 50;
  }
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow {
    width: 48rem;
  }
  .service-information__lesson-flow else {
    width: 480;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow {
    width: 32.5rem;
  }
  .service-information__lesson-flow else {
    width: 325;
  }
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow .ttl {
    font-size: 1.6rem;
  }
  .service-information__lesson-flow .ttl else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow .ttl {
    font-size: 1.5rem;
  }
  .service-information__lesson-flow .ttl else {
    font-size: 15;
  }
}
.service-information__lesson-flow .lesson-flow-list {
  margin: 0;
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow .lesson-flow-list {
    margin-top: 1.6rem;
  }
  .service-information__lesson-flow .lesson-flow-list else {
    margin-top: 16;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow .lesson-flow-list {
    margin-top: 2.4rem;
  }
  .service-information__lesson-flow .lesson-flow-list else {
    margin-top: 24;
  }
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow .lesson-flow-list {
    padding-left: 2rem;
  }
  .service-information__lesson-flow .lesson-flow-list else {
    padding-left: 20;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow .lesson-flow-list {
    padding-left: 1.9rem;
  }
  .service-information__lesson-flow .lesson-flow-list else {
    padding-left: 19;
  }
}
.service-information__lesson-flow .lesson-flow-list-item {
  list-style-type: decimal;
  letter-spacing: 0.138em;
  line-height: 1.92;
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow .lesson-flow-list-item {
    font-size: 1.3rem;
  }
  .service-information__lesson-flow .lesson-flow-list-item else {
    font-size: 13;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow .lesson-flow-list-item {
    font-size: 1.3rem;
  }
  .service-information__lesson-flow .lesson-flow-list-item else {
    font-size: 13;
  }
}
.service-information__lesson-flow .lesson-flow-list-item::marker {
  letter-spacing: 0;
}
.service-information__lesson-flow .small {
  line-height: 1.8;
  letter-spacing: 0.14em;
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow .small {
    margin-top: 1rem;
  }
  .service-information__lesson-flow .small else {
    margin-top: 10;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow .small {
    margin-top: 0.5rem;
  }
  .service-information__lesson-flow .small else {
    margin-top: 5;
  }
}
@media all and (min-width: 769px) {
  .service-information__lesson-flow .small {
    font-size: 1rem;
  }
  .service-information__lesson-flow .small else {
    font-size: 10;
  }
}
@media all and (max-width: 768px) {
  .service-information__lesson-flow .small {
    font-size: 1rem;
  }
  .service-information__lesson-flow .small else {
    font-size: 10;
  }
}

.service-information__btn {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 769px) {
  .service-information__btn {
    margin-top: 2.5rem;
  }
  .service-information__btn else {
    margin-top: 25;
  }
}
@media all and (max-width: 768px) {
  .service-information__btn {
    margin-top: 1.5rem;
  }
  .service-information__btn else {
    margin-top: 15;
  }
}
@media all and (min-width: 769px) {
  [data-pageid=golf] .service-information__btn {
    margin-top: 4rem;
  }
  [data-pageid=golf] .service-information__btn else {
    margin-top: 40;
  }
}
@media all and (max-width: 768px) {
  [data-pageid=golf] .service-information__btn {
    margin-top: 2.5rem;
  }
  [data-pageid=golf] .service-information__btn else {
    margin-top: 25;
  }
}

@media (max-width: 768px) {
  .section.voice-focus {
    padding-top: 5.4rem;
  }
}
@media (min-width: 769px) {
  .section.voice-focus .section-ttl {
    margin-bottom: 7rem;
  }
}

@media all and (min-width: 769px) {
  .section.faq {
    padding-top: 12rem;
  }
  .section.faq else {
    padding-top: 120;
  }
}
@media all and (max-width: 768px) {
  .section.faq {
    padding-top: 8rem;
  }
  .section.faq else {
    padding-top: 80;
  }
}
@media all and (min-width: 769px) {
  .section.faq .section-inner {
    padding-top: 1rem;
  }
  .section.faq .section-inner else {
    padding-top: 10;
  }
}
@media all and (max-width: 768px) {
  .section.faq .section-inner {
    padding-top: 0rem;
  }
  .section.faq .section-inner else {
    padding-top: 0;
  }
}
@media all and (min-width: 769px) {
  .section.faq .section-inner {
    padding-bottom: 15rem;
  }
  .section.faq .section-inner else {
    padding-bottom: 150;
  }
}
@media all and (max-width: 768px) {
  .section.faq .section-inner {
    padding-bottom: 10rem;
  }
  .section.faq .section-inner else {
    padding-bottom: 100;
  }
}
.section.faq .block-accontdion {
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 769px) {
  .section.faq .block-accontdion {
    width: 84rem;
  }
  .section.faq .block-accontdion else {
    width: 840;
  }
}
@media all and (max-width: 768px) {
  .section.faq .block-accontdion {
    width: 35.5rem;
  }
  .section.faq .block-accontdion else {
    width: 355;
  }
}
.section.faq .uk-accordion {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion {
    gap: 2rem;
  }
  .section.faq .uk-accordion else {
    gap: 20;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion {
    gap: 1.6rem;
  }
  .section.faq .uk-accordion else {
    gap: 16;
  }
}
.section.faq .accordion-item {
  background-color: #D3D9D2;
}
@media all and (min-width: 769px) {
  .section.faq .accordion-item {
    border-radius: 1rem;
  }
  .section.faq .accordion-item else {
    border-radius: 10;
  }
}
@media all and (max-width: 768px) {
  .section.faq .accordion-item {
    border-radius: 1rem;
  }
  .section.faq .accordion-item else {
    border-radius: 10;
  }
}
.section.faq .uk-accordion-title,
.section.faq .uk-accordion-content p {
  position: relative;
  line-height: 1.8;
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title,
  .section.faq .uk-accordion-content p {
    padding-left: 8.3rem;
  }
  .section.faq .uk-accordion-title else,
  .section.faq .uk-accordion-content p else {
    padding-left: 83;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title,
  .section.faq .uk-accordion-content p {
    padding-left: 4.7rem;
  }
  .section.faq .uk-accordion-title else,
  .section.faq .uk-accordion-content p else {
    padding-left: 47;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title,
  .section.faq .uk-accordion-content p {
    padding-right: 10.8rem;
  }
  .section.faq .uk-accordion-title else,
  .section.faq .uk-accordion-content p else {
    padding-right: 108;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title,
  .section.faq .uk-accordion-content p {
    padding-right: 4rem;
  }
  .section.faq .uk-accordion-title else,
  .section.faq .uk-accordion-content p else {
    padding-right: 40;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title,
  .section.faq .uk-accordion-content p {
    font-size: 1.6rem;
  }
  .section.faq .uk-accordion-title else,
  .section.faq .uk-accordion-content p else {
    font-size: 16;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title,
  .section.faq .uk-accordion-content p {
    font-size: 1.5rem;
  }
  .section.faq .uk-accordion-title else,
  .section.faq .uk-accordion-content p else {
    font-size: 15;
  }
}
.section.faq .uk-accordion-title::before,
.section.faq .uk-accordion-content p::before {
  position: absolute;
  display: inline-block;
  z-index: 1;
  color: var(--commonGreen);
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title::before,
  .section.faq .uk-accordion-content p::before {
    left: 4rem;
  }
  .section.faq .uk-accordion-title::before else,
  .section.faq .uk-accordion-content p::before else {
    left: 40;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title::before,
  .section.faq .uk-accordion-content p::before {
    left: 1.5rem;
  }
  .section.faq .uk-accordion-title::before else,
  .section.faq .uk-accordion-content p::before else {
    left: 15;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title::before,
  .section.faq .uk-accordion-content p::before {
    font-size: 2.5rem;
  }
  .section.faq .uk-accordion-title::before else,
  .section.faq .uk-accordion-content p::before else {
    font-size: 25;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title::before,
  .section.faq .uk-accordion-content p::before {
    font-size: 2rem;
  }
  .section.faq .uk-accordion-title::before else,
  .section.faq .uk-accordion-content p::before else {
    font-size: 20;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title::before,
  .section.faq .uk-accordion-content p::before {
    height: 2.5rem;
  }
  .section.faq .uk-accordion-title::before else,
  .section.faq .uk-accordion-content p::before else {
    height: 25;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title::before,
  .section.faq .uk-accordion-content p::before {
    height: 2.8rem;
  }
  .section.faq .uk-accordion-title::before else,
  .section.faq .uk-accordion-content p::before else {
    height: 28;
  }
}
.section.faq .uk-accordion-title {
  display: flex;
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title {
    padding-top: 2.05rem;
  }
  .section.faq .uk-accordion-title else {
    padding-top: 20.5;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title {
    padding-top: 1.1rem;
  }
  .section.faq .uk-accordion-title else {
    padding-top: 11;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title {
    padding-bottom: 2.05rem;
  }
  .section.faq .uk-accordion-title else {
    padding-bottom: 20.5;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title {
    padding-bottom: 1.1rem;
  }
  .section.faq .uk-accordion-title else {
    padding-bottom: 11;
  }
}
.section.faq .uk-accordion-title::before {
  content: "Q";
}
.section.faq .uk-accordion-title .ico-arrow {
  position: absolute;
  display: block;
  z-index: 1;
  display: flex;
  align-items: center;
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title .ico-arrow {
    right: 4rem;
  }
  .section.faq .uk-accordion-title .ico-arrow else {
    right: 40;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title .ico-arrow {
    right: 2rem;
  }
  .section.faq .uk-accordion-title .ico-arrow else {
    right: 20;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title .ico-arrow {
    width: 0.8rem;
  }
  .section.faq .uk-accordion-title .ico-arrow else {
    width: 8;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title .ico-arrow {
    width: 0.8rem;
  }
  .section.faq .uk-accordion-title .ico-arrow else {
    width: 8;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-title .ico-arrow {
    height: 2.9rem;
  }
  .section.faq .uk-accordion-title .ico-arrow else {
    height: 29;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-title .ico-arrow {
    height: 2.8rem;
  }
  .section.faq .uk-accordion-title .ico-arrow else {
    height: 28;
  }
}
.section.faq .uk-accordion-title .ico-arrow svg {
  fill: #4A6C46;
  transform: rotate(90deg);
  width: 100%;
  transition: 0s;
}
.section.faq .uk-accordion-title::after {
  content: none;
}
.section.faq .uk-open > .uk-accordion-title .ico-arrow svg {
  transform: rotate(270deg);
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-content {
    margin-top: 0.4rem;
  }
  .section.faq .uk-accordion-content else {
    margin-top: 4;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-content {
    margin-top: 0.6rem;
  }
  .section.faq .uk-accordion-content else {
    margin-top: 6;
  }
}
@media all and (min-width: 769px) {
  .section.faq .uk-accordion-content {
    padding-bottom: 3rem;
  }
  .section.faq .uk-accordion-content else {
    padding-bottom: 30;
  }
}
@media all and (max-width: 768px) {
  .section.faq .uk-accordion-content {
    padding-bottom: 2rem;
  }
  .section.faq .uk-accordion-content else {
    padding-bottom: 20;
  }
}
@media (max-width: 768px) {
  .section.faq .uk-accordion-content p {
    padding-right: 1.8rem;
  }
}
.section.faq .uk-accordion-content p::before {
  content: "A";
}

@media all and (min-width: 769px) {
  .section.company,
  .section.contact,
  .section.thanks {
    padding-bottom: 8rem;
  }
  .section.company else,
  .section.contact else,
  .section.thanks else {
    padding-bottom: 80;
  }
}
@media all and (max-width: 768px) {
  .section.company,
  .section.contact,
  .section.thanks {
    padding-bottom: 10rem;
  }
  .section.company else,
  .section.contact else,
  .section.thanks else {
    padding-bottom: 100;
  }
}
@media all and (min-width: 769px) {
  .section.company .section-inner,
  .section.contact .section-inner,
  .section.thanks .section-inner {
    padding-top: 8rem;
  }
  .section.company .section-inner else,
  .section.contact .section-inner else,
  .section.thanks .section-inner else {
    padding-top: 80;
  }
}
@media all and (max-width: 768px) {
  .section.company .section-inner,
  .section.contact .section-inner,
  .section.thanks .section-inner {
    padding-top: 4rem;
  }
  .section.company .section-inner else,
  .section.contact .section-inner else,
  .section.thanks .section-inner else {
    padding-top: 40;
  }
}

.section-company__ttl,
.section-contact__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 769px) {
  .section-company__ttl,
  .section-contact__ttl {
    margin-bottom: 8rem;
  }
  .section-company__ttl else,
  .section-contact__ttl else {
    margin-bottom: 80;
  }
}
@media all and (max-width: 768px) {
  .section-company__ttl,
  .section-contact__ttl {
    margin-bottom: 8rem;
  }
  .section-company__ttl else,
  .section-contact__ttl else {
    margin-bottom: 80;
  }
}
@media all and (min-width: 769px) {
  .section-company__ttl .ttl-main,
  .section-contact__ttl .ttl-main {
    font-size: 3.5rem;
  }
  .section-company__ttl .ttl-main else,
  .section-contact__ttl .ttl-main else {
    font-size: 35;
  }
}
@media all and (max-width: 768px) {
  .section-company__ttl .ttl-main,
  .section-contact__ttl .ttl-main {
    font-size: 2.5rem;
  }
  .section-company__ttl .ttl-main else,
  .section-contact__ttl .ttl-main else {
    font-size: 25;
  }
}
.section-company__ttl .ttl-sub,
.section-contact__ttl .ttl-sub {
  color: var(--commonGreen);
  letter-spacing: 0.021em;
}
@media all and (min-width: 769px) {
  .section-company__ttl .ttl-sub,
  .section-contact__ttl .ttl-sub {
    margin-top: 1.3rem;
  }
  .section-company__ttl .ttl-sub else,
  .section-contact__ttl .ttl-sub else {
    margin-top: 13;
  }
}
@media all and (max-width: 768px) {
  .section-company__ttl .ttl-sub,
  .section-contact__ttl .ttl-sub {
    margin-top: 1.2rem;
  }
  .section-company__ttl .ttl-sub else,
  .section-contact__ttl .ttl-sub else {
    margin-top: 12;
  }
}
@media all and (min-width: 769px) {
  .section-company__ttl .ttl-sub,
  .section-contact__ttl .ttl-sub {
    font-size: 2.4rem;
  }
  .section-company__ttl .ttl-sub else,
  .section-contact__ttl .ttl-sub else {
    font-size: 24;
  }
}
@media all and (max-width: 768px) {
  .section-company__ttl .ttl-sub,
  .section-contact__ttl .ttl-sub {
    font-size: 1.6rem;
  }
  .section-company__ttl .ttl-sub else,
  .section-contact__ttl .ttl-sub else {
    font-size: 16;
  }
}

@media (max-width: 768px) {
  .section-contact__ttl .ttl-main {
    letter-spacing: 0.052em;
  }
}

.section-company__list {
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}
@media all and (min-width: 769px) {
  .section-company__list {
    width: 50.1rem;
  }
  .section-company__list else {
    width: 501;
  }
}
@media all and (max-width: 768px) {
  .section-company__list {
    width: 34.5rem;
  }
  .section-company__list else {
    width: 345;
  }
}

.section-company__list-item {
  line-height: 1.8;
}
@media all and (min-width: 769px) {
  .section-company__list-item {
    font-size: 1.4rem;
  }
  .section-company__list-item else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item {
    font-size: 1.3rem;
  }
  .section-company__list-item else {
    font-size: 13;
  }
}
.section-company__list-item:last-of-type .left, .section-company__list-item:last-of-type .right {
  border-bottom: 1px solid var(--subGreen);
}
.section-company__list-item .left {
  border-top: 1px solid var(--subGreen);
  vertical-align: baseline;
  text-align: start;
}
@media all and (min-width: 769px) {
  .section-company__list-item .left {
    padding: 1.4rem 0rem;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item .left {
    padding: 1.4rem 0rem;
  }
}
@media all and (min-width: 769px) {
  .section-company__list-item .left {
    padding-left: 3.5rem;
  }
  .section-company__list-item .left else {
    padding-left: 35;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item .left {
    padding-left: 0.7rem;
  }
  .section-company__list-item .left else {
    padding-left: 7;
  }
}
@media all and (min-width: 769px) {
  .section-company__list-item .left {
    padding-right: 1rem;
  }
  .section-company__list-item .left else {
    padding-right: 10;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item .left {
    padding-right: 1rem;
  }
  .section-company__list-item .left else {
    padding-right: 10;
  }
}
@media all and (min-width: 769px) {
  .section-company__list-item .left {
    width: 15.6rem;
  }
  .section-company__list-item .left else {
    width: 156;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item .left {
    width: 11.5rem;
  }
  .section-company__list-item .left else {
    width: 115;
  }
}
.section-company__list-item .right {
  border-top: 1px solid var(--subGreen);
  vertical-align: baseline;
}
@media all and (min-width: 769px) {
  .section-company__list-item .right {
    font-size: 1.4rem;
  }
  .section-company__list-item .right else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item .right {
    font-size: 1.3rem;
  }
  .section-company__list-item .right else {
    font-size: 13;
  }
}
@media all and (min-width: 769px) {
  .section-company__list-item .right {
    padding: 1.3rem 0rem;
  }
}
@media all and (max-width: 768px) {
  .section-company__list-item .right {
    padding: 1.3rem 0rem;
  }
}

.section-company__map {
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
@media all and (min-width: 769px) {
  .section-company__map {
    margin-top: 4rem;
  }
  .section-company__map else {
    margin-top: 40;
  }
}
@media all and (max-width: 768px) {
  .section-company__map {
    margin-top: 4rem;
  }
  .section-company__map else {
    margin-top: 40;
  }
}
@media all and (min-width: 769px) {
  .section-company__map {
    border-radius: 1.6rem;
  }
  .section-company__map else {
    border-radius: 16;
  }
}
@media all and (max-width: 768px) {
  .section-company__map {
    border-radius: 1rem;
  }
  .section-company__map else {
    border-radius: 10;
  }
}
@media all and (min-width: 769px) {
  .section-company__map {
    width: 50.1rem;
  }
  .section-company__map else {
    width: 501;
  }
}
@media all and (max-width: 768px) {
  .section-company__map {
    width: 34.5rem;
  }
  .section-company__map else {
    width: 345;
  }
}
@media all and (min-width: 769px) {
  .section-company__map {
    height: 26.2rem;
  }
  .section-company__map else {
    height: 262;
  }
}
@media all and (max-width: 768px) {
  .section-company__map {
    height: 26.2rem;
  }
  .section-company__map else {
    height: 262;
  }
}

@media all and (min-width: 769px) {
  .section.contact {
    padding-bottom: 8rem;
  }
  .section.contact else {
    padding-bottom: 80;
  }
}
@media all and (max-width: 768px) {
  .section.contact {
    padding-bottom: 3.5rem;
  }
  .section.contact else {
    padding-bottom: 35;
  }
}
@media (min-width: 769px) {
  .section.contact {
    padding-bottom: 18rem;
  }
}
.section.contact .submit-note {
  text-align: center;
  line-height: 2.1;
}
@media all and (min-width: 769px) {
  .section.contact .submit-note {
    font-size: 1.4rem;
  }
  .section.contact .submit-note else {
    font-size: 14;
  }
}
@media all and (max-width: 768px) {
  .section.contact .submit-note {
    font-size: 1.4rem;
  }
  .section.contact .submit-note else {
    font-size: 14;
  }
}

.section-contact__read {
  text-align: center;
  line-height: 2.1;
}
@media all and (min-width: 769px) {
  .section-contact__read {
    font-size: 1.5rem;
  }
  .section-contact__read else {
    font-size: 15;
  }
}
@media all and (max-width: 768px) {
  .section-contact__read {
    font-size: 1.4rem;
  }
  .section-contact__read else {
    font-size: 14;
  }
}

@media (min-width: 769px) {
  .section.thanks {
    min-height: calc(100vh - var(--pcFooterHeight) * 0.1rem);
  }
}
@media (max-width: 768px) {
  .section.thanks {
    min-height: calc(100vh - var(--spFooterHeight) * 0.1rem);
  }
}
.section.thanks .back-to-top-wrap {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 769px) {
  .section.thanks .back-to-top-wrap {
    margin-top: 8rem;
  }
  .section.thanks .back-to-top-wrap else {
    margin-top: 80;
  }
}
@media all and (max-width: 768px) {
  .section.thanks .back-to-top-wrap {
    margin-top: 8rem;
  }
  .section.thanks .back-to-top-wrap else {
    margin-top: 80;
  }
}/*# sourceMappingURL=style.css.map */