@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-break: normal;
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem);
}

img,
video {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

li {
  padding-left: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
  text-align: inherit;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #4caf51;
  outline-offset: 2px;
}

table {
  border-collapse: collapse;
}

.mb-sm {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .mb-sm {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1280px) {
  .mb-sm {
    margin-bottom: 50px;
  }
}

.mb-md {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .mb-md {
    margin-bottom: 65px;
  }
}
@media screen and (min-width: 1024px) {
  .mb-md {
    margin-bottom: 80px;
  }
}

.mb-lr {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .mb-lr {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .mb-lr {
    margin-bottom: 100px;
  }
}

.pd-sm {
  padding: 30px 0;
}
@media screen and (min-width: 1024px) {
  .pd-sm {
    padding: 45px 0;
  }
}
@media screen and (min-width: 1280px) {
  .pd-sm {
    padding: 50px 0;
  }
}

.pd-md {
  padding: 50px 0;
}
@media screen and (min-width: 768px) {
  .pd-md {
    padding: 65px 0;
  }
}
@media screen and (min-width: 1024px) {
  .pd-md {
    padding: 80px 0;
  }
}

.pd-lr {
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .pd-lr {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  .pd-lr {
    padding: 100px 0;
  }
}

.c-container {
  padding: 0 6vw;
}
@media screen and (min-width: 600px) {
  .c-container {
    padding: 0 6vw;
  }
}
@media screen and (min-width: 1024px) {
  .c-container {
    padding: 0 6vw;
  }
}
@media screen and (min-width: 1200px) {
  .c-container {
    padding: 0 5vw;
  }
}
@media screen and (min-width: 1500px) {
  .c-container {
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper {
  overflow: visible !important;
}

.swiper-slide {
  overflow: hidden;
}

.scrolldown {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 42px;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  z-index: 4000;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: #fff;
}
.scrolldown::after {
  height: 20px;
  animation: sdl 2s ease infinite;
}
@media screen and (min-width: 1024px) {
  .scrolldown {
    right: 20px;
    font-size: 18px;
  }
  .scrolldown::after {
    width: 2px;
  }
}
@keyframes sdl {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(40px);
  }
}

.clip-js,
.clip-js1,
.clip-js2,
.clip-js3 {
  transition: all 3s ease;
}
.clip-js.left,
.clip-js1.left,
.clip-js2.left,
.clip-js3.left {
  clip-path: inset(0 100% 0 0);
}
.clip-js.right,
.clip-js1.right,
.clip-js2.right,
.clip-js3.right {
  clip-path: inset(0 0 0 100%);
}
.clip-js.top,
.clip-js1.top,
.clip-js2.top,
.clip-js3.top {
  clip-path: inset(0 0 100% 0);
}
.clip-js.top-left,
.clip-js1.top-left,
.clip-js2.top-left,
.clip-js3.top-left {
  clip-path: inset(0 100% 100% 0);
}
.clip-js.bottom,
.clip-js1.bottom,
.clip-js2.bottom,
.clip-js3.bottom {
  clip-path: inset(100% 0 0 0);
}
.clip-js.center,
.clip-js1.center,
.clip-js2.center,
.clip-js3.center {
  clip-path: inset(100%);
}
.clip-js.circle,
.clip-js1.circle,
.clip-js2.circle,
.clip-js3.circle {
  clip-path: circle(0 at 50% 50%);
}
.clip-js.skew,
.clip-js1.skew,
.clip-js2.skew,
.clip-js3.skew {
  clip-path: polygon(0 0, 0 0, 0 0);
}
.clip-js.transform,
.clip-js1.transform,
.clip-js2.transform,
.clip-js3.transform {
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: all 1.4s cubic-bezier(0.55, 0.06, 0.33, 1.85);
  transform: translateX(-30px) scale(0.86) skew(8deg);
}
.clip-js.reveal.left, .clip-js.reveal.right, .clip-js.reveal.top, .clip-js.reveal.top-left, .clip-js.reveal.bottom, .clip-js.reveal.center,
.clip-js1.reveal.left,
.clip-js1.reveal.right,
.clip-js1.reveal.top,
.clip-js1.reveal.top-left,
.clip-js1.reveal.bottom,
.clip-js1.reveal.center,
.clip-js2.reveal.left,
.clip-js2.reveal.right,
.clip-js2.reveal.top,
.clip-js2.reveal.top-left,
.clip-js2.reveal.bottom,
.clip-js2.reveal.center,
.clip-js3.reveal.left,
.clip-js3.reveal.right,
.clip-js3.reveal.top,
.clip-js3.reveal.top-left,
.clip-js3.reveal.bottom,
.clip-js3.reveal.center {
  clip-path: inset(0);
}
.clip-js.reveal.circle,
.clip-js1.reveal.circle,
.clip-js2.reveal.circle,
.clip-js3.reveal.circle {
  clip-path: circle(100% at 50% 50%);
}
.clip-js.reveal.skew,
.clip-js1.reveal.skew,
.clip-js2.reveal.skew,
.clip-js3.reveal.skew {
  clip-path: polygon(0 0, 200% 0, 0 200%);
}
.clip-js.reveal.transform,
.clip-js1.reveal.transform,
.clip-js2.reveal.transform,
.clip-js3.reveal.transform {
  clip-path: polygon(0 0, 200% 0, 0 200%);
  transform: translateX(0) scale(1) skew(0);
}

.clip-js1 {
  transition: all 3s ease;
}

.clip-js2 {
  transition: all 4s ease;
}

.clip-js3 {
  transition: all 2s ease;
}

.clip-js-bg {
  transition: all 1.8s ease;
}
.clip-js-bg.skew {
  transition: all 1s ease;
  transform: translate(-60%, 60%);
}
.clip-js-bg.skew2 {
  transition: all 1s ease;
  transform: translate(60%, 60%);
}
.clip-js-bg.reveal.skew {
  transform: translate(0);
}
.clip-js-bg.reveal.skew2 {
  transform: translate(0);
}

.appear.up .item {
  transform: translateY(10px);
}

.appear.down .item {
  transform: translateY(20px);
}

.appear.left .item {
  transform: translateX(30px);
}

.appear.right .item {
  transform: translateX(-30px);
}

.appear.skew .item {
  transform: translateX(30px) translateY(30px);
}

.appear-l.up .item {
  transform: translateY(10px);
}

.appear-l.down .item {
  transform: translateY(20px);
}

.appear-l.left .item {
  transform: translateX(30px);
}

.appear-l.right .item {
  transform: translateX(-30px);
}

.appear-l.skew .item {
  transform: translateX(30px) translateY(30px);
}

.appear .item {
  transition: all 0.4s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 3.2s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 3.6s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 4.4s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 4.8s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 5.2s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 5.6s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 6s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 6.4s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 6.8s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 7.2s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 7.6s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 8s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 8.4s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 8.8s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 9.2s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 9.6s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 10s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 10.4s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 10.8s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 11.2s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 11.6s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 12s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 12.4s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 12.8s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 13.2s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 13.6s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 14s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 14.4s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 14.8s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 15.2s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 15.6s;
}

.appear-l .item {
  transition: all 0.6s;
  opacity: 0;
}
.appear-l.inview-l .item {
  opacity: 1;
  transform: none;
}
.appear-l.inview-l .item:nth-child(1) {
  transition-delay: 0.9s;
}
.appear-l.inview-l .item:nth-child(2) {
  transition-delay: 1.8s;
}
.appear-l.inview-l .item:nth-child(3) {
  transition-delay: 2.7s;
}
.appear-l.inview-l .item:nth-child(4) {
  transition-delay: 3.6s;
}
.appear-l.inview-l .item:nth-child(5) {
  transition-delay: 4.5s;
}
.appear-l.inview-l .item:nth-child(6) {
  transition-delay: 5.4s;
}
.appear-l.inview-l .item:nth-child(7) {
  transition-delay: 6.3s;
}
.appear-l.inview-l .item:nth-child(8) {
  transition-delay: 7.2s;
}
.appear-l.inview-l .item:nth-child(9) {
  transition-delay: 8.1s;
}
.appear-l.inview-l .item:nth-child(10) {
  transition-delay: 9s;
}
.appear-l.inview-l .item:nth-child(11) {
  transition-delay: 9.9s;
}
.appear-l.inview-l .item:nth-child(12) {
  transition-delay: 10.8s;
}
.appear-l.inview-l .item:nth-child(13) {
  transition-delay: 11.7s;
}
.appear-l.inview-l .item:nth-child(14) {
  transition-delay: 12.6s;
}
.appear-l.inview-l .item:nth-child(15) {
  transition-delay: 13.5s;
}
.appear-l.inview-l .item:nth-child(16) {
  transition-delay: 14.4s;
}
.appear-l.inview-l .item:nth-child(17) {
  transition-delay: 15.3s;
}
.appear-l.inview-l .item:nth-child(18) {
  transition-delay: 16.2s;
}
.appear-l.inview-l .item:nth-child(19) {
  transition-delay: 17.1s;
}
.appear-l.inview-l .item:nth-child(20) {
  transition-delay: 18s;
}
.appear-l.inview-l .item:nth-child(21) {
  transition-delay: 18.9s;
}
.appear-l.inview-l .item:nth-child(22) {
  transition-delay: 19.8s;
}
.appear-l.inview-l .item:nth-child(23) {
  transition-delay: 20.7s;
}
.appear-l.inview-l .item:nth-child(24) {
  transition-delay: 21.6s;
}
.appear-l.inview-l .item:nth-child(25) {
  transition-delay: 22.5s;
}
.appear-l.inview-l .item:nth-child(26) {
  transition-delay: 23.4s;
}
.appear-l.inview-l .item:nth-child(27) {
  transition-delay: 24.3s;
}
.appear-l.inview-l .item:nth-child(28) {
  transition-delay: 25.2s;
}
.appear-l.inview-l .item:nth-child(29) {
  transition-delay: 26.1s;
}
.appear-l.inview-l .item:nth-child(30) {
  transition-delay: 27s;
}
.appear-l.inview-l .item:nth-child(31) {
  transition-delay: 27.9s;
}
.appear-l.inview-l .item:nth-child(32) {
  transition-delay: 28.8s;
}
.appear-l.inview-l .item:nth-child(33) {
  transition-delay: 29.7s;
}
.appear-l.inview-l .item:nth-child(34) {
  transition-delay: 30.6s;
}
.appear-l.inview-l .item:nth-child(35) {
  transition-delay: 31.5s;
}
.appear-l.inview-l .item:nth-child(36) {
  transition-delay: 32.4s;
}
.appear-l.inview-l .item:nth-child(37) {
  transition-delay: 33.3s;
}
.appear-l.inview-l .item:nth-child(38) {
  transition-delay: 34.2s;
}
.appear-l.inview-l .item:nth-child(39) {
  transition-delay: 35.1s;
}

.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

@keyframes kf-cover-slide {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.1% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.img-zoom, .bg-img-zoom {
  opacity: 0;
}
.inview .img-zoom, .inview .bg-img-zoom {
  opacity: 1;
  transition: transform 0.3s ease;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.inview .img-zoom:hover, .inview .bg-img-zoom:hover {
  transform: scale(1.05);
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
  }
}
.hover-darken::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
  pointer-events: none;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}
.hover-darken:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-img-zoom {
  background-image: url(../images/image-1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.img-bg50 {
  position: relative;
}
.img-bg50::before {
  display: block;
  content: "";
  padding-top: 50%;
}

.faq .ac-title.is-active {
  transition: all 3s;
}
.faq .ac-title.is-active .i_box::after {
  height: 0;
  transition: all 0.3s;
}

.ac-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.ac-content.is-open {
  height: auto;
  opacity: 1;
  display: block;
  transition: all 0.3s;
}

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

Stylesheet: ベーススタイル

******************************************************************/
body {
  letter-spacing: 0.08em;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #fdf7e1;
}
@media screen and (min-width: 768px) {
  body {
    line-height: 1.7;
  }
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}

body.hidden {
  overflow: hidden;
  position: relative;
}
body.hidden::before {
  opacity: 0.6;
  z-index: 1100;
}

.superwrapper {
  overflow: hidden !important;
}

.breadcrumb {
  display: flex;
  flex-wrap: nowrap;
  padding-top: 15px;
  padding-bottom: 15px;
}
.breadcrumb li {
  color: #949494;
  padding-right: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.breadcrumb li:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}
.breadcrumb li a {
  color: #4caf51;
  border-bottom: 1px solid #4caf51;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .breadcrumb li a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumb li:last-child {
    max-width: none;
  }
}
@media screen and (min-width: 1024px) {
  .breadcrumb {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.c-topview {
  position: relative;
}
.c-topview__img {
  height: 30vh;
  min-height: 180px;
  position: relative;
}
.c-topview__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #333333;
  opacity: 0.4;
}
.c-topview__img.top img {
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
.c-topview__img.bottom img {
  -o-object-position: 50% 80%;
     object-position: 50% 80%;
}
.c-topview__title {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  font-size: 2em;
}
.c-topview__title .en {
  display: block;
  color: rgb(245, 245, 245);
  font-size: 0.7em;
  font-weight: normal;
  text-transform: uppercase;
}
.c-topview__title .ja {
  display: block;
  letter-spacing: 3px;
  font-weight: 500;
  text-shadow: 1px 1px 0 #333333;
}
@media screen and (min-width: 600px) {
  .c-topview__img {
    height: 40vh;
  }
}
@media screen and (min-width: 1024px) {
  .c-topview__img {
    height: 45vh;
    min-height: 200px;
    max-height: 350px;
  }
  .c-topview__title {
    font-size: 2.4em;
  }
}

.p-title {
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
  background-color: rgb(245, 245, 245);
  padding: 15px 0;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 1.5em;
}
.p-title__ja {
  letter-spacing: 0.1em;
  font-weight: 600;
}
.p-title__en {
  font-size: 0.7em;
  font-weight: 500;
  text-transform: uppercase;
  color: #ff923f;
}
@media screen and (min-width: 768px) {
  .p-title {
    margin-bottom: 40px;
    padding: 25px 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-title {
    padding: 30px 0;
    font-size: 1.7em;
  }
}

.c-title {
  background-color: rgb(245, 245, 245);
  text-align: center;
  padding: 15px 0;
  font-weight: 600;
  font-size: 1.92rem;
  margin-bottom: 20px;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .c-title {
    font-size: 2.08rem;
    padding: 20px 0;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .c-title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-title {
    font-size: 3.2rem;
  }
}

.more-btn {
  position: relative;
  text-align: center;
}
.more-btn__link {
  background-color: #4caf51;
  display: inline-block;
  padding: 15px 0;
  border: 2px solid #4caf51;
  z-index: 1;
  width: 80%;
  max-width: 300px;
  border-radius: 9999px;
}
.more-btn__link span {
  position: relative;
  color: #fff;
  font-weight: bold;
}
.more-btn__link span:first-child {
  padding-right: 30px;
}
.more-btn__link span:first-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
  z-index: 100;
}
.more-btn__link.slide-bg {
  position: relative;
  overflow: hidden;
}
.more-btn__link.slide-bg .bg {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-101%);
  transition: transform 0.3s;
  z-index: -1;
}
.more-btn__link.slide-bg:hover {
  z-index: 1;
}
.more-btn__link.slide-bg:hover span {
  color: #4caf51;
  transform: none;
}
.more-btn__link.slide-bg:hover span:first-child::before {
  border-top: 2px solid #4caf51;
  border-right: 2px solid #4caf51;
}
@media screen and (min-width: 600px) {
  .more-btn__link {
    padding: 18px 0;
  }
}
@media screen and (min-width: 1024px) {
  .more-btn__link {
    padding: 20px 0;
    max-width: 340px;
  }
  .more-btn__link span:first-child {
    padding-right: 40px;
  }
  .more-btn__link span:first-child::before {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .more-btn__link.slide-bg {
    position: relative;
    overflow: hidden;
  }
  .more-btn__link.slide-bg .bg {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-101%);
    transition: transform 0.3s;
    z-index: -1;
  }
  .more-btn__link.slide-bg:hover span:first-child::before {
    border-top: 3px solid #4caf51;
    border-right: 3px solid #4caf51;
  }
}
.more-btn .servicebtn {
  border: 1px solid #4caf51;
  background-color: #333333;
}
@media screen and (min-width: 1024px) {
  .more-btn__link02 {
    width: 52%;
  }
}

@keyframes sp-nav-shine {
  0% {
    left: -60%;
  }
  18% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
@keyframes pc-nav-shine {
  0% {
    background-position: 0 0, -60% 0;
  }
  18% {
    background-position: 0 0, 160% 0;
  }
  100% {
    background-position: 0 0, 160% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sp-navbtn .sp1::after,
  .sp-navbtn .sp3::after,
  .mobile-contact li::after {
    animation: none;
    display: none;
  }
  .pc-navbtn .sp1 a,
  .pc-navbtn .sp3 a {
    animation: none;
  }
}
.p-header {
  width: 100%;
  height: 64px;
}
.p-header .logo__img {
  display: inline-block;
}
.p-header .logo h1 {
  color: #fff;
  font-size: 10px;
  margin-bottom: 8px;
}
.p-header .logo img {
  max-width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-header .logo {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .p-header .logo:hover {
    opacity: 0.7;
  }
}
.p-header .sp-navbtn {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 10vh;
  min-height: 60px;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s;
  background-color: #fff;
}
.p-header .sp-navbtn__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-header .sp-navbtn__container li {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.631372549);
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-header .sp-navbtn__container li .small {
  font-size: 60%;
  padding-left: 30px;
}
.p-header .sp-navbtn__container a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  padding-top: 30px;
}
.p-header .sp-navbtn__container a::before {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  height: 24px;
  width: 24px;
  background-image: url(../images/common/tel-white.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-header .sp-navbtn__container .sp1, .p-header .sp-navbtn__container .sp3 {
  position: relative;
  overflow: hidden;
}
.p-header .sp-navbtn__container .sp1::after, .p-header .sp-navbtn__container .sp3::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: sp-nav-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.p-header .sp-navbtn__container .sp1 {
  width: 60%;
  background: linear-gradient(135deg, rgb(255, 25.4373831776, 11.8) 0%, rgb(226, 12.6728971963, 0) 45%, rgb(130.6371681416, 10.6884955752, 3.5628318584) 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.4);
}
.p-header .sp-navbtn__container .sp1 a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.p-header .sp-navbtn__container .sp1 a::before {
  position: static;
  margin: 0;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.p-header .sp-navbtn__container .sp1 a .tel-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.p-header .sp-navbtn__container .sp1 a .tel-number {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}
.p-header .sp-navbtn__container .sp1 a .tel-label {
  font-size: 10px;
  margin-top: 2px;
}
.p-header .sp-navbtn__container .sp3 {
  width: 40%;
  background: linear-gradient(135deg, rgb(81.0485258964, 210.7514741036, 87.5991798463) 0%, rgb(44.625, 206.375, 52.7941919192) 45%, rgb(42.0270916335, 96.7729083665, 44.7920318725) 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.4);
}
.p-header .sp-navbtn__container .sp3::after {
  animation-delay: 1.6s;
}
.p-header .sp-navbtn__container .sp3 a {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.p-header .sp-navbtn__container .sp3 a::before {
  width: 28px;
  height: 28px;
  background-image: url(../images/common/line-wh.svg);
}
.p-header .sp-navbtn__container a:hover,
.p-header .sp-navbtn__container a:active {
  text-decoration: underline;
}
.p-header .sp-navbtn.hide {
  transform: translateY(100%);
}
.p-header .pc-navbtn {
  position: fixed;
  top: 160px;
  right: 0;
  z-index: 7000;
  transition: all 0.4s;
}
.p-header .pc-navbtn.hide {
  transform: translateX(100%);
  opacity: 0;
}
.p-header .pc-navbtn__container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.p-header .pc-navbtn__container li {
  width: 72px;
  margin-bottom: 10px;
  position: relative;
}
.p-header .pc-navbtn__container li:last-child {
  margin-bottom: 0;
}
.p-header .pc-navbtn__container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 180px;
  padding: 20px 8px;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  border-radius: 0;
  box-shadow: -4px 0 10px rgba(51, 51, 51, 0.3019607843);
  transition: all 0.3s;
  position: relative;
}
.p-header .pc-navbtn__container a::before {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-header .pc-navbtn__container a .pc-nav-text {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 6px;
}
.p-header .pc-navbtn__container a .pc-nav-label,
.p-header .pc-navbtn__container a .pc-nav-note {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.p-header .pc-navbtn__container a .pc-nav-label {
  font-size: 2.2rem;
}
.p-header .pc-navbtn__container a .pc-nav-note {
  font-size: 1.2rem;
  opacity: 0.9;
  text-combine-upright: digits;
}
.p-header .pc-navbtn__container li:hover a {
  transform: translateX(-10px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: -8px 6px 18px rgba(0, 0, 0, 0.4);
}
.p-header .pc-navbtn__container .sp1 a {
  background-image: linear-gradient(135deg, rgb(255, 25.4373831776, 11.8) 0%, rgb(226, 12.6728971963, 0) 45%, rgb(130.6371681416, 10.6884955752, 3.5628318584) 100%), linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 100% 100%, 60% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, -60% 0;
  animation: pc-nav-shine 3.2s ease-in-out infinite;
}
.p-header .pc-navbtn__container .sp1 a::before {
  background-image: url(../images/common/tel-white.png);
}
.p-header .pc-navbtn__container .sp3 a {
  background-image: linear-gradient(135deg, rgb(81.0485258964, 210.7514741036, 87.5991798463) 0%, rgb(44.625, 206.375, 52.7941919192) 45%, rgb(42.0270916335, 96.7729083665, 44.7920318725) 100%), linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 100% 100%, 60% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: 0 0, -60% 0;
  animation: pc-nav-shine 3.2s ease-in-out infinite;
  animation-delay: 1.6s;
}
.p-header .pc-navbtn__container .sp3 a::before {
  width: 28px;
  height: 28px;
  background-image: url(../images/common/line-wh.svg);
}
.p-header .accident__cta {
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: 70px;
  width: 35%;
  max-width: 220px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.p-header .accident__cta a {
  display: inline-block;
}
.p-header .accident__cta__close {
  position: absolute;
  top: -10px;
  right: -6px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.2s ease;
}
.p-header .accident__cta__close:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.p-header .accident__cta.is-closed {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 80px;
  }
  .p-header .sp-navbtn {
    display: none !important;
  }
  .p-header .logo h1 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .p-header .logo img {
    max-width: 300px;
  }
  .p-header .accident__cta {
    right: 15px;
    bottom: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .p-header .pc-container,
  .p-header .pc-navbtn {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-header {
    height: 100px;
  }
  .p-header .mobile-container,
  .p-header .sp-navbtn,
  .p-header .mobile-menu {
    display: none;
  }
  .p-header .pc-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 8000;
    width: 100%;
    background-color: #564536;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 15px rgba(51, 51, 51, 0.2);
    transition: all 0.3s;
    padding: 0 20px;
  }
  .p-header .pc-container .pc-nav-list {
    display: flex;
  }
  .p-header .pc-container .pc-nav-item {
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
    color: #fff;
    margin-right: 1.2vw;
    position: relative;
  }
  .p-header .pc-container .pc-nav-item:last-child {
    margin-right: 0;
  }
  .p-header .pc-container .pc-nav-item::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  .p-header .pc-container .pc-nav-item {
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 1024px) and (hover: hover) {
  .p-header .pc-container .pc-nav-item:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (min-width: 1024px) {
  .p-header .accident__cta {
    right: auto;
    left: 15px;
    bottom: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .p-header .mobile-container,
  .p-header .sp-navbtn,
  .p-header .mobile-menu {
    display: none;
  }
  .p-header .pc-container {
    padding: 0 35px;
  }
  .p-header .pc-container .pc-nav-item {
    font-size: 17px;
    margin-right: 2.2vw;
  }
  .p-header .pc-container .logo h1 {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .p-header .pc-container .logo img {
    max-width: 340px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.5s;
  z-index: -1;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu__nav {
  display: block;
  height: 100%;
  width: 100%;
  min-height: 100vh;
}
.mobile-menu__list {
  width: 100%;
  list-style: none;
  padding: 100px 6vw 10px;
}
.mobile-menu__item {
  margin-bottom: 20px;
  position: relative;
  font-size: 1.1em;
  font-weight: 600;
}
.mobile-menu .contact__link {
  padding: 0 6vw 30px;
}
.mobile-menu .contact__link li a {
  display: block;
  text-align: center;
  border: 2px solid #4caf51;
  background-color: #4caf51;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-menu .contact__link li a strong {
  font-weight: 500;
  display: inline-block;
  padding-left: 10px;
  position: relative;
}
.mobile-menu .contact__link li a strong::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  margin: auto;
}
.mobile-menu .contact__link li a small {
  display: block;
  font-size: 12px;
}
.mobile-menu .contact__link li a.tel {
  margin-bottom: 10px;
}
.mobile-menu .contact__link li a.tel strong {
  font-size: 22px;
}
.mobile-menu .contact__link li a.tel strong::before {
  top: 3px;
  background: url(../images/common/tel-white.png) no-repeat center/contain;
}
.mobile-menu .contact__link li a.net {
  background-color: #fff;
  color: #4caf51;
}
.mobile-menu .contact__link li a.net strong {
  font-size: 17px;
}
.mobile-menu .contact__link li a.net strong::before {
  width: 24px;
  height: 24px;
  left: -20px;
  background: url(../images/common/sns1.svg) no-repeat center/contain;
}
@media screen and (min-width: 600px) {
  .mobile-menu__nav {
    width: 70%;
  }
  .mobile-menu__list {
    padding-top: 130px;
    padding-bottom: 40px;
  }
  .mobile-menu__item {
    margin-bottom: 30px;
  }
  .mobile-menu .contact__link li a {
    padding: 15px 0;
  }
}

.mobile-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow: hidden;
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  background-color: #564536;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.2);
  padding: 0 20px 0 10px;
}
.mobile-container .mobile-contact {
  display: none;
}
.mobile-container .mobile-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
  display: block;
  position: relative;
}
.mobile-container .mobile-menu__btn > span {
  background-color: #fff;
  width: 25px;
  height: 2px;
  display: block;
  margin-bottom: 7px;
  transition: all 0.3s ease;
  opacity: 1;
  position: relative;
  transform-origin: center;
}
.mobile-container .mobile-menu__btn > span:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .mobile-container {
    height: 80px;
  }
  .mobile-container .mobile-button {
    top: 5px;
    right: 20px;
    display: flex;
    align-items: center;
  }
  .mobile-container .mobile-contact {
    display: flex;
    margin-right: 5px;
  }
  .mobile-container .mobile-contact li {
    width: 80px;
    height: 70px;
    margin-right: 8px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .mobile-container .mobile-contact li::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: sp-nav-shine 3.2s ease-in-out infinite;
    pointer-events: none;
  }
  .mobile-container .mobile-contact li a {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    display: block;
    text-align: center;
    padding-top: 40px;
    position: relative;
  }
  .mobile-container .mobile-contact li a::before {
    content: "";
    width: 26px;
    height: 26px;
    background: url(../images/common/tel-white.png) no-repeat center/contain;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .mobile-container .mobile-contact li.tel {
    background: linear-gradient(135deg, rgb(255, 25.4373831776, 11.8) 0%, rgb(226, 12.6728971963, 0) 45%, rgb(130.6371681416, 10.6884955752, 3.5628318584) 100%);
  }
  .mobile-container .mobile-contact li.line {
    background: linear-gradient(135deg, rgb(81.0485258964, 210.7514741036, 87.5991798463) 0%, rgb(44.625, 206.375, 52.7941919192) 45%, rgb(42.0270916335, 96.7729083665, 44.7920318725) 100%);
    border: 1px solid #fff;
  }
  .mobile-container .mobile-contact li.line::after {
    animation-delay: 1.6s;
  }
  .mobile-container .mobile-contact li.line a::before {
    background-image: url(../images/common/line-wh.svg);
  }
  .mobile-container .mobile-menu__btn span {
    width: 45px;
    height: 3px;
    margin-bottom: 9px;
  }
  .mobile-container .txt {
    font-size: 18px;
  }
}

.menu-open.mobile-menu {
  z-index: 8000;
  transition: all 0.5s ease-out;
  transform: translateX(0%);
}
.menu-open.mobile-menu nav li {
  opacity: 1;
  transition: 0.1s;
}
.menu-open.mobile-menu nav li:nth-child(1) {
  transition-delay: 0.03s;
}
.menu-open.mobile-menu nav li:nth-child(2) {
  transition-delay: 0.06s;
}
.menu-open.mobile-menu nav li:nth-child(3) {
  transition-delay: 0.09s;
}
.menu-open.mobile-menu nav li:nth-child(4) {
  transition-delay: 0.12s;
}
.menu-open.mobile-menu nav li:nth-child(5) {
  transition-delay: 0.15s;
}
.menu-open.mobile-menu nav li:nth-child(6) {
  transition-delay: 0.18s;
}
.menu-open.mobile-menu nav li:nth-child(7) {
  transition-delay: 0.21s;
}
.menu-open.mobile-menu nav li:nth-child(8) {
  transition-delay: 0.24s;
}
.menu-open.mobile-menu nav li:nth-child(9) {
  transition-delay: 0.27s;
}
.menu-open.mobile-menu nav li:nth-child(10) {
  transition-delay: 0.3s;
}
@media screen and (min-width: 600px) {
  .menu-open.mobile-menu {
    transform: translateX(30%);
  }
}
@media screen and (min-width: 1024px) {
  .menu-open.mobile-menu {
    transform: translateX(40%);
  }
}
.menu-open .mobile-menu__btn > span {
  background-color: #fff;
}
.menu-open .mobile-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(9px) rotate(45deg);
}
.menu-open .mobile-menu__btn > span:nth-child(2) {
  transition-delay: 0ms;
  transform: scaleX(0);
  opacity: 0;
}
.menu-open .mobile-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateY(-9px) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .menu-open .mobile-menu__btn > span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .menu-open .mobile-menu__btn > span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}

.p-footer {
  padding: 50px 0 15px;
  background-color: #4caf51;
}
.p-footer__logo {
  text-align: center;
}
.p-footer__logo img {
  display: inline-block;
  width: 70%;
  max-width: 360px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-footer__nav ul li {
  padding: 15px 0;
  border-bottom: 1px solid #fff;
}
.p-footer__nav ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.p-footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
  border-top: 1px solid #fff;
  padding-top: 15px;
}
@media screen and (min-width: 600px) {
  .p-footer__nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
  .p-footer__nav ul li {
    padding: 15px 10px;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer {
    padding: 60px 0 25px;
  }
  .p-footer__wrap {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 70px;
  }
  .p-footer__logo {
    margin-bottom: 0;
  }
  .p-footer__logo img {
    width: 280px;
    max-width: none;
  }
  .p-footer__nav {
    flex-basis: 55%;
    margin-bottom: 0;
  }
  .p-footer__nav ul li {
    padding: 20px 10px;
  }
  .p-footer .copyright {
    padding-top: 25px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .p-footer__wrap {
    gap: 90px;
  }
  .p-footer__nav {
    flex-basis: 45%;
  }
}
.top-view .view-sp,
.top-view .view-pc,
.p-campaign .view-sp,
.p-campaign .view-pc,
.p-google .view-sp,
.p-google .view-pc {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-view .view-pc,
  .p-campaign .view-pc,
  .p-google .view-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .top-view .view-sp,
  .p-campaign .view-sp,
  .p-google .view-sp {
    display: none;
  }
}

.p-top-access__img {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.p-top-access__desc {
  text-align: center;
}
.p-top-access__desc p span {
  display: inline-block;
  padding-left: 20px;
  position: relative;
}
.p-top-access__desc p span::before {
  content: "";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.p-top-access__desc p a {
  text-decoration: underline;
}
.p-top-access__desc p.address span::before {
  background: url(../images/common/map1.svg) no-repeat center/contain;
}
.p-top-access__desc p.course span::before {
  background: url(../images/common/map2.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-top-access__list {
    gap: 8px;
    max-width: 700px;
  }
  .p-top-access__list li {
    padding: 8px 25px;
  }
  .p-top-access__desc {
    display: grid;
    gap: 6px;
  }
  .p-top-access__desc p {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 1024px) {
  .p-top-access__list li {
    font-size: 1.2em;
  }
}
.p-campaign img {
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (min-width: 1024px) {
  .p-campaign img {
    max-width: 920px;
  }
}

@media screen and (min-width: 768px) {
  .p-google__title {
    text-align: center;
  }
  .p-google__title img {
    display: inline-block;
    max-width: 1200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.p-google__list {
  height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-google__list {
    height: 360px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.no-thumb {
  background-color: #4caf51;
  padding: 20% 15%;
  border-radius: 8px;
}

.p-voice {
  background-color: #fff;
}
.p-voice__list {
  display: grid;
  gap: 20px;
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.p-voice__list__item {
  border: 2px solid #ff923f;
  background-color: #fdf7e1;
  padding: 15px;
}
.p-voice__list__item .Icon {
  margin-bottom: 15px;
}
.p-voice__list__item .Icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-voice__list__item .Desc .p-voice__title {
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 10px;
}
.p-voice__list__item .Desc .p-voice__caution {
  margin-top: 15px;
  text-align: right;
  color: #888;
  font-size: 1em;
  line-height: 2.2;
}
.p-voice__list__item .Desc .p-voice__attr {
  display: block;
  margin-top: 15px;
  text-align: right;
  color: #888;
  font-size: 0.85em;
  line-height: 2.2;
}
.p-voice__list__item .Desc .p-voice__more {
  margin: 15px 0 10px;
  text-align: center;
}
.p-voice__list__item .Desc .p-voice__more a {
  display: inline-block;
  background-color: #4caf51;
  color: #fff;
  font-weight: 600;
  padding: 10px 50px;
  border-radius: 9999px;
  font-size: 1.15em;
}
.p-voice__list__item .Desc .p-voice__more:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-voice__list__item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px;
  }
  .p-voice__list__item .Icon {
    flex-basis: 50%;
    max-width: 220px;
    margin: 0;
  }
  .p-voice__list__item .Desc {
    flex: 1;
  }
  .p-voice__list__item .Desc .p-voice__title {
    margin-bottom: 30px;
  }
  .p-voice__list__item .Desc .p-voice__attr {
    display: inline-block;
  }
  .p-voice__list__item .Desc .p-voice__more {
    margin: 20px 0 15px;
    text-align: right;
  }
}
@media screen and (min-width: 1024px) {
  .p-voice__list {
    gap: 30px;
    max-width: 1000px;
  }
  .p-voice__list__item {
    padding: 30px;
  }
  .p-voice__list__item .Desc .p-voice__title {
    font-size: 1.25em;
  }
}

.p-worry {
  background: url(../images/home/worry-bg.webp) no-repeat top center;
  background-size: 100% auto;
}
.p-worry__title {
  text-align: center;
  color: #333333;
  font-size: 1.4em;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
  font-weight: 600;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
.p-worry__title strong {
  color: #369be2;
  font-size: 1.2em;
  display: inline-block;
  padding: 0 3px;
  font-weight: 700;
}
.p-worry__list {
  display: grid;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}
.p-worry__list__item {
  background-color: #fff;
  border-radius: 2px;
  padding: 12px 15px 12px 35px;
  font-weight: 500;
  border-bottom: 2px solid #ccc;
  position: relative;
}
.p-worry__list__item::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/common/check.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  margin: auto;
}
.p-worry__list__item span {
  color: #dc1206;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-worry__title {
    font-size: 1.8em;
    margin-bottom: 50px;
  }
  .p-worry__title strong {
    padding: 0 5px;
  }
}
@media screen and (min-width: 1024px) {
  .p-worry {
    background: url(../images/home/worry-bg.webp) repeat-x top center;
    background-size: 50% auto;
  }
  .p-worry__title {
    font-size: 2.2em;
    margin-bottom: 50px;
  }
  .p-worry__title strong {
    padding: 0 7px;
  }
  .p-worry__list {
    max-width: 1100px;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-worry__list__item {
    font-size: 1.15em;
    padding: 18px 15px 18px 55px;
  }
  .p-worry__list__item::before {
    width: 26px;
    height: 26px;
    left: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .p-worry {
    background-size: 700px auto;
  }
}

.p-kaiketu {
  position: relative;
}
.p-kaiketu::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(transparent 80%, #fff);
}
.p-kaiketu .c-container {
  position: relative;
  padding-bottom: 50px;
}
.p-kaiketu .c-container::after {
  content: "";
  width: 60%;
  height: 100%;
  background: url(../images/home/kaiketu.webp) no-repeat center/contain;
  position: absolute;
  top: -10%;
  left: 80%;
  transform: translateX(-50%);
  z-index: -1;
}
.p-kaiketu .scroll_down {
  animation: arrowmove 1s ease-in-out infinite;
  position: relative;
  height: 80px;
}
.p-kaiketu .scroll_down .Wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  color: #888;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}
.p-kaiketu .scroll_down .Wrap .text {
  display: block;
  margin-top: 60px;
  margin-left: -14px;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}
.p-kaiketu .scroll_down .Wrap .arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.p-kaiketu .scroll_down .Wrap .arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}
.p-kaiketu .scroll_down .Wrap .arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.p-kaiketu .scroll_down .Wrap .arrow::before, .p-kaiketu .scroll_down .Wrap .arrow::after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #ff923f;
}
.p-kaiketu .scroll_down .Wrap .arrow::before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.p-kaiketu .scroll_down .Wrap .arrow::after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
.p-kaiketu__desc {
  position: relative;
  z-index: 10;
}
.p-kaiketu__desc h2 {
  line-height: 2;
  font-size: 2em;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
.p-kaiketu__desc h2 strong {
  font-size: 1.2em;
  color: #ff923f;
}
@media screen and (min-width: 768px) {
  .p-kaiketu .c-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 0 70px;
  }
  .p-kaiketu .c-container::after {
    width: 80%;
    height: 120%;
    left: 85%;
  }
  .p-kaiketu__desc .onlySP {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-kaiketu .c-container {
    max-width: 750px;
    padding-bottom: 100px;
  }
  .p-kaiketu .c-container::after {
    width: 80%;
    height: 130%;
    left: 90%;
  }
  .p-kaiketu__desc h2 {
    font-size: 2.4em;
  }
  .p-kaiketu__desc h2 strong {
    font-size: 1.6em;
  }
  .p-kaiketu .scroll_down {
    height: 130px;
  }
  .p-kaiketu .scroll_down .Wrap {
    width: 44px;
    height: 44px;
  }
  .p-kaiketu .scroll_down .Wrap .arrow {
    width: 52px;
    height: 9px;
    animation: move-lg 3s ease-out infinite;
  }
  .p-kaiketu .scroll_down .Wrap .arrow:first-child {
    animation: move-lg 3s ease-out 1s infinite;
  }
  .p-kaiketu .scroll_down .Wrap .arrow:nth-child(2) {
    animation: move-lg 3s ease-out 2s infinite;
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move-lg {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(40px);
  }
  67% {
    opacity: 1;
    transform: translateY(55px);
  }
  100% {
    opacity: 0;
    transform: translateY(75px) scale3d(0.5, 0.5, 0.5);
  }
}
.p-course {
  background-color: #fff;
}
.p-course__desc h2 {
  text-align: center;
  font-size: 1.4em;
  line-height: 1.8;
  font-weight: 600;
  color: #4caf51;
  margin-bottom: 15px;
}
.p-course__img {
  aspect-ratio: 3/2;
  max-width: 600px;
  margin: 0 auto;
}
.p-course__img img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-course__wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
  }
  .p-course__img {
    flex-basis: 40%;
  }
  .p-course__desc {
    flex-basis: 60%;
  }
  .p-course__desc h2 {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .p-course__wrap {
    gap: 70px;
  }
}
@media screen and (min-width: 1280px) {
  .p-course__wrap {
    align-items: center;
  }
}

.p-strength__title {
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 20px;
}
.p-strength__title small {
  display: block;
}
.p-strength__title strong {
  display: inline-block;
  margin-top: 8px;
  background-color: #ff923f;
  padding: 10px 25px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
}
.p-strength__subtitle {
  font-size: 1.2em;
  line-height: 1.7;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
.p-strength__subtitle br {
  display: none;
}
.p-strength__subtitle .main {
  color: #4caf51;
  font-weight: 800;
  font-size: 1.15em;
}
.p-strength__subtitle .sub {
  color: #ff923f;
  font-weight: 800;
  font-size: 1.15em;
}
.p-strength__list__item {
  margin-bottom: 30px;
  padding: 40px 20px 20px;
  background-color: #fff;
  border-top: 3px solid #ff923f;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.3019607843);
  border-radius: 0 0 10px 10px;
  position: relative;
}
.p-strength__list__item .num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-color: #ff923f;
  font-size: 1em;
  padding: 0 30px 3px;
  color: #fff;
  border-radius: 9999px;
}
.p-strength__list__item .num strong {
  font-size: 1.5em;
  display: inline-block;
  margin-left: 5px;
}
.p-strength__list__item .Img {
  aspect-ratio: 3/2;
  padding: 7px;
  box-shadow: 0 0 5px rgba(51, 51, 51, 0.3019607843);
  max-width: 500px;
  margin: 0 auto 20px;
}
.p-strength__list__item .Desc h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
}
.p-strength__list__item .Desc h3 span {
  background: linear-gradient(transparent 60%, rgba(255, 220, 102, 0.5019607843) 40%);
  padding: 0 2px;
}
@media screen and (min-width: 768px) {
  .p-strength__title {
    font-size: 2em;
    margin-bottom: 25px;
  }
  .p-strength__title strong {
    margin-top: 15px;
    padding: 15px 25px;
  }
  .p-strength__title strong br {
    display: none;
  }
  .p-strength__subtitle {
    font-size: 1.5em;
    text-align: center;
  }
  .p-strength__subtitle br {
    display: block;
  }
  .p-strength__list__item {
    margin-bottom: 45px;
    padding: 40px 30px;
  }
  .p-strength__list__item .Img {
    padding: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .p-strength__title {
    margin-bottom: 30px;
  }
  .p-strength__title strong {
    margin-top: 15px;
    padding: 20px 50px;
  }
  .p-strength__subtitle {
    line-height: 1.7;
    margin-bottom: 45px;
  }
  .p-strength__list {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-strength__list__item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 55px;
  }
  .p-strength__list__item .num {
    top: -30px;
    padding: 0 50px 6px;
  }
  .p-strength__list__item .Img {
    flex-basis: 48%;
    margin: 0;
    max-width: none;
  }
  .p-strength__list__item .Desc {
    flex-basis: 48%;
    align-self: center;
  }
  .p-strength__list__item .Desc h3 {
    line-height: 1.8;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .p-strength__title {
    font-size: 2.4em;
  }
  .p-strength__subtitle {
    font-size: 2em;
  }
  .p-strength__list__item {
    padding: 50px;
  }
}

.p-osusume {
  background-color: #fff;
}
.p-osusume__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 0;
}
.p-osusume__list__item {
  flex-basis: 100%;
  max-width: 300px;
  text-align: center;
}
.p-osusume__list__item .Icon {
  display: inline-block;
  background-color: #fdf7e1;
  aspect-ratio: 1/1;
  width: 50%;
  padding: 30px;
  border-radius: 50%;
}
.p-osusume__list__item .Icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-osusume__list__item h3 {
  margin-top: 8px;
  font-size: 1.2em;
}
.p-osusume__list__item h3 span {
  color: #4caf51;
}
@media screen and (min-width: 1280px) {
  .p-osusume__list__item {
    max-width: 360px;
  }
  .p-osusume__list__item .Icon {
    padding: 40px;
  }
  .p-osusume__list__item h3 {
    margin-top: 15px;
  }
}

.p-media {
  background: url(../images/home/img5.webp) no-repeat center/cover;
  position: relative;
  color: #fff;
}
.p-media::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #333333;
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0.5;
}
.p-media .c-container {
  position: relative;
  z-index: 10;
}
.p-media__desc h2 {
  font-size: 1.4em;
  padding-left: 20px;
  border-left: 3px solid #fff;
  margin-bottom: 20px;
}
.p-media__img {
  text-align: center;
}
.p-media__img img {
  display: inline-block;
  width: 80%;
  max-width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 600px) {
  .p-media .c-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
  }
  .p-media__img {
    flex-basis: 200px;
  }
  .p-media__img img {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .p-media {
    background-attachment: fixed;
  }
  .p-media .c-container {
    max-width: 800px;
    padding: 0;
  }
}

.c-flow .p-title {
  margin-bottom: 0;
}
.c-flow__list {
  max-width: 500px;
  margin: 0 auto;
  border: 5px solid #4caf51;
  background-color: #fff;
  border-top: none;
  padding: 30px 20px 10px;
}
.c-flow__list__item {
  margin-bottom: 30px;
}
.c-flow__list__item .Img {
  aspect-ratio: 3/2;
}
.c-flow__list__item .Desc {
  position: relative;
  padding-top: 30px;
}
.c-flow__list__item .Desc .num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  background-color: #ff923f;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 1.76rem;
  color: #fff;
  font-weight: bold;
}
.c-flow__list__item .Desc h3 {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
}
.c-flow__list__item .Desc h3::before {
  content: "";
  width: 60px;
  height: 4px;
  border-top: 1px solid #4caf51;
  border-bottom: 1px solid #4caf51;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-flow__list__item .Desc small {
  letter-spacing: 1px;
}
@media screen and (min-width: 600px) {
  .c-flow__list {
    max-width: 1200px;
    padding: 30px 20px 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .c-flow__list__item {
    flex-basis: 48%;
    margin-right: 4%;
  }
  .c-flow__list__item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-flow .c-container {
    padding: 0 2vw;
  }
  .c-flow__list {
    padding: 30px 20px 10px;
    display: flex;
    flex-wrap: wrap;
  }
  .c-flow__list__item {
    flex-basis: 31%;
    margin-right: 3.3%;
    margin-bottom: 40px;
  }
  .c-flow__list__item:nth-child(2n) {
    margin-right: 3.3%;
  }
  .c-flow__list__item:nth-child(3n) {
    margin-right: 0;
  }
  .c-flow__list__item .Desc .num {
    top: -25px;
    width: 50px;
    height: 50px;
    line-height: 40px;
    font-size: 2.08rem;
    border: 4px solid #fff;
  }
  .c-flow__list__item .Desc h3 {
    font-size: 1.76rem;
    padding-bottom: 15px;
    margin-bottom: 18px;
  }
  .c-flow__list__item .Desc p {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1500px) {
  .c-flow .c-container {
    padding: 0;
  }
}

.faq-contents__category {
  margin-bottom: 40px;
}
.faq-contents__category:last-child {
  margin-bottom: 0;
}
.faq-contents__category-title {
  font-weight: 600;
  font-size: 1.2em;
  color: #4caf51;
  border-bottom: 2px solid #4caf51;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.faq-contents .faq__item {
  margin-bottom: 15px;
}
.faq-contents .faq dt {
  position: relative;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0, 0, 0.58, 1);
  border: 1px solid #4caf51;
  background-color: #fff;
  font-weight: 600;
}
.faq-contents .faq dt::before {
  position: absolute;
  left: 0;
  content: "Q";
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: #4caf51;
  height: 100%;
  padding: 10px;
}
.faq-contents .faq dt span {
  margin-left: 9vw;
  margin-right: 6vw;
  line-height: 1.5;
  display: block;
  position: relative;
  padding: 20px 10px;
  font-size: 1.1em;
}
.faq-contents .faq dt .i_box {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.faq-contents .faq dt .i_box::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  border-top: 2px solid #4caf51;
  width: 16px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.faq-contents .faq dt .i_box::after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  border-left: 2px solid #4caf51;
  width: 0;
  height: 16px;
  top: 0;
  bottom: 0;
  right: 7px;
  transition: 0.3s;
}
.faq-contents .faq dd {
  position: relative;
  border-left: 1px solid #4caf51;
  border-right: 1px solid #4caf51;
  border-bottom: 1px solid #4caf51;
  background-color: #fff;
}
.faq-contents .faq dd::before {
  content: "A";
  position: absolute;
  top: 15px;
  left: 10px;
  bottom: 0;
  margin: auto;
  width: 12px;
  font-size: 22px;
  color: #ff923f;
  font-weight: bold;
}
.faq-contents .faq dd .m-description-article {
  display: block;
  line-height: 2;
  margin-left: 8vw;
  padding: 20px 20px 20px 10px;
}
.faq-contents .faq .more-btn {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .faq-contents .faq__item {
    margin-bottom: 20px;
  }
  .faq-contents .faq dt::before {
    font-size: 28px;
  }
  .faq-contents .faq dt span {
    margin-left: 6vw;
  }
  .faq-contents .faq dt span::after {
    width: 3vw;
  }
  .faq-contents .faq dd::before {
    top: 10px;
    font-size: 30px;
  }
  .faq-contents .faq dd .m-description-article {
    margin-left: 6vw;
  }
}
@media screen and (min-width: 1024px) {
  .faq-contents .faq {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-contents .faq__item {
    margin-bottom: 30px;
  }
  .faq-contents .faq dt span {
    margin-left: 50px;
    margin-right: 50px;
  }
  .faq-contents .faq dt span::after {
    height: 20px;
  }
  .faq-contents .faq dd .m-description-article {
    margin-left: 50px;
    padding: 20px 40px 20px 10px;
  }
  .faq-contents .faq .more-btn {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .faq-contents .faq {
    max-width: 1000px;
  }
}

.p-access__wrap {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.p-access__wrap .Logo {
  text-align: center;
  margin-bottom: 15px;
}
.p-access__wrap .Logo img {
  width: 80%;
  max-width: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-access__wrap .Desc dl {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #4caf51;
}
.p-access__wrap .Desc dl dt {
  color: #4caf51;
  border: 2px solid #4caf51;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 8px;
}
.p-access__map .g-map {
  aspect-ratio: 3/2;
}
.p-access__map .g-map iframe {
  width: 100%;
  height: 100%;
}
.p-access__map .more-btn {
  margin-top: 15px;
}
@media screen and (min-width: 600px) {
  .p-access__wrap {
    padding: 40px 30px;
    margin-bottom: 30px;
  }
  .p-access__wrap .Logo {
    margin-bottom: 20px;
  }
  .p-access__wrap .Desc {
    max-width: 450px;
    margin: 0 auto;
  }
  .p-access__wrap .Desc dl {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .p-access__wrap .Desc dl dt {
    padding: 12px 5px;
    margin-bottom: 0px;
    width: 100px;
    text-align: center;
    margin-right: 20px;
  }
  .p-access__wrap .Desc dl dd {
    flex: 1;
  }
  .p-access__map .g-map {
    aspect-ratio: 16/9;
  }
  .p-access__map .more-btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-access .view-pc {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-access .view-sp {
    display: none;
  }
  .p-access .c-container {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 58% 38%;
    gap: 0 4%;
  }
  .p-access .p-title {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  .p-access__wrap {
    grid-row: 2/3;
    grid-column: 1/2;
    margin-bottom: 0;
  }
  .p-access__wrap .Logo {
    margin-bottom: 30px;
  }
  .p-access__wrap .Logo img {
    max-width: 320px;
  }
  .p-access__wrap .Desc {
    max-width: none;
    margin: 0;
  }
  .p-access__map .g-map {
    aspect-ratio: auto;
    height: calc(100% - 95px);
  }
}

.p-link__list__item a {
  display: block;
  aspect-ratio: 3/1.5;
  position: relative;
  border-bottom: 2px solid #fff;
  padding: 25px 6vw;
  color: #fff;
  overflow: hidden;
}
.p-link__list__item a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
}
.p-link__list__item a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  transition: all 0.3s;
}
.p-link__list__item a .Desc {
  position: relative;
  z-index: 10;
}
.p-link__list__item a .Desc h3 {
  font-size: 1.7em;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 600;
}
.p-link__list__item a .Desc h4 {
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-left: 30px;
  position: relative;
}
.p-link__list__item a .Desc h4::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.p-link__list__item a:hover::before {
  transform: scale(1.1);
}
.p-link__list__item a:hover::after {
  opacity: 0.3;
}
.p-link__list__item:nth-child(1) a::before {
  background: url(../images/home/menu1.webp) no-repeat 50% 20%/cover;
}
.p-link__list__item:nth-child(2) a::before {
  background: url(../images/home/menu2.webp) no-repeat center/cover;
}
.p-link__list__item:nth-child(3) a::before {
  background: url(../images/home/menu3.webp) no-repeat center/cover;
}
.p-link__list__item:nth-child(4) a::before {
  background: url(../images/home/menu4.webp) no-repeat 50% 50%/cover;
}
.p-link__list__item:nth-child(5) a::before {
  background: url(../images/home/menu5.webp) no-repeat center/cover;
}
@media screen and (min-width: 600px) {
  .p-link__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-link__list__item a {
    border-right: 2px solid #fff;
    padding: 25px 30px;
  }
  .p-link__list__item:nth-child(2n) a {
    border-right: none;
  }
}
@media screen and (min-width: 1024px) {
  .p-link__list__item a {
    aspect-ratio: 3/1;
    padding: 30px 40px;
  }
  .p-link__list__item a .Desc h4 {
    padding-left: 40px;
  }
  .p-link__list__item a .Desc h4::before {
    width: 30px;
  }
}
@media screen and (min-width: 1280px) {
  .p-link__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-link__list__item a {
    aspect-ratio: 3/1.5;
  }
  .p-link__list__item:nth-child(2n) a {
    border-right: 2px solid #fff;
  }
}
@media screen and (min-width: 1500px) {
  .p-link__list {
    max-width: 1500px;
    margin: 0 auto;
  }
}

.p-contact {
  position: relative;
  background: url(../images/home/bg2.webp) no-repeat center/cover;
}
.p-contact__hours {
  margin-bottom: 30px;
  background-color: #fff;
  overflow: hidden;
  padding: 30px 15px;
  margin-left: -6vw;
  margin-right: -6vw;
}
.p-contact__hours table {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
  text-align: center;
}
.p-contact__hours th,
.p-contact__hours td {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 0.8em;
}
.p-contact__hours thead th {
  background-color: #e0e0e0;
  font-weight: 600;
}
.p-contact__hours thead th:first-child {
  text-align: left;
}
.p-contact__hours tbody th {
  background-color: #eee;
  font-weight: 500;
  white-space: nowrap;
  text-align: left;
}
.p-contact__hours__note {
  text-align: center;
  margin-top: 10px;
  font-size: 0.75em;
  color: #666666;
}
.p-contact__list .p-contact__wrap {
  padding: 30px 30px;
  text-align: center;
  border: 1px solid #fff;
}
.p-contact__list .p-contact__wrap .txt {
  margin-bottom: 20px;
  font-weight: 600;
}
.p-contact__list .p-contact__wrap:first-child {
  border-bottom: none;
}
.p-contact__list .p-contact__wrap:first-child .caution {
  margin-top: 5px;
  letter-spacing: 1px;
}
.p-contact__tel {
  padding: 0 10px;
  height: 70px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 100;
  border-radius: 9999px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 320px;
}
.p-contact__tel a {
  color: #333333;
  font-size: 22px;
  position: relative;
  padding-left: 15px;
  font-weight: 600;
}
.p-contact__tel a::before {
  position: absolute;
  top: 0;
  left: -15px;
  bottom: 0;
  margin: auto;
  content: "";
  height: 25px;
  width: 25px;
  background-image: url(../images/common/icon-tel.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.p-contact__tel#bnr3 {
  background-color: #00b902;
}
.p-contact__tel#bnr3 a {
  font-size: 18px;
  padding-left: 20px;
  color: #fff;
}
.p-contact__tel#bnr3 a::before {
  width: 32px;
  height: 32px;
  left: -20px;
  background-image: url(../images/common/line-wh.svg);
}
@media screen and (min-width: 768px) {
  .p-contact__hours {
    padding: 40px 30px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 10px;
  }
  .p-contact__hours table {
    max-width: 700px;
  }
  .p-contact__hours th,
  .p-contact__hours td {
    padding: 12px;
    font-size: 1em;
  }
  .p-contact__hours__note {
    margin-top: 15px;
    font-size: 0.85em;
  }
  .p-contact__list .p-contact__wrap {
    padding: 30px 20px;
  }
  .p-contact__list .p-contact__wrap .txt {
    margin-bottom: 20px;
    line-height: 2;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact__hours {
    padding: 50px 30px;
  }
  .p-contact__hours table {
    max-width: 800px;
  }
  .p-contact__hours th,
  .p-contact__hours td {
    padding: 15px;
  }
  .p-contact__list {
    display: flex;
  }
  .p-contact__list .p-contact__wrap {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-contact__list .p-contact__wrap:first-child {
    border-bottom: 1px solid #fff;
    border-right: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-contact__list {
    max-width: 1200px;
    margin: 0 auto;
  }
  .p-contact__list .p-contact__wrap {
    padding: 40px 20px;
  }
}

.c-staff__list {
  margin: 0 -3vw;
}
.c-staff__list__item {
  border: 1px solid #4caf51;
  background-color: #fff;
  padding: 20px 20px 30px;
}
.c-staff__list__item .Img {
  margin-bottom: 20px;
}
.c-staff__list__item h4 {
  font-size: 1.2em;
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.c-staff__list__item h4::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #4caf51;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.c-staff__list__item .Status .name {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-staff__list__item .Status .name .role {
  font-size: 1.1em;
}
.c-staff__list__item .Status .name .ja {
  font-size: 1.8em;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.c-staff__list__item .Status .name .en {
  color: #4caf51;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  .c-staff__list {
    margin: 0;
  }
  .c-staff__list__item {
    padding: 30px;
  }
  .c-staff__list__item .Status .name {
    margin-bottom: 25px;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .c-staff__list {
    margin: 0 -4vw;
  }
  .c-staff__list__item {
    display: flex;
    justify-content: space-between;
  }
  .c-staff__list__item .Img {
    flex-basis: 38%;
    max-width: none;
    margin: 0;
    align-self: flex-start;
  }
  .c-staff__list__item .Wrap {
    flex-basis: 58%;
  }
  .c-staff__list__item h4 {
    padding-left: 30px;
    margin-bottom: 15px;
  }
  .c-staff__list__item h4::before {
    width: 18px;
    height: 3px;
  }
  .c-staff__list__item .Status .name {
    margin: 20px 0 40px;
    justify-content: start;
  }
}
@media screen and (min-width: 1200px) {
  .c-staff__list {
    margin: 0;
  }
}

.c-price__table {
  margin-bottom: 15px;
}
.c-price__table table {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-collapse: collapse;
}
.c-price__table table th,
.c-price__table table td {
  border: 1px solid #ccc;
  padding: 12px 15px;
  font-size: 1em;
  line-height: 1.5;
}
.c-price__table table th {
  background-color: #4caf51;
  color: #fff;
  text-align: left;
  width: 62%;
  font-weight: 600;
}
.c-price__table table td {
  background-color: #fff;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.c-price__table table td.caution {
  font-weight: 400;
  font-size: 0.9em;
  text-align: left;
  white-space: normal;
}
.c-price__caution {
  max-width: 560px;
  margin: 0 auto;
}
.c-price__caution p {
  margin-bottom: 5px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.95em;
}
@media screen and (min-width: 600px) {
  .c-price__table table th,
  .c-price__table table td {
    font-size: 1.2em;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 1024px) {
  .c-price__table table {
    max-width: 720px;
  }
  .c-price__table table th,
  .c-price__table table td {
    font-size: 1.4em;
    padding: 25px 20px;
  }
  .c-price__table table th {
    width: 55%;
  }
  .c-price__caution {
    text-align: center;
    max-width: none;
  }
}

.c-traffic__img {
  margin-bottom: 15px;
}
.c-traffic__img img {
  border-radius: 10px;
}
.c-traffic__desc {
  background-color: #fff;
  padding: 30px;
}
.c-traffic-wrap .p-title {
  text-align: center;
}
.c-traffic-wrap .c-traffic__lead {
  font-weight: 600;
  margin-bottom: 15px;
}
.c-traffic-wrap .c-traffic__desc {
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .c-traffic-wrap .c-traffic__desc {
    padding: 30px;
  }
  .c-traffic-wrap .c-traffic__desc .p-worry__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .c-traffic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
  .c-traffic > .c-title {
    grid-column: 1/-1;
  }
  .c-traffic__img {
    margin-bottom: 0;
  }
  .c-traffic__desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.c-traffic__symptoms {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}
.c-traffic__symptoms li {
  flex: 1;
  max-width: 130px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ff923f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1em;
  padding: 10px;
  line-height: 1.3;
}
.c-traffic__points {
  display: grid;
  gap: 10px;
  margin: 25px 0;
}
.c-traffic__points li {
  background-color: #4caf51;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.15em;
  padding: 15px;
  border-radius: 8px;
}
.c-traffic__points li:nth-child(2n) {
  background-color: #ff923f;
}
@media screen and (min-width: 1024px) {
  .c-traffic__points {
    margin: 45px 0;
  }
}
.c-traffic__note {
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .c-traffic__note {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 600px) {
  .c-traffic__symptoms {
    gap: 20px;
  }
  .c-traffic__symptoms li {
    max-width: 150px;
    font-size: 1.1em;
  }
  .c-traffic__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .c-traffic__points li {
    font-size: 1.2em;
  }
}

.c-accident-message__text {
  line-height: 2;
}

@keyframes accident-arrow-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
.c-accident-banner {
  text-align: center;
}
.c-accident-banner__arrow {
  width: 0;
  height: 0;
  margin: 0 auto 15px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 26px solid #dc1206;
  animation: accident-arrow-bounce 1.4s ease-in-out infinite;
}
.c-accident-banner__lead {
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 20px;
}
.c-accident-banner__box {
  background-color: #fff;
  border: 3px solid #dc1206;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(220, 18, 6, 0.3);
}
.c-accident-banner__box__title {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(255, 25.4373831776, 11.8) 0%, rgb(226, 12.6728971963, 0) 45%, rgb(130.6371681416, 10.6884955752, 3.5628318584) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  padding: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.c-accident-banner__box__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: sp-nav-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.c-accident-banner__box__inner {
  padding: 30px 20px;
}
.c-accident-banner__box__inner .Img {
  margin-bottom: 20px;
}
.c-accident-banner__box__inner .Img img {
  border-radius: 12px;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  display: block;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
.c-accident-banner__box__inner p {
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.05em;
}
@media screen and (min-width: 768px) {
  .c-accident-banner__box__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    padding: 35px;
  }
  .c-accident-banner__box__inner .Img {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .c-accident-banner__box__inner .Img img {
    max-width: 240px;
  }
}

.c-anshin__list {
  display: grid;
  gap: 25px;
}
.c-anshin__list__item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(51, 51, 51, 0.3019607843);
  padding: 25px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-anshin__list__item .num {
  position: absolute;
  top: -14px;
  left: 20px;
  background-color: #ff923f;
  color: #fff;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 0.9em;
}
.c-anshin__list__item .Img {
  flex-shrink: 0;
}
.c-anshin__list__item .Img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-anshin__list__item .Desc {
  font-weight: 600;
  line-height: 1.6;
}
.c-anshin__list__item .Desc span {
  color: #dc1206;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .c-anshin__list__item {
    padding: 25px 30px;
  }
  .c-anshin__list__item .Img img {
    width: 110px;
    height: 110px;
  }
}

.c-voice-sl__item {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.c-voice-sl__item .Icon {
  margin-bottom: 20px;
}
.c-voice-sl__item .Icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-voice-sl__item .Desc .p-voice__title {
  font-weight: 600;
  font-size: 1.3em;
  margin-bottom: 10px;
}
.c-voice-sl__item .Desc .p-voice__attr {
  display: block;
  margin-top: 15px;
  color: #888;
  font-size: 1em;
  font-weight: 400;
}
.c-voice-sl__block {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px dashed #ccc;
}
.c-voice-sl__block h4 {
  font-weight: 600;
  color: #4caf51;
  margin-bottom: 8px;
}
.c-voice-sl__block p {
  white-space: pre-line;
}
.c-voice-sl__link {
  text-align: center;
  margin-top: 30px;
}
.c-voice-sl__link a {
  display: inline-block;
  color: #4caf51;
  font-weight: 600;
  text-decoration: underline;
}
.c-voice-sl__link a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .c-voice-sl__item {
    display: flex;
    gap: 70px;
    max-width: none;
    margin-bottom: 50px;
  }
  .c-voice-sl__item .Icon {
    flex-basis: 40%;
    margin-bottom: 0;
  }
  .c-voice-sl__item .Desc {
    flex: 1;
  }
}
@media screen and (min-width: 1280px) {
  .c-voice-sl__item .Desc .p-voice__title {
    font-size: 1.5em;
  }
  .c-voice-sl__item .Desc .p-voice__attr {
    font-size: 1.1em;
  }
}

.c-news-list__item {
  border-bottom: 1px solid #ddd;
}
.c-news-list__item:first-child {
  border-top: 1px solid #ddd;
}
.c-news-list__link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 16px 5px;
  color: #333333;
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .c-news-list__link:hover {
    color: #4caf51;
  }
}
.c-news-list__date {
  color: #aaa;
  font-size: 12px;
  flex-shrink: 0;
}
.c-news-list__cate {
  display: inline-block;
  flex-shrink: 0;
  font-size: 12px;
  color: #fff;
  background-color: #ff923f;
  padding: 4px 12px;
  border-radius: 3px;
}
.c-news-list__title {
  flex-basis: 100%;
  width: 100%;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .c-news-list__link {
    padding: 22px 10px;
  }
  .c-news-list__date {
    font-size: 14px;
  }
  .c-news-list__cate {
    font-size: 15px;
    padding: 6px 16px;
  }
  .c-news-list__title {
    font-size: 1.1em;
  }
}

.p-news .more-btn {
  margin-top: 40px;
}
.p-news .category-list {
  margin-top: 30px;
  padding: 30px 0;
  background-color: #fff;
}
.p-news .category-list h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
.p-news .category-list ul {
  padding: 0 6vw;
  max-width: 600px;
  margin: 0 auto;
}
.p-news .category-list li {
  border-bottom: 1px solid #ddd;
}
.p-news .category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  color: #333333;
}
.p-news .category-list li a::after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(45deg);
}
.p-news .category-list li.current-cat a {
  color: #4caf51;
  font-weight: 600;
}
.p-news .category-list li.current-cat a::after {
  border-color: #4caf51;
}
@media screen and (min-width: 768px) {
  .p-news .more-btn {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .p-news .c-news-list {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news.c-news {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 40px;
  }
  .p-news.c-news .c-container {
    order: 1;
    flex: 1;
    min-width: 0;
    padding: 0 6vw 0 0;
  }
  .p-news .category-list {
    order: 2;
    flex: 0 0 280px;
    padding: 30px;
    border: 1px solid #ddd;
    margin-top: 0;
  }
  .p-news .category-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .p-news .category-list ul {
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .p-news .category-list li a {
    padding: 16px 5px;
    font-size: 1em;
  }
  .p-news .category-list li a::after {
    width: 8px;
    height: 8px;
  }
}
@media screen and (min-width: 1500px) {
  .p-news.c-news {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news .c-container {
    padding: 0;
  }
  .p-news .category-list {
    flex: 0 0 360px;
  }
}

.pagination {
  margin: clamp(40px, 8vw, 80px) 0 0;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2px, 1vw, 10px);
  list-style: none;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 5vw, 48px);
  height: clamp(36px, 5vw, 48px);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  color: #949494;
  transition: color 0.2s ease;
}
.pagination a.page-numbers.current,
.pagination span.page-numbers.current {
  color: #4caf51;
  border-bottom: 2px solid #4caf51;
}
.pagination a.page-numbers.dots,
.pagination span.page-numbers.dots {
  cursor: default;
}
.pagination a.page-numbers.prev, .pagination a.page-numbers.next,
.pagination span.page-numbers.prev,
.pagination span.page-numbers.next {
  color: #333333;
}
.pagination a.page-numbers.prev::before, .pagination a.page-numbers.next::before,
.pagination span.page-numbers.prev::before,
.pagination span.page-numbers.next::before {
  content: "";
  display: block;
  width: clamp(6px, 1vw, 9px);
  height: clamp(6px, 1vw, 9px);
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.pagination a.page-numbers.prev::before,
.pagination span.page-numbers.prev::before {
  transform: rotate(-135deg) translate(-1px, 1px);
}
.pagination a.page-numbers.next::before,
.pagination span.page-numbers.next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}
.pagination a.page-numbers:not(.current) {
  transition: all 0.2s ease;
}
@media (hover: hover) {
  .pagination a.page-numbers:not(.current):hover {
    color: #4caf51;
  }
}

.c-news-sl {
  background-color: #fff;
}
.c-news-sl__tit {
  font-weight: 600;
}
.c-news-sl__tit p {
  font-size: 1.3em;
}
.c-news-sl__date {
  color: #666666;
  font-weight: 400;
}
.c-news-sl__contents {
  padding: 10vw 0;
  line-height: 2.5;
}
.c-news-sl__link {
  text-align: right;
  font-size: 1.1em;
  font-weight: 600;
}
.c-news-sl__link a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #ff923f;
}
.c-news-sl__link a span {
  color: #333333;
}
@media screen and (min-width: 600px) {
  .c-news-sl__contents {
    padding: 5vw 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-news-sl .c-container {
    max-width: 800px;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .c-news-sl__contents {
    padding: 3vw 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-news-sl .c-container {
    max-width: 1000px;
  }
  .c-news-sl__contents {
    padding: 2vw 0;
  }
}
@media screen and (min-width: 1500px) {
  .c-news-sl__contents {
    padding: 50px 0;
  }
}

.wp-categories {
  margin-bottom: 15px;
}
.wp-categories ul {
  display: flex;
}
.wp-categories ul li {
  margin-right: 10px;
}
.wp-categories ul li a {
  color: #fff;
  background-color: #ff923f;
  padding: 5px 15px;
  border-radius: 3px;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .wp-categories ul li a {
    font-size: 15px;
  }
}

.c-privacy-title {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 50px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-privacy-title br {
    display: none;
  }
}
.c-privacy h2 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 15px;
}
.c-privacy .List {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}
.c-privacy .List li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 1024px) {
  .c-privacy-title {
    font-size: 2em;
    margin-bottom: 70px;
  }
  .c-privacy h2 {
    font-size: 1.4em;
  }
  .c-privacy .List {
    margin-top: 30px;
    gap: 12px;
  }
  .c-privacy-desc {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=style.css.map */