@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

h2, h3, h4, h5 {
  font-weight: normal;
}

.index {
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  /* アニメーション指定 */
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.index_b {
  font-family: sofia-pro, sans-serif;
  font-size: 80px;
}
.index_s {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: #707070;
  margin: 5px 0 50px;
}
.index_t {
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 28px;
}

.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* /アニメーション指定 */
.f_bold {
  font-weight: bold;
}
.f_sofia {
  font-family: sofia-pro, sans-serif;
  font-weight: 300;
  font-style: normal;
}
.f_sofia_b {
  font-family: sofia-pro, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.f_zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.more {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 12px;
}
.more img {
  width: 120px;
}

/* margin-rightの指定
============================== */
.spc10 {
  margin-right: 10px;
}

.spc13 {
  margin-right: 13px;
}

.spc30 {
  margin-right: 30px;
}

.spc50 {
  margin-right: 50px;
}

.spc70 {
  margin-right: 70px;
}

/* margin-bottomの指定
============================== */
.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

/* 改行の指定
============================== */
.tb_br {
  display: none;
}

.sp_br {
  display: none;
}

.min_br {
  display: none;
}

/* 820px以下の場合 */
@media screen and (max-width: 820px) {
  .tb_br {
    display: block;
  }
  .sp_br {
    display: none;
  }
  .min_br {
    display: none;
  }
}
/* 654px以下の場合 */
@media screen and (max-width: 654px) {
  .tb_br {
    display: none;
  }
  .sp_br {
    display: block;
  }
}
/* 430px以下の場合 */
@media screen and (max-width: 430px) {
  .tb_br {
    display: none;
  }
  .sp_br {
    display: none;
  }
  .min_br {
    display: block;
  }
}
/* スクロールしたら下からfade inの記述
============================== */
.fadein {
  /* 最初は非表示 */
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 2s, visibility 2s, -webkit-transform 2s;
  transition: opacity 2s, visibility 2s, -webkit-transform 2s;
  transition: transform 2s, opacity 2s, visibility 2s;
  transition: transform 2s, opacity 2s, visibility 2s, -webkit-transform 2s;
}

/* フェードイン時に入るクラス */
.un-fadein {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 2;
  visibility: visible;
}

/* colorの変数
============================== */
html {
  scroll-behavior: smooth;
}

html, 　body {
  height: 100%;
}

body {
  font-family: yu-gothic-pr6n, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000;
  margin: 0 auto;
}

#wrapper {
  min-height: 100vh;
}

.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-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);
  }
}
@media screen and (max-width: 999px) {
  .index_b {
    font-size: 60px;
  }
  .index_s {
    font-size: 14px;
  }
  .index_t {
    font-size: 0.94rem;
    line-height: 32px;
  }
}
/* ファイルのインポート
============================== */
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header #hd {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: auto;
  height: 95px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header #hd h1 img {
  width: 120px;
  padding-left: 20px;
}
header #hd .pc_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header #hd .pc_nav ul li {
  margin-right: 30px;
  letter-spacing: 0.15rem;
}
header #hd .pc_nav ul li:nth-of-type(5) {
  color: #B1784B;
  margin-right: 0;
}
header #hd .pc_nav ul li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
header #hd .pc_nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #E0DCC9;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}
header #hd .pc_nav ul li a:hover:after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
header .sp_nav, header #menu {
  display: none;
}

@media screen and (max-width: 999px) {
  .pc_nav {
    display: none;
  }
  /* SP　menu */
  .sp_nav {
    display: block !important;
    z-index: 999;
    position: fixed;
    top: 0;
    right: -120%;
    width: 100vw;
    height: 100vh;
    background: rgb(243, 241, 234);
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .sp_nav_menu {
    position: absolute;
    top: 75px;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .sp_nav_menu_list {
    margin-bottom: 14px;
  }
  .sp_nav_menu_list_bg img {
    width: 70px;
    display: inline;
  }
  .sp_nav_menu_list_index {
    font-size: 28px;
    margin-top: -65px;
  }
  .sp_nav_menu_list_text {
    color: #707070;
    font-size: 14px;
  }
  .sp_nav_ud {
    position: absolute;
    top: 580px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .sp_nav_ud img {
    display: inline;
  }
  .sp_nav_ud_img1 img {
    width: 30px;
  }
  .sp_nav_ud_img2 {
    margin-top: 30px;
  }
  .sp_nav_ud_img2 img {
    width: 305px;
  }
  .sp_nav_ud_text {
    font-size: 12px;
    margin-top: -10px;
    color: #707070;
  }
  /*アクティブクラスがついたら位置を0に*/
  .sp_nav.panelactive {
    right: 0 !important;
  }
  /*========= ボタンのためのCSS ===============*/
  #menu {
    display: block !important;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /* ×に変化 */
  #menu span {
    display: inline-block !important;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  #menu span:nth-of-type(1) {
    top: 15px;
  }
  #menu span:nth-of-type(2) {
    top: 23px;
  }
  #menu span:nth-of-type(3) {
    top: 31px;
  }
  #menu.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  #menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  #menu.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
/* 557px以下の場合 */
@media screen and (max-width: 557px) {
  .sp_nav_menu {
    top: 65px;
  }
  .sp_nav_ud {
    top: 525px;
  }
  .sp_nav_ud_img2 {
    margin-top: 12px;
  }
  .sp_nav_ud_text {
    margin-top: -15px;
  }
}
/* ファイルのインポート
============================== */
/* Contact */
.contact {
  width: 100%;
  margin: 200px auto;
  padding-top: 100px;
}
.contact_text {
  line-height: 40px;
  font-size: 17px;
  margin-bottom: 50px;
}
.contact_text_br {
  display: none;
}
.contact_btn-box {
  background: #B1784B;
}
.contact_btn-box:before {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #B1784B;
}
.contact_btn-box:hover:before {
  top: 0;
  left: 0;
  width: 99%;
  height: 97%;
  content: "";
}
.contact_btn-box_text {
  font-size: 20px;
  padding: 8px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.contact_btn, .contact a.btn, .contact button.btn {
  position: relative;
  display: inline-block;
  padding: 1rem 6.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
}

/* 999px以下の場合
================================= */
@media screen and (max-width: 999px) {
  .contact {
    margin: 160px auto;
    padding-top: 0;
  }
}
/* 430px以下の場合
================================= */
@media screen and (max-width: 430px) {
  /* contact */
  .contact {
    width: 100%;
  }
  .contact_text {
    font-size: 16px;
    padding: 0 15px;
  }
  .contact_text_br {
    display: block;
  }
  .contact_btn {
    margin: 0 15px;
    width: -webkit-fill-available;
  }
  .contact_btn-box_text {
    font-size: 18px;
  }
}
/* 370px以下の場合
================================= */
@media screen and (max-width: 370px) {
  .contact_btn {
    padding: 1rem 2.5rem;
  }
}
/* ファイルのインポート
============================== */
footer {
  width: 100%;
  height: 245px;
  background-color: #E0DCC9;
  margin: 100px auto 0;
  padding-top: 45px;
}
footer p {
  width: 25px;
  margin: 20px auto;
}
footer p img {
  width: 25px;
}
footer h3 {
  text-align: center;
  font-size: 0.62rem;
  color: #fff;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 840px;
  margin: 0 auto;
}
.footer img {
  width: 120px;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer ul li {
  margin-right: 30px;
  letter-spacing: 0.15rem;
  color: #fff;
}
.footer ul li:nth-of-type(5) {
  color: #B1784B;
  margin-right: 0;
}

@media screen and (max-width: 999px) {
  .footer {
    width: 100%;
  }
  .footer nav {
    display: none;
  }
}
/* ファイルのインポート
============================== */
/* top
============================== */
.top {
  position: relative;
  width: 564px;
  margin: 100px auto 160px;
  /* アニメーション指定 */
  /* /アニメーション指定 */
}
.top-img {
  width: 784px;
  height: 585px;
}
.top-txt {
  position: absolute;
  left: -219px;
  top: 155px;
}
.top-txt img {
  width: 437px;
}
.top-txt2 {
  font-style: italic;
  position: absolute;
  left: -53px;
  top: 356px;
}
.top-txt, .top-txt2 {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-copy {
  font-size: 12px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  left: -245px;
  top: 324px;
}
.top-rside {
  position: fixed;
  text-align: center;
  right: 0;
  top: 30%;
  /* デフォルトは非表示 */
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  z-index: 6;
}
.top-rside_ig {
  margin-bottom: 50px;
}
.top-rside_ig img {
  width: 30px;
}
.top-rside_yg img {
  width: 73px;
}
.top .top-rside.UpMove {
  -webkit-animation: UpAnime 2s forwards;
          animation: UpAnime 2s forwards;
}
@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(800px);
            transform: translateY(800px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(800px);
            transform: translateY(800px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top .top-rside.DownMove {
  -webkit-animation: DownAnime 2s forwards;
          animation: DownAnime 2s forwards;
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(800px);
            transform: translateY(800px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(800px);
            transform: translateY(800px);
  }
}

.top_sp {
  display: none;
}

/* Message */
.message {
  max-width: 840px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  position: relative;
}
.message_waku {
  width: 100％;
  padding: 30px 0 0 50px;
  border: solid 40px #F3F1EA;
  background-color: #fff;
  height: 840px;
}
.message_waku_sq1 {
  position: absolute;
  top: 0;
  left: 0;
}
.message_waku_sq1_1, .message_waku_sq2_3, .message_waku_sq2_4, .message_waku_sq1_2 {
  width: 40px;
  height: 40px;
  background-color: #bf9670;
}
.message_waku_sq1_2 {
  position: relative;
  top: 760px;
}
.message_waku_sq2 {
  position: absolute;
  top: 0;
  right: 0;
}
.message_waku_sq2_4 {
  position: relative;
  top: 760px;
}
.message_2_title {
  font-size: 5rem;
  letter-spacing: 0.3rem;
  opacity: 0.3;
  font-weight: 400;
  margin: -122px 0 0 -345px;
}
.message_2_text {
  text-align: left;
  max-width: 480px;
  margin: 40px auto 0;
}
.message_2_text_sp {
  display: none;
}
.message_hito {
  position: relative;
  top: -627px;
  left: -121px;
  /* アニメーション指定 */
  /* /アニメーション指定 */
}
.message_hito-all {
  position: relative;
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  width: 60px;
}
.message_hito-1 {
  left: 40px;
  top: -20px;
}
.message_hito-2 {
  top: -85px;
  left: 700px;
}
.message_hito-3 {
  top: -70px;
  left: -75px;
}
.message_hito-4 {
  top: -150px;
  left: 845px;
}
.message_hito-5 {
  top: -124px;
  left: 81px;
}
.message_hito-6 {
  top: -193px;
  left: 742px;
}
.message_hito-7 {
  top: -228px;
  left: 772px;
}
.message_hito-8 {
  top: -224px;
  left: 40px;
}
.message_hito-9 {
  top: -213px;
  left: 803px;
}
.message_hito-10 {
  top: -230px;
  left: -32px;
}
.message_hito-11 {
  top: -245px;
  left: 106px;
}
.message_hito-12 {
  top: -266px;
  left: 702px;
}
.message_hito-13 {
  top: -369px;
  left: 863px;
}
.message_hito-1, .message_hito-7, .message_hito-13 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
.message_hito-2, .message_hito-8 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
.message_hito-3, .message_hito-9 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
.message_hito-4, .message_hito-10 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
.message_hito-5, .message_hito-11 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
.message_hito-6, .message_hito-12 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.e_26 {
  font-size: 26px;
}

.j_22 {
  font-size: 22px;
}

/* About */
.about {
  width: 100%;
  margin-top: 160px;
  padding-top: 100px;
}
.about_matoi {
  width: 100%;
  height: 730px;
  margin: 50px auto 165px;
  background-color: #F3F1EA;
  padding-top: 60px;
}
.about_matoi_index {
  width: 1140px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about_matoi_index_border {
  margin-right: 10px;
}
.about_matoi_index_border img {
  height: 24px;
}
.about_matoi_index_border_sp_3, .about_matoi_index_border_sp_2, .about_matoi_index_border_sp_1 {
  display: none;
}
.about_matoi_index h3 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -24px;
}
.about_matoi_index_ten {
  font-size: 46px;
  letter-spacing: 0.02em;
}
.about_matoi_index_tja {
  font-size: 36px;
}
.about_matoi_index_bordersp {
  display: none;
}
.about_matoi_text {
  width: 1140px;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  padding: 60px 0 65px 140px;
  margin: 0 auto;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
}
.about_matoi_text h4, .about_matoi_text h5 {
  font-size: 20px;
  letter-spacing: 0.25em;
  background-color: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.about_matoi_text h4 {
  padding: 15px 5px;
  margin-right: 220px;
}
.about_matoi_text h5 {
  padding: 15px 10px;
  margin: 230px 10px 0 55px;
}
.about_matoi_text_matoi {
  width: 50px;
  padding: 3px 0;
}
.about_matoi_text p {
  line-height: 52px;
  letter-spacing: 0.32em;
}
.about_matoi_text_img {
  margin: 300px 60px 0 0;
}
.about_me {
  width: 100%;
  margin: 0 auto 180px;
}
.about_me_index {
  width: 1140px;
  margin: 0 auto 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about_me_index_border {
  margin-left: 10px;
}
.about_me_index_border img {
  height: 24px;
  margin-top: 25px;
}
.about_me_index_border_sp {
  display: none;
}
.about_me h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.about_me_text {
  width: 840px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about_me_text p {
  margin-right: 90px;
}
.about_me_text_profile h2 {
  font-size: 40px;
  letter-spacing: 0.05em;
}
.about_me_text_profile h3, .about_me_text_profile ul li {
  color: #707070;
}
.about_me_text_profile h3 {
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 70px;
}
.about_me_text_profile ul li {
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.about_me_text_profile ul li:nth-of-type(4) {
  font-size: 12px;
}
.about_me_text_profile_r {
  font-style: italic;
  margin: -15px 0 0 120px;
}

.profile {
  width: 100%;
  height: 1900px;
  background-color: #F3F1EA;
  margin-bottom: 180px;
}
.profile h3 {
  font-size: 70px;
  letter-spacing: 0.05rem;
  text-align: center;
  color: #B1784B;
  font-weight: 400;
  position: relative;
  top: -50px;
}
.profile_by {
  width: 1000px;
  margin: 0 auto;
  height: auto;
  position: relative;
}
.profile_by_sp {
  display: none;
}
.profile_by_2005 {
  position: absolute;
  top: 5px;
}
.profile_by_2005_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2005_dotted img {
  height: 276px;
}
.profile_by_2005_img {
  position: relative;
  top: -275px;
  left: 60px;
}
.profile_by_2005_img img {
  height: 260px;
}
.profile_by_2005_text {
  position: relative;
  top: -285px;
  left: 10px;
}
.profile_by_2009 {
  position: absolute;
  top: 85px;
  left: 510px;
}
.profile_by_2009_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2009_dotted img {
  height: 243px;
}
.profile_by_2009_img {
  position: relative;
  top: -250px;
  left: 230px;
}
.profile_by_2009_img img {
  height: 220px;
}
.profile_by_2009_text {
  position: relative;
  top: -250px;
  left: 10px;
}
.profile_by_2013 {
  position: absolute;
  top: 335px;
  left: 290px;
}
.profile_by_2013_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2013_dotted img {
  height: 274px;
}
.profile_by_2013_img {
  position: relative;
  top: -300px;
  left: 130px;
}
.profile_by_2013_img img {
  height: 200px;
}
.profile_by_2013_text {
  position: relative;
  top: -280px;
  left: 10px;
}
.profile_by_2014 {
  position: absolute;
  top: 615px;
  left: 25px;
}
.profile_by_2014_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2014_dotted img {
  height: 220px;
}
.profile_by_2014_img {
  position: relative;
  top: -230px;
  left: 60px;
}
.profile_by_2014_img img {
  height: 126px;
  margin-top: 15px;
  margin-left: 85px;
}
.profile_by_2014_text {
  position: relative;
  top: -230px;
  left: 10px;
}
.profile_by_2015 {
  position: absolute;
  top: 675px;
  left: 540px;
}
.profile_by_2015_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2015_dotted img {
  height: 333px;
}
.profile_by_2015_img {
  position: relative;
  top: -310px;
  left: 165px;
}
.profile_by_2015_img img {
  height: 90px;
}
.profile_by_2015_text {
  position: relative;
  top: -340px;
  left: 10px;
}
.profile_by_2019 {
  position: absolute;
  top: 940px;
  left: 0;
}
.profile_by_2019_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2019_dotted img {
  height: 250px;
}
.profile_by_2019_img {
  position: relative;
  top: -250px;
  left: 115px;
}
.profile_by_2019_img img {
  height: 145px;
}
.profile_by_2019_text {
  position: relative;
  top: -250px;
  left: 10px;
}
.profile_by_2020 {
  position: absolute;
  top: 1090px;
  left: 480px;
}
.profile_by_2020_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2020_dotted img {
  height: 100px;
}
.profile_by_2020_img {
  position: relative;
  top: -105px;
  left: 160px;
}
.profile_by_2020_img img {
  height: 105px;
}
.profile_by_2020_text {
  position: relative;
  top: -105px;
  left: 10px;
}
.profile_by_2021 {
  position: absolute;
  top: 1330px;
  left: 290px;
}
.profile_by_2021_dotted {
  position: relative;
  top: -35px;
  left: 100px;
}
.profile_by_2021_dotted img {
  height: 251px;
}
.profile_by_2021_img {
  position: relative;
  top: -245px;
  left: 105px;
}
.profile_by_2021_img img {
  height: 200px;
}
.profile_by_2021_text {
  position: relative;
  top: -250px;
  left: 10px;
}
.profile_by_year, .profile_by_year_sp {
  font-size: 24px;
  letter-spacing: 0.1em;
  padding: 2px 12px;
  background-color: #B1784B;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  margin-bottom: 18px;
}
.profile_by_text {
  width: 402px;
  letter-spacing: 0.1em;
  line-height: 30px;
}

.favorite {
  width: 1000px;
  margin: 0 auto;
}
.favorite h3 {
  font-size: 60px;
  text-align: center;
  color: #B1784B;
  font-weight: 400;
}
.favorite_six1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.favorite_six2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12px;
}
.favorite_six3, .favorite_six4, .favorite_six5 {
  display: none;
}
.favorite_col {
  width: 32.5%;
  padding-bottom: 15px;
  background-color: #F3F1EA;
}
.favorite_col:nth-child(3) {
  margin-right: 0;
}
.favorite_col_img {
  background: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin: 30px auto 0;
}
.favorite_col_img img {
  margin: 25px 30px;
  width: 100px;
}
.favorite_col_index {
  font-size: 24px;
  margin: 25px auto;
  text-align: center;
}
.favorite_col_text {
  line-height: 24px;
  color: #707070;
  padding: 0 15px;
}
.favorite_col1 {
  max-width: 328px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 15px;
  background-color: #F3F1EA;
}

/* Works */
.works {
  width: 840px;
  margin: 260px auto 0;
}
.works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.works ul li {
  width: 270px;
  margin-right: 15px;
  border: 1px #e5e5e5 solid;
}
.works ul li:nth-child(4) {
  border: none;
}
.works ul li img {
  width: 270px;
}

/* Servise */
.servise {
  width: 1000px;
  margin: 260px auto 0;
}
.servise_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.servise_col {
  max-width: 333px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 15px;
  margin-right: 8px;
  background-color: #E0DCC9;
}
.servise_col:nth-child(2) {
  background-color: #F3F1EA;
}
.servise_col:nth-child(3) {
  margin-right: 0;
}
.servise_col_img {
  background: #fff;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  margin: 30px auto 0;
}
.servise_col_img img {
  margin: 25px 30px;
  width: 130px;
}
.servise_col_index {
  font-size: 46px;
  color: #fff;
  margin: 50px 0;
  text-align: center;
}
.servise_col_index_b {
  font-size: 66px;
}
.servise_col_text {
  line-height: 36px;
  margin: 60px 15px;
}

/* 999px以下の場合
================================= */
@media screen and (max-width: 999px) {
  /* Top */
  .top {
    display: none;
  }
  .top_sp {
    display: block;
    background-image: url(../images/main.jpg);
    background-repeat: no-repeat;
    max-width: 784px;
    height: 585px;
    margin: 95px auto 160px;
  }
  .top_sp_inner {
    padding: 240px 0 0 10px;
    /* アニメーション指定 */
    -webkit-animation-name: fadeInAnime;
            animation-name: fadeInAnime;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
  }
  .top_sp_inner_txt {
    display: block;
  }
  .top_sp_inner_txt img {
    width: 350px;
  }
  .top_sp_inner_txt2 {
    font-style: italic;
    color: #fff;
    margin-top: -17px;
  }
  @-webkit-keyframes fadeInAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeInAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  /* /アニメーション指定 */
  /* Message */
  .message {
    width: 100%;
    margin: 0 auto;
  }
  .message_waku {
    height: 620px;
    padding: 30px 0 0 0;
  }
  .message_waku_inner {
    text-align: left;
  }
  .message_waku_sq1 {
    top: 0;
    left: 0;
  }
  .message_waku_sq1_2 {
    top: 539px;
  }
  .message_waku_sq2 {
    right: 0;
    top: 0;
  }
  .message_waku_sq2_4 {
    top: 539px;
  }
  .message_2 {
    margin-left: 0;
  }
  .message_2_title {
    display: none;
  }
  .message_2_title_sp {
    display: block;
    margin: -139px auto 0;
    text-align: center;
  }
  .message_2_text {
    display: none;
  }
  .message_2_text_sp {
    display: block;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0.02em;
    margin: 50px auto 0;
    max-width: 654px;
  }
  .message_hito {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 260px;
    position: relative;
    top: 25px;
    left: 200px;
    margin: 0 auto;
  }
  .message_hito-1, .message_hito-3, .message_hito-4, .message_hito-7, .message_hito-8, .message_hito-11, .message_hito-12 {
    display: none;
  }
  .message_hito-2, .message_hito-5, .message_hito-10, .message_hito-6, .message_hito-9, .message_hito-13 {
    top: 0px;
    left: 0px;
  }
  /* About */
  .about {
    width: 100%;
    margin: 100px auto 0;
  }
  .about_content {
    max-width: 520px;
    margin: 0 auto;
  }
  .about_matoi {
    height: 90%;
  }
  .about_matoi_index {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .about_matoi_index_me {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .about_matoi_index_border img {
    display: none;
  }
  .about_matoi_index_border_sp_3 {
    display: block;
    text-align: right;
  }
  .about_matoi_index_border_sp_3 img {
    max-width: 450px;
    margin-right: 5px;
  }
  .about_matoi_index_border_sp_2, .about_matoi_index_border_sp_1 {
    display: none;
  }
  .about_matoi_index_ten {
    font-size: 28px;
    letter-spacing: 0.02em;
  }
  .about_matoi_index_tja {
    font-size: 26px;
  }
  .about_matoi_text {
    width: initial;
    writing-mode: initial;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    padding: 55px 15px;
  }
  .about_matoi_text_index {
    margin: 0 auto;
    max-width: 480px;
  }
  .about_matoi_text_index h4, .about_matoi_text_index h5 {
    padding: 0 20px;
    font-weight: normal;
  }
  .about_matoi_text_index h4 {
    width: 300px;
    margin-right: 0;
  }
  .about_matoi_text_index h4 img {
    width: 35px;
  }
  .about_matoi_text_index h5 {
    width: 265px;
    margin: 10px 0 30px 215px;
  }
  .about_matoi_text_matoi {
    margin: -13px 0;
    width: 30px;
  }
  .about_matoi_text p {
    line-height: 35px;
    letter-spacing: 0.15em;
    color: #707070;
  }
  .about_matoi_text_img {
    width: 214px;
    opacity: 0.2;
    margin: -200px 0 50px 160px;
  }
  .about_me_index {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-left: 20px;
    width: 100%;
  }
  .about_me_index_border {
    display: none;
  }
  .about_me_index_border_sp {
    display: block;
  }
  .about_me_index_border_sp img {
    max-width: 450px;
    margin-left: 5px;
    height: 1px;
  }
  .about_me_text {
    width: 330px;
    margin: 55px auto;
    display: block;
  }
  .about_me_text p {
    margin-right: initial;
  }
  .about_me_text_profile {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .about_me_text_profile h2 {
    text-align: center;
    margin-top: 50px;
  }
  .about_me_text_profile h3 {
    text-align: center;
    display: block;
  }
  /* Profile */
  .profile {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile_by {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 700px;
  }
  .profile_by_sp {
    display: block;
  }
  .profile_by_sp_top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .profile_by_year {
    display: none;
  }
  .profile_by_2005, .profile_by_2009, .profile_by_2013, .profile_by_2014, .profile_by_2015, .profile_by_2019, .profile_by_2020, .profile_by_2021 {
    position: initial;
    max-width: 785px;
    margin: 0 auto;
  }
  .profile_by_2005_dotted, .profile_by_2009_dotted, .profile_by_2013_dotted, .profile_by_2014_dotted, .profile_by_2015_dotted, .profile_by_2019_dotted, .profile_by_2020_dotted, .profile_by_2021_dotted {
    display: none;
  }
  .profile_by_2005_dotted_sp, .profile_by_2009_dotted_sp, .profile_by_2013_dotted_sp, .profile_by_2014_dotted_sp, .profile_by_2015_dotted_sp, .profile_by_2019_dotted_sp, .profile_by_2020_dotted_sp, .profile_by_2021_dotted_sp {
    margin-left: 8px;
  }
  .profile_by_2005_dotted_sp img, .profile_by_2009_dotted_sp img, .profile_by_2013_dotted_sp img, .profile_by_2014_dotted_sp img, .profile_by_2015_dotted_sp img, .profile_by_2019_dotted_sp img, .profile_by_2020_dotted_sp img, .profile_by_2021_dotted_sp img {
    background-repeat: repeat-x;
    max-width: 602px;
  }
  .profile_by_2005_text, .profile_by_2009_text, .profile_by_2013_text, .profile_by_2014_text, .profile_by_2015_text, .profile_by_2019_text, .profile_by_2020_text, .profile_by_2021_text {
    position: initial;
  }
  .profile_by_2005_img, .profile_by_2009_img, .profile_by_2013_img, .profile_by_2014_img, .profile_by_2015_img, .profile_by_2019_img, .profile_by_2020_img, .profile_by_2021_img {
    position: initial;
    text-align: end;
    width: 100%;
  }
  .profile_by_2015_img img {
    margin-top: 35px;
  }
  .profile_by_2021 {
    padding-bottom: 70px;
  }
  .profile_by_text {
    width: 100%;
    margin-bottom: 20px;
  }
  /* Favorite */
  .favorite {
    width: 100%;
    margin: 0 auto;
  }
  /* Works */
  .works {
    width: 100%;
    margin: 260px auto 0;
  }
  .works ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .works ul li {
    margin-top: 10px;
  }
  .more {
    margin-top: 50px;
    margin-right: 30px;
    line-height: 12px;
  }
  .more img {
    width: 120px;
  }
  /*  Service */
  .servise {
    width: 100%;
    margin: 260px auto 0;
  }
  .servise_menu {
    display: block;
    margin: 0 auto;
    max-width: 500px;
  }
  .servise_menu_col1 {
    padding-bottom: 25px;
    margin: 0 auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .servise_menu_col1_index:nth-child(1) {
    margin-top: 50px;
  }
}
/* 768px以下の場合 */
@media screen and (max-width: 768px) {
  /* Message */
  .message_2_text_sp {
    margin: 50px 30px 0;
  }
  /* Profile */
  .profile {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile_by {
    max-width: 600px;
  }
  .profile_by_2005_dotted_sp img, .profile_by_2009_dotted_sp img, .profile_by_2013_dotted_sp img, .profile_by_2014_dotted_sp img, .profile_by_2015_dotted_sp img, .profile_by_2019_dotted_sp img, .profile_by_2020_dotted_sp img, .profile_by_2021_dotted_sp img {
    max-width: 500px;
  }
}
/* 654px以下の場合 */
@media screen and (max-width: 654px) {
  /* Message */
  .message_waku {
    height: 700px;
    padding: 30px 0 0 0;
  }
  .message_waku_inner {
    text-align: left;
  }
  .message_waku_sq1 {
    top: 0;
    left: 0;
  }
  .message_waku_sq1_2 {
    top: 620px;
  }
  .message_waku_sq2 {
    right: 0;
    top: 0;
  }
  .message_waku_sq2_4 {
    top: 620px;
  }
  .message_2_text_sp {
    margin: 50px 30px 0;
  }
  .message_hito {
    top: 55px;
    left: 100px;
  }
  /* about */
  .about_matoi_index_border_sp img, .about_me_index_border_sp img {
    max-width: 290px;
    margin-right: 5px;
  }
  .about_me_index_border_sp img {
    margin-right: 0;
    margin-left: 5px;
  }
  /* Profile */
  .profile {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile_by {
    max-width: 450px;
  }
  .profile_by_2005_dotted_sp img, .profile_by_2009_dotted_sp img, .profile_by_2013_dotted_sp img, .profile_by_2014_dotted_sp img, .profile_by_2015_dotted_sp img, .profile_by_2019_dotted_sp img, .profile_by_2020_dotted_sp img, .profile_by_2021_dotted_sp img {
    max-width: 350px;
  }
  /* favorite */
  .favorite_six1, .favorite_six2 {
    display: none;
  }
  .favorite_six3, .favorite_six4, .favorite_six5 {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
  }
  .favorite_six3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
  }
  .favorite_six4, .favorite_six5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
  }
  .favorite_col, .favorite_col1 {
    width: 50%;
    min-height: 399px;
  }
  .favorite_col {
    margin-right: 8px;
  }
  /* Servise */
  .servise_list {
    display: block;
    margin: 0 auto;
    max-width: 363px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .servise_col {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 0 1px;
    margin: 0 auto 12px;
    min-width: 333px;
  }
  .servise_col:nth-child(3) {
    margin: 0 auto;
  }
  .servise_col_index {
    margin: initial;
  }
}
/* 557px以下の場合 */
@media screen and (max-width: 557px) {
  /* Message */
  .message_2_text_sp {
    margin: 40px 30px 0;
  }
  .message_hito {
    top: 40px;
    left: 100px;
  }
  /* About */
  .about_content {
    max-width: 420px;
  }
  .about_matoi_index {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .about_matoi_index_border_sp_3, .about_matoi_index_border_1 {
    display: none;
  }
  .about_matoi_index_border_sp_2 {
    display: block;
  }
  .about_matoi_index_tja {
    font-size: 1.38rem;
  }
  .about_matoi_text_index h5 {
    margin-left: 120px;
  }
  .about_me_text_profile h2 {
    font-size: 1.9rem;
  }
  .about_me_text_profile h3 {
    font-size: 1.2rem;
  }
  /* Profile */
  .profile {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile_by {
    max-width: 350px;
  }
  .profile_by_2005_dotted_sp img, .profile_by_2009_dotted_sp img, .profile_by_2013_dotted_sp img, .profile_by_2014_dotted_sp img, .profile_by_2015_dotted_sp img, .profile_by_2019_dotted_sp img, .profile_by_2020_dotted_sp img, .profile_by_2021_dotted_sp img {
    max-width: 310px;
  }
}
/* 492px以下の場合 */
@media screen and (max-width: 492px) {
  /* Message */
  .message_waku {
    height: 880px;
  }
  .message_waku_sq1, .message_waku_sq2 {
    top: 0;
  }
  .message_waku_sq1_2 {
    top: 800px;
  }
  .message_waku_sq2_4 {
    top: 800px;
  }
  .message_2_title_sp {
    font-size: 3.75rem;
    margin-top: -122px;
    margin-bottom: 60px;
  }
  .message_2_text_sp {
    margin: 50px 20px 0;
    line-height: 32px;
  }
  .message_hito {
    top: 30px;
    left: 85px;
  }
}
/* 417px以下の場合 */
@media screen and (max-width: 417px) {
  /* Message */
  .message_2_text_sp {
    margin: 40px 20px 0;
    line-height: 31px;
  }
  .message_hito {
    top: 30px;
    left: 35px;
  }
  /* About */
  .about_content {
    max-width: 360px;
  }
  .about_matoi_index {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .about_matoi_index_border_sp_3, .about_matoi_index_border_sp_2 {
    display: none;
  }
  .about_matoi_index_border_sp_1 {
    display: block;
  }
  .about_matoi_index_border_sp_1 img {
    max-width: 105px;
  }
  .about_matoi_index_tja {
    font-size: 1.38rem;
  }
  .about_matoi_text_index h5 {
    margin-left: 65px;
  }
  .about_me_text_profile ul li {
    font-size: 0.98rem;
  }
  .about_me_text_profile_r {
    margin-left: 107px;
  }
  /* Profile */
  .profile {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .profile_by {
    max-width: 365px;
    padding: 0;
  }
  .profile_by_2005_dotted_sp img, .profile_by_2009_dotted_sp img, .profile_by_2013_dotted_sp img, .profile_by_2014_dotted_sp img, .profile_by_2015_dotted_sp img, .profile_by_2019_dotted_sp img, .profile_by_2020_dotted_sp img, .profile_by_2021_dotted_sp img {
    max-width: 280px;
  }
}
/* 390px以下の場合 */
@media screen and (max-width: 390px) {
  .top_sp {
    margin: 0 auto 120px;
  }
  .top_sp_txt {
    left: 10%;
    top: 20%;
  }
  .top_sp_txt img {
    width: 300px;
  }
  .top_sp_txt2 {
    left: 40%;
    top: 31%;
  }
  .message_waku {
    height: 950px;
  }
  .message_waku_sq1_2, .message_waku_sq1_4, .message_waku_sq2_2, .message_waku_sq2_4 {
    top: 869px;
  }
  .about_matoi {
    margin-bottom: 100px;
  }
  .about_matoi_index_border_sp img {
    max-width: 105px;
  }
  .about_me {
    width: 300px;
    margin: 0 auto 180px;
  }
  .about_me_index {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-line-pack: center;
        align-content: center;
    padding-left: 0;
  }
  .about_me_index_border_sp img {
    max-width: 134px;
  }
  .about_me_text {
    width: initial;
    display: block;
    margin: 30px auto 0;
  }
  .about_me_text p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: initial;
  }
  .about_me_text_profile {
    margin-top: 50px;
  }
  .about_me_text_profile h2 {
    font-size: 30px;
  }
  .about_me_text_profile h3 {
    font-size: 18px;
  }
  /* Profile */
  .profile_by {
    max-width: 350px;
  }
  .profile_by_2005_dotted_sp img, .profile_by_2009_dotted_sp img, .profile_by_2013_dotted_sp img, .profile_by_2014_dotted_sp img, .profile_by_2015_dotted_sp img, .profile_by_2019_dotted_sp img, .profile_by_2020_dotted_sp img, .profile_by_2021_dotted_sp img {
    max-width: 250px;
  }
  /* favorite */
  .favorite {
    width: 100%;
    margin: 0 auto;
  }
  .favorite_six3, .favorite_six4, .favorite_six5 {
    display: block;
    max-width: 328px;
    margin: 0 auto;
  }
  .favorite_col {
    margin: 12px 0;
    padding-top: 30px;
  }
  .favorite_col_img {
    margin-top: 0;
  }
  .favorite_col1 {
    padding-top: 30px;
  }
  .favorite_col, .favorite_col1 {
    width: 100%;
    min-height: 399px;
  }
}
/* ファイルのインポート
============================== */
/* service top
============================== */
/* class="cap" */
.cap {
  margin: 95px auto 140px;
}
.cap_waku {
  width: 100％;
  height: 260px;
  padding: 30px 0 0 50px;
  border: solid 40px #F3F1EA;
  background-color: #fff;
}
.cap_waku_inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cap_waku_inner h2 {
  font-size: 5rem;
  letter-spacing: 0.3rem;
}
.cap_waku_inner h4 {
  font-size: 14px;
  margin-left: 60px;
  margin-top: 20px;
  color: #707070;
}
.cap_waku_sq1 {
  position: absolute;
  top: 95px;
  left: 0;
}
.cap_waku_sq1_1, .cap_waku_sq2_3, .cap_waku_sq2_4, .cap_waku_sq1_2 {
  width: 40px;
  height: 40px;
  background-color: #80A69B;
}
.cap_waku_sq1_2 {
  position: relative;
  top: 180px;
}
.cap_waku_sq2 {
  position: absolute;
  top: 95px;
  right: 0;
}
.cap_waku_sq2_4 {
  position: relative;
  top: 180px;
}

/* class="content" */
.top-rside_ig {
  margin-left: 20px;
}

.content {
  margin: 0 auto;
}
.content h3 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 120px;
  line-height: 36px;
}

.service {
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 280px;
}
.service_1, .service_2, .service_3 {
  height: 210px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service_1_index, .service_2_index, .service_3_index {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 2.88rem;
  color: #fff;
  margin-left: -29px;
  text-align: center;
}
.service_1_index_b, .service_2_index_b, .service_3_index_b {
  font-size: 4.12rem;
}
.service_1_img, .service_2_img, .service_3_img {
  background-color: #fff;
  border-radius: 50%;
  margin-top: 34px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.service_1_img img, .service_2_img img, .service_3_img img {
  margin: 18px 13px 18px 22px;
  width: 110px;
}
.service_1_text, .service_2_text, .service_3_text {
  max-width: 580px;
  margin-left: 24px;
  margin-top: 55px;
  line-height: 28px;
  text-align: left;
}
.service_1, .service_3 {
  background-color: #E0DCC9;
}
.service_2 {
  background-color: #F3F1EA;
}

.flow {
  width: 100%;
  padding-bottom: 160px;
  background-color: #F3F1EA;
  margin: 0 auto;
}
.flow_title, .price_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: -35px;
  margin-bottom: 100px;
}
.flow_title li, .price_title li {
  font-size: 2.8rem;
  border: solid 3px #E0DCC9;
  background-color: #fff;
  width: 70px;
  height: 72px;
  margin-right: 5px;
  display: table;
  text-align: center;
}
.flow_title li:first-child, .price_title li:first-child {
  background-color: #80A69B;
  color: #fff;
  border: none;
}
.flow_title li:last-child, .price_title li:last-child {
  margin-right: 0;
}
.flow_text {
  margin: 60px 0 0 100px;
  line-height: 40px;
}
.flow_text_p {
  color: #B1784B;
}
.flow_list {
  max-width: 1000px;
  margin: 0 auto;
}
.flow_list_l {
  margin-left: 135px;
  margin-top: 55px;
}
.flow_list_l ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.flow_list_l_line {
  position: relative;
  top: -55px;
  left: -135px;
  z-index: -1;
}
.flow_list_l_line img {
  height: 289px;
}
.flow_list_l_sp {
  display: none;
}
.flow_list_l_nam, .flow_list_03_nam, .flow_list_r_nam {
  font-size: 2.5rem;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border: 7px solid #80A69B;
  color: #80A69B;
  display: table;
  text-align: center;
  padding: 11px 24px 14px 24px;
  margin-right: 20px;
}
.flow_list_l_index, .flow_list_r_index {
  font-size: 1.4rem;
  color: #80A69B;
  margin-top: 30px;
  text-align: left;
}
.flow_list_l_contact {
  background-color: #000;
  height: 30px;
  color: #fff;
  padding: 2px 18px 10px;
  margin-left: 30px;
  margin-top: 35px;
}
.flow_list_l_text, .flow_list_r_text {
  max-width: 600px;
  position: relative;
  left: 30px;
  top: -270px;
  text-align: left;
  color: #707070;
  line-height: 1.75;
}
.flow_list_r {
  margin-top: -55px;
}
.flow_list_r ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 315px;
  top: -125px;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  max-width: 480px;
}
.flow_list_r_line, .flow_list_08_line, .flow_list_06_line {
  position: relative;
  left: 690px;
  top: -180px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.flow_list_r_line img, .flow_list_08_line img, .flow_list_06_line img {
  height: 289px;
}
.flow_list_r_sp {
  display: none;
}
.flow_list_r_nam {
  padding: 8px 21px 17px 21px;
}
.flow_list_r_index_03 {
  text-align: left;
}
.flow_list_r_img, .flow_list_07_img, .flow_list_09_img, .flow_list_06_img {
  width: 50px;
  margin-left: 15px;
  margin-top: 17px;
}
.flow_list_r_text {
  left: 345px;
  top: -395px;
}
.flow_list_03 {
  margin-top: -370px;
}
.flow_list_03_nam {
  padding: 11px 21px 14px 21px;
}
.flow_list_04 {
  margin-top: -65px;
}
.flow_list_05 {
  margin-top: -370px;
}
.flow_list_06 {
  margin-top: -90px;
}
.flow_list_06_img {
  margin-top: 30px;
}
.flow_list_06_line {
  left: 740px;
}
.flow_list_07 {
  margin-top: -365px;
}
.flow_list_07_img, .flow_list_09_img {
  margin-top: 26px;
}
.flow_list_08 {
  margin-top: -10px;
}
.flow_list_08_line {
  left: 570px;
}
.flow_list_09 {
  margin-top: -260px;
}
.flow_list_09_text {
  max-width: 600px;
  position: relative;
  left: 30px;
  top: 20px;
  text-align: left;
  color: #707070;
  line-height: 1.75;
}

.price {
  margin-top: 280px;
}
.price_title li {
  font-size: 2.8rem;
  border: solid 3px #E0DCC9;
  background-color: #fff;
  width: 70px;
  height: 72px;
  margin-right: 5px;
  display: table;
  text-align: center;
}
.price_title li:first-child {
  background-color: #80A69B;
  color: #fff;
  border: none;
}
.price_title li:last-child {
  margin-right: 0;
}
.price_list_waku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 840px;
  margin: 0 auto;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.price_list_waku li {
  width: 300px;
}
.price_list_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 840px;
  margin: 0 auto;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: relative;
  top: -175px;
  text-align: center;
}
.price_list_text li {
  width: 300px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.12rem;
  margin-top: -20px;
}
.price_list_text li:first-child {
  margin-top: 0;
}

/* responsive
================================ */
/* 999px以下の場合 */
@media screen and (max-width: 999px) {
  .cap_waku {
    padding: 30px 0 0 0;
  }
  .cap_waku_inner {
    display: block;
    margin: 10px auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
  }
  .cap_waku_inner h2 {
    font-size: 3rem;
  }
  .cap_waku_inner h4 {
    margin: 0 auto;
  }
  .cap_waku_sq1_2, .cap_waku_sq2_4 {
    top: 180px;
  }
  .content h3 {
    font-size: 1.1rem;
  }
  .flow {
    height: 1900px;
  }
  .flow_title, .price_title {
    margin-bottom: 60px;
  }
  .flow_title li, .price_title li {
    width: 55px;
    padding: 0 12px;
    font-size: 2.2rem;
    height: 0;
  }
  .flow_title li:first-child, .price_title li:first-child {
    padding: 3px 12px;
  }
  .flow_list {
    max-width: 840px;
    margin: 0 auto;
    padding-right: 12px;
    height: auto;
  }
  .flow_list_l {
    margin-bottom: 30px;
    margin-left: 50px;
    height: 400px;
  }
  .flow_list_l_nam, .flow_list_r_nam, .flow_list_03_nam {
    font-size: 2rem;
    border: 4px solid #80A69B;
    padding: 7px 19px 11px 19px;
  }
  .flow_list_l_index, .flow_list_r_index {
    margin-top: 23px;
  }
  .flow_list_l_contact {
    margin-top: 25px;
  }
  .flow_list_l_line {
    display: none;
  }
  .flow_list_l_sp {
    display: block;
    margin-left: 40px;
  }
  .flow_list_l_sp img {
    height: 160px;
  }
  .flow_list_l_text, .flow_list_r_text {
    position: static;
    margin-top: -147px;
    margin-left: 100px;
  }
  .flow_list_r {
    margin-top: -130px;
    margin-bottom: 30px;
    margin-left: -265px;
    height: 400px;
  }
  .flow_list_r_nam {
    font-size: 2rem;
    border: 4px solid #80A69B;
    padding: 7px 16px 11px 16px;
  }
  .flow_list_r_line, .flow_list_06_line, .flow_list_08_line {
    display: none;
  }
  .flow_list_r_sp {
    display: block;
    margin-top: -125px;
    margin-left: 355px;
  }
  .flow_list_r_sp img {
    height: 160px;
  }
  .flow_list_r_img, .flow_list_06_img, .flow_list_07_img, .flow_list_09_img {
    width: 30px;
  }
  .flow_list_r_text {
    margin-top: -160px;
    margin-left: 415px;
  }
  .flow_list_03 {
    margin-top: -320px;
  }
  .flow_list_03_nam {
    padding: 7px 17px 11px 17px;
  }
  .flow_list_04_img {
    margin-top: 22px;
  }
  .flow_list_05 {
    margin-top: -330px;
  }
  .flow_list_06 {
    margin-top: -100px;
  }
  .flow_list_07 {
    margin-top: -325px;
  }
  .flow_list_08 {
    margin-top: -150px;
  }
  .flow_list_09 {
    margin-top: -392px;
  }
  .flow_list_09_img {
    width: 30px;
    margin-top: 23px;
  }
  .price {
    margin-top: 220px;
  }
}
/* 835px以下の場合 */
@media screen and (max-width: 835px) {
  .content h3 {
    max-width: 655px;
    margin: 0 auto;
    margin-bottom: 90px;
  }
  .service {
    max-width: 760px;
  }
  .service_1, .service_2, .service_3 {
    height: auto;
  }
  .service_1_img, .service_2_img, .service_3_img {
    margin: auto 8px;
  }
  .service_1_text, .service_2_text, .service_3_text {
    max-width: 480px;
    margin: 30px 20px;
    line-height: 28px;
  }
  .price_list_waku {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 620px;
    margin: 0 auto;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .price_list_waku li {
    width: 270px;
  }
  .price_list_text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 620px;
    margin: 0 auto;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .price_list_text li {
    width: 270px;
    margin-top: -3px;
  }
  .price_list_text li:first-child {
    margin-top: 12px;
  }
}
/* 654px以下の場合 */
@media screen and (max-width: 654px) {
  .cap {
    margin-bottom: 100px;
  }
  .content h3 {
    padding: 0 20px;
    max-width: 500px;
    font-size: 1rem;
  }
  .service {
    padding: 0 10px;
  }
  .service_1, .service_2, .service_3 {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: block;
  }
  .service_1_index, .service_2_index, .service_3_index {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    margin: 0 auto;
    text-align: center;
    font-size: 2.5rem;
    padding: 20px 0 0;
  }
  .service_1_index_b, .service_2_index_b, .service_3_index_b {
    font-size: 3.5rem;
  }
  .service_1_img, .service_2_img, .service_3_img {
    max-width: 136px;
    background-color: #fff;
    border-radius: 50%;
    margin: 15px auto;
  }
  .service_1_img img, .service_2_img img, .service_3_img img {
    margin: 0 auto;
    padding: 16px 0 16px 8px;
  }
  .service_1_text, .service_2_text, .service_3_text {
    max-width: 100%;
    padding-bottom: 30px;
    margin-bottom: 0;
    line-height: 36px;
  }
  .flow {
    height: 1950px;
    padding: 0 10px;
  }
  .flow_list {
    max-width: 654px;
  }
  .flow_list_l {
    margin: 0 auto;
  }
  .flow_list_l ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flow_list_l_nam, .flow_list_r_nam, .flow_list_03_nam {
    font-size: 1.85rem;
    border: 5px solid #80A69B;
    padding: 6px 18px 10px 18px;
  }
  .flow_list_l_index, .flow_list_r_index {
    font-size: 1.25rem;
    margin-top: 0;
  }
  .flow_list_l_contact {
    margin-top: 0;
  }
  .flow_list_l_sp {
    margin-left: 35px;
  }
  .flow_list_l_text, .flow_list_r_text {
    font-size: 0.94rem;
    margin-top: -160px;
    margin-left: 95px;
  }
  .flow_list_r {
    margin-left: -316px;
    margin-top: -80px;
  }
  .flow_list_r ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flow_list_r_nam {
    padding: 6px 16px 12px 16px;
  }
  .flow_list_r_index {
    font-size: 1.25rem;
    max-width: 240px;
  }
  .flow_list_r_img, .flow_list_06_img, .flow_list_07_img, .flow_list_09_img {
    width: 30px;
    margin-top: -10px;
  }
  .flow_list_r_sp {
    margin-left: 350px;
  }
  .flow_list_r_text {
    font-size: 0.94rem;
    margin-top: -165px;
    margin-left: 412px;
  }
  .flow_list_03 {
    margin-top: -336px;
  }
  .flow_list_03_nam {
    padding: 6px 15px 10px 15px;
  }
  .flow_list_04 {
    margin-top: -80px;
  }
  .flow_list_05 {
    margin-top: -333px;
  }
  .flow_list_07 {
    margin-top: -325px;
  }
  .flow_list_08 {
    margin-top: -120px;
  }
  .flow_list_09 {
    margin-top: -385px;
  }
  .flow_list_09_img {
    margin-top: -7px;
  }
  .flow_list_09_text {
    margin-top: 7px;
  }
  .price h3 {
    max-width: 655px;
  }
  .price_list_waku {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .price_list_waku li {
    width: 370px;
    margin-bottom: 70px;
  }
  .price_list_text {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .price_list_text li {
    width: 370px;
    margin-top: 380px;
  }
  .price_list_text li:first-child {
    margin-top: -546px;
  }
}
/* 430px以下の場合 */
@media screen and (max-width: 430px) {
  .flow {
    height: 2480px;
  }
  .flow_list_l ul {
    max-width: 360px;
  }
  .flow_list_l_nam, .flow_list_r_nam, .flow_list_03_nam {
    margin-right: 12px;
    font-size: 1.6rem;
    border: 3px solid #80A69B;
    padding: 6px 16px 10px 15px;
  }
  .flow_list_l_sp {
    margin-left: 30px;
  }
  .flow_list_l_sp img {
    height: 250px;
  }
  .flow_list_l_text, .flow_list_r_text {
    margin-top: -245px;
    margin-left: 75px;
  }
  .flow_list_r {
    margin-left: -316px;
    margin-top: -25px;
  }
  .flow_list_r ul {
    max-width: 360px;
  }
  .flow_list_r_nam {
    padding: 6px 14px 10px 13px;
  }
  .flow_list_r_img, .flow_list_06_img, .flow_list_07_img, .flow_list_09_img {
    margin-left: 10px;
  }
  .flow_list_r_sp {
    margin-left: 345px;
  }
  .flow_list_r_sp img {
    height: 270px;
  }
  .flow_list_r_text {
    margin-top: -265px;
    margin-left: 390px;
  }
  .flow_list_03 {
    margin-top: -225px;
  }
  .flow_list_03_nam {
    padding: 6px 14px 10px 14px;
  }
  .flow_list_04 {
    margin-top: -25px;
  }
  .flow_list_04_sp img {
    height: 270px;
  }
  .flow_list_05 {
    margin-top: -225px;
  }
  .flow_list_06_sp img {
    height: 295px;
  }
  .flow_list_06_text {
    margin-top: -290px;
  }
  .flow_list_07 {
    margin-top: -200px;
  }
  .flow_list_07_index {
    font-size: 1.12rem;
    text-align: left;
  }
  .flow_list_07_text {
    margin-top: -235px;
  }
  .flow_list_08 {
    margin-top: -120px;
  }
  .flow_list_08_sp {
    display: none;
  }
  .flow_list_08_text {
    margin-top: -120px;
  }
  .flow_list_09 {
    margin-top: -400px;
  }
  .flow_list_09_img {
    margin-top: -7px;
  }
  .flow_list_09_text {
    margin-top: -10px;
    margin-left: 45px;
    font-size: 0.94rem;
    max-width: 300px;
  }
  .price_list_waku li {
    width: 290px;
  }
  .price_list_text {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .price_list_text li {
    width: 370px;
    margin-top: 298px;
    font-size: 1rem;
  }
  .price_list_text li:first-child {
    margin-top: -428px;
  }
}
/* 390px以下の場合 */
@media screen and (max-width: 390px) {
  .content h3 {
    max-width: 390px;
  }
  .service_1_text, .service_2_text, .service_3_text {
    margin-right: 12px;
    margin-left: 12px;
  }
  .flow {
    height: 2400px;
  }
  .flow_list {
    max-width: 390px;
    margin: 0 auto;
  }
  .flow_list_l_nam, .flow_list_r_nam, .flow_list_03_nam {
    font-size: 1.45rem;
    border: 3px solid #80A69B;
    margin-right: 10px;
  }
  .flow_list_l_index, .flow_list_r_index {
    font-size: 1.1rem;
    max-width: 230px;
  }
  .flow_list_l_contact {
    margin-top: 0;
  }
  .flow_list_l_sp {
    margin-left: 31px;
  }
  .flow_list_l_text, .flow_list_r_text {
    margin-top: -240px;
    margin-left: 70px;
    font-size: 0.9rem;
  }
  .flow_list_r_index {
    font-size: 1.1rem;
    text-align: left;
    max-width: 239px;
  }
  .flow_list_r_img, .flow_list_06_img, .flow_list_07_img, .flow_list_09_img {
    margin-left: 5px;
  }
  .flow_list_r_sp {
    margin-left: 347px;
  }
  .flow_list_r_text {
    margin-left: 385px;
    margin-top: -270px;
  }
  .flow_list_03 {
    margin-top: -230px;
  }
  .flow_list_04 {
    margin-top: -40px;
  }
  .flow_list_04_img {
    margin-left: 15px;
  }
  .flow_list_05 {
    margin-top: -230px;
  }
  .flow_list_05_index {
    font-size: 1rem;
  }
  .flow_list_06_index, .flow_list_07_index {
    font-size: 1rem;
    max-width: 210px;
  }
  .flow_list_06_img, .flow_list_07_img, .flow_list_09_img {
    margin-left: 15px;
  }
  .flow_list_06_text {
    margin-top: -295px;
  }
  .flow_list_07 {
    margin-top: -225px;
  }
  .flow_list_08 {
    margin-top: -120px;
  }
  .flow_list_08_text {
    margin-top: -125px;
  }
  .flow_list_09 {
    margin-top: -400px;
  }
  .flow_list_09_text {
    margin-top: -20px;
    margin-left: 40px;
    font-size: 0.9rem;
    max-width: 275px;
  }
}