@charset "UTF-8";
/* -------------------------------------------- */
/* ------------------- inter ------------------ */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap");
/* regular */
/* medium */
/* bold */
/* extrabold */
/* -------------------------------------------- */
/* ---------------- Noto Sans JP -------------- */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* medium */
/* bold */
/* ----- break point ----- */
/* ----- container width ----- */
/* ----- margin-top/bottom ----- */
/* ----- padding-top/bottom ----- */
/* ----- line-height, letter-spacing ----- */
/* ----- font-size ----- */
.is-animation {
  -webkit-animation: fadezoom 12s 0s forwards;
          animation: fadezoom 12s 0s forwards;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

.js-fadeup {
  opacity: 0;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  -webkit-transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
  transition: all 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}

.js-fadeup.is-inview {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

a {
  color: #333;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

path {
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

ul {
  list-style: none;
}

html {
  word-wrap: break-word;
}

body {
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  background-color: #79ACD9;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

p {
  line-height: 1.875;
}

@media only screen and (max-width: 600px) {
  p {
    font-size: 14px;
  }
}

.main .to-contact {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 130px;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .to-contact {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .to-contact {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 400px) {
  .main .to-contact {
    padding-bottom: 70px;
  }
}

.main .to-contact .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .to-contact .container .head .ttl {
  text-align: center;
}

.main .to-contact .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .to-contact .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .to-contact .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .to-contact .container .list {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list {
    display: block;
  }
}

.main .to-contact .container .list .item {
  width: calc(50% - 30px);
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list .item {
    width: 100%;
  }
}

.main .to-contact .container .list .item.only {
  width: 100%;
  max-width: 555px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list .item:last-of-type {
    margin-top: 50px;
  }
}

.main .to-contact .container .list .item p {
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item p {
    font-size: 14px;
  }
}

.main .to-contact .container .list .item p span {
  font-size: 32px;
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item p span {
    font-size: 20px;
  }
}

.main .to-contact .container .list .item .link {
  margin-top: 45px;
  height: 85px;
  border-radius: 8px;
  display: block;
}

@media (hover: hover) {
  .main .to-contact .container .list .item .link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .to-contact .container .list .item .link:hover .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media (hover: none) {
  .main .to-contact .container .list .item .link:active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .to-contact .container .list .item .link:active .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media only screen and (max-width: 1250px) {
  .main .to-contact .container .list .item .link {
    max-width: 555px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item .link {
    margin-top: 20px;
  }
}

.main .to-contact .container .list .item .link.line {
  background-color: #00B900;
}

.main .to-contact .container .list .item .link.towing {
  background-color: #E52D8A;
}

.main .to-contact .container .list .item .link .link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .to-contact .container .list .item .link .link__inner .icon {
  margin-right: 10px;
  width: 30px;
}

.main .to-contact .container .list .item .link .link__inner .icon svg {
  display: block;
  width: 100%;
}

.main .to-contact .container .list .item .link .link__inner .txt {
  font-size: 16px;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .main .to-contact .container .list .item .link .link__inner .txt {
    font-size: 14px;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.main .home-fv {
  position: relative;
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 68px;
  padding-top: 140px;
  background-image: url(../images/bg/home/pc-top.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}

@media only screen and (max-width: 768px) {
  .main .home-fv {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-fv {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-fv {
    padding-top: 180px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-fv {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 400px) {
  .main .home-fv {
    padding-top: 130px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-fv {
    background-image: url(../images/bg/home/sp-top.png);
    background-position: bottom right;
    padding-bottom: 58px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-fv {
    padding-bottom: 28px;
  }
}

.main .home-fv .container {
  z-index: 1;
  position: relative;
}

.main .home-fv .container .cp__wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 3%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

@media only screen and (max-width: 1440px) {
  .main .home-fv .container .cp__wrap {
    left: 1%;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap {
    position: static;
    -webkit-transform: none;
            transform: none;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap .pc-cp-main {
    display: none;
  }
}

.main .home-fv .container .cp__wrap .pc-cp-main .cp span {
  display: block;
  font-size: 7.29vw;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: #312F2F;
}

.main .home-fv .container .cp__wrap .cp-sub p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #312F2F;
}

.main .home-fv .container .cp__wrap .cp-sub p.line-1 {
  font-size: .9375vw;
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap .cp-sub p.line-1 {
    font-size: 2.3vw;
  }
}

.main .home-fv .container .cp__wrap .cp-sub p.line-2 {
  font-size: 1.56vw;
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap .cp-sub p.line-2 {
    font-size: 3.9vw;
  }
}

.main .home-fv .container .cp__wrap .cp-sub p.line-3 {
  font-size: 2.66vw;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap .cp-sub p.line-3 {
    font-size: 6.6vw;
  }
}

.main .home-fv .container .cp__wrap .sp-cp-main {
  display: none;
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap .sp-cp-main {
    display: block;
  }
}

.main .home-fv .container .cp__wrap .sp-cp-main .cp span {
  display: block;
  font-size: 110px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: #312F2F;
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .cp__wrap .sp-cp-main .cp span {
    font-size: 14.3vw;
  }
}

.main .home-fv .container .img__wrap {
  max-width: 64%;
  margin-right: auto;
  margin-left: auto;
  margin-right: 180px;
}

@media only screen and (max-width: 1250px) {
  .main .home-fv .container .img__wrap {
    max-width: 78%;
    margin-right: auto;
    margin-left: auto;
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-fv .container .img__wrap {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.main .home-fv .container .img__wrap .list .slick-list {
  border-radius: 40px;
}

.main .home-fv .container .img__wrap .list .slick-list .slick-track .item {
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.main .home-fv .container .img__wrap .list .slick-list .slick-track .item:before {
  content: '';
  display: block;
  padding-top: 75%;
}

.main .home-fv .container .img__wrap .list .slick-list .slick-track .item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main .home-fv .container .img__wrap .list .slick-list .slick-track .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.main .home-news .container.col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .home-news .container .list {
  width: 70%;
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .list {
    width: 100%;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .list .item:nth-child(1) .link {
    border-right: none;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .list .item:nth-child(2) .link {
    border-right: none;
    border-top: none;
  }
}

.main .home-news .container .list .item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 120px;
  border: 1px solid #707070;
  border-left: none;
  padding-right: 10%;
  padding-left: 5%;
  position: relative;
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .list .item .link {
    height: 100px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link {
    display: block;
    height: initial;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (hover: hover) {
  .main .home-news .container .list .item .link:hover {
    background-color: #79ACD9;
    border: 1px solid #79ACD9;
    border-left: none;
  }
  .main .home-news .container .list .item .link:hover .info .cat {
    color: #fff;
    border: 1px solid #fff;
  }
  .main .home-news .container .list .item .link:hover .info .date {
    color: #fff;
  }
  .main .home-news .container .list .item .link:hover .ttl {
    color: #fff;
  }
  .main .home-news .container .list .item .link:hover .icon svg path {
    fill: #fff;
  }
}

@media (hover: none) {
  .main .home-news .container .list .item .link:active {
    background-color: #79ACD9;
    border: 1px solid #79ACD9;
    border-left: none;
  }
  .main .home-news .container .list .item .link:active .info .cat {
    color: #fff;
    border: 1px solid #fff;
  }
  .main .home-news .container .list .item .link:active .info .date {
    color: #fff;
  }
  .main .home-news .container .list .item .link:active .ttl {
    color: #fff;
  }
  .main .home-news .container .list .item .link:active .icon svg path {
    fill: #fff;
  }
}

.main .home-news .container .list .item .link .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 190px;
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link .info {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

.main .home-news .container .list .item .link .info .cat {
  display: inline-block;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #707070;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-right: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link .info .cat {
    font-size: 12px;
  }
}

.main .home-news .container .list .item .link .info .date {
  display: inline-block;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .home-news .container .list .item .link .ttl {
  display: inline-block;
  width: calc(100% - 240px);
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link .ttl {
    margin-top: 20px;
    width: 100%;
  }
}

.main .home-news .container .list .item .link .ttl .icon-news {
  display: block;
  width: 36px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: calc(100% + 20px);
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link .ttl .icon-news {
    display: inline-block;
    padding-right: 30px;
  }
}

.main .home-news .container .list .item .link .icon {
  position: absolute;
  z-index: 1;
  top: calc(50% - 8px);
  right: calc(5% - 12px);
  display: block;
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link .icon {
    right: calc(5% - 8px);
    width: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .list .item .link .icon svg {
    display: block;
    width: 100%;
  }
}

.main .home-news .container .allview {
  width: 30%;
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .allview {
    width: 100%;
    padding-left: 5%;
    padding-right: calc(5% - 12px);
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .allview {
    margin-top: 20px;
    padding-right: calc(5% - 8px);
  }
}

.main .home-news .container .allview .link {
  border: 1px solid #707070;
  border-right: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .allview .link {
    border: none;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (hover: hover) {
  .main .home-news .container .allview .link:hover {
    background-color: #79ACD9;
    border: 1px solid #79ACD9;
    border-right: none;
  }
}

@media only screen and (hover: hover) and (max-width: 1250px) {
  .main .home-news .container .allview .link:hover {
    border: none;
    background-color: transparent;
  }
}

@media (hover: hover) {
  .main .home-news .container .allview .link:hover .sp-icon svg path {
    fill: #79ACD9;
  }
  .main .home-news .container .allview .link:hover .txt {
    color: #fff;
  }
}

@media only screen and (hover: hover) and (max-width: 1250px) {
  .main .home-news .container .allview .link:hover .txt {
    color: #79ACD9;
  }
}

@media (hover: hover) {
  .main .home-news .container .allview .link:hover .icon svg path {
    fill: #fff;
  }
}

@media only screen and (hover: hover) and (max-width: 1250px) {
  .main .home-news .container .allview .link:hover .icon svg path {
    fill: #79ACD9;
  }
}

@media (hover: none) {
  .main .home-news .container .allview .link:active {
    background-color: #79ACD9;
    border: 1px solid #79ACD9;
    border-right: none;
  }
}

@media only screen and (hover: none) and (max-width: 1250px) {
  .main .home-news .container .allview .link:active {
    border: none;
    background-color: transparent;
  }
}

@media (hover: none) {
  .main .home-news .container .allview .link:active .sp-icon svg path {
    fill: #79ACD9;
  }
  .main .home-news .container .allview .link:active .txt {
    color: #fff;
  }
}

@media only screen and (hover: none) and (max-width: 1250px) {
  .main .home-news .container .allview .link:active .txt {
    color: #79ACD9;
  }
}

@media (hover: none) {
  .main .home-news .container .allview .link:active .icon svg path {
    fill: #fff;
  }
}

@media only screen and (hover: none) and (max-width: 1250px) {
  .main .home-news .container .allview .link:active .icon svg path {
    fill: #79ACD9;
  }
}

.main .home-news .container .allview .link .sp-icon {
  display: none;
  width: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .allview .link .sp-icon {
    display: block;
    margin-right: 8px;
  }
}

.main .home-news .container .allview .link .sp-icon svg {
  display: block;
  width: 100%;
}

.main .home-news .container .allview .link .txt {
  display: block;
  color: #333;
  font-size: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-right: 35px;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .allview .link .txt {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-news .container .allview .link .txt {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .allview .link .txt {
    margin-right: 0;
  }
}

.main .home-news .container .allview .link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .allview .link .icon {
    width: 16px;
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-news .container .allview .link .icon svg {
    display: block;
    width: 100%;
  }
}

.main .home-about {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-about {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-about {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about {
    padding-right: 0;
    padding-left: 0;
  }
}

.main .home-about .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .head {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-about .container .head .ttl {
  text-align: center;
}

.main .home-about .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-about .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-about .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-about .container .lead {
  margin-top: 70px;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .lead {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .lead {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .lead {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-about .container .lead p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .lead p {
    font-size: 14px;
  }
}

.main .home-about .container .contents {
  margin-top: 60px;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents {
    margin-top: 20px;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item {
  margin: 0 30px;
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item {
    margin: 0 18px;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .item-head .item-ttl {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .item-head .item-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main .home-about .container .contents .list .slick-list .slick-track .item .item-head .item-ttl .number {
    margin-right: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
  }
  .main .home-about .container .contents .list .slick-list .slick-track .item .item-head .item-ttl .ttl__inner .en {
    display: block;
    font-size: 34px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }
  .main .home-about .container .contents .list .slick-list .slick-track .item .item-head .item-ttl .ttl__inner .ja {
    display: block;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin-top: 5px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .item-head .item-ttl {
    display: none;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 {
    margin-top: 20px;
    display: block;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img {
  width: calc(50% - 30px);
  height: 100%;
  border-radius: 8px;
}

@media only screen and (max-width: 768px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img {
    width: 100%;
    position: relative;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 8px;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img .img-head {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(112, 112, 112, 0.6);
  padding: 10px;
  border-radius: 0 0 8px 8px;
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img .img-head {
    display: block;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img .img-head .img-number {
  color: #fff;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 5.3vw;
  text-align: center;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-img .img-head .img-ttl span {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.2;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt {
  width: calc(50% - 30px);
}

@media only screen and (max-width: 768px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt {
    width: 100%;
    margin-top: 25px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-head {
    display: none;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-head .txt-number {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-head .txt-ttl {
  margin-top: 8px;
  line-height: 1.2;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-head .txt-ttl .en {
  display: block;
  font-size: 34px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-head .txt-ttl .ja {
  display: block;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin-top: 5px;
  line-height: 1.2;
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-lead {
  margin-top: 50px;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-lead {
    margin-top: 0;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-lead p {
  font-size: 22px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-lead p {
    font-size: 16px;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-msg {
  margin-top: 45px;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-msg {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-msg {
    margin-top: 20px;
  }
}

.main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-msg p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-list .slick-track .item .col-2 .item-txt .txt-msg p {
    font-size: 14px;
  }
}

.main .home-about .container .contents .list .slick-prev {
  z-index: 2;
  width: 20px;
  height: 34.5px;
  top: 43%;
}

.main .home-about .container .contents .list .slick-prev:before {
  display: none;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-prev {
    left: initial;
    right: calc(50% + 241px);
    top: initial;
    bottom: 52px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-prev {
    bottom: initial;
    left: 45px;
    right: initial;
    width: 15px;
    -webkit-transform: translate3d(0, -90px, 0);
            transform: translate3d(0, -90px, 0);
  }
}

@media only screen and (max-width: 550px) {
  .main .home-about .container .contents .list .slick-prev {
    -webkit-transform: translate3d(0, -80px, 0);
            transform: translate3d(0, -80px, 0);
  }
}

@media only screen and (max-width: 500px) {
  .main .home-about .container .contents .list .slick-prev {
    -webkit-transform: translate3d(0, -70px, 0);
            transform: translate3d(0, -70px, 0);
  }
}

@media only screen and (max-width: 450px) {
  .main .home-about .container .contents .list .slick-prev {
    -webkit-transform: translate3d(0, -65px, 0);
            transform: translate3d(0, -65px, 0);
  }
}

@media only screen and (max-width: 400px) {
  .main .home-about .container .contents .list .slick-prev {
    width: 8px;
    top: 50%;
    left: 5px;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
}

@media (hover: hover) {
  .main .home-about .container .contents .list .slick-prev:hover svg path {
    stroke: #79ACD9;
  }
}

@media (hover: none) {
  .main .home-about .container .contents .list .slick-prev:active svg path {
    stroke: #79ACD9;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-prev svg {
    display: block;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-prev svg path {
    stroke: #fff;
  }
}

@media only screen and (max-width: 400px) {
  .main .home-about .container .contents .list .slick-prev svg path {
    stroke: #333;
  }
}

.main .home-about .container .contents .list .slick-next {
  z-index: 2;
  width: 20px;
  height: 34.5px;
  top: 43%;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-next {
    right: initial;
    left: calc(50% + 210px);
    top: initial;
    bottom: 52px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-next {
    bottom: initial;
    right: 45px;
    left: initial;
    width: 15px;
    -webkit-transform: translate3d(0, -90px, 0);
            transform: translate3d(0, -90px, 0);
  }
}

@media only screen and (max-width: 550px) {
  .main .home-about .container .contents .list .slick-next {
    -webkit-transform: translate3d(0, -80px, 0);
            transform: translate3d(0, -80px, 0);
  }
}

@media only screen and (max-width: 500px) {
  .main .home-about .container .contents .list .slick-next {
    -webkit-transform: translate3d(0, -70px, 0);
            transform: translate3d(0, -70px, 0);
  }
}

@media only screen and (max-width: 450px) {
  .main .home-about .container .contents .list .slick-next {
    -webkit-transform: translate3d(0, -65px, 0);
            transform: translate3d(0, -65px, 0);
  }
}

@media only screen and (max-width: 400px) {
  .main .home-about .container .contents .list .slick-next {
    width: 8px;
    top: 50%;
    right: 5px;
    -webkit-transform: translate3d(0, -50%, 0);
            transform: translate3d(0, -50%, 0);
  }
}

.main .home-about .container .contents .list .slick-next:before {
  display: none;
}

@media (hover: hover) {
  .main .home-about .container .contents .list .slick-next:hover svg path {
    stroke: #79ACD9;
  }
}

@media (hover: none) {
  .main .home-about .container .contents .list .slick-next:active svg path {
    stroke: #79ACD9;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-next svg {
    display: block;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-next svg path {
    stroke: #fff;
  }
}

@media only screen and (max-width: 400px) {
  .main .home-about .container .contents .list .slick-next svg path {
    stroke: #333;
  }
}

.main .home-about .container .contents .list .slick-dots {
  position: static;
  bottom: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.5%;
  padding: 0 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-dots {
    display: block;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-about .container .contents .list .slick-dots {
    display: none !important;
  }
}

.main .home-about .container .contents .list .slick-dots li {
  margin: 1.5%;
  width: calc(91% / 3);
  height: 51px;
  border: 1px solid #707070;
  border-radius: 4px;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  padding-left: 50px;
}

@media only screen and (max-width: 1250px) {
  .main .home-about .container .contents .list .slick-dots li {
    max-width: 350px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: 100%;
    margin: 10px auto;
  }
}

.main .home-about .container .contents .list .slick-dots li:before {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.main .home-about .container .contents .list .slick-dots li:after {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: block;
  line-height: 51px;
}

.main .home-about .container .contents .list .slick-dots li:nth-child(1):before {
  content: '01';
}

.main .home-about .container .contents .list .slick-dots li:nth-child(1):after {
  content: 'WHAT IS WAKESURFING?';
}

.main .home-about .container .contents .list .slick-dots li:nth-child(2):before {
  content: '02';
}

.main .home-about .container .contents .list .slick-dots li:nth-child(2):after {
  content: 'ABOUT WAKE SURFING WAVES';
}

.main .home-about .container .contents .list .slick-dots li:nth-child(3):before {
  content: '03';
}

.main .home-about .container .contents .list .slick-dots li:nth-child(3):after {
  content: 'WARNING';
}

@media (hover: hover) {
  .main .home-about .container .contents .list .slick-dots li:hover {
    border: 2px solid #E52D8A;
    background-color: #EAF2FA;
  }
}

@media (hover: none) {
  .main .home-about .container .contents .list .slick-dots li:active {
    border: 2px solid #E52D8A;
    background-color: #EAF2FA;
  }
}

.main .home-about .container .contents .list .slick-dots li.slick-active {
  border: 2px solid #E52D8A;
  background-color: #EAF2FA;
}

.main .home-about .container .contents .list .slick-dots li button {
  display: none;
}

.main .home-service {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-service {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-service {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-service {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-service {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-service .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .home-service .container .head .ttl {
  text-align: center;
}

.main .home-service .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-service .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-service .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-service .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-service .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-service .container .lead {
  margin-top: 70px;
  text-align: center;
}

@media only screen and (max-width: 1250px) {
  .main .home-service .container .lead {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .lead {
    margin-top: 30px;
  }
}

.main .home-service .container .lead p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .lead p {
    font-size: 14px;
  }
}

.main .home-service .container .contents {
  margin-top: 60px;
}

@media only screen and (max-width: 1250px) {
  .main .home-service .container .contents {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .contents {
    margin-top: 20px;
  }
}

.main .home-service .container .contents .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.5%;
}

.main .home-service .container .contents .list .item {
  width: calc(91% / 3);
  margin: 1.5%;
}

@media only screen and (max-width: 768px) {
  .main .home-service .container .contents .list .item {
    width: 47%;
  }
}

@media only screen and (max-width: 400px) {
  .main .home-service .container .contents .list .item {
    margin: 0 20px;
  }
}

.main .home-service .container .contents .list .item .item-img {
  position: relative;
  overflow: hidden;
  max-width: 70%;
  margin-right: auto;
  margin-left: auto;
}

.main .home-service .container .contents .list .item .item-img:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.main .home-service .container .contents .list .item .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main .home-service .container .contents .list .item .item-img img {
  border-radius: 50%;
}

.main .home-service .container .contents .list .item .item-head {
  margin-top: 30px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .contents .list .item .item-head {
    margin-top: 20px;
  }
}

.main .home-service .container .contents .list .item .item-head .item-ttl {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .contents .list .item .item-head .item-ttl {
    font-size: 16px;
  }
}

.main .home-service .container .contents .list .item .item-msg {
  margin-top: 30px;
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .contents .list .item .item-msg {
    margin-top: 20px;
  }
}

.main .home-service .container .contents .list .item .item-msg p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-service .container .contents .list .item .item-msg p {
    font-size: 14px;
  }
}

.main .home-deco-bg {
  background-image: url(../images/bg/home/pc-price.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  margin-top: 130px;
  height: 370px;
}

@media only screen and (max-width: 1250px) {
  .main .home-deco-bg {
    margin-top: 100px;
    height: 270px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-deco-bg {
    margin-top: 50px;
    height: 200px;
    background-image: url(../images/bg/home/sp-price.jpg);
    background-attachment: scroll;
  }
}

.main .home-price {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-price {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-price {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-price .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .home-price .container .head .ttl {
  text-align: center;
}

.main .home-price .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-price .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-price .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-price .container .list {
  margin-top: 70px;
  list-style: none;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .list {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list {
    margin-top: 30px;
  }
}

.main .home-price .container .list .item {
  border-radius: 4px;
  border: 4px solid #79ACD9;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .home-price .container .list .item:not(:first-of-type) {
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item {
    padding: 15px;
  }
}

.main .home-price .container .list .item .item-head {
  width: 22%;
  display: inline-block;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .list .item .item-head {
    width: 200px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item .item-head {
    width: 100%;
    display: block;
  }
}

.main .home-price .container .list .item .item-head .item-ttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item .item-head .item-ttl {
    font-size: 16px;
  }
}

.main .home-price .container .list .item .item-head .item-ttl:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: #E52D8A;
  border-radius: 9px;
  margin-right: 16px;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .list .item .item-head .item-ttl:before {
    margin-right: 8px;
  }
}

.main .home-price .container .list .item .item-lead {
  width: 30%;
  display: inline-block;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .list .item .item-lead {
    width: calc(100% - 200px);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item .item-lead {
    width: 100%;
    display: block;
    margin-top: 8px;
    padding-left: 25px;
  }
}

.main .home-price .container .list .item .item-lead p {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item .item-lead p {
    font-size: 16px;
  }
}

.main .home-price .container .list .item .item-msg {
  width: 48%;
  display: inline-block;
}

@media only screen and (max-width: 1250px) {
  .main .home-price .container .list .item .item-msg {
    width: 100%;
    display: block;
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item .item-msg {
    margin-top: 12px;
  }
}

.main .home-price .container .list .item .item-msg p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .list .item .item-msg p {
    font-size: 14px;
  }
}

.main .home-price .container .note {
  margin-top: 30px;
  padding-left: 7px;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .note {
    margin-top: 20px;
  }
}

.main .home-price .container .note p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .note p {
    font-size: 14px;
  }
}

.main .home-price .container .note p:not(:first-of-type) {
  margin-top: 10px;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .note p:not(:first-of-type) {
    margin-top: 8px;
  }
}

.main .home-price .container .note p .point {
  display: block;
  content: '';
  margin-top: 10px;
  margin-right: 15px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #E52D8A;
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .note p .point {
    margin-right: 10px;
    margin-top: 8px;
  }
}

.main .home-price .container .note p .txt {
  display: block;
  width: calc(100% - 25px);
}

@media only screen and (max-width: 600px) {
  .main .home-price .container .note p .txt {
    width: calc(100% - 20px);
  }
}

.main .home-faq {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-faq {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-faq {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-faq .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .home-faq .container .head .ttl {
  text-align: center;
}

.main .home-faq .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-faq .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-faq .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-faq .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-faq .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-faq .container .list {
  margin-top: 70px;
}

@media only screen and (max-width: 1250px) {
  .main .home-faq .container .list {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list {
    margin-top: 30px;
  }
}

.main .home-faq .container .list .item {
  border-top: 2px solid #707070;
  padding: 25px 0;
  cursor: pointer;
  position: relative;
  padding-right: 48px;
}

.main .home-faq .container .list .item.active:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.main .home-faq .container .list .item:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 51px;
  right: 16.5px;
  width: 15px;
  height: 2px;
  background-color: #707070;
  border-radius: 1px;
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item:before {
    top: 39px;
  }
}

.main .home-faq .container .list .item:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 45px;
  right: 23px;
  height: 15px;
  width: 2px;
  background-color: #707070;
  border-radius: 1px;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item:after {
    top: 33px;
  }
}

.main .home-faq .container .list .item:last-of-type {
  border-bottom: 2px solid #707070;
}

.main .home-faq .container .list .item .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.main .home-faq .container .list .item .question .icon {
  background-color: #E52D8A;
  line-height: 55px;
  width: 55px;
  border-radius: calc(55px / 2);
  color: #fff;
  text-align: center;
  margin-right: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .question .icon {
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .question .icon {
    width: 30px;
    line-height: 30px;
    border-radius: 15px;
    margin-right: 15px;
  }
}

.main .home-faq .container .list .item .question .txt {
  width: calc(100% - 95px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .question .txt {
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .question .txt {
    width: calc(100% - 45px);
  }
}

.main .home-faq .container .list .item .answer {
  margin-top: 25px;
  display: none;
}

.main .home-faq .container .list .item .answer .answer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.main .home-faq .container .list .item .answer .answer__inner .icon {
  width: 55px;
  text-align: center;
  margin-right: 40px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .answer .answer__inner .icon {
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .answer .answer__inner .icon {
    width: 30px;
    margin-right: 15px;
  }
}

.main .home-faq .container .list .item .answer .answer__inner .txt {
  width: calc(100% - 95px);
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .answer .answer__inner .txt {
    font-size: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-faq .container .list .item .answer .answer__inner .txt {
    width: calc(100% - 45px);
  }
}

.main .home-staff {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-staff {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-staff {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-staff .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .home-staff .container .head .ttl {
  text-align: center;
}

.main .home-staff .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-staff .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-staff .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-staff .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-staff .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-staff .container .lead {
  margin-top: 70px;
}

@media only screen and (max-width: 1250px) {
  .main .home-staff .container .lead {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .lead {
    margin-top: 30px;
  }
}

.main .home-staff .container .lead p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .lead p {
    font-size: 14px;
  }
}

.main .home-staff .container .list {
  margin-top: 60px;
}

@media only screen and (max-width: 1250px) {
  .main .home-staff .container .list {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list {
    margin-top: 20px;
  }
}

.main .home-staff .container .list .item:last-of-type {
  margin-top: 60px;
}

@media only screen and (max-width: 1250px) {
  .main .home-staff .container .list .item:last-of-type {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item:last-of-type {
    margin-top: 20px;
  }
}

.main .home-staff .container .list .item .item-head {
  display: none;
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .item-head {
    display: block;
  }
}

.main .home-staff .container .list .item .item-head .item-ttl {
  font-size: 16px;
  line-height: 1;
  border: 2px solid #707070;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

.main .home-staff .container .list .item .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .col-2 {
    margin-top: 20px;
    display: block;
  }
}

.main .home-staff .container .list .item .col-2 .item-img {
  width: 375px;
  position: relative;
  overflow: hidden;
  overflow: visible;
}

.main .home-staff .container .list .item .col-2 .item-img:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.main .home-staff .container .list .item .col-2 .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .main .home-staff .container .list .item .col-2 .item-img {
    width: calc(50% - 40px);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .col-2 .item-img {
    width: 100%;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.main .home-staff .container .list .item .col-2 .item-img img {
  border-radius: 20px;
}

.main .home-staff .container .list .item .col-2 .item-img .img-icon {
  width: 100px;
  height: 82px;
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 0;
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}

@media only screen and (max-width: 768px) {
  .main .home-staff .container .list .item .col-2 .item-img .img-icon {
    width: 83px;
    height: 69px;
    -webkit-transform: translate3d(40px, 0, 0);
            transform: translate3d(40px, 0, 0);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .col-2 .item-img .img-icon {
    right: 20px;
  }
}

.main .home-staff .container .list .item .col-2 .item-img .img-icon.hossy {
  width: 80px;
  height: 100px;
}

@media only screen and (max-width: 768px) {
  .main .home-staff .container .list .item .col-2 .item-img .img-icon.hossy {
    width: 67px;
    height: 86px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .col-2 .item-img .img-icon.hossy {
    right: 20px;
  }
}

.main .home-staff .container .list .item .col-2 .item-img .img-icon img {
  width: 100%;
  border-radius: 0;
}

.main .home-staff .container .list .item .col-2 .item-history {
  width: calc(100% - 475px);
}

@media only screen and (max-width: 768px) {
  .main .home-staff .container .list .item .col-2 .item-history {
    width: calc(50% - 10px);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .col-2 .item-history {
    width: 100%;
    margin-top: 25px;
  }
}

.main .home-staff .container .list .item .col-2 .item-history .name {
  font-size: 16px;
  line-height: 1;
  border: 2px solid #707070;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .col-2 .item-history .name {
    display: none;
  }
}

.main .home-staff .container .list .item .item-msg {
  margin-top: 30px;
  padding: 60px 30px 30px 30px;
  background-color: #F8F4F4;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .item-msg {
    margin-top: 20px;
    padding: 50px 10px 10px 10px;
  }
}

.main .home-staff .container .list .item .item-msg .msg-ttl {
  display: block;
  background-color: #EAF2FA;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 25px;
  line-height: 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 0 30px;
  text-align: center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 10px 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 10px 100%);
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .item-msg .msg-ttl {
    font-size: 12px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .item-msg .msg-ttl {
    left: 0;
  }
}

.main .home-staff .container .list .item .item-msg p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-staff .container .list .item .item-msg p {
    font-size: 14px;
  }
}

.main .home-instagram {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-instagram {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-instagram {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-instagram {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-instagram {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-instagram .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .home-instagram .container .head .ttl {
  text-align: center;
}

.main .home-instagram .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-instagram .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-instagram .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-instagram .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-instagram .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-instagram .container .contents {
  margin-top: 60px;
}

@media only screen and (max-width: 1250px) {
  .main .home-instagram .container .contents {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .contents {
    margin-top: 20px;
  }
}

.main .home-instagram .container .contents .sbi #sbi_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -1.5%;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item {
  margin: 1.5%;
  width: 22%;
}

@media only screen and (max-width: 768px) {
  .main .home-instagram .container .contents .sbi #sbi_images .sbi_item {
    width: calc(91% / 3);
  }
}

@media only screen and (max-width: 400px) {
  .main .home-instagram .container .contents .sbi #sbi_images .sbi_item {
    width: 47%;
  }
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item:nth-child(9) {
  display: none;
}

@media only screen and (max-width: 768px) {
  .main .home-instagram .container .contents .sbi #sbi_images .sbi_item:nth-child(9) {
    display: block;
  }
}

@media only screen and (max-width: 400px) {
  .main .home-instagram .container .contents .sbi #sbi_images .sbi_item:nth-child(9) {
    display: none;
  }
}

@media only screen and (max-width: 400px) {
  .main .home-instagram .container .contents .sbi #sbi_images .sbi_item:nth-child(7), .main .home-instagram .container .contents .sbi #sbi_images .sbi_item:nth-child(8), .main .home-instagram .container .contents .sbi #sbi_images .sbi_item:nth-child(9) {
    display: none;
  }
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo {
  position: relative;
  overflow: hidden;
  height: initial !important;
  opacity: 1 !important;
  background-image: none !important;
  display: block !important;
  padding-bottom: 0 !important;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo .sbi-screenreader {
  display: none !important;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo .sbi_lightbox_carousel_icon {
  display: none !important;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo .sbi_playbtn {
  display: none !important;
}

.main .home-instagram .container .contents .sbi #sbi_images .sbi_item .sbi_photo_wrap .sbi_photo img {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 1 !important;
  z-index: 3;
}

.main .home-instagram .container .link {
  margin-top: 90px;
  text-align: center;
}

@media only screen and (max-width: 1250px) {
  .main .home-instagram .container .link {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .link {
    margin-top: 20px;
  }
}

.main .home-instagram .container .link a {
  background-color: #E52D8A;
  color: #fff;
  border-radius: 8px;
  height: 70px;
  width: 100%;
  max-width: 270px;
  display: inline-block;
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .link a {
    height: 60px;
  }
}

@media (hover: hover) {
  .main .home-instagram .container .link a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .home-instagram .container .link a:hover .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media (hover: none) {
  .main .home-instagram .container .link a:active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .home-instagram .container .link a:active .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.main .home-instagram .container .link a .link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .home-instagram .container .link a .link__inner .txt {
  display: block;
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .link a .link__inner .txt {
    font-size: 14px;
  }
}

.main .home-instagram .container .link a .link__inner .icon {
  width: 20px;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  right: 20px;
}

@media only screen and (max-width: 600px) {
  .main .home-instagram .container .link a .link__inner .icon {
    width: 16px;
  }
}

.main .home-access {
  padding-top: 75px;
  margin-top: 75px;
  padding-right: 5%;
  padding-left: 5%;
}

@media only screen and (max-width: 1250px) {
  .main .home-access {
    padding-top: 56px;
    margin-top: 56px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access {
    padding-top: 26px;
    margin-top: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .main .home-access {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access {
    padding-right: 18px;
    padding-left: 18px;
  }
}

.main .home-access .container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

.main .home-access .container .head .ttl {
  text-align: center;
}

.main .home-access .container .head .ttl span {
  display: block;
  line-height: 1.2;
  color: #676464;
}

.main .home-access .container .head .ttl span.en {
  font-size: 90px;
  letter-spacing: 0.18em;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .head .ttl span.en {
    font-size: 60px;
    letter-spacing: 0.16em;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .head .ttl span.en {
    font-size: 30px;
  }
}

.main .home-access .container .head .ttl span.ja {
  font-size: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .head .ttl span.ja {
    font-size: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .head .ttl span.ja {
    font-size: 16px;
  }
}

.main .home-access .container .contents {
  margin-top: 70px;
  position: relative;
  padding-bottom: 50px;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .contents {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .contents {
    padding-bottom: 0;
  }
}

.main .home-access .container .contents .map {
  width: 75%;
  height: 590px;
  margin-right: auto;
  z-index: 1;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .contents .map {
    width: 100%;
    height: 480px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .map {
    height: 280px;
  }
}

.main .home-access .container .contents .map iframe {
  width: 100%;
  height: 100%;
}

.main .home-access .container .contents .info {
  background-color: #fff;
  border: 3px solid #79ACD9;
  border-radius: 8px;
  padding: 30px;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: calc(50% - 100px);
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .contents .info {
    width: 80%;
    position: static;
    margin: 0 auto;
    -webkit-transform: translate3d(0, -80px, 0);
            transform: translate3d(0, -80px, 0);
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info {
    -webkit-transform: none;
            transform: none;
    margin-top: 30px;
    padding: 15px;
    width: 100%;
  }
}

.main .home-access .container .contents .info .address .ttl {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .address .ttl {
    font-size: 16px;
  }
}

.main .home-access .container .contents .info .address .detail {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .address .detail {
    font-size: 14px;
  }
}

.main .home-access .container .contents .info .open {
  margin-top: 50px;
}

.main .home-access .container .contents .info .open .ttl {
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .open .ttl {
    font-size: 16px;
  }
}

.main .home-access .container .contents .info .open .detail {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .open .detail {
    font-size: 14px;
  }
}

.main .home-access .container .contents .info .link {
  text-align: center;
  margin-top: 35px;
}

.main .home-access .container .contents .info .link a {
  background-color: #E52D8A;
  color: #fff;
  border-radius: 8px;
  height: 70px;
  width: 100%;
  max-width: 270px;
  display: inline-block;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .link a {
    height: 60px;
  }
}

@media (hover: hover) {
  .main .home-access .container .contents .info .link a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .home-access .container .contents .info .link a:hover .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@media (hover: none) {
  .main .home-access .container .contents .info .link a:active {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .main .home-access .container .contents .info .link a:active .link__inner {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.main .home-access .container .contents .info .link a .link__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.main .home-access .container .contents .info .link a .link__inner .txt {
  display: block;
  font-size: 18px;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .link a .link__inner .txt {
    font-size: 14px;
  }
}

.main .home-access .container .contents .info .link a .link__inner .icon {
  width: 20px;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  right: 20px;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .contents .info .link a .link__inner .icon {
    width: 16px;
  }
}

.main .home-access .container .way.car {
  margin-top: 30px;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .way.car {
    margin-top: 0;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .way.car {
    margin-top: 20px;
  }
}

.main .home-access .container .way.train {
  margin-top: 20px;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .way.train {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .way.train {
    margin-top: 20px;
  }
}

.main .home-access .container .way .way-head .way-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .home-access .container .way .way-head .way-ttl .icon {
  width: 24px;
  display: block;
  margin-right: 10px;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .way .way-head .way-ttl .icon {
    width: 18px;
  }
}

.main .home-access .container .way .way-head .way-ttl .icon.train {
  width: 20px;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .way .way-head .way-ttl .icon.train {
    width: 16px;
  }
}

.main .home-access .container .way .way-head .way-ttl .icon img {
  width: 100%;
  display: block;
}

.main .home-access .container .way .way-head .way-ttl .txt {
  display: block;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  width: calc(100% - 34px);
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .way .way-head .way-ttl .txt {
    font-size: 16px;
  }
}

.main .home-access .container .way .way-msg {
  margin-top: 10px;
}

@media only screen and (max-width: 1250px) {
  .main .home-access .container .way .way-msg {
    margin-top: 5px;
  }
}

.main .home-access .container .way .way-msg p {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .main .home-access .container .way .way-msg p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=home.css.map */