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

* {
  margin: 0;
}

:root {
  --ease-smooth: cubic-bezier(0, .34, .39, .65);
  --item-margin-inline: calc(50% - 1582.08*1px / 2);
  --mv-anim-delay: 0.3s;
}
@media screen and (max-width: 1919px) {
  :root {
    --item-margin-inline: 8.79%;
  }
}
@media screen and (max-width: 1366px) {
  :root {
    --item-margin-inline: 8.78%;
    --item-margin-inline: clamp(30px, -85.5852842809px + 15.0501672241vw, 120px);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --item-margin-inline: 5.33vw;
  }
}

html,
body {
  font-size: 16px;
}

html {
  min-height: 100%;
}

body {
  font-family: "Zen Old Mincho", serif;
  color: #333;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

img, picture, svg {
  display: block;
}

a {
  color: inherit;
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  br.u-sp {
    display: inline !important;
  }
}

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

.main {
  max-width: 100%;
  overflow-x: clip;
}

.anim-scale-in {
  opacity: 0;
}
.anim-scale-in.js-animate {
  animation-name: keyScaleIn;
  animation-duration: 5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-scale-in {
  opacity: 1;
}
@media print {
  .anim-scale-in {
    opacity: 1;
  }
}

@keyframes keyScaleIn {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.anim-fade {
  opacity: 0;
}
.anim-fade.js-animate, .mv.js-animate .anim-fade {
  animation-name: keyFade;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade {
  opacity: 1;
}
@media print {
  .anim-fade {
    opacity: 1;
  }
}

@keyframes keyFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim-fade-left,
.anim-fade-right {
  opacity: 0;
}
.anim-fade-left.js-animate,
.anim-fade-right.js-animate {
  animation-name: keyFadeLeft;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade-left,
html:not(.js-enabled) .anim-fade-right {
  opacity: 1;
}
@media print {
  .anim-fade-left,
  .anim-fade-right {
    opacity: 1;
  }
}

.anim-fade-right.js-animate {
  animation-name: keyFadeRight;
}

@keyframes keyFadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-2%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes keyFadeRight {
  0% {
    opacity: 0;
    transform: translateX(2%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.anim-fade-in-left {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
.anim-fade-in-left.js-animate {
  animation-name: keyFadeInLeft;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade-in-left {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
@media print {
  .anim-fade-in-left {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes keyFadeInLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.anim-fade-in-right {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
}
.anim-fade-in-right.js-animate {
  animation-name: keyFadeInRight;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade-in-right {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
@media print {
  .anim-fade-in-right {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes keyFadeInRight {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.anim-fade-in-up {
  opacity: 0;
  transform: translateY(5%);
}
.anim-fade-in-up.js-animate {
  animation-name: keyFadeInUp;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade-in-up {
  opacity: 1;
  transform: none;
}
@media print {
  .anim-fade-in-up {
    opacity: 1;
    transform: none;
  }
}

@keyframes keyFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fade-in-blur {
  filter: blur(10px);
  opacity: 0;
}
.anim-fade-in-blur.js-animate, .mv.js-animate .anim-fade-in-blur {
  animation-name: keyFadeInBlur;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-fade-in-blur {
  opacity: 1;
  filter: none;
}
@media print {
  .anim-fade-in-blur {
    opacity: 1;
    filter: none;
  }
}

@keyframes keyFadeInBlur {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  99% {
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
.anim-paper-left,
.anim-paper-right {
  opacity: 0;
  transform-origin: center center;
}
.anim-paper-left.js-animate,
.anim-paper-right.js-animate {
  animation-name: paperDropInLeft;
  animation-duration: 1.7s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-paper-left,
html:not(.js-enabled) .anim-paper-right {
  opacity: 1;
}
@media print {
  .anim-paper-left,
  .anim-paper-right {
    opacity: 1;
  }
}

.anim-paper-right.js-animate {
  animation-name: paperDropInRight;
}

@keyframes paperDropInLeft {
  0% {
    opacity: 0;
    transform: translate(-1%, -2%) rotate(-1.5deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@keyframes paperDropInRight {
  0% {
    opacity: 0;
    transform: translate(1%, -2%) rotate(1.5deg) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
.anim-flip {
  perspective: 1000px;
}
.anim-flip > * {
  opacity: 0;
  transform-origin: center center;
  backface-visibility: hidden;
}
html:not(.js-enabled) .anim-flip > * {
  opacity: 1;
}
@media print {
  .anim-flip > * {
    opacity: 1;
  }
}
.anim-flip.js-animate > *, .js-animate .anim-flip > * {
  animation: keyFlip 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes keyFlip {
  0% {
    opacity: 0;
    transform: rotateY(300deg);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.anim-clip {
  opacity: 0;
  --clip-path: inset(0 100% 0 0);
  --clip-transform: none;
  --clip-duration: 2s;
  --clip-delay: 0s;
}
.anim-clip.js-animate, .mv.js-animate .anim-clip {
  animation-name: keyClip;
  animation-duration: var(--clip-duration);
  animation-delay: var(--clip-delay);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .anim-clip {
  opacity: 1;
}
@media print {
  .anim-clip {
    opacity: 1;
  }
}

@keyframes keyClip {
  0% {
    opacity: 0;
    clip-path: var(--clip-path);
    transform: var(--clip-transform);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
  }
}
.mv {
  overflow: hidden;
}
.mv__main {
  position: relative;
  overflow: hidden;
}
.mv__bg {
  background: #EDF2F0;
}
.mv__bg img {
  width: 100%;
  opacity: 0;
  transform: scale(1.1);
  transition: transform 8s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.8s linear;
}
.mv.js-animate .mv__bg img, html:not(.js-enabled) .mv__bg img {
  opacity: 1;
  transform: scale(1);
}
@media print {
  .mv__bg img {
    opacity: 1;
    transform: scale(1);
  }
}
.mv__logo {
  position: absolute;
  left: 1.68vw;
  top: 1.68vw;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    left: auto;
    right: 3.2vw;
    top: 4.26vw;
  }
}
.mv__logo img {
  width: 10.9vw;
}
@media screen and (max-width: 768px) {
  .mv__logo img {
    width: 26.26vw;
  }
}
.mv__txt-area {
  position: absolute;
  right: 7.46vw;
  top: 17.05vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mv__txt-area {
    top: auto;
    bottom: 6.93vw;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
  }
}
.mv__lead {
  position: relative;
  margin-inline: auto;
  width: 31.33vw;
  height: 4.09vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mv__lead {
    width: 61.6vw;
    height: 7.6vw;
  }
}
.mv__lead::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  left: 100%;
  background: #8cb8df;
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0% 100%);
  opacity: 0;
  transition: left 1s cubic-bezier(0.16, 1, 0.3, 1) calc(0.4s + var(--mv-anim-delay)), opacity 1s cubic-bezier(0.16, 1, 0.3, 1) calc(0.4s + var(--mv-anim-delay));
}
.mv.js-animate .mv__lead::before, html:not(.js-enabled) .mv__lead::before {
  opacity: 1;
  left: 0;
}
@media print {
  .mv__lead::before {
    opacity: 1;
    left: 0;
  }
}
.mv__lead span {
  display: block;
  opacity: 0;
  width: 82.47%;
  position: relative;
  margin-inline: 1.86% 0;
}
@media screen and (max-width: 768px) {
  .mv__lead span {
    margin-inline: auto;
  }
}
.mv.js-animate .mv__lead span {
  animation-name: keyFadeInLeft;
  animation-duration: 1s;
  animation-delay: calc(0.4s + var(--mv-anim-delay));
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
html:not(.js-enabled) .mv__lead span {
  opacity: 1;
}
@media print {
  .mv__lead span {
    opacity: 1;
  }
}
.mv__lead span img {
  width: 100%;
}
.mv__ttl-01 {
  margin-top: 2.85vw;
  margin-inline: auto;
  width: 41.65vw;
}
@media screen and (max-width: 768px) {
  .mv__ttl-01 {
    margin-top: 3.2vw;
    width: 90.13vw;
  }
}
.mv__ttl-01 img {
  width: 100%;
}
.mv__ttl-02 {
  position: relative;
  margin-top: 1.9vw;
  right: 0.43vw;
  margin-inline: auto;
  width: 20.42vw;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .mv__ttl-02 {
    margin-top: 5.06vw;
    right: -1.34vw;
    width: 42.93vw;
  }
}
.mv__ttl-02 img {
  width: 100%;
}
.mv__ttl-line {
  position: relative;
  right: 1.02vw;
  margin-top: -1.25vw;
  margin-inline: auto;
  width: 23.64vw;
  --clip-duration: 1.4s;
  --clip-delay: calc(1.4s + var(--mv-anim-delay));
}
@media screen and (max-width: 768px) {
  .mv__ttl-line {
    margin-top: -2.14vw;
    width: 50.13vw;
    right: 0.53vw;
  }
}
.mv__ttl-line img {
  width: 100%;
}
.mv__text {
  margin-top: min(8.05vw, 110px);
  font-size: 1.12rem;
  font-size: clamp(18px, 15.5342960289px + 0.1805054152vw, 19px); /* 18px @1366px - 19px @1920px */
  line-height: 3.111;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv__text {
    margin-top: 55px;
    font-size: 1rem;
    font-size: clamp(16px, 14.0916030534px + 0.5089058524vw, 18px); /* 16px @375px - 18px @768px */
    line-height: 2.188;
  }
}
@media screen and (max-width: 374px) {
  .mv__text {
    margin-inline: var(--item-margin-inline);
    font-size: max(13.76px, 4.26vw);
  }
}
.mv__text p {
  width: max-content;
  display: inline-block;
  max-width: 100%;
}
.mv.js-animate .mv__ttl-01 {
  animation-duration: 2.2s;
  animation-delay: calc(0.7s + var(--mv-anim-delay));
}
.mv.js-animate .mv__ttl-02 {
  animation-duration: 2.2s;
  animation-delay: calc(1s + var(--mv-anim-delay));
}

.index {
  margin-top: min(12.22vw, 167px);
}
@media screen and (max-width: 768px) {
  .index {
    margin-top: min(5.19vw, 71px);
  }
}
.index__list {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: 0;
  list-style-type: none;
  width: 800px;
  width: clamp(800px, 58.56vw, 1125.12px);
  max-width: 90%;
  font-size: 22px;
  font-size: clamp(22px, 1.61vw, 30.72px);
  gap: 0 5%;
}
@media screen and (max-width: 768px) {
  .index__list {
    display: none;
  }
}
.index__item a {
  display: block;
  text-decoration: none !important;
}
.index__item a:hover .index__img img {
  transform: scale(1.02);
}
.index__img {
  overflow: hidden;
  position: relative;
}
.index__img img {
  width: 100%;
  transition: transform 0.4s;
}
.index__num {
  margin-top: 8.33%;
}
.index__num img {
  width: 1.36em;
  margin-inline: auto;
}
.index__sub-ttl {
  margin-top: 0.92em;
  font-size: 0.63em;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}
.index__main-ttl {
  margin-top: 0.4em;
  font-size: 1em;
  text-align: center;
  color: #5C7A99;
}
.index__item:nth-child(2) .index__main-ttl {
  color: #D5B680;
}
.index__item:nth-child(3) .index__main-ttl {
  color: #4E806E;
}

.layout-a.item__bg-area::before, .item__bg-area.layout-b::before,
.layout-a .item__bg-area::before,
.layout-b .item__bg-area::before {
  content: "";
  top: 0;
  right: 0;
  left: var(--item-margin-inline);
  margin-left: 192px;
  padding-bottom: 1065.6px;
  margin-top: 53.76px;
}
@media screen and (max-width: 1920px) {
  .layout-a.item__bg-area::before, .item__bg-area.layout-b::before,
  .layout-a .item__bg-area::before,
  .layout-b .item__bg-area::before {
    margin-left: 10.02%;
    padding-bottom: 55.49%;
    margin-top: 2.78%;
  }
}
@media screen and (max-width: 1365px) {
  .layout-a.item__bg-area::before, .item__bg-area.layout-b::before,
  .layout-a .item__bg-area::before,
  .layout-b .item__bg-area::before {
    padding-bottom: clamp(480px, 122.9698996656px + 46.4882943144vw, 758px);
  }
}
@media screen and (max-width: 768px) {
  .layout-a.item__bg-area::before, .item__bg-area.layout-b::before,
  .layout-a .item__bg-area::before,
  .layout-b .item__bg-area::before {
    content: none;
  }
}
.layout-a .item__inner, .layout-b .item__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .layout-a .item__inner, .layout-b .item__inner {
    flex-direction: column;
  }
}
@supports (display: contents) {
  @media screen and (max-width: 768px) {
    .layout-a .item__photo-area, .layout-b .item__photo-area, .layout-a .item__txt-area, .layout-b .item__txt-area, .layout-a .item__txt, .layout-b .item__txt {
      display: contents;
    }
    .layout-a .item__ttl, .layout-b .item__ttl {
      order: 2;
    }
    .layout-a .item__desc, .layout-b .item__desc {
      order: 4;
    }
    .layout-a .item__photo-main, .layout-b .item__photo-main {
      order: 1;
    }
    .layout-a .item__photo-sub, .layout-b .item__photo-sub {
      order: 3;
    }
    .layout-a .link, .layout-b .link {
      order: 5;
    }
  }
}

.layout-b .item__bg-area::before, .layout-b.item__bg-area::before {
  right: var(--item-margin-inline);
  left: 0;
  margin-inline: 0 192px;
}
@media screen and (max-width: 1920px) {
  .layout-b .item__bg-area::before, .layout-b.item__bg-area::before {
    margin-inline: 0 10.02%;
  }
}
.layout-b .item__bg-area.js-animate::before, .layout-b.item__bg-area.js-animate::before {
  animation-name: keyFadeInLeft;
}
.layout-b .item__inner {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .layout-b .item__inner {
    flex-direction: column;
  }
}
.layout-b .item__txt {
  margin-inline: 0 auto;
}
.layout-b.item .link {
  margin-left: auto;
}

.layout-d .item__bg-area::before, .layout-c .item__bg-area::before, .item__bg-area.layout-d::before, .item__bg-area.layout-c::before {
  content: "";
  top: 0;
  left: 0;
  right: var(--item-margin-inline);
  margin-right: 192px;
  margin-top: 251.52px;
  padding-bottom: 558.72px;
}
@media screen and (max-width: 1920px) {
  .layout-d .item__bg-area::before, .layout-c .item__bg-area::before, .item__bg-area.layout-d::before, .item__bg-area.layout-c::before {
    margin-right: 10.02%;
    margin-top: 13.1%;
    padding-bottom: 29.13%;
  }
}
@media screen and (max-width: 1365px) {
  .layout-d .item__bg-area::before, .layout-c .item__bg-area::before, .item__bg-area.layout-d::before, .item__bg-area.layout-c::before {
    margin-top: clamp(130px, 47.8060200669px + 10.7023411371vw, 194px);
    padding-bottom: 420px;
  }
}
@media screen and (max-width: 768px) {
  .layout-d .item__bg-area::before, .layout-c .item__bg-area::before, .item__bg-area.layout-d::before, .item__bg-area.layout-c::before {
    content: none;
  }
}
.layout-d .item__bg-area.js-animate::before, .layout-c .item__bg-area.js-animate::before, .item__bg-area.js-animate.layout-d::before, .item__bg-area.js-animate.layout-c::before {
  animation-name: keyFadeInLeft;
}
.layout-d .item__inner, .layout-c .item__inner {
  align-items: flex-start;
}
.layout-d .item__txt, .layout-c .item__txt {
  margin-inline: 0 auto;
}
.item.layout-d .link, .item.layout-c .link {
  margin-top: 15.31%;
}
@media screen and (max-width: 768px) {
  .item.layout-d .link, .item.layout-c .link {
    margin-top: 0;
  }
}

.layout-c .item__bg-area::before, .layout-c.item__bg-area::before {
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}
.layout-c .item__inner {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .layout-c .item__photo-main .item__icon {
    left: auto;
    right: 1.33%;
  }
}
@media screen and (max-width: 768px) {
  .layout-c .item__photo-full {
    display: none;
  }
}
.layout-c.item .link {
  margin-top: 6.94%;
}
@media screen and (max-width: 768px) {
  .layout-c.item .link {
    margin-top: 0;
  }
}
@supports (display: contents) {
  @media screen and (max-width: 768px) {
    .layout-c {
      display: flex;
    }
    .layout-c .item__bg-area, .layout-c .item__inner, .layout-c .item__txt-area, .layout-c .item__txt {
      display: contents !important;
    }
    .layout-c .item__ttl {
      order: 2;
    }
    .layout-c .item__photo-area {
      order: 1;
    }
    .layout-c .item__desc {
      order: 3;
    }
    .layout-c .link {
      order: 4;
    }
  }
}

.layout-d .item__bg-area, .layout-d.item__bg-area {
  padding-bottom: 38px;
  padding-bottom: clamp(38px, -0.8594945848px + 2.844765343vw, 53.76px);
}
@media screen and (max-width: 768px) {
  .layout-d .item__bg-area, .layout-d.item__bg-area {
    padding-bottom: 0;
  }
}
.layout-d .item__bg-area::before, .layout-d.item__bg-area::before {
  content: "";
  left: var(--item-margin-inline);
  right: 0;
  bottom: 0;
  margin-left: 192px;
  margin-right: 0;
  margin-top: 53.76px;
}
@media screen and (max-width: 1920px) {
  .layout-d .item__bg-area::before, .layout-d.item__bg-area::before {
    margin-left: 10.02%;
    margin-top: 2.78%;
  }
}
@media screen and (max-width: 768px) {
  .layout-d .item__bg-area::before, .layout-d.item__bg-area::before {
    content: none;
  }
}
.layout-d .item__bg-area.js-animate::before, .layout-d.item__bg-area.js-animate::before {
  animation-name: keyFadeInRight;
}
.layout-d .item__inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .layout-d .item__inner {
    flex-direction: column;
  }
}
.layout-d .item__txt-area {
  width: 41.82%;
}
.layout-d .item__photo-area {
  margin-left: -3.56%;
}
@media screen and (max-width: 1365px) {
  .layout-d .item__photo-area {
    margin-left: clamp(0px, 51.4572864322px + -6.7001675042vw, -40px);
  }
}
.layout-d.item .link {
  margin-left: 0;
}
@supports (display: contents) {
  @media screen and (max-width: 768px) {
    .layout-d .item__txt-area, .layout-d .item__txt {
      display: contents;
    }
    .layout-d .item__ttl {
      order: 2;
    }
    .layout-d .item__photo-area {
      order: 1;
    }
    .layout-d .item__desc {
      order: 3;
    }
    .layout-d .link {
      order: 4;
    }
  }
}

.layout-d--shift-photo .item__photo-main {
  position: relative;
  left: max(-2.93vw, -0.029px);
}
.layout-d--shift-photo .item__desc {
  margin-right: max(-2.93vw, -0.029px);
}

@supports not (display: contents) {
  @media screen and (max-width: 768px) {
    .item .item__txt {
      margin-block: 0 30px;
    }
    .item .item__photo-area {
      width: 100%;
    }
    .item.layout-d .item__inner {
      flex-direction: column-reverse;
    }
    .item.layout-d .item__txt-area {
      width: 100%;
    }
    .item .link {
      padding-top: 0 !important;
      margin-top: 30px !important;
    }
  }
}

.sec {
  margin-top: 178px;
  margin-top: clamp(178px, 13.03vw, 249.6px);
  scroll-margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .sec {
    margin-top: max(87px, 23.2vw);
  }
}

.sec-header {
  position: relative;
  font-size: 3rem;
  font-size: clamp(48px, 3.51vw, 67.2px);
}
@media screen and (max-width: 768px) {
  .sec-header {
    font-size: min(9.6vw, 2.25rem);
    font-size: clamp(36px, 27.4122137405px + 2.2900763359vw, 45px);
  }
}
.sec-header__point {
  position: relative;
  margin-inline: auto;
  width: 72px;
  width: clamp(72px, -1.3793501805px + 5.3718411552vw, 101.76px);
  right: -0.4%;
}
@media screen and (max-width: 768px) {
  .sec-header__point {
    width: 1.86em;
    right: 0;
  }
}
.sec-header__point::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  margin-bottom: 91.66%;
  right: 58.33%;
  width: 95.83%;
  padding-bottom: 80%;
  background: #fff;
  border-bottom: 1px solid transparent;
  transform-origin: right bottom;
  transform: rotate(-30deg);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s, border-bottom-color 0.7s linear 0.25s;
}
@media screen and (max-width: 768px) {
  .sec-header__point::after {
    margin-bottom: 97.01%;
    right: 38.8%;
    width: 134.32%;
  }
}
.sec-header.js-animate .sec-header__point::after, html:not(.js-enabled) .sec-header__point::after {
  transform: rotate(-45deg);
  border-bottom-color: #5C7A99;
}
#pattern .sec-header.js-animate .sec-header__point::after, #pattern html:not(.js-enabled) .sec-header__point::after {
  border-bottom-color: #D5B680;
}
#design .sec-header.js-animate .sec-header__point::after, #design html:not(.js-enabled) .sec-header__point::after {
  border-bottom-color: #4E806E;
}
@media print {
  .sec-header__point::after {
    transform: rotate(-45deg);
    border-bottom-color: #5C7A99;
  }
}
.sec-header__point-txt {
  position: absolute;
  bottom: 0;
  margin-bottom: 45%;
  right: 79%;
  width: 79.16%;
  z-index: 3;
  transform-origin: right top;
  opacity: 0;
  transform: rotate(30deg);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, opacity 0.7s linear 0.5s;
}
@media screen and (max-width: 768px) {
  .sec-header__point-txt {
    right: 74%;
    width: 89.55%;
    margin-bottom: 34%;
  }
}
.sec-header.js-animate .sec-header__point-txt, html:not(.js-enabled) .sec-header__point-txt {
  transform: rotate(0deg);
  opacity: 1;
}
@media print {
  .sec-header__point-txt {
    transform: rotate(0deg);
    opacity: 1;
  }
}
.sec-header__point-txt img {
  width: 100%;
}
.sec-header__point-num {
  padding-top: 36.66%;
}
.sec-header__point-num img {
  width: 100%;
}
.sec-header__ttl-sub {
  position: relative;
  margin: 2.5em auto 0;
  font-size: 0.5em;
  letter-spacing: 0.1em;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  color: #fff;
}
#simple .sec-header__ttl-sub {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .sec-header__ttl-sub {
    margin-top: 1.5em !important;
    font-size: 0.55em;
  }
}
.sec-header__ttl-sub::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0.04em -0.13em -0.09em;
  background-color: #5C7A99;
}
#design .sec-header__ttl-sub::before {
  left: -0.3em;
}
.sec-header__ttl-sub span {
  position: relative;
}
.sec-header__ttl-main {
  margin-block: 0.5em 0.64em;
  font-size: 1em;
  color: #5C7A99;
  text-align: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .sec-header__ttl-main {
    margin-block: 0.55em 0.55em;
    font-size: 1em;
  }
}
.sec-header__desc {
  font-size: 0.33em;
  text-align: center;
  line-height: 2;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sec-header__desc {
    font-size: 0.44em;
  }
}

#simple {
  margin-top: min(11.2vw, 215.04px);
}
@media screen and (max-width: 768px) {
  #simple {
    margin-top: 60px;
  }
}
#simple:first-of-type {
  margin-top: 112px;
}
@media screen and (max-width: 768px) {
  #simple:first-of-type {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px) {
  #simple .item {
    background: #F2F7FB;
  }
}

#pattern .sec-header__ttl-main {
  color: #D5B680;
}
#pattern .sec-header__ttl-sub::before {
  background-color: #D5B680;
}
@media screen and (max-width: 768px) {
  #pattern .item {
    background: #FBF8F2;
  }
}
#pattern .item__ttl::after {
  border-top-color: #D5B680;
}
#pattern .item__bg-area::before, #pattern .item__bg-area::after {
  background-color: #FBF8F2;
}
#pattern .link {
  --link-bg-color: #D5B680;
  --link-border-color: #D5B680;
  --link-text-color-hover: #D5B680;
  --link-border-color-hover: #D5B680;
  --link-arrow-url: url("../img/link_arrow_sec02.svg");
}

#design .sec-header__ttl-main {
  color: #4E806E;
}
#design .sec-header__ttl-sub::before {
  background-color: #4E806E;
}
@media screen and (max-width: 768px) {
  #design .item {
    background: #EDF2F0;
  }
}
#design .item__ttl::after {
  border-top-color: #4E806E;
}
#design .item__bg-area::before, #design .item__bg-area::after {
  background-color: rgba(78, 128, 110, 0.1);
}
#design .link {
  --link-bg-color: #4E806E;
  --link-border-color: #4E806E;
  --link-text-color-hover: #4E806E;
  --link-border-color-hover: #4E806E;
  --link-arrow-url: url("../img/link_arrow_sec03.svg");
}

.item {
  margin-top: max(117px, 8.56vw);
  margin-top: clamp(117px, -1.6496750903px + 8.6859205776vw, 165.12px);
}
@media screen and (max-width: 768px) {
  .item {
    position: relative;
    flex-direction: column;
    margin-top: max(40px, 10.66vw) !important;
  }
}
@media screen and (max-width: 768px) {
  .item:first-of-type {
    margin-top: max(32px, 8.53vw) !important;
  }
}
.item.item--simple-04 {
  margin-top: max(195px, 14.27vw);
  margin-top: clamp(195px, -1.1714079422px + 14.3610108303vw, 274.56px);
}
.item.item--design-03 {
  margin-top: max(157px, 11.49vw);
  margin-top: clamp(157px, -0.3119133574px + 11.5162454874vw, 220.8px);
}
.item__bg-area {
  position: relative;
}
.item__bg-area::before, .item__bg-area::after {
  position: absolute;
  display: block;
  background: rgb(0 92 175 / 0.05);
  z-index: 0;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
html:not(.js-enabled) .item__bg-area::before, html:not(.js-enabled) .item__bg-area::after {
  opacity: 1;
  clip-path: none;
}
@media print {
  .item__bg-area::before, .item__bg-area::after {
    display: none;
  }
}
.item__bg-area.js-animate::before, .item__bg-area.js-animate::after {
  animation-name: keyFadeInRight;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
}
.item__inner {
  width: 82.43%;
  max-width: 1582.08px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1365px) {
  .item__inner {
    width: auto;
    max-width: 100%;
    margin-inline: var(--item-margin-inline);
  }
}
@media screen and (max-width: 768px) {
  .item__inner {
    margin-inline: 0;
    flex-direction: column;
  }
}
.item__photo-area {
  position: relative;
  width: 44.84%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .item__photo-area {
    width: auto;
  }
}
.item__txt-area {
  position: relative;
  width: 44.84%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .item__txt-area {
    width: 100%;
  }
}
.item__photo-main {
  display: block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .item__photo-main img {
    width: 100vw;
  }
}
.item__photo-sub {
  margin-top: 13.46%;
  display: block;
}
@media screen and (max-width: 768px) {
  .item__photo-sub {
    display: none;
  }
}
.item__photo-full {
  position: relative;
  margin-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .item__photo-full {
    margin: 0;
  }
}
.item__photo-full img {
  width: 100%;
}
.item__photo-full .item__txt {
  position: absolute;
  top: 7.8%;
  bottom: 0;
  right: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 40.4%;
  color: #fff;
}
@media screen and (max-width: 1365px) {
  .item__photo-full .item__txt {
    width: max-content;
    right: 10.24vw;
  }
}
@media screen and (max-width: 768px) {
  .item__photo-full .item__txt {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    color: #333;
  }
}
.item__photo-full .item__ttl::after {
  border-top-color: #fff;
}
@media screen and (max-width: 768px) {
  .item__photo-full .item__ttl::after {
    border-top-color: #5C7A99;
  }
}
.item__photo-full .item__desc {
  line-height: 2.333;
  max-width: 90%;
}
@media screen and (max-width: 1365px) {
  .item__photo-full .item__desc {
    padding-right: 0;
    width: 22em;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .item__photo-full .item__desc {
    width: auto;
    line-height: 2.133;
    padding-right: var(--item-margin-inline);
  }
}
.item__photo-full .item__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .item__photo-full .item__icon {
    display: block;
  }
}
.item__txt {
  margin-top: 18.41%;
}
.item__ttl {
  position: relative;
  margin-bottom: 1.15em;
  padding-bottom: 1.12em;
  font-size: 2rem;
  font-size: clamp(32px, 22.1371841155px + 0.7220216606vw, 36px);
  line-height: 1.813;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 1365px) {
  .item__ttl {
    font-size: clamp(22px, 3.9899497487px + 2.3450586265vw, 36px);
  }
}
@media screen and (max-width: 768px) {
  .item__ttl {
    width: 100%;
    margin: 0;
    padding-left: var(--item-margin-inline);
    padding-top: 43px;
    padding-bottom: 1.21em;
    font-size: 1.43rem;
    font-size: clamp(23px, 16.320610687px + 1.7811704835vw, 30px);
    line-height: 1.565;
    white-space: normal;
  }
}
@media screen and (max-width: 374px) {
  .item__ttl {
    font-size: max(19.52px, 6.13vw);
  }
}
.item__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.12em;
  border-top: 2px solid #5C7A99;
}
@media screen and (max-width: 768px) {
  .item__ttl::after {
    left: var(--item-margin-inline);
    width: 4.34em;
  }
}
.item__desc {
  font-size: 1.12rem;
  font-size: clamp(18px, 15.5342960289px + 0.1805054152vw, 19px);
  line-height: 2;
  width: 23.05em;
  width: clamp(415px, 304.0433212996px + 8.1227436823vw, 460px);
  max-width: 100%;
}
@media screen and (max-width: 1365px) {
  .item__desc {
    font-size: clamp(15px, 11.1407035176px + 0.5025125628vw, 18px);
    width: 23.05em;
  }
}
@media screen and (max-width: 768px) {
  .item__desc {
    padding-top: 25px;
    margin-top: -1px;
    padding-inline: var(--item-margin-inline);
    font-size: 0.93rem;
    font-size: clamp(15px, 12.1374045802px + 0.7633587786vw, 18px);
    line-height: 2.133;
    width: 100%;
  }
}
.item .link {
  width: 400px;
  width: max(400px, 79.2%);
  max-width: 100%;
  margin: min(31.48%, 159px) auto 0;
}
@media screen and (max-width: 768px) {
  .item .link {
    margin-top: -1px;
    padding: 34px var(--item-margin-inline);
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .item .link__list {
    width: 400px;
    max-width: 100%;
    margin-inline: auto;
  }
}
.item__icon {
  position: absolute;
  top: 0;
  margin-top: 2.97%;
  left: 1.98%;
  padding-left: 0;
  list-style-type: none;
  width: 15.84%;
}
@media screen and (max-width: 768px) {
  .item__icon {
    left: 1.33%;
    margin-top: 2.66%;
    width: 18.13vw;
  }
}
.item__icon--right {
  left: auto;
  right: 1.58%;
}
@media screen and (max-width: 768px) {
  .item__icon--right {
    left: auto;
    right: 1.33%;
  }
}
.item__icon li {
  opacity: 0;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.item__icon li:nth-child(1) {
  animation-delay: 0.4s;
}
.item__icon li:nth-child(2) {
  animation-delay: 0.5s;
}
.item__icon li:nth-child(3) {
  animation-delay: 0.6s;
}
.item__icon img {
  width: 100%;
}
.item__icon.js-animate li {
  animation-name: keyFade;
}
@media screen and (max-width: 768px) {
  .item .slider,
  .item .slider__item {
    width: 100vw;
    line-height: 0;
  }
}
html:not(.js-enabled) .item .slider__item:nth-child(n+2) {
  display: none;
}
.item__photo-main .slider:not(.slider--pc) .slider__item:nth-child(n+2) {
  display: none;
}
@media screen and (max-width: 768px) {
  .item__photo-main .slider:not(.slider--pc) .slider__item:nth-child(n+2) {
    display: block;
  }
}

.link {
  --link-text-color: #fff;
  --link-bg-color: #5C7A99;
  --link-border-color: #5C7A99;
  --link-text-color-hover: #5C7A99;
  --link-bg-color-hover: #fff;
  --link-border-color-hover: #5C7A99;
  --link-arrow-url: url("../img/link_arrow_sec01.svg");
}
.link__list {
  padding-left: 0;
  list-style-type: none;
  font-size: clamp(14px, 9.0685920578px + 0.3610108303vw, 16px);
}
@media screen and (max-width: 768px) {
  .link__list {
    font-size: 0.87rem;
    font-size: 0.87rem;
    font-size: clamp(14px, 13.0458015267px + 0.2544529262vw, 15px); /* 14px @375px - 15px @768px */
  }
}
.link__item {
  padding-bottom: 0.64em;
  font-size: inherit;
  position: relative;
  opacity: 0;
  left: -0.8em;
  top: -0.3em;
  transition: opacity 1.2s ease, left 0.6s ease, top 0.6s ease;
}
.link__item:nth-child(1) {
  transition-delay: 0s;
}
.link__list--sub .link__item:nth-child(1) {
  transition-delay: 0.3s;
}
.link__item:nth-child(2) {
  transition-delay: 0.05s;
}
.link__list--sub .link__item:nth-child(2) {
  transition-delay: 0.35s;
}
.link__item:nth-child(3) {
  transition-delay: 0.1s;
}
.link__list--sub .link__item:nth-child(3) {
  transition-delay: 0.4s;
}
.link__item:nth-child(4) {
  transition-delay: 0.15s;
}
.link__list--sub .link__item:nth-child(4) {
  transition-delay: 0.45s;
}
.link__item:nth-child(5) {
  transition-delay: 0.2s;
}
.link__list--sub .link__item:nth-child(5) {
  transition-delay: 0.5s;
}
.link__item:nth-child(6) {
  transition-delay: 0.25s;
}
.link__list--sub .link__item:nth-child(6) {
  transition-delay: 0.55s;
}
.link__item:nth-child(7) {
  transition-delay: 0.3s;
}
.link__list--sub .link__item:nth-child(7) {
  transition-delay: 0.6s;
}
.link__item:nth-child(8) {
  transition-delay: 0.35s;
}
.link__list--sub .link__item:nth-child(8) {
  transition-delay: 0.65s;
}
.link__item:nth-child(9) {
  transition-delay: 0.4s;
}
.link__list--sub .link__item:nth-child(9) {
  transition-delay: 0.7s;
}
.link__item:nth-child(10) {
  transition-delay: 0.45s;
}
.link__list--sub .link__item:nth-child(10) {
  transition-delay: 0.75s;
}
.link__item:nth-child(11) {
  transition-delay: 0.5s;
}
.link__list--sub .link__item:nth-child(11) {
  transition-delay: 0.8s;
}
.link.js-animate .link__item, html:not(.js-enabled) .link__item {
  opacity: 1;
  top: 0;
  left: 0;
}
@media print {
  .link__item {
    opacity: 1;
    left: 0;
    top: 0;
  }
}
.link a {
  font-size: inherit;
  display: flex;
  align-items: center;
  text-decoration: none;
  will-change: opacity, left;
}
@media screen and (max-width: 319px) {
  .link a {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.link a > span {
  display: inline-block;
}
.link__name {
  flex: 1;
  font-size: inherit;
}
@media screen and (max-width: 319px) {
  .link__name {
    width: 100%;
    flex: 0 1 auto;
  }
}
.link__price {
  position: relative;
  margin-right: 0.31em;
  font-size: 1.14em;
  text-align: right;
}
.link__item--l .link__price, .link__item--s .link__price {
  min-width: 5.37em;
}
.link__price::before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0.06em;
  transform: translateY(-50%);
  display: block;
  width: 0.93em;
  height: 0.93em;
  background: center center/contain no-repeat none;
}
.link__item--l .link__price::before {
  content: "";
  background-image: url("../img/link_l.svg");
}
.link__item--s .link__price::before {
  content: "";
  background-image: url("../img/link_s.svg");
}
.link__tax {
  margin-right: 1.18em;
  font-size: 0.78em;
}
.link__btn {
  position: relative;
  width: 7.81em;
  height: 2.54em;
  font-size: 0.78em;
  letter-spacing: 0.05em;
  background-color: var(--link-bg-color);
  border: 1px solid var(--link-border-color);
  text-align: center;
  line-height: 2.36em;
  color: var(--link-text-color);
  transition: padding-right 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.link__btn::before {
  content: "";
  display: block;
  width: 1.16em;
  height: 0.36em;
  background: center center/contain no-repeat var(--link-arrow-url);
  position: absolute;
  top: 50%;
  right: 1.1em;
  opacity: 0;
  transform: translate(0, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.link a:hover .link__btn {
  padding-right: 1.1em;
  color: var(--link-text-color-hover);
  background-color: var(--link-bg-color-hover);
  border-color: var(--link-border-color-hover);
}
.link a:hover .link__btn::before {
  transform: translate(0.3em, -50%);
  opacity: 1;
}
.link__list--sub {
  position: relative;
  margin-top: 0.28em;
  padding-top: 0.85em;
  --link-text-color: #333333;
  --link-bg-color: transparent;
  --link-border-color: #333333;
  --link-text-color-hover: #fff;
  --link-bg-color-hover: #333333;
  --link-border-color-hover: #333333;
  --link-arrow-url: url("../img/link_arrow_white.svg");
}
.link__list--sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  opacity: 0;
  display: block;
  height: 1px;
  background-color: #333333;
  transition: right 1s cubic-bezier(0, 0.55, 0.45, 1) 0.17s, opacity 0.06s linear;
}
.link.js-animate .link__list--sub::before, html:not(.js-enabled) .link__list--sub::before {
  right: 0;
  opacity: 1;
}
@media print {
  .link__list--sub::before {
    right: 0;
    opacity: 1;
  }
}

.fixed-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
  list-style-type: none;
  z-index: 100;
  display: none;
}
@media print {
  .fixed-nav {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .fixed-nav {
    display: none;
  }
}
.fixed-nav li {
  position: relative;
  width: 7.32vw;
  animation-duration: 1.5s;
  animation-delay: calc(2s + var(--mv-anim-delay));
}
.fixed-nav li:not(:first-child) {
  margin-top: 17%;
}
.fixed-nav li:nth-child(2) {
  animation-delay: calc(2.15s + var(--mv-anim-delay));
}
.fixed-nav li:nth-child(3) {
  animation-delay: calc(2.3s + var(--mv-anim-delay));
}
.fixed-nav a {
  display: block;
  text-decoration: none;
}
.fixed-nav__img img {
  width: 100%;
}
.fixed-nav__name {
  position: absolute;
  padding-block: 0.36em;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 0.8vw;
  text-align: center;
  color: #5C7A99;
  background: rgb(255 255 255 / 0.8);
}
.fixed-nav__item--pattern .fixed-nav__name {
  color: #AC7414;
}
.fixed-nav__item--design .fixed-nav__name {
  color: #4E806E;
}

.fixed-nav-sp {
  display: none;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  right: 0;
}
@media print {
  .fixed-nav-sp {
    display: none;
  }
}
.fixed-nav-sp ul {
  padding-left: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.fixed-nav-sp li:not(:first-child) {
  border-left: 2px solid #D6D5D2;
}
.fixed-nav-sp a {
  width: 100%;
  display: block;
  padding-block: 0.76em;
  font-size: 0.81rem;
  font-size: clamp(13px, 11.0916030534px + 0.5089058524vw, 15px);
  text-align: center;
  color: #5C7A99;
  text-decoration: none;
  background: rgb(255 255 255 / 0.8);
}
@media screen and (max-width: 374px) {
  .fixed-nav-sp a {
    font-size: 3.46vw;
  }
}
.fixed-nav-sp__item--pattern a {
  color: #AC7414;
}
.fixed-nav-sp__item--design a {
  color: #4E806E;
}

.flex-box {
  display: flex;
}

.flex-box-reverse {
  flex-direction: row-reverse;
}

.slide-box {
  overflow: hidden;
}

/* end-block------------------ */
.end-block {
  position: relative;
  margin-top: 0;
  background-color: #fff;
  overflow: hidden;
}

.end-block .bgi-photo {
  position: absolute;
  top: 0;
  left: 0;
}

/*banner-block-----------------------------*/
.banner-block {
  margin: min(19.76vw, 270px) auto 51px;
  position: relative;
}

.banner-block a {
  display: block;
  transition: 0.6s ease-in-out;
}

.banner-block a:hover {
  background: rgba(255, 255, 255, 0.4);
}

.banner-block .c-btn01 {
  width: 36%;
  min-width: 600px;
  margin: 0 auto 1rem;
  border: 1px solid #000;
  transition: 0.3s;
  display: block;
}
.banner-block .c-btn01 img {
  width: 100%;
}

.banner-block .line {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 5% auto 0;
  background: #000;
}

.banner-block .flex-box {
  padding-left: 0;
  justify-content: space-between;
  width: 36%;
  min-width: 600px;
  margin: 4.5% auto 0;
}

.banner-block .flex-box .c-btn01 {
  width: 48%;
  min-width: 290px;
  margin: 0;
}

/* ページトップボタン---------------------------- */
#pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 50px;
  height: 50px;
  display: block;
  z-index: 99;
}
@media screen and (max-width: 1100px) {
  #pagetop {
    bottom: 50px;
  }
}

#pagetop .btn-loading {
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
  background-color: #CCC;
  border-radius: 100%;
  transition: color 0.2s;
  overflow: hidden;
}

#pagetop .btn-loading01:before,
#pagetop .btn-loading01:after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 0;
  background-color: #231815;
  pointer-events: none;
}

#pagetop .btn-loading:before {
  bottom: 0;
  left: 0;
}

#pagetop .btn-loading:after {
  top: 0;
  right: 0;
}

#pagetop:hover .btn-loading {
  color: #65A04D;
}

#pagetop:hover .btn-loading:before,
#pagetop:hover .btn-loading:after {
  height: 100%;
}

#pagetop:hover .btn-loading:before {
  transition: height 0.1s 0.1s linear;
}

#pagetop:hover .btn-loading:after {
  transition: height 0.1s linear;
}

#pagetop .btn-loading span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 1px);
  height: calc(100% - 1px);
  background-color: #FFF;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#pagetop .btn-loading span img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* フッター--------------------------------------------- */
.footer {
  letter-spacing: 0.3em;
  position: relative;
  text-align: center;
  padding: 0 0 30px 0;
}

.footer img {
  transition: 0.3s;
}

.footer img:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.footer_sns .instagram {
  display: block;
  width: 2.34%;
  min-width: 30px;
  margin: 0 auto 2%;
  opacity: 1;
  transition: 0.3s;
}

.f-ow {
  width: 7.96%;
  min-width: 102px;
  margin: 25px auto 0 auto;
}

.footer_copyright {
  font-family: "Helvetica", sans-serif;
  font-size: max(0.6vw, 10px);
  letter-spacing: 0.02em;
  margin: 1.71% 0 0;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .flex-box {
    flex-direction: column;
  }
  /* バナー--------------------------- */
  .banner-block {
    margin-top: 104px;
    margin-bottom: 16vw;
  }
  .banner-block .c-btn01 {
    width: 80%;
    max-width: 460px;
    min-width: auto;
  }
  .banner-block .line {
    display: none;
  }
  .banner-block .flex-box {
    flex-direction: row;
    width: 80%;
    min-width: auto;
    margin: 0 auto;
  }
  .banner-block .flex-box .c-btn01 {
    min-width: auto;
  }
  /* ページトップボタン--------------------------- */
  #pagetop {
    position: fixed;
    right: 10px;
    width: 35px;
    height: 35px;
    display: block;
    z-index: 30;
  }
  #pagetop .btn-loading {
    display: inline-flex;
    text-decoration: none;
    font-weight: 700;
    color: #111;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 1 !important;
    transition: all 0.3s;
    background-color: #CCC;
    border-radius: 100%;
    transition: color 0.2s;
    overflow: hidden;
  }
  #pagetop .btn-loading01:before,
  #pagetop .btn-loading01:after {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    height: 0;
    background-color: #231815;
    pointer-events: none;
  }
  #pagetop .btn-loading:before {
    bottom: 0;
    left: 0;
  }
  #pagetop .btn-loading:after {
    top: 0;
    right: 0;
  }
  #pagetop:hover .btn-loading {
    color: #65A04D;
  }
  #pagetop:hover .btn-loading:before,
  #pagetop:hover .btn-loading:after {
    height: 100%;
  }
  #pagetop:hover .btn-loading:before {
    transition: height 0.1s 0.1s linear;
  }
  #pagetop:hover .btn-loading:after {
    transition: height 0.1s linear;
  }
  #pagetop .btn-loading span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    background-color: #FFF;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  #pagetop .btn-loading span img {
    width: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* フッター--------------------------- */
  .footer {
    padding-bottom: 20px;
  }
  .footer_sns {
    margin: 0 auto;
  }
  .footer_sns .instagram {
    width: 2.73%;
    min-width: 35px;
  }
  .f-ow {
    margin-top: 5.86vw;
    width: 9.37%;
    min-width: 120px;
  }
  .footer_copyright {
    margin-top: 5.33vw;
  }
  .footer_copyright img {
    width: 72vw;
  }
}