@charset "utf-8";
/*------------------------
  共通部品
 ------------------------*/
:root {
    --text-color: #333;
    --sub-text-color: #666;
    --color-main: #90be60;
    --color-ayame: #f97c75;
    --color-kodomo: #f7aa22;
    --color-bousai: #50c6d4;
    --color-white: #fff;
    --filter-white: rgba(255, 255, 255, 0.9);
}

.flex {
  /* 横並び */
  display: flex;
}

.flex-vertical {
  /* 縦並び */
  flex-direction: column;
}

.is-between {
  /* 横幅いっぱいに配置 */
  justify-content: space-between;
}

.is-center-height {
  /* 縦方向に中央寄せ */
  align-items: center;
}

.is-center-width {
  /* 横方向に中央寄せ */
  justify-content: center;
}

.is-around {
  /* 横幅均等に配置 */
  justify-content: space-around;
}

.tc {
  /* 横方向に中央寄せ */
  text-align: center;
}

/*------------------------
  ヘッダー
 ------------------------*/
.header {
  position: fixed;
  height: 80px;
  line-height: 75px;
  width: 100%;
  background-color: var(--color-white);
  z-index: 10;
}

.header_wrap {
  width: 90%;
  padding: 0 20px;
  margin: 0 auto;
  border-bottom: 2px dotted #90be60;
}

/*------------------------
  グローバルナビゲーション
 ------------------------*/
.gnav_list li:not(:last-child) {
  margin-right: 50px;
}

.contact_btn {
  background-color: var(--color-main);
  padding: 1em;
  border-radius: 30px;
  color: #fff;
}

/*------------------------
  スマホナビゲーション
 ------------------------*/
.spnav_btn {
  position: fixed;
  top: 15px;
  right: 5%;
  width: 45px;
  height: 45px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  background-color: var(--color-main);
  z-index: 1;
}

.spnav_btn::after {
  content: "メール";
  color: var(--color-white);
  font-size: 8px;
  font-weight: 700;
}

/*.spnav {
  position: fixed;
  width: 80%;
  top: 80px;
  background-color: #d8d8d8;
  padding: 0 50px 1em;
  opacity: 0.9;
}

.spnav_list li {
  border-bottom: 2px dotted #707070;
  text-align: center;
}

.spnav_list li a {
  justify-content: center;
  text-align: center;
  padding: 2em 5%;
}

.spnav_wrap .spnav {
  visibility: hidden;
}

/* SPメニューボタン押下時 */
/*.spnav_wrap.open .spnav {
  visibility: visible;
  opacity: 1;
}

.spnav_wrap.open .spnav_btn::before,
.spnav_wrap.open .spnav_btn::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2.5px;
}
.spnav_wrap.open .spnav_btn::before {
  position: fixed;
  transform: rotate(-45deg);
}
.spnav_wrap.open .spnav_btn::after {
  position: fixed;
  transform: rotate(45deg);
}*/

/*------------------------
  共通部品（セクション）
 ------------------------*/
.section-area-max {
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  max-width: 1200px;
}

/*------------------------
  メインビジュアル
 ------------------------*/
.top-contents_wrap {
  padding-top: 110px;
  height: 450px;
}

.top-contents_title {
  flex-direction: column;
  padding-bottom: 30px;
}

.top-contents_title span {
  font-size: 10px;
  padding-bottom: 0.5em;
}

.top-contents_textarea {
  padding-right: 3vw;
}

.top-contents_img {
  display: block;
  margin-right: 10vw;
}

.top-contents_img img {
  max-height: 300px;
}

.link_btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 23px 20px 0px;
  width: clamp(180px, 30%, 280px);
  margin: 30px auto;
}

.link_btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: 2px solid #90be60;
  border-radius: 40% 60% 60% 40% /40% 40% 60% 60%;
}

.link_btn a::after {
  content: "";
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.link_btn a:hover::before {
  background-color: #90be60;
}

.link_btn a:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*------------------------
  タイトル：共通
 ------------------------*/
.section_title {
  width: clamp(300px, 50%, 350px);
  justify-content: center;
  text-align: center;
  font-size: 22px;
  padding-bottom: 0.5em;
  margin: 3em auto 1.5em;
  background-image: repeating-linear-gradient(
    90deg,
    #e5c046 0px,
    #e5c046 12px,
    rgba(0 0 0 / 0) 12px,
    rgba(0 0 0 / 0) 20px
  );
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: center bottom;
}

.section-title_textarea {
  padding-bottom: 2.5em;
}

.section_explain {
  width: calc(90% * 3 / 4 - 100px / 2);
  min-width: 300px;
  margin: auto;
}

/*------------------------
  自己紹介
 ------------------------*/
.about-contents_imgarea {
  width: clamp(300px, calc(90% / 4 - 20px / 2), calc(90% / 4 - 20px / 2));
  margin: 10px auto;
  padding: 0;
}

.about-contents_imgarea img {
  border-radius: 40% 60% 39% 61% / 67% 44% 56% 33%;
}

.about-contents_imgarea p {
  padding-top: 30px;
}

.about-contents_textarea {
  width: clamp(300px, calc(90% * 2 / 3 - 20px / 2), 465px);
  margin: auto;
  padding: 1em 1.2em;
}

.about-contents_textarea p {
  margin-bottom: 35px;
}

.more_btn a {
  width: 130px;
}

/*------------------------
  特徴
 ------------------------*/
.contents_wrap {
  display: flex;
  flex-wrap: wrap;
}

.contents_box {
  width: clamp(300px, calc(90% / 2 - 40px / 2), calc(90% / 2 - 40px / 2));
  margin: auto;
  padding: 1em 1.2em;
  border-radius: 10px;
  border: 1px solid #ebd1c9;
  margin: 20px auto;
}

.contents_boxtitle {
  padding: 0 0 0.7em;
}
.contents_boxtitle img {
  width: 50px;
}

.contents_boxtitle h3 {
  margin-left: 20px;
  line-height: 50px;
}

.contents_box p {
  flex-direction: column;
}

.ng_title {
  background-image: repeating-linear-gradient(
    90deg,
    #000 0px,
    #000 12px,
    rgba(0 0 0 / 0) 12px,
    rgba(0 0 0 / 0) 20px
  );
}

/*------------------------
  価格表
 ------------------------*/
.price_box {
  width: clamp(300px, calc(90% / 2), calc(90% / 2));
  border: 3px dotted #4fb8d9;
  padding: 30px 10px 30px;
  max-width: 400px;
}

.price-contents_box_title {
  padding-bottom: 20px;
  text-align: center;
}

.price-contents_box_title img {
  padding: 0 0 20px;
}

.price-contents_box_title h3 {
  margin: auto;
  text-align: center;
  font-size: 18px;
}

.price-contents_box_title h3 span {
  font-size: 12px;
}

.price-contents-box_table,
.price-contents-option_table {
  font-size: 14px;
  width: 95%;
  max-width: 450px;
  margin: auto;
  justify-content: center;
}

.price-contents-box_table tr {
  padding: 10px 40px;
  border-bottom: 1px solid #4fb8d9;
}

.price-contents-box_table tr:last-child {
  border-bottom: none;
}

.price-contents-box_table th {
  width: 60%;
  padding: 10px 15px;
  border-right: 1px solid #4fb8d9;
}

.price-contents-option_table tr {
  width: 80%;
}

.price-contents-box_table td {
  padding: 0 15px;
  align-items: center;
  text-align: right;
}

.price-contents-option_title {
  margin: 2em 1em 1em 1em;
  position: relative;
  padding-left: 10px;
  width: 30%;
  border-bottom: 2px solid #c7c7c7;
}

.price-contents-option_title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 30%;
  border-bottom: 2px solid #4fb8d9;
}

.price-contents-option_table tr {
  border-bottom: none;
}

.price-contents-option_table th {
  border-right: none;
  padding: 0.2em 15px;
}

.price-contents-option_table td {
  padding-top: 0;
  text-align: right;
}

.copyright {
  padding: 50px 0 30px;
}

.mark,
.mark_last {
  position: relative;
  padding: 15px;
  color: #fff;
  margin-right: 30px;
}

.mark::after,
.mark_last::after {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  height: 50px;
  width: 50px;
  border-radius: 40% 60% 39% 61% / 67% 44% 56% 33%;
  background-color: #e5c046;
  z-index: -1;
}

/*------------------------
  実績
 ------------------------*/
.slider_text h3 {
  font-weight: 700;
  font-size: 1em
}

.slider_text p {
  font-size: 0.8em;
}

.swiper-wrapper {
  margin: 0 auto 0;
}

.slider_box {
  width: 90%;
  margin: 0 5%;
}

.slider_box img {
    width: 80%;
    margin: 0 5%;
    padding: 5%;
    border: 1px solid #d8d8d8;
}

.slider_text {
    /*width: (100% - 2em);*/
    width: 90%;
    margin: 0 auto;
    /* background: rgba(0, 0, 0, 0.3); */
    color: var(--text-color);
    padding: 1em 0 0 1em;
}
.swiper-pagination {
  margin: 30px 0 0;
  position: relative;
}

/*------------------------
  ご依頼の流れ
 ------------------------*/
.flow-contents {
    padding-top: 30px;
    min-width: 300px;
}

.flow-contents_textarea {
  padding-right: 5%;
}

.flow-contents_textarea h3 {
  font-size: 16px;
  font-weight: bold;
  padding: 15px 0;
}

.flow-contents_textarea p {
  font-size: 14px;
  padding-bottom: 10px;
}

.flow-contents_box {
  width: clamp(
    300px,
    calc(90% * 3 / 4 - 20px / 2),
    calc(90% * 3 / 4 - 20px / 2)
  );
  border: none;
  margin: 0 auto;
}

.mark::before {
  content: " ";
  width: 1px;
  background: #d8d8d8;
  height: 120%;
  position: absolute;
  top: 20%;
  left: 48%;
  z-index: -1;
}

.flow-contents_wrap.mark:last-child::before {
  width: 0px;
}

/*------------------------
  お問い合わせページ
 ------------------------*/
.formrun{
    width:95%;
}

.label_title{
    margin: 20px auto 10px;
}

.label_name{
    margin-top:10px;
}

.formrun input{
    padding:10px;
    width:90%;
    font-size:16px;
}

.formrun span {
    display: iline-block;
    padding: 5px 10px;
    color: #d8d8d8;
    background-color: var(--color-kodomo);
    margin: auto 10px;
    border-radius: 10px;
    font-size: 12px;
}

.formrun textarea {
    width:100%;
    height:10em;
}

.formrun input,
.formrun textarea {
    border: solid 1px;
    border-color: silver;
}

.formrun button {
    padding: 10px 20px;
    background-color: firebrick;
    color: antiquewhite;
    border: 0;
    border-radius: 10px;
    margin:20px auto;
}

.formrun .error_message{
    color:crimson;
    font-size:12px;
}

.formrun-system-show{
    font-size:12px;
    margin-right:20px;
}

/*------------------------
  ナビの表示非表示
 ------------------------*/
/* SP */
/*@media (max-width: 430px) {
  .gnav {
    display: none;
  }

  .spnav_wrap {
    display: block;
  }
}*/
/* PC */
@media (min-width: 0px) {
    .gnav {
    display: block;
  }

  .spnav_wrap {
    display: none;
  }
}

.about-contents,
.contact-contents {
  padding-top: 80px;
}

/*------------------------
  プロフィールページ
 ------------------------*/
.about-history_wrap {
  width: 60%;
  min-width: 300px;
  margin: 0 auto;
}

.history-year,
.history-year_title {
    width: clamp(100px, 30%, 350px);
    margin: 20px auto 5px;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
    padding: 5px;
    background-color: var(--color-main);
    color: #fff;
}

.history-year_title {
    margin: -5px 50px 5px;
}

.history_work {
    color: cornflowerblue;
}

.history_life {
    color: coral;
}

.history-content {
    text-align: center;
    padding: 10px;
    padding-bottom: 0;
    max-width: 60%;
    margin: auto;
}

.history_title{
    font-weight:bold;
    width:50px;
}

.history-content_box {
    margin: auto;
    width: clamp(300px, 40%, 800px);
}

.history-content_before {
    width: 30px;
    height: 30px;
    background-color: cornflowerblue;
    border-radius: 50px;
    margin-left:-10px;
}

    .history-content_before::after {
        content: '';
        display: inline-block;
        width: 35px;
        height: 1px;
        margin-left: 20px;
        background-color: #d8d8d8;
    }

.history-content_after {
    width: 30px;
    height: 30px;
    background-color: coral;
    border-radius: 50px;
    margin-right:-10px;
}

    .history-content_after::after {
        content: '';
        display: inline-block;
        width: 35px;
        height: 1px;
        background-color: #d8d8d8;
        margin-left: -30px;
    }

.history-content_dummy {
    content: '';
    display: inline-block;
    width: 35px;
}

.dummy_before {
  margin-left: -10px;
}

.dummy_after {
  margin-right: -10px;
}

/*------------------------
  サンクスページ
 ------------------------*/
.thanks_wrap p {
  margin: auto;
  text-align: center;
}

/*------------------------
  アイコンリンクページ
 ------------------------*/
.icon-link {
    width:30%;
    justify-content:center;
    text-align:right;
    margin:auto;
    margin-right:30px;
    padding:50px 0;
}

.icon-link p {
    font-size: 12px;
    text-align: right;
}

.icon-link p a {
    display:flex;
    width:100px;
    justify-content:space-between;
    align-items:center;
    padding-right:30px;
}

    .icon-link p a::after {
        content: '';
        width: 6px;
        height: 6px;
        border-top: 2px solid var(--text-color);
        border-right: 2px solid var(--text-color);
        transform: rotate(45deg);
    }

.thanks_wrap{
    width:260px;
    justify-content:center;
    margin:auto;
    margin-top:-15px;
}

.thanks_box{
    display:flex;
    margin:5px auto;
    font-size:12px;
}

.thanks_box:last-child {
    margin-bottom: 50px;
}

.thanks_box img{
    height:35px;
    margin-right:20px;
}

.work_section{
    width:80%;
    max-width:600px;
}

.work_contents{
    margin-top:20px;
    justify-content:center;
    line-height:1.6em;
    letter-spacing:0.1em;
}

.work_contents img {
    width: 100%;
    max-width:600px;
    margin: 30px 0 15px;
}

.work_contents p {
    margin:auto;
    padding-bottom:30px;
}

.work_contents a {
    color: #0066c0;
    border-bottom: 1px solid;
}

/*-----------p----------
  カード式表示
 ------------------------*/
/* SP */
@media (max-width: 768px) {
    .about-contents_wrap {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .text-md {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .text-lg {
        text-align: center;
    }
}
