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

header {
  width: 100vw;
  height: 100vh;
}

.header_bg {
  transition: transform 0.1s ease-out;
  transform-origin: bottom center;
  position: relative;
  width: 80%;
  height: 100%;
  background: url(../image/header_bg.png);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  margin: 0 0 0 auto;
  animation: fadeIn backwards 3s cubic-bezier(0.33, 1, 0.68, 1);
  animation-delay: 3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.title {
  position: absolute;
  color: #fff;
  padding: 4rem 7rem 2rem;
  background: #39e5d1;
  margin-top: 35rem;
  z-index: 1;
}
.title h1 {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: 6rem;
  animation: animation1 forwards 3s;
  /*名前 終了時の状態 アニメーションの秒数 ループの回数 進行度 開始までの秒数 アニメーションの向き*/
  white-space: nowrap;
  overflow: hidden;
}
@keyframes animation1 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.title hr {
  border: solid 2px #fff;
  margin-left: -7rem;
  width: 50%;
  opacity: 1;
  animation: animation1 forwards 3s;
  white-space: nowrap;
  overflow: hidden;
}
.title p {
  font-size: 2rem;
  text-align: right;
  margin-top: 1rem;
  font-family: "Kiwi Maru", serif;
  font-style: normal;
  letter-spacing: 0.5em;
  color: #fff;
  animation: animation1 forwards 3s;
  white-space: nowrap;
  overflow: hidden;
}

.sub_title {
  position: absolute;
  padding: 4rem 0 3rem 4rem;
  margin-top: 8rem;
  z-index: 1;
}
.sub_title h1 {
  color: #383838;
  background: rgba(255, 255, 255, 0.662745098);
  letter-spacing: 0.2em;
  line-height: 5rem;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
  overflow: hidden;
  animation: animation1 backwards 3s normal;
  /*名前 終了時の状態 アニメーションの秒数 ループの回数 進行度 開始までの秒数 アニメーションの向き*/
  animation-delay: 3s;
}

@media (max-width: 1279px) {
  header {
    height: 550px;
  }
}
@media (max-width: 1023px) {
  header {
    height: 450px;
  }
}
@media (max-width: 767px) {
  header {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
  }
  .header_bg {
    background: url(../image/header_bgtb.png);
    background-position: right center;
    background-size: cover;
    width: 100%;
    height: 100%;
  }
  .title {
    padding: 0.2rem 0.5rem;
    margin-top: 1rem;
  }
  .title h1 {
    font-size: 0.65rem;
    margin-bottom: 0.1rem;
    text-align: center;
  }
  .title hr {
    border: solid 1px #fff;
    margin-left: -3.5rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    text-align: center;
  }
  .title p {
    font-size: 0.24rem;
    margin-top: 0.1rem;
    margin-bottom: 0;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .sub_title {
    margin-top: 7rem;
    z-index: 10;
    width: 80%;
    padding-left: 0;
    padding-bottom: 0;
  }
  .sub_title h1 {
    letter-spacing: 0.2em;
    line-height: 0.6rem;
    font-size: 0.26rem;
    text-align: center;
    animation-timing-function: ease-out;
  }
}
.menu-btn {
  display: none;
  position: fixed;
  top: 2rem;
  right: 3rem;
  z-index: 30;
  transition: all 0.5s ease;
}
.menu-btn:active {
  transform: scale(0.6);
}
.menu-btn span {
  display: block;
  width: 5rem;
  height: 0.4rem;
  background: #39e5d1;
  margin: 2rem auto;
  border-radius: 6px;
}
.menu-btn p {
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  color: #39e5d1;
  margin-top: -1rem;
}

.menu-btn-cross {
  list-style: none;
  position: absolute;
  top: 4rem;
  right: 4rem;
  transition: all 0.5s ease;
}
.menu-btn-cross img {
  width: 4rem;
}
.menu-btn-cross:active {
  transform: scale(0.6);
}

.menu {
  width: 100%;
  height: 100%;
  background: rgba(57, 229, 209, 0.7607843137);
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  z-index: 9999;
  padding: 0 50px;
  opacity: 0;
  transition: opacity 0.5s, display 0.5s;
  transition-behavior: allow-discrete;
}

.menu.show {
  display: block;
  opacity: 1;
  transition: opacity 0.5s;
}
@starting-style {
  .menu.show {
    opacity: 0;
  }
}

.menu-item {
  font-weight: bold;
  margin: 40px 20px 0;
  list-style: none;
}
.menu-item a {
  text-decoration: none;
  color: #fff;
  font-family: "Quicksand", serif;
  font-size: 2.5rem;
  transition: 0.5s;
}
.menu-item a:hover {
  color: #cef6f2;
}
.menu-item a img {
  width: 25px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.drop-menu {
  margin-left: 30px;
  display: flex;
  margin-top: 10px;
  list-style: none;
}
.drop-menu .interval {
  border-left: #383838 solid 2px;
  border-right: #383838 solid 2px;
}
.drop-menu li {
  padding: 0 20px;
}
.drop-menu li a {
  font-size: 1.8rem;
  font-family: "M PLUS 1", serif;
  color: #383838;
}

@media (max-width: 767px) {
  .menu-btn {
    top: 20px;
    right: 30px;
    z-index: 30;
  }
  .menu-btn span {
    width: 40px;
    height: 4px;
    margin: 15px auto;
    border-radius: 5px;
  }
  .menu-btn p {
    font-size: 10px;
    margin-top: -5px;
  }
  .menu-btn-cross {
    top: 10px;
    right: 30px;
  }
  .menu-btn-cross img {
    width: 40px;
  }
  .menu {
    padding: 0 30px;
  }
  .menu-item {
    margin: 0.2rem 0.1rem;
  }
  .menu-item a {
    font-size: 0.5rem;
  }
  .menu-item a img {
    width: 25px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .drop-menu {
    display: none;
  }
}
.top {
  width: 100%;
  height: auto;
  padding: 20rem 0 5rem;
  background: linear-gradient(-15deg, #cef6f2 50%, #fff 0);
}
.top .container {
  margin-top: 5rem;
}
.top .container .row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .container h3 {
  margin: 10rem 0 4rem;
  padding-left: 10rem;
}
.top .container h3 span {
  font-size: 4rem;
  border-left: 5px solid #ffc310;
  border-bottom: 5px dotted #ffc310;
  letter-spacing: 0.3em;
  padding-left: 2rem;
}
.top .container .ossm {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .container ul {
  border: 15px solid #39e5d1;
  border-radius: 20px;
  padding: 5rem 10rem;
  background: #fff;
  list-style: none;
}
.top .container ul li {
  font-size: 3rem;
  font-family: "Kiwi Maru", serif;
  line-height: 5rem;
  padding-left: 4rem;
  background: url(../image/icon_right.png);
  background-size: 2.6rem;
  background-position: left;
  background-repeat: no-repeat;
}
.top .container .col-md-6 .top_title h2 {
  color: #383838;
  font-size: 3.2rem;
  letter-spacing: 0.25em;
  line-height: 7rem;
}
.top .container .col-md-6 .top_title h2 span {
  font-size: 6rem;
  color: #ffc310;
}
.top .container .col-md-6 img {
  padding-right: 4rem;
  box-shadow: -5rem -5rem 1px #39e5d1;
}
.top .container .col-md-8 {
  padding-right: 5rem;
  padding-left: 8rem;
}
.top .container .col-md-8 .top_text {
  background-image: radial-gradient(#ffffff, transparent);
}
.top .container .col-md-8 .top_text p {
  margin-bottom: 2rem;
}
.top .container .col-md-8 .top_text p span {
  font-size: 1.8rem;
  font-weight: bolder;
}
.top .container .col-md-4 img {
  box-shadow: 3rem 3rem 1px #39e5d1;
}

@media (max-width: 767px) {
  .top {
    padding: 1rem 0 0.5rem;
    background: linear-gradient(-45deg, #cef6f2 50%, #fff 0);
  }
  .top .container {
    margin-top: 0.5rem;
  }
  .top .container h3 {
    margin: 0.4rem 0 0.2rem;
    padding-left: 0;
  }
  .top .container h3 span {
    font-size: 0.3rem;
    border-left: 5px solid #ffc310;
    padding-left: 0.2rem;
  }
  .top .container ul {
    border: 10px solid #39e5d1;
    padding: 0.3rem 0.2rem;
  }
  .top .container ul li {
    font-size: 0.3rem;
    line-height: 0.4rem;
    margin-bottom: 0.2rem;
    padding-left: 0.4rem;
    background-size: 0.3rem;
  }
  .top .container .col-md-6 {
    padding-left: 0.4rem;
    padding-right: 0;
  }
  .top .container .col-md-6 .top_title {
    margin-bottom: 0.5rem;
  }
  .top .container .col-md-6 .top_title h2 {
    letter-spacing: 0.3em;
    line-height: 0.52rem;
    font-size: 0.4rem;
    margin-bottom: 0.15rem;
  }
  .top .container .col-md-6 .top_title h2 span {
    font-size: 0.8rem;
  }
  .top .container .col-md-6 img {
    padding-right: 0;
    box-shadow: -0.5rem 0.5rem 1px #39e5d1;
  }
  .top .container .col-md-8 {
    padding-right: 10px;
    padding-left: 30px;
  }
  .top .container .col-md-8 .top_text p {
    margin-bottom: 0.2rem;
  }
  .top .container .col-md-8 .top_text p span {
    font-size: 0.26rem;
  }
  .top .container .col-md-4 img {
    margin-right: 0.3rem;
    display: block;
    box-shadow: 0.3rem 0.3rem 1px #39e5d1;
  }
}
.works {
  width: 100%;
  position: relative;
  padding-bottom: 5rem;
}
.works .contents {
  padding: 10rem;
  z-index: 10;
}
.works .contents .col-sm-12 .site-img {
  width: 100%;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.works .contents .col-sm-12 .site-img a {
  position: relative;
}
.works .contents .col-sm-12 .site-img a img {
  transition: all 1s ease;
}
.works .contents .col-sm-12 .site-img a:hover img {
  opacity: 0.5;
  transform: scale(1.2);
}
.works .contents .site {
  margin: 2rem 0 5rem;
}
.works .contents .site p {
  margin: 0;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .works {
    padding-bottom: 1rem;
  }
  .works .contents {
    padding: 0.3rem 0.2rem 1rem;
  }
  .works .contents .site {
    margin: 0.1rem 0 0.5rem;
  }
  .works .contents .site p {
    margin: 0;
    font-size: 0.28rem;
  }
}
.condition {
  width: 100%;
  background: #cef6f2;
  position: relative;
  padding-bottom: 5rem;
}
.condition .contents {
  padding: 10rem;
}
.condition .contents .row {
  margin-bottom: 10rem;
}
.condition .contents .col-md-6 {
  padding: 3rem;
}
.condition .contents .col-md-6 h3 {
  display: inline-block;
  background: #fff;
  border-bottom: solid 2px #39e5d1;
  padding: 0.5rem 1rem;
  margin-bottom: 3rem;
  font-size: 3rem;
}
.condition .right {
  text-align: right;
}
.condition img {
  width: 90%;
}
.condition .img_1 {
  box-shadow: 5rem 5rem 1px #ffc310;
}
.condition .img_2 {
  box-shadow: -5rem -5rem 1px #39e5d1;
  margin-top: 5rem;
}

.price {
  text-align: center;
  margin: 5rem 10rem 0;
}
.price p {
  margin-bottom: 0;
}
.price h3 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  position: relative;
  display: inline-block;
  margin-bottom: 6rem;
}
.price h3:before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  display: inline-block;
  width: 8rem;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ffc310;
  border-radius: 2px;
}
.price table {
  margin: 5rem auto;
  font-family: "Noto Serif JP", serif;
}
.price table,
.price tr,
.price th,
.price td {
  padding: 1rem 2rem;
  letter-spacing: 0.13em;
  font-weight: bold;
}
.price table .th_1,
.price tr .th_1,
.price th .th_1,
.price td .th_1 {
  border: solid 3px #383838;
  font-size: 2.5rem;
  background: #ececec;
  color: #383838;
}
.price table .th_2_1,
.price tr .th_2_1,
.price th .th_2_1,
.price td .th_2_1 {
  border-top: 5px solid #ffc310;
  border-left: 5px solid #ffc310;
  border-bottom: 5px solid #fff;
  background: #ffc310;
}
.price table .th_2_2,
.price tr .th_2_2,
.price th .th_2_2,
.price td .th_2_2 {
  border-left: 5px solid #39e5d1;
  border-bottom: 5px solid #39e5d1;
  background: #39e5d1;
}
.price table .th_2_1 span,
.price table .th_2_2 span,
.price tr .th_2_1 span,
.price tr .th_2_2 span,
.price th .th_2_1 span,
.price th .th_2_2 span,
.price td .th_2_1 span,
.price td .th_2_2 span {
  display: inline-block;
  font-size: 2.5rem;
  color: #383838;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: pre;
}
.price table .border-top_1,
.price tr .border-top_1,
.price th .border-top_1,
.price td .border-top_1 {
  border-top: 5px solid #ffc310;
}
.price table .border-top_2,
.price tr .border-top_2,
.price th .border-top_2,
.price td .border-top_2 {
  border-top: 5px solid #39e5d1;
}
.price table .border-right_1,
.price tr .border-right_1,
.price th .border-right_1,
.price td .border-right_1 {
  border-right: 5px solid #ffc310;
}
.price table .border-right_2,
.price tr .border-right_2,
.price th .border-right_2,
.price td .border-right_2 {
  border-right: 5px solid #39e5d1;
}
.price table .border-bottom_1,
.price tr .border-bottom_1,
.price th .border-bottom_1,
.price td .border-bottom_1 {
  border-bottom: 5px solid #fff;
}
.price table .border-bottom_2,
.price tr .border-bottom_2,
.price th .border-bottom_2,
.price td .border-bottom_2 {
  border-bottom: 5px solid #39e5d1;
}
.price td {
  font-size: 2.2rem;
  border: solid 3px #383838;
  color: #383838;
  background: #fafafa;
}
.price td br {
  display: none;
}
.price .en {
  font-style: italic;
  font-size: 2.4rem;
  color: #222222;
}
.price .en span {
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  padding-left: 0.5rem;
}
.price .td_2 {
  background: #ececec;
}
.price .other {
  margin: 5rem auto 0;
  background: #fff;
  width: 70%;
}
.price .other p {
  padding: 1rem;
  text-align: left;
}

@media (max-width: 767px) {
  .condition {
    padding: 0;
  }
  .condition .contents {
    padding: 0.3rem 0.2rem 1rem;
  }
  .condition .contents .row {
    margin-bottom: 0.1rem;
  }
  .condition .contents .col-md-6 {
    padding: 0 0.2rem;
  }
  .condition .contents .col-md-6 .condition-text {
    margin-bottom: 0.5rem;
  }
  .condition .contents .col-md-6 h3 {
    border-bottom: solid 2px #39e5d1;
    padding: 0.05rem 0.1rem;
    margin-bottom: 0.15rem;
    font-size: 0.4rem;
  }
  .condition .contents .col-md-6 p {
    margin-bottom: 0.05rem;
  }
  .condition .img_1 {
    box-shadow: 0.5rem 0.5rem 1px #ffc310;
  }
  .condition .img_2 {
    box-shadow: -0.5rem -0.5rem 1px #39e5d1;
    margin-top: 0.55rem;
  }
  .price {
    margin: 0.3rem 0 0;
    padding: 0.3rem 0.2rem 1rem;
  }
  .price h3 {
    font-size: 0.45rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-indent: 0.3em;
  }
  .price h3:before {
    bottom: -0.3rem;
    width: 50px;
    height: 2px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ffc310;
    border-radius: 2px;
  }
  .price p {
    text-align: left;
  }
  .price table {
    margin: 1rem auto;
  }
  .price table,
  .price tr,
  .price th,
  .price td {
    padding: 0.2rem 0.15rem;
    letter-spacing: 0.2em;
  }
  .price table .th_1,
  .price tr .th_1,
  .price th .th_1,
  .price td .th_1 {
    font-size: 0.35rem;
  }
  .price table .th_2_1,
  .price table .th_2_2,
  .price tr .th_2_1,
  .price tr .th_2_2,
  .price th .th_2_1,
  .price th .th_2_2,
  .price td .th_2_1,
  .price td .th_2_2 {
    min-width: 0.8rem;
  }
  .price table .th_2_1 span,
  .price table .th_2_2 span,
  .price tr .th_2_1 span,
  .price tr .th_2_2 span,
  .price th .th_2_1 span,
  .price th .th_2_2 span,
  .price td .th_2_1 span,
  .price td .th_2_2 span {
    display: inline-block;
    font-size: 0.35rem;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: pre;
  }
  .price td {
    font-size: 0.28rem;
  }
  .price td br {
    display: block;
  }
  .price .en {
    font-size: 0.28rem;
  }
  .price .en span {
    font-size: 0.23rem;
    padding-left: 3px;
  }
  .price .other {
    margin: 0.3rem auto;
    width: 100%;
  }
  .price .other p {
    padding: 0.3rem;
  }
}
.skills {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.skills .contents {
  padding: 10rem;
  position: relative;
  z-index: 10;
}
.skills .skills_1,
.skills .skills_2 {
  font-size: 2.5rem;
  padding: 2rem 3rem;
  display: inline-block;
  margin-bottom: -20rem;
  margin-top: 10rem;
  margin-left: 5rem;
}
.skills .skills_1 {
  background: #ffc310;
  letter-spacing: 0.5rem;
}
.skills .skills_2 {
  background: #39e5d1;
  letter-spacing: 1rem;
}
.skills .container {
  padding: 5rem 0 0;
  border: solid 4px #383838;
  width: 70%;
  background: #cef6f2;
}
.skills ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.skills ul li {
  list-style: none;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.skills ul li img {
  width: 10rem;
}
.skills ul li p {
  margin: 2rem auto;
  font-size: 1.5rem;
}
.skills .other {
  margin: 5rem auto;
  background: #cef6f2;
  width: 70%;
}
.skills .other p {
  padding: 1rem;
}

@media (max-width: 767px) {
  .skills .contents {
    padding: 0.3rem 0.2rem 1rem;
  }
  .skills .skills_1,
  .skills .skills_2 {
    display: block;
    text-align: center;
    font-size: 0.4rem;
    margin: 0 auto -0.3rem;
    width: 75%;
    padding: 0.3rem;
  }
  .skills .skills_1 {
    letter-spacing: 0.05rem;
  }
  .skills .skills_2 {
    letter-spacing: 0.1rem;
  }
  .skills .container {
    padding: 0.7rem 0 0;
    border: none;
    width: 90%;
    margin-bottom: 0.3rem;
    background: none;
  }
  .skills ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .skills ul li {
    width: 50%;
    padding: 0.2rem;
  }
  .skills ul li p {
    font-size: 0.3rem;
    margin: 0.2rem 0 0;
  }
  .skills ul li img {
    width: 100px;
  }
  .skills ul li p {
    margin: 0.2rem auto;
    font-size: 0.3rem;
  }
  .skills .other {
    margin: 0.5rem auto;
    width: 100%;
  }
  .skills .other p {
    margin: 0;
    padding: 0.3rem;
  }
}
footer {
  background: #383838;
  padding-bottom: 5rem;
  position: relative;
}
footer .row {
  margin-bottom: 1rem;
}
footer .row .col-md-2 {
  padding-top: 5rem;
}
footer .row .col-md-2 .footer-menu a {
  text-decoration: none;
  color: #39e5d1;
  font-size: 2rem;
  font-family: "M PLUS 1", serif;
  transition: 0.5s;
}
footer .row .col-md-2 .footer-menu a:hover {
  color: #fff;
}
footer .row .col-md-2 .footer-drop-menu {
  padding-left: 0;
  margin-top: 3rem;
}
footer .row .col-md-2 .footer-drop-menu li {
  list-style: none;
  margin: 2rem 0;
}
footer .row .col-md-2 .footer-drop-menu li a {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
footer .row .col-md-2 .footer-drop-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* テキストの下端 */
  width: 0;
  height: 2px;
  background-color: #39e5d1;
  /* アンダーラインの色 */
  transition: width 0.4s ease;
}
footer .row .col-md-2 .footer-drop-menu li a:hover::after {
  width: 100%;
}
footer .copyright {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  text-align: right;
}
footer .copyright a {
  font-size: 1.5rem;
  color: #fff;
}
footer .copyright a:hover {
  color: #39e5d1;
}
footer .copyright p {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 0.3rem;
  }
  footer .row .col-md-2 {
    padding-top: 0.1rem;
  }
  footer .row .col-md-2 .footer-menu a {
    text-decoration: none;
    font-size: 0.45rem;
  }
  footer .row .col-md-2 .footer-drop-menu {
    margin-top: -0.8rem;
  }
  footer .row .col-md-2 .footer-drop-menu li {
    margin: 0;
    height: 0.6rem;
  }
  footer .row .col-md-2 .footer-drop-menu li a {
    font-size: 0.3rem;
  }
  footer .copyright {
    text-align: center;
    position: static;
    padding: 0 auto;
  }
  footer .copyright a {
    font-size: 0.4rem;
    color: #fff;
  }
  footer .copyright a:hover {
    color: #39e5d1;
  }
  footer .copyright p {
    font-size: 0.25rem;
  }
}
* {
  margin: 0;
  padding: 0;
}

.site-page {
  background: #cef6f2;
  padding: 5rem 1rem 0;
}
.site-page h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  text-align: center;
}
.site-page h1 span {
  font-size: 2.5rem;
}
.site-page .container {
  padding: 5rem 0;
}
.site-page .site-link {
  margin-bottom: 4rem;
}
.site-page .site-link img {
  box-shadow: -0.5rem 0.5rem 5px #818181;
}
.site-page .site-link p {
  margin: 3rem;
  font-family: "M PLUS 1", serif;
  font-weight: bold;
}
.site-page a {
  background: #ffc310;
  font-family: "Kiwi Maru", serif;
  font-size: 1.6rem;
  padding: 0.7rem 2rem;
  margin: 2rem;
  border-radius: 5rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0.4rem 5px #818181;
  font-weight: bold;
  transition: all 1s ease;
}
.site-page a:hover {
  background: #614788;
}
.site-page .backbtn {
  background: #39e5d1;
}
.site-page h2 {
  font-family: "M PLUS 1", serif;
  font-size: 2rem;
  text-decoration: underline;
  padding-left: 2rem;
}
.site-page p {
  margin: 2rem 0 2rem 2rem;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}
.site-page .site-text {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .site-page {
    padding: 1rem 0.4rem 0;
  }
  .site-page h1 {
    font-size: 0.5rem;
  }
  .site-page h1 span {
    font-size: 0.4rem;
  }
  .site-page .container {
    padding: 0.65rem 0;
  }
  .site-page .site-link {
    margin-bottom: 0.8rem;
  }
  .site-page .site-link img {
    box-shadow: -0.1rem 0.1rem 5px #818181;
  }
  .site-page .site-link p {
    margin: 0.2rem 0;
  }
  .site-page a {
    font-size: 0.26rem;
    padding: 0.2rem 0.5rem;
    margin: 0;
    box-shadow: 0 0.1rem 5px #818181;
  }
  .site-page h2 {
    font-size: 0.38rem;
    padding-left: 0;
    margin-bottom: 0.2rem;
  }
  .site-page p {
    margin: 0.4rem 0;
    font-size: 0.3rem;
  }
  .site-page .site-text {
    margin-top: 0.4rem;
  }
}
.aboutme {
  margin: 0;
  padding: 0;
}
.aboutme p {
  margin: 0.5rem;
}
.aboutme .career {
  padding: 5rem 10rem;
  background-image: url(../image/aboutme_1.png);
  background-size: cover;
  background-position: bottom left;
  background-attachment: fixed;
}
.aboutme .career h1 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  text-indent: 0.15em;
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
  color: #383838;
  text-shadow: 3px 3px 7px #fff;
}
.aboutme .career h1:before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  display: inline-block;
  width: 8rem;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ffc310;
  border-radius: 2px;
}
.aboutme .logo {
  padding: 5rem 10rem;
  background-image: url(../image/aboutme_2.png);
  background-size: cover;
  background-position: bottom right;
  background-attachment: fixed;
}
.aboutme .col-md-6 {
  padding: 5rem;
}
.aboutme .col-md-6 img {
  width: 60%;
  border-radius: 50%;
}
.aboutme .col-md-6 .aboutme-text {
  background: rgba(255, 255, 255, 0.662745098);
  padding: 0.2rem;
}
.aboutme .col-md-6 .aboutme-text p {
  text-align: left;
}
.aboutme .col-md-6 a {
  display: block;
  text-decoration: none;
  background: #ffc310;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  margin: 4rem auto 2rem;
  width: 25rem;
  box-shadow: 0 3px 4px #818181;
  transition: all 1s;
}
.aboutme .col-md-6 a:hover {
  background: #39e5d1;
}
.aboutme .slider {
  background: #292929;
  padding: 2rem 0;
}
.aboutme .slider-items {
  margin: 0 auto;
  padding-right: 3.2rem;
  width: 100%;
}
.aboutme .slider-items img {
  width: 30rem;
  margin: 3rem 1rem;
}
.aboutme .slick-prev:before,
.aboutme .slick-next:before {
  color: #292929;
}

@media (max-width: 767px) {
  .aboutme .career {
    padding: 1rem 0.2rem;
    background: #cef6f2;
  }
  .aboutme .career h1 {
    font-size: 0.6rem;
    margin-bottom: 1rem;
    text-indent: 0.1em;
    text-shadow: none;
  }
  .aboutme .career h1::before {
    bottom: -0.3rem;
    width: 1rem;
  }
  .aboutme .logo {
    padding: 1rem 0.2rem;
    background: #cef6f2;
  }
  .aboutme .col-md-6 {
    padding: 0;
  }
  .aboutme .col-md-6 a {
    padding: 10px 25px;
    font-size: 0.3rem;
    margin: 20px auto;
    width: 80%;
  }
  .aboutme .slider {
    padding: 0;
  }
  .aboutme .slider ul {
    padding: 0;
  }
  .aboutme .slider-items {
    margin: 0 auto;
    padding-right: 0;
    width: 100%;
  }
  .aboutme .slider-items img {
    width: 200px;
    margin: 30px 10px;
  }
}
.contact {
  background: #cef6f2;
  margin: 0;
  padding: 5rem 10rem;
}
.contact .instagram {
  display: none;
}

.contact-header h1 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  text-indent: 0.15em;
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
  color: #383838;
}
.contact-header h1:before {
  content: "";
  position: absolute;
  bottom: -2.5rem;
  display: inline-block;
  width: 8rem;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ffc310;
  border-radius: 2px;
}
.contact-header p {
  text-align: center;
}

.contactform {
  padding: 5rem 20rem;
  position: relative;
  z-index: 10;
}
.contactform .mb-3,
.contactform .mb-4 {
  margin: 3rem 0;
  font-size: 3rem;
  font-family: "M PLUS 1", serif;
}
.contactform input,
.contactform textarea {
  border: solid 3px #23c6d1;
  font-size: 2rem;
  font-family: "M PLUS 1", serif;
}
.contactform label {
  font-size: 2rem;
}
.contactform .required {
  background: #f82a5d;
  color: #fff;
  font-size: 1.8rem;
  font-family: "M PLUS 1", serif;
  border-radius: 5px;
  margin-right: 0.5rem;
  padding: 0.3rem 1rem 0.5rem;
}
.contactform .any {
  background: #2a8af8;
  color: #fff;
  font-size: 1.8rem;
  font-family: "M PLUS 1", serif;
  border-radius: 5px;
  margin-right: 0.5rem;
  padding: 0.3rem 1rem 0.5rem;
}
.contactform .submit {
  margin: 3rem 0;
  text-align: center;
  font-size: 2.2rem;
  padding-bottom: 0.5rem;
  text-decoration: underline;
  font-weight: bold;
}
.contactform .submit br {
  display: none;
}
.contactform button {
  font-size: 2rem;
  font-family: "M PLUS 1", serif;
  padding: 0.5rem 2rem;
}

@media (max-width: 767px) {
  .contact {
    padding: 1rem 0.2rem;
  }
  .contact .contact-header h1 {
    font-size: 0.6rem;
    margin-bottom: 1rem;
    text-indent: 0.1em;
  }
  .contact .contact-header h1::before {
    bottom: -0.3rem;
    width: 1rem;
  }
  .contact .contact-header p {
    font-size: 0.3rem;
    margin: 0 0 0.1rem;
    text-align: left;
  }
  .contact .contact-header div:before {
    left: 44.5%;
  }
  .contact .instagram {
    display: block;
    padding: 1rem 0;
  }
  .contact .instagram .container .col-md-8,
  .contact .instagram .container .col-md-4 {
    padding: 0;
  }
  .contact .instagram .container .col-md-8 p {
    font-size: 0.38rem;
    text-align: center;
    margin-bottom: 0.4rem;
    font-weight: bold;
  }
  .contact .instagram .container .col-md-4 p {
    font-size: 0.3rem;
    font-family: "Kiwi Maru", serif;
    text-align: center;
    margin-bottom: 10px;
  }
  .contact .instagram .container .col-md-4 img {
    width: 1.5rem;
    border-radius: 10px;
    margin-bottom: 0.3rem;
    transition: 0.5s all;
    animation: reduction 2s ease-out infinite;
    opacity: 1;
  }
  .contact .instagram .container .col-md-4 img:active {
    transform: scale(0.7, 0.7);
  }
  .contactform {
    padding: 0 0.2rem;
  }
  .contactform .mb-3,
  .contactform .mb-4 {
    margin: 0 0.5rem 0.3rem;
    font-size: 0.2rem;
  }
  .contactform label {
    font-size: 0.4rem;
    margin-bottom: 0.2rem;
  }
  .contactform input,
  .contactform textarea {
    font-size: 0.35rem;
    padding: 0.1rem 0.1rem 0.1rem 0.3rem;
  }
  .contactform .required,
  .contactform .any {
    font-size: 0.38rem;
    margin-right: 0.2rem;
    padding: 0 0.16rem 0.1rem;
  }
  .contactform .submit {
    margin: 0;
    font-size: 0.36rem;
    padding-bottom: 0;
  }
  .contactform .submit br {
    display: block;
  }
  .contactform button {
    font-size: 0.4rem;
    padding: 0.2rem 2rem;
  }
}
.service_header {
  width: 100vw;
  height: 100vh;
  background-image: url(../image/service_top.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.service_header .service_title {
  width: 50%;
  height: 100%;
  right: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 2s backwards 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.service_header .service_title .title_circle {
  width: 45rem;
  height: 45rem;
  background: rgba(57, 229, 209, 0.6862745098);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service_header .service_title .title_circle h1 {
  color: #fff;
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 0.2em;
  line-height: 6rem;
  font-family: "M PLUS 1", serif;
  font-weight: bolder;
}

@media (max-width: 1279px) {
  .service_header {
    height: 550px;
  }
}
@media (max-width: 1023px) {
  .service_header {
    height: 450px;
  }
}
@media (max-width: 767px) {
  .service_header {
    background-image: url(../image/service_top_sp.png);
  }
  .service_header .service_title {
    width: 100%;
    height: 100%;
    align-items: flex-end;
    padding-bottom: 1.3rem;
  }
  .service_header .service_title .title_circle {
    width: 6rem;
    height: auto;
    justify-content: right;
    background: none;
  }
  .service_header .service_title .title_circle h1 {
    font-size: 0.52rem;
    line-height: 1rem;
    text-align: right;
    text-shadow: 2px 2px 8px rgba(56, 56, 56, 0.4862745098);
    padding: 0;
  }
}
.sns {
  padding: 8rem 10rem;
  position: relative;
}
.sns .sns_text1 {
  z-index: 10;
  position: relative;
}
.sns .sns_text1 h2 {
  font-size: 3.3rem;
  font-family: "M PLUS 1", serif;
  font-weight: bolder;
  letter-spacing: 0.1em;
  line-height: 5rem;
  color: #383838;
  text-shadow: 2px 2px 5px #fff;
}
.sns .sns_text1 h2 span {
  color: #fff;
  background: #39e5d1;
  font-size: 3.3rem;
  padding: 0 0.5rem;
  text-shadow: none;
}
.sns .sns_text2 {
  margin: 3rem 0;
  z-index: 10;
  position: relative;
}
.sns .sns_text2 p {
  font-size: 1.8rem;
  line-height: 3rem;
  text-shadow: 2px 2px 5px #fff;
}
.sns .sns_text3 {
  z-index: 10;
  position: relative;
}
.sns .sns_text3 p span {
  font-size: 2.8rem;
  line-height: 4.2rem;
  color: #fff;
  background: #ffc310;
  padding: 0.3rem 0.5rem;
  font-family: "M PLUS 1", serif;
  font-weight: bolder;
  letter-spacing: 0.1em;
}
.sns .sns_text3 p span br {
  display: none;
}
.sns figure .sns_img1 {
  height: 100%;
  position: absolute;
  top: 0;
  right: 10rem;
  z-index: 1;
}
.sns figure .sns_img2 {
  height: 30rem;
  position: absolute;
  top: 20rem;
  right: 40rem;
  z-index: 5;
}

@media (max-width: 767px) {
  .sns {
    padding: 0.5rem;
    position: relative;
  }
  .sns .sns_text1 h2 {
    font-size: 0.4rem;
    line-height: 0.7rem;
  }
  .sns .sns_text1 h2 span {
    font-size: 0.4rem;
    padding: 0 0.1rem;
  }
  .sns .sns_text2 {
    margin: 0.5rem 0;
  }
  .sns .sns_text2 p {
    font-size: 0.3rem;
    line-height: 0.4rem;
    margin-bottom: 0;
  }
  .sns .sns_text3 {
    margin-bottom: 0.6rem;
  }
  .sns .sns_text3 p {
    margin-bottom: 0;
  }
  .sns .sns_text3 p span {
    font-size: 0.4rem;
    line-height: 0.9rem;
    padding: 0.1rem;
  }
  .sns .sns_text3 p span br {
    display: block;
  }
  .sns figure .sns_img1 {
    height: 100%;
    position: relative;
    right: 0;
    height: 7rem;
  }
  .sns figure .sns_img2 {
    height: 3rem;
    position: absolute;
    top: 10.5rem;
    right: 0;
  }
}
.sns::after {
  content: "";
  position: absolute;
  bottom: -15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60rem solid transparent;
  border-right: 60rem solid transparent;
  border-top: 15rem solid #fff;
  z-index: 99;
}

@media (max-width: 767px) {
  .sns::after {
    bottom: -1rem;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1rem solid #fff;
  }
}
.website_merit {
  padding: 20rem 10rem 10rem;
  background: #39e5d1;
  position: relative;
}
.website_merit h2 {
  font-size: 4rem;
  font-family: "M PLUS 1", serif;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 6rem;
  text-shadow: 0.2rem 0.2rem 1px #7a7a7a;
  margin-bottom: 5rem;
}
.website_merit h2 br {
  display: none;
}
.website_merit h2 span {
  color: #ffc310;
  font-size: 4rem;
}
.website_merit p {
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 2rem;
  font-weight: bolder;
}
.website_merit .merit {
  margin: 3rem 10rem;
  background: #fff;
  padding: 2rem 3rem;
  position: relative;
  box-shadow: 0.5rem 0.5rem 8px #228378;
}
.website_merit .merit .merit_corner {
  position: absolute;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #ffc310;
  height: 5rem;
  width: 5rem;
  top: 0;
  right: 0;
}
.website_merit .merit h3 {
  font-size: 3rem;
  color: #ffc310;
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0.5rem 0 1rem 6rem;
}
.website_merit .merit h3 br {
  display: none;
}
.website_merit .merit p {
  color: #646464;
  font-size: 1.8rem;
  font-weight: 600;
}
.website_merit .merit .merit1 {
  background-image: url(../image/merit_1.png);
  background-size: 5rem auto;
  background-repeat: no-repeat;
}
.website_merit .merit .merit2 {
  background-image: url(../image/merit_2.png);
  background-size: 5rem auto;
  background-repeat: no-repeat;
}
.website_merit .merit .merit3 {
  background-image: url(../image/merit_3.png);
  background-size: 5rem auto;
  background-repeat: no-repeat;
}
.website_merit .merit .merit4 {
  background-image: url(../image/merit_4.png);
  background-size: 5rem auto;
  background-repeat: no-repeat;
}
.website_merit .induction {
  margin-top: 20rem;
}
.website_merit .induction br {
  display: block;
}
.website_merit .col-md-6 {
  padding: 2rem;
}
.website_merit .col-md-6 .induction_text {
  background: #fff;
  padding: 5.5rem 5.5rem 4rem;
  border-radius: 50%;
  position: relative;
}
.website_merit .col-md-6 .induction_text ::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-top-width: 3rem;
  border-bottom-width: 0.2rem;
  border-left-width: 8rem;
  margin-top: -0.5rem;
  border-left-color: #fff;
  left: 87%;
  top: 70%;
}
.website_merit .col-md-6 .induction_text p {
  color: #646464;
  margin-bottom: 0;
  line-height: 4rem;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .website_merit {
    padding: 1.5rem 0.5rem 1rem;
  }
  .website_merit h2 {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    line-height: 0.8rem;
    margin-bottom: 1rem;
    text-shadow: none;
  }
  .website_merit h2 br {
    display: block;
  }
  .website_merit h2 span {
    font-size: 0.6rem;
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  }
  .website_merit p {
    font-size: 0.3rem;
  }
  .website_merit .merit {
    margin: 0.75rem 0;
    padding: 0.5rem;
    box-shadow: 0.1rem 0.1rem 8px #228378;
  }
  .website_merit .merit .merit_corner {
    height: 1rem;
    width: 1rem;
    top: 0;
    right: 0;
  }
  .website_merit .merit h3 {
    font-size: 0.45rem;
    padding: 0 0 0.2rem 1.3rem;
    margin-bottom: 0.2rem;
  }
  .website_merit .merit h3 br {
    display: block;
  }
  .website_merit .merit p {
    font-size: 0.28rem;
    margin-bottom: 0.2rem;
  }
  .website_merit .merit .merit1,
  .website_merit .merit .merit2,
  .website_merit .merit .merit3,
  .website_merit .merit .merit4 {
    background-size: 1rem auto;
    background-position: top 0.05rem left;
  }
  .website_merit .induction {
    margin-top: 1rem;
    font-size: 0.48rem;
  }
  .website_merit .induction span {
    font-size: 0.48rem;
  }
  .website_merit .col-md-6 {
    padding: 0;
  }
  .website_merit .col-md-6 .induction_text {
    padding: 0.75rem;
  }
  .website_merit .col-md-6 .induction_text ::after {
    border-top-width: 0.05rem;
    border-bottom-width: 0.8rem;
    border-left-width: 0.6rem;
    margin-top: -0.1rem;
    left: 70%;
    top: 90%;
  }
  .website_merit .col-md-6 .induction_text p {
    margin-bottom: 0;
    line-height: 0.4rem;
    font-size: 0.3rem;
  }
}
.website_merit::after {
  content: "";
  position: absolute;
  bottom: -15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 60rem solid transparent;
  border-right: 60rem solid transparent;
  border-top: 15rem solid #39e5d1;
  z-index: 99;
}

@media (max-width: 767px) {
  .website_merit::after {
    bottom: -1rem;
    border-left: 1rem solid transparent;
    border-right: 1rem solid transparent;
    border-top: 1rem solid #39e5d1;
  }
}
.freelance {
  padding: 20rem 10rem 10rem;
}
.freelance p {
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
.freelance h2 {
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  color: #39e5d1;
  margin-bottom: 8rem;
}
.freelance h2 br {
  display: none;
}
.freelance h3 span {
  color: #fff;
  background: #ffc310;
  padding: 1rem 2rem;
  font-size: 2.2rem;
  letter-spacing: 0.5em;
}
.freelance .row {
  padding: 5rem;
  margin: -2.2rem 15.5rem 3rem;
  border: solid #ffc310 5px;
  border-radius: 50px;
  background: #eeeeee;
}
.freelance .row ul li {
  font-size: 3rem;
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 5.5rem;
  color: #383838;
  list-style: none;
  text-align: center;
}

@media (max-width: 767px) {
  .freelance {
    padding: 1.5rem 0.5rem 1rem;
  }
  .freelance p {
    font-size: 0.3rem;
    margin-bottom: 0.2rem;
  }
  .freelance h2 {
    font-size: 0.56rem;
    margin-bottom: 0.35rem;
  }
  .freelance h2 br {
    display: block;
  }
  .freelance h3 span {
    font-size: 0.3rem;
    padding: 0.25rem;
    letter-spacing: 0.2em;
  }
  .freelance .container {
    padding: 0;
  }
  .freelance .row {
    padding: 0.25rem 0 0.1rem;
    margin: -1rem 0 0;
    border-radius: 0.3rem;
  }
  .freelance .row ul {
    padding: 0.75rem 0.5rem 0.2rem;
    margin-bottom: 0;
  }
  .freelance .row ul li {
    font-size: 0.4rem;
    letter-spacing: 0.1em;
    line-height: 0.6rem;
    margin-bottom: 0.45rem;
  }
}
.simple_design {
  padding: 10rem;
}
.simple_design p {
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1;
  font-size: 2rem;
}
.simple_design h2 {
  margin-bottom: 8rem;
  margin-top: 3rem;
}
.simple_design h2 span {
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 3.6rem;
  color: #ffc310;
  border-top: 3px solid #ffc310;
  border-bottom: 3px solid #ffc310;
  padding: 1rem;
}
.simple_design h2 span br {
  display: none;
}
.simple_design .col-md-4 {
  padding: 3rem;
}
.simple_design .col-md-4 .simple_merit {
  padding: 3rem 2rem;
  border: 5px solid #39e5d1;
  border-radius: 40px;
  box-shadow: 0.5rem 0.5rem 8px #228378;
}
.simple_design .col-md-4 .simple_merit img {
  padding: 2rem 5rem;
}
.simple_design .col-md-4 .simple_merit h3 {
  color: #ffc310;
  font-size: 1.9rem;
  font-weight: bolder;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.simple_design .col-md-4 .simple_merit p {
  font-size: 1.6rem;
  line-height: 1.8rem;
}

@media (max-width: 767px) {
  .simple_design {
    padding: 1rem 0.5rem;
  }
  .simple_design p {
    font-size: 0.3rem;
    margin-bottom: 0.2rem;
  }
  .simple_design h2 {
    margin-bottom: 0.7rem;
    margin-top: 0;
    letter-spacing: 0;
    line-height: 0.4rem;
    border-top: 3px solid #ffc310;
    border-bottom: 3px solid #ffc310;
    padding: 0.2rem 0.2rem 0.7rem;
  }
  .simple_design h2 span {
    font-size: 0.5rem;
    padding: 0.2rem 0;
    border-top: none;
    border-bottom: none;
  }
  .simple_design h2 span br {
    display: block;
  }
  .simple_design .col-md-4 {
    padding: 0.2rem;
  }
  .simple_design .col-md-4 .simple_merit {
    padding: 0.3rem 0.2rem 0.6rem;
    box-shadow: 0.1rem 0.1rem 8px #228378;
  }
  .simple_design .col-md-4 .simple_merit img {
    padding: 0.7rem 1.2rem;
  }
  .simple_design .col-md-4 .simple_merit h3 {
    font-size: 0.38rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    padding-bottom: 0.3rem;
  }
  .simple_design .col-md-4 .simple_merit p {
    font-size: 0.3rem;
    line-height: 0.5rem;
    margin-bottom: 0.075rem;
  }
}
.yamashiro_75 {
  padding: 10rem;
  /* 背景全体 */
  /* 背景アニメーション */
  /* テキスト本体 */
  /* 背景のアニメーション */
}
.yamashiro_75 .bg {
  font-family: sans-serif;
}
.yamashiro_75 .bg h2 {
  position: relative;
  display: inline-block;
  /* 文字幅に合わせる */
  margin: 1rem 0;
  overflow: hidden;
}
.yamashiro_75 .bg.is-animated h2::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #ffc310;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  z-index: 0;
}
.yamashiro_75 .bg h2 span {
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 4rem;
  font-style: italic;
  color: #fff;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-50%);
  }
  30% {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }
}
.yamashiro_75 .br {
  display: none;
}
.yamashiro_75 .col-md-8 {
  padding: 5rem;
  background-image: url(../image/icon03_line2.png);
  background-color: rgba(255, 255, 255, 0.6117647059);
  background-blend-mode: lighten;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.yamashiro_75 .col-md-8 p {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.5rem;
}
.yamashiro_75 .col-md-4 {
  padding: 5rem;
}
.yamashiro_75 .col-md-4 img {
  border-radius: 50%;
  box-shadow: 0.5rem 0.5rem 8px #228378;
}
.yamashiro_75 .col-md-4 p {
  margin-top: 2rem;
}
.yamashiro_75 .col-md-4 p span {
  font-size: 1.8rem;
  font-family: "M PLUS 1", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: #39e5d1;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 20px;
}

@media (max-width: 767px) {
  .yamashiro_75 {
    padding: 1rem 0.5rem;
  }
  .yamashiro_75 .bg h2 {
    margin: 0;
    line-height: 0.5rem;
  }
  .yamashiro_75 .bg h2 span {
    font-size: 0.4rem;
    letter-spacing: 0.1rem;
    padding: 0.2rem;
  }
  .yamashiro_75 .br {
    display: block;
  }
  .yamashiro_75 .col-md-8 {
    padding: 0.8rem 0.3rem;
  }
  .yamashiro_75 .col-md-8 P {
    font-size: 0.3rem;
    line-height: 0.5rem;
    margin-bottom: 0.3rem;
  }
  .yamashiro_75 .col-md-4 {
    padding: 0.2rem;
  }
  .yamashiro_75 .col-md-4 img {
    box-shadow: 0.1rem 0.1rem 8px #228378;
  }
  .yamashiro_75 .col-md-4 p {
    margin-top: 0.8rem;
  }
  .yamashiro_75 .col-md-4 P span {
    font-size: 0.3rem;
    padding: 0.2rem 0.75rem;
  }
}
.service_contact {
  height: 30rem;
  background-image: url(../image/contact.png);
  background-size: cover;
  background-position: right center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.service_contact a {
  padding: 2rem 5rem;
  font-size: 4rem;
  letter-spacing: 0.15em;
  border: 3px solid #fff;
  border-radius: 70px;
  text-decoration: none;
  color: #fff;
  font-family: "M PLUS 1", serif;
  opacity: 1;
  overflow: hidden;
  position: relative;
  transition: all 1s ease;
  background: rgba(255, 255, 255, 0.0470588235);
}
.service_contact a::before {
  background: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -10rem;
  left: 0;
  width: 3rem;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
  animation: kiran 1.8s linear 1s infinite;
}
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  10% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  20% {
    transform: scale(30) rotate(45deg);
    opacity: 0.8;
  }
  30% {
    transform: scale(45) rotate(45deg);
    opacity: 0.4;
  }
  40% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.service_contact a:hover {
  color: #646464;
  background: #39e5d1;
}
.service_contact a:active {
  transform: scale(0.6);
}
.service_contact p {
  margin-top: 2rem;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #fff;
  font-family: "M PLUS 1", serif;
}

@media (max-width: 767px) {
  .service_contact {
    height: 5rem;
  }
  .service_contact a {
    padding: 0.2rem 0.5rem;
    font-size: 0.4rem;
  }
  .service_contact a::before {
    top: -0.1rem;
    width: 0.3rem;
  }
  .service_contact p {
    font-size: 0.3rem;
    margin-bottom: 0;
    margin-top: 0.5rem;
  }
}
.process {
  padding: 10rem;
  background: #eeeeee;
}
.process h2 {
  margin-bottom: 8rem;
}
.process h2 span {
  font-size: 4.5rem;
  padding: 1rem 2.5rem 1rem 3rem;
  background: #39e5d1;
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #383838;
}
.process .col-md-8 h3 {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  color: #383838;
}
.process .col-md-8 h3 br {
  display: none;
}
.process .col-md-8 h3 span {
  color: #fff;
  background: #39e5d1;
  font-size: 3.5rem;
  font-family: "Limelight", sans-serif;
  font-style: italic;
  padding: 0.3rem 1rem 0;
}
.process .col-md-8 p {
  font-size: 1.7rem;
}
.process .col-md-4 {
  display: flex;
  justify-content: center;
}
.process .col-md-4 img {
  padding: 0 2rem;
}
.process .flow1,
.process .flow2,
.process .flow3,
.process .flow4,
.process .flow5,
.process .flow6,
.process .flow7 {
  background: #fff;
  position: relative;
  filter: drop-shadow(0.1rem 0.5rem 5px #8a8a8a);
  border-radius: 10px;
}
.process .flow1::after,
.process .flow2::after,
.process .flow3::after,
.process .flow4::after,
.process .flow5::after,
.process .flow6::after,
.process .flow7::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7rem solid transparent;
  border-right: 7rem solid transparent;
  border-top: 5rem solid #fff;
  z-index: 99;
}
.process .flow1 {
  z-index: 60;
  padding: 1rem 2rem;
}
.process .flow2 {
  z-index: 50;
  padding: 3rem 2rem 1rem 2rem;
}
.process .flow3 {
  z-index: 40;
  padding: 3rem 2rem 1rem 2rem;
}
.process .flow4 {
  z-index: 30;
  padding: 3rem 2rem 1rem 2rem;
}
.process .flow5 {
  z-index: 20;
  padding: 3rem 2rem 1rem 2rem;
}
.process .flow6 {
  z-index: 10;
  padding: 3rem 2rem 1rem 2rem;
}
.process .flow7 {
  z-index: 5;
  padding: 3rem 2rem 1rem 2rem;
}
.process .flow7::after {
  display: none;
}

@media (max-width: 767px) {
  .process {
    padding: 1rem 0.5rem;
  }
  .process h2 {
    margin-bottom: 0.8rem;
  }
  .process h2 span {
    font-size: 0.6rem;
    padding: 0.1rem 0.2rem 0.2rem 0.3rem;
  }
  .process .col-md-8 {
    padding: 0;
  }
  .process .col-md-8 h3 {
    font-size: 0.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
    text-align: center;
    line-height: 0.7rem;
  }
  .process .col-md-8 h3 br {
    display: block;
  }
  .process .col-md-8 h3 span {
    font-size: 0.5rem;
    padding: 0.06rem 0.2rem 0;
  }
  .process .col-md-8 p {
    font-size: 0.3rem;
    margin-bottom: 0.5rem;
  }
  .process .col-md-4 img {
    padding: 0 0.4rem;
  }
  .process .flow1,
  .process .flow2,
  .process .flow3,
  .process .flow4,
  .process .flow5,
  .process .flow6,
  .process .flow7 {
    filter: drop-shadow(0 0.05rem 5px #8a8a8a);
  }
  .process .flow1::after,
  .process .flow2::after,
  .process .flow3::after,
  .process .flow4::after,
  .process .flow5::after,
  .process .flow6::after,
  .process .flow7::after {
    bottom: -0.55rem;
    left: 50%;
    border-left: 0.85rem solid transparent;
    border-right: 0.85rem solid transparent;
    border-top: 0.7rem solid #fff;
  }
  .process .flow1 {
    z-index: 60;
    padding: 0.25rem 0.45rem;
  }
  .process .flow2 {
    z-index: 50;
    padding: 0.6rem 0.45rem 0.25rem 0.45rem;
  }
  .process .flow3 {
    z-index: 40;
    padding: 0.6rem 0.45rem 0.25rem 0.45rem;
  }
  .process .flow4 {
    z-index: 30;
    padding: 0.6rem 0.45rem 0.25rem 0.45rem;
  }
  .process .flow5 {
    z-index: 20;
    padding: 0.6rem 0.45rem 0.25rem 0.45rem;
  }
  .process .flow6 {
    z-index: 10;
    padding: 0.6rem 0.45rem 0.25rem 0.45rem;
  }
  .process .flow7 {
    z-index: 5;
    padding: 0.6rem 0.45rem 0.25rem 0.45rem;
  }
  .process .flow7::after {
    display: none;
  }
}
.faq {
  padding: 10rem 20rem;
  background: #eeeeee;
}
.faq h2 {
  margin-bottom: 8rem;
}
.faq h2 span {
  font-size: 4.5rem;
  padding: 1rem 2rem 1rem 3rem;
  background: #ffc310;
  font-family: "M PLUS 1", serif;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #383838;
}
.faq .faq-container {
  width: 100%;
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: #fff;
}
.faq .faq-container .qanda {
  box-shadow: 0 0.5rem 5px #8a8a8a;
}
.faq .faq-container .q {
  padding: 0 2rem;
}
.faq .faq-container .q h3 {
  font-size: 2.6rem;
  color: #383838;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  background-image: url(../image/plus.png);
  background-size: 3.5rem auto;
  background-repeat: no-repeat;
  background-position: right center;
  padding-left: 6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
.faq .faq-container .q h3::before {
  position: absolute;
  content: "";
  top: 23%;
  left: 0;
  display: block;
  width: 100%;
  height: 4.5rem;
  background-image: url(../image/Q.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.faq .faq-container .q.open h3 {
  background-image: url(../image/minus.png);
}
.faq .faq-container .a {
  display: none;
  padding: 0 2rem;
}
.faq .faq-container .a p {
  font-size: 1.8rem;
  background-image: url(../image/A.png);
  background-size: 4.5rem auto;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 0;
}
.faq .faq-container .a .anchor {
  text-align: right;
  padding-bottom: 2rem;
}
.faq .faq-container .a .anchor a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  background: #39e5d1;
  border-radius: 40px;
  padding: 0.5rem 2rem;
  box-shadow: 0.3rem 0.3rem 3px #228378;
  margin-right: 0;
  transition: all 0.5s;
}
.faq .faq-container .a .anchor a:hover {
  background: #ffc310;
}

@media (max-width: 767px) {
  .faq {
    padding: 1rem 0.5rem;
  }
  .faq h2 {
    margin-bottom: 0.8rem;
  }
  .faq h2 span {
    font-size: 0.6rem;
    padding: 0.1rem 0.2rem 0.2rem 0.3rem;
  }
  .faq .faq-container .qanda {
    box-shadow: 0 0.05rem 5px #8a8a8a;
  }
  .faq .faq-container .q {
    padding: 0 0.2rem;
  }
  .faq .faq-container .q h3 {
    font-size: 0.4rem;
    letter-spacing: 0.3em;
    margin-bottom: 0;
    background-size: 0.4rem auto;
    background-position: right bottom 0.2rem;
    padding-left: 1.1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.55rem;
  }
  .faq .faq-container .q h3::before {
    top: 30%;
    left: 0;
    height: 0.8rem;
  }
  .faq .faq-container .a {
    padding: 0 0.3rem 0 0.2rem;
  }
  .faq .faq-container .a p {
    font-size: 0.3rem;
    background-size: 0.8rem auto;
    background-position: left center;
    padding-left: 1rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .faq .faq-container .a .anchor {
    padding-bottom: 0.4rem;
    text-align: center;
    line-height: 0.5rem;
  }
  .faq .faq-container .a .anchor a {
    font-size: 0.3rem;
    padding: 0.1rem 0.4rem;
    box-shadow: 0.05rem 0.05rem 5px #228378;
  }
}
.site_map {
  margin: 0;
  padding: 5rem 15rem 10rem;
  background: #cef6f2;
  position: relative;
}
.site_map .map_title {
  width: 50%;
  background: rgba(255, 255, 255, 0.3960784314);
  padding: 2rem;
  border-radius: 10px;
}
.site_map .map_title h1 {
  font-size: 4.5rem;
  font-family: "Kaisei Opti", serif;
  font-weight: bolder;
  color: #39e5d1;
  text-align: center;
}
.site_map .map_title h1 span {
  font-size: 3rem;
  font-family: "Dancing Script", cursive;
  border-bottom: 2px solid #39e5d1;
  letter-spacing: 0.15em;
}
.site_map .domain {
  position: absolute;
  top: 100px;
  right: 150px;
  padding: 0.5rem 1rem;
  background: linear-gradient(30deg, #cef6f2, #fff);
}
.site_map .domain p {
  font-family: "M PLUS 1", serif;
  margin-bottom: 0;
}
.site_map .home {
  padding: 5rem;
  border: solid 3px #686868;
  border-radius: 20px;
  background: #fff;
  margin-top: 5rem;
}
.site_map .home a {
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
}
.site_map figure {
  margin: 2rem auto;
  display: block;
}
.site_map .col-md-4 {
  padding: 0 1rem;
}
.site_map .col-md-4 .map-col {
  border: solid 3px #686868;
  border-radius: 20px;
}
.site_map .col-md-4 p {
  font-size: 2.2rem;
  background: #fff;
  padding: 2rem 0;
  border-radius: 20px 20px 0 0;
  font-family: "M PLUS 1", serif;
}
.site_map .col-md-4 ul {
  padding: 0 2rem;
}
.site_map .col-md-4 ul li {
  list-style: none;
  padding: 2rem 0;
}
.site_map .col-md-4 a {
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 767px) {
  .site_map {
    padding: 30px 20px;
  }
  .site_map .map_title {
    width: 100%;
    padding: 20px;
  }
  .site_map .map_title h1 {
    font-size: 0.5rem;
    margin-bottom: 0;
  }
  .site_map .map_title h1 span {
    font-size: 0.3rem;
  }
  .site_map .domain {
    top: 150px;
    right: 20px;
    padding: 5px 10px;
  }
  .site_map .home {
    margin: 0 20px;
    padding: 0 30px 10px;
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .site_map .home a {
    font-size: 0.5rem;
  }
  .site_map figure {
    display: none;
  }
  .site_map .col-md-4 {
    padding: 10px 20px;
  }
  .site_map .col-md-4 p {
    font-size: 0.38rem;
    padding: 20px 0;
    margin-bottom: 0;
  }
  .site_map .col-md-4 ul {
    padding: 0 20px;
  }
  .site_map .col-md-4 ul li {
    padding: 0;
  }
  .site_map .col-md-4 a {
    font-size: 0.3rem;
  }
}
body {
  font-size: 1.6em;
}

h2,
h3 {
  font-family: "M PLUS 1", serif;
  font-weight: bolder;
}

p {
  font-family: "Noto Serif JP", serif;
  color: #383838;
  font-size: 1.8rem;
}

a {
  font-family: "Kiwi Maru", serif;
}

@media (max-width: 2400px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 2000px) {
  html {
    font-size: 62.5%;
  }
}
@media (max-width: 1279px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 1023px) {
  html {
    font-size: 40%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50px;
  }
  body {
    font-size: 0.28rem;
  }
  h1 {
    font-size: 0.6rem;
  }
  p {
    font-size: 0.26rem;
  }
}
.section_title {
  font-size: 4rem;
  letter-spacing: 0.2em;
  margin-bottom: 6rem;
  color: #383838;
}
.section_title::first-letter {
  padding: 0 0 1rem 2rem;
  color: #ffc310;
  border-left: 5px solid;
  border-bottom: 2px solid;
}

.title_text {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .section_title {
    font-size: 0.45rem;
    letter-spacing: 0.1rem;
    margin-bottom: 30px;
  }
  .section_title::first-letter {
    padding: 0 0 5px 10px;
    border-left: 5px solid;
    border-bottom: 1px solid;
  }
  .title_text {
    margin-bottom: 1rem;
  }
}
.service-area {
  text-align: center;
  padding: 0;
}
.service-area .click {
  overflow: visible;
}
.service-area .click p {
  font-size: 2rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  font-family: "Kiwi Maru", serif;
  font-weight: bold;
  margin-bottom: 2rem;
  animation: reduction 2s ease-out infinite;
  opacity: 1;
}
@keyframes reduction {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(1.1);
  }
}
.service-area .click-btn {
  position: relative;
  background: #39e5d1;
  border-radius: 50px;
  border: 3px solid #fff;
  padding: 0.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 5px #818181;
  transition: all 1s ease;
  overflow: hidden;
}
.service-area .click-btn:hover {
  background: #ffc310;
}
.service-area .click-btn:active {
  transform: scale(0.6);
}
.service-area a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 3rem;
  font-weight: bold;
  margin: 2rem auto;
  width: 40rem;
}

@media (max-width: 767px) {
  .service-area .contact-area {
    text-align: center;
  }
  .service-area .click p {
    font-size: 0.3rem;
    letter-spacing: 0.3em;
    margin-bottom: 0;
  }
  .service-area .click-btn {
    padding: 0.05rem 0.2rem;
    margin-bottom: 0.2rem;
  }
  .service-area .click-btn a {
    font-size: 0.4rem;
    margin: 10px auto;
    width: 5.5rem;
  }
}
.triangle_shadow {
  filter: drop-shadow(13px 13px 5px #91a4d6);
}
.triangle_shadow .triangle_1 {
  background: #cef6f2;
  height: 100px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.triangle_shadow .triangle_2 {
  background: #fff;
  height: 100px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

@media (max-width: 767px) {
  .triangle_shadow {
    filter: drop-shadow(5px 5px 3px #91a4d6);
  }
  .triangle_shadow .triangle_1,
  .triangle_shadow .triangle_2 {
    height: 50px;
  }
}
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}