/*
Theme Name: Ateno Oyatsu
Theme URI: https://example.com/
Author: Your Name
Description: Custom theme for Ateno Oyatsu project
Version: 1.0
*/
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;600&family=Noto+Sans+JP:wght@100;400;700&display=swap");
body {
  font-family: "Montserrat", sans-serif;
  font-family: "Noto Sans JP", sans-serif;
  color: #252A2C;
}

html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

/* header
-------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 60px;
  background-color: #fff;
}

.header-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo a {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1.8px;
}

.header-info {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 40px;
  background-color: #ABA5A5;
}

.header-info-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-text {
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
.header-text p {
  height: 100%;
}

/* 通常（非ログイン） */
.header { top: 0; }
.header-info { top: 60px; }

/* ログイン時（管理バーがあるとき） */
body.admin-bar .header {
  top: 32px;           /* PCの管理バー高さ */
}

body.admin-bar .header-info {
  top: calc(32px + 60px);
}

/* スマホの管理バーは高さが変わる */
@media (max-width: 782px) {
  body.admin-bar .header {
    top: 46px;
  }
  body.admin-bar .header-info {
    top: calc(46px + 60px);
  }
}


/* drawer
-------------------------------------*/
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.drawer-icon.is-active .drawer-icon__bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background-color: #fff;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background-color: #fff;
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 20px;
  height: 4px;
  background: #252A2C;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  position: fixed;
  width: 50%;
  height: 100%;
  background: rgba(72, 78, 77, 0.95);
  top: 0;
  right: 0;
  z-index: 299;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-content__items {
  border-bottom: 1px dotted #707070;
  padding: 60px 20px;
}
.drawer-content__items a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  color: #fff;
  position: relative;
  width: 200px;
  line-height: 1.5;
}

.drawer-background {
  position: fixed;
  z-index: 298;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/* main
-------------------------------------*/
.main {
  width: 100%;
  height: 800px;
  margin-top: 68px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main {
    width: 100%;
    display: block;
    overflow: hidden;
  }
}


.swiper {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面全体を覆う高さ */
}
.main-inner {
  width: 100%;
  /* padding: 200px 0 0 0; */
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-inner {
    position: relative;
    padding-top: 56.25%;
  }
}
/* PC用画像をデフォルト表示 */
.slide-image-pc {
  display: block;
}

.slide-image-sp {
  display: none;
}

/* スマホ版ではスマホ用画像を表示 */
@media (max-width: 767px) {
  .slide-image-pc {
      display: none;
  }

  .slide-image-sp {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
  }
}

.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}
@media (max-width: 767px) {
  .main-content {
    top: 65%;
    transform: translate(-50%, -65%);
  }
}

.main-title {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.3em;
}

.main-text {
  margin-top: 20px;
  font-size: 4rem;
  text-align: center;
  letter-spacing: 0.3em;
}

.main-date {
  margin-top: 20px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.5em;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 20px;
}

.swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: #fff;
}

/* valentine
-------------------------------------*/
.valentine {
  width: 100%;
  background-color: #f7f5ef;
}

.valentine-inner {
  width: 100%;
  padding: 100px 0 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 0.1em;
}

.valentine-text {
  margin: 50px 0;
  font-size: 1.2rem;
  text-align: center;
}

.valentine-content {
  padding-top: 40px;
  background-color: #dbd6ca;
}

.valentine-img {
  width: 553px;
  padding-top: 30%;
  background-size: contain; /* アスペクト比を保ちながら幅または高さに合わせる */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  background-position: center; 
  /* background: url(../img/@2x/top.png) no-repeat center center/cover; */
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .valentine-img {
    padding-top: 50%;
    /* background: url(../img/@2x/top.png) no-repeat center center/cover; */
    width: 80%;
    margin: 0 auto;
  }
}

.valentine-content-head {
  margin: 50px 0;
  font-size: 2rem;
  text-align: center;
  line-height: 3.5rem;
}
.valentine-content-head p {
  color: #945d3c;
}
@media screen and (max-width: 767px) {
  .valentine-content-head p {
    font-size: 1.6rem;
    margin: 0;
    padding: 0 15px;
  }
}

.valentine-content-menu {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.5;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .valentine-content-menu {
    margin-bottom: 10px;
  }
}

/* card
-------------------------------------*/
.valentine-cards {
  padding: 20px 0;
}

.valentine-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .valentine-card {
    display: block;
  }
}

.valentine-card-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin: 40px;
}

.valentine-card-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
  padding: 20px 40px 0 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .valentine-card-info {
    padding: 0 15px;
  }
}

.valentine-card-title {
  color: #945d3c;
  letter-spacing: 0.03em;
}

.valentine-card-product-name {
  margin-top: 20px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.valentine-card-price {
  margin-top: 20px;
}

.valentine-card-text {
  margin-top: 20px;
  line-height: 1.5;
}
.valentine-card-text p {
  margin: 1em 0;
}

.product-button {
  margin-top: 50px;
  text-align: right;
}
.product-button a {
  text-align: left;
  width: 200px;
  display: inline-block;
  border: 0px solid #252A2C;
  padding: 20px;
  text-decoration: none;
  color: #252A2C;
  background-color: #f7f5ef;
  padding-right: 50px;
  position: relative;
}
.product-button a::after {
  position: absolute;
  content: "→";
  top: 50%;
  right: 10%;
  -webkit-transform: translate(-10%, -50%);
          transform: translate(-10%, -50%);
  width: 20px;
  height: 20px;
  font-size: 1.8rem;
}

/* material
-------------------------------------*/
.material .section-title {
  margin-top: 50px;
}

.material-lead {
  margin: 30px 0;
  text-align: center;
  font-size: 2rem;
}

.material-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0px 50px 0;
}
@media screen and (max-width: 767px) {
  .material-cards {
    display: block;
  }
}

.material-card {
  padding: 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  margin-right: 20px;
}
.material-card:nth-child(2) {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .material-card:nth-child(2) {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .material-card {
    padding: 10px 15px;
    margin-right: 0;
  }
  .material-card:nth-child(n+1) {
    margin-top: 40px;
  }
}

.material-img img {
  border-radius: 50% 50%;
}
@media screen and (max-width: 767px) {
  .material-img img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
}

.material-head {
  margin-top: 10px;
  text-align: center;
  font-size: 1.8rem;
}

.material-text {
  margin-top: 20px;
  font-size: 1.5rem;
  padding: 0 3px;
  line-height: 1.5;
}

/* message
-------------------------------------*/
.message {
  width: 100%;
}

.message-inner {
  margin: 100px 0 50px;
  width: 100%;
}

.message-img {
  width: 30%;
  margin: 20px auto;
}

.message-text {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message-text {
    width: 90%;
  }
}
.message-text p {
  font-size: 1.5rem;
  line-height: 1.8;
}
.message-text p:nth-child(n+1) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .message-text p {
    font-size: 1rem;
  }
}

/* footer
-------------------------------------*/
.footer {
  width: 100%;
  background-color: #484e4d;
  padding: 65px 0 30px;
  color: #fff;
}

.footer-nav {
  text-align: center;
}
.footer-nav li {
  margin: 20px 0;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 100px;
}

.footer-copyright {
  margin-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3215686275);
  letter-spacing: 0.2em;
}