@charset "UTF-8";
/*----------------- 共通 -------------------*/
/*-----------------------------------------
    color
-----------------------------------------*/
/*-----------------------------------------
    font
-----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*-----------------------------------------
    メディアクエリ
-----------------------------------------*/
/*-----------------------------------------

リセット

----------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

dl, dt, dd {
  margin: 0;
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

/*-----------------------------------------
    アニメーション
-----------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------
全体指定
----------------------------------------*/
.inner {
  width: 1080px;
  margin: 0 auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  color: #555;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

::-moz-selection {
  color: #6CB1BD;
}

::selection {
  color: #6CB1BD;
}

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

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

li {
  list-style: none;
}

.header {
  position: fixed;
  top: 20px;
  width: 100%;
  max-width: 1800px;
  height: 80px;
  line-height: 80px;
  padding-left: clamp(15px, 2vw, 40px);
  padding-right: clamp(15px, 2vw, 40px);
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    height: 50px;
    line-height: 50px;
  }
}
.header__inner {
  padding-left: clamp(30px, 4.2vw, 60px);
  padding-right: clamp(15px, 1.4vw, 20px);
  background: rgba(108, 177, 189, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 101;
  position: relative;
}
.header__inner .left .header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header__inner .left .header__logo {
    width: 80px;
  }
}
.header__inner .right {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: clamp(40px, 4.2vw, 60px);
}
.header__inner .right .header__nav {
  font-family: "Lato", sans-serif;
  position: relative;
  z-index: 101;
}
@media (max-width: 767px) {
  .header__inner .right .header__nav {
    display: none;
  }
}
.header__inner .right .header__nav ul {
  display: flex;
  gap: 2rem;
}
.header__inner .right .header__nav ul a {
  display: block;
  font-size: clamp(14px, 1.3vw, 16px);
  padding-left: 5px;
  padding-right: 5px;
  font-family: "Lato", sans-serif;
  transition: all 0.3s ease 0s;
}
.header__inner .right .header__nav ul a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .header__inner .right .header__button {
    display: none;
  }
}

/*-----------------------------------------
    //drawer
-----------------------------------------*/
.drawer__icon {
  z-index: 102;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  display: none;
  position: absolute;
  top: 18px;
  right: 30px;
}
@media (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active span:nth-child(1) {
  transform: rotate(-35deg) translateX(-50%);
}
.drawer__icon.is-active span:nth-child(2) {
  display: none;
}
.drawer__icon.is-active span:nth-child(3) {
  transform: rotate(35deg) translateX(-50%);
}

.drawer__bars {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
}
.drawer__bars span {
  width: 100%;
  height: 1px;
  background: #6CB1BD;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.drawer__bars span:nth-child(1) {
  top: 0;
}
.drawer__bars span:nth-child(2) {
  top: 6px;
}
.drawer__bars span:nth-child(3) {
  top: 12px;
}

.drawer__content {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 100;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow-y: scroll;
  display: none;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
}

.drawer__inner {
  overflow-y: scroll;
  background: #fff;
}

.drawer__nav ul li {
  line-height: 1.6;
}
.drawer__nav ul a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  display: block;
  padding: 20px 0;
}

.drawer__button {
  margin-top: 30px;
}

/*-----------------------------------------
breadcrumb
-----------------------------------------*/
.breadcrumb {
  background: #fff;
  font-size: 14px;
  color: #6CB1BD;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 10%;
}
.breadcrumb span {
  margin-left: 5px;
  margin-right: 5px;
}
.breadcrumb span img {
  width: 6px;
}

/*-----------------------------------------
section-title
-----------------------------------------*/
.section__head {
  text-align: center;
}

.section__title {
  font-family: "Lato", sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: 30%;
  line-height: 1.2;
  color: #6CB1BD;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 14px;
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.05rem;
  text-decoration: none;
  background: #fff;
  border: 1px solid #6CB1BD;
  border-radius: 40px;
  color: #6CB1BD;
  cursor: pointer;
  transition: all 0.6s ease 0s;
}
.btn:hover {
  background: #6CB1BD;
  color: #fff;
}
.btn:hover .img svg path {
  fill: #fff;
}
.btn .img {
  width: 14px;
  line-height: 1;
}
.btn .img svg {
  width: 14px;
}
.btn .img svg path {
  transition: all 0.6s ease 0s;
}

/*-----------------------------------------
contact
-----------------------------------------*/
.contact {
  position: relative;
  background: rgba(145, 177, 183, 0.05);
}
.contact__title {
  position: absolute;
  top: -2vw;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
}
.contact__title.fadein {
  opacity: 0;
  transform: translateY(20px) translateX(-50%);
  transition: opacity 1s ease, transform 1s ease;
}
.contact__title.fadein.is-show {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}
.contact__inner {
  padding-top: 120px;
  padding-bottom: 120px;
  width: 100%;
  max-width: 100%;
  border-radius: 200px 200px 0 0;
  background: #fff;
}
@media (max-width: 767px) {
  .contact__inner {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 100px 100px 0 0;
  }
}
.contact__content .lead {
  text-align: center;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.1rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .contact__content .lead {
    text-align: left;
  }
}
.contact__form {
  margin-top: clamp(48px, 4vw, 64px);
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .contact__form {
    width: 100%;
  }
}

@media screen and (min-width: 1441px) {
  .contact__title {
    top: -2.5%;
  }
}
@media screen and (max-width: 767px) {
  .contact__title {
    top: -1.2%;
  }
}
/*----------------- contact -------------------*/
.contact-form__row {
  display: flex;
}
.contact-form__row:not(:first-child) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-form__row:not(:first-child) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 960px) {
  .contact-form__row {
    display: block;
  }
}
/*----------------- label -------------------*/
.contact-form__label {
  width: 240px;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 2.25;
}
@media (max-width: 767px) {
  .contact-form__label {
    width: 100%;
    font-size: 14px;
  }
}
.contact-form__label label.is-required {
  display: inline-block;
  position: relative;
}
.contact-form__label label.is-required::after {
  content: "必須";
  position: absolute;
  top: 7px;
  left: calc(100% + 15px);
  font-size: 12px;
  text-align: center;
  background: #DF6B94;
  width: 37px;
  height: 23px;
  border-radius: 2px;
  color: #fff;
  line-height: 23px;
}
@media (max-width: 767px) {
  .contact-form__label label.is-required::after {
    left: calc(100% + 12px);
    height: 20px;
    line-height: 20px;
    font-size: 10px;
  }
}
.contact-form__text-area {
  display: flex;
  margin-top: 40px;
  align-items: start;
}
.contact-form {
  /*----------------- input -------------------*/
}
.contact-form__input {
  width: calc(100% - 240px);
  margin: 0;
  padding: 0;
}
.contact-form__input [type=text],
.contact-form__input [type=tel],
.contact-form__input [type=email],
.contact-form__input [type=url] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  border: 1px solid #6CB1BD;
  border-radius: 4px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(14px, 1.3vw, 16px);
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  outline: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact-form__input [type=text],
  .contact-form__input [type=tel],
  .contact-form__input [type=email],
  .contact-form__input [type=url] {
    margin-top: 2px;
    padding: 0 6px;
  }
}
.contact-form__input [type=text]:focus, .contact-form__input [type=text]:hover,
.contact-form__input [type=tel]:focus,
.contact-form__input [type=tel]:hover,
.contact-form__input [type=email]:focus,
.contact-form__input [type=email]:hover,
.contact-form__input [type=url]:focus,
.contact-form__input [type=url]:hover {
  background: rgba(145, 177, 183, 0.05);
}
.contact-form__input [type=text]::-moz-placeholder, .contact-form__input [type=tel]::-moz-placeholder, .contact-form__input [type=email]::-moz-placeholder, .contact-form__input [type=url]::-moz-placeholder {
  color: #b0b0b0;
}
.contact-form__input [type=text]::placeholder,
.contact-form__input [type=tel]::placeholder,
.contact-form__input [type=email]::placeholder,
.contact-form__input [type=url]::placeholder {
  color: #b0b0b0;
}
.contact-form__input textarea {
  margin-top: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: vertical;
  box-shadow: none;
  border: 1px solid #6CB1BD;
  border-radius: 4px;
  background: #fff;
  color: inherit;
  font-family: inherit;
  font-size: clamp(14px, 1.3vw, 16px);
  width: 100%;
  height: 200px;
  padding: 10px 16px;
  outline: none;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact-form__input textarea {
    height: 160px;
    padding: 5px 6px;
  }
}
.contact-form__input textarea:focus, .contact-form__input textarea:hover {
  background: rgba(145, 177, 183, 0.05);
}
.contact-form__input textarea::-moz-placeholder {
  color: #b0b0b0;
}
.contact-form__input textarea::placeholder {
  color: #b0b0b0;
}

@media screen and (max-width: 960px) {
  .contact__text-area {
    display: block;
    margin-top: 19px;
  }
}
@media screen and (max-width: 960px) {
  .contact-form__input {
    width: 100%;
  }
}
/*----------------- ラジオボタン -------------------*/
.contact-form__radio {
  position: relative;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .contact-form__radio {
    margin-top: 10px;
  }
}
.contact-form__radio label {
  display: block;
  margin-bottom: 10px;
}
.contact-form__radio [type=radio] {
  position: absolute;
  left: 1px;
  opacity: 0;
  transition: all 0.6s ease 0s;
}
.contact-form__radio .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  font-size: clamp(14px, 1.3vw, 16px);
}
@media (max-width: 767px) {
  .contact-form__radio .wpcf7-list-item-label {
    padding-left: 20px;
  }
}
.contact-form__radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #6CB1BD;
  background: #fff;
  border-radius: 50%;
  transition: all 0.6s ease 0s;
}
.contact-form__radio .wpcf7-list-item-label:hover::before {
  content: "";
  border: 1px solid #6CB1BD;
}
.contact-form__radio .wpcf7-list-item-label:active::before {
  content: "";
  background: #6CB1BD;
}
.contact-form__radio .wpcf7-list-item-label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #6CB1BD;
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: none;
}
.contact-form__radio [type=radio]:checked + span::after {
  display: block;
}

/*---------- チェックボックス ----------*/
.contact__check {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact__check {
    align-items: start;
  }
}
.contact__check .text {
  margin-top: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__check .text {
    text-align: left;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

/*----------------- checkbox -------------------*/
.contact__check--privacy {
  margin-top: 35px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__check--privacy {
    margin-top: 20px;
  }
}

.contact__check input[type=checkbox] {
  display: none;
}

/*----------------- ボタン -------------------*/
.contact__buttonBox {
  margin-top: 40px;
  text-align: center;
}

.contact__button {
  display: inline-block;
  position: relative;
  border-radius: 30px;
}
.contact__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../img/icon-mail_w.svg) no-repeat center center/contain;
  transition: all 0.3s ease 0s;
}
.contact__button:hover {
  background: #fff;
  color: #6CB1BD;
}
.contact__button:hover:after {
  background: url(../img/icon-mail.svg) no-repeat center center/contain;
}

.contact__btn {
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  width: 300px;
  height: 60px;
  line-height: 60px;
  text-align: left;
  padding: 0 50px;
  text-decoration: none;
  background: #6CB1BD;
  border: 1px solid #6CB1BD;
  border-radius: 60px;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  letter-spacing: -0.02rem;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.contact__btn:hover {
  color: #6CB1BD;
  background: #fff;
}
@media (max-width: 767px) {
  .contact__btn {
    width: 260px;
    font-size: 14px;
    padding: 0 35px;
  }
}

/*-----------------------------------------
contact-form7 調整
-----------------------------------------*/
.wpcf7-form-control-wrap {
  padding-left: 0;
}
.wpcf7-form-control-wrap:before {
  display: none;
}

.wpcf7-radio:before {
  display: none;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  margin-left: 0;
}
.wpcf7-radio .wpcf7-list-item:not(:first-child) {
  margin-top: 10px;
}
.wpcf7-radio .wpcf7-list-item:before {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

/*-----------------------------------------
    WordPressカスタマイズ
-----------------------------------------*/
.wpcf7 p {
  display: inline;
}

.wpcf7-list-item {
  display: block;
  margin: 0;
}

.contact__check .wpcf7-list-item [type=checkbox] {
  position: absolute;
  top: 3px;
  left: 0;
  display: none;
}

.contact__check--privacy .wpcf7-acceptance .wpcf7-list-item {
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .contact__check--privacy .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
  }
}

.contact__check--privacy .wpcf7-list-item-label {
  padding-left: 35px;
}

.contact__check--privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #6CB1BD;
  background: #fff;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.contact__check--privacy .wpcf7-list-item-label:hover::before {
  content: "";
  background: rgba(108, 177, 189, 0.1);
}

.contact__check--privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  left: 7px;
  border-right: 2px solid #6CB1BD;
  border-bottom: 2px solid #6CB1BD;
  height: 9px;
  width: 6px;
  cursor: pointer;
  opacity: 0;
}
@media (max-width: 767px) {
  .contact__check--privacy .wpcf7-list-item-label::after {
    top: 48%;
  }
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7 .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 12px;
  font-weight: normal;
  display: block;
}

.footer {
  height: 100px;
  width: 100%;
  border-top: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer {
    height: 60px;
  }
}
.footer__copy {
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08rem;
  line-height: 1.2;
}

/*----------------- topページ -------------------*/
/*-----------------------------------------
mv
-----------------------------------------*/
.mv {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .mv {
    margin-top: 80px;
    height: 500px;
  }
}

.mv__content {
  width: 320px;
  height: 500px;
  position: relative;
}
@media (max-width: 767px) {
  .mv__content {
    width: 220px;
    height: 343px;
  }
}
.mv__content .mv-imgs {
  width: 100%;
  overflow: hidden;
  border-radius: 200px;
}
.mv__content .mv-imgs .swiper-wrapper .mv-img img {
  vertical-align: bottom;
  line-height: 1em;
}
.mv__content .mv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  color: #6CB1BD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(14px, 1.3vw, 16px);
}
.mv__content .mv-text h1 {
  font-weight: 300;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.2;
}
.mv__content .mv-text h1 span {
  font-weight: 400;
  margin-top: 5px;
  display: block;
  font-size: clamp(14px, 1.3vw, 16px);
}
.mv__content .mv-text .img {
  width: clamp(20px, 2vw, 29px);
}
.mv__content .mv-text .mv-lead {
  font-family: "Lato", sans-serif;
  font-size: clamp(14px, 1.3vw, 16px);
}

/*-----------------------------------------
    scroll
-----------------------------------------*/
.scroll {
  position: absolute;
  right: 50%;
  bottom: 10%;
}
.scroll::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100px;
  background-color: #D9D9D9;
  z-index: 5;
  animation: mv-scroll 2s ease-in-out infinite;
}

@keyframes mv-scroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/*-----------------------------------------
    vision
-----------------------------------------*/
.vision {
  padding-top: 120px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .vision {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.vision__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 767px) {
  .vision__content {
    flex-direction: column;
  }
}
.vision__content .left {
  max-width: 470px;
  width: 43%;
}
@media (max-width: 767px) {
  .vision__content .left {
    width: 100%;
  }
}
.vision__content .left h2 {
  font-size: clamp(24px, 2.3vw, 32px);
  color: #6CB1BD;
  letter-spacing: 0.05rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 767px) {
  .vision__content .left h2 {
    font-size: clamp(20px, 5.5vw, 32px);
  }
}
.vision__content .left p {
  margin-top: 48px;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.02rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .vision__content .left p {
    margin-top: 32px;
  }
}
.vision__content .left .vision__button {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .vision__content .left .vision__button {
    margin-top: 24px;
  }
}
.vision__content .left .vision__btn {
  width: 135px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  letter-spacing: 0.02rem;
  font-family: "Lato", sans-serif;
  border-color: #555;
  color: #555;
  text-align: left;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.vision__content .left .vision__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  background: url(../img/arrow.svg);
  transition: all 0.3s ease 0s;
}
.vision__content .left .vision__btn:hover {
  background: #fff;
  border-color: #6CB1BD;
  color: #6CB1BD;
}
.vision__content .left .vision__btn:hover:after {
  background: url(../img/arrow_hover.svg);
}
.vision__content .right {
  max-width: 550px;
  width: 51%;
}
@media (max-width: 767px) {
  .vision__content .right {
    width: 100%;
  }
}
/*-----------------------------------------
service
-----------------------------------------*/
.service {
  background: rgba(145, 177, 183, 0.05);
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .service {
    padding-bottom: 48px;
  }
}
.service__inner {
  padding-top: 160px;
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .service__inner {
    padding-bottom: 96px;
  }
}
.service__content {
  margin-top: clamp(48px, 5vw, 72px);
}
.service__content .lead {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
}
.service__items {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(45px, 5vw, 75px);
}
@media (max-width: 767px) {
  .service__items {
    grid-template-columns: 1fr;
    gap: 96px;
  }
}
.service__items .card {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width: 767px) {
  .service__items .card {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
.service__items .card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -11%;
  width: 1px;
  height: 110%;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .service__items .card:not(:last-child)::after {
    bottom: -11%;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
  }
}
.service__items .card__head .img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.service__items .card__head .img img {
  vertical-align: bottom;
  line-height: 1em;
}
.service__items .card__head h3 {
  margin-top: 24px;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
}
@media (max-width: 767px) {
  .service__items .card__head h3 {
    margin-top: 16px;
  }
}
.service__items .card__head ul {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .service__items .card__head ul {
    margin-top: 8px;
  }
}
.service__items .card__head ul li {
  margin-left: 20px;
  list-style: disc;
  line-height: 1.8;
  font-size: clamp(13px, 1.3vw, 14px);
}
.service__items .card__bottom {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .service__items .card__bottom {
    margin-top: 16px;
  }
}
.service__items .card__bottom p {
  font-size: clamp(13px, 1.3vw, 14px);
}

/*-----------------------------------------
top-works
-----------------------------------------*/
.top-works {
  padding-top: 200px;
  padding-bottom: 160px;
  background: rgba(145, 177, 183, 0.05);
  border-radius: 200px 200px 0 0;
}
@media (max-width: 767px) {
  .top-works {
    padding-top: 96px;
    padding-bottom: 96px;
    border-radius: 100px 100px 0 0;
  }
}

.works__content .works__button {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .works__content .works__button {
    margin-top: 24px;
  }
}
.works__content .works__btn {
  width: 135px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  letter-spacing: 0.02rem;
  font-family: "Lato", sans-serif;
  border-color: #555;
  background: transparent;
  color: #555;
  text-align: left;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.works__content .works__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  background: url(../img/arrow.svg);
  transition: all 0.3s ease 0s;
}
.works__content .works__btn:hover {
  border-color: #6CB1BD;
  color: #6CB1BD;
}
.works__content .works__btn:hover:after {
  background: url(../img/arrow_hover.svg);
}
.works__items {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: clamp(24px, 3.2vw, 45px);
       column-gap: clamp(24px, 3.2vw, 45px);
  row-gap: clamp(56px, 6.7vw, 96px);
}
.works__items .card:hover .card__head .img img {
  transform: scale(1.1);
}
.works__items .card:hover .card__body p {
  color: #6CB1BD;
}
.works__items .card__head {
  overflow: hidden;
}
.works__items .card__head .img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.works__items .card__head .img img {
  vertical-align: bottom;
  line-height: 1em;
  transition: all 0.6s ease 0s;
}
.works__items .card__body {
  margin-top: 16px;
}
.works__items .card__body ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 10px;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.works__items .card__body ul li {
  border: 1px solid #6CB1BD;
  border-radius: 30px;
  font-size: clamp(10px, 1.3vw, 12px);
  line-height: 1.2;
  padding: 1.5px 14px 3px;
  color: #6CB1BD;
}
.works__items .card__body p {
  margin-top: 16px;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.4;
  transition: all 0.6s ease 0s;
}
@media (max-width: 767px) {
  .works__items .card__body p {
    margin-top: 10px;
  }
}
.works__bottom {
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 767px) {
  .works__bottom {
    margin-top: 56px;
  }
}
.works__bottom p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .works__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .works__items {
    grid-template-columns: 1fr;
  }
  .works__items .card {
    max-width: 450px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
/*----------------- topページ -------------------*/
/*-----------------------------------------
about
-----------------------------------------*/
.about {
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 48px;
}
@media (max-width: 767px) {
  .about {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.about__head h1 {
  font-family: "Lato", sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: 30%;
  line-height: 1.2;
  color: #6CB1BD;
}
.about__content .flex {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 767px) {
  .about__content .flex {
    gap: 24px;
    flex-direction: column-reverse;
  }
}
.about__content .left {
  max-width: 560px;
  width: 50%;
}
@media (max-width: 767px) {
  .about__content .left {
    width: 100%;
  }
}
.about__content .left h2 {
  font-size: 18px;
  letter-spacing: 0.05rem;
}
.about__content .left p {
  margin-top: 24px;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  line-height: 2;
  text-align: justify;
}
.about__content .right {
  max-width: 200px;
  width: 50%;
}
@media (max-width: 767px) {
  .about__content .right {
    width: 100%;
  }
}
/*-----------------------------------------
    skill
-----------------------------------------*/
.skill {
  padding-top: 120px;
  padding-bottom: 200px;
  background: rgba(145, 177, 183, 0.05);
}
@media (max-width: 767px) {
  .skill {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.skill__content .lead {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  line-height: 1.8;
  text-align: center;
}
.skill__content .skill-item {
  margin-top: 24px;
  max-width: 600px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #6CB1BD;
  border-radius: 4px;
  background: #fff;
  padding: 20px;
}
@media (max-width: 767px) {
  .skill__content .skill-item {
    width: 100%;
  }
}
.skill__content .skill-item.open .skill-item__icon span:nth-child(2) {
  transform: translateY(-50%) rotate(0deg);
}
.skill__content .skill-item.open .skill-item__body {
  padding-top: 40px;
  max-height: 500px;
}
.skill__content .skill-item__head {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  gap: 20px;
}
@media (max-width: 767px) {
  .skill__content .skill-item__head {
    gap: 10px;
  }
}
.skill__content .skill-item__head--text {
  flex: 1;
  letter-spacing: 0.1rem;
  font-size: 16px;
  line-height: 1.2;
  color: #6CB1BD;
}
.skill__content .skill-item__icon {
  width: 12px;
  height: 12px;
  position: relative;
}
.skill__content .skill-item__icon span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #6CB1BD;
  transition: transform 0.3s ease;
}
.skill__content .skill-item__icon span:nth-child(1) {
  transform: translateY(-50%) rotate(0deg);
}
.skill__content .skill-item__icon span:nth-child(2) {
  transform: translateY(-50%) rotate(90deg);
}
.skill__content .skill-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill__content .skill-item__body--dl {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.skill__content .skill-item__body--dl .row {
  display: flex;
  align-items: center;
}
.skill__content .skill-item__body--dl dt {
  width: 200px;
  line-height: 1.2;
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  position: relative;
}
@media (max-width: 767px) {
  .skill__content .skill-item__body--dl dt {
    width: 110px;
  }
}
.skill__content .skill-item__body--dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(48px, 5vw, 80px);
  height: 1px;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .skill__content .skill-item__body--dl dt::after {
    width: clamp(20px, 4vw, 24px);
  }
}
.skill__content .skill-item__body--dl dt span {
  margin-top: 2px;
  display: block;
  font-size: 10px;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}
.skill__content .skill-item__body--dl dd {
  margin-left: 16px;
  font-size: clamp(12px, 1.3vw, 14px);
  color: #555;
  width: calc(100% - 200px);
}
@media (max-width: 767px) {
  .skill__content .skill-item__body--dl dd {
    width: calc(100% - 110px);
  }
}

/*----------------- 制作実績 記事ページ -------------------*/
/*-----------------------------------------
    archive-works
-----------------------------------------*/
.archive-works {
  background: rgba(145, 177, 183, 0.05);
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .archive-works {
    padding-top: 136px;
  }
}
.archive-works .works__content .works__items .card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.archive-works .works__content .works__items .card.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.archive-works .works__content .works__button {
  margin-top: 64px;
  text-align: center;
}
.archive-works .works__content .works__btn {
  text-align: center;
  line-height: 20px;
  letter-spacing: 0.05rem;
}
.archive-works .works__content .works__btn::after {
  display: none;
}

/*-----------------------------------------
    overview
-----------------------------------------*/
.overview {
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .overview {
    margin-top: 80px;
    padding-top: 80px;
  }
}
.overview__head {
  text-align: center;
}
.overview__head h1 {
  font-family: "Lato", sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  letter-spacing: 0.05rem;
  font-weight: 500;
  color: #6CB1BD;
}
.overview__head .url {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(13px, 1.3vw, 14px);
  letter-spacing: 0.1rem;
  font-family: "Lato", sans-serif;
  transition: all 0.6s ease 0s;
}
.overview__head .url .img {
  width: 20px;
  line-height: 1;
}
.overview__head .url:hover {
  color: #6CB1BD;
}
.overview__img {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .overview__img {
    border-radius: 4px;
  }
}
.overview__flex {
  margin-top: 64px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 767px) {
  .overview__flex {
    margin-top: 32px;
    flex-direction: column;
  }
}
.overview__flex h2 {
  font-size: 16px;
  letter-spacing: 0.15rem;
  color: #6CB1BD;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.overview__flex .left {
  max-width: 480px;
  width: 50%;
}
@media (max-width: 767px) {
  .overview__flex .left {
    width: 100%;
  }
}
.overview__flex .left p {
  margin-top: 24px;
  font-size: clamp(13px, 1.3vw, 14px);
  letter-spacing: 0.05rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .overview__flex .left p {
    margin-top: 16px;
  }
}
.overview__flex .right {
  max-width: 480px;
  width: 50%;
}
@media (max-width: 767px) {
  .overview__flex .right {
    width: 100%;
  }
}
.overview__flex .right dl {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .overview__flex .right dl {
    margin-top: 16px;
  }
}
.overview__flex .right dl .row {
  display: flex;
  align-items: center;
}
.overview__flex .right dl dt {
  width: 96px;
  line-height: 1;
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: #959595;
  letter-spacing: 0.05rem;
  position: relative;
}
@media (max-width: 767px) {
  .overview__flex .right dl dt {
    width: 110px;
  }
}
.overview__flex .right dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: clamp(24px, 3vw, 40px);
  height: 1px;
  background: #d9d9d9;
}
@media (max-width: 767px) {
  .overview__flex .right dl dt::after {
    width: clamp(20px, 4vw, 24px);
  }
}
.overview__flex .right dl dd {
  margin-left: clamp(32px, 3vw, 72px);
  font-size: 14px;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  width: calc(100% - 96px);
}
@media (max-width: 767px) {
  .overview__flex .right dl dd {
    width: calc(100% - 110px);
  }
}
.overview__flex .right dl dd span {
  padding-right: 16px;
  display: inline-block;
  position: relative;
}
.overview__flex .right dl dd span:not(:last-child)::after {
  content: "／";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 14px;
}
.overview__button {
  margin-top: 16px;
}
.overview__btn {
  letter-spacing: 0;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  width: 120px;
  height: 30px;
  line-height: 30px;
}
.overview__btn:hover {
  background: #6CB1BD;
  color: #fff;
}
.overview__btn:hover .img svg path {
  fill: #fff;
}
.overview__btn .img svg {
  width: 16px;
}
.overview__btn .img svg path {
  transition: all 0.6s ease 0s;
}

/*-----------------------------------------
    entry
-----------------------------------------*/
.entry {
  padding-top: 200px;
  padding-bottom: 160px;
  background: rgba(145, 177, 183, 0.05);
  border-radius: 200px 200px 0 0;
}
@media (max-width: 767px) {
  .entry {
    padding-top: 96px;
    padding-bottom: 96px;
    border-radius: 100px 100px 0 0;
  }
}
.entry__scroll {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 136px;
}
@media (max-width: 767px) {
  .entry__scroll {
    border-radius: 10px;
    margin-bottom: 96px;
  }
}
.entry__scrollTab img {
  vertical-align: bottom;
  line-height: 1em;
}
.entry__scrollInner {
  height: 80vh;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .entry__scrollInner {
    height: 50vh;
  }
}
.entry__scrollInner img {
  vertical-align: bottom;
  line-height: 1em;
}
.entry__content {
  width: 90%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05rem;
  line-height: 1.8;
}
.entry__content p {
  font-size: clamp(14px, 1.3vw, 16px);
  letter-spacing: 0.05rem;
  line-height: 2;
  margin-top: 24px;
  margin-bottom: 64px;
}
.entry__content p:last-child {
  margin-bottom: 0;
}
.entry__content h2 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 500;
  padding-bottom: 16px;
  border-bottom: 1px solid #6CB1BD;
}
@media (max-width: 767px) {
  .entry__content h2 {
    padding-bottom: 8px;
  }
}
.entry__content h3 {
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 500;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .entry__content h3 {
    padding-bottom: 8px;
  }
}
.entry__content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background: #6CB1BD;
}

/*-----------------------------------------
    other-works
-----------------------------------------*/
.other-works {
  background: rgba(145, 177, 183, 0.05);
  padding-top: 72px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .other-works {
    padding-top: 48px;
    padding-bottom: 96px;
  }
}
.other-works .works-slider {
  overflow: hidden;
}
.other-works .works-track {
  display: flex;
  gap: clamp(24px, 3.2vw, 45px);
  width: -moz-max-content;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.other-works .works-track .card {
  max-width: 330px;
}
.other-works__head {
  position: relative;
  max-width: 1080px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.other-works__button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.other-works .works__btn {
  width: 135px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  font-family: "Lato", sans-serif;
  border-color: #555;
  background: transparent;
  color: #555;
  text-align: left;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .other-works .works__btn {
    width: 120px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.other-works .works__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 11px;
  height: 7px;
  background: url(../img/arrow.svg);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .other-works .works__btn::after {
    right: 10px;
  }
}
.other-works .works__btn:hover {
  border-color: #6CB1BD;
  color: #6CB1BD;
}
.other-works .works__btn:hover:after {
  background: url(../img/arrow_hover.svg);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}/*# sourceMappingURL=style.css.map */