@charset "UTF-8";
/*
* base
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
:root {
  --color-primary: #1a6f4d;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #666666;
  --color-green-text: #04842f;
  --color-darkgreen: #01280e;
  --color-lighgreen: #63bd81;
  --color-hover: #121e38;
  --color-focus: #578fef;
  --color-border: #dddddd;
  --color-border2: #c7c7c7;
  --color-font: #1b1b1b;
  --color-font-light: #b6b6b6;
  --color-bkg: #e3eff0;
  --color-bkg-02: #f4feff;
  --color-bkg-03: #f8f9fa;
  --color-bkg-green: #009172;
  --color-bkg-light: #eeeeee;
  --color-bkg-kv-title: #474747;
  --color-table-bkg: #eaeaea;
  --color-required: #790000;
  --color-blue: #8ba3cb;
  --color-green-02: #0ccc78;
  --color-green-03: #8bcda1;
  --color-green-04: #82c297;
  --color-blue-02: #1330a2;
}

:root {
  --width-content-ss: 857px;
  --width-content-s: 920px;
  --width-content-m: 1078px;
  --width-content: 1920px;
}

:root {
  --font-en: 'Roboto', sans-serif;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  min-height: 100%;
}
body {
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  color: var(--color-font);
  height: 100%;
  min-height: 100dvh;
  font-size: 1.6rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 1400px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
}

li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: middle;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

html {
  height: 100%;
}

a {
  outline: none;
}

p {
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  color: #0079d7;
  text-decoration: none;
}

a:active,
a:hover {
  color: #0079d7;
  text-decoration: none;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
div#wrapper {
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0px auto;
  padding: 0;
  position: relative;
  overflow: clip;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  div#wrapper {
    margin-bottom: auto;
  }
}
@media screen and (max-width: 480px) {
  div#wrapper {
    margin-bottom: auto;
  }
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
}

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

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

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

.tab-sp-i {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab-sp-i {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .tab-sp-i {
    display: block;
  }
}

.pc-tab-i {
  display: block;
}
@media screen and (max-width: 480px) {
  .pc-tab-i {
    display: none;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

margin

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.marT0 {
  margin-top: 0px !important;
}

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

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

.marL0 {
  margin-left: 0px !important;
}

.padT0 {
  padding-top: 0px !important;
}

.padR0 {
  padding-right: 0px !important;
}

.padB0 {
  padding-bottom: 0px !important;
}

.padL0 {
  padding-left: 0px !important;
}

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

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

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

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

.padT5 {
  padding-top: 5px !important;
}

.padR5 {
  padding-right: 5px !important;
}

.padB5 {
  padding-bottom: 5px !important;
}

.padL5 {
  padding-left: 5px !important;
}

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

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

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

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

.padT10 {
  padding-top: 10px !important;
}

.padR10 {
  padding-right: 10px !important;
}

.padB10 {
  padding-bottom: 10px !important;
}

.padL10 {
  padding-left: 10px !important;
}

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

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

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

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

.padT15 {
  padding-top: 15px !important;
}

.padR15 {
  padding-right: 15px !important;
}

.padB15 {
  padding-bottom: 15px !important;
}

.padL15 {
  padding-left: 15px !important;
}

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

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

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

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

.padT20 {
  padding-top: 20px !important;
}

.padR20 {
  padding-right: 20px !important;
}

.padB20 {
  padding-bottom: 20px !important;
}

.padL20 {
  padding-left: 20px !important;
}

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

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

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

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

.padT25 {
  padding-top: 25px !important;
}

.padR25 {
  padding-right: 25px !important;
}

.padB25 {
  padding-bottom: 25px !important;
}

.padL25 {
  padding-left: 25px !important;
}

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

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

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

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

.padT30 {
  padding-top: 30px !important;
}

.padR30 {
  padding-right: 30px !important;
}

.padB30 {
  padding-bottom: 30px !important;
}

.padL30 {
  padding-left: 30px !important;
}

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

.marR35 {
  margin-right: 35px !important;
}

.marB35 {
  margin-bottom: 35px !important;
}

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

.padT35 {
  padding-top: 35px !important;
}

.padR35 {
  padding-right: 35px !important;
}

.padB35 {
  padding-bottom: 35px !important;
}

.padL35 {
  padding-left: 35px !important;
}

.marT40 {
  margin-top: 40px !important;
}

.marR40 {
  margin-right: 40px !important;
}

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

.marL40 {
  margin-left: 40px !important;
}

.padT40 {
  padding-top: 40px !important;
}

.padR40 {
  padding-right: 40px !important;
}

.padB40 {
  padding-bottom: 40px !important;
}

.padL40 {
  padding-left: 40px !important;
}

.marT45 {
  margin-top: 45px !important;
}

.marR45 {
  margin-right: 45px !important;
}

.marB45 {
  margin-bottom: 45px !important;
}

.marL45 {
  margin-left: 45px !important;
}

.padT45 {
  padding-top: 45px !important;
}

.padR45 {
  padding-right: 45px !important;
}

.padB45 {
  padding-bottom: 45px !important;
}

.padL45 {
  padding-left: 45px !important;
}

.marT50 {
  margin-top: 50px !important;
}

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

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

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

.padT50 {
  padding-top: 50px !important;
}

.padR50 {
  padding-right: 50px !important;
}

.padB50 {
  padding-bottom: 50px !important;
}

.padL50 {
  padding-left: 50px !important;
}

.marT55 {
  margin-top: 55px !important;
}

.marR55 {
  margin-right: 55px !important;
}

.marB55 {
  margin-bottom: 55px !important;
}

.marL55 {
  margin-left: 55px !important;
}

.padT55 {
  padding-top: 55px !important;
}

.padR55 {
  padding-right: 55px !important;
}

.padB55 {
  padding-bottom: 55px !important;
}

.padL55 {
  padding-left: 55px !important;
}

.marT60 {
  margin-top: 60px !important;
}

.marR60 {
  margin-right: 60px !important;
}

.marB60 {
  margin-bottom: 60px !important;
}

.marL60 {
  margin-left: 60px !important;
}

.padT60 {
  padding-top: 60px !important;
}

.padR60 {
  padding-right: 60px !important;
}

.padB60 {
  padding-bottom: 60px !important;
}

.padL60 {
  padding-left: 60px !important;
}

.marT65 {
  margin-top: 65px !important;
}

.marR65 {
  margin-right: 65px !important;
}

.marB65 {
  margin-bottom: 65px !important;
}

.marL65 {
  margin-left: 65px !important;
}

.padT65 {
  padding-top: 65px !important;
}

.padR65 {
  padding-right: 65px !important;
}

.padB65 {
  padding-bottom: 65px !important;
}

.padL65 {
  padding-left: 65px !important;
}

.marT70 {
  margin-top: 70px !important;
}

.marR70 {
  margin-right: 70px !important;
}

.marB70 {
  margin-bottom: 70px !important;
}

.marL70 {
  margin-left: 70px !important;
}

.padT70 {
  padding-top: 70px !important;
}

.padR70 {
  padding-right: 70px !important;
}

.padB70 {
  padding-bottom: 70px !important;
}

.padL70 {
  padding-left: 70px !important;
}

.marT75 {
  margin-top: 75px !important;
}

.marR75 {
  margin-right: 75px !important;
}

.marB75 {
  margin-bottom: 75px !important;
}

.marL75 {
  margin-left: 75px !important;
}

.padT75 {
  padding-top: 75px !important;
}

.padR75 {
  padding-right: 75px !important;
}

.padB75 {
  padding-bottom: 75px !important;
}

.padL75 {
  padding-left: 75px !important;
}

.marT80 {
  margin-top: 80px !important;
}

.marR80 {
  margin-right: 80px !important;
}

.marB80 {
  margin-bottom: 80px !important;
}

.marL80 {
  margin-left: 80px !important;
}

.padT80 {
  padding-top: 80px !important;
}

.padR80 {
  padding-right: 80px !important;
}

.padB80 {
  padding-bottom: 80px !important;
}

.padL80 {
  padding-left: 80px !important;
}

.marT85 {
  margin-top: 85px !important;
}

.marR85 {
  margin-right: 85px !important;
}

.marB85 {
  margin-bottom: 85px !important;
}

.marL85 {
  margin-left: 85px !important;
}

.padT85 {
  padding-top: 85px !important;
}

.padR85 {
  padding-right: 85px !important;
}

.padB85 {
  padding-bottom: 85px !important;
}

.padL85 {
  padding-left: 85px !important;
}

.marT90 {
  margin-top: 90px !important;
}

.marR90 {
  margin-right: 90px !important;
}

.marB90 {
  margin-bottom: 90px !important;
}

.marL90 {
  margin-left: 90px !important;
}

.padT90 {
  padding-top: 90px !important;
}

.padR90 {
  padding-right: 90px !important;
}

.padB90 {
  padding-bottom: 90px !important;
}

.padL90 {
  padding-left: 90px !important;
}

.marT95 {
  margin-top: 95px !important;
}

.marR95 {
  margin-right: 95px !important;
}

.marB95 {
  margin-bottom: 95px !important;
}

.marL95 {
  margin-left: 95px !important;
}

.padT95 {
  padding-top: 95px !important;
}

.padR95 {
  padding-right: 95px !important;
}

.padB95 {
  padding-bottom: 95px !important;
}

.padL95 {
  padding-left: 95px !important;
}

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

.marR100 {
  margin-right: 100px !important;
}

.marB100 {
  margin-bottom: 100px !important;
}

.marL100 {
  margin-left: 100px !important;
}

.padT100 {
  padding-top: 100px !important;
}

.padR100 {
  padding-right: 100px !important;
}

.padB100 {
  padding-bottom: 100px !important;
}

.padL100 {
  padding-left: 100px !important;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

font-weigh

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.fontWB {
  font-weight: bold !important;
}

.fontWN {
  font-weight: normal !important;
}

.fontUL {
  text-decoration: underline !important;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

揃え位置・インデント clearfix

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.alignC {
  text-align: center !important;
}

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

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

.alignJ {
  text-align: justify;
}

.textIndent {
  margin-left: 1.3em !important;
  text-indent: -1.3em !important;
}

.textIndentNsp {
  margin-left: 1em !important;
  text-indent: -1em !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
* layout
*/
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  width: 100%;
  padding-left: 0px;
  padding-right: 77px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  background-color: #fff;
  z-index: 10;
}

.l-header-logo {
  margin-left: 20px;
}

.l-header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header-list li:nth-last-child(2) {
  padding-right: 30px;
}

a.l-header-item {
  color: #454545;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  display: inline-block;
  position: relative;
}
a.l-header-item::before {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #454545;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
a.l-header-item:hover::before {
  width: 100%;
}

.l-header-contact {
  width: 114px;
  height: 100%;
  background-color: var(--color-primary);
  color: #fff !important;
  font-size: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  line-height: 1;
  letter-spacing: 0.025em;
  padding: 20px;
}
.l-header-contact::before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  -webkit-mask-image: url("../img/icon/icon_mail.svg");
          mask-image: url("../img/icon/icon_mail.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
}

@media (max-width: 1400px) {
  .l-header-logo {
    width: 250px;
  }
  a.l-header-item {
    padding: 12px;
    font-size: 14px;
  }
  .l-header-contact {
    width: 94px;
    height: 80px;
    font-size: 10px;
    padding: 20px 10px;
  }
  .l-header-contact::before {
    width: 16px;
  }
  .l-header-list li:nth-last-child(2) {
    padding-right: 20px;
  }
}
@media (max-width: 1230px) {
  .l-header-logo {
    width: 220px;
  }
  a.l-header-item {
    padding: 12px 8px;
    font-size: 14px;
  }
  .l-header-contact {
    width: 94px;
    height: 80px;
    font-size: 10px;
    padding: 20px 10px;
  }
  .l-header-contact::before {
    width: 16px;
  }
  .l-header-list li:nth-last-child(2) {
    padding-right: 10px;
  }
}
@media (max-width: 1130px) {
  .l-header-logo {
    width: 190px;
  }
  a.l-header-item {
    padding: 12px 8px;
    font-size: 12px;
  }
  .l-header-contact {
    width: 85px;
    height: 80px;
    font-size: 10px;
    padding: 20px 10px;
  }
  .l-header-contact::before {
    width: 16px;
  }
  .l-header-list li:nth-last-child(2) {
    padding-right: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .l-header-nav {
    display: none;
  }
}
.l-header-Button {
  width: 77px;
  height: 80px;
  background-color: #454545;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 11;
}

.l-header-Button-label {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.025em;
  display: block;
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
}

.menu-button {
  position: absolute;
  top: 20px;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 7px;
  width: 30px;
  height: 17px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-button__line,
.menu-button::before,
.menu-button::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.js-header-Button.js-open .menu-button__line {
  opacity: 0;
}

.js-header-Button.js-open::before {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}

.js-header-Button.js-open::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

@-webkit-keyframes trigger {
  0% {
    width: 0%;
  }
  30% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes trigger {
  0% {
    width: 0%;
  }
  30% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
.header-cnt .header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 220px;
  z-index: 100;
}
.header-cnt {
  width: 100%;
  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;
}

#header.header-2 {
  position: sticky;
}

#header.is-scrolled.header-3 {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1200px) {
  #header {
    padding: 0px 40px;
  }
  #header .header-logo {
    width: 200px;
  }
}
@media screen and (max-width: 1000px) {
  #header {
    padding: 0 10px;
  }
  #header .header-logo {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: 80px;
    padding: 0 0 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--color-white);
  }
  #header .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 200px;
  }
  .header-cnt {
    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;
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 480px) {
  #header .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 150px;
  }
}
footer {
  width: 100%;
  margin: 0px auto 0;
  display: block;
  padding: 0px;
  position: relative;
  background: #2b3a3f;
  color: #fff;
  position: sticky;
  top: 100%;
}

@media screen and (max-width: 1400px) {
  footer {
    padding: 0 3%;
  }
}
.footer-cnt {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-header {
  max-width: 1200px;
  padding: 40px 0 20px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-header .footer-logo {
  width: 221px;
}
.footer-header .footer-logo img {
  width: 100%;
  height: auto;
}
.footer-header .footer-address h1 {
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.footer-header .footer-address p {
  color: #bcbcbc;
}
.footer-header .footer-contact p {
  line-height: 1.8;
  font-size: 14px;
  margin: 0 0 20px;
}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-nav li {
  line-height: 1.8;
}
.footer-nav li::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #fff;
  display: inline-block;
}
.footer-nav li:last-child::after {
  display: none;
}
.footer-nav li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.footer-nav li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #a4a4a4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  bottom: -12px;
}
.footer-nav li a:hover::after {
  bottom: -6px;
  opacity: 1;
  visibility: visible;
}
.footer-nav li a {
  color: #fff;
  margin: 0 30px;
}
.footer-nav li a::after {
  background-color: #fff;
}

.copyright {
  font-size: 13px;
  text-align: right;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  .footer-header {
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 610px) {
  .footer-header {
    gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 0;
  }
  .footer-header .footer-address h1 {
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
  }
  .footer-header .footer-address p {
    text-align: center;
    color: #bcbcbc;
  }
  .footer-header .footer-contact p {
    text-align: center;
  }
  .footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
  .footer-nav li {
    line-height: 1.8;
    font-size: 14px;
  }
  .footer-nav li::after {
    content: "";
    width: 1px;
    height: 14px;
    background: #fff;
    display: inline-block;
  }
  .footer-nav li:last-child::after {
    display: none;
  }
  .footer-nav li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .footer-nav li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background: #a4a4a4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    bottom: -12px;
  }
  .footer-nav li a:hover::after {
    bottom: -6px;
    opacity: 1;
    visibility: visible;
  }
  .footer-nav li a {
    color: #fff;
    margin: 0 10px;
  }
  .footer-nav li a::after {
    background-color: #fff;
  }
  .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav ul {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 10px;
  }
  .footer-nav li {
    line-height: 1.8;
    font-size: 14px;
  }
  .footer-nav li::after {
    content: "";
    width: 1px;
    height: 14px;
    background: #fff;
    display: inline-block;
  }
  .footer-nav li:last-child::after {
    display: none;
  }
  .footer-nav li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .footer-nav li a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background: #a4a4a4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    bottom: -12px;
  }
  .footer-nav li a:hover::after {
    bottom: -6px;
    opacity: 1;
    visibility: visible;
  }
  .footer-nav li a {
    color: #fff;
    margin: 0 10px;
  }
  .footer-nav li a::after {
    background-color: #fff;
  }
}
#floatingGoTop {
  position: fixed;
  right: 4.16vw;
  bottom: 4.7vw;
  z-index: 1002;
  cursor: pointer;
  display: none;
  width: clamp(50px, 3.645vw, 68px);
  height: clamp(50px, 3.645vw, 68px);
  border-radius: 50%;
  background: #008d43;
  border: 1px solid #fff;
  z-index: 10000;
}
#floatingGoTop::before, #floatingGoTop::after {
  content: "";
  position: absolute;
  top: 30%;
  left: calc(50% - 2px);
  width: 4px;
  height: 1.5vw;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: 50% 2px;
          transform-origin: 50% 2px;
}
#floatingGoTop::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#floatingGoTop::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 480px) {
  #floatingGoTop {
    position: fixed;
    right: 4.16vw;
    bottom: 4.7vw;
    z-index: 1002;
    cursor: pointer;
    display: none;
    width: clamp(50px, 3.645vw, 68px);
    height: clamp(50px, 3.645vw, 68px);
    border-radius: 50%;
    background: #008d43;
    border: 1px solid #fff;
    z-index: 10000;
  }
  #floatingGoTop::before, #floatingGoTop::after {
    content: "";
    position: absolute;
    top: 30%;
    left: calc(50% - 2px);
    width: 5px;
    height: 13px;
    border-radius: 9999px;
    background-color: #fff;
    -webkit-transform-origin: 50% 2px;
            transform-origin: 50% 2px;
  }
  #floatingGoTop::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #floatingGoTop::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
footer {
  background-color: #e3e5e4;
  line-height: 2;
}

.l-fotter a {
  text-decoration: none;
  color: #1f1f1f;
}

.l-footer-logo {
  padding: 50px 0;
  width: 300px;
}

.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  padding-left: 100px;
  padding-right: 100px;
}

.l-footer-item {
  margin-top: 13px;
  display: block;
  border-bottom: 1px solid var(--color-border2);
  width: 190px;
  position: relative;
}
.l-footer-item::after {
  content: "";
  display: block;
  width: 13px;
  height: 12px;
  background-color: #1f1f1f;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url(../img/common/arrow_s.svg);
          mask-image: url(../img/common/arrow_s.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-lighgreen);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.l-footer-item:hover::after {
  right: 2%;
}

.l-footer-nav-categorys-bottom {
  margin-top: 20px;
}

.l-footer-nav-category-list {
  margin-left: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.l-footer-nav-category-list a {
  font-size: 15px;
  position: relative;
  display: block;
  width: 100%;
}
.l-footer-nav-category-list a::after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: transparent;
  display: block;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.l-footer-nav-category-list a:hover::after {
  width: 100%;
  background-color: var(--color-border2);
}

.l-fotter-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.l-fotter-bnr a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: var(--color-font);
  font-size: 12px;
}

.l-footer-copyright {
  color: #1f1f1f;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 1400px) {
  .l-footer-nav {
    padding-left: 0px;
    padding-right: 0px;
  }
  .l-footer-nav-categorys-bottom {
    margin-top: 20px;
  }
  .l-footer-nav-category-list a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .l-footer-nav {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 14px;
  }
  .l-footer-item {
    margin-top: 13px;
    display: block;
    border-bottom: 1px solid var(--color-border2);
    width: 120px;
    position: relative;
  }
  .l-footer-nav-category-list a {
    font-size: 13px;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer-nav {
    padding-left: 0px;
    padding-right: 0px;
    font-size: 12px;
  }
  .l-footer-item {
    margin-top: 13px;
    display: block;
    border-bottom: 1px solid var(--color-border2);
    width: 100px;
    position: relative;
  }
  .l-footer-nav-category-list a {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 16px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .l-footer-item {
    margin-top: 13px;
    display: block;
    border-bottom: 1px solid var(--color-border2);
    width: 100%;
    position: relative;
  }
  .l-footer-nav-category-list {
    margin-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
  .l-footer-nav-category-list a {
    font-size: 15px;
    position: relative;
    display: block;
    width: 100%;
  }
  .l-footer-nav-category-list a::after {
    content: "";
    width: 0%;
    height: 1px;
    background-color: transparent;
    display: block;
    -webkit-transition: 0.4s ease;
    transition: 0.4s ease;
  }
  .l-footer-nav-category-list a:hover::after {
    width: 100%;
    background-color: var(--color-border2);
  }
}
@media screen and (max-width: 480px) {
  .l-footer-logo {
    padding: 50px 0 20px;
    width: 100%;
  }
  .l-fotter-bnr {
    margin-top: 40px;
  }
  .l-footer-copyright {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
  }
}
main {
  margin-top: 80px;
}

.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container-m {
  width: min(90%, var(--width-content-m));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

.js-menu-open .l-modal-menu {
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

.l-modal-menu {
  position: fixed;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  background-color: #373737;
  overflow-y: scroll;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.l-modal-menu-body {
  position: relative;
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
.l-modal-menu-body::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("../img/common/logo_02.svg");
          mask-image: url("../img/common/logo_02.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: 33vw;
          mask-size: 33vw;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.l-modal-menu-logo {
  width: 100%;
}

.l-modal-menu-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.l-modal-menu-list {
  width: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 42px;
}

.l-modal-menu-item a {
  color: var(--color-white);
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-modal-menu-item a:not(.c-button01):hover {
  opacity: 0.5;
}

@media screen and (max-width: 1200px) {
  .l-modal-menu-body {
    gap: 40px;
  }
  .l-modal-menu-list {
    gap: 32px;
  }
  .l-modal-menu-item a {
    font-size: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .l-modal-menu-row {
    gap: 0px;
  }
  .l-modal-menu-list {
    width: 30vw;
    gap: 24px;
  }
  .l-modal-menu-item a {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-modal-menu-row {
    gap: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-modal-menu-list {
    width: 100%;
    gap: 24px;
  }
  .l-modal-menu-item a {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .l-modal-menu-body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 18px;
  }
  .l-modal-menu-logo {
    width: 70%;
    margin-top: 0px;
  }
  .l-modal-menu-row {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-modal-menu-list {
    width: 100%;
    gap: 24px;
  }
  .l-modal-menu-item a {
    font-size: 16px;
    font-weight: 500;
  }
}
/*
* module
*/
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  margin-bottom: 0px;
}
.btn-area.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-area.p-t-75 {
  padding-top: 75px;
}

@media screen and (max-width: 768px) {
  .btn-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
    margin-bottom: 0px;
  }
  .btn-area.left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btn-area.p-t-75 {
    padding-top: 30px;
  }
}
a.btn {
  min-width: 300px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: #008d43;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.1em;
}
a.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #7abd37;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
a.btn:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
a.btn.btn--primary {
  min-width: 240px;
}
a.btn.btn--primary::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  content: "";
  position: absolute;
  top: 50%; /* 縦軸をセンタリングする */
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); /* 縦軸をセンタリングする */
  border: 5px solid transparent;
  border-left: 8px solid #ffffff; /* 好みで色を変えてください */
}
a.btn.btn--primary:hover::after {
  right: 16px;
}
a.btn.btn--ft_contact {
  min-width: 380px;
}
a.btn.btn--ft_contact img {
  width: 18px;
  margin-right: 8px;
}
a.btn.btn--ft_contact::after {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  content: "";
  position: absolute;
  top: 50%; /* 縦軸をセンタリングする */
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); /* 縦軸をセンタリングする */
  border: 5px solid transparent;
  border-left: 8px solid #ffffff; /* 好みで色を変えてください */
}
a.btn.btn--ft_contact:hover::after {
  right: 16px;
}
a.btn.contact-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 40px 10px 70px;
}
a.btn.phone-btn {
  padding: 10px 40px 10px 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 40px 10px 70px;
}
a.btn.contact-btn, a.btn.phone-btn {
  min-width: 420px;
  min-height: 75px;
  line-height: inherit;
  font-weight: bold;
  font-size: 20px;
}
a.btn.contact-btn .icon-mail, a.btn.phone-btn .icon-mail {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-block;
  content: "";
  background-color: #fff;
  -webkit-mask-image: url("../img/icon/icon-mail.svg");
          mask-image: url("../img/icon/icon-mail.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
a.btn.contact-btn .icon-paper, a.btn.phone-btn .icon-paper {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-block;
  content: "";
  background-color: #fff;
  -webkit-mask-image: url("../img/icon/icon-paper.svg");
          mask-image: url("../img/icon/icon-paper.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
a.btn.contact-btn .icon-phone, a.btn.phone-btn .icon-phone {
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: inline-block;
  content: "";
  background-color: #fff;
  -webkit-mask-image: url("../img/icon/icon-phone.svg");
          mask-image: url("../img/icon/icon-phone.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
a.btn.contact-btn .phone-hours, a.btn.phone-btn .phone-hours {
  padding: 8px 0 0 0;
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  a.btn {
    min-width: 320px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    color: #fff;
    background: #008d43;
    position: relative;
    z-index: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a.btn:hover {
    opacity: 0.8;
  }
}
.btn-send-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 50px;
  margin-bottom: 40px;
}
.btn-send-wrap.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-send-wrap.p-t-75 {
  padding-top: 75px;
}
.btn-send-wrap input[type=submit].btn-send {
  cursor: pointer;
  width: 300px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: #008d43;
  position: relative;
  z-index: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
  border: none;
  padding: 0;
}
.btn-send-wrap input[type=submit].btn-send:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .btn-send-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 50px;
    margin-bottom: 40px;
  }
  .btn-send-wrap.left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .btn-send-wrap.p-t-75 {
    padding-top: 75px;
  }
  .btn-send-wrap input[type=submit].btn-send {
    cursor: pointer;
    width: 300px;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    text-align: center;
    display: inline-block;
    color: #fff;
    background: #008d43;
    position: relative;
    z-index: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    letter-spacing: 0.1em;
    border: none;
    padding: 0;
  }
  .btn-send-wrap input[type=submit].btn-send:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 480px) {
  a.btn.btn--ft_contact {
    min-width: 300px;
  }
  a.btn.contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 40px 10px 70px;
  }
  a.btn.phone-btn {
    padding: 10px 40px 10px 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 40px 10px 70px;
  }
  a.btn.contact-btn, a.btn.phone-btn {
    min-width: 300px;
    min-height: 75px;
    line-height: inherit;
    font-weight: bold;
    font-size: 20px;
  }
  a.btn.contact-btn .icon-mail, a.btn.phone-btn .icon-mail {
    position: absolute;
    left: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-block;
    content: "";
    background-color: #fff;
    -webkit-mask-image: url("../img/icon/icon-mail.svg");
            mask-image: url("../img/icon/icon-mail.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
  }
  a.btn.contact-btn .icon-paper, a.btn.phone-btn .icon-paper {
    position: absolute;
    left: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-block;
    content: "";
    background-color: #fff;
    -webkit-mask-image: url("../img/icon/icon-paper.svg");
            mask-image: url("../img/icon/icon-paper.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
  }
  a.btn.contact-btn .icon-phone, a.btn.phone-btn .icon-phone {
    position: absolute;
    left: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: inline-block;
    content: "";
    background-color: #fff;
    -webkit-mask-image: url("../img/icon/icon-phone.svg");
            mask-image: url("../img/icon/icon-phone.svg");
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
  }
  a.btn.contact-btn .phone-hours, a.btn.phone-btn .phone-hours {
    padding: 8px 0 0 0;
    display: block;
    font-size: 14px;
  }
}
.c-button01 {
  font-size: 20px !important;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 50vh;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 10px;
  max-width: 320px;
  color: var(--color-white) !important;
  overflow: hidden;
}
.c-button01::after {
  content: "";
  width: 22px;
  aspect-ratio: 1/1;
  display: block;
  -webkit-mask-image: url("../img/icon/icon_arrow-w.svg");
          mask-image: url("../img/icon/icon_arrow-w.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-button01::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: -1;
  background: var(--color-hover);
}
.c-button01:hover {
  border-color: var(--color-hover);
}
.c-button01:hover::before {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.c-button01 a {
  color: var(--color-white);
}

@media screen and (max-width: 1200px) {
  .c-button01 {
    font-size: 16px !important;
    padding: 18px 10px;
    max-width: 250px;
  }
  .c-button01::after {
    width: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .c-button01 {
    font-size: 14px !important;
    padding: 18px 4px;
    max-width: 220px;
  }
  .c-button01::after {
    width: 14px;
  }
}
.c-button01--mail {
  padding-inline: 24px;
  margin-inline: auto;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color: transparent;
  overflow: hidden;
}

.c-button01--tel {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  padding: 13px 32px;
  margin-inline: auto;
}
.c-button01--tel::after {
  display: none;
}

.c-button01--def {
  padding-inline: 24px;
  margin-inline: auto;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  overflow: hidden;
}

@media screen and (max-width: 1400px) {
  .c-button01--mail {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 1200px) {
  .c-button01--tel {
    max-width: none;
    min-width: 100%;
  }
  .c-button01--mail {
    max-width: none;
    min-width: 100%;
  }
}
.c-button02 {
  position: relative;
  color: var(--color-primary) !important;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  font-size: 20px;
}
.c-button02::before {
  content: "";
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-primary);
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-button02::after {
  content: "";
  width: 28px;
  height: 16px;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
          mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-white);
  display: block;
  position: absolute;
  left: 46px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .c-button02:hover::before {
    background-color: #ffffff;
    border: 2px solid var(--color-primary);
  }
  .c-button02:hover::after {
    left: 55px;
    background-color: var(--color-primary);
  }
}

.c-button02--v2 {
  color: #fff !important;
}
.c-button02--v2::before {
  background-color: var(--color-white);
}
.c-button02--v2::after {
  background-color: var(--color-primary);
}
@media (any-hover: hover) {
  .c-button02--v2:hover::before {
    background-color: var(--color-primary);
    border: 2px solid var(--color-white);
  }
  .c-button02--v2:hover::after {
    left: 55px;
    background-color: var(--color-white);
  }
}

@media screen and (max-width: 1400px) {
  .c-button02 {
    gap: 20px;
    font-size: 15px;
  }
  .c-button02::before {
    width: 100px;
  }
  .c-button02::after {
    width: 28px;
    height: 16px;
    left: 36px;
  }
}
@media screen and (max-width: 480px) {
  .c-button02 {
    position: relative;
    color: var(--color-primary) !important;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    font-size: 16px;
  }
  .c-button02::before {
    content: "";
    width: 50px;
  }
  .c-button02::after {
    content: "";
    width: 18px;
    height: 10px;
    left: 15px;
  }
  .c-button02--v2 {
    color: #fff !important;
  }
}
.c-button03 {
  display: inline-block;
  position: relative;
  background-color: #171717;
  color: var(--color-white) !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 80px;
  border-radius: 50vh;
  font-size: 24px;
  line-height: 1;
}
.c-button03::after {
  content: "";
  width: 28px;
  height: 16px;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
          mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-white);
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .c-button03:hover::after {
    right: 25px;
  }
}

@media screen and (max-width: 1400px) {
  .c-button03 {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .c-button03 {
    display: block;
    font-size: 16px;
    padding: 16px 40px;
  }
  .c-button03::after {
    width: 24px;
    height: 12px;
    right: 10px;
  }
}
.c-button04 {
  font-size: 20px;
  text-decoration: none;
  background-color: var(--color-primary);
  border-radius: 50vh;
  position: relative;
  padding: 14px 82px 14px 64px;
  color: var(--color-white) !important;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-button04::after {
  content: "";
  width: 22px;
  aspect-ratio: 1/1;
  position: absolute;
  display: block;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url("../img/icon/icon_arrow-w.svg");
          mask-image: url("../img/icon/icon_arrow-w.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .c-button04:hover::after {
    right: 18px;
  }
}
.c-button04.c-button04--v01 {
  font-size: 16px;
}

.c-button05 {
  width: 200px;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  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;
  padding: 10px 30px;
  border-radius: 50vh;
  position: relative;
}
.c-button05::after {
  content: "";
  width: 27px;
  height: 12px;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
          mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (any-hover: hover) {
  .c-button05:hover::after {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
}

/**************************************
	見出し
**************************************/
.c-title01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  letter-spacing: 0.025em;
}

.c-title01-jp {
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.c-title01-en {
  font-size: 16px;
  font-family: var(--font-en);
  color: var(--color-primary);
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 1400px) {
  .c-title01-jp {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .c-title01-jp {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .c-title01 {
    gap: 8px;
  }
  .c-title01-jp {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
  }
  .c-title01-en {
    font-size: 16px;
  }
}
.c-title02 {
  font-weight: bold;
  color: var(--color-green-text);
}

.c-title03 {
  color: var(--color-green-text);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  position: relative;
  font-size: 36px;
}
.c-title03 h2 {
  font-weight: bold;
}
.c-title03 .contact-subtitle {
  font-weight: bold;
  font-size: 32px;
}
.c-title03::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  background-color: var(--color-green-text);
}

@media screen and (max-width: 768px) {
  .c-title03 {
    gap: 20px;
    font-size: 32px;
  }
  .c-title03 .contact-subtitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .c-title03 {
    gap: 20px;
    font-size: 24px;
    line-height: 1.4;
  }
  .c-title03 .contact-subtitle {
    font-size: 24px;
  }
}
.ttl-a01 {
  font-size: 32px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  font-weight: bold;
}
.ttl-a01 span {
  font-size: 16px;
  display: block;
  font-weight: normal;
}

.ttl-a02 {
  font-size: 32px;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.ttl-a02 span {
  font-size: 12px;
  display: block;
}

.ttl-a03 {
  font-size: 32px;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
  position: relative;
}
.ttl-a03 span {
  font-size: 12px;
  display: block;
}
.ttl-a03 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ttl-a03:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #000;
}

.ttl-a04 {
  font-size: 32px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.12em;
  position: relative;
  margin-inline: auto;
  margin-bottom: 40px;
}
.ttl-a04 span {
  font-size: 12px;
  display: block;
}
.ttl-a04 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.ttl-a04:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #000;
}

.ttl-a05 {
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.ttl-a05::before, .ttl-a05::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2px;
  background: #000;
}

.ttl-a06 {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 60px;
}
.ttl-a06 span {
  font-size: 16px;
  display: block;
}
.ttl-a06 span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #000;
  margin-right: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .ttl-a01 {
    font-size: 24px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .ttl-a01 span {
    font-size: 16px;
    display: block;
    font-weight: normal;
  }
  .ttl-a02 {
    font-size: 24px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .ttl-a02 span {
    font-size: 12px;
    display: block;
  }
  .ttl-a03 {
    font-size: 24px;
    text-align: left;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    position: relative;
  }
  .ttl-a03 span {
    font-size: 12px;
    display: block;
  }
  .ttl-a03 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .ttl-a03:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: #000;
  }
  .ttl-a04 {
    font-size: 24px;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.12em;
    position: relative;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  .ttl-a04 span {
    font-size: 12px;
    display: block;
  }
  .ttl-a04 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .ttl-a04:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: #000;
  }
  .ttl-a05 {
    font-size: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.8;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  .ttl-a05::before, .ttl-a05::after {
    content: "";
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 2px;
    background: #000;
  }
  .ttl-a06 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .ttl-a06 span {
    font-size: 14px;
    display: block;
  }
  .ttl-a06 span::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #000;
    margin-right: 10px;
    vertical-align: middle;
  }
}
.ttl-b01 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--color-font);
}

@media screen and (max-width: 768px) {
  .ttl-b01 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-font);
  }
}
@media screen and (max-width: 480px) {
  .ttl-b01 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--color-font);
  }
}
.ttl-b02 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--color-font);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.ttl-b02::before {
  content: "";
  display: block;
  width: 10px;
  height: 30px;
  background-color: #80a2b0;
}

@media screen and (max-width: 768px) {
  .ttl-b02 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--color-font);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .ttl-b02::before {
    content: "";
    display: block;
    width: 10px;
    height: 26px;
    background-color: #80a2b0;
  }
}
@media screen and (max-width: 480px) {
  .ttl-b02 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--color-font);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .ttl-b02::before {
    content: "";
    display: block;
    width: 10px;
    height: 20px;
    background-color: #80a2b0;
  }
}
.ttl-b03 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--color-font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
}
.ttl-b03 span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background-color: #fff;
}
.ttl-b03::after {
  display: block;
  content: "";
  height: 3px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #80a2b0;
}

/**************************************
	リスト
**************************************/
.oListDefault h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}

.oListDefault li {
  line-height: 1.5;
  list-style-type: decimal;
  margin-left: 23px;
  margin-bottom: 50px;
}

.oListDefault li ul li {
  list-style-type: disc;
  margin-left: 23px;
  margin-bottom: 10px;
}

.oListDefault li ol {
  margin-top: 10px;
  margin-bottom: 20px;
}

.oListDefault li ol li {
  list-style-type: upper-roman;
}

.c-table {
  width: 100%;
  border: 1px solid var(--color-border);
}
.c-table tr th {
  padding: 20px;
  background-color: var(--color-table-bkg);
}
.c-table tr td {
  padding: 20px 60px;
}

.access-table tr {
  border-bottom: 1px solid var(--color-border);
}
.access-table tr th {
  padding: 20px;
  background-color: var(--color-table-bkg);
}
.access-table tr td {
  padding: 20px 60px;
}

.access-table-th {
  max-width: 300px;
  text-align: center;
}

.access-table-td-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.access-table-td-team {
  width: 100px;
  font-weight: bold;
}

.access-table-td-address {
  width: 330px;
}

.access-table-td-phone {
  width: 160px;
}

.access-table-td-button {
  width: calc(100% - 590px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.access-table-td-button--v02 {
  width: calc(100% - 490px);
}

@media screen and (max-width: 1000px) {
  .access-table tr th {
    padding: 20px;
    display: block;
    width: 100%;
  }
  .access-table tr td {
    padding: 20px 20px;
    display: block;
  }
  .access-table-th {
    max-width: 100%;
    text-align: center;
  }
  .access-table-td-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
  .access-table-td-team {
    width: 100%;
  }
  .access-table-td-address {
    width: 100%;
  }
  .access-table-td-phone {
    width: 100%;
  }
  .access-table-td-button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*
*/
/************************************
form
*************************************/
/*
reset
***********************/
button,
option,
select,
textarea,
input[type=button],
input[type=submit],
input[type=number],
input[type=email],
input[type=tel],
input[type=date],
input[type=text],
input[type=select],
input[type=option],
input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  outline: 0;
  margin: 0;
}

/* デフォルトのradio、checkboxは非表示 */
/* for firefox */
select {
  text-indent: 0.01px;
  text-overflow: "";
}

/* for ie10 ie11 ie系のプルダウンの矢印を消す ie9は非対応 */
/*
input[type="text"] textarea
input[type="●●●"] 適宜追加
*/
textarea,
select,
input[type=number],
input[type=text],
input[type=email],
input[type=tel],
input[type=date] {
  padding: 6px 10px;
  font-size: 14px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
}

textarea {
  height: 100px; /* お好みの高さに */
}

/* フォーカス時の色変更 */
textarea:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=text]:focus {
  border: 1px solid #333;
}

/* チェックボックス */
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=submit],
input[type=button] {
  width: 100%;
  height: 44px;
  padding: 10px 20px;
  display: block;
  position: relative;
  background: #111;
  color: #fff;
  text-align: center;
  border: 1px solid #111;
  cursor: pointer;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  color: #ccc;
  font-size: 12px;
  font-size: 1.2rem;
}

.formBoxzip1 {
  width: 70px;
}

.formBoxzip2 {
  width: 80px;
}

.formBoxPref {
  width: 222px;
}

.address-form {
  margin-top: 1em;
}

.formBox500 {
  width: 500px;
}
@media screen and (max-width: 480px) {
  .formBox500 {
    width: 100%;
  }
}

.form-txtarea-L {
  width: 100%;
  height: 300px;
}

#searchAddress {
  border-radius: 3px;
  background: #f8f8f8;
  border: #d8d8d8 1px solid;
  text-align: center;
  padding: 8px;
  cursor: pointer;
  margin-left: 20px;
}

@media screen and (max-width: 480px) {
  #searchAddress {
    margin-left: 0;
    display: block;
    margin: 10px 0;
  }
}
.visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

label:has(input[type=checkbox]) {
  position: relative;
  cursor: pointer;
}
label:has(input[type=checkbox])::before, label:has(input[type=checkbox])::after {
  content: "";
  display: block;
  position: absolute;
}
label:has(input[type=checkbox])::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #c1c1c1;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
label:has(input[type=checkbox])::after {
  border-bottom: 3px solid #60d790;
  border-left: 3px solid #60d790;
  opacity: 0;
  height: 10px;
  width: 20px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0px;
  left: 8px;
}
label:has(input[type=checkbox]) span {
  padding-left: 40px;
}

label:has(input[type=radio]) {
  position: relative;
  cursor: pointer;
}
label:has(input[type=radio])::before, label:has(input[type=radio])::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
label:has(input[type=radio])::before {
  background-color: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  left: 5px;
}
label:has(input[type=radio])::after {
  background-color: #60d790;
  border-radius: 50%;
  opacity: 0;
  width: 20px;
  height: 20px;
  left: 7px;
}
label:has(input[type=radio]) span {
  padding-left: 40px;
}

label:has(input:checked)::after {
  opacity: 1;
}

.last-checkBox {
  margin-top: 4em;
  line-height: 1.6;
}
.last-checkBox label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.last-checkBox span {
  display: inline-block;
}
.last-checkBox label:has(input[type=checkbox])::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #c1c1c1;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.last-checkBox label:has(input[type=checkbox])::after {
  border-bottom: 3px solid #60d790;
  border-left: 3px solid #60d790;
  opacity: 0;
  height: 10px;
  width: 20px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  top: 40%;
  left: 10px;
}
.last-checkBox label:has(input:checked)::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .last-checkBox {
    width: 70%;
    margin-top: 2em;
    margin-left: auto;
  }
}
.est {
  color: #ba0000;
  padding-left: 10px;
}

/*
* pages
*/
#top-movie video {
  width: 100%;
}

#top-news {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 301px 1fr;
  grid-template-rows: auto 1fr;
  gap: 64px 0;
}

.top-news-title {
  grid-column: 1/2;
  grid-row: 1/2;
}

.top-news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  grid-column: 2/3;
  grid-row: 1/3;
}

.c-news-item {
  width: 100%;
}

.c-news-thumb {
  max-width: 602px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.c-news-thumb img {
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .c-news-thumb:hover img {
    scale: 1.1;
  }
}

.c-news-item-title {
  line-height: 1.5;
}

a.c-news-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: var(--color-font);
}

.top-news-button {
  grid-column: 1/2;
  grid-row: 2/3;
}

@media screen and (max-width: 768px) {
  #top-news {
    margin-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .top-news-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .top-news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
  .c-news-item {
    max-width: 301px;
  }
}
@media screen and (max-width: 480px) {
  #top-news {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .top-news-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .c-news-item {
    max-width: 100%;
  }
}
#top-blog {
  margin-top: 120px;
  display: grid;
  grid-template-columns: 301px 1fr;
  grid-template-rows: auto 1fr;
  gap: 64px 0;
}

.top-news-blog {
  grid-column: 1/2;
  grid-row: 1/2;
}

.top-blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  grid-column: 2/3;
  grid-row: 1/3;
}

.c-blog-item {
  width: 100%;
}

.c-blog-thumb {
  max-width: 602px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.c-blog-thumb img {
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .c-blog-thumb:hover img {
    scale: 1.1;
  }
}

.c-blog-item-title {
  line-height: 1.5;
}

a.c-blog-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  color: var(--color-font);
}

.top-blog-button {
  grid-column: 1/2;
  grid-row: 2/3;
}

@media screen and (max-width: 768px) {
  #top-blog {
    margin-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .top-blog-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .top-blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
  .c-blog-item {
    max-width: 301px;
  }
}
@media screen and (max-width: 480px) {
  #top-blog {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
  .top-blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .c-blog-item {
    max-width: 100%;
  }
}
#top-business {
  background-color: var(--color-bkg);
  padding: 88px 0;
  margin-top: 120px;
}
#top-business h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
#top-business h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.top-business-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-business-main {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.top-business-main span {
  font-weight: bold;
  display: block;
  margin-top: 20px;
}

.top-business-image {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  position: relative;
}
.top-business-image::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--color-bkg);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(70px);
          transform: translateX(70px);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-business-image img {
  -webkit-transform: translateX(70px);
          transform: translateX(70px);
  border-radius: 20px 0 20px 0;
}
.top-business-image.active::after {
  -webkit-transform: translateX(calc(100% + 70px));
          transform: translateX(calc(100% + 70px));
}

@media screen and (max-width: 1400px) {
  #top-business h2 {
    font-size: 28px;
  }
  #top-business h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top-business h2 {
    font-size: 24px;
  }
  #top-business h3 {
    font-size: 20px;
  }
  .top-business-image img {
    -webkit-transform: translateX(24px);
            transform: translateX(24px);
  }
}
@media screen and (max-width: 480px) {
  #top-business {
    padding: 44px 0;
    margin-top: 60px;
  }
  #top-business h2 {
    font-size: 20px;
  }
  #top-business h3 {
    font-size: 16px;
  }
  .top-business-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-business-main {
    width: 100%;
    margin-top: 24px;
    gap: 24px;
  }
  .top-business-image {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
  .top-business-image img {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    border-radius: 14px 0 14px 0;
  }
}
#top-products {
  margin-top: 120px;
}

.top-products-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-product-item {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.top-product-item:hover {
  opacity: 0.5;
}
.top-product-item:hover img {
  scale: 1.1;
}

.top-products-slider {
  margin-top: 134px;
}

.top-products-item-name {
  color: var(--color-font);
}

.top-products-item-name {
  text-align: center;
}

.top-products-item-img {
  text-align: center;
  overflow: hidden;
  background-color: #e4e4e4;
  border-radius: 24px;
}
.top-products-item-img img {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top-products-button {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 480px) {
  #top-products {
    margin-top: 60px;
  }
  .top-products-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .top-products-slider {
    margin-top: 67px;
  }
  .top-products-item-name {
    font-size: 12px;
  }
  .top-products-button {
    margin-top: 40px;
  }
}
#top-madeorder {
  background: url(../img/bkg/bkg_001.jpg) top center/cover;
  background-attachment: fixed;
  color: var(--color-white);
  text-align: center;
  padding: 120px 0;
  margin-top: 120px;
}

.top-madeorder-title {
  color: var(--color-white);
}
.top-madeorder-title h2 {
  font-size: 40px;
}
.top-madeorder-title p {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
}

.top-madeorder-sub-text {
  margin-top: 40px;
  font-size: 24px;
  text-align: center;
  line-height: 1.6;
}

.top-madeorder-text {
  margin-top: 60px;
  font-size: 20px;
  line-height: 1.8;
}

.top-madeorder-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 31px;
  margin-top: 60px;
}

.top-madeorder-item {
  background-color: var(--color-white);
}
.top-madeorder-item a {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
@media (any-hover: hover) {
  .top-madeorder-item a:hover .top-madeorder-thumb {
    overflow: hidden;
  }
  .top-madeorder-item a:hover .top-madeorder-thumb img {
    scale: 1.1;
  }
}

.top-madeorder-thumb {
  overflow: hidden;
}
.top-madeorder-thumb img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.top-madeorder-item-title {
  color: var(--color-font);
  text-align: center;
  padding: 24px 24px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
.top-madeorder-item-title h3 {
  font-size: 24px;
}
.top-madeorder-item-title p {
  font-size: 16px;
  line-height: 1.8;
}

.top-madeorder-button {
  margin-top: 90px;
}

@media screen and (max-width: 768px) {
  .top-madeorder-title h2 {
    font-size: 32px;
  }
  .top-madeorder-title p {
    font-size: 20px;
  }
  .top-madeorder-sub-text {
    font-size: 20px;
  }
  .top-madeorder-text {
    margin-top: 60px;
    font-size: 16px;
  }
  .top-madeorder-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 31px;
    margin-top: 60px;
  }
  .top-madeorder-item-title {
    padding: 24px 14px 35px;
  }
  .top-madeorder-item-title h3 {
    font-size: 20px;
  }
  .top-madeorder-item-title p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  #top-madeorder {
    padding: 60px 0;
    margin-top: 60px;
  }
  .top-madeorder-title h2 {
    font-size: 24px;
    line-height: 1.4;
  }
  .top-madeorder-title p {
    font-size: 16px;
  }
  .top-madeorder-sub-text {
    margin-top: 20px;
    font-size: 16px;
  }
  .top-madeorder-text {
    margin-top: 30px;
    font-size: 16px;
  }
  .top-madeorder-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 31px;
    margin-top: 30px;
  }
  .top-madeorder-item-title {
    padding: 20px 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
  .top-madeorder-item-title h3 {
    font-size: 20px;
  }
  .top-madeorder-item-title p {
    font-size: 16px;
    line-height: 1.8;
  }
  .top-madeorder-button {
    margin-top: 45px;
  }
}
#top-qualitypolicy {
  margin-top: 120px;
}

.top-qualitypolicy-inner {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-qualitypolicy-main {
  width: 41.6%;
}

.top-qualitypolicy-movie {
  width: 50%;
}
.top-qualitypolicy-movie a {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.top-qualitypolicy-movie img {
  width: 100%;
}
@media (any-hover: hover) {
  .top-qualitypolicy-movie a:hover {
    opacity: 0.8;
  }
}

.top-qualitypolicy-list {
  margin-top: 62px;
}

.top-qualitypolicy-item {
  padding: 40px 20px;
  border-top: 1px solid var(--color-border);
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.025em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.top-qualitypolicy-item:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.top-qualitypolicy-text {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.top-qualitypolicy-button {
  margin-top: 100px;
}

.video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* 動画のアスペクト比を指定 */
}

@media screen and (max-width: 768px) {
  .top-qualitypolicy-inner {
    margin-top: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
  }
  .top-qualitypolicy-main {
    width: 100%;
  }
  .top-qualitypolicy-movie {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #top-qualitypolicy {
    margin-top: 60px;
  }
  .top-qualitypolicy-inner {
    margin-top: 36px;
  }
  .top-qualitypolicy-text {
    font-size: 16px;
  }
  .top-qualitypolicy-list {
    margin-top: 31px;
  }
  .top-qualitypolicy-item {
    padding: 20px;
    font-size: 16px;
    gap: 20px;
  }
  .top-qualitypolicy-button {
    margin-top: 50px;
  }
}
#top-company {
  margin-top: 120px;
}

.top-company-inner {
  margin-left: 25%;
}

.top-company-item {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid var(--color-border);
}
.top-company-item:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.top-company-item-main {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-company-item-main-head h3 {
  font-size: 24px;
  font-weight: bold;
}
.top-company-item-main-head p {
  margin-top: 32px;
}

.top-company-item-thumb {
  width: 50%;
  position: relative;
}
.top-company-item-thumb img {
  width: 100%;
}
.top-company-item-thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top-company-item-thumb.active::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@media screen and (max-width: 768px) {
  .top-company-inner {
    margin-left: 0%;
  }
  .top-company-list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  #top-company {
    margin-top: 60px;
  }
  .top-company-list {
    margin-top: 30px;
  }
  .top-company-item {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 24px;
    border-top: 1px solid var(--color-border);
  }
  .top-company-item-main {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
  }
  .top-company-item-main-head h3 {
    font-size: 20px;
    font-weight: bold;
  }
  .top-company-item-main-head p {
    margin-top: 16px;
  }
  .top-company-item-thumb {
    width: 100%;
  }
}
#top-philosophy {
  margin-top: 120px;
  padding-top: 80px;
}

.top-philosophy-title .c-title01-jp {
  color: var(--color-white);
}
.top-philosophy-title .c-title01-en {
  color: var(--color-white);
}

.top-philosophy-body {
  margin-top: 43px;
  position: relative;
  aspect-ratio: 1440/480;
  background-color: transparent;
  z-index: 0;
  padding-top: 90px;
}
.top-philosophy-body .top-philosophy-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.top-philosophy-body .top-philosophy-subtitle .js-top-philosophy-subtitle {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0 10px;
}

.top-philosophy-img {
  width: 80%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.top-philosophy-img img {
  width: 100%;
}

.top-philosophy-button {
  margin-top: 72px;
}

@media screen and (max-width: 1200px) {
  .top-philosophy-body {
    margin-top: 43px;
    padding-top: 30px;
  }
  .top-philosophy-body .top-philosophy-subtitle .js-top-philosophy-subtitle {
    font-size: 32px;
  }
  .top-philosophy-button {
    margin-top: 42px;
  }
}
@media screen and (max-width: 768px) {
  #top-philosophy {
    margin-top: 120px;
    padding-top: 60px;
  }
  .top-philosophy-body {
    margin-top: 43px;
    padding-top: 30px;
  }
  .top-philosophy-body .top-philosophy-subtitle .js-top-philosophy-subtitle {
    font-size: 24px;
  }
  .top-philosophy-button {
    margin-top: 22px;
  }
}
@media screen and (max-width: 480px) {
  #top-philosophy {
    margin-top: 60px;
    padding-top: 30px;
  }
  .top-philosophy-body {
    padding-top: 50%;
    margin-top: 43px;
    position: relative;
    aspect-ratio: 1/1;
  }
  .top-philosophy-body .top-philosophy-subtitle {
    gap: 4px;
  }
  .top-philosophy-body .top-philosophy-subtitle .js-top-philosophy-subtitle {
    font-size: 18px;
  }
  .top-philosophy-button {
    margin-top: 30px;
  }
  .top-philosophy-img {
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .top-philosophy-img img {
    width: 100%;
  }
}
#top-sdgs {
  margin-top: 150px;
  padding: 64px 0;
}

.top-sdgs-main {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-sdgs-text {
  font-size: 20px;
  line-height: 1.8;
  width: 58%;
}

@media screen and (max-width: 768px) {
  #top-sdgs {
    padding: 64px 0;
    margin-top: 40px;
  }
  .top-sdgs-main {
    margin-top: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
  .top-sdgs-text {
    font-size: 20px;
    line-height: 1.8;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #top-sdgs {
    padding: 32px 0;
    margin-top: 30px;
  }
  .top-sdgs-main {
    margin-top: 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
  .top-sdgs-text {
    font-size: 16px;
    line-height: 1.8;
    width: 100%;
  }
  .top-sdgs-button {
    width: 100%;
  }
}
#top-access {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: var(--color-white);
  padding: 60px 0;
  min-height: 740px;
}

.top-access-bkg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #000;
}
.top-access-bkg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7058823529);
  position: absolute;
  top: 0;
  left: 0;
}

.background_movie {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}

.top-access-sub {
  margin-top: 26px;
  font-size: 36px;
  line-height: 1.5;
  font-weight: bold;
}

.top-access-text {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.8;
}

.top-access-button {
  margin-top: 127px;
}

@media screen and (max-width: 480px) {
  #top-access {
    padding: 30px 0;
    min-height: auto;
  }
  .top-access-bkg {
    z-index: -1;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #000;
  }
  .background_movie {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 16/9;
  }
  .top-access-sub {
    margin-top: 26px;
    font-size: 24px;
  }
  .top-access-text {
    margin-top: 20px;
    font-size: 16px;
  }
  .top-access-button {
    margin-top: 60px;
  }
}
#top-recruit {
  margin-top: 120px;
}

.top-recruit-text {
  margin-top: 40px;
  font-size: 20px;
}

.top-recruit-button {
  margin-top: 40px;
}

@media screen and (max-width: 480px) {
  #top-recruit {
    margin-top: 60px;
  }
  .top-recruit-text {
    margin-top: 20px;
    font-size: 16px;
  }
  .top-recruit-button {
    margin-top: 20px;
  }
}
#top-instagram {
  margin-top: 120px;
}

.top-instagram-title {
  text-align: center;
  font-size: 15px;
}
.top-instagram-title span {
  display: block;
  font-size: 64px;
  line-height: 1.5;
  font-weight: bold;
  font-family: var(--font-en);
}

.top-instagram-zone {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #top-instagram {
    margin-top: 120px;
  }
  .top-instagram-title {
    text-align: center;
    font-size: 15px;
  }
  .top-instagram-title span {
    font-size: 48px;
  }
  .top-instagram-zone {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  #top-instagram {
    margin-top: 60px;
  }
  .top-instagram-title {
    font-size: 13px;
  }
  .top-instagram-title span {
    font-size: 32px;
  }
  .top-instagram-zone {
    margin-top: 40px;
  }
}
#cta {
  margin-top: 120px;
  color: #fff;
  text-align: center;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#085335), to(#007144));
  background-image: linear-gradient(0deg, #085335, #007144);
  padding: 95px 0 74px;
}

.cta-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  letter-spacing: 0.025em;
  line-height: 1;
}
.cta-title .cta-title-jp {
  font-size: 15px;
}
.cta-title .cta-title-en {
  font-size: 64px;
  font-family: var(--font-en);
  font-weight: 500;
}

.cta-text {
  margin-top: 50px;
  line-height: 1.8;
  font-size: 24px;
}

.cta-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}

.cta-col {
  border: 1px solid #fff;
  padding: 80px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 96px;
  width: 33vw;
}

.cta-title-tel {
  font-size: 24px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
}
.cta-title-tel::before {
  content: "";
  width: 24px;
  height: 36px;
  -webkit-mask-image: url(../img/icon/icon_mobile.svg);
          mask-image: url(../img/icon/icon_mobile.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  background-color: #fff;
}

.cta-number {
  font-size: 24px;
  font-family: var(--font-en);
  line-height: 1;
}

.cta-time {
  font-size: 13px;
  line-height: 1;
  font-weight: normal;
}

.cta-title-contact {
  font-size: 24px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  padding-top: 12px;
}
.cta-title-contact::before {
  content: "";
  width: 31px;
  height: 24px;
  -webkit-mask-image: url(../img/icon/icon_mail.svg);
          mask-image: url(../img/icon/icon_mail.svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  background-color: #fff;
}

@media screen and (max-width: 1400px) {
  .cta-time {
    font-size: 11px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 1200px) {
  .cta-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cta-col {
    border: 1px solid #fff;
    padding: 40px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 46px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #cta {
    padding: 45px 0 44px;
  }
  .cta-title .cta-title-jp {
    font-size: 15px;
  }
  .cta-title .cta-title-en {
    font-size: 32px;
  }
  .cta-body {
    margin-top: 40px;
  }
  .cta-text {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #cta {
    padding: 45px 0 44px;
    margin-top: 60px;
  }
  .cta-title .cta-title-jp {
    font-size: 15px;
  }
  .cta-title .cta-title-en {
    font-size: 32px;
  }
  .cta-text {
    font-size: 16px;
  }
  .cta-title-tel {
    font-size: 20px;
  }
  .cta-title-tel::before {
    content: "";
    width: 14px;
  }
  .cta-title-contact {
    font-size: 20px;
  }
  .cta-title-contact::before {
    content: "";
    width: 18px;
  }
  .cta-body {
    margin-top: 40px;
  }
  .cta-text {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 18px;
  }
  .cta-col {
    padding: 20px 10px;
    gap: 24px;
  }
}
.main-visual {
  width: 100%;
  margin: 0 auto 40px;
  overflow: hidden;
}
.main-visual .swiper-slide img {
  height: auto;
  width: 100%;
  width: 100%;
  aspect-ratio: 1600/480;
  aspect-ratio: 16/9;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .main-visual {
    margin-bottom: 40px;
  }
}
.main-visual2 {
  position: relative;
  width: 90%;
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 100px;
}
.main-visual2 .swiper-mainVisual {
  width: 100%;
  height: 100%;
  margin-inline: auto;
}
.main-visual2 .swiper-slide img {
  height: auto;
  width: 100%;
  width: 100%;
  aspect-ratio: 1600/480;
  aspect-ratio: 16/9;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .main-visual2 {
    margin-bottom: 40px;
    border-radius: 50px;
  }
}
@media screen and (max-width: 480px) {
  .main-visual2 {
    margin-bottom: 20px;
    border-radius: 20px;
  }
}
.record-base-a01 {
  position: relative;
  padding-bottom: 100px;
}
.record-base-a01 .archive-list-item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 80px 33px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #e1e1e1;
  color: var(--color-font);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.record-base-a01 .archive-list-item a .archive-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  margin: 0 0 3px 20px;
  gap: 7px;
  line-height: 1;
  color: #008d43;
}
.record-base-a01 .archive-list-item a .arcive-title {
  width: 100%;
  letter-spacing: 0.05em;
  margin-top: 12px;
  text-overflow: ellipsis;
}
.record-base-a01 .archive-list-item a::before, .record-base-a01 .archive-list-item a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 13px;
  height: 3px;
  border-radius: 9999px;
  background-color: #008d43;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
.record-base-a01 .archive-list-item a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.record-base-a01 .archive-list-item a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.record-base-a01 .archive-list-item a:hover {
  border-bottom: 1px solid #008d43;
}
.record-base-a01 .archive-list-item a:hover::before, .record-base-a01 .archive-list-item a:hover::after {
  right: 10px;
}
.record-base-a01 .archive-list-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 480px) {
  .record-base-a01 {
    position: relative;
    padding-bottom: 100px;
  }
  .record-base-a01 .archive-list-item a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 15px 40px 18px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: 1px solid #e1e1e1;
    color: var(--color-font);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .record-base-a01 .archive-list-item a .date {
    width: 100%;
  }
  .record-base-a01 .archive-list-item a .archive-category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    margin: 10px 0 3px 0px;
    gap: 7px;
    line-height: 1;
    color: #008d43;
  }
  .record-base-a01 .archive-list-item a .arcive-title {
    width: 100%;
    letter-spacing: 0.05em;
    margin-top: 12px;
    text-overflow: ellipsis;
  }
  .record-base-a01 .archive-list-item a::before, .record-base-a01 .archive-list-item a::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 13px;
    height: 3px;
    border-radius: 9999px;
    background-color: #008d43;
    -webkit-transform-origin: calc(100% - 1px) 50%;
            transform-origin: calc(100% - 1px) 50%;
    -webkit-transition: right 0.4s;
    transition: right 0.4s;
  }
  .record-base-a01 .archive-list-item a::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .record-base-a01 .archive-list-item a::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .record-base-a01 .archive-list-item a:hover {
    border-bottom: 1px solid #008d43;
  }
  .record-base-a01 .archive-list-item a:hover::before, .record-base-a01 .archive-list-item a:hover::after {
    right: 10px;
  }
  .record-base-a01 .archive-list-btn {
    position: absolute;
    bottom: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.cnt-base-a01,
.cnt-base-a02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.cnt-base-a01 .img-area,
.cnt-base-a02 .img-area {
  width: 50%;
  padding: 0;
}
.cnt-base-a01 .img-area img,
.cnt-base-a02 .img-area img {
  width: 100%;
  height: auto;
}
.cnt-base-a01 .text-area,
.cnt-base-a02 .text-area {
  width: 50%;
  padding: 0 3%;
}

@media screen and (max-width: 480px) {
  .cnt-base-a01,
  .cnt-base-a02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cnt-base-a01 .img-area,
  .cnt-base-a02 .img-area {
    width: 100%;
    padding: 0;
  }
  .cnt-base-a01 .img-area img,
  .cnt-base-a02 .img-area img {
    width: 100%;
    height: auto;
  }
  .cnt-base-a01 .text-area,
  .cnt-base-a02 .text-area {
    width: 100%;
    padding: 0;
  }
}
/**************************************
	ページナビゲーション
**************************************/
/*wp-pagenavi base*/
.wp-pagenavi {
  clear: both;
  text-align: center;
  margin-bottom: 40px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #333;
  background-color: #ebebeb;
  border: solid 1px #e0e0d2;
  padding: 8px 15px !important;
  margin: 0 2px;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
}

.wp-pagenavi a:hover {
  color: #fff;
  background-color: #999;
  border-color: #999 !important;
}

.wp-pagenavi span.current {
  color: #fff;
  background-color: #000;
  border-color: #000 !important;
  font-weight: bold;
}

.wp-pagenavi .pages {
  display: none;
}

#wp-pagenaviWrap {
  margin-top: 60px;
}

#pageNavHome {
  display: none;
}

#pageNavList {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
  margin-bottom: 20px;
}

#pageNavList > div {
  text-align: center;
  font-size: 12px;
  margin: 0 4px;
}

#pageNavList > div a {
  text-decoration: none;
  width: 200px;
  height: 30px;
  color: var(--color-font);
  background: #f7f7f7;
  display: block;
  line-height: 30px;
}

@media screen and (max-width: 896px) {
  .first {
    display: none;
  }
  .last {
    display: none;
  }
  .extend {
    display: none;
  }
  .page {
    display: none;
  }
  .current {
    display: none;
  }
  .wp-pagenavi {
    width: 100%;
    background: #ebebeb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #wp-pagenaviWrap {
    position: relative;
    background: #fff;
    width: 100%;
    height: 45px;
    line-height: 45px;
  }
  .wp-pagenavi a.previouspostslink {
    display: block;
    width: 33%;
    height: 45px;
    padding: 0px 0px !important;
    margin: 0 0px;
    border-radius: 0px;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 0;
  }
  .wp-pagenavi a.nextpostslink {
    display: block;
    width: 33%;
    height: 45px;
    padding: 0px 0px !important;
    margin: 0 0px;
    border-radius: 0px;
    border: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    right: 0;
  }
  #pageNavHome {
    display: block;
    position: absolute;
    width: 34%;
    top: 0;
    left: 33%;
    background-color: #ebebeb;
  }
  #pageNavHome a {
    text-align: center;
    display: block;
    width: 100%;
    height: 45px;
    padding: 0px 0px;
    margin: 0 0px;
    border-radius: 0px;
    border: none;
    border-left: solid 1px #e0e0d2;
    border-right: solid 1px #e0e0d2;
    text-decoration: none;
    color: #666;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #pageNavList {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
    margin-bottom: 0px;
  }
  #pageNavList > div {
    width: 33%;
    text-align: center;
    font-size: 12px;
    margin: 0 0px;
  }
  #pageNavList > div:nth-child(2) {
    border-left: solid 1px #e0e0d2;
    border-right: solid 1px #e0e0d2;
    width: 34%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #pageNavList > div a {
    text-decoration: none;
    width: 100%;
    height: 45px;
    color: #666;
    padding-top: 14px;
    background: #ebebeb;
    display: block;
    border-radius: 0px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* =========================================== */
/* post-area
/* =========================================== */
.post-area {
  margin-top: 40px;
  line-height: 1.5;
}
.post-area h1 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
}
.post-area h1.h1-post {
  font-size: 32px;
  font-weight: normal;
}
.post-area h2 {
  font-size: 24px;
  border-left: solid 10px #e1e1e1;
  padding-left: 14px;
  margin-bottom: 24px;
}
.post-area h3 {
  font-size: 20px;
  margin-bottom: 24px;
}
.post-area h4 {
  font-size: 16px;
  margin-bottom: 24px;
}
.post-area p {
  margin-bottom: 24px;
}
.post-area img {
  margin-bottom: 24px;
}
.post-area .postday {
  font-size: 14px;
}
.post-area a {
  color: #707070;
}
.post-area .post-meta {
  margin-bottom: 40px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  font-size: 14px;
}
.post-area .post-meta .date {
  color: var(--color-font);
  display: inline-block;
  padding: 0 20px 0 0;
}
.post-area .post-meta .category {
  color: var(--color-font);
  display: inline-block;
}
.post-area .post-meta .category a {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0 10px 0 10px;
  background-color: #2aac99;
}
.post-area .post-meta .category a.cat-1 {
  background-color: #2aac99;
}
.post-area .post-meta .category a.cat-2 {
  background-color: #f39c12;
}
.post-area .post-meta .category a.cat-3 {
  background-color: #e74c3c;
}
.post-area .post-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.post-area .post-head div {
  margin: 0;
}
.post-area .post-head .sns-post-box {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.post-area .post-head .sns-post-box span {
  display: inline-block;
}
.post-area .post-head .sns-post-box a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

/****************************************************************************
	墨田鋲螺
****************************************************************************/
/**************************************
	汎用 墨田鋲螺
**************************************/
.c-page-kv-inner {
  padding-top: 210px;
}

.c-page-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.c-page-title-ja {
  font-size: 48px;
  background-color: var(--color-bkg-kv-title);
  color: var(--color-white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  padding: 10px;
}

.c-page-title-en {
  font-size: 13px;
  background-color: var(--color-bkg-kv-title);
  color: var(--color-white);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  font-family: var(--font-en);
}

.c-page-kv {
  height: 388px;
  background-color: var(--color-bkg-light);
  position: relative;
  z-index: 1;
}
.c-page-kv::after {
  content: "";
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-darkgreen);
  width: 244px;
  height: 388px;
  z-index: -1;
}

@media screen and (max-width: 480px) {
  .c-page-kv-inner {
    padding-top: 55px;
  }
  .c-page-title-ja {
    font-size: 32px;
    padding: 4px 10px;
  }
  .c-page-title-en {
    font-size: 13px;
    padding: 4px 10px;
  }
  .c-page-kv {
    height: 199px;
  }
  .c-page-kv::after {
    content: "";
    display: block;
    width: 122px;
    height: 199px;
  }
}
.breadcrumbs-area {
  width: 100%;
  padding: 10px 20px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 14px;
}
.breadcrumbs a {
  border-radius: 8px;
  display: inline-block;
  padding: 3px 12px;
  background-color: #ebebeb;
  color: var(--color-font);
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.breadcrumbs a:hover {
  background-color: #008d43;
  color: #fff;
}

.breadcrumbs li:not(:last-of-type)::after {
  content: "›";
  margin: 0 0.6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

@media screen and (max-width: 480px) {
  .breadcrumbs {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.access-read-title {
  text-align: center;
  font-size: 32px;
}

.access-read-text {
  margin-top: 32px;
  text-align: center;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .access-read-title {
    font-size: 28px;
  }
  .access-read-text {
    margin-top: 32px;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .access-read-title {
    font-size: 24px;
  }
  .access-read-text {
    margin-top: 24px;
    font-size: 16px;
  }
}
.access-head {
  margin-top: 120px;
}

.access-head-kv {
  margin-top: 64px;
  position: relative;
}

.access-head-kv-text {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.6;
  position: absolute;
  top: 120px;
  left: 64px;
  color: var(--color-white);
}

.access-head-list-wrap {
  margin-top: 40px;
  padding: 24px 54px;
  border: 1px solid var(--color-border2);
}

.access-head-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.access-head-list-item {
  position: relative;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-font) !important;
}
.access-head-list-item::before {
  content: "";
  width: 20px;
  height: 25px;
  -webkit-mask-image: url(../img/icon/icon_map.svg);
          mask-image: url(../img/icon/icon_map.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--color-primary);
}

.access-slider {
  margin-top: 40px;
}

@media screen and (max-width: 1200px) {
  .access-head-list-wrap {
    padding: 24px 24px;
  }
  .access-head-list-item {
    gap: 10px;
  }
}
@media (max-width: 900px) and (min-width: 769px) {
  .access-head-list-wrap {
    padding: 14px 14px;
  }
  .access-head-list-item {
    gap: 10px;
    font-size: 12px;
  }
  .access-head-list-item::before {
    content: "";
    width: 10px;
    height: 15px;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .access-head-kv-text {
    font-size: 32px;
    top: 80px;
    left: 40px;
  }
  .access-head-list-wrap {
    padding: 14px 14px;
  }
  .access-head-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .access-head-list-item {
    gap: 10px;
    font-size: 12px;
    padding: 14px 0px;
  }
  .access-head-list-item::before {
    width: 10px;
    height: 15px;
    -webkit-mask-size: contain;
            mask-size: contain;
  }
}
@media (max-width: 555px) {
  .access-head-kv-text {
    font-size: 24px;
    top: 80px;
    left: 40px;
  }
}
@media screen and (max-width: 480px) {
  .access-head {
    margin-top: 60px;
  }
  .access-head-kv {
    margin-top: 32px;
  }
  .access-head-kv-text {
    font-size: 18px;
    top: 80px;
    left: 10px;
  }
  .access-slider {
    margin-top: 20px;
  }
  .access-head-list-wrap {
    padding: 4px 8px;
  }
  .access-head-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
  .access-head-list-item {
    padding: 4px 0;
    gap: 2px;
  }
}
.access-table-content {
  margin-top: 120px;
}

.access-table-content-title h3 {
  margin-bottom: 40px;
  font-size: 32px;
}

.history-read-title {
  text-align: center;
  font-size: 32px;
}

.history-read-text {
  margin-top: 32px;
  text-align: center;
  font-size: 20px;
}

.history-section {
  margin-top: 120px;
}

.history-header {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .history-read-text {
    margin-top: 24px;
  }
  .history-section {
    margin-top: 60px;
  }
  .history-header {
    margin-top: 60px;
  }
}
@media screen and (max-width: 480px) {
  .history-read-title {
    text-align: center;
    font-size: 24px;
  }
  .history-read-text {
    margin-top: 24px;
  }
  .history-section {
    margin-top: 60px;
  }
  .history-header {
    margin-top: 30px;
  }
  .history-read-text {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
  }
}
.tab-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* タブボタン */
.tab-switch label {
  padding: 10px;
  color: var(--color-white);
  background-color: var(--color-font);
  cursor: pointer;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1; /* 上に表示 */
  text-align: center;
  min-width: 300px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
}
.tab-switch label::before {
  display: none !important;
}
.tab-switch label::after {
  opacity: 1 !important;
  position: absolute;
  top: 50%;
  left: auto !important;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 10px !important;
  height: 16px !important;
  -webkit-mask-image: url(../img/icon/icon-arrow-right3.svg);
          mask-image: url(../img/icon/icon-arrow-right3.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-white) !important;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

/* ラジオ非表示 */
.tab-switch input {
  display: none;
}

/* コンテンツ非表示 */
.tab-content {
  display: none;
  width: 100%;
}

/* 選択されたタブ＋コンテンツ表示 */
.tab-switch label:has(:checked) {
  background-color: var(--color-primary);
  color: #fff;
}
.tab-switch label:has(:checked)::after {
  rotate: 90deg;
  right: 30px;
  top: 30%;
}

.tab-switch label:has(:checked) + .tab-content {
  display: block;
}

@media screen and (max-width: 1200px) {
  .tab-switch {
    gap: 16px;
  }
  .tab-switch label {
    min-width: 280px;
  }
}
@media screen and (max-width: 1000px) {
  .tab-switch {
    gap: 10px;
  }
  .tab-switch label {
    min-width: 220px;
  }
}
@media screen and (max-width: 768px) {
  .tab-switch {
    gap: 3px;
  }
  .tab-switch label {
    min-width: 150px;
    font-size: 18px;
  }
}
@media (max-width: 550px) {
  .tab-switch {
    gap: 2px;
  }
  .tab-switch label {
    min-width: 106px;
    font-size: 14px;
  }
}
.history-content {
  padding: 0;
}

.history-content-wrap {
  padding: 64px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 111px;
  border-top: 1px solid var(--color-border2);
}

.history-content-year {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  line-height: 2;
  color: var(--color-green-text);
  letter-spacing: 0.1em;
}
.history-content-year span {
  font-size: 40px;
  font-weight: bold;
}

.history-content-text-area {
  font-size: 20px;
}

.history-content-text {
  line-height: 2;
  padding: 28px;
}

.history-content-text-img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
}

@media screen and (max-width: 768px) {
  .history-content-wrap {
    padding: 32px 0;
    gap: 50px;
  }
}
@media screen and (max-width: 480px) {
  .history-content-wrap {
    padding: 16px 0;
    gap: 10px;
  }
  .history-content-year {
    font-size: 16px;
    line-height: 2;
  }
  .history-content-year span {
    font-size: 20px;
  }
  .history-content-text {
    line-height: 2;
    padding: 4px;
    font-size: 16px;
  }
  .history-content-text-img-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .history-content-text-area {
    font-size: 16px;
  }
}
.company-section {
  margin-top: 120px;
}

.company-table {
  margin-top: 80px;
}

.company-read-text {
  margin-top: 32px;
  text-align: center;
  font-size: 20px;
}

.company-read-title {
  text-align: center;
  font-size: 32px;
}

.c-list li {
  list-style: disc;
  margin-left: 2em;
  line-height: 1.8;
}

@media screen and (max-width: 480px) {
  .company-table {
    margin-top: 40px;
  }
  .company-section {
    margin-top: 60px;
  }
  .company-read-title {
    text-align: center;
    font-size: 24px;
  }
  .company-read-text {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
  }
}
/**************************************
	dl-table
**************************************/
.dl-table {
  border-bottom: 1px solid var(--color-border2);
}
.dl-table div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--color-border2);
  font-size: 20px;
  line-height: 1.6;
}
.dl-table dt {
  width: 300px;
  padding: 24px 10px;
}
.dl-table dd {
  width: calc(100% - 300px);
  padding: 24px 0px;
}
.dl-table dd p {
  line-height: 1.8;
}

@media screen and (max-width: 480px) {
  .dl-table div {
    width: 100%;
    display: block;
  }
  .dl-table dt {
    width: 100%;
    padding: 10px 0px 0 0;
    font-weight: bold;
    font-size: 16px;
  }
  .dl-table dd {
    width: 100%;
    padding: 10px 0px;
    font-size: 16px;
  }
  .dl-table dd p {
    line-height: 1.6;
  }
}
.company-sub-cnt {
  margin-top: 120px;
}

.company-subTitle {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  line-height: 1.5;
}
.company-subTitle::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  background-color: var(--color-green-text);
}

.company-subTitle--v2 {
  font-size: 32px;
  gap: 20px;
}
.company-subTitle--v2::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: var(--color-green-text);
}

.company-sub-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.company-sub-img-area {
  width: 300px;
}
.company-sub-img-area.company-sub-img-area--v1 {
  width: 412px;
}

@media screen and (max-width: 480px) {
  .company-sub-cnt {
    margin-top: 60px;
  }
  .company-subTitle {
    font-size: 20px;
  }
  .company-sub-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
  .company-sub-img-area {
    width: 100%;
  }
  .company-sub-img-area.company-sub-img-area--v1 {
    width: 100%;
  }
  .company-subTitle--v2 {
    gap: 10px;
  }
  .company-subTitle--v2::after {
    height: 2px;
  }
}
.company-manufacture {
  margin-top: 120px;
  background-color: var(--color-bkg-02);
  padding: 100px 0;
}

.company-manufacture-inner {
  margin-top: 80px;
}

.company-manufacture-list {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.company-manufacture-list li {
  font-size: 20px;
  list-style: disc;
  margin-left: 1.5em;
}

@media screen and (max-width: 480px) {
  .company-manufacture {
    margin-top: 60px;
    padding: 50px 0;
  }
  .company-manufacture-inner {
    margin-top: 40px;
  }
  .company-manufacture-list {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15x;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company-manufacture-list li {
    font-size: 16px;
  }
}
.product-item-wrap {
  margin-top: 120px;
}

.product-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 143px;
  margin-top: 40px;
}

.product-item-img {
  width: 300px;
  height: 300px;
  aspect-ratio: 1/1;
  background-color: var(--color-blue);
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-item-img::before {
  content: "";
  width: 62px;
  height: 160px;
  -webkit-mask-image: url(../img/general/product_001.svg);
          mask-image: url(../img/general/product_001.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: var(--color-white);
}

.product-item-img-v02::before {
  content: "";
  -webkit-mask-image: url(../img/general/product_002.svg);
          mask-image: url(../img/general/product_002.svg);
}

.product-item-img-v03::before {
  content: "";
  width: 150px;
  height: 150px;
  -webkit-mask-image: url(../img/general/product_003.svg);
          mask-image: url(../img/general/product_003.svg);
}

.product-item-img-v04::before {
  content: "";
  width: 150px;
  height: 150px;
  -webkit-mask-image: url(../img/general/product_004.svg);
          mask-image: url(../img/general/product_004.svg);
}

.product-item-img-v05::before {
  content: "";
  -webkit-mask-image: url(../img/general/product_005.svg);
          mask-image: url(../img/general/product_005.svg);
}

.product-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
.product-item-list li {
  list-style: disc;
  margin-left: 2em;
  font-size: 20px;
}

.product-item-title > * {
  font-weight: 500;
  font-size: 32px;
}

@media screen and (max-width: 1000px) {
  .product-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
  }
  .product-item-img {
    width: 200px;
    height: 200px;
    aspect-ratio: 1;
    background-color: var(--color-blue);
    border-radius: 50%;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .product-item-list-wrap {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}
@media screen and (max-width: 768px) {
  .product-item-wrap {
    margin-top: 60px;
  }
  .product-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }
  .product-item-img {
    width: 25%;
    height: 25%;
    aspect-ratio: 1;
    background-color: var(--color-blue);
    border-radius: 50%;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .product-item-img::before {
    content: "";
    width: 32px;
    height: 100px;
  }
  .product-item-img-v03::before {
    content: "";
    width: 70px;
    height: 70px;
    -webkit-mask-image: url(../img/general/product_003.svg);
            mask-image: url(../img/general/product_003.svg);
  }
  .product-item-img-v04::before {
    content: "";
    width: 70px;
    height: 70px;
    -webkit-mask-image: url(../img/general/product_004.svg);
            mask-image: url(../img/general/product_004.svg);
  }
  .product-item-list-wrap {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .product-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .product-item-list li {
    list-style: disc;
    margin-left: 2em;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .product-item-title > * {
    font-size: 24px;
  }
  .product-item-wrap {
    margin-top: 60px;
  }
  .product-item-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .product-item-img {
    width: 25%;
    height: 25%;
    aspect-ratio: 1;
    background-color: var(--color-blue);
    border-radius: 50%;
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .product-item-img::before {
    content: "";
    width: 22px;
    height: 50px;
  }
  .product-item-img-v03::before {
    content: "";
    width: 40px;
    height: 40px;
    -webkit-mask-image: url(../img/general/product_003.svg);
            mask-image: url(../img/general/product_003.svg);
  }
  .product-item-img-v04::before {
    content: "";
    width: 40px;
    height: 40px;
    -webkit-mask-image: url(../img/general/product_004.svg);
            mask-image: url(../img/general/product_004.svg);
  }
  .product-item-list-wrap {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .product-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .product-item-list li {
    list-style: disc;
    margin-left: 2em;
    font-size: 16px;
  }
}
.product-read-title {
  text-align: center;
  font-size: 32px;
  margin-top: 120px;
}

.product-read-text {
  margin-top: 72px;
  text-align: left;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .product-read-title {
    font-size: 28px;
  }
  .product-read-text {
    margin-top: 32px;
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .product-read-title {
    font-size: 20px;
    margin-top: 60px;
  }
  .product-read-text {
    margin-top: 24px;
    font-size: 16px;
  }
}
.product-part-01 {
  margin-top: 170px;
}

.product-part-01-head {
  padding: 40px 180px;
  color: var(--color-white);
  background: linear-gradient(135deg, #0c969a 0%, #0c969a 30%, #009172 30%, #009172 100%);
}

.product-part-02 {
  margin-top: 170px;
}

.product-part-02-head {
  padding: 40px 180px;
  color: var(--color-white);
  background: linear-gradient(135deg, #009172 0%, #009172 30%, #0c969a 30%, #0c969a 100%);
}

.product-part-title h2 {
  font-size: 36px;
  font-weight: bold !important;
}
.product-part-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.product-part-sub {
  font-size: 24px;
  font-weight: bold;
}

.product-part-text {
  font-weight: normal;
  font-size: 20px;
  line-height: 1.5;
}

.product-read-title-v02 {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .product-part-01 {
    margin-top: 100px;
  }
  .product-part-01-head {
    padding: 40px 80px;
  }
  .product-part-02 {
    margin-top: 100px;
  }
  .product-part-02-head {
    padding: 40px 80px;
  }
  .product-part-title h2 {
    font-size: 24px;
    font-weight: bold !important;
  }
  .product-part-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .product-part-sub {
    font-size: 20px;
    font-weight: bold;
  }
  .product-part-text {
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 480px) {
  .product-part-01 {
    margin-top: 50px;
  }
  .product-part-01-head {
    padding: 20px 20px;
  }
  .product-part-02 {
    margin-top: 50px;
  }
  .product-part-02-head {
    padding: 20px 20px;
  }
  .product-part-title h2 {
    font-size: 20px;
    font-weight: bold !important;
  }
  .product-part-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .product-part-sub {
    font-size: 16px;
    font-weight: bold;
  }
  .product-part-text {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
  }
}
.product-machine {
  margin-top: 110px;
}

.product-machine-inner {
  margin-top: 70px;
}
.product-machine-inner .product-item-title h2 {
  font-weight: 600 !important;
}

.product-photo-wrap {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.product-item-text {
  margin-top: 54px;
}

@media screen and (max-width: 768px) {
  .product-machine {
    margin-top: 100px;
  }
  .product-photo-wrap {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .product-item-text {
    margin-top: 32px;
  }
}
@media screen and (max-width: 480px) {
  .product-machine {
    margin-top: 50px;
  }
  .product-photo-wrap {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .product-item-text {
    margin-top: 16px;
  }
}
.title-product-sc {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-top: 80px;
}

.product-sc-inner {
  margin-top: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.product-img {
  width: 40%;
}

.poduct-text {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.product-sc-subtitle {
  font-size: 32px;
  font-weight: bold;
}

.product-btn {
  margin-top: 120px;
}

@media screen and (max-width: 480px) {
  .title-product-sc {
    font-size: 24px;
    margin-top: 40px;
  }
  .product-sc-inner {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .product-img {
    width: 100%;
  }
  .poduct-text {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .product-sc-subtitle {
    font-size: 20px;
    font-weight: bold;
  }
  .product-btn {
    margin-top: 60px;
  }
}
.c-page-title-wrap02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.c-page-title-wrap02 .c-page-title-ja-v2 {
  font-size: 50px;
  font-weight: bold;
  background-color: var(--color-black);
}

.c-page-kv02 {
  background: linear-gradient(45deg, #009172, #009172, #74bdad, #4eb39d, var(--color-primary));
  background-size: 200% 200%;
  -webkit-animation: Grad 10s ease infinite;
          animation: Grad 10s ease infinite;
  padding-top: 60px;
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-page-kv02 .breadcrumbs-area {
  padding-bottom: 0;
}
.c-page-kv02 .breadcrumbs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}

@-webkit-keyframes Grad {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes Grad {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@media screen and (max-width: 768px) {
  .c-page-title-wrap02 {
    gap: 12px;
  }
  .c-page-title-wrap02 .c-page-title-ja-v2 {
    font-size: 30px;
  }
  .c-page-title-wrap02 p.text-mask.second {
    font-size: 20px;
  }
  .c-page-kv02 {
    padding-top: 30px;
    height: 380px;
  }
}
@media screen and (max-width: 480px) {
  .c-page-title-wrap02 {
    gap: 12px;
  }
  .c-page-title-wrap02 .c-page-title-ja-v2 {
    font-size: 24px;
  }
  .c-page-title-wrap02 p.text-mask.second {
    font-size: 15px;
  }
  .c-page-kv02 {
    padding-top: 30px;
    height: 200px;
  }
}
.message-kv {
  width: 100%;
  position: relative;
}
.message-kv #coverBg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.4s ease-in-out;
  transition: background-color 0.4s ease-in-out;
}
.message-kv .message-kv-video-base {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #000;
}

.messagePv {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* 動画のアスペクト比を指定 */
}

@media screen and (max-width: 768px) {
  .message-kv .message-kv-video-base {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    aspect-ratio: 9/16;
    overflow: hidden;
  }
  .messagePv {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16; /* 動画のアスペクト比を指定 */
  }
}
.message-kv-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.message-kv-article {
  padding: 50px 0;
  color: var(--color-white);
}

.message-kv-head-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.message-kv-text-area {
  margin-top: 60px;
}

.message-kv-text {
  font-size: 20px;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .message-kv-article {
    padding: 30px 0;
  }
  .message-kv-head-title {
    font-size: 32px;
  }
  .message-kv-text-area {
    margin-top: 30px;
  }
  .message-kv-text {
    font-size: 20px;
    line-height: 2;
  }
}
@media screen and (max-width: 480px) {
  .message-kv-head-title {
    font-size: 24px;
    line-height: 1.5;
  }
  .message-kv-text {
    font-size: 16px;
    line-height: 2;
  }
}
.message-fiveElement {
  margin-top: 200px;
}

.message-fiveElement-inner-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 143px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.message-fiveElement-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 50%;
  border-bottom: 1px solid var(--color-border2);
  padding: 77px 0;
}

.message-fiveElement-num {
  color: var(--color-green-text);
  font-size: 20px;
  font-weight: bold;
  width: 79px;
  text-align: center;
}

.message-fiveElement-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
}

.message-fiveElement-text-box {
  font-size: 16px;
  line-height: 2;
  position: relative;
}
.message-fiveElement-text-box::before {
  content: "";
  width: 1px;
  height: 96px;
  display: block;
  background-color: var(--color-border2);
  rotate: 25deg;
  position: absolute;
  left: -70px;
}

@media screen and (max-width: 768px) {
  .message-fiveElement {
    margin-top: 100px;
  }
  .message-fiveElement-inner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .message-fiveElement-title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    width: 50%;
    padding: 60px 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .message-fiveElement-num {
    font-size: 20px;
    width: 50px;
  }
  .message-fiveElement-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
  }
  .message-fiveElement-text-box {
    font-size: 16px;
    line-height: 2;
    position: relative;
  }
  .message-fiveElement-text-box::before {
    content: "";
    width: 1px;
    height: 96px;
    left: -40px;
  }
}
@media screen and (max-width: 480px) {
  .message-fiveElement {
    margin-top: 50px;
  }
  .message-fiveElement-inner-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .message-fiveElement-title-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .message-fiveElement-num {
    font-size: 20px;
    width: 50px;
  }
  .message-fiveElement-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 2;
  }
  .message-fiveElement-text-box {
    font-size: 16px;
  }
  .message-fiveElement-text-box::before {
    display: none;
  }
}
.message-president {
  margin-top: 120px;
}

.message-president-inner {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 32px;
}

.message-president-img {
  width: 41%;
}

.message-president-text {
  width: calc(59% - 32px);
}
.message-president-text p {
  line-height: 2;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .message-president {
    margin-top: 100px;
  }
  .message-president-inner {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 32px;
  }
  .message-president-img {
    width: 41%;
  }
  .message-president-text {
    width: calc(59% - 32px);
  }
  .message-president-text p {
    line-height: 2;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .message-president {
    margin-top: 50px;
  }
  .message-president-inner {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .message-president-img {
    width: 100%;
  }
  .message-president-text {
    width: 100%;
  }
  .message-president-text p {
    line-height: 2;
    font-size: 16px;
  }
}
.message-orgnaize {
  margin-top: 120px;
}

.message-orgnaize-inner {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.message-orgnaize-img {
  width: 60%;
}

.message-orgnaize-text {
  width: calc(40% - 32px);
}
.message-orgnaize-text p {
  line-height: 2;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .message-orgnaize {
    margin-top: 100px;
  }
  .message-orgnaize-inner {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
  .message-orgnaize-img {
    width: 60%;
  }
  .message-orgnaize-text {
    width: calc(40% - 32px);
  }
  .message-orgnaize-text p {
    line-height: 2;
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .message-orgnaize {
    margin-top: 50px;
  }
  .message-orgnaize-inner {
    margin-top: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .message-orgnaize-img {
    width: 100%;
  }
  .message-orgnaize-text {
    width: 100%;
  }
  .message-orgnaize-text p {
    line-height: 2;
    font-size: 16px;
  }
}
.splitText,
.scrambleText {
  font-size: 32px;
  font-weight: bold;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .splitText,
  .scrambleText {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-white);
  }
}
@media screen and (max-width: 480px) {
  .splitText,
  .scrambleText {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-white);
  }
}
/**************************************
	CONTACT
**************************************/
.icon-Required {
  background-color: var(--color-required);
  color: var(--color-white);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  margin-top: 8px;
  font-size: 12px;
}

.dl-form {
  margin-top: 80px;
  border-top: 1px solid var(--color-border);
}
.dl-form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--color-border);
}
.dl-form div dt {
  padding: 20px 0;
  width: 220px;
  font-size: 16px;
  font-weight: 500;
}
.dl-form div dt .est {
  color: #ba0000;
  margin-left: 1em;
}
.dl-form div dd {
  width: calc(100% - 220px);
  padding: 20px 0 20px 20px;
  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: 15px;
  border-left: 1px solid var(--color-border);
}

.form-info-box {
  margin-top: 60px;
}
.form-info-box p {
  margin-top: 20px;
  line-height: 1.8;
}

.from-attention-area {
  margin-bottom: 20px;
}

.wpcf7-form-control.wpcf7-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

span.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .last-checkBox {
    margin-left: 0;
    width: 100%;
  }
  .wpcf7-form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .dl-form {
    border-top: 1px solid var(--color-border);
  }
  .dl-form div {
    display: block;
    border-bottom: 1px solid var(--color-border);
  }
  .dl-form div dt {
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
  }
  .dl-form div dt .est {
    color: #ba0000;
    margin-left: 1em;
  }
  .dl-form div dd {
    width: 100%;
    padding: 20px 0 20px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    border-left: none;
    font-size: 14px;
  }
}
.contact-head-info-inner {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.img-area {
  width: 40%;
}

.text-area {
  width: 60%;
  padding: 0 20px;
}

.contact-head-info-text-box {
  margin-top: 30px;
  background: var(--color-bkg);
  padding: 16px;
}
.contact-head-info-text-box h3 {
  font-size: 20px;
  font-weight: bold;
}
.contact-head-info-text-box p {
  margin-top: 20px;
  line-height: 2;
}

.contact-form-info-box-title {
  font-size: 20px;
}

@media screen and (max-width: 480px) {
  .contact-head-info-inner {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .img-area {
    width: 100%;
  }
  .text-area {
    width: 100%;
    padding: 0 10px;
  }
  .contact-head-info-text-box {
    margin-top: 20px;
    padding: 10px;
  }
  .contact-head-info-text-box h3 {
    font-size: 16px;
  }
  .contact-head-info-text-box p {
    margin-top: 10px;
  }
  .contact-form-info-box-title {
    font-size: 16px;
  }
}
.quality-header {
  position: relative;
  padding: 120px 0 100px;
  z-index: 0;
  background-color: #48a580;
}

.quality-header-inner {
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quality-header-inner h2 {
  font-size: 32px;
  font-weight: bold;
}
.quality-header-inner .quality-header-inner-text {
  font-size: 20px;
  text-align: center;
}
.quality-header-inner .quality-header-inner-sub-text {
  font-size: 32px;
  font-weight: bold;
}

.background_movie--v2 {
  width: 100%;
  max-height: 740px;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  aspect-ratio: 16/9;
}

.quality-header-point-wrap {
  margin-top: 80px;
}

.quality-header-point-title-ja {
  font-size: 22px;
  font-weight: 500;
}

.quality-header-point-title-en {
  color: var(--color-green-text);
  font-size: 32px;
  font-family: var(--font-en);
  font-weight: 500;
}

.quality-header-point-text {
  font-size: 13px;
  text-align: center;
}

.quality-header-point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.quality-header-point-item {
  width: 30%;
  max-width: 350px;
  aspect-ratio: 1;
  background-color: var(--color-bkg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quality-bkg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.quality-bkg-video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#012416), to(#48a580));
  background: linear-gradient(180deg, #012416, #48a580);
  opacity: 0.9;
}

@media screen and (max-width: 1200px) {
  .quality-header-point-item {
    width: 33%;
  }
  .quality-header-point-text {
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .quality-header-point-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .quality-header-point-title-ja {
    font-size: 18px;
  }
  .quality-header-point-title-en {
    font-size: 24px;
  }
}
@media (max-width: 700px) {
  .quality-header-point-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .quality-header-point-item {
    width: 100%;
    max-width: none;
    gap: 20px;
    border-radius: 0%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .quality-header {
    position: relative;
    padding: 40px 0 40px;
  }
  .quality-header-inner {
    gap: 20px;
  }
  .quality-header-inner h2 {
    font-size: 24px;
    font-weight: bold;
  }
  .quality-header-inner .quality-header-inner-text {
    font-size: 16px;
    text-align: center;
  }
  .quality-header-inner .quality-header-inner-sub-text {
    font-size: 20px;
  }
  .quality-header-point-wrap {
    margin-top: 20px;
  }
}
.text-mask--v2 {
  background-color: var(--color-primary);
  padding: 10px 10px;
}

.quality-header-sub {
  width: 100%;
  position: relative;
  z-index: 0;
}
.quality-header-sub img {
  width: 100%;
}

.quality-header-sub-text {
  color: var(--color-primary);
  font-size: 32px;
  font-weight: bold;
  background-color: var(--color-white);
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .text-mask--v2 {
    background-color: var(--color-primary);
    padding: 10px 10px;
  }
  .quality-header-sub {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
  }
  .quality-header-sub img {
    width: 100%;
  }
  .quality-header-sub-text {
    font-size: 24px;
    padding: 10px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .text-mask--v2 {
    padding: 5px 10px;
  }
  .quality-header-sub {
    width: 100%;
    height: 275px;
    position: relative;
    background-color: transparent;
    z-index: 0;
  }
  .quality-header-sub img {
    width: 100%;
  }
  .quality-header-sub-text {
    font-size: 16px;
    padding: 10px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    width: 100%;
  }
}
.quality-wraper {
  padding: 105px 0 55px;
  background: var(--color-bkg-03);
}

.quality-container {
  margin-top: 120px;
}
.quality-container:first-of-type {
  margin-top: 0;
}

.quality-title-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
}

.quality-num {
  font-size: 20px;
  color: var(--color-lighgreen);
  font-weight: bold;
}

.quality-title {
  font-size: 32px;
  font-weight: bold;
}

.quality-sub-title {
  font-size: 20px;
  color: var(--color-white);
  background-color: var(--color-lighgreen);
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.quality-body {
  margin-top: 48px;
  padding: 79px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--color-white);
  gap: 20px;
}

.quality-text-area p {
  margin-top: 1em;
}
.quality-text-area p:first-child {
  margin-top: 0;
}
.quality-text-area p span {
  font-weight: bold;
}
.quality-text-area li {
  list-style: disc;
  margin-left: 2em;
  line-height: 1.8;
}
.quality-text-area h3 {
  margin-top: 1em;
  font-weight: bold;
  line-height: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.quality-text-area h3::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  background-color: var(--color-green-text);
}

.quality-img-area img {
  margin-bottom: 16px;
}

@media screen and (max-width: 480px) {
  .quality-title-wrap {
    gap: 20px;
  }
  .quality-num {
    font-size: 20px;
  }
  .quality-title {
    font-size: 24px;
  }
  .quality-sub-title {
    font-size: 18px;
    padding: 5px 10px;
  }
  .quality-body {
    margin-top: 24px;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.business-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-align: center;
}

.business-read-title {
  font-size: 32px;
}

.business-read-01 {
  font-size: 32px;
  font-weight: bold;
}

.business-read-02 {
  font-size: 24px;
  font-weight: bold;
}

.business-text {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .business-head {
    gap: 12px;
  }
  .business-read-title {
    font-size: 28px;
  }
  .business-read-01 {
    font-size: 24px;
    font-weight: bold;
  }
  .business-read-02 {
    font-size: 20px;
    font-weight: bold;
  }
  .business-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .business-head {
    gap: 12px;
  }
  .business-read-title {
    font-size: 24px;
  }
  .business-read-01 {
    font-size: 20px;
    font-weight: bold;
  }
  .business-read-02 {
    font-size: 16px;
    font-weight: bold;
  }
  .business-text {
    font-size: 16px;
  }
}
.business-container {
  margin-top: 240px;
}

.cnt-base-a07 {
  position: relative;
  width: 100%;
}
.cnt-base-a07 .img-area {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 330px);
  height: 500px;
  overflow: hidden;
}
.cnt-base-a07 .img-area img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1200px;
  max-width: 1200px;
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
}
.cnt-base-a07 .text-area {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  width: 50%;
  margin-left: 50%;
}
.cnt-base-a07 .text-area p {
  margin: 0;
  line-height: 1.5;
}
.cnt-base-a07 .text-area.set-bkg {
  background-color: #dedede;
  background: rgb(255, 255, 255);
  padding: 20px 20px;
}

@media screen and (max-width: 768px) {
  .cnt-base-a07 {
    position: relative;
    width: 100%;
  }
  .cnt-base-a07 .img-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .cnt-base-a07 .img-area img {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 1200px;
    -webkit-filter: contrast(100%);
            filter: contrast(100%);
  }
  .cnt-base-a07 .text-area {
    position: relative;
    z-index: 1;
    padding: 10px 0px;
    width: 100%;
    margin-left: 0%;
  }
  .cnt-base-a07 .text-area p {
    margin: 0;
    line-height: 1.5;
  }
}
.set-bkg--v2 {
  background-color: var(--color-bkg) !important;
  padding: 70px !important;
}

.cnt-base-a07--v2 {
  padding-top: 100px;
}
.cnt-base-a07--v2 .img-area--v2 {
  height: 700px;
}

@media screen and (max-width: 1200px) {
  .set-bkg--v2 {
    padding: 40px !important;
  }
}
@media screen and (max-width: 1000px) {
  .business-container {
    margin-top: 240px;
  }
  .set-bkg--v2 {
    width: 70% !important;
    margin-left: 30% !important;
    padding: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .business-container {
    margin-top: 60px;
  }
  .set-bkg--v2 {
    width: 100% !important;
    margin-left: 0% !important;
  }
  .img-area--v2 {
    height: auto !important;
    width: 90% !important;
    margin-inline: auto;
  }
  .cnt-base-a07--v2 {
    padding-top: 0;
  }
}
.business-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.busines-section-number {
  color: var(--color-white);
  background-color: var(--color-bkg-green);
  padding: 5px 30px;
  font-weight: bold;
}

.business-section-title {
  font-weight: bold;
}

.business-section-text-base p {
  margin-top: 40px !important;
  line-height: 2 !important;
}
.business-section-text-base p span {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .business-section-text-base p {
    margin-top: 20px !important;
  }
  .business-section-text-base p span {
    font-weight: bold;
  }
}
@media screen and (max-width: 480px) {
  .business-section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.business-list-item {
  margin-top: 40px;
}

.business-list-title {
  background-color: var(--color-bkg-02);
  padding: 8px 10px;
}

.business-list-title-ja {
  font-size: 18px;
  font-weight: bold !important;
}

.business-list-text-area p {
  margin-top: 20px !important;
}

.business-button-area {
  margin-top: 20px;
}

.business-container--v2 {
  margin-top: 120px;
}

.business-slider-wrapper {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .business-container--v2 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .business-container--v2 {
    margin-top: 40px;
  }
}
.sdgs-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

@media screen and (max-width: 480px) {
  .sdgs-read-title {
    font-size: 24px;
  }
}
.sdgs-footer {
  margin-top: 300px;
}

.sdgs-read-text {
  font-size: 32px;
  text-align: center;
}

.sdgs-bkg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.sdgs-bkg-video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
}

.sdgs-read-title {
  position: absolute;
  top: 50%;
  width: 90%;
}

.sdgs-mask {
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  background-color: var(--color-lighgreen);
  color: var(--color-white);
  padding: 0 20px;
}

.cnt-base-a06 {
  position: relative;
  width: 100%;
}
.cnt-base-a06 .img-area {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% + 330px);
  height: 500px;
  overflow: hidden;
}
.cnt-base-a06 .img-area img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1200px;
  max-width: 1200px;
  -webkit-filter: contrast(70%);
          filter: contrast(70%);
}
.cnt-base-a06 .text-area {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  width: 50%;
}
.cnt-base-a06 .text-area p {
  margin: 0;
  line-height: 1.5;
}
.cnt-base-a06 .text-area.set-bkg {
  background-color: #dedede;
  background: rgb(255, 255, 255);
  padding: 20px 20px;
}

@media screen and (max-width: 768px) {
  .sdgs-mask {
    font-size: 24px;
  }
  .cnt-base-a06 {
    position: relative;
    width: 100%;
  }
  .cnt-base-a06 .img-area {
    position: relative;
    width: 100%;
    height: auto;
    overflow: auto;
  }
  .cnt-base-a06 .img-area img {
    position: relative;
    width: 100%;
    max-width: 1200px;
    -webkit-filter: contrast(100%);
            filter: contrast(100%);
  }
  .cnt-base-a06 .text-area {
    position: relative;
    z-index: 1;
    padding: 10px 0px;
    width: 100%;
  }
  .cnt-base-a06 .text-area p {
    margin: 0;
    line-height: 1.5;
  }
}
@media screen and (max-width: 480px) {
  .sdgs-read-title {
    position: absolute;
    top: 20%;
  }
  .sdgs-mask {
    font-size: 16px;
    padding: 0 10px;
  }
}
.office-header {
  margin-top: 80px;
}

.office-header-title h2 {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5;
}

.office-header-img {
  margin-top: 20px;
}

.office-header-text {
  margin-top: 32px;
  text-align: center;
  font-size: 24px;
}

.office-inner {
  margin-top: 80px;
}

.office-inner-title {
  font-size: 24px;
  font-weight: bold;
}

.office-inner-text {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .office-header {
    margin-top: 50px;
  }
  .office-header-title h2 {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
  }
  .office-header-img {
    margin-top: 20px;
  }
  .office-header-text {
    margin-top: 24px;
    text-align: center;
    font-size: 20px;
  }
  .office-inner {
    margin-top: 50px;
  }
  .office-inner-title {
    font-size: 20px;
    font-weight: bold;
  }
  .office-inner-text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .office-header {
    margin-top: 30px;
  }
  .office-header-title h2 {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
  }
  .office-header-img {
    margin-top: 20px;
  }
  .office-header-text {
    margin-top: 24px;
    text-align: center;
    font-size: 18px;
  }
  .office-inner {
    margin-top: 25px;
  }
  .office-inner-title {
    font-size: 18px;
    font-weight: bold;
  }
  .office-inner-text {
    margin-top: 16px;
  }
}
.office-container {
  position: relative;
  padding-bottom: 250vh; /* スクロール領域を確保 */
  padding-bottom: 50vh; /* スクロール領域を確保 */
}

.card {
  width: 100%;
  height: calc(50vh + 50px); /* 画面いっぱいの高さ */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  margin-top: 50px;
}

/* カードごとの色や初期の重なり順 */
.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 80px;
  width: 100%;
}
.card-item dt {
  width: 50%;
}
.card-item dd {
  width: 50%;
}

.card-num {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
  font-size: 24px;
  padding: 10px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.card-title {
  font-weight: bold;
  font-size: 20px;
}

.card-text {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .office-container {
    position: relative;
    padding-bottom: 50vh; /* スクロール領域を確保 */
  }
  .card {
    width: 100%;
    height: calc(50vh + 50px); /* 画面いっぱいの高さ */
    margin-top: 50px;
  }
  .card-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 40px;
    width: 100%;
  }
  .card-item dt {
    width: 100%;
  }
  .card-item dd {
    width: 100%;
  }
  .card-num {
    font-size: 24px;
    padding: 10px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .card-title {
    font-weight: bold;
    font-size: 20px;
  }
  .card-text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .office-container {
    position: relative;
    padding-bottom: calc(50vh + 100px); /* スクロール領域を確保 */
  }
  .card {
    width: 100%;
    height: calc(50vh + 100px); /* 画面いっぱいの高さ */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 25px;
    border-radius: 10px;
  }
  .card-item {
    gap: 20px;
    padding: 20px 20px;
  }
  .card-num {
    font-size: 16px;
    padding: 6px 10px;
    width: 100%;
    line-height: 1.5;
  }
  .card-title {
    font-weight: bold;
    font-size: 16px;
  }
  .card-text {
    margin-top: 20px;
  }
}
.office-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.office-middle .img-area {
  width: 30%;
}
.office-middle-2 {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.office-middle-2 .img-area {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .office-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .office-middle .img-area {
    width: 100%;
  }
  .office-middle-2 {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .office-middle-2 .img-area {
    width: 100%;
  }
}
.office-address {
  margin-top: 120px;
}

.office-address-table dt {
  background-color: var(--color-table-bkg);
  text-align: center;
}
.office-address-table dd {
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .office-address {
    margin-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  .office-address {
    margin-top: 60px;
  }
}
.office-map {
  margin-top: 60px;
}

.googlemap {
  width: 100%;
  aspect-ratio: 16/9; /* 横：縦の比率（16:9 や 4:3 など） */
  border: 0;
}

.googlemap-button {
  margin-top: 100px;
}

.l-container-ss {
  width: min(90%, var(--width-content-ss));
  margin-inline: auto;
}

.order-head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-transform: translateY(-90px);
          transform: translateY(-90px);
}

.order-head-sec {
  background: #f2f2f2 url(../img/general/special-03.png) top center/cover;
  aspect-ratio: 2160/941;
}

.order-head-iconwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.order-read-01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.order-read-01 p {
  font-size: 32px;
  padding: 10px 30px;
  font-weight: bold;
  color: var(--color-white);
  background-color: var(--color-green-02);
  border-radius: 24px 0 24px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.04em;
  line-height: 1;
}

.order-read-02 p {
  font-size: 48px;
  color: var(--color-primary);
  background-color: var(--color-white);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.04em;
  padding: 10px 10px;
}

.order-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 31px;
}

.order-item {
  width: 191px;
  height: 191px;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border: 1px solid var(--color-green-03);
  border-radius: 20px;
  -webkit-box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

.order-item-in-01 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.order-item-in-02 {
  font-size: 80px;
  font-weight: bold;
  color: var(--color-primary);
  font-family: var(--font-en);
  line-height: 1;
  margin-top: 10px;
}

.order-item-in-03 {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-font);
  line-height: 1;
}

.order-item-in-04 {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-font);
  letter-spacing: 0.06em;
}

@media screen and (max-width: 768px) {
  .order-head-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  .order-head-iconwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
  }
  .order-read-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .order-read-01 p {
    font-size: 26px;
    padding: 10px 30px;
    border-radius: 24px 0 24px 0;
  }
  .order-read-02 p {
    font-size: 40px;
    padding: 10px 10px;
  }
  .order-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 31px;
  }
  .order-item {
    width: 25%;
    height: auto;
    aspect-ratio: 1/1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
  }
  .order-item-in-01 {
    font-size: 16px;
  }
  .order-item-in-02 {
    font-size: 50px;
    margin-top: 10px;
  }
  .order-item-in-03 {
    font-size: 15px;
  }
  .order-item-in-04 {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .order-head-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .order-head-iconwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0px;
  }
  .order-read-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .order-read-01 p {
    font-size: 14px;
    padding: 10px 10px;
    line-height: 1.5;
    border-radius: 12px 0 12px 0;
  }
  .order-read-02 p {
    font-size: 18px;
    padding: 10px 10px;
  }
  .order-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
  .order-item {
    width: 33%;
    height: 100%;
    aspect-ratio: 1/1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 0;
  }
  .order-item-in-01 {
    font-size: 13px;
  }
  .order-item-in-02 {
    font-size: 25px;
    margin-top: 10px;
  }
  .order-item-in-03 {
    font-size: 12px;
  }
  .order-item-in-04 {
    font-size: 12px;
  }
}
.order-head-sec-2 {
  background-color: #f2f2f2;
  padding-bottom: 60px;
}

.order-head-sec-inner-title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.order-head-sec-inner-title span {
  margin-inline: auto;
  display: block;
  border-radius: 16px;
  background-color: var(--color-green-03);
  color: var(--color-white);
  padding: 0 32px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 40px;
  letter-spacing: 0.025em;
  line-height: 1.8;
}
.order-head-sec-inner-title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.64em;
}

.order-head-sec-inner-body {
  position: relative;
  display: block;
  margin-bottom: 44px;
  padding: 60px 180px;
  border: 8px solid #04842f;
  background-color: var(--color-white);
  border-radius: 24px;
  margin-inline: auto;
}
.order-head-sec-inner-body::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 44px 54px 0 54px;
  border-color: #04842f transparent transparent;
  translate: -50% 100%;
}
.order-head-sec-inner-body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 33.7px 41.3px 0 41.3px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}

.order-head-sec-inner-body-container {
  margin-inline: auto;
}

.order-head-sec-inner-list {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.order-head-sec-inner-ltem {
  font-size: 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.order-head-sec-inner-ltem::before {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../img/icon/icon-check.png) top center/cover;
  display: block;
}

.order-head-sec-inner-bottom {
  text-align: center;
  margin-top: 64px;
}
.order-head-sec-inner-bottom p {
  color: var(--color-white);
  background-color: var(--color-primary);
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  .order-head-sec-2 {
    padding-bottom: 60px;
  }
  .order-head-sec-inner-title {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
  .order-head-sec-inner-title span {
    margin-inline: auto;
    display: block;
    border-radius: 16px;
    background-color: var(--color-green-03);
    color: var(--color-white);
    padding: 0 32px;
    font-weight: bold;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 40px;
    letter-spacing: 0.025em;
    line-height: 1.8;
  }
  .order-head-sec-inner-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.64em;
  }
  .order-head-sec-inner-body {
    position: relative;
    display: block;
    margin-bottom: 44px;
    padding: 60px 40px;
    border: 8px solid #04842f;
    background-color: var(--color-white);
    border-radius: 24px;
    margin-inline: auto;
  }
  .order-head-sec-inner-body::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 44px 54px 0 54px;
    border-color: #04842f transparent transparent;
    translate: -50% 100%;
  }
  .order-head-sec-inner-body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 33.7px 41.3px 0 41.3px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
  }
  .order-head-sec-inner-body-container {
    margin-inline: auto;
  }
  .order-head-sec-inner-list {
    margin-top: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .order-head-sec-inner-ltem {
    font-size: 24px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .order-head-sec-inner-ltem::before {
    content: "";
    width: 36px;
    height: 36px;
    background: url(../img/icon/icon-check.png) top center/cover;
    display: block;
  }
  .order-head-sec-inner-bottom {
    text-align: center;
    margin-top: 64px;
  }
  .order-head-sec-inner-bottom p {
    color: var(--color-white);
    background-color: var(--color-primary);
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .order-head-sec-2 {
    padding-bottom: 30px;
  }
  .order-head-sec-inner-title span {
    margin-inline: auto;
    display: block;
    border-radius: 8px;
    background-color: var(--color-green-03);
    color: var(--color-white);
    padding: 0 16px;
    font-size: 24px;
    letter-spacing: 0.025em;
    line-height: 1.8;
  }
  .order-head-sec-inner-title {
    font-size: 16px;
  }
  .order-head-sec-inner-body {
    margin-bottom: 22px;
    padding: 30px 20px;
    border: 4px solid #04842f;
    border-radius: 12px;
    margin-inline: auto;
  }
  .order-head-sec-inner-body::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 44px 54px 0 54px;
    border-color: #04842f transparent transparent;
    translate: -50% 100%;
  }
  .order-head-sec-inner-body::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 33.7px 41.3px 0 41.3px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
  }
  .order-head-sec-inner-body-container {
    margin-inline: auto;
  }
  .order-head-sec-inner-list {
    margin-top: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .order-head-sec-inner-ltem {
    font-size: 16px;
    gap: 10px;
  }
  .order-head-sec-inner-ltem::before {
    width: 24px;
    height: 24px;
  }
  .order-head-sec-inner-bottom {
    text-align: center;
    margin-top: 64px;
  }
  .order-head-sec-inner-bottom p {
    padding: 4px 0;
    font-size: 15px;
  }
}
.sec-solution {
  padding-top: 40px;
}

.solution-title {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: bold;
}

.solution-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.solution-img {
  width: 58%;
}

.solution-text-area {
  width: 42%;
}

.solution-text-title {
  font-size: 20px;
  font-weight: bold;
}

.solition-text {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .solution-title {
    font-family: var(--font-en);
    font-size: 48px;
    font-weight: bold;
  }
  .solution-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .solution-img {
    margin-top: 24px;
    width: 100%;
  }
  .solution-text-area {
    margin-top: 24px;
    width: 100%;
  }
  .solution-text-title {
    font-size: 20px;
    font-weight: bold;
  }
  .solition-text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  .solution-title {
    font-size: 24px;
  }
  .solution-text-title {
    font-size: 18px;
    font-weight: bold;
  }
}
.accordion-wrap {
  margin-top: 80px;
}

.accordion-area {
  position: relative;
  margin-bottom: 10px;
}

.accordion-area-header {
  border-bottom: 1px solid var(--color-border2);
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.accordion-area-header h3 {
  line-height: 1.5;
  font-size: 24px;
  font-weight: bold;
}

.accordion-open-btn {
  margin-left: auto;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.text-toggle-label {
  font-weight: bold;
  font-size: 13px;
  color: #1d1d1d;
  margin-right: 10px;
}

.icon-toggle-label {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid;
  border-radius: 50%;
  background-color: #fff;
}

.icon-toggle-label::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  border-radius: 3px;
  background-color: var(--color-primary);
  content: "";
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.icon-toggle-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  border-radius: 3px;
  background-color: var(--color-primary);
  content: "";
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accordion-area-body {
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 8px;
}

.accordion-area-body.is-open {
  max-height: 1000px;
  opacity: 1;
}

.accordion-open-btn.is-open .icon-toggle-label::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media screen and (max-width: 768px) {
  .accordion-area-header {
    padding-bottom: 10px;
  }
  .accordion-area-header h3 {
    line-height: 1.5;
    font-size: 24px;
  }
  .text-toggle-label {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .accordion-area-header {
    padding-bottom: 10px;
  }
  .accordion-area-header h3 {
    line-height: 1.5;
    font-size: 16px;
  }
  .text-toggle-label {
    display: none;
  }
}
.accordion-area-body-title {
  margin-top: 50px;
  font-size: 20px;
  font-weight: bold;
  background-color: var(--color-table-bkg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px;
}

.accordion-area-inner {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.accordion-area-inner-top {
  width: 42%;
  border: 1px solid var(--color-primary);
  padding: 28px 30px;
}

.accordion-area-inner-top-text {
  font-size: 16px;
  line-height: 2;
}

.accordion-area-inner-top-list {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.accordion-area-inner-top-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 10px;
}
.accordion-area-inner-top-item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid var(--color-primary);
  border-right: 0;
  display: block;
}

.accordion-area-inner-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.accordion-area-inner-bottom-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.accordion-area-inner-bottom-result-text {
  font-size: 20px;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
  width: 120px;
  height: 120px;
}

.accordion-area-inner-bottom-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.9;
}

@media screen and (max-width: 768px) {
  .accordion-area-body-title {
    margin-top: 20px;
    font-size: 20px;
    padding: 0 16px;
  }
  .accordion-area-inner {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 18px;
  }
  .accordion-area-inner-top {
    width: 100%;
    padding: 20px 16px;
  }
  .accordion-area-inner-top-text {
    font-size: 16px;
  }
  .accordion-area-inner-top-list {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .accordion-area-inner-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .accordion-area-inner-bottom-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 32px;
  }
  .accordion-area-inner-bottom-result-text {
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    aspect-ratio: 1;
    width: 120px;
    height: 120px;
  }
  .accordion-area-inner-bottom-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .accordion-wrap {
    margin-top: 40px;
  }
  .accordion-area-body-title {
    margin-top: 10px;
    font-size: 15px;
    padding: 0 8px;
  }
  .accordion-area-inner {
    margin-top: 20px;
    gap: 18px;
  }
  .accordion-area-inner-top {
    width: 100%;
    padding: 10px 16px;
  }
  .accordion-area-inner-top-text {
    font-size: 15px;
  }
  .accordion-area-inner-top-list {
    margin-top: 20px;
    gap: 14px;
  }
  .accordion-area-inner-bottom-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .accordion-area-inner-bottom-result-text {
    font-size: 16px;
    width: 80px;
    height: 80px;
  }
  .accordion-area-inner-bottom-text {
    font-size: 15px;
  }
}
.sec-strengths {
  margin-top: 100px;
}

.sec-strengths-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--color-bkg-green);
  text-align: center;
  position: relative;
}
.sec-strengths-title::after {
  top: 30px;
  position: relative;
  left: 50%;
  content: "";
  width: 2px;
  height: 74px;
  background-color: var(--color-bkg-green);
  display: block;
}

.sec-strengths-inner-wrap {
  padding: 50px 0px;
}

.sec-strengths--v1 {
  background-color: var(--color-bkg-03);
}
.sec-strengths--v1 .sec-strengths-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.sec-strengths-inner {
  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;
}

.strengths-img {
  width: 48%;
}

.strengths-text-area {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.strengths-icon {
  font-size: 32px;
  color: var(--color-blue-02);
  font-family: var(--font-en);
  font-weight: bold;
}

.strengths-title {
  padding: 10px;
  background-color: var(--color-bkg-green);
  color: var(--color-white);
  font-size: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.strengths-text {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .sec-strengths {
    margin-top: 100px;
  }
  .sec-strengths-title {
    font-size: 28px;
  }
  .sec-strengths-title::after {
    top: 30px;
    width: 2px;
    height: 54px;
  }
  .sec-strengths-inner-wrap {
    padding: 50px 0px;
  }
  .sec-strengths--v1 .sec-strengths-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .sec-strengths-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .strengths-img {
    width: 48%;
  }
  .strengths-text-area {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
  }
  .strengths-icon {
    font-size: 26px;
  }
  .strengths-title {
    padding: 10px;
    background-color: var(--color-bkg-green);
    color: var(--color-white);
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .strengths-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.8;
  }
}
@media screen and (max-width: 480px) {
  .sec-strengths {
    margin-top: 40px;
  }
  .sec-strengths-title {
    font-size: 20px;
  }
  .sec-strengths-title::after {
    top: 10px;
    width: 2px;
    height: 34px;
  }
  .sec-strengths-inner-wrap {
    padding: 20px 0px;
  }
  .sec-strengths--v1 .sec-strengths-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec-strengths-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .strengths-img {
    width: 100%;
  }
  .strengths-text-area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .strengths-icon {
    font-size: 20px;
  }
  .strengths-title {
    padding: 10px;
    font-size: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .strengths-text {
    font-size: 18px;
  }
}
.sec-flow {
  margin-top: 120px;
}

.flow-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: var(--color-green-text);
}

.flow-text-00 {
  text-align: center;
  margin-top: 56px;
  font-size: 20px;
}

.flow-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.flow-img {
  width: 40%;
}

.flow-text-area {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.flow-num {
  color: var(--color-white);
  background-color: var(--color-lighgreen);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 50px;
  font-size: 24px;
  font-family: var(--font-en);
  margin-top: 120px;
}

.flow-title2 {
  font-size: 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.flow-title2::after {
  content: "";
  width: 72px;
  height: 2px;
  display: block;
  background-color: var(--color-lighgreen);
}

.flow-text-innner {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 10px;
}
.flow-item::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid var(--color-green-text);
  border-right: 0;
  display: block;
}

.flow-text-02 {
  font-size: 20px;
}

.flow-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.flow-list-wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 10px;
}
.flow-list-wrap p::before {
  position: relative;
  left: -3px;
  content: "";
  width: 13px;
  height: 13px;
  aspect-ratio: 1;
  background-color: var(--color-green-text);
  display: block;
  border-radius: 50%;
}

.special-order-form-info {
  background-color: var(--color-bkg-green);
  color: var(--color-white);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.025em;
  padding: 24px 40px;
  margin-top: 100px;
}

@media screen and (max-width: 480px) {
  .sec-flow {
    margin-top: 40px;
  }
  .flow-title {
    font-size: 24px;
  }
  .flow-text-00 {
    margin-top: 28px;
    font-size: 15px;
  }
  .flow-wrap {
    margin-top: 20px;
    padding-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow-img {
    width: 100%;
  }
  .flow-text-area {
    width: 100%;
    gap: 20px;
    margin-top: 20px;
  }
  .flow-num {
    padding: 0px 20px;
    font-size: 15px;
    margin-top: 40px;
  }
  .flow-title2 {
    font-size: 18px;
    gap: 18px;
  }
  .flow-title2::after {
    content: "";
    width: 32px;
  }
  .flow-text-innner {
    margin-top: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .flow-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .flow-text-02 {
    font-size: 18px;
  }
  .flow-list-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .special-order-form-info {
    background-color: var(--color-bkg-green);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.025em;
    padding: 14px 20px;
    margin-top: 40px;
  }
}
.kv--company {
  background: url(../img/general/kv-company.jpg) center center/cover;
}

.kv--contact {
  background: url(../img/general/kv-contact.jpg) center center/cover;
}

.kv--business {
  background: url(../img/general/kv-business.jpg) center center/cover;
}

.kv--privacy {
  background: url(../img/general/kv-privacy.jpg) center center/cover;
}

.kv--history {
  background: url(../img/general/kv-history.jpg) center center/cover;
}

.kv--news {
  background: url(../img/general/kv-news.jpg) center center/cover;
}

.access-bkg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.access-bkg-video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#6fc2a1), to(#02251d));
  background: linear-gradient(180deg, #6fc2a1, #02251d);
  opacity: 0.7;
}

.background_movie--v3 {
  width: 100%;
  height: 388px;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  aspect-ratio: 16/9;
}/*# sourceMappingURL=style.css.map */