@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  background-color: #FFF6E4;
  font-family: ryo-gothic-plusn, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  line-height: 1.8;
}


a {
  text-decoration: none;
  color: #810909;
}

a:hover {
  text-decoration: underline;
  color: #FF8C00;
}


/* # =================================================================
   # index.html
   # ================================================================= */

.header {
  background-color: #fff;
  width: 100%;
}

.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding-top: 10px;
  padding-right: 10px;
  height: 100px;
}

.logo {
  margin-left: 10px;
}

.logo img {
  height: 80px;
}

ul.nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  list-style: none;
}

li.nav_list:not(:last-child) {
  margin-right: 50px;
}

li.nav_list a {
  display: flex;
  flex-direction: column;
  color: #333;
  text-align: center;
  text-decoration: none;
}

li.nav_list a span {
  color: #FF8C00;
  font-size: 14px;
}

.main {
  margin: auto;
  text-align: center;
}

.fv {}

.fv img {
  width: 100%;
}

.cat01 {
  width: 350px;
  position: relative;
}

.cat01 img {
  position: absolute;
  transform: translateY(-60%);
}

.title {
  position: relative;
  padding-top: 50px;
  padding-left: 30px;
  font-size: 28px;
  text-align: center;
}

.title span {
  position: relative;
  z-index: 0;
}

.title::before {
  content: attr(data-en);
  position: absolute;
  transform: rotate(-10deg);
  top: 0;
  left: 40%;
  color: #E8D8C6;
  font-size: 80px;
  padding-left: 30px;
  text-align: center;
}

.message {
  padding-top: 40px;
  padding-bottom: 100px;
  background-color: #ffffff;
}

.message .a-text {
  color: #333;
  font-size: 18px;
  padding-top: 40px;
  line-height: 2.2;
}

.pen {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

.service {
  padding-top: 50px;
  padding-bottom: 100px;
}

.s-text {
  padding-top: 40px;
}

.s-list-div {
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.s-list-item {
  padding: 20px;
  width: 20%;
  text-align: left;
}

li.list {
  list-style: url("img/arrow01.png");
  padding: 10px;
}

li.list a {
  text-decoration: none;
  color: #810909;
}

li.list a:hover {
  text-decoration: underline;
  color: #FF8C00;
}

.works {
  padding-bottom: 100px;
}

.w-text {
  padding-top: 40px;
}

.w-flex {
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  padding: 30px;
  margin: 20px;
  width: 46%;
  background-color: #F0DFCC;
  border-radius: 20px;
}

.item img {
  width: 95%;
  border-radius: 10px;
}

.item:not(:nth-child(2n+2)) {
  margin-right: 2%;
}

.item:not(:nth-child(n+3)) {
  margin-top: 30px;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
  margin-top: 20px;
  margin-bottom: 20px;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #ff9040;
}

a.btn--radius {
  border-radius: 100vh;
}

.p-flex02 {
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-item02 {
  padding: 20px;
  margin: 10px;
  width: 22%;
  background-color: #F0DFCC;
  border-radius: 20px;
}

.p-item02 img {
  width: 95%;
  border-radius: 10px;
}

.p-item02:not(:nth-child(3n+4)) {
  margin-right: 2%;
}

.p-item02:not(:nth-child(n+5)) {
  margin-top: 30px;
}

.qa {
  padding-bottom: 100px;
}

.q-text {
  padding-top: 40px;
}

.box {
  padding: 30px;
  margin: 10px;
  border: dashed 3px #666;
  border-radius: 10px;
}

.btn,
a.btn,
button.btn {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  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;
  border-radius: 0.5rem;
}

a.btn-gradient {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#FF3231), to(#FF904D));
  background-image: -webkit-linear-gradient(left, #FF3231 0%, #FF904D 100%);
  background-image: linear-gradient(to right, #FF3231 0%, #FF904D 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

a.btn-gradient:hover {
  -webkit-transform: translate(0, -2px);
  transform: translate(0, -2px);
  color: #fff;
  -webkit-box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
  box-shadow: 0 8px 15px rgba(0, 0, 0, .2);
}

.h-text {
  padding-top: 40px;
}

.h-flex {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
  display: flex;
  background-color: #F0DFCC;
}

.h-title {
  padding: 30px;
  font-size: 36px;
}

.h-sence {
  padding-left: 30px;
  width: 55%;
  text-align: left;
}

.h-sence p {
  text-align: center;
}

.h-photo {
  margin: 30px;
  margin-top: -20px;
  width: 45%;
}

.h-photo img {
  width: 95%;
}

.h-flex01 {
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 50px;
}

.h-item01 {
  width: 45%;
  padding-top: 30px;
}

.h-item01 img {
  width: 90%;
}

.h-title01 {
  font-size: 32px;
}

.h-sence01 {
  text-align: left;
}

.w-flex {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
}

.w-photo {
  padding: 30px;
  margin-top: -20px;
  width: 45%;
}

.w-photo img {
  width: 95%;
}

.w-sence {
  padding-left: 30px;
  text-align: left;
  width: 55%;
}

.w-title {
  padding-top: 30px;
  font-size: 32px;
}

.q-flex {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
  display: flex;
  background-color: #F0DFCC;
  margin-bottom: 50px;
}

.q-photo {
  margin-top: -20px;
  width: 45%;
}

.q-photo img {
  width: 95%;
}



/* works */

.content img {
  width: 500px;
}

.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
}

li.content-hover {
  list-style: none;
}

.slideshow {
  display: flex;
  -webkit-animation: loop-slide 25s infinite linear 1s both;
  animation: loop-slide 25s infinite linear 1s both;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slide-paused:hover .slideshow {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.content-hover {
  transition: all 0.2s;
  padding-right: 20px;
}

.content-hover:hover {
  transform: translateY(-10px);
  border-radius: 10%;
  opacity: 0.8;
  cursor: pointer;
}

.features {
  padding-top: 50px;
  padding-bottom: 100px;
}

.f-flex {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
  justify-content: center;
}

.f-list {
  width: 30%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.f-list-titlenum01 {
  background-image: url("img/f-list-num01.png");
  height: 200px;
}

.f-list-titlenum02 {
  background-image: url("img/f-list-num02.png");
  height: 200px;
}

.f-list-titlenum03 {
  background-image: url("img/f-list-num03.png");
  height: 200px;
}

.f-list-text {
  border: 3px dashed #905104;
  text-align: left;
  padding: 20px;
  flex-grow: 1;
}

.etc {
  padding-top: 50px;
  padding-bottom: 50px;
}

.e-flex {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
  justify-content: center;
}

.e-list {
  width: 30%;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

.e-list-title {
  padding: 20px;
  height: 80px;
  background-color: #ff914d;
  border: 3px solid #905104;
  border-bottom: 0px;
  font-size: 24px;
  font-weight: bold;
}

.e-list-text {
  border: 3px solid #905104;
  text-align: left;
  padding: 20px;
  flex-grow: 1;
}

.e-btn {
  padding: 20px;
  text-align: center;
}

.flow {
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: #fff;

}

.flow-flex {
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
  justify-content: center;
}

.flow-list {
  width: 23%;
  padding-right: 30px;
}

.flow img {
  width: 85%;
}

.flow-title {
  padding: 20px;
  height: 80px;
  font-size: 24px;
  font-weight: bold;
}

.flow-text {
  text-align: left;
}

.contact {}

.contact-fv {
  background-image: url("img/contact-fv.png");
  margin-top: 40px;
  height: 500px;
  padding: 50px;
}

.white {
  margin: 0 auto;
  width: 60%;
  padding: 30px;
  background-color: rgb(255 255 255 / 60%);
  border-radius: 10px;
}

.footer {
  color: #fff;
  width: 100%;
  padding: 50px;
  background-color: #873f03;
}

.pagetop {
  height: 100px;
  width: 100px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}

@media (hover: hover) and (pointer: fine) {

  .pagetop:hover,
  .pagetop:hover .pagetop__arrow {
    border-color: #3293e7;
  }
}

.footer_nav_list a {
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 10px;
}


/* # =================================================================
   # about.html
   # ================================================================= */

.panlist {
  text-align: left;
  margin-left: 20px;
}

.about-profile {
  padding-top: 40px;
  width: 70%;
  margin: 0 auto;
  display: flex;
  padding-bottom: 50px;
}

.about-photo {
  padding: 20px;
  width: 40%;
  border-radius: 20px;
}

.about-photo img {
  padding: 20px;
  width: 90%;
}

.about-text {
  padding: 20px;
  margin-left: 20px;
  width: 55%;
  background-color: #F0DFCC;
  border-radius: 20px;
  text-align: left;
}

.outline-table {
  padding-top: 40px;
  margin: 0 auto;
  padding-bottom: 50px;
}

table {
  border-collapse: separate;
  border-spacing:  20px;
}

table td {
  text-align: left;
}


/* # =================================================================
   # feature.html
   # ================================================================= */

.f-text {
  padding-top: 40px;
}

.feature-flex {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
  justify-content: center;
}

.feature-f-photo {
  margin-top: -30px;
  margin-left: -50px;
  width: 300px;
  z-index: 2;
}

.feature-f-sence {
  text-align: left;
  background-color: #F0DFCC;
  width: 500px;
  padding: 30px;
}

.feature-f-title {
  padding-top: 30px;
  font-size: 32px;
}


/* # =================================================================
   # flow.html
   # ================================================================= */

.flows {

}

.flows-flex {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
  justify-content: center;
}

.flows-photo img {
  width: 200px;
}

.flows-sence {
  text-align: left;
  background-color: #fff;
  width: 600px;
  padding: 30px;
  margin-left: 50px;
  border-radius: 33% 67% 52% 48% / 52% 32% 68% 48%;
}

.flows-title {
  font-size: 28px;
  font-weight: bold;
}

.flows-text {
  text-align: left;
}


/* # =================================================================
   # qa.html
   # ================================================================= */

.qa {

}

.qa-flex {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
  display: flex;
  padding-bottom: 50px;
  justify-content: center;
}

.qa-photo img {
  width: 200px;
}

.qa-sence {
  text-align: left;
  background-color: #fff;
  width: 600px;
  padding: 30px;
  margin-left: 50px;
  border-radius: 67% 52% 33% 48% / 68% 48% 52% 32%;
}

.qa-title {
  font-size: 20px;
  font-weight: bold;
}

.qa-text {
  text-align: left;
}

