@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 3.4042553191vw;
  }
}
@media (min-width: 470px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.text {
  font-size: 14px;
  color: #000;
  line-height: 2;
}

.tac {
  text-align: center;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #89e614));
  background: linear-gradient(transparent 60%, #89e614 60%);
}

.btn {
  display: block;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt200 {
  margin-top: 100px;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

/*==================================================
  動き自体の指定：今回は「ふわっ」
  ===================================*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay-time04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay-time06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.fadeUpTrigger {
  opacity: 0;
}

/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.hamburger {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: #fff;
  padding: 1px;
}

.hamburger span {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #734221;
  margin: 0 auto;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.hamburger span:nth-child(1) {
  top: -2px;
  color: #734221;
  font-size: 10px;
  background: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hamburger span:nth-child(2) {
  top: 0;
}

.hamburger span:nth-child(3) {
  margin: 7px auto;
}

.hamburger span:nth-child(4) {
  top: 0;
}

/*is-OPEN時の動き*/
.hamburger.is-open span:nth-child(2) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.is-open span:nth-child(3) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.hamburger.is-open span:nth-child(4) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 500px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.menu {
  background-color: #F6BC01;
  margin-top: -60px;
  padding: 60px 0;
}

.menu__item {
  padding: 20px 0;
  text-align: center;
  border-bottom: 2px solid #E5AF00;
  font-size: 14px;
  text-transform: uppercase;
  color: #734221;
}

.test {
  font-size: 20px;
  font-size: 1.25rem;
  background-color: #000;
  color: #fff;
}

body {
  background-image: url(../images/banana.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

.main {
  background-color: #fff;
  max-width: 500px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 10px;
  right: 0;
  left: 0;
  z-index: 999;
  text-align: right;
}

.header__hamburger {
  margin-right: 10px;
}

.header__menu {
  display: none;
}

.header__menu.is-open {
  display: block;
}

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

.fv__texts {
  position: absolute;
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  margin: 0 auto;
}

.fv__readtext {
  max-width: 70%;
  margin: 10% auto 0 auto;
}

.fv__bottom {
  position: absolute;
  top: -150px;
  left: 0;
  z-index: 0;
}

.fv__btn {
  padding-top: 50px;
  position: inherit;
}

.concept {
  background-color: #F6BC01;
  margin-top: 100px;
}

.concept__inner {
  position: relative;
  top: 80px;
  z-index: 5;
  padding-bottom: 80px;
}

.concept__box {
  background-image: url(../images/concept-bg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  padding: 50px 0;
}

.concept__head {
  width: 150px;
  height: auto;
  position: absolute;
  top: -100px;
  left: 32%;
  z-index: 10;
}

.concept__title {
  margin: 0 auto;
  width: 90%;
  margin-top: 50px;
}

.concept__text {
  font-size: 18px;
  margin-top: 50px;
  line-height: 2;
}

.issue {
  background: #F6BC01;
  background-image: url(../images/issue-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.issue__title {
  width: 90%;
  margin: 0 auto;
}

.issue__item.issue__item--1 {
  width: 60%;
}

.issue__item.issue__item--2 {
  width: 60%;
  margin-left: auto;
}

.issue__item.issue__item--3 {
  width: 80%;
}

.issue__sub-comment {
  width: 30%;
}

.issue__comment {
  font-size: 27px;
  font-family: "ab-tombo-bold", "hiragino-kaku-gothic-pron", sans-serif;
}

.issue__smaile {
  width: 60%;
  margin-bottom: -100px;
}

.issue__bottom {
  position: absolute;
  width: 100%;
  top: 99.9%;
  left: 0;
  z-index: -1;
}

.issue__bottom img {
  display: block;
}

.point {
  background-color: #fff;
  padding: 80px 0;
}

.point__title {
  width: 80%;
  margin: 0 auto;
}

.point__content:not(:first-child) {
  margin-top: 100px;
}

.point__content.point__content--1 .point__sub-title,
.point__content.point__content--2 .point__sub-title,
.point__content.point__content--3 .point__sub-title {
  margin-top: 20px;
}

.point__sub-title {
  color: #734221;
  font-size: 30px;
  font-family: "ab-tombo-bold", "hiragino-kaku-gothic-pron", sans-serif;
  padding: 0 15px;
}

.point__text {
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
  padding: 0 15px;
}

.flow {
  background-color: #F6BC01;
}

.flow__title {
  width: 80%;
  margin: 0 auto;
  padding-top: 80px;
}

.flow__contents {
  margin-top: 30px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.flow__banana-top {
  position: absolute;
  top: -80px;
  right: 0;
  width: 20%;
  z-index: -1;
}

.flow__banana-bottom {
  bottom: -90px;
  position: absolute;
  left: 0;
  width: 40%;
}

.flow__content {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 0;
}

.flow__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.flow__image {
  max-width: 30%;
  width: 100%;
}

.flow__number {
  color: #F6BC01;
  font-size: 20px;
  font-family: "ab-tombo-bold", "hiragino-kaku-gothic-pron", sans-serif;
  text-transform: uppercase;
  display: block;
}

.flow__sub-title {
  color: #734221;
  font-size: 24px;
  font-family: "ab-tombo-bold", "hiragino-kaku-gothic-pron", sans-serif;
  padding: 0 10px 0 0;
}

.flow__text {
  padding: 20px 10px 0 10px;
}

.flow__arrow {
  width: 40px;
  margin: 10px auto;
}

.price {
  padding: 50px 0;
}

.price__title {
  width: 80%;
  margin: 0 auto;
}

.price__image {
  position: relative;
}

.price__image img:nth-child(2) {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 30%;
  z-index: -1;
}

.voice__title {
  width: 80%;
  margin: 0 auto;
}

.voice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../images/voice-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 20px;
  padding: 30px 20px;
  border: 3px dashed #C8C8C8;
}

.voice__image {
  border-radius: 10px;
  aspect-ratio: 1.5;
  width: 100px;
}

.voice__text {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}

.faq {
  background-color: #F6BC01;
  position: relative;
}

.faq__banana-top {
  left: 0;
  position: absolute;
  top: 0;
  width: 30%;
}

.faq__banana-bottom {
  bottom: -50px;
  position: absolute;
  right: 0;
  width: 50%;
}

.faq__title {
  width: 30%;
  margin: 0 auto;
  margin-top: 30px;
}

.faq__items {
  padding: 50px 0;
}

.faq__item {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}

.faq__item:not(:first-child) {
  margin-top: 30px;
}

.faq__item.hidden {
  display: none;
}

.faq__question {
  font-size: 18px;
  line-height: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 11px;
  border-bottom: 1px solid #000;
  margin-bottom: 11px;
}

.faq__answer {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq__question::before,
.faq__answer::before {
  content: "";
  max-width: 40px;
  width: 100%;
  height: 40px;
  display: inline-block;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.faq__question::before {
  background-image: url(../images/q.svg);
}

.faq__answer::before {
  background-image: url(../images/a.svg);
}

.faq__more {
  margin: 0 auto;
  width: 180px;
}

.hide {
  display: none;
}

.instagram {
  padding: 80px 0;
  margin-top: 100px;
}

.instagram__contents {
  position: relative;
}

.instagram__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.insta__gallery {
  position: relative;
  z-index: 0;
}

.insta__gallery__list {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.insta__gallery__list-blk {
  max-width: 80px;
  width: 100%;
}

.insta__gallery__list-blk:not(:nth-of-type(4n)),
.insta__gallery__list-blk:not(:nth-of-type(3n)) {
  margin-right: 10px;
}

.insta__gallery__list-blk:nth-of-type(3n+1),
.insta__gallery__list-blk:nth-of-type(5n+1) {
  margin-right: 25px;
  margin-top: 30px;
}

.insta__gallery__list-blk:nth-of-type(2n+1),
.insta__gallery__list-blk:nth-of-type(3n+2) {
  margin-top: 20px;
  margin-right: 35px;
}

.insta__gallery__list-blk:nth-of-type(3n+5) {
  margin-right: -10px;
}

.insta__gallery::after {
  height: 100%;
  bottom: 20px;
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  background: rgba(246, 188, 1, .5);
  z-index: -1;
}

.message {
  position: relative;
  z-index: 1;
}

.message__title {
  margin: 0 auto;
  width: 60%;
}

.message__contents {
  width: 100%;
  aspect-ratio: 16/9;
}

.message__contents iframe {
  width: 100%;
  height: 100%;
}

.cta {
  padding: 80px 0;
  position: relative;
  z-index: 0;
}

.cta__dot-top {
  position: absolute;
  top: -100px;
  right: 0;
  width: 30%;
  z-index: -1;
}

.cta__dot-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  z-index: -1;
}

.cta__comment {
  width: 90%;
  margin: 0 auto;
}

.f-menu {
  font-size: 13px;
  background-color: #F6BC01;
  color: #fff;
  padding: 30px 0;
}

.f-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 10px;
}

.copiright {
  height: 20px;
  font-size: 12px;
  color: #fff;
  background-color: #734221;
}
/*# sourceMappingURL=styles.css.map */
