@charset "UTF-8";
html {
	scroll-behavior: smooth;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5em;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 1200px) {
  .sp-only {
    display: block;
  }
}

@media (max-width: 1200px) {
  .pc-only {
    display: none;
  }
}

a {
  color: inherit;
  transition: 0.7s;
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.inner-container {
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
}

/* 背景画像 */

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../img/back-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ヘッダー */

.header--container {
  position: fixed;
  width: 100%;
}
@media screen and (max-width: 1200px) {
.header--container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  width: 100%;
  height: 54px;
  z-index: 999;
  top: 0;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
}
}

.header--tit {
  width: 250px;
  margin: 30px 0 0 50px;
}
@media screen and (max-width: 1200px) {
  .header--tit {
    width: 136px;
    display: flex;
    justify-content: center;
    margin: 0 0 0 25px;
  }
}
.header--tit img {
  vertical-align: middle;
}

/* -------------------- */
/* ▼メニューバーの装飾 */
/* -------------------- */
ul.ddmenu {
  margin: 0px;
  padding: 0px 20px;
}
@media screen and (max-width: 1200px) {
ul.ddmenu {
  padding: 0px 40px;
}
}

/* -------------------------- */
/* ▼メインメニュー項目の装飾 */
/* -------------------------- */
ul.ddmenu li {
  width: 200px;
  margin-left:auto;
  position: relative;
  text-align: right;
  /* サブメニュー表示の基準位置にする */
}

ul.ddmenu a {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  display: block;
  color: #fff;
    background-color: #000000;
    width: fit-content;
    margin-bottom: 20px;
    padding: 5px 10px;
}

ul.ddmenu a:hover {
  background-color: #F5BB1A;
}


/* ハンバーガーメニュー */
.c-hamburger-menu {
  position: relative;
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #fff;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

.c-hamburger-menu__button-mark {
  background-color: #000;
  display: block;
  height: 2px;
  transition: 0.3s;
  width: 22px;
}

@media screen and (max-width: 1200px) {
  ul.ddmenu {
    padding: 30px;
  }
  ul.ddmenu a {
    text-align: left;
    background-color: #ECBD28;
  }
  ul.ddmenu a:hover {
  opacity: 0.6;
  }
  ul.ddmenu li {
    margin:0px;
  }
  .c-hamburger-menu__list {
    background-color: #ECBD28;
    color: #fff;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem;
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
  }
  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }
  .c-hamburger-menu__button {
    align-items: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 32px;
    justify-content: center;
    width: 60px;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg);
    transform-origin: 0%;
  }
}

/* ボタン */

.cta-btn{
  text-align: center;
  
}
.cta-btn a {
  display: block;
  background-color: #45B035;
  border: 3px solid #45B035;
  border-radius: 20px 0 0 20px;
  color: #fff;
  transition: 0.3s;
  font-size: 22px;
  font-weight: 700;
  padding: 10px;
  position: fixed;
  right: 0px;
  bottom: 30px;
  box-shadow: 5px 5px 6px 0px rgba(0, 0, 0, 0.3);
}
.cta-btn a span{
  font-size: 14px;
  font-weight: 400;
}
.cta-btn a:hover{
  background-color: #fff;
  color: #45B035;
}
@media screen and (max-width: 1200px) {
.cta-btn{
  width: 100%;
  }
.cta-btn a {
  font-size: 18px;
  padding: 7px;
  bottom: 0px;
  width: 100%;
  line-height: 1;
}
.cta-btn a span{
  font-size: 12px;
}
}

/* コンテナ */
.con1{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.con2{
  width: 92%;
  margin: 0 auto;
}

/* FV */
.fv{
  background-color: #FFF6DE;
  padding: 10px 0 40px;
}

.fv h2 img{
  width: 96%;
  margin: 0 auto 15px;
  display: block;
}

.fv-media-txt{
  text-align: center;
  line-height: 1.2em;
  background: #fff;
  width: 90%;
  margin: -10px auto 0px;
  padding: 10px 0;
}

@media screen and (max-width: 1200px) {
.fv{
  margin-top: 54px;
}
.fv-media-txt{
  font-size: 12px;
}
}

/* about */

.about{
  background-image: url(../img/back-dot.jpg);
  background-size: cover;
  padding: 80px 0 50px;
}

.about-box{
  background-color: #fff;
  border: 3px solid #F5BB1A;
  border-radius: 11px;
  padding: 60px 30px 30px;
  position: relative;
}

.about-box h2{
  width: 53.85vw;
  max-width: 322px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.about-box h3{
  font-size: clamp(16px,4vw,24px);
  line-height: 1.2em;
  text-align: center;
  margin-bottom: 20px;
}

.about-box img{
  width: 46vw;
  max-width: 276px;
  margin: 20px auto 0;
  display: block;
}

@media screen and (max-width: 600px) {
.about{
  padding: 60px 0 50px;
}
.about-box{
  padding:40px 20px 20px;
}
.about-box h2{
  top: -40px;
}
}

/* worry */

.worry{
  background-color: #EFEFEF;
  padding: 40px 0 70px;
}

/* solution */

.solution{
  background-image: url(../img/back-dot.jpg);
  background-size: cover;
  padding-bottom: 50px;
}

.solution-tit{
  margin-top: -80px;
  margin-bottom: 40px;
}

.solution-box{
  background-color: #fff;
  border: 3px solid #F5BB1A;
  border-radius: 11px;
  padding: 30px;
  font-weight: 500;
  text-align:center;
  margin-bottom: 15px;
  position: relative;
}

.solution-box h3{
  color: #FF1B0B;
  font-size: clamp(22px,5.64vw,33px);
  background: linear-gradient(transparent 50%, #FFFA6E 50%);
  padding: 0 0.3em 0.3em;
  display: inline-block;
  align-items: center;
  margin-bottom:20px;
}

.solution-box p{
  text-align: left;
}

.solution-illust1{
  position: absolute;
  width: 25.64vw;
  max-width: 152px;
  bottom: 0;
  right: -15px;
}

.solution-illust2{
  position: absolute;
  width: 13vw;
  max-width: 80px;
  bottom: 0;
  right: 15px;
}

@media screen and (max-width: 600px) {
.solution-box{
  padding: 15px;
}
}

/* designorder */

.designorder{
  background-color: #FFF6DE;
  padding: 50px 0;
  text-align: center;
}

.designorder h2{
  font-size: clamp(22px,5.64vw,33px);
  line-height: 1.2em;
  margin-bottom: 40px;
}

.designorder h3{
  color: #fff;
  background-color: #F5BB1A;
  border-radius: 10px;
  padding: 5px 0;
  line-height: 1.2em;
  font-size: clamp(18px,4.6vw,27px);
}

.designorder img{
  width: 35.1vw;
  max-width: 209px;
  margin: 30px 0 15px;
}

.designorder p{
  font-size: clamp(18px,4.6vw,27px);
  font-weight: 600;
  margin-bottom: 30px;
}

.designorder-price{
  width: 100%!important;
  max-width: none!important;
}

/* lineup */

.lineup{
  background-color: #fff;
  padding: 50px 30px;
}

.lineup h2{
  width: 53.85vw;
  max-width: 322px;
  margin: 0 auto 40px;
}

.lineup-box{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.lineup-box img{
  width: 30%;
}

@media screen and (max-width: 600px) {
.lineup-box{
  gap: 10px;
}
}

/* orderstep */

.orderstep{
  padding: 50px 0;
  background-color: #F4FFF2;
}

.orderstep h2{
  text-align: center;
  font-size: clamp(22px,5.64vw,33px);
  margin-bottom: 40px;
}

.orderstep-box-wrap{
  display:flex;
  justify-content: space-between;
  gap: 20px;
}

.orderstep-box-wrap img{
  width: 45%;
}

.orderstep-box h3{
  font-size: clamp(12px,4vw,27px);
  color: #45B035;
  margin: 30px 0 12px;
}

.orderstep-arrow{
  text-align: center;
  color: #45B035;
  font-size: clamp(22px,5.64vw,33px);
  margin: 10px 0;
}

@media screen and (max-width: 600px) {
.orderstep-box-wrap{
  gap: 15px;
}
.orderstep-box h3{
  margin: 10px 0 12px;
}
}

/* voice */

.voice{
  background-color: #FFF6DE;
  padding: 50px 0;
}

.voice h2{
  text-align: center;
  font-size: clamp(22px,5.64vw,33px);
  margin-bottom: 40px;
}

.voice-box{
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  position: relative;
}

.voice-name{
  text-align: right;
  font-weight: 500;
}

.voice-box img{
  width: 18.2vw;
  max-width: 109px;
  position: absolute;
}

.voice-bubble{
  width: 5.64vw;
  max-width: 33px;
  margin-left: 30%;
  margin-bottom: 60px;
}

@media screen and (max-width: 600px) {
.voice-bubble{
  margin-bottom: 30px;
}
}

/* media */

.media{
  background-color: #fff;
  padding: 50px 30px;
}

.media h2{
  text-align: center;
  font-size: clamp(22px,5.64vw,33px);
  margin-bottom: 40px;
}

.media-box{
  display:flex;
  flex-wrap: wrap;
  justify-content:start;
  gap: 4%;
}

.media figure{
  width: 48%;
  margin-bottom: 15px;
}

/* instagram */

.instagram{
  background-color: #fff;
  padding: 50px 0;
}

.instagram h2{
  text-align: center;
  font-size: clamp(22px,5.64vw,33px);
  margin-bottom: 40px;
}

/* tiktok */

.tiktok{
  background-color: #fff;
  padding: 50px 0;
}

.tiktok h2{
  text-align: center;
  font-size: clamp(22px,5.64vw,33px);
  margin-bottom: 40px;
}

/* company */

.company{
  background-color: #F4FFF2;
  padding: 50px 0;
}

.company h2{
  text-align: center;
  font-size: clamp(22px,5.64vw,33px);
  margin-bottom: 40px;
}

.company-box{
  background-color: #fff;
  padding: 30px 20px;
}

/* footer */

footer{
  background-color: #000000;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}

@media screen and (max-width: 600px) {
footer{
  padding: 10px 0 63px;
}
}

/* ページ内リンク　スクロール位置の調整 */
@media screen and (max-width: 600px) {
#worry,
#designorder,
#lineup,
#orderstep,
#voice,
#media,
#instagram,
#tiktok,
#company {
  scroll-margin-top: 40px;
}
}