/* ========================================
   共通
   ======================================== */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

.pc {
  display: block;
}

.sp {
  display: none;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #EE8738;
  --cream: #F8F3E3;
  --yellow: #FFFFAE;
  --gold: #D6CA97;
  --blue: #6AC2E1;
}

.bg-orange {
  background-color: var(--orange);
}

.bg-cream {
  background-color: var(--cream);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

button {
  border: none;
}

/* observer */
.element {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ,transform 1s;
}

.element-01 {
  transition: opacity 1s ,transform 1s;
} 

.element-02 {
  transition: opacity 1.3s ,transform 1.3s;
}

.element-03 {
  transition: opacity 1.6s ,transform 1.6s;
}

.element-04 {
  transition: opacity 1.9s ,transform 1.9s;
}

.element.appear {
  opacity: 1;
  transform: none;
}

.header__logo:hover,
.header__consultation:hover,
.header__phone:hover,
.zirei__list-item:hover,
.contact__btn:hover,
.hp__btn:hover,
.about__content--ad--item:hover,
.hero__content--info--item .photo:hover,
.footer__info__left--logo:hover,
.footer__info__left--nav .nav__item:hover,
.footer__phone:hover,
.footer__contact:hover,
.privacy-policy:hover,
.back__btn:hover,
.fix:hover,
.index-back__btn:hover {
  opacity: 0.6;
}

.header__logo,
.header__consultation,
.header__phone,
.zirei__list--item,
.contact__btn,
.hp__btn,
.about__content--ad--item,
.hero__content--info--item .photo,
.footer__info__left--logo,
.footer__info__left--nav .nav__item,
.footer__phone,
.footer__contact,
.privacy-policy,
.back__btn,
.fix,
.index-back__btn {
  transition: opacity .3s;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: bold;
  color: var(--black);
  line-height: 1.6;
}

.hero__content,
.point,
.zirei,
.about,
.rules,
.faq {
  max-width: 1080px;
  margin: 0 auto;
}

.sec__title h1 {
  font-family: "Gothic A1", sans-serif;
  font-size: 200px;
  color: var(--white);
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--black);
}

.sec {
  padding: 80px 0px;
}

.sec__title {
  margin-bottom: 70px;
}

.sec__title img {
  height: 60px;
  margin: 0px auto 20px;
}

.sec__subtitle,
.flow__content p,
.price__message p,
.about__content--text p {
  color: var(--black);
  font-size: 22px;
  line-height: 1.9em;
  text-align: center;
}

.contact__btn,
.hp__btn {
  display: block;
  margin: 0 auto;
}

.back__btn {
  margin: 110px auto;
}

.back__btn {
  margin: 110px auto;
}

.hp__btn p {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  justify-content: center;
}

.btn__text {
  background-image: url(../links/btn_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px 10px;
  font-size: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__btn,
.back__btn {
  width: 460px;
}

.contact__btn .mail__icon {
  width: 40px;
  margin-right: 16px;
}

.hp__btn {
  width: 275px;
}

.hp__btn p {
  font-size: 17px;
}

select,
input,
textarea {
  width: 100%;
  background-color: var(--white);
  border: solid 1px #B3B3B3;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  color: #636363;
}

input,
select {
  height: 40px;
}

textarea {
  height: 92px;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

.select__wrapper {
  position: relative;
}

.select__wrapper::after {
  content: "▼";
  position: absolute;
  bottom: 7px;
  right: 10px;
  font-size: 10px;
  color: #636363;
}

.select__wrapper::before {
  content: "▲";
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 10px;
  color: #636363;
}

/* ========================================
   ヘッダー (header)
   ======================================== */
.sp__header {
  display: none;
}

.pc__header {
  padding: 30px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: block;
}

.header__container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 200px;
}

.header__nav {
  /* position: absolute;
  top: 40%;
  left: 36.5%; */
  display: flex;
  gap: 50px;
}

.header__nav--link {
  color: var(--black);
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 17px;
  font-weight: bold;
}

.header__nav--link::after {
  background-color: var(--black);
  bottom: -4px; 
  content: ""; 
  height: 2px;
  left: 0; 
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top; 
  transition: transform .3s;
  width: 100%;
}

.header__nav--link:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__consultation a {
  background-color: var(--black);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  
}

.header__contact img {
  height: 14px;
  margin-right: 10px;
}

.header__consultation p {
  font-size: 15px;
}

.header__phone {
  height: 40px;
  
}

.header__phone img {
  height: 40px;
}

/* ========================================
   フッター (footer)
   ======================================== */
.footer__container {
  padding: 48px 0px;
  max-width: 1080px;
  margin: 0px auto;
}

.footer__info {
  display: grid;
  grid-template-columns: 4fr 1fr;
}

.footer__info__left--logo {
  width: 196px;
}

.footer__info__left--nav {
  display: flex;
  margin: 20px 0px 16px;
}

.footer__info__left--nav .nav__item {
  font-size: 16px;
  color: var(--black);
  padding: 0px 16px;
  border-right: solid 1px var(--black);
}

.footer__info__left--nav .nav__item:nth-child(1) {
  padding-left: 0px;
}

.footer__info__left--nav .nav__item:nth-child(6) {
  border-right: none;
}

.footer__info__left--credit {
  font-size: 13px;
  font-weight: normal;
}

.footer__info__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer__info__right--contact a {
  width: 100%;
  background-color: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 12px;
  justify-content: center;
  font-size: 15px;
}

.footer__info__right--contact a img {
  width: 20px;
  margin-right: 8px;
}

/* -------------------------------------------------------- */

/* ========================================
   ヒーローセクション (hero)
   ======================================== */
.hero {
  margin: 30px auto 80px;    
}

.hero__kv {
  text-align: center;
  margin-top: 48px;
  position: relative;;
}

.hero__kv--title h3 {
  font-size: 48px;
}

.hero__kv--title h3 span {
  border-bottom: solid 5px var(--black);
  padding-bottom: 8px;
}

.hero__kv--title img {
  width: 700px;
  margin: 48px auto 36px;
}

.hero__content {
  margin: 50px auto 0px;
  text-align: center;
}

.hero__content--title img {
  width: 840px;
  margin: 30px auto;
}

.hero__kv--comment {
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  gap: 10px;
}

.hero__kv--comment--box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__kv--comment--box .illust img {
  margin-top: 16px;
  width: 165px;
}

.comment {
  background-image: url(../links/kv_fukidashi_01.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 35px 70px;
}

.comment p {
  margin-bottom: 5px;
  width: 115px;
}

.hero__kv--bakudan {
  position: absolute;
  color: var(--white);
  font-size: 28px;
  line-height: 1.5em;
  width: 100%;
}

.hero__kv--bakudan .wrapper {
  position: relative;
}

.hero__kv--bakudan p {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.hero__kv--bakudan img {
  position: absolute;
  width: 225px;
  right: -90px;
  top: -190px;
  z-index: -1;
}

.hero__content--text {
  font-size: 22px;
  line-height: 1.9em;
}

.hero__content--info {
  width: 850px;;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 80px auto 0px;
}

.hero__content--info--item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content--info--item .item__name {
  background-image: url(../links/hero_content_fukidasi_pc.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 15px 30px;
}

.hero__content--info--item .item__name h3 {
  width: 200px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5em;
}

.hero__content--info--item .photo {
  width: 200px;
  margin-top: 16px;
}

/* ========================================
   特長 (point)
   ======================================== */
.point__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  margin: 0px auto 60px;
  width: 760px;
  text-align: center;
}

.point__content--item--q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.q__content {
  position: relative;
}

.q__content p {
  position: absolute;
  font-size: 24px;
  top: 45px;
  right: 0;
  bottom: 0;
  left: 0;
}

.q__content span {
  color: var(--blue);
}

.q__illust {
  height: 140px;
}

.q__content--fukidashi {
  height: 130px;
}

.point__content--item--box {
  position: relative;
}

.box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  width: 100%;
}

.box__content--left {
  width: 450px;
}

.box__content--title {
  display: flex;
  align-items: center;
  border-bottom: solid 2px var(--black);
  padding-bottom: 8px;
}

.box__content--title img {
  height: 28px;
  margin-right: 20px;
}

.box__content--title h2 {
  font-size: 30px;
}

.box__content--text {
  font-size: 18px;
  text-align: justify;
  margin-top: 16px;
}

.point__content--item--box {
  background-image: url(../links/point_box_bg_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.point__01 .box__content--right {
  width: 110px;
  margin-right: 25px;
}

.point__02 .box__content {
  padding: 40px 60px;
}

.point__02 .box__content--right {
  width: 150px;
  margin-right: 5px;
}

.point__03 .box__content--title--wrapper{
  display: flex;
  align-items: center;
}

.point__03 .box__content--title--line {
  width: 75%;
  border-bottom: solid 2px var(--black);
  margin-top: 8px;
}

.point__03 .box__content--title {
  display: block;
  border: none;
  padding: 0px;
}

.point__03 .box__content--left {
  width: 100%;
}

.point__03 .box__content--text {
  display: flex;
  align-items: center;
  position: relative;
  width: 70%;
}

.point__03 .box__content--right {
  width: 170px;
  position: absolute;
  right: -190px;
  bottom: -15px;
}

/* ========================================
   制作事例 (zirei)
   ======================================== */
.zirei {
  margin-bottom: 80px;
}

.zirei__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 45px;
  row-gap: 75px;
}

.zirei__list--item--name{
  text-align: center;
  margin-top: 12px;
}

.zirei__list--item--name h3 {
  font-size: 18px;
}

.zirei__list--item--name p {
  font-size: 13px;
}

.zirei__list--item .zoom {
  overflow: hidden;
}

.zirei__list--item .zoom img {
  transition: transform .5s;
}

.zirei__list--item .zoom img:hover {
  transform: scale(1.2);
}

/* ========================================
   制作の流れ (flow)
   ======================================== */
.flow {
  background-color: var(--cream);
  padding-top: 160px;
}

.flow__title {
  margin-bottom: 45px;
}

.flow__subtitle,
.flow__content p {
  color: var(--orange);
}

.flow__content {
  max-width: 950px;
  margin: 0px auto;
}

.flow__content img {
  width: 100%;
  margin-bottom: 50px;
}

/* ========================================
   料金セクション (price)
   ======================================== */
.price {
  background-color: var(--cream);
  padding-bottom: 160px;
}

.price__subtitle {
  color: var(--orange);
}

.price__list {
  max-width: 1080px;
  display: flex;
  gap: 80px;
  flex-direction: column;
  align-items: center;
  margin: 0px auto 90px;
}

.price__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.price__top--text {
  display: flex;
  align-items: center;
}

.price__top--text .case {
  width: 110px;
  margin-right: 23px;
}

.plan .plan__title {
  font-size: 22px;
}

.plan p {
  font-size: 18px;
}

.price__cost {
  width: 385px;
}

.price__message {
  margin-bottom: 45px;
}

.price__message img,
.tip__content--comming-soon img,
.kototsuku__content--comming-soon img {
  margin: 0px auto 30px;
  width: 130px;
}

.price__message p {
  color: var(--orange);
}

.price__title {
  text-align: center;
}

.price__title--container {
  position: relative;
  display: inline-block;
}

.price__title--container span {
  position: absolute;
  font-size: 14px;
  bottom: 16px;
  right: -90px;
}

/* ========================================
  about us (about)
   ======================================== */
.about {
  padding: 160px 0px;
}

.about__content--intro {
  width: 750px;
  display: flex;
  justify-content: space-between;
  margin: 75px auto 0px;
}

.about__content--intro--company {
  text-align: center;
  margin: 0px auto 90px;
  width: 350px;
}

.about__content--intro--company h3 {
  display: inline;
  font-size: 17px;
  border-bottom: solid 2px var(--black);
  padding-bottom: 7px;
}

.about__content--intro--company p {
  font-size: 13px;
  font-weight: 500;
}

.about__content--intro--company img {
  height: 50px;
  margin: 30px auto 20px;
}

.batsu {
  display: block;
  position: relative;
  width: 45px;
  height: 45px;
  top: 60px;
}

.batsu::before, .batsu::after { 
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; 
  height: 45px; 
  background: var(--black);
}

.batsu::before {
  transform: translate(-50%,-50%) rotate(45deg);
}

.batsu::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.ad-01 {
  margin-bottom: 40px;
}

/* ========================================
   お問い合わせフォーム (contact)
   ======================================== */
.contact {
  background-color: var(--cream);
  padding: 160px 0px 300px 0px;
}

.contact__subtitle {
  color: var(--orange);
}

.contact__content--text {
  text-align: center;
  font-size: 17px;
  line-height: 1.9em;
}

.contact__content--text span {
  color: var(--orange);
}

.contact__flow {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.contact__flow--step {
  text-align: center;
}

.contact__flow--step .item {
  font-size: 16px;
  margin-top: 4px;
}

.contact__flow--step--box {
  height: 76px;
  width: 76px;
  background-color: #DBDCDC;
  border: solid 2px var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact__flow--step--box.action {
  background-color: var(--orange);
}

.contact__flow--step--box .step {
  font-size: 12px;
  line-height: 1.2em;
}

.contact__flow--step--box .number {
  font-size: 25px;
  line-height: 1.1em;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 2px;
  margin: 5.7px 0;
  border-radius: 9999px;
  background-color: #000000;
  top: -15px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}

.contact__form {
  width: 540px;
  margin: 48px auto 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: normal;
}

.form-group label {
  font-size: 14px;
  color: #636363;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.required {
  font-size: 12px;
  color: var(--white);
  background-color: var(--orange);
  padding: 0px 4px;
  margin-left: 8px;
}

.error-message {
  font-size: 14px;
  color: #ee2400;
}

.contact__submit,
.index-back__btn a {
  text-align: center;
  background-color: var(--orange);
  color: var(--black);
  border: solid 3px var(--black);
  padding: 8px;
  font-size: 18px;
  font-weight: bold;
}

.index-back__btn {
  width: 540px;
  margin: 50px auto 0px;
}

.index-back__btn a {
  display: block;
}

.privacy-policy,
.fix {
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
  margin: 50px auto;
}

.fix {
  color: var(--orange);
  text-decoration: underline var(--orange);
}

.contact__message {
  text-align: center;
  margin-top: 80px;
}

.thank {
  color: var(--orange);
  margin-bottom: 50px;
}

.thank h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 65px;
  margin-bottom: 16px;
}

.thank p {
  font-size: 23px;
}

.guide p {
  font-size: 16px;
}

.guide p span {
  font-size: 13px;
}

.form__content--item {
  font-size: 16px;
  font-weight: bold;
}

/* -------------------------------------------------------- */

/* ========================================
   ワークス (works)
   ======================================== */
.works__kv {
  max-width: 1680px;
  padding: 30px 80px;
  margin: 72px auto 56px;
  position: relative;
  display: flex;
  justify-content: center;
}

.works__kv--title {
  position: absolute;
  top: 0px;
  z-index: 100;
}

.works__kv--title img {
  height: 58px;
}

.works__content {
  max-width: 1080px;
  margin: 0px auto;
}

.works__detail {
  margin-bottom: 130px;
}

.works__detail--copy span {
  color: var(--orange);
  font-size: 16px;
}

.works__detail--copy h3 {
  line-height: 2.75em;
  margin: 16px 0px 32px;
}

.works__detail--copy h3 span {
  font-size: 33px;
  padding-bottom: 8px;
  color: var(--black);
  border-bottom: solid 3px var(--black);
}

.works__detail--explanation {
  font-size: 17px;
  line-height: 1.9em;
  font-weight: normal;
  text-align: justify;
  margin-bottom: 35px;
}

.works__detail--items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.works__detail--item {
  display: flex;
  align-items: center;
  font-weight: normal;
}

.works__detail--item span {
  color: var(--white);
  font-size: 13px;
  padding: 0px 15px;
  border-radius: 3px;
  margin-right: 12px;
  background-color: var(--black);
}

.works__detail--item p {
  font-size: 17px;
}

.works__intro {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
/* -------------------------------------------------------- */

/* ========================================
   利用規約（rules）
   ======================================== */
.rules__container {
  text-align: center;
}

.rules__title {
  display: inline-block;
  text-align: center;
  font-size: 25px;
  border-bottom: solid 2px var(--black);
  margin: 72px auto 60px;
  padding-bottom: 6px;
}

.rules__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: justify;
}

.rules__content--item {
  font-size: 16px;
  line-height: 1.5em;
}

.rules__content--item h3 {
  margin-bottom: 4px;
}

.rules__content--item h3::before {
  content: "◉";
}

.rules__content--item p,
.rules__content--item li {
  font-weight: normal;
}

.rules__date {
  text-align: left;
  font-weight: normal;
  margin-top: 30px;
}

/* -------------------------------------------------------- */

/* ========================================
   faq
   ======================================== */
  .faq__title img,
  .tip__title img {
    height: 70px;
    margin: 72px auto 60px;
  }

   .faq__content_ {
    margin-bottom: 100px;
   }

  .faq__content__category {
    text-align: center;
    margin-bottom: 100px;
  }

  .faq__content__category--title {
    background-image: url(../links/faq_fukidashi.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-size: 20px;
    margin: 0px auto 20px;
    display: inline-block;
  }

  .faq__content__category--title h3 {
    padding: 20px 80px;
    margin-bottom: 8px;
  }

  .faq__content__category--list {
    text-align: justify;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 10px;
  }

  .question,
  .answer {
    display: flex;
    align-items: center;
  }

  .question {
    margin-bottom: 8px;
  }

  .question span,
  .answer span {
    font-size: 30px;
    margin-right: 16px;
  }

  .question h3 {
    font-size: 20px;
    text-decoration: underline 2px;
    text-underline-offset: 8px;
    line-height: 2;
    margin-top: 4px;
  }

  .answer p {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5em;
  }

  .faq__content--message,
  .tip__content--message {
    font-size: 22px;
    line-height: 1.9em;
    text-align: center;
  }

/* -------------------------------------------------------- */

/* ========================================
   広報誌のヒント（tip）,コトツク
   ======================================== */
  .tip__container,
  .kototsuku__container {
    width: 100vw;
    height: 100vh;text-align: center;
  }

  .tip__content--message {
    color: var(--orange);
    margin-bottom: 60px;
  }

  .tip__content--comming-soon p,
  .kototsuku__content--comming-soon p {
    background-image: url(../links/faq_fukidashi.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15% 100%;
    padding: 10px 0px 15px 0px;
    margin-bottom: 20px;
  }

  .kototsuku__content {
    margin-top: 200px;
  }


/* -------------------------------------------------------- */

/* ========================================
   レスポンシブデザイン
   ======================================== */

@media screen and (max-width: 1024px) {
/* ========================================
   共通
   ======================================== */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
  
  .hero,
  .sec,
  .contact,
  .works__content,
  .rules,
  .faq,
  footer {
    padding: 0px 20px;
  }

  .sec {
    padding: 40px 20px;
  }

  .sec__title {
    margin-bottom: 32px;
  }

  .sec__title img {
    height: 36px;
    margin: 0px auto 10px;
  }

  .sec__subtitle,
  .flow__content p,
  .price__message p,
  .about__content--text p {
    font-size: 17px;
  }

  .sec__subtitle {
    line-height: 1.5em;
    margin-top: 15px;
  }

  .contact__btn,
  .back__btn {
    width: 70%;
  }

  .back__btn {
    margin: 60px auto;
  }

  .btn__text {
    font-size: 15px;
    padding: 10px;
  }

  .contact__btn .mail__icon {
    width: 8%;
    margin-right: 10px;
  }

  /* observer */
  .element {
    transform: translateY(30px);
  }

  /* ========================================
   ヘッダー (header)
   ======================================== */

  .pc__header {
    display: none;
  }

  .sp__header {
    display: block;
    position: sticky;
    top: 0;
    padding: 15px 10px;
    height: 50px;
    z-index: 1000;
  }

  .header__logo {
    width: 140px;
  }

  .hamburger__menu {
    width: 50px;
    height: 50px;
    position: absolute;
    cursor: pointer;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0px;
    right: 0px;
    background-color: var(--black);
  }

  .hamburger__menu__bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    left: 15px;
    transition: opacity .25s .25s;
  }

  .hamburger__menu__bar--top {
    top: 15px;
  }

  .hamburger__menu__bar--middle {
    top: 23px;
  }

  .hamburger__menu__bar--bottom {
    top: 31px;
  }

   /* 初期状態 (ハンバーガー) */
  .hamburger__menu__bar--top {
      animation: btn07-bar01 .75s forwards;
  }
  .hamburger__menu__bar--middle {
      transition: all .25s .25s;
      opacity: 1;
  }
  .hamburger__menu__bar--bottom {
      animation: btn07-bar03 .75s forwards;
  }

  /* 閉じるボタン (X) 状態 */
  .hamburger__menu__-active .hamburger__menu__bar--top {
      animation: active-btn07-bar01 .75s forwards;
  }
  .hamburger__menu__-active .hamburger__menu__bar--middle {
      opacity: 0;
  }
  .hamburger__menu__-active .hamburger__menu__bar--bottom {
      animation: active-btn07-bar03 .75s forwards;
  }

  /* アニメーションキーフレーム */
  @keyframes btn07-bar01 {
      0% { transform: translateY(13.5px) rotate(45deg); } 
      50% { transform: translateY(13.5px) rotate(0); }
      100% { transform: translateY(0) rotate(0); }
  }
  @keyframes btn07-bar03 {
      0% { transform: translateY(-13.5px) rotate(-45deg); } 
      50% { transform: translateY(-13.5px) rotate(0); }
      100% { transform: translateY(0) rotate(0); }
  }
  @keyframes active-btn07-bar01 {
      0% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(8px) rotate(0); } 
      100% { transform: translateY(8px) rotate(45deg); }
  }
  @keyframes active-btn07-bar03 {
      0% { transform: translateY(0) rotate(0); }
      50% { transform: translateY(-8px) rotate(0); } 
      100% { transform: translateY(-8px) rotate(-45deg); }
  }

  .menu__overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #f7f3e8; 
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* 緩急をつけたイージング */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menu__overlay--active {
    transform: translateX(0);
  }

  .menu__header {
    height: 40px; 
    background-color: var(--orange); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
  }

  .menu__header__logo {
    width: 115px;
  }

  .menu__content {
    width: 225px;
    text-align: center;
    margin: 40px auto;
  }

  .menu__content__list {
    margin-bottom: 40px;
  }

  .menu__content__item {
    margin: 20px auto;
    background-image: url(../links/hamburger-menu_item_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
  }

  .menu__content__link {
    display: flex;
    font-size: 14px;
    padding: 10px;
  }

  .contact__section {
    margin-top: 40px;
  }

  .contact__section__button a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 20px;
    padding: 8px 20px;
    background-color: var(--black);
    color: var(--white);
    font-size: 15px;
    border-radius: 50px;
  }

  .contact__section__button img {
    width: 20px;
    margin-right: 10px;
  }

  .contact__section__button:hover {
    background-color: #333;
  }

  .contact__section__button-icon {
    margin-right: 10px;
    font-size: 1.2rem;
  }

  .contact__section__info {
    text-align: center;
  }

  .contact__section__info {
    width: 90%;
    margin: 20px auto 0px;
  }

  /*
    * Main Content (メニューが開いているときにスクロールを禁止するためのスタイル)
    */
  .main-content {
    padding-top: 60px; 
    min-height: 100vh;
  }

  .body--menu__open {
    overflow: hidden;
  }

  /* ========================================
   フッター (footer)
   ======================================== */

   .footer__container {
    padding: 30px 0px;
   }

   .footer__info {
    display: block;
   }

   .footer__info__left--nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
   }

   .footer__info__left--nav .nav__item {
    font-size: 12px;
    padding: 6px 0px;
    width: 100%;
    text-align: center;
   }

   .footer__info__left--nav .nav__item:nth-child(1) {
    padding: 4px 0px;
   }

   .footer__info__left--nav .nav__item:nth-child(1),
   .footer__info__left--nav .nav__item:nth-child(2) {
    border-top: solid 1px var(--black);
   }

   .footer__info__left--nav .nav__item:nth-child(3),
   .footer__info__left--nav .nav__item:nth-child(4) {
    border-top: solid 1px var(--black);
   }

   .footer__info__left--nav .nav__item:nth-child(5),
   .footer__info__left--nav .nav__item:nth-child(6) {
    border-top: solid 1px var(--black);
    border-bottom: solid 1px var(--black);
   }

   .footer__info__left--nav .nav__item:nth-child(2),
   .footer__info__left--nav .nav__item:nth-child(4) {
    border-right: none;
   }

   .footer__info__left--logo {
    width: 150px;
   }

   .footer__info__left--credit {
    font-size: 10px;
   }

   .footer__info__right {
    width: 70%;
    margin: 30px auto;
   }

   .footer__phone {
    margin-bottom: 20px;
   }

/* -------------------------------------------------------- */

/* ========================================
   ヒーローセクション (hero)
   ======================================== */

  .hero {
    margin-bottom: 40px;
  }
  
  .hero__kv{
    margin-top: 16px;
  }
  
  .hero__kv--title h3 {
    font-size: 25px;
    line-height: 1.75em;
  }

  .hero__kv--title h3 span {
    border-bottom: solid 2.5px var(--black);
    padding-bottom: 3px;
  }

  .hero__kv--title img {
    width: 100%;
    margin: 16px auto 26px;
  }

  .comment {
    padding: 10px 20px;
  }

  .comment p {
    width: 70px;
  }

  .hero__kv--comment {
    width: 100%;
    gap: 4px;
    justify-content: space-between;
  }

  .hero__kv--comment--box .illust img {
    margin-top: 8px;
    width: 90px;
  }

  .hero__kv--bakudan img {
    display: none;
  }

  .hero__kv--comment--box .comment p {
    font-size: 10px;
    line-height: 1.25em;
  }

  .hero__content--title img {
    width: 264px;
    margin-bottom: 16px;
  }

  .hero__content--text {
    font-size: 14px;
    line-height: 1.75em;
  }

  .hero__content--info {
    width: 100%;
    gap: 6px;
    margin-top: 32px;
  }
  
  .hero__content--info--item .item__name {
    padding: 10px 10px 8px;
  }

  .hero__content--info--item .item__name h3 {
    width: 100px;
    font-size: 8px;
    line-height: 1.5em;
    top: 11px;
    margin-bottom: 10px;
  }

  .hero__content--info--item .photo {
    width: 95%;
    margin: 8px auto 0px;
  }

  /* ========================================
   ポイント (point)
   ======================================== */

  .point__content {
    width: 100%;
    gap: 30px;
    margin-bottom: 20px;
  }

  .q__content--fukidashi,
  .q__illust {
    height: auto;
  }

  .point__content--item--q {
    display: grid;
    grid-template-columns: 1fr 4fr;
    text-align: left;
    margin: 0px;
  }

  .q__content p {
    position: static;
    font-size: 16px;
    line-height: 1.25em;
    width: 100%;
    padding: 15px 15px 15px 45px;
  }

  .q__content__sp {
    display: flex;
  }

  .point__01 .q__content__sp {
    background-image: url(../links/point_fukidashi_01.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  
  .point__02 .q__content__sp {
    background-image: url(../links/point_fukidashi_02.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .point__03 .q__content__sp {
    background-image: url(../links/point_fukidashi_03.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .box__content,
  .box__content--title,
  .point__03 .box__content--title--wrapper {
    flex-direction: column;
  }

  .point__content--item--box {
    background-image: none;
  }

  .box__content {
    padding: 40px;
    background-image: url(../links/point_box_bg_sp.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
  }

  .box__content--left {
    width: 100%;
  }

  .box__content--title img {
    margin: 0px;
    height: 20px;
  }

  .box__content--title h2 {
    font-size: 19px;
    margin-top: 4px;
  }

  .box__content--text {
    font-size: 15px;
  }

  .point__01 .box__content--right {
    width: 45%;
    margin: 15px 0px 0px 0px;
  }

  .point__02 .point__content--item--q {
    grid-template-columns: 4fr 1fr;
  }

  .point__02 .box__content--right {
    width: 50%;
    margin-top: 15px;
  }

  .point__02 .box__content {
    padding: 40px;
  }

  .point__02 .q__content__sp {
    padding: 15px 40px 15px 25px;
  }

  .point__03 .box__content--text {
    width: 100%;
    flex-direction: column;
  }

  .point__03 .box__content--right {
    position: static;
    width: 70%;
    margin: 15px 0px 0px 0px;
  }

  .point__03 .box__content--title--line {
    width: 100%;
  }

  /* ========================================
   ワーク (work)
   ======================================== */

  .zirei {
    margin-bottom: 60px;
  }

  .zirei__list {
    grid-template-columns: 1fr;
    row-gap: 20px;
    text-align: center;
  }

  .zirei__list--item--name {
    margin-top: 8px;
  }

  .zirei__list--item--name h3 {
    font-size: 16px;
  }

  .zirei__list--item--name p {
    font-size: 11px;
  }

/* ========================================
   制作の流れ (flow)
   ======================================== */

  .flow {
    padding-top: 72px;
  }

  .flow__content img {
    margin: 0px;
  }

/* ========================================
   料金セクション (price)
   ======================================== */

  .price {
    padding-bottom: 72px;
  }

  .price__list {
    width: 100%;
    gap: 40px;
    margin-bottom: 40px;
  }

  .plan .plan__title {
    font-size: 16px;
  }

  .plan p {
    font-size: 12px;
  }

   .price__top {
    margin: 0px;
  }

  .price__top--text .case {
    width: 100%;
    margin-right: 10px;
  }

  .price__top--text {
    display: grid;
    grid-auto-columns: 1fr 3.5fr;
    gap: 10px;
    grid-auto-flow: column;
    margin-bottom: 16px;
  }

  .price__cost {
    width: 80%;
    margin: 16px auto 0px;
  }

  .price__message {
    margin-bottom: 30px;
  }

  .price__message img,
  .tip__content--comming-soon img,
  .kototsuku__content--comming-soon img {
    width: 30%;
    margin: 0 auto 20px;
  }

  .price__title--container span {
    font-size: 12px;
    bottom: 7px;
    right: -75px;
  }

/* ========================================
  about us (about)
   ======================================== */

  .about {
    padding: 72px 20px 80px;
  }

  .about__content--intro {
    flex-direction: column;
    width: 100%;
  }

  .about__content--intro {
    gap: 40px;
    margin-top: 40px;
  }

  .about__content--intro--company {
    margin: 0px;
    width: 100%;
  }

  .batsu {
    width: auto;
    height: auto;
    top: auto;
  }

  .about__content--intro--company img {
    margin: 20px auto;
  }

  .about__content--intro--company .hp__btn {
    margin-bottom: 40px;
  }

  .ad-01 {
    margin-bottom: 20px;
  }

/* ========================================
  お問い合わせフォーム (contact)
   ======================================== */
  .contact {
    padding: 72px 20px 80px;
  }

  .contact__content--text {
    font-size: 14px;
    line-height: 1.75em;
  }

  .contact__flow {
    margin-top: 30px;
    gap: 10px;
  }

  .contact__flow--step--box {
    width: 50px;
    height: 50px;
  }

  .contact__flow--step--box .step {
    font-size: 9px;
  }

  .contact__flow--step--box .number {
    font-size: 18px;
  }

  .contact__flow--step .item {
    font-size: 14px;
  }
   
  .arrow {
    width: 40px;
  }

  .contact__form {
    width: 100%;
    margin-top: 30px;
  }
   
  .contact__submit ,
  .index-back__btn a{
    border: solid 2px var(--black);
  }

  textarea {
    height: 110px;
  }

  .privacy-policy,
  .fix {
    margin: 20px auto;
  }

  .contact__message {
    margin-top: 40px;
  }

  .thank {
    margin-bottom: 30px;
  }

  .thank h1 {
    font-size: 48px;
    margin-bottom: 8px;
  }

  .thank p {
    font-size: 16px;
  }

  .guide p {
    font-size: 14px;
  }

  .guide p span {
    font-size: 12px;
  }

  .index-back__btn {
    margin-top: 30px;
  }

  .index-back__btn {
    width: 100%;
  }

/* -------------------------------------------------------- */

/* ========================================
   ワークス（works）
   ======================================== */

  .works__kv {
    width: 100%;
    padding: 0px;
    margin: 50px auto 30px;
  }

  .works__kv--img {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .works__kv--img img {
    max-inline-size: none;
    width: 150%;
  }

  .works__kv--title {
    top: -15px;
  }

  .works__kv--title img {
    height: 32px;
  }

  .works__detail--copy span {
    font-size: 14px;
  }

  .works__detail--copy h3 span {
    font-size: 20px;
    padding-bottom: 6px;
    border-bottom: solid 2px var(--black);
  }

  .works__detail--copy h3 {
    line-height: 2em;
    margin: 4px 0px 20px;
  }

  .works__detail--explanation {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
  }

  .works__detail--item span {
    font-size: 12px;
    margin-right: 8px;
  }

  .works__detail--item p {
    font-size: 14px;
    line-height: 1.25em;
  }

  .works__detail--item:nth-child(4) {
    align-items: flex-start;
  }

  .works__detail {
    margin-bottom: 60px;
  }

  .works__intro {
    gap: 20px;
  }

/* -------------------------------------------------------- */

/* ========================================
   利用規約（rules）
   ======================================== */
   .rules__title {
      font-size: 20px;
      margin: 40px auto;
      padding-bottom: 4px;
   }

   .rules__content--item {
      font-size: 14px;
   }

   .rules__content--item h3 {
     margin-bottom: 0px;
   }

   .rules__date {
      font-size: 14px;
   }

/* -------------------------------------------------------- */

/* ========================================
   faq
   ======================================== */
  .faq__title img,
  .tip__title img {
    height: 35px;
    margin: 40px auto 30px;
  }

  .faq__content__category {
    margin-bottom: 60px;
  }

  .faq__content__category--title {
    font-size: 14px;
    margin-bottom: 4px;
  }
   
  .faq__content__category--title h3 {
    padding: 12px 40px;
  }

  .faq__content__category--item h3 {
    font-size: 16px;
  }

  .faq__content__category--list {
    gap: 24px;
  }

  .question {
    margin-bottom: 4px;
  }

  .question span,
  .answer span {
    font-size: 24px;
    margin-right: 12px;
  }

  .question,
  .answer {
    align-items: flex-start;
  }

  .question h3 {
    margin-top: 0px;
  }

  .answer p {
    font-size: 12px;
  }

  .faq__content--message,
  .tip__content--message {
    font-size: 18px;
  }

  .tip__container {
    padding: 0px 20px;
  }

  .tip__content--message {
    margin-bottom: 40px;
  }

  .tip__content--comming-soon p,
  .kototsuku__content--comming-soon p {
    background-size: 50% 100%;
  }

  .kototsuku__content {
    margin-top: 100px;
  }
  
}