@charset "UTF-8";
/* system
--------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Oswald:wght@700&display=swap");
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
/* reset
--------------------------- */
/*
 * destyle.css v1.0.14
 * https://github.com/nicolas-cusan/destyle.css
 */
* {
  box-sizing: border-box;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

address,
blockquote,
dl,
figure,
form,
iframe,
p,
pre,
table {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: 0 0;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled],
button[disabled] {
  cursor: default;
}

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

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

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

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: 0;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.pc-only {
  display: none;
}

@media (min-width: 890px) {
  .pc-only {
    display: inline-block;
  }
}
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

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

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

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

/*グラデ*/
.underline {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: linear-gradient(90deg, #fff, #fff); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.6s; /* 線を伸ばすアニメーション実行時間を指定 */
}
.underline:hover {
  background-size: 100% 1px; /* 線の横幅を100%にする */
}

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

html {
  font-size: 62.5%;
  line-height: 2;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  color: #333;
  background-color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0em;
  max-width: 100vw;
  min-width: 350px;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

::selection {
  background-color: rgba(34, 34, 34, 0.7);
  color: #fff;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  color: #252928;
  position: relative;
  display: inline-block;
}
a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s;
}

a,
label,
input,
button {
  transition: all 0.4s;
}

.fade-area {
  overflow: hidden;
}

.fade-slide-b {
  transform: translateY(120%);
  transition: 1s;
}

.fade-slide-r {
  transform: translateX(120%);
  transition: 1s;
}

.fade-slide-l {
  transform: translateX(-120%);
  transition: 1s;
}

.is-fadein {
  transform: translate(0, 0);
}

/* l-header
--------------------------- */
.l-header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s;
  /*基準となるli要素*/
}
.l-header.scroll {
  background: #252928;
}
.l-header__inner {
  width: 90%;
  max-width: 1735px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .l-header__inner {
    width: 98%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    width: 92%;
  }
}
.l-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 10px;
}
.l-header__left {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .l-header__left {
    width: 30%;
  }
}
.l-header__right {
  flex: 1;
}
.l-header__logo {
  min-width: 200px;
}
.l-header__logo a {
  display: block;
}
.l-header__nav {
  display: flex;
  justify-content: flex-end;
  gap: 0 3%;
}
@media screen and (max-width: 1140px) {
  .l-header__nav {
    gap: 0 1%;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav a {
  color: #fff;
  line-height: 1;
  padding: 0 0 7px;
}
@media screen and (max-width: 1140px) {
  .l-header__nav a {
    font-size: 14px;
  }
}
.l-header__nav--recruit a {
  width: 128px;
  text-align: center;
  border: solid 2px #00a279;
  background: #fff;
  color: #00a279;
  border-radius: 20px;
  padding: 10px;
}
@media screen and (max-width: 1140px) {
  .l-header__nav--recruit a {
    width: 110px;
    padding: 7px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav--recruit a {
    width: 100%;
  }
}
.l-header__nav--recruit a:hover {
  background: #00a279;
  color: #fff;
}
.l-header__nav--contact a {
  width: 128px;
  text-align: center;
  border: solid 2px #00a279;
  background: #00a279;
  border-radius: 20px;
  padding: 10px;
}
@media screen and (max-width: 1140px) {
  .l-header__nav--contact a {
    width: 110px;
    padding: 7px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__nav--contact a {
    width: 100%;
  }
}
.l-header__nav--contact a:hover {
  background: #fff;
  color: #00a279;
}
.l-header__menu-btn {
  position: relative;
  display: none;
  width: 30px;
  height: 25px;
  margin: 0 0 0 auto;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .l-header__menu-btn {
    display: block;
  }
}
.l-header__menu-btn span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: all 0.6s ease-in-out;
}
.l-header__menu-btn span::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.6s ease-in-out;
}
.l-header__menu-btn span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.6s ease-in-out;
}
.l-header__menu-btn.active span {
  background-color: #252928;
}
.l-header__menu-btn.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.l-header__menu-btn.active span::after {
  transform: rotate(-45deg);
  bottom: 0;
}
.l-header .sp-nav {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: block;
  width: 100%;
  background: #252928;
  transition: all 0.6s ease-in-out;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: hidden;
}
.l-header .sp-nav ul {
  width: 80%;
  margin: 0 auto;
}
.l-header .sp-nav li {
  padding: 18px 0;
  border-bottom: solid 1px #949494;
}
.l-header .sp-nav li.l-header__nav--contact {
  border-bottom: none;
}
.l-header .sp-nav li.l-header__nav--contact a {
  display: block;
  text-align: center;
}
.l-header .sp-nav li.l-header__nav--recruit {
  border-bottom: none;
}
.l-header .sp-nav li.l-header__nav--recruit a {
  color: #00a279;
}
.l-header .sp-nav a {
  color: #fff;
}
.l-header .sp-nav .close {
  position: relative;
  padding-left: 20px;
}
.l-header .toggle {
  opacity: 1;
  visibility: visible;
}
.l-header__sns {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
}
.l-header__sns a:hover img {
  filter: invert(33%) sepia(49%) saturate(2367%) hue-rotate(154deg) brightness(103%) contrast(105%);
}

.l-header-kasou {
  background: #252928;
}

/* l-footer
--------------------------- */
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00a279;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  border: solid 1px #fff;
}
#page-top a img {
  width: 12px;
  height: 12px;
}

#page-top a:hover {
  opacity: 0.6;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.p-home__contact {
  background: #00a279;
  color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 1140px) {
  .p-home__contact {
    padding: 60px 0;
  }
}
.p-home__contact.p-home-sec {
  overflow: visible;
}
.p-home__contact--flex {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-home__contact--flex {
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
}
.p-home__contact--btn a {
  display: block;
  font-weight: bold;
  background: #f3eacb;
  border-radius: 20px;
  line-height: 1;
  padding: 10px 20px 11px;
  transition: 0.3s;
}
.p-home__contact--btn a:hover {
  background: #252928;
  color: #fff;
}
.p-home__contact--btn.tel a {
  background: #fff;
}
.p-home__contact--btn.tel a:hover {
  background: #252928;
  color: #fff;
}
.p-home__contact .view-more-btn {
  color: #fff;
  margin-left: 0;
  margin-bottom: 45px;
}
.p-home__contact .view-more-btn .btn-arrow::before {
  content: url(../img/common/icon-arrow-w.svg);
}
@media screen and (max-width: 768px) {
  .p-home__contact .view-more-btn {
    margin-left: 3.5em;
    margin-bottom: 40px;
  }
}
.p-home__contact .view-more-btn:hover {
  color: #fff345;
}
.p-home__contact .view-more-btn:hover .btn-arrow::before {
  content: url(../img/common/icon-arrow_on-y.svg);
}
.p-home__contact h2 {
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 30px;
  font-size: clamp(24px, 1.45vw, 28px);
}

.l-footer {
  padding: 80px 0 10px;
  background: #252928;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1140px) {
  .l-footer {
    padding: 70px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 50px 0 0px;
    font-size: 13px;
  }
}
.l-footer a {
  color: #fff;
}
.l-footer__inner {
  max-width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .l-footer__inner {
    width: 92%;
  }
}
.l-footer__flex {
  display: flex;
  justify-content: space-between;
  gap: 0 4%;
}
@media screen and (max-width: 1140px) {
  .l-footer__flex {
    gap: 0 2%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__nav li {
    border-bottom: solid 1px #949494;
    padding: 18px 0;
  }
}
.l-footer__nav2 {
  margin: 0 0 0 1em;
}
@media screen and (max-width: 768px) {
  .l-footer__nav2 li {
    border: none;
    padding: 18px 0 0;
  }
}
.l-footer__logo {
  width: 30%;
}
@media screen and (max-width: 1140px) {
  .l-footer__logo {
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    width: 80%;
    margin: 30px 0 0;
  }
}
.l-footer__logo a {
  display: block;
}
.l-footer__logo a img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-footer__logo a img {
    width: 50%;
  }
}
.l-footer__address .notel {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-footer__address {
    margin: 30px 0 0;
  }
}
.l-footer__bottom {
  border-top: solid 1px #fff;
  padding: 20px 0 10px;
  margin: 80px 0 10px;
}
.l-footer__bottom .l-footer__flex {
  align-items: center;
}
.l-footer__copy {
  font-size: 13px;
  line-height: 1;
}
.l-footer__bnrarea {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px 2%;
  margin: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .l-footer__bnrarea {
    grid-template-columns: 1fr 1fr;
  }
}
.l-footer__bnrarea a {
  display: block;
}

.l-footer__bottom--sns.pc-tab {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom--sns.pc-tab {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__bottom--sns.sp {
    display: flex;
    margin: 20px 0 0;
  }
}
.l-footer__bottom--sns a {
  display: block;
}
.l-footer__bottom--sns .facebook img {
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom--sns .facebook img {
    width: 30px;
    height: 30px;
  }
}

/* l-footer
--------------------------- */
.l-inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .l-inner {
    margin: 0 auto;
    width: 92%;
  }
}

/* l-footer
--------------------------- */
.l-content {
  margin-top: 105px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .l-content {
    margin-top: 50px;
    margin-bottom: 70px;
  }
}
.l-content__flex {
  display: flex;
}

.u-inline-block {
  display: inline-block;
}

.u-block {
  display: block;
}

.u-flex {
  display: flex;
}

.u-space-between {
  display: flex;
  justify-content: space-between;
}

.u-align-items-center {
  display: flex;
  align-items: center;
}

.u-flex-start {
  justify-content: flex-start;
  display: flex;
}

.u-text-align--center {
  text-align: center;
}

.u-margin--center {
  margin: 0 auto;
}

.u-object-fit--cover {
  object-fit: cover;
}

/* p-home
--------------------------- */
.l-main {
  overflow: hidden;
}

@keyframes load {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loadingAnime {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  top: 0;
  left: 0;
}
.loadingAnime.none {
  display: none;
}
.loadingAnime__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation-name: load;
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 1140px) {
  .loadingAnime__text {
    width: 80%;
  }
}
.loadingAnime__text.loaded {
  animation-name: load;
  animation-delay: 1s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.loadingAnime__text--heading {
  font-size: clamp(18px, 1.875vw, 36px);
  letter-spacing: 0.05em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.6;
}
.loadingAnime__text--logo {
  width: 18vw;
  margin: 20px auto 0;
  max-width: 358px;
  min-width: 200px;
}

.loading {
  opacity: 1;
  transition: all ease 2s;
}
.loading.loaded {
  opacity: 0;
  transition: opacity 2s ease;
}
.loading.loaden {
  display: none;
}

.p-home-sec {
  overflow: hidden;
  position: relative;
}
.p-home-sec__en {
  position: absolute;
  writing-mode: vertical-rl;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(80px, 7.8vw, 150px);
  font-family: "Oswald", sans-serif;
}
.p-home-sec__title {
  text-align: center;
  font-weight: bold;
}

.p-home-mainv {
  position: relative;
  height: 100vh;
  z-index: -1;
}
.p-home-mainv__wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background: #252928;
}
.p-home-mainv video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-home-mainv__mask {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(37, 41, 40, 0.4) 0%, #252928 100%);
  opacity: 0.49;
  transition: all 1s 0s ease;
}
.p-home-mainv__title {
  position: fixed;
  top: 35%;
  left: 7.7%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.4;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .p-home-mainv__title {
    top: 17%;
  }
}
.p-home-mainv__title p {
  color: #fff;
  font-size: clamp(30px, 3.9vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .p-home-mainv__title p {
    font-size: 48px;
  }
}
@media screen and (max-width: 820px) {
  .p-home-mainv__title p {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-mainv__title p {
    font-size: 30px;
  }
}
.p-home-mainv__title p .bold {
  font-weight: bold;
}
.p-home-mainv__title p .green {
  align-items: center;
  background: #00a279;
  margin-bottom: 10px;
  justify-content: center;
  line-height: 1;
  letter-spacing: 0;
  display: inline-block;
  padding: 13px 0 8px;
}
.p-home-mainv__title p .white {
  align-items: center;
  background: #fff;
  margin-bottom: 10px;
  justify-content: center;
  line-height: 1;
  display: inline-block;
  padding: 13px 0 8px;
}
.p-home-mainv__title p .fs75 {
  font-size: clamp(38px, 4.2vw, 75px);
}
.p-home-mainv__title p .ls0 {
  letter-spacing: 0;
}
.p-home-mainv__title p .colorGreen {
  color: #00a279;
}
.p-home-mainv__scroll .scroll {
  position: absolute;
  font-size: 13px;
  writing-mode: vertical-rl;
  bottom: 30%;
  right: 9%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 19px;
  line-height: 1;
  color: #fff;
  font-family: "Oswald", sans-serif;
}
.p-home-mainv__scroll .scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  right: -3px;
  top: 19px;
  transform: translateX(-50%);
  width: 1px;
  height: 265px;
  animation: scroll 3s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.p-home-story {
  position: relative;
}
.p-home-story__bg {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(../img/home/story-bg03.png) no-repeat center center;
  background-size: cover;
  opacity: 0.1;
}
.p-home-story__en {
  color: #18aa86;
  top: 0;
  right: 0;
  opacity: 0.5;
}
.p-home-story__title {
  color: #fff;
  line-height: 1.6;
  padding: 73px 0 30px;
  font-size: 24px;
  position: relative;
}
@media screen and (max-width: 1140px) {
  .p-home-story__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-story__title {
    font-size: 18px;
  }
}
.p-home-story__text {
  color: #fff;
  text-align: center;
  line-height: 2.5;
  padding: 0 0 68px;
  font-size: 20px;
}
.p-home-story__text .bold {
  font-weight: bold;
  font-size: 24px;
}
.p-home-story__text .smallBold {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-home-story__text {
    font-size: 14px;
    position: relative;
    line-height: 1.8;
  }
  .p-home-story__text .bold {
    font-size: 18px;
  }
}

.p-home-about {
  background: #fff;
  padding: 0 0 60px;
  position: relative;
}
.p-home-about::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 294px;
  background: url(../img/home/about-bg.png) no-repeat center bottom;
  background-size: cover;
}
.p-home-about__en {
  color: #00a27a;
  opacity: 0.15;
  top: 8%;
  left: 0;
}
.p-home-about__title {
  text-align: center;
  font-size: clamp(20px, 2vw, 40px);
  line-height: 1.25;
  padding: 130px 0 37px;
}
@media screen and (max-width: 768px) {
  .p-home-about__title {
    padding: 70px 0 37px;
  }
}
.p-home-about__text {
  width: 80%;
  margin: 0 auto;
}
.p-home-about__graph {
  display: flex;
  gap: 0 5%;
  margin: 80px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-home-about__graph {
    flex-direction: column;
    gap: 30px 0;
    margin: 40px 0 35px;
  }
}
.p-home-about__graph .graph-title {
  color: #00a279;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-home-about__graph .graph-title {
    font-size: 18px;
  }
}
.p-home-about__graph .graph-title span {
  font-size: 12px;
  vertical-align: super;
}
.p-home-about__graph .graph-notes {
  font-size: 13px;
  line-height: 1;
  text-indent: -2.5em;
  padding-left: 2.5em;
  width: 71%;
  margin: 10px auto 0;
}
.p-home-about__graph--bar {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-home-about__graph--bar {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px 0;
    width: 100%;
  }
}
.p-home-about__graph--bar .content {
  position: relative;
  width: 75%;
  height: 270px;
  margin: 0 0 0 auto;
  padding: 0;
  border-left: solid #252928 1px;
}
@media screen and (max-width: 768px) {
  .p-home-about__graph--bar .content {
    margin: 0 0 15px auto;
  }
}
.p-home-about__graph--bar .content .graph {
  height: 23px;
  position: absolute;
  left: 0;
  width: 0;
  transition: all 1s;
  z-index: 2;
}
.p-home-about__graph--bar .content .graph span {
  position: absolute;
  font-size: 14px;
  left: -7.5em;
  top: -27%;
  display: block;
  width: 7em;
  text-align: right;
}
.p-home-about__graph--bar .content .graph span.label {
  left: unset;
  right: 0;
  width: auto;
  color: #fff;
}
.p-home-about__graph--bar .content .graph.item01 {
  top: 0%;
  background: #1fa281;
}
.p-home-about__graph--bar .content .graph.item02 {
  top: 10.5%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item03 {
  top: 21%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item04 {
  top: 31%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item05 {
  top: 41%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item06 {
  top: 51%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item07 {
  top: 61%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item08 {
  top: 71%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item09 {
  top: 81%;
  background: #252928;
}
.p-home-about__graph--bar .content .graph.item10 {
  top: 91%;
  background: #252928;
}
.p-home-about__graph--bar.is-inview .content .graph.item01 {
  width: 100%;
}
.p-home-about__graph--bar.is-inview .content .graph.item02 {
  width: 70%;
}
.p-home-about__graph--bar.is-inview .content .graph.item03 {
  width: 60%;
}
.p-home-about__graph--bar.is-inview .content .graph.item04 {
  width: 30%;
}
.p-home-about__graph--bar.is-inview .content .graph.item05 {
  width: 20%;
}
.p-home-about__graph--bar.is-inview .content .graph.item06 {
  width: 10%;
}
.p-home-about__graph--bar.is-inview .content .graph.item07 {
  width: 8%;
}
.p-home-about__graph--bar.is-inview .content .graph.item08 {
  width: 5%;
}
.p-home-about__graph--bar.is-inview .content .graph.item09 {
  width: 5%;
}
.p-home-about__graph--bar.is-inview .content .graph.item10 {
  width: 5%;
}
.p-home-about__graph--doughnut {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-home-about__graph--doughnut {
    width: 100%;
  }
}
.p-home-about__graph--doughnut .flex {
  display: flex;
  align-items: center;
  gap: 0 7%;
}
.p-home-about__graph--doughnut .box {
  width: 37%;
  position: relative;
}
.p-home-about__graph--doughnut .box::before {
  position: absolute;
  content: "";
  top: 52%;
  left: 50%;
  width: 70%;
  height: 70%;
  background: url(../img/home/about-img03.png) no-repeat center center;
  background-size: contain;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .p-home-about__graph--doughnut .box::before {
    top: 54%;
  }
}
.p-home-about__graph--doughnut .box.box02::before {
  background: url(../img/home/about-img04.png) no-repeat center center;
  background-size: contain;
}
.p-home-about__graph--doughnut .box canvas {
  width: 100% !important;
  height: auto !important;
}
.p-home-about__graph--doughnut .text {
  flex: 1;
}
.p-home-about__graph--doughnut .graph-title {
  text-align: left;
}
.p-home-about__graph--doughnut .graph-notes {
  width: 100%;
  margin: 10px 0 0;
}
.p-home-about__btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5.1%;
  margin: 80px auto 0;
}
@media screen and (max-width: 768px) {
  .p-home-about__btn {
    grid-template-columns: 1fr;
    gap: 30px 0;
    margin: 40px auto 0;
  }
}
.p-home-about__btn--item {
  border-radius: 5px;
  box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.35);
}
.p-home-about__btn--item a {
  display: block;
}
.p-home-about__btn--item a .btn01 {
  width: 287px;
}
@media screen and (max-width: 1140px) {
  .p-home-about__btn--item a .btn01 {
    width: 240px;
  }
}
.p-home-about__btn--item a .btn01 .btn01span {
  background: #00a279;
  border: solid 2px #00a279;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: bold;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1140px) {
  .p-home-about__btn--item a .btn01 .btn01span {
    font-size: 16px;
  }
}
.p-home-about__btn--item a .btn01 .btn01span::after {
  background: url(../img/home/icon-arrow-white.svg) no-repeat center center;
  background-size: contain;
}
.p-home-about__btn--item a:hover .btn01 .btn01span {
  background: #fff;
  color: #00a279;
}
.p-home-about__btn--item a:hover .btn01 .btn01span::after {
  background: url(../img/common/arrow-green.svg) no-repeat center center;
  background-size: contain;
  right: 15px;
}
.p-home-about__btn--item.btnAbout {
  background: url(../img/home/about-btnbg01.jpg) no-repeat center bottom;
  background-size: cover;
}
.p-home-about__btn--item.btnAbout .btn01 {
  padding: 34px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1140px) {
  .p-home-about__btn--item.btnAbout .btn01 {
    padding: 15px 0;
  }
}
.p-home-about__btn--item.btnInfo {
  border: solid 2px #00a279;
  background: url(../img/home/about-btnbg02.jpg) no-repeat center bottom;
  background-size: cover;
}
.p-home-about__btn--item.btnInfo .btn01 {
  padding: 34px 0;
  margin: 0 9px 0 auto;
}
@media screen and (max-width: 1140px) {
  .p-home-about__btn--item.btnInfo .btn01 {
    padding: 15px 0;
  }
}
@media screen and (max-width: 1140px) {
  .p-home-about__btn--item.btnInfo .btn01 .btn01span {
    text-align: left;
    padding-left: 17px;
  }
}

.p-home-how {
  background: #fff;
  position: relative;
  padding: 0 0 114px;
}
@media screen and (max-width: 1140px) {
  .p-home-how {
    padding: 0 0 130px;
  }
}
@media screen and (max-width: 768px) {
  .p-home-how {
    padding: 0px;
  }
}
.p-home-how .l-inner {
  padding: 0 0 135px;
}
@media screen and (max-width: 768px) {
  .p-home-how .l-inner {
    padding: 0 0 90px;
  }
}
.p-home-how__bg {
  background: #f3e9cd;
  border-radius: 0px 0px 244px 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  height: 89%;
  opacity: 0.29;
}
@media screen and (max-width: 1140px) {
  .p-home-how__bg {
    height: 95%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-home-how__bg {
    border-radius: 0px 0px 140px 0px;
    width: 96%;
    height: 97%;
  }
}
.p-home-how__en {
  color: rgba(0, 162, 122, 0.15);
  top: 3%;
  right: 0;
}
.p-home-how__title {
  font-size: clamp(20px, 2vw, 40px);
  line-height: 1.25;
  padding: 90px 0 37px;
}
@media screen and (max-width: 768px) {
  .p-home-how__title {
    padding: 70px 0 37px;
  }
}
.p-home-how__title .green {
  color: #00a279;
}
.p-home-how__title .fs29 {
  font-size: clamp(16px, 1.5vw, 29px);
}
.p-home-how__flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin: 50px auto 0;
  gap: 0 13%;
}
@media screen and (max-width: 768px) {
  .p-home-how__flex {
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}
.p-home-how__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-home-how__item--image {
  aspect-ratio: 350/270;
}
.p-home-how__item--image img {
  width: 100%;
  height: 100%;
}
.p-home-how__item--text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.p-home-how__item--title {
  text-align: center;
  margin: 15px 0 10px;
  font-weight: bold;
  font-size: 23px;
  color: #00a279;
}
.p-home-how__item--detail {
  line-height: 1.75;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .p-home-how__image {
    margin: 0px 0 37px;
  }
  .p-home-how__subtitle {
    font-weight: bold;
    font-size: 16px;
  }
  .p-home-how__detail {
    margin: 0 0 30px;
  }
}

.p-home-strengths {
  background: #fff;
  position: relative;
}
.p-home-strengths__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 92%;
  height: 100%;
  border-radius: 244px 0px 244px 0px;
  overflow: hidden;
  background: url(../img/home/strengths-bg02.png) no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 1140px) {
  .p-home-strengths__bg {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-home-strengths__bg {
    border-radius: 140px 0px 140px 0px;
    width: 96%;
  }
}
.p-home-strengths__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 20%;
  background: url(../img/home/strengths-bg01.png) no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .p-home-strengths__bg::before {
    height: 14%;
  }
}
.p-home-strengths__bg::after {
  content: "5";
  position: absolute;
  bottom: 3%;
  right: 22%;
  font-size: clamp(240px, 46vw, 639px);
  font-weight: bold;
  line-height: 1;
  color: #fff;
  opacity: 0.64;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 1140px) {
  .p-home-strengths__bg::after {
    right: 9%;
  }
}
@media screen and (max-width: 768px) {
  .p-home-strengths__bg::after {
    right: 11%;
  }
}
.p-home-strengths__en {
  color: #fff;
  opacity: 0.15;
  font-size: clamp(40px, 4.1vw, 80px);
  top: 10%;
  left: 0;
}
.p-home-strengths__title {
  font-size: clamp(20px, 2vw, 40px);
  padding: 85px 0 70px;
  color: #f6ecd0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-strengths__title {
    padding: 70px 0 35px;
  }
}
.p-home-strengths__list {
  width: 78.4%;
  margin: 0 auto;
  padding: 0 0 338px;
}
@media screen and (max-width: 768px) {
  .p-home-strengths__list {
    width: 82.4%;
    padding: 0 0 170px;
  }
}
.p-home-strengths__item {
  display: flex;
  align-items: flex-start;
  gap: 0 7px;
  margin: 0 0 25px;
}
.p-home-strengths__item .number {
  color: #f6ecd0;
  font-size: clamp(20px, 2vw, 40px);
  font-weight: bold;
  line-height: 1;
}
.p-home-strengths__item .title {
  color: #f6ecd0;
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: bold;
  line-height: 1;
  margin: 0 0 10px;
}
.p-home-strengths__item .detail {
  color: #fff;
  line-height: 1.5;
}

.p-home-support {
  background: #fff;
  position: relative;
  padding: 114px 0 0;
}
@media screen and (max-width: 768px) {
  .p-home-support {
    padding: 60px 0 0;
  }
}
.p-home-support__bg {
  position: absolute;
  top: 114px;
  left: 0;
  width: 92%;
  height: 100%;
  border-radius: 0px 244px 0px 0px;
  overflow: hidden;
  background: #fcf9f0;
}
@media screen and (max-width: 1140px) {
  .p-home-support__bg {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-home-support__bg {
    top: 60px;
    border-radius: 0px 140px 0px 0px;
    width: 96%;
  }
}
.p-home-support__title {
  font-size: clamp(20px, 2vw, 40px);
  padding: 85px 0 35px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-support__title {
    padding: 70px 0 35px;
  }
}
.p-home-support__en {
  writing-mode: horizontal-tb;
  color: #00a279;
  top: 0%;
  left: 0;
  opacity: 0.3;
  font-size: clamp(40px, 4.1vw, 80px);
}
.p-home-support__wrap {
  display: flex;
  margin: 0 0 60px;
}
@media screen and (max-width: 768px) {
  .p-home-support__wrap {
    flex-direction: column;
    gap: 50px 0;
  }
}
.p-home-support__left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-home-support__left {
    width: 100%;
  }
}
.p-home-support__left--inner {
  width: 80%;
  margin: 0 auto;
}
.p-home-support__right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-home-support__right {
    width: 100%;
  }
}
.p-home-support__right--inner {
  width: 77.9%;
  padding: 0 0 0px 11%;
  border-left: solid 1px #727171;
}
@media screen and (max-width: 768px) {
  .p-home-support__right--inner {
    border: none;
    width: 80%;
    padding: 0;
    margin: 0 auto;
  }
}
.p-home-support__right--inner .btn01 {
  margin: 36px 0 0px;
}
@media screen and (max-width: 768px) {
  .p-home-support__right--inner .btn01 {
    margin: 20px auto 0px;
  }
}
.p-home-support__right--item {
  position: relative;
  padding: 0 0 0 13px;
  margin: 0 0 27px 0;
  font-size: clamp(16px, 1vw, 20px);
}
@media screen and (max-width: 768px) {
  .p-home-support__right--item {
    margin: 0 0 25px 0;
  }
}
.p-home-support__right--item span {
  border-bottom: solid 3px #f3e9cd;
  border-left: solid 13px #f3e9cd;
  padding: 0 7px 2px 11px;
  white-space: nowrap;
}
.p-home-support__right--btn.btn01 a {
  background: #00a279;
  border: solid 1px #00a279;
  color: #252928;
}
.p-home-support__right--btn.btn01 a:hover {
  border: solid 1px #00a279;
}
.p-home-support__subtitle {
  font-size: clamp(18px, 1.25vw, 24px);
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .p-home-support__subtitle {
    margin: 0 0 25px;
  }
}
.p-home-support__heading {
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1;
  margin: 10px 0;
  color: #fff;
}
.p-home-support__text {
  line-height: 1.6;
  margin: 0 0 50px;
}
.p-home-support__text.tabashira {
  margin: 50px 0 0px;
}
@media screen and (max-width: 768px) {
  .p-home-support__text {
    margin: 0 0 25px;
  }
}
.p-home-support__btn-area {
  margin: 0 auto 30px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .p-home-support__btn-area {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.p-home-support .btn01.tabashira {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .p-home-support .btn01.tabashira {
    margin: 0;
  }
}
.p-home-support .btn01.btn-long {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .p-home-support .btn01.btn-long {
    margin: 0;
  }
}
.p-home-support__slider {
  background: #fff;
  position: relative;
}
.p-home-support__slider--wrap {
  overflow: hidden;
  width: 92%;
  border-radius: 0px 0px 0px 244px;
}
@media screen and (max-width: 1140px) {
  .p-home-support__slider--wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-home-support__slider--wrap {
    width: 96%;
    border-radius: 0px 0px 0px 140px;
  }
}

.p-home-case {
  background: #fff;
  position: relative;
  padding: 30px 0 0;
}
.p-home-case__title {
  font-size: clamp(20px, 2vw, 40px);
  padding: 85px 0 20px;
  color: #00a279;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-case__title {
    padding: 50px 0 35px;
  }
}
.p-home-case__en {
  color: #18aa86;
  top: 4%;
  left: 0;
  opacity: 0.15;
  font-size: clamp(50px, 5.2vw, 100px);
}
.p-home-case__map {
  width: 74.8%;
  margin: 0 auto;
  position: relative;
}
.p-home-case__map img {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-home-case__map img {
    width: 100%;
    padding-top: 150px;
  }
}
.p-home-case__map--text {
  background: #00a279;
  color: #fff;
  border-radius: 0px 0px 43px 0px;
  position: absolute;
  top: 25px;
  left: 0;
  padding: 28px 19px;
  width: 33%;
}
@media screen and (max-width: 768px) {
  .p-home-case__map--text {
    top: 0px;
    left: 0;
    padding: 17px 9px;
    width: 98%;
  }
}
.p-home-case__map--title {
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin: 0 0 12px;
}
.p-home-case__map--detail {
  font-size: 12px;
}
.p-home-case__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 1%;
  margin: 40px 0 70px;
}
@media screen and (max-width: 768px) {
  .p-home-case__grid {
    grid-template-columns: 1fr 1fr;
    margin: 50px 0 35px;
    gap: 30px 1%;
  }
}
.p-home-case__item {
  color: #252928;
}
.p-home-case__item--title {
  font-weight: bold;
  line-height: 1;
  margin: 27px 0px 7px 30px;
}
@media screen and (max-width: 768px) {
  .p-home-case__item--title {
    margin: 13px 0px 4px 15px;
  }
}
.p-home-case__item--detail {
  font-size: 12px;
  margin: 0 0 0 30px;
}
@media screen and (max-width: 768px) {
  .p-home-case__item--detail {
    margin: 0 0 0 15px;
  }
}
.p-home-case__image {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-home-case__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.p-home-case a:hover .p-home-case__image img {
  transform: scale(1.1, 1.1);
}

.p-home-news {
  background: #fff;
  padding: 0 0 60px;
}
.p-home-news__title {
  font-size: clamp(20px, 2vw, 40px);
  padding: 100px 0 50px;
}
@media screen and (max-width: 768px) {
  .p-home-news__title {
    padding: 50px 0 25px;
  }
}
.p-home-news__en {
  color: #252928;
  opacity: 0.15;
  font-size: clamp(50px, 5.2vw, 100px);
  right: 0;
  top: 5%;
}
.p-home-news__list {
  width: 85.9%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .p-home-news__list {
    margin: 0 auto 50px;
  }
}
.p-home-news__item {
  padding: 20px 0 10px;
  border-bottom: solid 1px #e6e6e6;
}
.p-home-news__item a span {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: linear-gradient(90deg, #252928, #252928); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.6s; /* 線を伸ばすアニメーション実行時間を指定 */
}
.p-home-news__item a:hover span {
  background-size: 100% 1px; /* 線の横幅を100%にする */
}
.p-home-news__item .day {
  color: #00a279;
  line-height: 1;
  margin: 0 0 25px;
}
.p-home-news__item .ttl {
  font-size: clamp(16px, 1vw, 20px);
  font-weight: bold;
  line-height: 1.4;
}

.p-home-bnrarea {
  background: #fff;
  padding: 20px 0 80px;
}
.p-home-bnrarea .bnr {
  margin: 0px auto 70px;
}
@media screen and (max-width: 768px) {
  .p-home-bnrarea .bnr {
    margin: 0px auto 35px;
  }
}
.p-home-bnrarea .bnr a {
  display: block;
  overflow: hidden;
  border-radius: 33px;
}
.p-home-bnrarea .bnr a img {
  transition: all 0.4s;
}
.p-home-bnrarea .bnr a:hover img {
  transform: scale(1.05, 1.05);
}
.p-home-bnrarea .bnr02 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 10px 45px;
}
@media screen and (max-width: 768px) {
  .p-home-bnrarea .bnr02 a {
    padding: 10px;
  }
}
.p-home-bnrarea .bnr02 a:hover {
  opacity: 0.7;
}
.p-home-bnrarea .bnr02 a:hover img {
  opacity: 1;
}
.p-home-bnrarea .bnr02 img {
  width: 36%;
}
.p-home-bnrarea .bnr02 .youtube {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-home-bnrarea .bnr02 .youtube {
    width: 60%;
  }
}
.p-home-bnrarea .bnr02 .youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
  pointer-events: none;
}

.page-template-asean .p-asean {
  margin-top: 0 !important;
}
.page-template-asean header {
  display: none;
}
.page-template-asean .p-home__contact {
  display: none;
}
.page-template-asean footer {
  display: none;
}

.page-template-australia .p-asean {
  margin-top: 0 !important;
}
.page-template-australia header {
  display: none;
}
.page-template-australia .p-home__contact {
  display: none;
}
.page-template-australia footer {
  display: none;
}

.visionBnr {
  background: #fff;
  position: fixed;
  top: 17%;
  right: 0;
  transition: 1s;
}
@media screen and (max-width: 1140px) {
  .visionBnr {
    top: unset;
    bottom: 20px;
    right: unset;
    left: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .visionBnr {
    width: 200px;
  }
}
.visionBnr.hidden {
  right: -400px;
}
@media screen and (max-width: 768px) {
  .visionBnr.hidden {
    right: unset;
    bottom: 20px;
    left: -230px;
  }
}
.visionBnr a {
  display: block;
}
.visionBnr a img {
  width: 100%;
}
@media screen and (max-width: 1140px) {
  .visionBnr a img.pc-only {
    display: none;
  }
}

.p-home-visionBnr {
  background: #fff;
  padding: 60px 0;
  position: relative;
}
.p-home-visionBnr a {
  display: block;
}
.p-home-visionBnr img {
  width: 100%;
}

/* p-contact
--------------------------- */
.c-mainv.c-mainv--company::before {
  background: url(../img/company/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}

.p-company-message {
  position: relative;
  padding: 60px 0 30px;
}
@media screen and (max-width: 768px) {
  .p-company-message {
    padding: 60px 0 100px;
  }
}
.p-company-message::after {
  position: absolute;
  content: "";
  bottom: 0%;
  right: 9%;
  width: 20.5%;
  height: 61%;
  max-width: 305px;
  max-height: 486px;
  background: url(../img/company/ceo.png) no-repeat center bottom;
  background-size: contain;
}
@media screen and (max-width: 1500px) {
  .p-company-message::after {
    width: 18.5%;
  }
}
@media screen and (max-width: 1270px) {
  .p-company-message::after {
    right: 3%;
  }
}
@media screen and (max-width: 1140px) {
  .p-company-message::after {
    width: 20.5%;
    right: 0%;
  }
}
@media screen and (max-width: 768px) {
  .p-company-message::after {
    bottom: 18%;
  }
}
@media screen and (max-width: 414px) {
  .p-company-message::after {
    bottom: 20%;
  }
}
@media screen and (max-width: 390px) {
  .p-company-message::after {
    bottom: 19%;
  }
}
@media screen and (max-width: 375px) {
  .p-company-message::after {
    bottom: 18%;
  }
}
@media screen and (max-width: 768px) {
  .p-company-message::after {
    width: 34.5%;
    right: 3%;
    max-width: 160px;
  }
}
.p-company-message__bg {
  position: absolute;
  top: 0;
  right: 0;
  background: #f3e9cd;
  border-radius: 0px 0px 0px 300px;
  width: 92%;
  height: 100%;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .p-company-message__bg {
    width: 96%;
    border-radius: 0px 0px 0px 140px;
  }
}
.p-company-message__en {
  right: unset;
  left: 0;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 0.5;
}
.p-company-message__title {
  max-width: 730px;
  margin: 0 20.8% 27px 7.8vw;
  text-align: left;
  font-size: clamp(20px, 2vw, 40px);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-company-message__title {
    margin: 0 2.8% 27px 18.8vw;
  }
}
.p-company-message__lead {
  max-width: 730px;
  margin: 0 20.8% 27px 7.8vw;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: bold;
  line-height: 1.4;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-company-message__lead {
    margin: 0 2.8% 27px 18.8vw;
    font-size: 16px;
  }
}
.p-company-message__text {
  max-width: 730px;
  margin: 0 20.8% 0 7.8vw;
  line-height: 1.5;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-company-message__text {
    margin: 0 2.8% 27px 18.8vw;
    font-size: 16px;
  }
}
.p-company-message__ceo {
  max-width: 730px;
  margin: 60px 20.8% 0 7.8vw;
  text-align: right;
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 1140px) {
  .p-company-message__ceo {
    margin: 105px 20.8% 0 7.8vw;
  }
}
@media screen and (max-width: 768px) {
  .p-company-message__ceo {
    font-size: 13px;
    margin: 45px 2.8% 15px 18.8vw;
    text-align: left;
  }
}
.p-company-message__ceo--profile {
  max-width: 350px;
  margin: 11px 20.8% 0 auto;
  line-height: 1.25;
  text-align: left;
  font-size: 12px;
}
@media screen and (max-width: 1140px) {
  .p-company-message__ceo--profile {
    margin: 11px 20.8% 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-company-message__ceo--profile {
    margin: 70px 2.8% 15px 18.8vw;
    text-align: left;
    max-width: unset;
  }
}
.p-company-message__image {
  max-width: 730px;
  margin: 0 20.8% 0 7.8vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company-message__image {
    margin: 0px 2.8% 0px 18.8vw;
  }
}
.p-company-message__image img {
  width: 27%;
  max-width: 200px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-company-message__image img {
    width: 37%;
    margin: 0 0 0 0;
  }
}

.p-company-mvv {
  padding: 170px 0 0;
}
@media screen and (max-width: 768px) {
  .p-company-mvv {
    padding: 80px 0 0;
  }
}
.p-company-mvv__subtitle {
  position: relative;
  z-index: 2;
  width: 40%;
  background: #a6d401;
  font-size: clamp(25px, 2.6vw, 50px);
  color: #000;
  padding: 10px;
  line-height: 1;
  text-align: right;
  font-family: "Oswald", sans-serif;
  transform: scale(0, 1);
  transform-origin: left top; /*左上基点*/
  transition: all 0.6s;
}
.p-company-mvv__subtitle.active {
  transform: scale(1, 1);
}
.p-company-mvv__subtitle.vision {
  background: #18aa86;
}
.p-company-mvv__subtitle.value {
  background: #f3e9cd;
}
.p-company-mvv__subtitle span {
  mix-blend-mode: overlay;
}
.p-company-mvv__box {
  max-width: 800px;
  margin: -20px auto 25px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 28px;
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
}
@media screen and (max-width: 1140px) {
  .p-company-mvv__box {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .p-company-mvv__box {
    width: 90%;
    padding: 22px 6px;
  }
}
.p-company-mvv__box.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.p-company-mvv__box.vision {
  padding: 28px 7px;
}
.p-company-mvv__lead {
  color: #18aa86;
  text-align: center;
  font-size: clamp(18px, 2vw, 34px);
  line-height: 1.5;
}
.p-company-mvv__text {
  text-align: center;
  font-size: clamp(15px, 2vw, 24px);
  margin: 10px 0;
  line-height: 1.45;
}
.p-company-mvv__detail {
  position: relative;
  padding: 27px 0;
  margin: 50px auto 0;
}
.p-company-mvv__detail--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 92%;
  height: 100%;
  background: linear-gradient(89deg, #a6d401 5.7%, #18aa86 42.49%, #e4ddab 93.64%);
  border-radius: 0px 0px 200px 0px;
  z-index: -1;
}
@media screen and (max-width: 1140px) {
  .p-company-mvv__detail--bg {
    border-radius: 0px 0px 140px 0px;
  }
}
@media screen and (max-width: 768px) {
  .p-company-mvv__detail--bg {
    width: 96%;
    border-radius: 0px 0px 70px 0px;
  }
}
.p-company-mvv__detail p {
  width: 68%;
  max-width: 1024px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 37px 7%;
  line-height: 1.7;
  border-radius: 10px;
}
@media screen and (max-width: 1140px) {
  .p-company-mvv__detail p {
    padding: 37px 4%;
  }
}
@media screen and (max-width: 768px) {
  .p-company-mvv__detail p {
    width: 82%;
    padding: 18px 3%;
  }
}

.p-company-info {
  background: #18aa86;
  margin: 100px 0 0;
  position: relative;
  z-index: 0;
  padding: 115px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-company-info {
    margin: 50px 0 0;
    padding: 45px 0 80px;
  }
}
.p-company-info__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 92%;
  height: 100%;
  border-radius: 0px 0px 0px 300px;
  overflow: hidden;
  background: url(../img/company/info-bg02.jpg) no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 1140px) {
  .p-company-info__bg {
    border-radius: 0px 0px 0px 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-company-info__bg {
    width: 95%;
    background: url(../img/company/info-bg02-sp.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 0px 0px 0px 90px;
  }
}
.p-company-info__text table {
  width: 68%;
  max-width: 1024px;
  margin: 0 auto;
  border: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  .p-company-info__text table {
    width: 82%;
  }
}
.p-company-info__text th,
.p-company-info__text td {
  font-size: clamp(13px, 1vw, 20px);
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  text-align: left;
  padding: 10px 0;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  .p-company-info__text th,
  .p-company-info__text td {
    display: block;
    width: 100%;
  }
}
.p-company-info__text tr:last-of-type th,
.p-company-info__text tr:last-of-type td {
  border-bottom: none;
}
.p-company-info__text th {
  width: 25%;
  padding: 10px 15px 10px 4%;
}
@media screen and (max-width: 768px) {
  .p-company-info__text th {
    width: 100%;
    padding: 10px 10px 0;
    border: none;
    text-decoration: underline;
  }
}
.p-company-info__text td {
  width: 75%;
}
.p-company-info__text td .notel {
  color: #fff;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-company-info__text td {
    width: 100%;
    padding: 0 10px 10px;
    font-weight: 400;
  }
}

.p-company-bnr {
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-company-bnr {
    margin: 50px 0;
  }
}

.p-company-chart__en {
  color: #18aa86;
  opacity: 0.5;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.p-company-chart__image {
  max-width: 830px;
  margin: 0 auto;
}

.p-company-global .p-home-news__title {
  position: relative;
  z-index: 3;
}
.p-company-global__en {
  color: #18aa86;
  opacity: 0.5;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.p-company-global__image {
  background: #333;
  border-radius: 30px;
  padding: 30px;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-company-global__image {
    border-radius: 15px;
    padding: 10px;
    width: 100%;
  }
}

.p-company-coo .p-home-sec__title {
  padding: 100px 0 25px;
}
@media screen and (max-width: 768px) {
  .p-company-coo .p-home-sec__title {
    padding: 50px 0 25px;
  }
}
.p-company-coo__flex {
  display: flex;
  gap: 0 9%;
  align-items: center;
  justify-content: space-between;
  max-width: 830px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-company-coo__flex {
    flex-direction: column;
    gap: 20px 0;
  }
}
.p-company-coo__flex--image {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .p-company-coo__flex--image {
    max-width: 150px;
  }
}
.p-company-coo__flex--image img {
  width: 100%;
}
.p-company-coo__flex--text {
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.p-company-coo__flex--text .title {
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-company-coo__flex--text .title {
    font-size: 15px;
    margin: 0 0 10px;
  }
}
.p-company-coo__flex--text .title .bold {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-company-coo__flex--text .title .bold {
    font-size: 16px;
  }
}
.p-company-coo__flex--text .detail {
  font-size: 14px;
}

/* p-contact
--------------------------- */
.c-mainv.c-mainv--contact::before {
  background: url(../img/contact/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
.c-mainv.c-mainv--contact .c-mainv__title {
  white-space: nowrap;
}

.c-mainv.c-mainv--contactdone::before {
  background: url(../img/contact/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
.c-mainv.c-mainv--contactdone .c-mainv__title {
  white-space: nowrap;
}

.p-contact textarea, .p-contact .wpcf7-text {
  border: solid 1px #252928;
  padding: 17px 18px 13px;
  width: 100%;
}
.p-contact table {
  width: 100%;
  margin: 80px 0 0;
}
.p-contact th {
  vertical-align: middle;
  width: 35%;
}
.p-contact th span {
  font-size: 11px;
  line-height: 1;
  color: #fff;
  background: #00a279;
  border-radius: 20px;
  padding: 3px 7px;
  margin: 0 0 0 5px;
}
.p-contact td {
  padding: 15px 0;
}
.p-contact .submit {
  text-align: center;
  margin: 40px 0 0;
}
.p-contact .submit .wpcf7-submit {
  background: #00a279;
  color: #fff;
  border-radius: 30px;
  line-height: 1;
  padding: 15px 20px;
  display: inline-block;
  width: 200px;
  border: solid 2px #00a279;
}
.p-contact .submit .wpcf7-submit:hover {
  background: #fff;
  color: #00a279;
}
.p-contact .submit .wpcf7-spinner {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .p-contact th, .p-contact td {
    display: block;
    width: 100%;
  }
}

/* p-home
--------------------------- */
/* p-contact
--------------------------- */
/* p-contact
--------------------------- */
.page-template-news {
  counter-reset: rank_number;
}

@media screen and (max-width: 768px) {
  .p-news-single {
    padding-top: 50px;
  }
}

.c-mainv.c-mainv--news::before {
  background: url(../img/news/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}

.p-news__wrap {
  width: 62.5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 0 5%;
  justify-content: space-between;
}
@media screen and (max-width: 1140px) {
  .p-news__wrap {
    width: 92%;
  }
}
@media screen and (max-width: 768px) {
  .p-news__wrap {
    flex-direction: column;
    width: 92%;
    gap: 60px 0;
  }
}
.p-news__wrap .contents {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-news__wrap .contents {
    margin-bottom: 30%;
  }
}
.p-news__wrap .jquery-tab-pager-tabbar {
  display: flex;
  border-bottom: solid 1px #4c4c4c;
  margin: 0 0 30px;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .p-news__wrap .jquery-tab-pager-tabbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-news__wrap .jquery-tab-pager-tabbar li {
  float: unset;
  background: none;
  border-radius: 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  align-items: center;
  padding: 10px 0;
  transition: all 0.4s;
}
.p-news__wrap .jquery-tab-pager-tabbar li:hover {
  opacity: 0.6;
}
.p-news__wrap .jquery-tab-pager-tabbar li.current {
  background: none;
}
@media screen and (max-width: 768px) {
  .p-news__wrap .jquery-tab-pager-tabbar li {
    padding: 5px 10px;
  }
}
.p-news__wrap .jquery-tab-pager-tabbar .icon {
  display: block;
  width: 20px;
  height: 20px;
}
.p-news__wrap .jquery-tab-pager-tabbar .icon.icon01 {
  background: url(../img/news/icon01.svg) no-repeat center center;
  background-size: contain;
}
.p-news__wrap .jquery-tab-pager-tabbar .icon.icon02 {
  background: url(../img/news/icon02.svg) no-repeat center center;
  background-size: contain;
}
.p-news__wrap .jquery-tab-pager-tabbar .icon.icon03 {
  background: url(../img/news/icon03.svg) no-repeat center center;
  background-size: contain;
}
.p-news__wrap .jquery-tab-pager-tabbar .icon.icon04 {
  background: url(../img/news/icon04.svg) no-repeat center center;
  background-size: contain;
}
.p-news__wrap .jquery-tab-pager-tabbar .icon.icon05 {
  background: url(../img/news/icon05.svg) no-repeat center center;
  background-size: contain;
}

.p-news__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5% 60px;
}
@media screen and (max-width: 768px) {
  .p-news__list {
    grid-template-columns: 1fr 1fr;
    gap: 5% 20px;
  }
}

.p-news__left {
  width: 71.6%;
}
@media screen and (max-width: 768px) {
  .p-news__left {
    width: 100%;
  }
}

.p-news__right {
  flex: 1;
  margin-top: 15px;
}

.p-news__thumbnail {
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-news__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.p-news__data {
  margin-bottom: 60px;
  color: #cccccc;
}
@media screen and (max-width: 768px) {
  .p-news__data {
    margin-bottom: 50px;
  }
}
.p-news__item a:hover .p-news__thumbnail img {
  transform: scale(1.1, 1.1);
}
.p-news__item .cat {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.p-news__item .cat span {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.p-news__item .cat span.topics {
  background: url(../img/news/icon02.svg) no-repeat center center;
  background-size: contain;
}
.p-news__item .cat span.interview {
  background: url(../img/news/icon03.svg) no-repeat center center;
  background-size: contain;
}
.p-news__item .cat span.ir {
  background: url(../img/news/icon04.svg) no-repeat center center;
  background-size: contain;
}
.p-news__item .cat span.pressrelease {
  background: url(../img/news/icon05.svg) no-repeat center center;
  background-size: contain;
}
.p-news__text .ttl {
  line-height: 1.4;
}

.p-news__ranking .wpp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
.p-news__ranking .wpp-list a:first-of-type {
  width: 50%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-news__ranking .wpp-list a:first-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.p-news__ranking .wpp-list a:last-of-type {
  flex: 1;
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-news__ranking .wpp-list a:last-of-type {
    margin: 10px 0 0;
  }
}
.p-news__ranking .wpp-list a:hover img {
  transform: scale(1.1, 1.1);
}
.p-news__ranking--item {
  margin: 0 0 20px;
}
.p-news__ranking--item a {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
}
.p-news__ranking--item a:hover .p-news__ranking--thumbnail img {
  transform: scale(1.1, 1.1);
}
.p-news__ranking--thumbnail {
  width: 50%;
  aspect-ratio: 5/3;
  overflow: hidden;
}
.p-news__ranking--thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.p-news__ranking--title {
  border-bottom: solid 1px #4c4c4c;
  margin-bottom: 10px;
}
.p-news__ranking--text {
  flex: 1;
}
.p-news__ranking--text .ttl {
  font-size: 13px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-news__ranking--text .ttl {
    margin: 10px 0 0;
  }
}
.p-news__ranking .number {
  width: 30px;
  height: 30px;
  background: url(../img/news/ranking.svg) no-repeat center center;
  background-size: contain;
  position: relative;
}
.p-news__ranking .number::after {
  counter-increment: rank_number;
  content: counter(rank_number);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  color: white;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  flex-direction: column;
  justify-content: flex-end;
}

#jquery-tab-pager-navi {
  overflow: unset;
}
#jquery-tab-pager-navi li a {
  padding: 0 40px 5px;
  background: none !important;
  border: none;
  transition: all 0.3s;
}
#jquery-tab-pager-navi li a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
#jquery-tab-pager-navi li a.previos::before {
  background: url(../img/news/arrow-prev.svg) no-repeat center center;
  background-size: contain;
}
#jquery-tab-pager-navi li a.next::before {
  background: url(../img/news/arrow-next.svg) no-repeat center center;
  background-size: contain;
}
#jquery-tab-pager-navi li a.current {
  color: #18aa86;
}
#jquery-tab-pager-navi li a:hover {
  opacity: 0.6;
}
#jquery-tab-pager-navi li a:hover.previos::before {
  transform: translateX(-10px);
}
#jquery-tab-pager-navi li a:hover.next::before {
  transform: translateX(10px);
}

.l-single .cat-wrap {
  display: inline-block;
  border-radius: 10px;
  background: #18aa86;
  padding: 5px 10px;
}
.l-single .cat {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  gap: 0 6px;
}
.l-single .cat span {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.l-single .cat span.topics {
  background: url(../img/news/icon02-wh.svg) no-repeat center center;
  background-size: contain;
}
.l-single .cat span.interview {
  background: url(../img/news/icon03-wh.svg) no-repeat center center;
  background-size: contain;
}
.l-single .cat span.ir {
  background: url(../img/news/icon04-wh.svg) no-repeat center center;
  background-size: contain;
}
.l-single .cat span.pressrelease {
  background: url(../img/news/icon05-wh.svg) no-repeat center center;
  background-size: contain;
}
.l-single__inner {
  width: 87.8%;
  margin: 0 auto;
}
.l-single__heading {
  font-size: clamp(18px, 1.8vw, 35px);
  border-bottom: solid 5px #18aa86;
  letter-spacing: 3.5px;
  line-height: 1.7;
  margin: 15px 0 45px;
}
.l-single .p-news__thumbnail {
  margin: 0 0 40px;
}
.l-single .p-news__thumbnail img {
  width: 100%;
  aspect-ratio: 1311/737;
  object-fit: cover;
}
.l-single h2:not(.l-single__heading) {
  font-size: clamp(16px, 1.45vw, 28px);
  color: #18aa86;
  font-weight: bold;
  margin: 0 0 23px;
}
.l-single h3 {
  font-size: clamp(16px, 1.45vw, 28px);
  border-left: solid 10px #18aa86;
  padding: 0 0 0 5px;
  margin: 0 0 23px;
}
.l-single p:not(.cat) {
  margin: 2em auto;
}
.l-single p:not(.cat) img {
  margin: 30px auto;
}

/* p-contact
--------------------------- */
/* p-contact
--------------------------- */
#sitemap .underline {
  background-image: linear-gradient(90deg, #252928, #252928);
}

.p-company-detail {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-company-detail {
    flex-wrap: wrap;
  }
}

.p-company-thumbnail {
  width: 50%;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .p-company-thumbnail {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.p-company-text--right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-company-text--right {
    width: 100%;
  }
}
.p-company-text__heading {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .p-company-text__heading {
    font-size: 18px;
  }
}

.p-company-map {
  background: #cccccc;
  height: 300px;
}

/* p-contact
--------------------------- */
.c-mainv.c-mainv--case-study::before {
  background: url(../img/case/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
.c-mainv.c-mainv--case-study .c-mainv__title {
  white-space: nowrap;
}

.p-case-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 4%;
}
@media screen and (max-width: 768px) {
  .p-case-list__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.p-case-list__thumbnail {
  aspect-ratio: 5/3;
}
.p-case-list__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-case {
  overflow: hidden;
}
.p-case #l-single {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .p-case #l-single {
    padding-bottom: 100px;
  }
}
.p-case__top {
  position: relative;
  padding: 105px 0 80px;
  margin: 0 0 100px;
}
@media screen and (max-width: 768px) {
  .p-case__top {
    padding: 50px 0 90px;
    width: 90%;
    margin: 0 auto 60px;
  }
}
.p-case__top::before {
  position: absolute;
  content: "";
  top: 0;
  right: -50vw;
  left: -15%;
  height: 100%;
  border-radius: 0px 0px 0px 237px;
  background: #fcf9f0;
  z-index: -1;
}
@media screen and (max-width: 1140px) {
  .p-case__top::before {
    left: -2%;
    border-radius: 0 0 0 140px;
  }
}
@media screen and (max-width: 768px) {
  .p-case__top::before {
    border-radius: 0px 0px 0px 110px;
    left: -6%;
  }
}
.p-case__cat {
  display: flex;
  gap: 5px 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-case__cat {
    gap: 5px 10px;
  }
}
.p-case__cat span {
  background: #18aa86;
  color: #fff;
  display: inline-block;
  line-height: 1;
  padding: 10px 29px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .p-case__cat span {
    padding: 8px 19px;
  }
}
.p-case__title {
  font-size: clamp(18px, 1.8vw, 35px);
  border-bottom: solid 5px #18aa86;
  line-height: 1.7;
  margin: 30px 0 40px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-case__title {
    margin: 25px 0 40px;
    flex-direction: column;
    align-items: baseline;
  }
}
.p-case__flex {
  display: flex;
  gap: 0 6%;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .p-case__flex {
    flex-direction: column;
    gap: 20px 0;
  }
}
.p-case__thumbnail {
  overflow: hidden;
  border-radius: 40px 0px;
  width: 40%;
  border-radius: 40px 0px;
}
@media screen and (max-width: 768px) {
  .p-case__thumbnail {
    width: 100%;
  }
}
.p-case__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 40px 0;
  aspect-ratio: 12/7;
}
.p-case__right {
  flex: 1;
}
.p-case__logo {
  height: 70px;
}
.p-case__logo img {
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-case__logo {
    height: 60px;
  }
}
.p-case__list {
  line-height: 1.8;
  letter-spacing: 1.6px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-case__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.p-case__list dt {
  font-weight: bold;
  width: 15%;
  text-align: justify;
  text-align-last: justify;
}
@media screen and (max-width: 768px) {
  .p-case__list dt {
    text-align: unset;
    text-align-last: unset;
    width: 100%;
  }
}
.p-case__list dd {
  width: 85%;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-case__list dd {
    width: 100%;
    text-indent: 0em;
    padding-left: 0em;
  }
}
.p-case__list dd a {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.p-case__outline {
  font-weight: 500;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-case__outline {
    line-height: 1.6;
  }
}
.p-case__heading {
  font-size: clamp(18px, 1.04vw, 24px);
  display: inline-block;
  border-bottom: solid 3px #00a27a;
  font-weight: 500;
  line-height: 1.5;
}
.p-case__step {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 4%;
  margin: 20px 0 55px;
}
@media screen and (max-width: 768px) {
  .p-case__step {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }
}
.p-case__box {
  border-radius: 40px 0px;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.25);
  min-height: 285px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-case__box {
    min-height: 150px;
  }
}
.p-case__box::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 7%;
  width: 60px;
  height: 60px;
  background: url(../img/case/arrow01.svg) no-repeat center center;
  background-size: contain;
  transform: translate(60px, -30px);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-case__box::after {
    top: 104%;
    right: 50%;
    transform: translate(30px, -30px) rotate(90deg);
  }
}
.p-case article:nth-of-type(even) .p-case__box::after {
  background: url(../img/case/arrow02.svg) no-repeat center center;
  background-size: contain;
}
.p-case article:nth-of-type(even) .p-case__heading {
  border-bottom: solid 3px #a6d401;
}
.p-case article:nth-of-type(even) .p-case__subtitle {
  background: #a6d401;
}
.p-case article div:last-of-type::after {
  content: none;
}
.p-case__subtitle {
  width: 200px;
  padding: 18px 40px;
  border-radius: 40px 0px;
  color: #fff;
  background: #00a27a;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-case__subtitle {
    width: 150px;
    padding: 18px 30px;
  }
}
.p-case__box-text {
  width: 80%;
  margin: 35px auto 30px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-case__box-text {
    margin: 20px auto 25px;
  }
}

.p-case__voice {
  position: relative;
  color: #fff;
  margin: 120px 0;
}
@media screen and (max-width: 768px) {
  .p-case__voice {
    margin: 60px 0;
  }
}
.p-case__voice .l-inner {
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .p-case__voice .l-inner {
    padding-right: 5%;
  }
}
.p-case__voice--bg {
  position: absolute;
  top: 0;
  left: 0;
  background: #00a27a;
  border-radius: 0px 0px 140px 0px;
  width: 92%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-case__voice--bg {
    width: 96%;
    border-radius: 0px 0px 70px 0px;
  }
}
.p-case__voice--title {
  font-size: clamp(18px, 1.04vw, 24px);
  font-weight: 500;
  padding: 37px 0;
}
@media screen and (max-width: 768px) {
  .p-case__voice--title {
    padding: 25px 0;
  }
}
.p-case__voice--flex {
  display: flex;
  gap: 0 4%;
  padding: 0 0 70px;
}
@media screen and (max-width: 768px) {
  .p-case__voice--flex {
    flex-direction: column;
    gap: 20px 0;
    padding: 0 0 50px;
  }
}
.p-case__voice--image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-case__voice--image {
    width: 100%;
  }
}
.p-case__voice--image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 10/7;
}
.p-case__voice--text {
  flex: 1;
  font-size: clamp(16px, 0.9vw, 18px);
  line-height: 1.4;
}

/* p-sercive
--------------------------- */
.c-mainv.c-mainv--service::before {
  background: url(../img/service/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
.c-mainv.c-mainv--service .c-mainv__title {
  white-space: nowrap;
}

.service {
  overflow: hidden;
}

.p-service {
  margin: 105px 0 200px;
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  /*モーダル本体の擬似要素の指定*/
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  /*モーダル枠の指定*/
  /*モーダルを閉じるボタンの指定*/
  /*モーダル内のコンテンツの指定*/
}
@media screen and (max-width: 768px) {
  .p-service {
    margin: 50px 0 100px;
  }
}
.p-service .slider-nav {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .p-service .slider-nav {
    margin: 0 0 40px;
  }
}
.p-service .slick-dots {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
}
@media screen and (max-width: 768px) {
  .p-service .slick-dots {
    grid-template-columns: 1fr 1fr;
  }
}
.p-service .slick-dots li {
  background: #28261d;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  min-height: 65px;
  cursor: pointer;
}
@media screen and (max-width: 1140px) {
  .p-service .slick-dots li {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .p-service .slick-dots li {
    padding: 10px 2px;
    min-height: 55px;
  }
}
.p-service .slick-dots li button {
  line-break: strict;
}
.p-service .slick-dots .slick-active {
  background: #00a279;
}
.p-service__slider {
  width: 92%;
  margin: 0 auto;
  padding: 35px 0 0;
}
@media screen and (max-width: 1140px) {
  .p-service__slider {
    padding: 70px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-service__slider {
    padding: 50px 0 0px;
  }
}
.p-service__bg {
  position: relative;
}
.p-service__bg::before {
  content: "";
  position: absolute;
  min-width: 1300px;
  width: 90%;
  height: 100%;
  background-color: #fcf9f0;
  top: 0;
  left: 0;
  border-radius: 300px 0px 400px 0px;
}
@media screen and (max-width: 1140px) {
  .p-service__bg::before {
    min-width: 1000px;
    border-radius: 200px 0px 200px 0px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__bg::before {
    width: 100%;
    height: 100%;
    border-radius: 120px 0px 120px 0px;
  }
}
.p-service__title {
  display: inline-block;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  line-height: 1;
  border-left: solid 18px #00a279;
  border-bottom: solid 3px #00a279;
  padding: 10px 125px 15px 17px;
}
@media screen and (max-width: 1140px) {
  .p-service__title {
    border-left: solid 14px #00a279;
    border-bottom: solid 3px #00a279;
    padding: 10px 125px 13px 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-service__title {
    border-left: solid 14px #00a279;
    border-bottom: solid 3px #00a279;
    padding: 13px 0px 13px 12px;
    width: 100%;
  }
}
.p-service__lead {
  margin: 30px 0 35px 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-service__lead {
    margin: 20px 0 25px 10px;
  }
}
.p-service__item {
  padding: 0 10px 10px;
}
.p-service__item--flex {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 768px) {
  .p-service__item--flex {
    flex-direction: column-reverse;
  }
}
.p-service__item--text {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .p-service__item--text {
    width: 100%;
  }
}
.p-service__item--text .btn01 {
  margin: 65px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-service__item--text .btn01 {
    margin: 35px auto 0;
  }
}
.p-service__item--text .btn01.tabashira {
  width: 335px;
}
@media screen and (max-width: 768px) {
  .p-service__item--text .btn01.tabashira {
    width: 295px;
  }
}
.p-service__item--image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .p-service__item--image {
    margin: 20px auto 0;
  }
}
.p-service__item--lead {
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: bold;
  line-height: 1.4;
  margin: 30px 0 20px;
}
.p-service__item--list {
  margin: 0 0 20px;
}
.p-service__item--list li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-service__item--list li {
    padding: 0 0 0 15px;
    line-height: 1.3;
  }
}
.p-service__item--list li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 6px;
  left: 0;
  background: #252928;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .p-service__item--list li::before {
    width: 9px;
    height: 9px;
    top: 5px;
  }
}
.p-service__item--detail {
  line-height: 1.6;
}
.p-service__item .handbook {
  width: 300px;
}
.p-service__item--bnr {
  max-width: 210px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-service__item--bnr {
    max-width: 165px;
  }
}
.p-service__item--bnr a {
  display: block;
}
.p-service__item--snsBtn {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-service__item--snsBtn {
    flex-direction: column;
  }
}
.p-service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 3.8%;
}
@media screen and (max-width: 768px) {
  .p-service__grid {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.p-service__grid--spright {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-service__grid--spright {
    width: 60%;
  }
}
.p-service__grid--icon {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .p-service__grid--icon {
    width: auto;
    flex: 1;
  }
}
.p-service__grid--item {
  background: #fcf9f0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 27px 30px;
}
@media screen and (max-width: 768px) {
  .p-service__grid--item {
    padding: 10px 13px 10px;
    flex-direction: row;
    gap: 0 10px;
  }
}
.p-service__grid--subtitle {
  color: #00a279;
  font-size: clamp(16px, 1.04vw, 17px);
  font-weight: 700;
  padding: 10px 0 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-service__grid--subtitle {
    padding: 0 0 6px;
    text-align: left;
    line-height: 1.4;
  }
}
.p-service__grid--text {
  width: 100%;
}
.p-service__grid--text li {
  position: relative;
  padding: 0 0 0 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-service__grid--text li {
    padding: 0 0 0 15px;
    line-height: 1.3;
  }
}
.p-service__grid--text li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 6px;
  left: 0;
  background: #252928;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .p-service__grid--text li::before {
    width: 9px;
    height: 9px;
    top: 5px;
  }
}
.p-service .slick-dots {
  position: initial !important;
}
.p-service .slick-num {
  position: absolute;
  top: -5%;
  right: 10%;
  line-height: 1;
  text-align: center;
  letter-spacing: -1rem;
  font-size: clamp(50px, 5.2vw, 100px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 5px;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-service .slick-num {
    top: -2%;
  }
}
.p-service .slick-num .now-count,
.p-service .slick-num .slash {
  margin: 0 0 10px;
}
.p-service .slick-num .now-count {
  color: #00a279;
  font-size: clamp(50px, 9.76vw, 100px);
  letter-spacing: 0;
}
.p-service .slick-num .all-count {
  color: #28261d;
  font-size: clamp(30px, 5.85vw, 60px);
  letter-spacing: 0em;
}
.p-service .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(50%);
}
@media screen and (max-width: 1140px) {
  .p-service .slick-arrow button {
    opacity: 0;
    width: 40px;
    height: 40px;
  }
}
.p-service .slick-arrow::after {
  position: absolute;
  content: "";
  width: 120px;
  height: 18px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-60px);
}
@media screen and (max-width: 1140px) {
  .p-service .slick-arrow::after {
    bottom: 0;
    width: 40px;
    height: 40px;
    transform: translateX(-20px);
  }
}
.p-service .prev {
  margin-left: 40px;
  left: -14%;
}
@media screen and (max-width: 1210px) {
  .p-service .prev {
    left: -7%;
  }
}
@media screen and (max-width: 1140px) {
  .p-service .prev {
    left: -12%;
  }
}
@media screen and (max-width: 500px) {
  .p-service .prev {
    left: -21%;
  }
}
.p-service .prev::after {
  background: url(../img/service/prev.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1140px) {
  .p-service .prev::after {
    background: url(../img/service/prev-sp.svg) no-repeat center center;
    background-size: contain;
  }
}
.p-service .next {
  margin-right: 40px;
  right: -14%;
}
@media screen and (max-width: 1210px) {
  .p-service .next {
    right: -7%;
  }
}
@media screen and (max-width: 1140px) {
  .p-service .next {
    right: -14%;
  }
}
@media screen and (max-width: 500px) {
  .p-service .next {
    right: -21%;
  }
}
.p-service .next::after {
  background: url(../img/service/next.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 1140px) {
  .p-service .next::after {
    background: url(../img/service/next-sp.svg) no-repeat center center;
    background-size: contain;
  }
}
.p-service .modal-open.btn01 {
  width: 270px;
}
.p-service .modal-open.btn01.aseantest {
  width: 310px;
}
@media screen and (max-width: 768px) {
  .p-service .modal-open.btn01.aseantest {
    width: 290px;
  }
}
.p-service .modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-service .modal-container {
    padding: 66px 20px 20px;
  }
}
.p-service .modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.p-service .modal-container.active {
  opacity: 1;
  visibility: visible;
}
.p-service .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .p-service .modal-body {
    height: 100%;
  }
}
.p-service .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  right: 0px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #333;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-service .modal-close {
    top: -40px;
    right: -6px;
  }
}
.p-service .modal-content {
  background: #333;
  text-align: left;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .p-service .modal-content {
    height: 100%;
  }
  .p-service .modal-content img {
    height: 100%;
    margin: 0 auto;
  }
}

/* p-contact
--------------------------- */
.c-mainv.c-mainv--works::before {
  background: url(../img/works/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
.c-mainv.c-mainv--works .c-mainv__title {
  white-space: nowrap;
}

.c-mainv.c-mainv--grobalsns::before {
  background: url(../img/grobalsns/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .p-works {
    margin: 50px auto 100px;
  }
}
.p-works .tab-area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  margin: 0 0 115px;
}
@media screen and (max-width: 768px) {
  .p-works .tab-area {
    grid-template-columns: 1fr 1fr;
    margin: 0 0 60px;
  }
}
.p-works .tab-area .tab {
  background: #28261d;
  color: #fff;
  width: 100%;
  text-align: center;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  min-height: 65px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-works .tab-area .tab {
    padding: 10px 2px;
    min-height: 55px;
  }
}
.p-works .tab-area .tab.active {
  background: #00a279;
  color: #fff;
}
.p-works .panel {
  display: none;
  text-align: center;
}
.p-works .panel.active {
  display: block;
}
.p-works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 5%;
}
@media screen and (max-width: 768px) {
  .p-works__grid {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }
}
.p-works__item {
  overflow: hidden;
  aspect-ratio: 500/350;
}
.p-works__item.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}
.p-works__item a {
  height: 100%;
  width: 100%;
}
.p-works__item--image {
  height: 100%;
  width: 100%;
}
.p-works__item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-works__item--text {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  background: rgba(40, 38, 29, 0.75);
  padding: 25px 20px;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
  transition: all 0.5s;
}
@media screen and (max-width: 1140px) {
  .p-works__item--text {
    top: 0%;
    font-size: 18px;
  }
}
.p-works__item a:hover {
  opacity: 1;
}
.p-works__item a:hover .p-works__item--text {
  top: 0%;
}
.p-works .more-btn {
  margin: 150px auto 0;
}
@media screen and (max-width: 768px) {
  .p-works .more-btn {
    margin: 75px auto 0;
  }
}
.p-works .more-btn .btn01span::after {
  transform: rotate(90deg);
}
.p-works .more-btn .btn01span:hover::after {
  right: 22px;
  top: calc(50% - 5px);
}

.p-works-single #l-single {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .p-works-single #l-single {
    padding-bottom: 100px;
  }
}
.p-works-single__top {
  padding: 105px 0 10px;
  line-height: 1.8;
  border-bottom: solid 1px #00a279;
  margin: 0 0 50px;
}
@media screen and (max-width: 768px) {
  .p-works-single__top {
    padding: 50px 0 10px;
    margin: 0 0 25px;
  }
}
.p-works-single__top--title {
  font-size: clamp(20px, 1.56vw, 30px);
  margin: 0 0 15px;
}
.p-works-single__top--client {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-works-single__top--client {
    font-size: 16px;
  }
}
.p-works-single__topimage {
  padding: 0 0 60px;
  margin: 0 0 50px;
  border-bottom: solid 1px #00a279;
}
@media screen and (max-width: 768px) {
  .p-works-single__topimage {
    padding: 0 0 30px;
    margin: 0 0 25px;
  }
}
.p-works-single__topimage img {
  width: 100%;
  object-fit: contain;
}
.p-works-single__topimage iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.p-works-single__screenshot img {
  width: 100%;
  object-fit: contain;
  box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.25);
}
.p-works-single__wrap {
  display: flex;
  gap: 0 3.5%;
  padding: 0 0 150px;
}
@media screen and (max-width: 768px) {
  .p-works-single__wrap {
    flex-direction: column;
  }
}
.p-works-single__left {
  flex: 1;
}
.p-works-single__right {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .p-works-single__right {
    width: 100%;
  }
}
.p-works-single__textwrap {
  background: #fcf9f0;
  border-radius: 120px 0 0 0;
  padding: 40px 20px 20px;
}
@media screen and (max-width: 768px) {
  .p-works-single__textwrap {
    border-radius: 0px 0 0px 90px;
    margin: 0 auto 40px;
  }
}
.p-works-single__textwrap--subtitle {
  text-align: right;
  font-size: 18px;
  line-height: 1;
  margin: 0 0 15px;
}
@media screen and (max-width: 768px) {
  .p-works-single__textwrap--subtitle {
    text-align: left;
    font-size: 16px;
  }
}
.p-works-single__textwrap--subtitle span {
  border-left: solid 3px #00a279;
  padding: 0 0 0 5px;
}
.p-works-single__textwrap--text {
  line-height: 1.5;
  margin: 0 0 30px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .p-works-single__textwrap--text {
    justify-content: flex-start;
  }
}
.p-works-single__textwrap--text.last {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-works-single__textwrap--text.last {
    margin: 0 0 30px;
  }
}
.p-works-single__related {
  margin: 50px 0 0;
}
.p-works-single__related--subtitle {
  padding: 0 0 10px;
  margin: 0 0 25px;
  border-bottom: solid 1px #000;
}
.p-works-single__related--list {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-works-single__related--list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 5%;
  }
}
.p-works-single__related--item {
  font-size: 13px;
  line-height: 1.5;
  margin: 0 auto 25px;
}
@media screen and (max-width: 768px) {
  .p-works-single__related--item {
    margin: 0;
  }
}
.p-works-single__related--thumb {
  margin: 0 0 10px;
}
.p-works-single__mockup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 5%;
}
.p-works-single__mockup img {
  width: 100%;
}
.p-works-single__snsurl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* archive-tours
--------------------------- */
.c-mainv.c-mainv--tours::before {
  background: url(../img/tour/mainv.jpg) no-repeat center center;
  background-size: cover;
  opacity: 1;
}
.c-mainv.c-mainv--tours .c-mainv__title {
  white-space: nowrap;
}

.archive-tour__nav {
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
}
@media screen and (max-width: 768px) {
  .archive-tour__nav {
    grid-template-columns: 1fr 1fr;
    margin: 0 auto 40px;
  }
}
.archive-tour__nav li a {
  background: #28261d;
  text-align: center;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  min-height: 55px;
  cursor: pointer;
  color: #fff;
  transition: all 0.6;
}
.archive-tour__nav li a.current {
  background: #00a279;
}
.archive-tour__nav li a:hover {
  opacity: 0.7;
}
.archive-tour__item {
  border-bottom: solid 1px #000;
}
.archive-tour__item a {
  display: block;
  padding: 60px 50px;
  font-weight: 500;
  line-height: 1.25;
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  .archive-tour__item a {
    padding: 30px 25px;
  }
}
.archive-tour__item a:hover {
  opacity: 0.7;
}
.archive-tour__item--flex {
  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0 25px;
}
.archive-tour__item--flex .cat {
  background: #00a279;
  color: #fff;
  padding: 5px 14px;
  border-radius: 15px;
}
.archive-tour__item--title {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: bold;
  margin: 25px 0;
}
@media screen and (max-width: 768px) {
  .archive-tour__item--title {
    margin: 15px 0;
  }
}
.archive-tour__item--schedule {
  font-size: clamp(16px, 1.04vw, 20px);
  margin: 0 0 10px;
}
.archive-tour__item--destination {
  font-size: clamp(16px, 1.04vw, 20px);
  text-indent: -3em;
  padding-left: 3em;
}
.archive-tour .pagenation {
  max-width: 1024px;
  margin: 0 auto;
}
.archive-tour .activity-nav {
  display: flex;
  justify-content: center;
  gap: 0 30px;
  margin: 125px auto 150px;
}
@media screen and (max-width: 768px) {
  .archive-tour .activity-nav {
    margin: 65px auto 75px;
  }
}
.archive-tour .activity-nav a {
  transition: all 0.3s;
}
.archive-tour .activity-nav a:hover {
  opacity: 0.6;
}
.archive-tour .activity-nav .prev,
.archive-tour .activity-nav .next {
  position: relative;
  padding: 0 40px 5px;
}
.archive-tour .activity-nav .prev::before,
.archive-tour .activity-nav .next::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.archive-tour .activity-nav .prev::before {
  background: url(../img/news/arrow-prev.svg) no-repeat center center;
  background-size: contain;
}
.archive-tour .activity-nav .prev:hover {
  opacity: 1;
}
.archive-tour .activity-nav .prev:hover::before {
  transform: translateX(-10px);
}
.archive-tour .activity-nav .next::before {
  background: url(../img/news/arrow-next.svg) no-repeat center center;
  background-size: contain;
}
.archive-tour .activity-nav .next:hover {
  opacity: 1;
}
.archive-tour .activity-nav .next:hover::before {
  transform: translateX(10px);
}

.p-tours-single img {
  margin: 0 auto;
}

/* c-loading
--------------------------- */
.c-loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.c-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.c-loading__spinner {
  width: 100px;
  height: 100px;
  margin: 40vh auto;
  border: 3px solid #ca6060;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: loadingAnimation 0.8s linear 0s infinite;
}
@keyframes loadingAnimation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
/* c-table
--------------------------- */
.c-table {
  width: 100%;
}
.c-table th,
.c-table td {
  padding: 20px;
  border-bottom: 1px solid #252928;
}
@media screen and (max-width: 768px) {
  .c-table th,
  .c-table td {
    padding: 10px;
  }
}
.c-table th {
  width: 25%;
  background: #4d9fcb;
  color: #ffffff;
}
/* c-lists
--------------------------- */
.c-lists li {
  position: relative;
  padding-left: 24px;
}
.c-lists li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #00a279;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* c-details
--------------------------- */
.c-details {
  width: 100%;
  margin: 0 auto;
  /* アコーディオンオープン時のスタイル */
}
.c-details summary {
  position: relative;
  display: block;
  padding: 10px 20px;
  font-weight: bold;
  background-color: rgba(202, 96, 96, 0.5);
  cursor: pointer;
  transition: 0.2s;
  /* デフォルトの矢印を消す */
  /* アコーディオンの＋アイコン */
}
.c-details summary:hover {
  background-color: rgba(202, 96, 96, 0.7);
}
.c-details summary::-webkit-details-marker {
  display: none;
}
.c-details summary:after {
  position: absolute;
  top: 2px;
  right: 3%;
  content: "\e145";
  font-family: "Material Icons";
  font-size: 28px;
  color: #ca6060;
  margin: auto;
  transition: 0.4s;
}
.c-details[open] {
  /* アニメーション */
}
.c-details[open] summary {
  background-color: rgba(202, 96, 96, 0.7);
}
.c-details[open] summary:after {
  transform: rotate(135deg); /* アイコンを回転 */
}
.c-details[open] .c-faq__content {
  animation: detailsopen 0.5s ease;
}
@keyframes detailsopen {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.c-details__content {
  padding: 10px 20px;
}
@media (min-width: 640px) {
  .c-details {
    width: 80%;
  }
}
/* c-form
--------------------------- */
/* c-cta
--------------------------- */
.c-cta {
  text-align: center;
  margin: 32px 0;
}
.c-cta__button {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #ca6060;
  border: solid 2px #ca6060;
  border-radius: 50px;
  padding: 16px 79px;
  text-decoration: none;
  position: relative;
}
.c-cta__button:after {
  position: absolute;
  right: 24px;
  content: "\e5e1";
  font-family: "Material Icons";
}
.c-cta__button:hover {
  color: #ca6060;
  background-color: transparent;
}
/* c-cta
--------------------------- */
.c-text {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .c-text {
    margin: 20px 0;
  }
}
.c-text--heading {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .c-text--heading {
    font-size: 18px;
  }
}
.c-text--right {
  text-align: right;
}

/* c-cta
--------------------------- */
.c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .c-btn {
    margin-top: 30px;
  }
}
.c-btn__nomal {
  color: #ffffff;
  padding: 20px 110px 20px 120px;
  font-size: 20px;
  background: #4d9fcb;
  border-radius: 30px;
}
.c-btn__nomal:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-btn__nomal {
    font-size: 14px;
  }
}
.c-btn__small {
  color: #252928;
  font-size: 20px;
}
.c-btn__small:hover {
  color: #4d9fcb;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn__small {
    font-size: 14px;
  }
}

.c-btn-arrow {
  position: relative;
  padding-right: 40px;
}
.c-btn-arrow::before, .c-btn-arrow::after {
  content: "";
  position: absolute;
}
.c-btn-arrow::before {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.c-btn-arrow::after {
  width: 5px;
  height: 5px;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 10px;
}
.c-btn-arrow--nomal::before {
  border: 1px solid #ffffff;
}
.c-btn-arrow--nomal::after {
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.c-btn-arrow--small::before {
  border: 1px solid #252928;
}
.c-btn-arrow--small::after {
  border-top: 1px solid #252928;
  border-right: 1px solid #252928;
}
.c-btn-arrow--small:hover::before, .c-btn-arrow--small:hover::after {
  transition: 0.3s;
}
.c-btn-arrow--small:hover::before {
  border: 1px solid #4d9fcb;
}
.c-btn-arrow--small:hover::after {
  border-top: 1px solid #4d9fcb;
  border-right: 1px solid #4d9fcb;
}

.view-more-btn {
  letter-spacing: 0.1em;
  color: #333;
  margin-left: 30px;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .view-more-btn {
    margin-left: 0;
  }
}
.view-more-btn:hover {
  color: #009a9a;
  font-weight: bold;
}

a,
button {
  position: relative;
}
a .btn-arrow,
button .btn-arrow {
  position: relative;
}
a .btn-arrow::before,
button .btn-arrow::before {
  content: url(../img/home/btn-arrow.svg);
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-43%);
}
a:hover .btn-arrow::before,
button:hover .btn-arrow::before {
  content: url(../img/home/btn-arrow-on.svg);
}

.btn01 {
  width: 230px;
  margin: 0 auto;
}
.btn01 a,
.btn01 .btn01span {
  display: block;
  border-radius: 30px;
  background: #f3eacb;
  color: #252928;
  position: relative;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  border: solid 3px #f3eacb;
  transition: all 0.4s;
}
.btn01 a::after,
.btn01 .btn01span::after {
  position: absolute;
  content: "";
  top: calc(50% - 10px);
  right: 22px;
  width: 20px;
  height: 20px;
  background: url(../img/common/arrow.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.4s;
}
.btn01 a:hover,
.btn01 .btn01span:hover {
  background: #fff;
  border: solid 3px #fff;
}
.btn01 a:hover::after,
.btn01 .btn01span:hover::after {
  right: 15px;
}
.btn01.green a,
.btn01.green .btn01span {
  background: #042e20;
  border: solid 1px #00a279;
  color: #00a279;
  position: relative;
}
.btn01.green a::after,
.btn01.green .btn01span::after {
  background: url(../img/common/arrow-green.svg) no-repeat center center;
  background-size: contain;
}
.btn01.green a:hover,
.btn01.green .btn01span:hover {
  background: #fff;
}
.btn01.border a:hover,
.btn01.border .btn01span:hover {
  border: solid 3px #f3eacb;
}

/* c-cta
--------------------------- */
.c-heading {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-heading {
    margin-bottom: 20px;
  }
}

.c-heading-h2__main {
  font-size: 40px;
  color: #4d9fcb;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-heading-h2__main {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.c-heading-h2__sub {
  font-size: 20px;
  color: #252928;
}
@media screen and (max-width: 768px) {
  .c-heading-h2__sub {
    font-size: 20px;
  }
}
.c-heading-h2--nomal {
  font-size: 28px;
  color: #00a279;
}
@media screen and (max-width: 768px) {
  .c-heading-h2--nomal {
    font-size: 20px;
  }
}

.c-heading-h3 {
  margin-bottom: 30px;
  padding-bottom: 5px;
  font-size: 24px;
  position: relative;
}
.c-heading-h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: transparent linear-gradient(45deg, #ffffff 0%, #e7f1f5 0%, #a9ceea 100%);
}

/* c-cta
--------------------------- */
.c-mainv {
  padding: 31.2% 0 0;
  position: relative;
  box-sizing: content-box;
  background: #00A27A;
  overflow: hidden;
}
@media screen and (min-width: 1920px) {
  .c-mainv {
    padding: 600px 0 0;
  }
}
.c-mainv::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 92%;
  background: #252928;
  opacity: 0.5;
  border-radius: 0px 0px 300px 0px;
}
.c-mainv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(30px, 3.3vw, 64px);
  line-height: 1;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.c-mainv__en {
  position: absolute;
  bottom: 4%;
  right: 26%;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  color: #18AA86;
  font-size: clamp(50px, 7.8vw, 150px);
  line-height: 1;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 0.5;
}
.c-mainv .c-breadcrumb {
  margin: 15px 0 0 auto;
  width: fit-content;
}
.c-mainv .c-breadcrumb__list li {
  color: #5a9191;
}
.c-mainv .c-breadcrumb__list li a:hover {
  color: #5a9191;
}
.c-mainv .c-breadcrumb__list li::after {
  width: 8px;
  height: 8px;
  top: 37%;
  background: none;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(-45deg);
}

/* c-cta
--------------------------- */
.c-pagination-list {
  text-align: center;
}

.c-pagination-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10%;
  margin: 70px 0 0;
}

.c-pagination__prev,
.c-pagination__next {
  line-height: 1;
}
.c-pagination__prev a,
.c-pagination__next a {
  padding: 0 40px 5px;
}
.c-pagination__prev a::before,
.c-pagination__next a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.c-pagination__prev span,
.c-pagination__next span {
  display: block;
  width: 120px;
}

.c-pagination__prev a::before {
  background: url(../img/news/arrow-prev.svg) no-repeat center center;
  background-size: contain;
}
.c-pagination__prev a:hover::before {
  transform: translateX(-10px);
}

.c-pagination__next a::before {
  background: url(../img/news/arrow-next.svg) no-repeat center center;
  background-size: contain;
}
.c-pagination__next a:hover::before {
  transform: translateX(10px);
}

.page-numbers.current {
  color: #4d9fcb;
}

.c-pagination__all a {
  background: #18aa86;
  border-radius: 50%;
  color: #fff;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagination__all a:hover {
  opacity: 0.6;
}

/* c-cta
--------------------------- */
.c-breadcrumb {
  margin-top: 50px;
  width: 40%;
}
@media screen and (max-width: 1140px) {
  .c-breadcrumb {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .c-breadcrumb {
    margin-top: 20px;
    width: 100%;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb__list li {
  font-size: 12px;
  color: #cccccc;
  margin-right: 30px;
  position: relative;
}
.c-breadcrumb__list li::after {
  content: "";
  position: absolute;
  background: #252928;
  width: 5px;
  height: 1px;
  top: 50%;
  right: -17px;
}
.c-breadcrumb__list li a:hover {
  color: #4d9fcb;
}
.c-breadcrumb__list li:last-child::after {
  content: none;
}

/* c-cta
--------------------------- */
.c-toggle {
  height: 100%;
  position: relative;
}
.c-toggle__logo {
  writing-mode: vertical-lr;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%) rotate(180deg);
  cursor: pointer;
  color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-toggle__logo {
    font-size: 14px;
  }
}
.c-toggle__logo span {
  position: absolute;
  top: 50%;
  left: -75%;
  transform: translateY(-50%) rotate(180deg);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-toggle__logo span {
    left: -7%;
  }
  .c-toggle__logo span img {
    height: 11px;
  }
}
.c-toggle__logo .on {
  display: none;
}

#menu-trigger {
  cursor: pointer;
}
#menu-trigger:hover .c-toggle__logo {
  color: #009a9a;
  transform: translateY(-50%) rotate(180deg) scale(1.05);
}
#menu-trigger:hover .c-toggle__logo .off {
  filter: invert(33%) sepia(49%) saturate(2367%) hue-rotate(154deg) brightness(103%) contrast(105%);
}
#menu-trigger:hover .c-toggle__logo span {
  left: -100%;
}
#menu-trigger.active .c-toggle__logo {
  color: #009a9a;
}
#menu-trigger.active .c-toggle__logo .on {
  display: block;
}
#menu-trigger.active .c-toggle__logo .off {
  display: none;
}
#menu-trigger.active:hover .c-toggle__logo .on {
  display: none;
}
#menu-trigger.active:hover .c-toggle__logo .off {
  display: block;
}
#menu-trigger.active:hover .c-toggle__logo span {
  transform: translateY(-50%);
  left: -75%;
}

/*# sourceMappingURL=style.css.map */
