@charset "UTF-8";
/* ============== 
共通
============== */
body {
  color: #686868;
  font-size: 16px;
  font-family: "BIZ UDPMincho", serif;
  line-height: 1.6;
  background-color: #fefbef;
}

img {
  width: 100%;
  /* height: auto; */
  vertical-align: top;
}

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

.sp {
  display: none;
}

.inner {
  margin-inline: auto;
  padding: 0 16px;
  max-width: calc(1080px + 32px);
  width: 100%;
  text-align: center;
}
/* メディアクエリ */
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .inner {
    padding: 0 16px;
  }
}
/* ============== */

/* ============== 
header 
============== */

.header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background-color: #fefbef;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(920px);
}

.header__logo img {
  width: 124px;
  height: 78px;
}

.header__nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header__nav-textlink {
  position: relative;
}

.header__nav-textlink::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 2px;
  background-color: #91cfcf;
  transition: opacity 0.5s ease 0s;
}

.header__nav-textlink:hover::after {
  opacity: 1;
}

.header__nav-contact {
  padding: 8px 16px 8px 17px;
  border: 1px solid #91cfcf;
  border-radius: 6px;
  color: #91cfcf;
  line-height: 1;
}

.header__nav-contact:hover {
  background-color: #91cfcf;
  color: #ffffff;
  transition: all 0.5s ease 0s;
}

.header__nav-instagram {
  width: 36px;
  transition: transform 0.5s ease 0s;
}

.header__nav-instagram:hover {
  transform: scale(1.05);
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .header {
    height: 105px;
  }
  .header__inner {
    display: block;
  }
  .header__logo img {
    width: auto;
    height: 72px;
  }
  .header__nav {
    padding: 0 0 16px;
  }
  .header__nav ul {
    justify-content: center;
    gap: 16px;
  }
  .header__nav-textlink {
    font-size: 14px;
  }
  .header__nav-textlink:hover {
    border-bottom: none;
  }
  .header__nav-contact,
  .header__nav-instagram {
    display: none;
  }
}
/* ============== */

/* ============== 
KV
============== */

.kv {
  position: relative;
  margin-top: 78px;
  margin-bottom: 32px;
}

.kv::after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 408px;
  background-color: #b5dcd8;
}

.kv img {
  display: block;
  margin: 0 auto;
  padding-top: 32px;
  max-width: 1080px;
  height: 563px;
  object-fit: cover;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .kv {
    position: static;
    margin-top: 105px;
    margin-bottom: 25px;
  }
  .kv::after {
    display: none;
  }
  .kv img {
    padding-top: 0;
    object-fit: contain;
    height: auto;
  }
}
/* ============== */

/* ============== 
共通箇所(見出し、テキスト)
============== */

.section-title {
  display: inline-block;
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 19px;
  font-weight: bold;
  font-size: 24px;
}

.section-title::before {
  position: absolute;
  content: "";
  top: -5px;
  left: -58px;
  width: 43px;
  height: 38px;
  background-image: url(../img/icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-title::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 110px;
  height: 1px;
  background-color: #b5dcd8;
}

.contents__text-blue {
  margin-bottom: 16px;
  color: #74a8a8;
  font-weight: bold;
  font-size: 20px;
}

.contents__text-normal {
  margin-bottom: 16px;
  color: #707070;
}

.contents__text-normal:last-child {
  margin-bottom: 0;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 24px;
    padding-bottom: 10px;
    font-size: 18px;
  }
  .section-title::before {
    top: 0;
    left: -38px;
    width: 29px;
    height: 24px;
  }
  .section-title::after {
    width: 93px;
  }
  .contents__text-blue {
    font-size: 16px;
  }
  .contents__text-normal {
    font-size: 14px;
  }
}
/* ============== */

/* ==============
about
============== */

.about {
  background-color: #fefbef;
}

.about__inner {
  max-width: calc(920px + 32px);
  text-align: center;
}

.about__content {
  display: flex;
  gap: 16px;
  padding-bottom: 72px;
}

.about__text {
  width: calc(566 / 887 * 100% - 16px / 2);
  text-align: left;
}

.about__img-1 {
  width: calc(322 / 887 * 100% - 16px / 2);
}

.about__img-1 img {
  box-shadow: 8px 8px #b5dcd8;
  height: 302px;
  object-fit: cover;
}

.about__img-2 {
  padding-bottom: 64px;
  background-color: #fff;
}

.about__img-2 img {
  height: 250px;
  object-fit: cover;
  object-position: 0 65%;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .about__content {
    display: block;
    padding-bottom: 40px;
  }
  .about__text {
    width: 100%;
    margin-bottom: 32px;
  }
  .about__text-blue {
    margin-bottom: 16px;
  }
  .about__img-1 {
    width: 100%;
  }
  .about__img-1 img {
    box-shadow: 8px 8px #b5dcd8;
    height: 204px;
    object-fit: cover;
  }
  .about__img-2 {
    padding-bottom: 36px;
  }
  .about__img-2 img {
    height: 100px;
    object-position: 0 60%;
  }
}
/* ============== */

/* ============== 
lineup
============== */

.lineup {
  padding-bottom: 64px;
  background-color: #ffffff;
  background-image: url(../img/bg-dress.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100%;
}

.lineup__text {
  margin-inline: auto;
  margin-bottom: 32px;
  max-width: 888px;
  text-align: left;
}

.lineup__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 auto;
  max-width: 920px;
}

.lineup__img {
  width: calc(100% / 3 - 16px * 2 / 3);
}

.lineup__img:hover {
  opacity: 0.7;
  transition: all 0.5s ease 0s;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .lineup {
    padding-bottom: 32px;
    background-image: none;
  }
  .lineup__list {
    display: block;
  }
  .lineup__img {
    width: 100%;
    margin-bottom: 16px;
  }
}
/* ============== */

/* ============== 
store
============== */

.designfont {
  margin-bottom: 64px;
  background-color: #fefbef;
}

.store {
  padding-bottom: 64px;
  background-color: #fefbef;
}

.store__inner {
  max-width: calc(920px + 32px);
}

.store__items {
  display: flex;
  gap: 32px;
  max-width: 920px;
}

.store__item {
  width: calc(50% - 16px);
}

.store__img {
  margin-bottom: 12px;
}

.store__address {
  margin-bottom: 15px;
  padding-left: 16px;
  text-align: left;
}

.iframe-wrapper {
  position: relative;
  padding-top: calc(216 / 444 * 100%);
  width: 100%;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .designfont {
    margin-bottom: 32px;
  }
  .store {
    padding-bottom: 32px;
  }

  .store__designfont img {
    height: 64px;
  }
  .store__items {
    gap: 16px;
    width: calc(262px * 2 + 16px);
    width: auto;
    overflow-x: scroll;
  }

  .store__item {
    padding-bottom: 16px;
    min-width: 262px;
  }
  .store__img {
    margin-bottom: 9px;
  }
  .store__address {
    padding-bottom: 11px;
    font-size: 14px;
  }
}
/* ============== */

/* ============== 
contact
============== */

.contact {
  padding-bottom: 64px;
  background-color: #fefbef;
}

.contact__inner {
  max-width: calc(920px + 32px);
}

.contact__list {
  display: flex;
  flex-wrap: wrap;
}

.contact__list dt {
  position: relative;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-left: 19px;
  width: 20%;
  text-align: left;
}

.contact__list dt::before {
  position: absolute;
  content: "※";
  top: 8px;
  left: 0;
  width: 19px;
  height: 23px;
  color: #92cfcf;
}

.contact__list dd {
  width: 80%;
}

.contact__list dd input,
.contact__list dd textarea {
  width: 100%;
  margin-bottom: 16px;
  padding-left: 16px;
  height: 40px;
  border: none;
  background-color: #efebdb;
  vertical-align: top;
}

.contact__list dd textarea {
  margin-bottom: 40px;
  padding-top: 10px;
  height: 170px;
}

.contact__btn {
  border: none;
}

.contact__btn input {
  padding: 16px 0;
  width: 239px;
  border: 1px solid #92cfcf;
  background-color: #92cfcf;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.contact__btn input:hover {
  background-color: #ffffff;
  color: #92cfcf;
  transition: all 0.5s ease 0s;
}

/* メディアクエリ */
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 44px;
  }
  .contact__list {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .contact__list dt {
    margin-bottom: 4px;
    width: 100%;
  }
  .contact__list dd {
    width: 100%;
  }
  .contact__list dd input {
    margin-bottom: 8px;
    height: 30px;
  }
  .contact__list dd textarea {
    height: 100px;
  }
}
/* ============== */

/* ============== 
footer
============== */

.footer {
  padding: 16px 0;
  height: 48px;
  background-color: #b5dcd8;
}

.footer__copyright {
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 12px;
  }
}

/* ============== */

/* ============================
* to-top
* ========================= */

.to-top {
  position: fixed;
  z-index: 5;
  bottom: 50px;
  right: 50px;
  visibility: hidden;
  opacity: 0;
  width: 50px;
  height: 50px;
  transition: all 0.8s ease 0s;
}

.to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.to-top a {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #ffffff;
  border-radius: 3px;
  background-color: #92cfcf;
}

.to-top a::after {
  position: absolute;
  content: "";
  bottom: 40%;
  right: 50%;
  transform: translate(50%, 50%) rotate(135deg);
  width: 20px;
  height: 20px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

@media screen and (max-width: 768px) {
  .to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .to-top a::after {
    bottom: 43%;
    width: 15px;
    height: 15px;
  }
}
