@charset "UTF-8";

/* cssリセット */
/*利用するタグによってこちらの内容は増やす*/

html {
  font-size: 62.5%;
}

body {
  background-color: #f2f1eb;
  color: #1f4126;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

h4 {
  padding-top: 74px;
  font-size: 4rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 16px;
}

h5 {
  color: #3e755f;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 40px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

ul li,
ol li {
  list-style: none;
}

img {
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ↑ここまでcssリセット */

/*-------------------------------------------
共通設定
-------------------------------------------*/
/* ↓ヘッダー↓ */
h2 {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* 余白*/
#menu,
#about,
#contact,
#faq,
#thanks {
  max-width: 1040px;
  margin: 0 auto 74px;
}

@media (max-width: 1024px) {

  #menu,
  #about,
  #contact,
  #faq,
  #thanks {
    padding: 0 60px;
    margin: 0 auto 99px;
  }
}

@media (max-width: 430px) {

  #menu,
  #about,
  #contact,
  #faq,
  #thanks {
    padding: 0 24px;
    margin: 0 auto 26px;
  }
}

/* 左側の余白 */
.section_wrapper {
  padding-left: 72px;
  padding-right: 72px;
}

@media (max-width: 1024px) {
  .section_wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ↓コンタクトボタン↓ */
.contact_btn_bottom {
  position: fixed;
  right: 0;
  top: 261px;
  width: 65px;
  height: 65px;
  background-color: #1f4126;
  font-size: 1.1rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: block;
  padding-top: 15px;
}

.contact_btn_bottom img {
  width: 25px;
  height: auto;
}

@media (max-width: 430px) {
  .contact_btn_bottom {
    top: 533px;
  }
}

/* ↓ Q＆A ↓ */
.q_a {
  width: 688px;
  margin: 0 auto;
}

dt {
  position: relative;
  padding: 10px 0 10px 60px;
  border: 1px solid #3e755f;
  border-radius: 15px;
}

dt:not(:first-child) {
  margin-top: 10px;
}

dt.is-open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  margin-bottom: 0;
}

dt::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #3e755f;
  border-left: 2px solid #3e755f;
  transform: rotate(-135deg);
  pointer-events: none;
  transition: 0.1s;
}

dt.is-open::after {
  transform: rotate(45deg);
  /* 上向きに矢印を回転 */
}

dt:hover {
  cursor: pointer;
}

dt[data-label="Q"]::before {
  content: "Q |";
  /* Q.のラベル */
  position: absolute;
  top: 9px;
  left: 10px;
  width: 50px;
  text-align: left;
  font-weight: bold;
}

dd[data-label="A"]::before {
  content: "A |";
  position: absolute;
  top: 32px;
  left: 13px;
  width: 50px;
  text-align: left;
  color: #fff;
  font-weight: bold;
}

dd {
  display: none;
  /* デフォルトでは非表示 */
  position: relative;
  padding: 32px 25px 32px 60px;
  margin-bottom: 10px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #3e755f;
  color: #fff;
}

.q_a_note {
  text-align: center;
  margin-top: 30px;
}

.sp_br {
  display: inline;
}

/* ↓コンタクト↓ */
.contact_msg {
  text-align: center;
  margin-bottom: 48px;
  padding-left: 20px;
}

#contact_form {
  display: block;
  margin: 0 auto;
}

.c-form__item {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.c-form__input {
  width: 500px;
  margin-bottom: 16px;
  padding: 10px;
  border: 1px solid #3e755f;
  border-radius: 15px;
}

textarea.c-form__input {
  height: 250px;
  border: 1px solid #3e755f;
  border-radius: 15px;
}

.c-form__label {
  margin-right: 30px;
  margin-bottom: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 65px;
  text-align: left;
}

.c-form__submit {
  text-align: center;
  margin-top: 49px;
  margin-bottom: 148px;
}

.c-form__submit button {
  width: 198px;
  height: 38px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #f69f78;
  border-radius: 12px;
  border: none;
  transition: 0.4s;
  cursor: pointer;
}

.c-form__submit button:hover {
  color: #f69f78;
  border: 2px solid #f69f78;
  background-color: transparent;
}

/* ↓フッター↓ */
footer {
  text-align: center;
  background-color: #3e755f;
  color: #fff;
}

/* ↓ページトップボタン↓
.pagetop {
  position: fixed;
  right: 5px;
  bottom: 216px;
  width: 111px;
}
.pagetop a {
  color: #3e755f;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}
.pagetop img {
  display: block;
}
.pagetop span {
  position: absolute;
  top: 42px;
  left: -20px;
  font-size: 1.1rem;
} */

@media (max-width: 1024px) {

  /* ↓ Q＆A ↓ */
  .q_a {
    width: 100%;
  }

  .sp_br {
    display: block;
  }

  dt,
  dd {
    padding: 10px 25px 10px 45px;
  }

  dd[data-label="A"]::before {
    top: 10px;
  }

  /* ↓コンタクト↓ */
  .contact_msg {
    text-align: left;
    padding-left: 0px;
  }

  .c-form__item {
    display: block;
  }

  .c-form__input {
    width: 100%;
    margin: 10px 0 26px;
  }

  .c-form__submit {
    margin-top: 34px;
    margin-bottom: 80px;
  }
}

/* ↓ フッター ↓ */
footer {
  margin: 0;
  padding: 0;
}

footer small {
  display: inline-block;
  margin: 10px auto;
  font-size: 1.4rem;
  font-weight: 700;
}

@media (max-width: 402px) {
  .sp_br {
    display: inline;
  }
}

/*-------------------------------------------
ヘッダー　ハンバーガーメニュー
-------------------------------------------*/

.header_wrap {
  position: fixed;
  width: 100%;
  height: 73px;
  top: 0;
  z-index: 100;
}

.p-header__inner {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  height: inherit;
  background-color: #f2f1eb;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .p-header__inner {
    padding: 0 60px;
  }
}

@media (max-width: 430px) {
  .p-header__inner {
    padding: 0 24px;
  }
}

.p-header__title {
  width: 100%;
  max-width: 120px;
  height: 48px;
  margin-top: 19px;
}

.p-header__title a {
  display: block;
  width: 100%;
  height: auto;
}

.p-header__title a img {
  width: 120px;
  height: 100%;
}

.header__right {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.header__right {
  display: flex;
  justify-content: center;
  gap: 36px;
}

/* 言語切り替えボタン */
.language-switcher {
  display: flex;
  margin-top: 39px;
  font-size: 16px;
}

.lang-btn {
  position: relative;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  outline: none;
  padding-bottom: 0;
}

.lang-btn.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #1f4126;
}

.c-hamburger {
  position: relative;
  border: none;
  margin: 0;
  cursor: pointer;
  z-index: 100;
}

.c-hamburger__line {
  display: block;
  position: relative;
  left: 50%;
  width: 50px;
  /*線の横幅*/
  height: 2px;
  /* 線の高さ*/
  transform: translateX(-50%);
  background: #1f4126;
  /*線の色*/
  transition: all 0.4s;
}

/* 三本線それぞれtopプロパティで位置指定する */
.c-hamburger__line:nth-of-type(1) {
  top: 9px;
}

.c-hamburger__line:nth-of-type(2) {
  top: 17px;
}

.c-hamburger__text {
  position: absolute;
  top: 53px;
  border: none;
  right: 7px;
  color: #1f4126;
  margin-top: 8px;
}

.c-hamburger {
  background-color: transparent;
  /* 背景を透明にする */
}

/* is-activeクラスが付いたら、×にする */

.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
  background-color: #fff;
}

.c-hamburger.is-active span:nth-of-type(2) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
  background-color: #fff;
}

.c-hamburger.is-active .c-hamburger__text {
  color: #fff;
  /* 文字の色を白に変更 */
}

.c-hamburger.is-active {
  background-color: transparent;
  /* 背景を透明にする */
  margin-top: 23px;
}

.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  flex-direction: column;
  padding-top: 90px;
  width: 100%;
  height: 100vh;
  background: transparent;
  font-weight: 700;
  opacity: 0;
  transition: 0.6s;
}

.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: #3e755f;
  opacity: 1;
  z-index: 10;
  transition: 0.6s;
  width: 44%;
}

@media (max-width: 1280px) {
  .p-header__nav.is-active {
    width: 50%;
  }
}

@media (max-width: 1024px) {
  .p-header__nav.is-active {
    width: 80%;
  }

  .p-nav__inner {
    margin: 0 auto;
  }
}

@media (max-width: 430px) {
  .p-header__nav.is-active {
    width: 100%;
  }

  .header__right {
    gap: 12px;
  }
}

.p-nav__item {
  padding-bottom: 54px;
  background-color: #3e755f;
}

.p-nav__list {
  background-color: #3e755f;
  text-align: right;
  margin-right: 63%;
  margin-top: 80px;
}

@media (max-width: 1440px) {
  .p-nav__list {
    margin-right: 190px;
  }
}

@media (max-width: 1260px) {
  .p-nav__list {
    margin-right: 60px;
  }
}

@media (max-width: 1024px) {
  .p-nav__list {
    margin-right: 24px;
  }
}

.p-nav__list a {
  background-color: #3e755f;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 8px;
  display: inline-block;
}

.p-nav__list span {
  background-color: #3e755f;
  display: block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
}

.p-nav__item img {
  width: 30px;
}

/*-------------------------------------------
WEB SITE CREATION 
-------------------------------------------*/
/*----------------------
WEB SITE CREATION menu
------------------------*/

.menu_set {
  display: flex;
  align-items: flex-start;
}

.menu_set_img {
  text-align: center;
  max-width: 490px;
}

.menu_set_content {
  width: 910px;
  margin-bottom: 80px;
}

.menu_set_content h6 {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.menu_set_content p {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 64px;
}

.menu_set_content span {
  font-size: 1.6rem;
}

.menu_set_list li {
  margin-bottom: 40px;
  position: relative;
}

.menu_set_list li::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 16px;
  transform: translateX(-50%);
  width: 32px;
  border-bottom: 1px solid #3e755f;
}

@media (max-width: 1024px) {
  .menu_set {
    display: block;
    align-items: center;
  }

  .menu_set_content {
    width: 100%;
  }

  .menu_set_img {
    margin: 0 auto 56px;
  }
}

@media (max-width: 430px) {

  .menu_set_content h6,
  .menu_set_content p {
    font-size: 24px;
  }
}

/*----------------------
WEB SITE CREATION 3名様
------------------------*/
.limited {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.menu_price {
  color: #f69f78;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}

.limited_tax {
  color: #f69f78;
  font-size: 1.6rem;
}

.limited_text {
  margin-bottom: 28px;
}

.menu_conditions {
  margin-bottom: 56px;
}

/*----------------------
WEB SITE CREATION option
------------------------*/
.menu_option {
  max-width: 915px;
}

.option {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  width: fit-content;
  margin: 0 auto 36px;
}

.option_box {
  border: 1px solid #3e755f;
  border-radius: 12px;
  margin: 0 auto;
  padding: 32px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 72px;
  margin-bottom: 16px;
}

.optionA {
  width: 192px;
  position: relative;
}

.optionB {
  width: 288px;
  position: relative;
}

.optionC {
  width: 618px;
  position: relative;
}

.optionA::after,
.optionB::after,
.optionC::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 16px;
  transform: translateX(-50%);
  width: 32px;
  border-bottom: 1px solid #3e755f;
}

.optionD::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 24px;
  transform: translateX(-50%);
  width: 32px;
  border-bottom: 1px solid #3e755f;
}

.optionC span {
  display: inline-block;
}

.option_note {
  text-align: right;
}

@media (max-width: 425px) {
  .option_note {
    text-align: center;
  }
}

/*-------------------------------------------
about
-------------------------------------------*/
.about_member {
  display: grid;
  gap: 63px 24px;
  grid-template-columns: repeat(auto-fill, minmax(243px, 1fr));
  justify-content: center;
  margin-top: 48px;
}

.about_member_intoroduction img {
  max-width: 100px;
  margin-left: 10px;
  margin-bottom: 15px;
}

.about_member_intoroduction h6 {
  font-size: 3.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.about_member_picture {
  margin: 0;
}

.about_member_picture img {
  width: 89px;
  margin-bottom: 24px;
  text-align: left;
}

.en-name {
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.about_sns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 16px 0;
}

.about_sns_portfolio:hover {
  border: 2px solid #f69f78;
  background-color: #f2f1eb;
}

.about_sns_portfolio {
  background-color: #f69f78;
  border-radius: 12px;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 33px;
  height: 36px;
  width: 149px;
  border: 2px solid #f69f78;
  margin-right: 16px;
  text-align: center;
}

.about_sns_instagram {
  width: 30px;
  height: 30px;
}

.about_data li {
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.about_data {
  margin-bottom: 16px;
}

.about_message {
  font-size: 1.4rem;
}



@media (max-width: 816px) {
  .about_member {
    grid-template-columns: repeat(2, minmax(272px, 1fr));
  }
}

@media (max-width: 630px) {
  .about_member {
    grid-template-columns: repeat(1, minmax(272px, 1fr));
  }

  .about_member_intoroduction {
    margin: 0 auto;
    text-align: center;
  }
  
  .about_member_intoroduction img {
    margin: 0 auto 15px;
  }

  .about_member_picture {
    text-align: center;
  }

  .about_sns {
    justify-content: center;
  }

  .about_message {
    width: 352px;
    margin: 0 auto;
  }

  .about_data {
    width: fit-content;
    margin: 0 auto 16px;
  }
}

@media (max-width: 460px) {
  .about_message {
    width: 100%;
  }
}

/*------------------------------------------
MV
-------------------------------------------*/

.concept_title {
  font-size: 3.6rem;
  line-height: 150%;
  color: #1f4126;
  text-align: center;
  margin-bottom: 16px;
}

/* spanのところで自動で改行する */
.concept_title span {
  display: inline-block;
}

.concept_box {
  margin: 100px auto 46px;
  max-width: 960px;
  position: relative;
}

.concept_text {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  right: 11%;
  bottom: 10%;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 150%;
  z-index: 1;
  height: 246px;
  /*spanを入れているので３行に改行させるために高さを設定  */
}

/* spanのところで自動で改行する */
.concept_text span {
  display: inline-block;
}

/*---------------------------
MVスライダー画像
-----------------------------*/
.slider {
  max-width: 520px;
  margin: 0 auto;
}

.slider_item figcaption {
  width: fit-content;
  position: absolute;
}

/*---------------------------
ルビスライダー
-----------------------------*/

.concept_titlebox {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.rubi {
  position: absolute;
  top: -16px;
  left: 149px;
}

.rubi_slider {
  font-size: 1.5rem;
  color: #f69f78;
  font-weight: 700;
  width: 71px;
  text-align: center;
}

/*---------------------------
スクロールダウン
-----------------------------*/

/*スクロールの雫  */
.scroll_down:before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 7.6%;
  width: 9px;
  height: 12px;
  background-image: url(../img/mv-scroll.png);
  background-size: cover;
  animation: circlemove 3s ease-in-out infinite,
    cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 160px;
  }

  100% {
    bottom: 0px;
  }
}

@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* スクロールの線 */
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 8%;
  width: 1px;
  height: 150px;
  background: #3e755f;
}

@media (max-width: 1024px) {
  .concept_box {
    width: 100%;
    padding: 0 28px;
  }

  /*スクロールの雫  */
  .scroll_down:before {
    bottom: 0;
    left: 92.6%;
    width: 9px;
    height: 12px;
  }

  /* スクロールの線 */
  .scroll_down:after {
    bottom: 11px;
    left: 93%;
    width: 1px;
    height: 100px;
  }

  @keyframes circlemove {
    0% {
      bottom: 100px;
    }

    100% {
      bottom: 0px;
    }
  }

  .concept_text {
    writing-mode: horizontal-tb;
    position: static;
    width: fit-content;
    margin: 8px auto 24px;
    text-align: center;
    height: auto;
  }
}

@media (max-width: 768px) {

  /*スクロールの雫  */
  .scroll_down:before {
    left: 92.3%;
  }
}

/*-------------------------------------------
レスポンシブ 
-------------------------------------------*/

@media (max-width: 560px) {
  .concept_titlebox {
    width: 260px;
  }

  .rubi {
    left: 146px;
  }
}

@media (max-width: 430px) {
  .concept_title {
    font-size: 28px;
  }

  .rubi {
    left: 135px;
    text-align: center;
  }

  .concept_text {
    font-size: 14px;
  }

  .concept_box {
    margin: 100px auto 10px;
  }

  h4 {
    font-size: 3.6rem;
  }

  .menu_set_content p {
    margin-bottom: 32px;
  }

  .menu_set_content {
    margin-bottom: 32px;
  }

  .scroll_down {
    display: none;
  }
}