@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* スマホ：~519px
　 タブレット：520px~959px
　 パソコン：960px~ */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  /* bodyの基本サイズを設定 */
  /* 14px at 375px viewport → 16px at 1400px viewport */
  font-size: clamp(1.4rem, 1.3268rem + 0.1951vw, 1.6rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.8125;
}

/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

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

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

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

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

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

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

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

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

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

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

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

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

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

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

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

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

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

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

html {
  overflow-x: hidden;
}

body {
  background-size: 100% auto;
  background-repeat: repeat;
}
@media screen and (max-width: 959px) {
  body {
    background-size: cover;
  }
}
body {
  /* 印刷禁止 */
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

button:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
  max-width: 100%;
  /* PCの右クリック禁止 */
  /* SPの長押し禁止 */
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 959px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 959px) {
  .br-tab {
    display: block;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .br-sp {
    display: block;
  }
}

.nonbr-tab {
  display: block;
}
@media screen and (max-width: 959px) {
  .nonbr-tab {
    display: none;
  }
}

.nonbr-sp {
  display: block;
}
@media screen and (max-width: 519px) {
  .nonbr-sp {
    display: none;
  }
}

.link-disable {
  pointer-events: none;
  background-color: #aaa !important;
}

@media screen and (max-width: 519px) {
  .sptop {
    overflow: hidden;
  }
}

.space-sp {
  display: none;
}
@media screen and (max-width: 519px) {
  .space-sp {
    display: inline-block;
  }
}

.anchor {
  margin-top: -10rem;
  padding-top: 10rem;
}
@media screen and (max-width: 519px) {
  .anchor {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

/*　上に上がる動き　*/
.l-header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes UpAnime {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
/*　下に下がる動き　*/
.l-header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-inner {
  margin: 0 auto;
  max-width: 120rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1240px) {
  .l-inner {
    padding: 0 2rem;
  }
}
.l-inner--1030 {
  max-width: 1030px;
}

.l-main {
  margin-top: 12.3rem;
}
@media screen and (max-width: 1240px) {
  .l-main {
    margin-top: 9.9vw;
  }
}
@media screen and (max-width: 519px) {
  .l-main {
    margin-top: 5.6rem;
  }
}

.l-footer {
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .l-footer {
    margin-top: 0;
  }
}
@media screen and (max-width: 519px) {
  .l-footer {
    margin-top: 3rem;
  }
}

/* component
------------------------------------------------ */
.c-header--page {
  min-height: 5.6rem;
  background-color: #fff;
  -ms-flex-line-pack: center;
      align-content: center;
  border-bottom: 0.1rem solid #b5b5b6;
}

.c-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-header__logo {
  padding: 1.5rem 0;
  width: 27%;
  max-width: 32rem;
}
@media screen and (max-width: 959px) {
  .c-header__logo {
    width: 25%;
  }
}
@media screen and (max-width: 519px) {
  .c-header__logo {
    padding: 0rem 0;
    width: 46%;
  }
}

.c-header__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 67%;
}
@media screen and (max-width: 959px) {
  .c-header__menus {
    width: 72%;
  }
}
@media screen and (max-width: 519px) {
  .c-header__menus {
    display: none;
  }
}

.c-header__menu {
  width: 20%;
  text-align: center;
  font-weight: 500;
  font-size: 1.13em;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.2;
  border-bottom: 1.2rem solid white;
  text-wrap: pretty;
}
.c-header__menu:hover {
  opacity: 1;
  border-bottom-color: #457703;
}

.c-header__hamburger {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  aspect-ratio: 1;
  width: 5.6rem;
  height: auto;
  cursor: pointer;
  background-color: #457703;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 519px) {
  .c-header__hamburger {
    display: block;
  }
}

.c-header__hamburger-border {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__hamburger-border--top {
  top: calc(50% - 7.5px);
}

.c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px);
}

.c-header__hamburger--open .c-header__hamburger-border--top {
  top: calc(50% - 7.5px + 7.5px);
  -webkit-transform: translate(-50%, -50%) rotate(-225deg);
          transform: translate(-50%, -50%) rotate(-225deg);
}
.c-header__hamburger--open .c-header__hamburger-border--middle {
  opacity: 0;
}
.c-header__hamburger--open .c-header__hamburger-border--bottom {
  top: calc(50% + 7.5px - 7.5px);
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}

.c-header__insta-sp {
  display: none;
  position: absolute;
  top: 7rem;
  right: 1.6rem;
  width: 2.4rem;
}
@media screen and (max-width: 519px) {
  .c-header__insta-sp {
    display: block;
  }
}

.c-header__drawer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100lvh;
  background-color: transparent;
  opacity: 0.5;
  z-index: 40;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-header__drawer-modal--open {
  display: block;
}

.c-header__drawer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  padding: 2.4rem;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  color: white;
  background-color: #457703;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.c-header__drawer::-webkit-scrollbar {
  width: 0.5rem;
}
.c-header__drawer::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.c-header__drawer::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 30px;
}

.c-header__drawer--open {
  opacity: 1;
  visibility: visible;
}

.c-header__drawer-logo {
  width: 60%;
}

.c-header__drawer-menus {
  padding-top: 2rem;
  padding-left: 4.5rem;
}

.c-header__drawer-menu {
  display: block;
  margin-top: 2.2rem;
  font-size: 5.5vw;
  font-weight: 500;
  line-height: 1;
}
.c-header__drawer-menu small {
  display: block;
  font-size: 0.8em;
  font-weight: 400;
  line-height: 1.7;
}

.c-global {
  width: 100%;
  border-bottom: solid 1px #b5b5b6;
}

.c-global__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
  width: 100%;
  max-width: 60rem;
}
@media screen and (max-width: 519px) {
  .c-global__container {
    margin-left: -2rem;
    padding: 2rem 0 3rem;
    width: calc(100% + 4rem);
  }
}

.c-global__menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 10rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: clamp(1.25rem, 1.0488rem + 0.5366vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-wrap: pretty;
}
@media screen and (max-width: 959px) {
  .c-global__menu {
    height: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .c-global__menu {
    width: 25%;
    height: 6rem;
    letter-spacing: 0;
  }
}
.c-global__menu:hover {
  color: #457703;
  opacity: 1;
}
.c-global__menu:hover .c-global__icon {
  display: none;
}
.c-global__menu:hover .c-global__icon--hover {
  display: block;
}

.c-global__icon {
  display: block;
  margin: 2.3rem auto 0;
  width: auto;
  height: 7rem;
}
@media screen and (max-width: 959px) {
  .c-global__icon {
    margin-top: 1.5rem;
    height: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .c-global__icon {
    margin-top: 1rem;
    height: 11.5vw;
  }
}

.c-global__icon--hover {
  display: none;
}

.c-head01 {
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.c-head02 {
  margin: 0 auto 0;
  font-size: clamp(2.3rem, 1.861rem + 1.1707vw, 3.5rem);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.c-head03 {
  line-height: 1.6;
}

.c-head03--header {
  padding: 4rem 0;
}
@media screen and (max-width: 519px) {
  .c-head03--header {
    padding: 3rem 0;
  }
}

.c-head03__title {
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  letter-spacing: 0.1em;
  color: #457703;
  letter-spacing: 0;
}

.c-head03__en {
  font-weight: bold;
}
.c-head03__en::before {
  content: "";
  display: inline-block;
  margin-right: 0.7rem;
  width: 10rem;
  height: 0.2rem;
  vertical-align: middle;
  background-color: #000;
}
@media screen and (max-width: 519px) {
  .c-head03__en::before {
    width: 8rem;
  }
}

.c-btn {
  display: block;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  letter-spacing: 0;
}
.c-btn::after {
  content: "";
  display: inline-block;
  margin-left: 1.2rem;
  aspect-ratio: 1;
  width: 7.3vw;
  max-width: 10rem;
  height: auto;
  vertical-align: middle;
  background-image: url(../images/common/btn.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .c-btn::after {
    margin: 0 0 0.5rem 1rem;
    width: 14vw;
  }
}

.c-footer {
  margin-top: 15rem;
}
@media screen and (max-width: 959px) {
  .c-footer {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 519px) {
  .c-footer {
    margin-top: 7rem;
  }
}

.c-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .c-footer__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem 3rem;
  }
}

@media screen and (max-width: 1100px) {
  .c-footer__main {
    width: 100%;
    text-align: center;
  }
}

.c-footer__logo {
  width: clamp(22rem, 28vw, 39rem);
  max-width: 100%;
}
@media screen and (max-width: 1100px) {
  .c-footer__logo {
    margin: 0 auto;
  }
}

.c-footer__address {
  margin-top: 1rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
  .c-footer__address {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
.c-footer__tels {
  margin-top: 0.5rem;
  line-height: 1.1;
}
@media screen and (max-width: 519px) {
  .c-footer__tels {
    display: block;
    text-align: center;
  }
}

.c-footer__tel {
  font-size: clamp(3rem, 2.6341rem + 0.9756vw, 4rem);
  font-weight: bold;
}
.c-footer__tel small {
  font-size: 0.7em;
}

.c-footer__fax {
  display: block;
  font-size: clamp(3rem, 2.6341rem + 0.9756vw, 4rem);
  font-weight: bold;
}
.c-footer__fax small {
  font-size: 0.7em;
}

.c-footer__group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5rem;
  margin-top: 0.7rem;
}
@media screen and (max-width: 959px) {
  .c-footer__group-item {
    gap: 1rem;
  }
}

.c-footer__group-head {
  width: 14rem;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  background-color: #457703;
  border-radius: 5rem;
}
@media screen and (max-width: 959px) {
  .c-footer__group-head {
    width: 11rem;
    font-size: 1.3rem;
  }
}

.c-footer__group-address {
  line-height: 1.6;
}
@media screen and (max-width: 959px) {
  .c-footer__group-address {
    width: calc(100% - 11rem - 1rem);
  }
}

.c-footer__line {
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}
.c-footer__line img {
  display: block;
  margin: 0 auto 0.7rem;
  width: 8vw;
  max-width: 8rem;
  min-width: 5rem;
}

.c-footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .c-footer__menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 519px) {
  .c-footer__menus {
    margin-top: 1.5rem;
  }
}

.c-footer__menu {
  padding: 0 2.3rem;
  line-height: 1;
  letter-spacing: 0.2em;
  border-left: solid 1px black;
}
@media screen and (max-width: 959px) {
  .c-footer__menu {
    padding: 0 2vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 640px) {
  .c-footer__menu {
    margin: 1.5rem 0 0;
    width: 50%;
    text-align: center;
    line-height: 1.3;
  }
}
@media screen and (max-width: 640px) {
  .c-footer__menu:nth-child(2n) {
    border-right: solid 1px black;
  }
}
.c-footer__menu:last-child {
  border-right: solid 1px black;
}

.c-footer__copyright {
  margin-top: 3rem;
  padding: 1.7rem 1rem;
  font-size: clamp(1rem, 0.8902rem + 0.2927vw, 1.3rem);
  background-color: #457703;
  color: white;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 519px) {
  .c-footer__copyright {
    letter-spacing: 0;
  }
}

.c-page-header {
  position: relative;
  padding-bottom: 5rem;
}
@media screen and (max-width: 519px) {
  .c-page-header {
    padding-bottom: 4rem;
  }
}

.c-page-header__title {
  position: absolute;
  top: calc(50% - 2.5rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30rem;
  height: 6.6rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #457703;
  font-size: clamp(2.5rem, 2.3171rem + 0.4878vw, 3rem);
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}
.c-page-header__title span {
  display: block;
  position: relative;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.53em;
}
.c-page-header__title span::before, .c-page-header__title span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -0.8rem;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 3.4rem;
  height: 0.1rem;
  background-color: #457703;
}
.c-page-header__title span::after {
  left: auto;
  right: -0.8rem;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.c-page-header__img {
  width: 100%;
}
@media screen and (max-width: 519px) {
  .c-page-header__img {
    height: 50vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-contact__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 5rem;
  padding: 2.5rem 0 3rem;
  border-top: dashed 2px #898989;
}
@media screen and (max-width: 519px) {
  .c-contact__message {
    display: block;
    border-width: 1px;
  }
}
.c-contact__message span {
  width: 100%;
  max-width: 45.4rem;
}
.c-contact__message .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  color: #457703;
  font-weight: bold;
  font-size: clamp(3rem, 2.4512rem + 1.4634vw, 4.5rem);
  line-height: 1;
}
.c-contact__message .tel img {
  width: 4.5rem;
  min-width: 3rem;
}
@media screen and (max-width: 959px) {
  .c-contact__message .tel img {
    width: 5vw;
  }
}

.c-contact__require span {
  color: #e60012;
}

.c-contact__form {
  margin: -14rem auto 0;
  padding-top: 14.5rem;
}
@media screen and (max-width: 959px) {
  .c-contact__form {
    margin: -18rem auto 0;
    padding-top: 18.5rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__form {
    margin: -10rem auto 0;
    padding-top: 10.5rem;
  }
}

.c-contact__input {
  display: block;
}

.c-contact__confirm {
  display: none;
}

.c-contact__table {
  width: 100%;
  border-collapse: collapse;
}
.c-contact__table th, .c-contact__table td {
  font-weight: 400;
  border-top: dashed 2px #666;
  border-bottom: dashed 2px #666;
}
@media screen and (max-width: 519px) {
  .c-contact__table th, .c-contact__table td {
    display: block;
    border-width: 1px;
  }
}
.c-contact__table th {
  padding: 4.5rem 0;
  width: 22%;
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  .c-contact__table th {
    padding: 3rem 0 1rem;
    width: 100%;
    border-bottom: none;
  }
}
.c-contact__table th span {
  color: #e60012;
}
.c-contact__table td {
  padding: 4.5rem 0;
  width: 78%;
  max-width: 100%;
}
@media screen and (max-width: 519px) {
  .c-contact__table td {
    padding: 0 0 3rem;
    width: 100%;
    border: none;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__table tr:last-child td {
    border-bottom-width: 1px;
    border-bottom-style: dashed;
  }
}
.c-contact__table input[type=text],
.c-contact__table input[type=email],
.c-contact__table input[type=tel],
.c-contact__table textarea,
.c-contact__table select {
  padding: 0.8rem 1rem;
  max-width: 100%;
  max-height: 18rem;
  background-color: #fff;
  border: solid 0.5px #898989;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 519px) {
  .c-contact__table input[type=text],
  .c-contact__table input[type=email],
  .c-contact__table input[type=tel],
  .c-contact__table textarea,
  .c-contact__table select {
    width: 100%;
  }
}
.c-contact__table input[type=text]:focus,
.c-contact__table input[type=email]:focus,
.c-contact__table input[type=tel]:focus,
.c-contact__table textarea:focus,
.c-contact__table select:focus {
  border-width: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.c-contact__table select {
  padding-right: 3.5rem;
  background-image: url(../images/icon_selectbox.png);
  background-size: 15px 6px;
  background-position: 91% 50%;
}
@media screen and (max-width: 519px) {
  .c-contact__table select {
    padding-right: 3rem;
    background-size: 13px 5px;
  }
}
.c-contact__table input[name=your-mail1],
.c-contact__table input[name=your-mail2],
.c-contact__table textarea[name=your-message] {
  width: 100%;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin-right: 2rem;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] {
  display: none;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  position: relative;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #898989;
  border-radius: 50%;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio] + span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  padding: 2px;
  width: 8px;
  height: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: #457703;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0;
}
.c-contact__table .wpcf7-radio .wpcf7-list-item input[type=radio]:checked + span::after {
  opacity: 1;
}
.c-contact__table .wpcf7-list-item {
  display: block;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 2rem;
  cursor: pointer;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border: 2px solid #457703;
  border-radius: 2px;
}
.c-contact__table .wpcf7-list-item input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  border-bottom: 3px solid #457703;
  border-left: 3px solid #457703;
  margin-top: -0.2em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.c-contact__table .wpcf7-list-item input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.c-contact__table .wpcf7-not-valid-tip {
  display: block;
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
}

.c-contact__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  max-width: 75rem;
}
@media screen and (max-width: 959px) {
  .c-contact__name {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__name {
    gap: 1rem;
  }
}

.c-contact__sei,
.c-contact__mei {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: calc(50% - 2rem);
}
@media screen and (max-width: 519px) {
  .c-contact__sei,
  .c-contact__mei {
    width: 100%;
  }
}
.c-contact__sei .wpcf7-form-control-wrap,
.c-contact__mei .wpcf7-form-control-wrap {
  width: calc(100% - 5rem);
}

.c-contact__birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.c-contact__birth input[type=text] {
  max-width: 10rem;
}
@media screen and (max-width: 519px) {
  .c-contact__birth input[type=text] {
    max-width: 5rem;
  }
}

.wpcf7-acceptance {
  display: block;
  position: relative;
  margin: 4rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 519px) {
  .wpcf7-acceptance {
    margin-top: 3rem;
  }
}
.wpcf7-acceptance input[type=checkbox] {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 2rem;
  height: 100%;
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
}
.wpcf7-acceptance input[type=checkbox] + .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 0.2rem;
  aspect-ratio: 1;
  width: 1.8rem;
  height: auto;
  background-color: #fff;
  border: 1px solid #333;
  vertical-align: middle;
  cursor: pointer;
}
.wpcf7-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  content: "";
  position: absolute;
  top: 50%;
  left: 1%;
  -webkit-transform: translate(0%, -50%) rotate(-45deg);
          transform: translate(0%, -50%) rotate(-45deg);
  width: 1.3rem;
  height: 0.5rem;
  border-left: solid 2px #1d2088;
  border-bottom: solid 2px #1d2088;
}
.wpcf7-acceptance a {
  color: #457703;
  text-decoration: underline;
}

.c-contact__confirm-btn,
input[type=submit] {
  display: block;
  margin: 5rem auto 0;
  padding: 1.7rem 1rem;
  width: 30rem;
  max-width: 100%;
  text-align: center;
  color: white;
  background-color: #457703;
}
@media screen and (max-width: 519px) {
  .c-contact__confirm-btn,
  input[type=submit] {
    margin-top: 5rem;
  }
}
.c-contact__confirm-btn:hover,
input[type=submit]:hover {
  opacity: 0.8;
}

.c-contact__btn {
  text-align: center;
}

.c-contact__value {
  padding: 1rem 0;
}
@media screen and (max-width: 519px) {
  .c-contact__value {
    padding: 0.5rem 0;
  }
}

.c-contact__back {
  margin: 0 auto;
  display: block;
  width: 12rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.9em;
  color: white;
  background-color: #7e7e7e;
}
.c-contact__back:hover {
  opacity: 0.8;
}

.wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-spinner {
  margin-top: 1rem;
}

.wpcf7-response-output {
  border: none;
}

.wpcf7-form-control-wrap.recaptcha {
  display: block;
  margin: 5rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.c-contact__thanks {
  margin: 6rem auto 20rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 959px) {
  .c-contact__thanks {
    padding: 5rem auto 14rem;
  }
}
@media screen and (max-width: 519px) {
  .c-contact__thanks {
    margin: 4rem auto 11rem;
    letter-spacing: 0;
  }
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin: 10rem auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 959px) {
  .c-pagination {
    margin-top: 7rem;
  }
}
.c-pagination .page-numbers {
  display: inline-block;
  aspect-ratio: 1;
  width: 2.7rem;
  height: auto;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1;
  border: 0.1rem solid #000;
}
.c-pagination .page-numbers:hover {
  color: white;
  background-color: #457703;
  opacity: 1;
}
.c-pagination .page-numbers.current {
  color: white;
  background-color: #457703;
  pointer-events: none;
}
.c-pagination .prev, .c-pagination .next {
  padding: 0;
}

/* project
------------------------------------------------ */
.p-top-mv {
  position: relative;
  width: 100%;
  height: auto;
}

.p-top-mv__slides img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .p-top-mv__slides img {
    aspect-ratio: 1.2;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-mv__grad {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 959px) {
  .p-top-mv__grad {
    height: 15vw;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__grad {
    height: 25vw;
  }
}

.p-top-mv__content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.p-top-mv__logo {
  margin-top: 5rem;
  width: 30%;
  max-width: 39rem;
}
@media screen and (max-width: 959px) {
  .p-top-mv__logo {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-mv__logo {
    margin-top: 1rem;
    width: 50%;
  }
}

.p-top-mv__copy {
  margin-top: 5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: clamp(2.5rem, 1.7683rem + 1.9512vw, 4.5rem);
  font-weight: bold;
  line-height: 1.4;
  -webkit-filter: drop-shadow(0 0 1px black);
          filter: drop-shadow(0 0 1px black);
}
.p-top-mv__copy span {
  display: block;
  border-bottom: 0.5rem solid #e1d737;
}
@media screen and (max-width: 519px) {
  .p-top-mv__copy span {
    border-bottom-width: 0.4rem;
  }
}

.p-top-service {
  padding: 4.5rem 0 5.5rem;
}
@media screen and (max-width: 519px) {
  .p-top-service {
    padding: 3.5rem 0 4.5rem;
  }
}

.p-top-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin: 4rem auto 0;
  max-width: 89rem;
}
@media screen and (max-width: 959px) {
  .p-top-service__items {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-service__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 85%;
  }
}

.p-top-service__item {
  aspect-ratio: 1;
  width: calc(25% - 2.25rem);
  height: auto;
  font-size: clamp(2.3rem, 1.861rem + 1.1707vw, 3.5rem);
  color: white;
  font-weight: bold;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #e1d737;
  border-radius: 50%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 519px) {
  .p-top-service__item {
    width: calc(50% - 1rem);
  }
}

.p-top-service__welcome {
  margin-top: 4.5rem;
}
@media screen and (max-width: 519px) {
  .p-top-service__welcome {
    font-size: clamp(2rem, 1.4512rem + 1.4634vw, 3.5rem);
  }
}

.p-top-service__hinmoku {
  margin: 4rem auto 0;
  padding: 2rem;
  width: 100%;
  max-width: 103rem;
  border: 0.1rem solid #b5b5b6;
}
.p-top-service__hinmoku h3 {
  padding: 0 1.7rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  font-size: 1em;
  font-weight: bold;
  background-color: #457703;
  border-radius: 5rem;
}
.p-top-service__hinmoku ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0rem 1.7rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.5rem;
  list-style: none;
}
.p-top-service__hinmoku ul li::before {
  content: "・";
}

.p-top-worry {
  padding: 4.5rem 0 5.5rem;
  background-color: #dceaca;
  background-image: url(../images/top/bg_worry.png);
  background-size: cover;
  background-position: bottom right;
}

.p-top-worry__head {
  color: #457703;
}

.p-top-worry__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.7rem;
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .p-top-worry__container {
    gap: 4rem;
  }
}

.p-top-worry__checks {
  padding: 2rem 3rem;
  width: 55%;
  list-style: none;
  background-color: #fff;
  border: 0.1rem solid #000;
}
@media screen and (max-width: 959px) {
  .p-top-worry__checks {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__checks {
    padding: 1rem 1.5rem;
  }
}
.p-top-worry__checks li {
  position: relative;
  padding: 1rem 1rem;
  font-size: clamp(1.8rem, 1.5439rem + 0.6829vw, 2.5rem);
  font-weight: 500;
  border-bottom: 0.2rem dotted #000;
}
@media screen and (max-width: 519px) {
  .p-top-worry__checks li {
    padding-left: 3rem;
  }
}
.p-top-worry__checks li:last-child {
  border-bottom: none;
}
.p-top-worry__checks li::before {
  content: "";
  display: inline-block;
  margin-right: 0.3rem;
  aspect-ratio: 28/24;
  width: 2.8rem;
  height: auto;
  background-image: url(../images/top/check.png);
  background-size: contain;
}
@media screen and (max-width: 519px) {
  .p-top-worry__checks li::before {
    position: absolute;
    left: 0;
  }
}

.p-top-worry__img {
  width: 35%;
}
@media screen and (max-width: 959px) {
  .p-top-worry__img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .p-top-worry__img {
    width: 70%;
  }
}

.p-top-map__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.5rem 5rem;
  margin-top: 7rem;
}
@media screen and (max-width: 959px) {
  .p-top-map__container {
    gap: 3rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-top-map__container {
    margin-top: 5rem;
  }
}

.p-top-map__wrap {
  width: calc(50% - 2.5rem);
  text-align: center;
}
@media screen and (max-width: 959px) {
  .p-top-map__wrap {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 519px) {
  .p-top-map__wrap {
    width: 100%;
  }
}
.p-top-map__wrap iframe {
  aspect-ratio: 575/425;
  padding-bottom: 0.5rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 519px) {
  .p-top-map__wrap iframe {
    aspect-ratio: 1.5;
  }
}

.p-buy-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
  margin: 4rem auto 0;
  max-width: 89rem;
}
@media screen and (max-width: 959px) {
  .p-buy-list__items {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-buy-list__items {
    width: 85%;
  }
}

.p-buy-list__item {
  aspect-ratio: 1;
  width: calc(25% - 2.25rem);
  height: auto;
  font-size: clamp(2.3rem, 1.861rem + 1.1707vw, 3.5rem);
  color: white;
  font-weight: bold;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background-color: #457703;
  border-radius: 50%;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (max-width: 519px) {
  .p-buy-list__item {
    width: calc(50% - 1rem);
  }
}
.p-buy-list__item:nth-child(2), .p-buy-list__item:nth-child(4), .p-buy-list__item:nth-child(5), .p-buy-list__item:nth-child(7) {
  background-color: #6ea924;
}
@media screen and (max-width: 519px) {
  .p-buy-list__item:nth-child(2), .p-buy-list__item:nth-child(4), .p-buy-list__item:nth-child(5), .p-buy-list__item:nth-child(7) {
    background-color: #457703;
  }
}
@media screen and (max-width: 519px) {
  .p-buy-list__item:nth-child(2), .p-buy-list__item:nth-child(3), .p-buy-list__item:nth-child(6) {
    background-color: #6ea924;
  }
}

.p-buy-list__welcome {
  margin-top: 7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 519px) {
  .p-buy-list__welcome {
    margin-top: 5rem;
    font-size: clamp(2rem, 1.4512rem + 1.4634vw, 3.5rem);
  }
}

.p-buy-list__hinmoku {
  margin: 4.5rem auto 0;
  padding: 1.3rem 2rem;
  width: 100%;
  max-width: 103rem;
  border: 0.1rem solid #b5b5b6;
}
.p-buy-list__hinmoku ul {
  list-style: none;
}
.p-buy-list__hinmoku ul li {
  position: relative;
  padding-left: 2rem;
}
.p-buy-list__hinmoku ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-buy-item__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.6rem;
  margin-top: 10rem;
}
@media screen and (max-width: 959px) {
  .p-buy-item__container {
    gap: 2rem;
    margin-top: 7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-buy-item__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 5rem;
  }
}

@media screen and (max-width: 519px) {
  .p-buy-item__container--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-buy-item__content {
  padding-top: 2.5rem;
  width: calc(49% - 6.6rem);
}
@media screen and (max-width: 959px) {
  .p-buy-item__content {
    width: calc(49% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .p-buy-item__content {
    width: 100%;
  }
}

.p-buy-item__image {
  width: 51%;
}
@media screen and (max-width: 519px) {
  .p-buy-item__image {
    width: 100%;
  }
}
.p-buy-item__image img {
  width: 100%;
}

.p-buy-item__en {
  font-weight: bold;
}
.p-buy-item__en::before {
  content: "";
  display: inline-block;
  margin-right: 0.7rem;
  width: 10rem;
  height: 0.2rem;
  vertical-align: middle;
  background-color: #000;
}
@media screen and (max-width: 519px) {
  .p-buy-item__en::before {
    width: 8rem;
  }
}

.p-buy-item__info {
  margin-top: 0.7rem;
  max-width: 38rem;
}

.p-buy-item__btn {
  margin-top: 2rem;
  margin-right: 0;
}

.p-comp-greeting__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  .p-comp-greeting__container {
    gap: 2rem;
  }
}

.p-comp-greeting__message {
  width: calc(68% - 5rem);
  text-wrap: pretty;
}
@media screen and (max-width: 959px) {
  .p-comp-greeting__message {
    width: calc(68% - 2rem);
  }
}
@media screen and (max-width: 519px) {
  .p-comp-greeting__message {
    width: 100%;
  }
}

.p-comp-greeting__float {
  display: none;
  float: right;
  margin: 0 0 0 1.5rem;
  width: 40%;
}
@media screen and (max-width: 519px) {
  .p-comp-greeting__float {
    display: block;
  }
}

.p-comp-greeting__image {
  width: 32%;
}
@media screen and (max-width: 519px) {
  .p-comp-greeting__image {
    display: none;
  }
}

.p-comp-info__table {
  margin-top: 4.5rem;
  width: 100%;
  border-collapse: collapse;
}
.p-comp-info__table th, .p-comp-info__table td {
  padding: 1.9rem 0 1.9rem 8.3rem;
  font-size: 1.8rem;
  font-weight: 400;
  vertical-align: top;
  border-top: solid 1px #b5b5b6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .p-comp-info__table th, .p-comp-info__table td {
    padding: 1.7rem 0 1.7rem 2rem;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .p-comp-info__table th, .p-comp-info__table td {
    display: block;
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.p-comp-info__table th {
  min-width: 21rem;
  letter-spacing: 0;
}
@media screen and (max-width: 959px) {
  .p-comp-info__table th {
    min-width: 14rem;
  }
}
@media screen and (max-width: 519px) {
  .p-comp-info__table th {
    padding-bottom: 0;
  }
}
.p-comp-info__table th::before {
  content: "●";
  margin-right: 0.3rem;
  color: #6ea924;
  font-size: 0.9em;
  margin-right: 0.5rem;
  font-size: 0.75em;
  color: #e1d737;
  vertical-align: text-bottom;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table th::before {
    margin-right: 0.3rem;
  }
}
@media screen and (max-width: 519px) {
  .p-comp-info__table td {
    padding-top: 0;
    padding-left: 2.6rem;
    border-top: none;
  }
}
.p-comp-info__table tr:last-child th, .p-comp-info__table tr:last-child td {
  border-bottom: solid 1px #b5b5b6;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table tr:last-child th {
    border-bottom: none;
  }
}
.p-comp-info__table ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table ul {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
.p-comp-info__table ul li {
  width: calc(50% - 0.5rem);
  max-width: 35rem;
}
@media screen and (max-width: 519px) {
  .p-comp-info__table ul li {
    width: 100%;
  }
}

.non-border {
  padding-top: 0 !important;
  border-top: none !important;
}

.sp-view {
  display: none;
}
@media screen and (max-width: 519px) {
  .sp-view {
    display: inline-block;
  }
}

@media screen and (max-width: 519px) {
  .sp-hide {
    display: none;
  }
}

.p-privacy__content {
  padding: 4rem 0;
  border-top: dashed 2px #b5b5b6;
}
@media screen and (max-width: 519px) {
  .p-privacy__content {
    padding: 3.5rem 0;
    border-width: 1px;
  }
}

.p-machine__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.3rem;
}
@media screen and (max-width: 959px) {
  .p-machine__cats {
    gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-machine__cats {
    gap: 1rem;
  }
}
.p-machine__cats a {
  position: relative;
  padding: 0.5rem 0.3rem;
  width: calc(20% - 2.84rem);
  height: 5rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 1.12em;
  font-weight: 500;
  letter-spacing: 0;
  background-color: #fff;
  border: solid 1px #b5b5b6;
  -webkit-box-shadow: 0 0 3px rgb(194, 194, 194);
          box-shadow: 0 0 3px rgb(194, 194, 194);
}
@media screen and (max-width: 959px) {
  .p-machine__cats a {
    padding: 0.5rem;
    width: calc(25% - 1.5rem);
    font-size: 2vw;
  }
}
@media screen and (max-width: 519px) {
  .p-machine__cats a {
    width: calc(50% - 0.5rem);
    height: 4.5rem;
    font-size: clamp(1.5rem, 4vw, 1.7rem);
  }
}
.p-machine__cats a::before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #457703;
}
.p-machine__cats a:hover {
  opacity: 1;
}
.p-machine__cats a:hover::before {
  display: block;
}
@media screen and (max-width: 959px) {
  .p-machine__cats a small {
    font-size: 1em;
  }
}
.p-machine__cats a.current::before {
  display: block;
}

.p-machine__message {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 519px) {
  .p-machine__message {
    padding-left: 1rem;
    text-align: justify;
    border-left: 0.5rem solid #e1d737;
  }
}
.p-machine__message span {
  display: inline;
  padding-bottom: 0.8rem;
  width: 100%;
  font-size: clamp(1.7rem, 1.2976rem + 1.0732vw, 2.8rem);
  font-weight: bold;
  line-height: 1.8;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(93%, transparent), color-stop(93%, #e1d737));
  background: linear-gradient(transparent 0%, transparent 93%, #e1d737 93% #e1d737 100%);
}
@media screen and (max-width: 519px) {
  .p-machine__message span {
    display: inline-block;
    padding-bottom: 0;
    background: none;
  }
}

.p-machine__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 959px) {
  .p-machine__container {
    gap: 3.5rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-machine__container {
    gap: 4.5rem;
  }
}

.p-machine__card {
  width: calc(33.333% - 3.3333333333rem);
}
@media screen and (max-width: 959px) {
  .p-machine__card {
    width: calc(33.333% - 1.3333333333rem);
  }
}
@media screen and (max-width: 519px) {
  .p-machine__card {
    width: 100%;
  }
}
.p-machine__card > a {
  display: block;
}

.p-machine__image {
  aspect-ratio: 31/28;
  width: 100%;
  height: auto;
  background-color: #efefef;
}
.p-machine__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-machine__title {
  margin-top: 2.4rem;
  font-size: clamp(1.8rem, 1.7268rem + 0.1951vw, 2rem);
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 959px) {
  .p-machine__title {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-machine__title {
    line-height: 1.5;
  }
}

.p-machine__info {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 1.4634rem + 0.0976vw, 1.6rem);
  letter-spacing: 0.1em;
  line-height: 1.66;
}
@media screen and (max-width: 959px) {
  .p-machine__info {
    margin-top: 2rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 519px) {
  .p-machine__info {
    margin-top: 1.5rem;
  }
}
.p-machine__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  margin-top: 1rem;
  text-wrap: pretty;
}
.p-machine__info dl dt {
  width: 8rem;
  color: white;
  font-size: 0.75em;
  font-weight: bold;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  line-height: 1.9;
  background-color: #457703;
  border-radius: 4rem;
}
.p-machine__info dl dd {
  width: calc(100% - 7rem);
}

.p-machine-detail__images #main-carousel {
  width: 100%;
  background: #efefef;
}
.p-machine-detail__images #main-carousel .splide__slide {
  aspect-ratio: 1030/750;
  width: 100%;
  height: auto;
}
.p-machine-detail__images #main-carousel .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-machine-detail__images #thumbnail-carousel {
  margin-top: 2.6rem;
}
@media screen and (max-width: 959px) {
  .p-machine-detail__images #thumbnail-carousel {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .p-machine-detail__images #thumbnail-carousel {
    margin-top: 1rem;
  }
}

.p-machine-detail__title {
  margin: 2.5rem auto 0 0;
  font-weight: 500;
  text-align: left;
}

.p-machine-detail__detail {
  margin-top: 0.5rem;
  font-size: 1.13em;
  font-weight: bold;
}

.p-machine-detail__content {
  margin-top: 1rem;
}

.p-machine-detail__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2.5rem;
  margin-top: 1rem;
  font-size: clamp(2rem, 1.8171rem + 0.4878vw, 2.5rem);
  font-weight: 500;
}
.p-machine-detail__price dd {
  font-size: 1.5em;
}
.p-machine-detail__price dd small {
  font-size: 0.5em;
}

.p-machine-detail__sepa {
  margin: 0.5rem 0 2rem;
  width: 100%;
  height: 0.1rem;
  background-color: #b5b5b6;
}

.p-machine-detail__back {
  display: block;
  margin: 0 2rem 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0;
}
.p-machine-detail__back::after {
  content: "";
  display: inline-block;
  margin-left: 0.8rem;
  aspect-ratio: 12.4/9.5;
  width: 1.25rem;
  height: auto;
  background-image: url(../images/common/arrow_green.png);
  background-size: contain;
}

/* utility
------------------------------------------------ */
/* external
------------------------------------------------ *//*# sourceMappingURL=style.css.map */