@charset "UTF-8";

html,
body {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  font-family: YuMincho, /* Mac用 */ "Yu Mincho", /* Windows用 */ serif;
  font-weight: normal;
}

img {
  width: 100%;
}

/*CTAアニメーション*/
.animation {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ここまで */

.cta-container {
  background-color: black;
  padding: 80px 0;
  width: 100%;
  text-align: center;
}

.cta-container h1 {
  color: #fff;
  font-style: italic;
  font-weight: 600;
  font-size: 35px;
}

.cta-image-box {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.cta-text-img {
  width: 48%;
  margin-top: 80px;
}
.gray-arrow {
  width: 120px;
  margin: 30px 0;
}
.cta-btn {
  width: 40%;
}
.cta-sub-copy {
  color: #fff;
  font-size: 22px;
  margin: 15px 0;
}
.cta_img2 {
  width: 40% !important;
}


.dots {
  background-image: radial-gradient(circle at center, white 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.4em; /* 縦方向の位置調整 */
}

.onayami-container {
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/onayami_bg.jpg);
  padding: 5% 0;
}
.onayami-list {
  color: #fff;
  text-align: left;
  margin: 0 auto;
}
.onayami-list h1 {
  font-size: 1.8em;
  margin-bottom: 55px;
  width: 100%;
  font-style: italic;
  text-align: center;
}
.onayami-list li {
  margin: 0 auto;
  font-size: 1.5em;
  font-weight: light;
  line-height: 2;
  letter-spacing: 1.5px;
  width: 44%;
}
@media screen and (max-width: 1280px) {
  .onayami-list li {
    font-size: 1.3em;
  }
  .onayami-list h1 {
    font-size: 1.5em;
  }
}

.font-bigger {
  font-size: 1.2em;
}
.under-line {
  text-decoration: underline;
}

.omakase-container {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/omakase_bg.jpg);
  padding-bottom: 8%;
  padding-top: 2%;
}

.omakase-inner {
  color: #fff;
}

.omakase-inner img {
  margin: 0 auto;
  width: 15%;
  margin-bottom: 50px;
  display: block;
}

.omakase-inner h1 {
  margin: 0 auto;
  font-size: 2.1em;
  line-height: 1.4;
  font-style: italic;
  background-image: url(../images/yellow_underline.png);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 100px;
  letter-spacing: 1px;
  width: 45%;
}

.omakase-inner h2 {
  font-size: 2em;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 100px;
  letter-spacing: 1px;
}

.omakase-inner p {
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  .omakase-inner h1 {
    font-size: 1.8em;
    margin-bottom: 90px;
  }
  .omakase-inner h2 {
    font-size: 1.6em;
    margin-bottom: 90px;
  }
  .omakase-inner p {
    font-size: 1.5em;
    margin-bottom: 70px;
  }
}

.border {
  width: 30%;
  margin: 0 auto;
}

.point-container {
  background-color: black;
  padding-bottom: 6%;
}

.point-title,
.strength-title {
  background-color: #fff;
  text-align: center;
  padding: 50px 0;
  clip-path: polygon(0 39%, 100% 0, 100% 66%, 0 100%);
}

@media screen and (min-width: 1280px) {
  .point-title,
  .strength-title {
    margin-top: -60px;
  }
}
@media screen and (min-width: 1600px) {
  .point-title,
  .strength-title {
    margin-top: -80px;
  }
}

.point-title img {
  width: 23%;
}
.point-title h1 {
  font-size: 1.8em;
  font-weight: 600;
  font-style: italic;
  transform: rotate(-2deg);
  margin-top: 8px;
  letter-spacing: 1.5px;
}

.point-sub-container {
  display: flex;
  justify-content: space-evenly;
  padding: 0 5%;
  margin-top: 20px;
}
.point-sub-container img {
  width: 22%;
}

.strength-container {
  background-color: black;
  padding: 5% 0;
}
.strength-title img {
  width: 35%;
}

.strength-title h1 {
  font-size: 1.8em;
  font-weight: 600;
  font-style: italic;
  transform: rotate(-2deg);
  margin-top: 8px;
  letter-spacing: 1.5px;
}

.strength-inner {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.dots {
  background-image: radial-gradient(circle at center, white 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: 0.4em; /* 縦方向の位置調整 */
}

.strength-container h2 {
  margin-top: 50px;
  font-size: 1.4em;
  font-weight: 500;
}

.strength-list {
  text-align: center;
  display: inline-block;
  margin: 20px 0;
}
.strength-numbers {
  font-size: 1.5em;
}
.list-box {
  text-align: left;
  margin: 12px 0;
  padding: 5px 70px;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  background-color: #c0b283;
  transform: translateX(-100%);
  transition: transform 0.7s;
}

.list-box.animate {
  transform: translateX(0);
}

.list-box p {
  color: black;
  font-size: 1.3em;
  font-weight: 500;
}
.strength-text {
  font-size: 18px;
  margin-bottom: 5%;
  margin-top: 2%;
  line-height: 1.5;
}

/* 強み吹き出し */
.strength_balloon {
  position: relative;
  margin: 0 auto;
  width: 180px;
  height: 50px;
  background: #ffffff;
  padding: 0px;
  border: 5px solid #fff;
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.strength-3rd-text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 2;
}
.strength_balloon:after,
.strength_balloon:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 18%;
}
.strength_balloon:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 6px;
  border-bottom-width: 6px;
  border-left-width: 7px;
  border-right-width: 7px;
  margin-left: -7px;
  border-top-color: #ffffff;
}
.strength_balloon:before {
  border-color: rgba(255, 15, 0, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-left: -12px;
  margin-top: 5px;
  border-top-color: #fff;
}
/* 終わり */

.message-container {
  background-repeat: no-repeat;
  background-image: url(../images/message1_bg.jpg);
  background-size: cover;
  padding: 6% 0;
}

.message-title {
  text-align: center;
}

.message-title img {
  width: 28%;
  margin-bottom: 1%;
}
.message-title h1 {
  color: #fff;
  font-size: 1.8em;
  font-style: italic;
  letter-spacing: 1.5px;
}

.profile-container {
  display: flex;
  width: 90%;
  margin: 0 auto;
  margin-top: 5%;
}

.profile-left {
  width: 45%;
  text-align: center;
}
.profile-right {
  width: 55%;
}

.profile-left p {
  color: #fff;
  font-size: 1.3em;
  line-height: 1.8;
  font-style: italic;
  letter-spacing: 1px;
}

.profile-left img {
  width: 60%;
  margin-bottom: 5%;
}

.profile-right {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.3em;
}

.profile-right {
  text-align: left;
  line-height: 1.8;
  padding: 2%;
  border-radius: 5px;
}

.feature-container {
  background-color: #000000;
  color: #fff;
  padding: 5% 0;
}

.feature-title {
  background-color: #fff;
  text-align: center;
  padding: 50px 0;
  clip-path: polygon(0 39%, 100% 0, 100% 66%, 0 100%);
}

.feature-title img {
  width: 35%;
  margin-bottom: 1%;
}
.feature-title h1 {
  color: #000;
  font-size: 1.8em;
  font-style: italic;
  letter-spacing: 1.5px;
  transform: rotate(-2deg);
}

.feature-container h2 {
  text-align: center;
  font-size: 1.6em;
  line-height: 1.5;
  font-style: italic;
  letter-spacing: 1.5px;
  margin-top: 3%;
  font-weight: 600;
}

.feature-inner {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5%;
  width: 90%;
}

.feature-content {
  width: 30%;
  padding: 2%;
  text-align: center;
}

.feature-content p {
  text-align: right;
  font-size: 1.2em;
  display: inline-block;
  margin-bottom: 3%;
}

.gold-bigger-text {
  font-size: 1.8em;
  color: #c0b283;
  margin-right: 5px;
}

.good-point-box {
  display: flex;
  width: 70%;
  margin: 0 auto;
  margin-top: 5%;
}

.good-point1,
.good-point2 {
  position: relative;
  margin: 0 auto;
  padding: 0 2%;
  width: 100%;
}
.good-point1 p,
.good-point2 p {
  position: absolute;
  top: 58%;
  left: 51%;
  transform: translate(-50%, -50%);
  font-size: 1.2em;
  line-height: 1.5;
  letter-spacing: 1px;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1280px) {
  .good-point1 p,
  .good-point2 p {
    font-size: 1.1em;
    left: 52%;
    top: 60%;
  }
}

.message-container2 {
  background-repeat: no-repeat;
  background-image: url(../images/message2_bg.jpg);
  background-size: cover;
  padding: 6% 0;
}

.last-section {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/last_bg.jpg);
  padding: 5% 0;
  text-align: center;
}

.last-section p {
  color: #fff;
  font-size: 1.4em;
  line-height: 2;
  margin-top: 5%;
  letter-spacing: 1.5px;
}

.last-section img {
  width: 50%;
  margin-top: 5%;
}

.last-sentence1 {
  font-size: 2em !important;
}

.footer-container {
  background-color: #c0b283;
  color: #fff;
  text-align: center;
  padding: 60px 0 10px 0;
}

.footer-link {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.footer-link a {
  padding: 0 15px;
}

.float-btn {
  width: 50px;
  height: auto;
  text-align: right;
  vertical-align: bottom;
  position: fixed !important;
  position: absolute;
  bottom: 10em;
  right: 0;
  z-index: 1000;
  display: inline-block;
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
  border-radius: 5px;
}

.float-btn a {
  writing-mode: vertical-rl;
  letter-spacing: 1.5px;
  font-size: 18px;
  font-weight: 700;
}
.hide {
  display: none;
}

/* 以下スマホ用レスポンシブ */
@media screen and (max-width: 768px) {
  .for-pc {
    display: none !important;
  }

  .cta-container {
    padding: 50px 0;
  }
  .cta-container h1 {
    font-size: 25px;
  }
  .cta-text-img {
    width: 90%;
    margin-top: 40px;
  }
  .cta-btn {
    width: 80%;
    margin-top: 10px;
  }
  .gray-arrow {
    width: 100px;
  }
  .cta-sub-copy {
    font-size: 20px;
    margin: 15px 0;
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
  }
  .cta_img2 {
  width: 80% !important;
}

  .onayami-container {
    background-image: url(../images/onayami_bg_sp.jpg);
    background-size: cover;
    width: 100%;
    padding: 7% 0;
  }

  .onayami-list h1 {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  .onayami-list li {
    font-size: 1em;
    line-height: 1.8;
    letter-spacing: 0;
    width: 95%;
  }

  .omakase-container {
    background-image: url(../images/omakase_bg_sp.jpg);
  }

  .omakase-inner img {
    width: 30%;
    margin-bottom: 10%;
  }
  .omakase-inner h1 {
    font-size: 1.3em;
    line-height: 1.4;
    font-weight: 700;
    padding-bottom: 5px;
    margin-bottom: 50px;
    letter-spacing: 1px;
    width: 90%;
  }
  .omakase-inner h2 {
    margin: 0 auto;
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 33px;
    width: 90%;
  }

  .omakase-inner p {
    font-size: 1.1em;
  }

  .point-title,
  .strength-title,
  .feature-title {
    background-color: #fff;
    text-align: center;
    padding: 40px 0;
    clip-path: polygon(0 20%, 100% 0, 100% 75%, 0 95%);
  }

  .point-sub-container {
    padding: 0 2%;
  }

  .point-title img {
    width: 50%;
  }
  .point-title h1 {
    font-size: 1.5em;
  }
  .point-sub-container img {
    width: 50%;
  }
  .strength-title img {
    width: 60%;
  }
  .strength-title h1 {
    font-size: 1.3em;
  }
  .strength-inner {
    width: 90%;
  }
  .strength-container h2 {
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: 500;
  }
  .list-box {
    padding: 5px 10px;
  }
  .list-box p {
    font-size: 1em;
    line-height: 1.5;
  }
  .strength-numbers {
    font-size: 1.3em;
  }
  .strength-text {
    font-size: 16px;
    margin-bottom: 10%;
    margin-top: 3%;
    line-height: 1.5;
    text-align: left;
  }
  .strength-3rd-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 2;
  }
  .message-title img {
    width: 60%;
    margin-bottom: 1.5%;
  }
  .message-title h1 {
    font-size: 1.3em;
  }
  .profile-container {
    display: block;
  }
  .profile-left,
  .profile-right {
    width: 100%;
  }
  .profile-left p {
    font-size: 1em;
    margin-bottom: 2%;
  }
  .profile-right {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    line-height: 1.5;
  }
  .message-container {
    background-image: url(../images/message_bg_sp1.jpg);
    background-size: contain;
    background-color: #000;
  }
  .feature-title img {
    width: 70%;
  }
  .feature-title h1 {
    font-size: 1.4em;
  }
  .feature-container h2 {
    text-align: center;
    font-size: 1.3em;
    width: 90%;
    margin: 3% auto;
  }
  .feature-content {
    width: 50%;
  }
  .gold-bigger-text {
    font-size: 1.5em;
    margin-right: 3px;
  }
  .feature-content p {
    text-align: center;
    font-size: 14px;
  }
  .feature-inner {
    align-items: baseline;
  }
  .good-point-box {
    display: block;
    width: 90%;
  }
  .good-point1 p,
  .good-point2 p {
    font-size: 1em;
    left: 52%;
    top: 60%;
  }
  .message-container2 {
    background-image: url(../images/message_bg_sp2.jpg);
    background-size: contain;
    background-color: #000;
  }
  .last-section p {
    font-size: 1em !important;
    line-height: 1.5;
  }
  .last-section img {
    width: 90%;
  }
  .omakase-inner p {
    margin-bottom: 50px;
  }

  .footer-container {
    padding: 60px 0 10px 0;
  }
  .float-btn {
    width: 10%;
    bottom: 10%;
    right: 1px;
  }
  .float-btn a {
    font-size: 15px;
  }
  .footer-link a {
    font-size: 14px;
  }
}

/* 以下PCのみの設定 */
@media screen and (min-width: 768px) {
  .for-sp {
    display: none !important;
  }
}
