@charset "UTF-8";
.side-bar {
  position: fixed;
  top: 100px;
  left: 10px;
  width: 250px;
  z-index: 1;
}
.side-bar .menu-list-area {
  margin-bottom: 20px;
  padding: 40px;
  text-align: center;
  line-height: 1.2;
  font-size: 2.4rem;
  color: #ffffff;
  background-color: #2e8767;
  border-radius: 29px;
}
.side-bar .menu-list-area .menu {
  margin-bottom: 50px;
}
.side-bar .menu-list-area .main-list {
  position: relative;
  margin-bottom: 35px;
}
.side-bar .menu-list-area .main-list a {
  color: #ffffff;
}
.side-bar .menu-list-area .main-list .none {
  display: none;
}
.side-bar .menu-list-area .main-list::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1.3px;
  background-color: #fff;
  transition: transform 1s ease;
  transform: scaleX(1);
  transform-origin: left;
}
.side-bar .menu-list-area .main-list:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
.side-bar .youtube-area .img-wrap {
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 1360px) {
  .side-bar {
    left: calc(50% - 680px);
  }
}
@media (max-width: 1300px) {
  .side-bar .none {
    display: none;
  }
}
header {
  position: fixed;
  top: 0;
  height: 100px;
  z-index: 2;
}
header .company-name {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 100%;
}
header .company-name h1 {
  z-index: 1;
}
header .company-name h1 img {
  width: 250px;
}
header #menu-toggle {
  display: none;
}

@media (min-width: 1360px) {
  header {
    left: calc(50% - 680px);
  }
}
@media (max-width: 1300px) {
  header {
    width: 100%;
    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  header .company-name .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    z-index: 1;
    cursor: pointer;
  }
  header .company-name .hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #aac00d;
    transition: 0.3s;
    z-index: 1;
  }
  header .company-name #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  header .company-name #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  header .company-name #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  header .company-name .drawer-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2e8767;
    transition: top 0.5s ease-in-out;
  }
  header .company-name .drawer-menu .menu-list-area {
    margin-top: 110px;
    padding: 0 10px;
    color: #ffffff;
  }
  header .company-name .drawer-menu .menu-list-area .menu {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  header .company-name .drawer-menu .menu-list-area .flex {
    display: flex;
    margin-bottom: 40px;
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list {
    display: flex;
    overflow: hidden; /* はみ出した部分を隠す */
    font-size: 2rem;
    height: 24px;
    /* 擬似要素で新しいテキストを下に配置 */
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list a {
    display: block;
    position: relative;
    transition: transform 0.5s ease-in-out;
    color: #ffffff;
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list a::after {
    content: attr(data-text); /* data-text 属性の内容を表示 */
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list:hover a {
    transform: translateY(-100%); /* 既存のテキストを上へ消す */
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list:hover a::after {
    transform: translateY(100%); /* 新しいテキストを上から表示 */
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list .none {
    margin: 0 10px;
  }
  header .company-name .drawer-menu .youtube-area {
    padding: 0 10px;
  }
  header .company-name .drawer-menu .youtube-area p {
    margin-top: 5px;
    color: #ffffff;
  }
  header .company-name #menu-toggle:checked ~ .drawer-menu {
    top: 0;
  }
}
@media (max-width: 786px) {
  header {
    height: 80px;
  }
  header .company-name h1 img {
    width: 200px;
  }
  header .company-name .drawer-menu .menu-list-area .flex {
    flex-wrap: wrap;
  }
  header .company-name .drawer-menu .menu-list-area .flex .main-list {
    margin-bottom: 10px;
  }
}
@media (max-width: 500px) {
  header .company-name .drawer-menu .menu-list-area .menu {
    color: #aac00d;
  }
}
.main-visual {
  position: relative;
  padding-top: 100px;
  margin-bottom: 291px;
}
.main-visual .section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 310px;
}
.main-visual .section-inner .main-visual-photo {
  height: 630px !important;
  border-radius: 29px;
}
.main-visual .section-inner .main-visual-photo .vegas-timer {
  height: 5px;
}
.main-visual .section-inner .main-visual-photo .vegas-timer .vegas-timer-progress {
  background: #aac00d;
}
.main-visual .section-inner .main-visual-photo .vegas-wrapper {
  position: relative;
}
.main-visual .section-inner .main-visual-photo .vegas-wrapper .catchphrase {
  position: absolute;
  top: 50px;
  left: 30px;
  padding: 0 50px;
  opacity: 0;
  animation: fadeIn 5s forwards;
}
.main-visual .section-inner .main-visual-photo .vegas-wrapper .catchphrase .catchphrase-text {
  text-align: left;
  line-height: 1;
  font-size: 10rem;
  color: #fff;
  font-family: "Tangerine", serif;
  font-weight: 400;
  font-style: normal;
  transform: rotate(-7deg);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-visual .section-inner .logo {
  position: relative;
}
.main-visual .section-inner .logo img {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 500px;
  opacity: 0.3;
  z-index: -1;
}

.main-visual::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 65%;
  background-color: #2e8767;
  z-index: -1;
}

@media (min-width: 1920px) {
  .main-visual .section-inner .main-visual-photo {
    height: 700px !important;
  }
}
@media (max-width: 1300px) {
  .main-visual .section-inner {
    max-width: 1300px;
    padding-left: initial;
  }
  .main-visual .section-inner .main-visual-photo .vegas-wrapper .catchphrase {
    padding: initial;
  }
}
@media (max-width: 786px) {
  .main-visual {
    padding-top: 80px;
    margin-bottom: 241px;
  }
  .main-visual .section-inner .main-visual-photo {
    height: 400px !important;
    border-radius: initial;
  }
  .main-visual .section-inner .main-visual-photo .vegas-wrapper .catchphrase {
    left: initial;
  }
  .main-visual .section-inner .main-visual-photo .vegas-wrapper .catchphrase .catchphrase-text {
    padding: 0 5px;
    font-size: 6.5rem;
  }
  .main-visual .section-inner .logo img {
    right: initial;
    width: 100%;
    height: 100px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: right;
       object-position: right;
  }
  .main-visual::after {
    width: 100%;
    height: 80px;
  }
}
.top-company {
  margin-bottom: 200px;
}
.top-company .section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 350px;
}
.top-company .section-inner .handling-goods-photo {
  margin: 0 0 100px 100px;
}
.top-company .section-inner .handling-goods-photo .slider {
  display: flex;
}
.top-company .section-inner .handling-goods-photo .slider .slick-list {
  border-radius: 29px;
}
.top-company .section-inner .handling-goods-photo .slider .slick-list .slick-slide {
  margin: 0 20px;
  height: 200px;
}
.top-company .section-inner .handling-goods-photo .slider .slick-list .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 29px;
}
.top-company .section-inner .top-company-information {
  position: relative;
  margin-left: 40px;
  padding: 50px 30px;
  background-color: #2e8767;
  border-radius: 29px;
}
.top-company .section-inner .top-company-information .english-heading {
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
  position: absolute;
  top: -75px;
  right: 30px;
}
.top-company .section-inner .top-company-information .japanese-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.top-company .section-inner .top-company-information .japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #ffffff;
}
.top-company .section-inner .top-company-information .content-area {
  display: flex;
  gap: 23px;
  height: 350px;
}
.top-company .section-inner .top-company-information .content-area .left-side {
  flex: 1;
}
.top-company .section-inner .top-company-information .content-area .left-side p {
  padding-bottom: 50px;
  color: #ffffff;
}
.top-company .section-inner .top-company-information .content-area .left-side .button {
  text-align: center;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a {
  position: relative;
  padding: 15px 20px 15px 60px;
  font-size: 2rem;
  font-weight: 600;
  color: #2e8767;
  background-color: #ffffff;
  border-radius: 29px;
  line-height: 1.4;
  overflow: hidden;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a .circle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #aac00d;
  transition: all 0.5s ease;
  z-index: 0;
  background: #aac00d;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a .arrow {
  position: absolute;
  top: 26px;
  left: 25px;
  margin-bottom: 4px;
  background: #ffffff;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  position: absolute;
  box-sizing: border-box;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a .arrow.arrow-right {
  display: inline-block;
  width: 20px;
  height: 2px;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a .arrow.arrow-right::before {
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  top: 50%;
  right: -1px;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a .button-text {
  position: relative;
  z-index: 1;
}
.top-company .section-inner .top-company-information .content-area .left-side .button a:hover .circle {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  transform: none;
}
.top-company .section-inner .top-company-information .content-area .right-side {
  flex: 1;
}
.top-company .section-inner .top-company-information .content-area .right-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 29px;
}
.top-company .section-inner .top-company-information::before {
  content: " ";
  position: absolute;
  top: -200px;
  left: -65.5px;
  width: 50%;
  height: 581.915px;
  background-image: linear-gradient(49deg, #cfe078 0%, #f8ffdf 100%);
  border-radius: 29px;
  z-index: -1;
}

@media (max-width: 1300px) {
  .top-company .section-inner {
    padding-left: initial;
  }
  .top-company .section-inner .handling-goods-photo {
    margin: 0 0 100px 60px;
  }
  .top-company .section-inner .top-company-information {
    margin-left: initial;
  }
}
@media (max-width: 786px) {
  .top-company {
    margin-bottom: 150px;
  }
  .top-company .section-inner .handling-goods-photo {
    margin: 0 0 100px 0;
  }
  .top-company .section-inner .handling-goods-photo .slider .slick-list .slick-slide {
    height: 150px;
  }
  .top-company .section-inner .top-company-information {
    padding: 100px 30px 50px 30px;
    border-radius: initial;
  }
  .top-company .section-inner .top-company-information .japanese-heading {
    margin-bottom: 40px;
    font-size: 3.5rem;
  }
  .top-company .section-inner .top-company-information .content-area {
    flex-direction: column-reverse;
    width: 80%;
    margin: 0 auto;
    height: initial;
  }
  .top-company .section-inner .top-company-information .content-area .left-side .button a {
    font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  .top-company .section-inner .top-company-information {
    padding: 85px 10px 50px 10px;
  }
  .top-company .section-inner .top-company-information .english-heading {
    font-size: 10rem;
    top: -55px;
  }
  .top-company .section-inner .top-company-information .content-area {
    width: 100%;
  }
  .top-company .section-inner .top-company-information .content-area .left-side .button a .arrow {
    top: 24px;
  }
}
.top-customer-voice {
  margin-bottom: 370px;
}
.top-customer-voice .section-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 350px;
  padding-right: 10px;
}
.top-customer-voice .section-inner .english-heading {
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
  position: absolute;
  top: -30px;
  left: 350px;
}
.top-customer-voice .section-inner .japanese-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
}
.top-customer-voice .section-inner .japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #2e8767;
}
.top-customer-voice .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.top-customer-voice .section-inner .button {
  position: absolute;
  top: 18px;
  right: 30px;
}
.top-customer-voice .section-inner .button a {
  position: relative;
  padding: 15px 20px 15px 60px;
  font-size: 2rem;
  font-weight: 600;
  color: #2e8767;
  background-color: #ffffff;
  border-radius: 29px;
  line-height: 1.4;
  overflow: hidden;
  border: 1px solid #2e8767;
  margin-left: 4px;
}
.top-customer-voice .section-inner .button a .circle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #aac00d;
  transition: all 0.5s ease;
  z-index: 0;
}
.top-customer-voice .section-inner .button a .arrow {
  position: absolute;
  top: 26px;
  left: 25px;
  margin-bottom: 4px;
  background: #ffffff;
}
.top-customer-voice .section-inner .button a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  position: absolute;
  box-sizing: border-box;
}
.top-customer-voice .section-inner .button a .arrow.arrow-right {
  display: inline-block;
  width: 20px;
  height: 2px;
}
.top-customer-voice .section-inner .button a .arrow.arrow-right::before {
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  top: 50%;
  right: -1px;
}
.top-customer-voice .section-inner .button a .button-text {
  position: relative;
  z-index: 1;
}
.top-customer-voice .section-inner .button a:hover .circle {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  transform: none;
}
.top-customer-voice .section-inner .thoughts ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-customer-voice .section-inner .thoughts ul li {
  position: relative;
  display: flex;
  width: 46%;
  height: 100%;
}
.top-customer-voice .section-inner .thoughts ul li .left-side {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  background-color: #2e8767;
  border-radius: 29px 0 0 29px;
}
.top-customer-voice .section-inner .thoughts ul li .left-side .person {
  width: 115px;
  margin: 30px 15px 10px;
}
.top-customer-voice .section-inner .thoughts ul li .left-side .name {
  padding-bottom: 25px;
}
.top-customer-voice .section-inner .thoughts ul li .right-side {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0 29px 29px 0;
}
.top-customer-voice .section-inner .thoughts ul li .right-side .customer-voice-number-size {
  position: absolute;
  top: -23px;
  right: 20px;
  line-height: 1;
  font-size: 5rem;
  color: #f3eae1;
}
.top-customer-voice .section-inner .thoughts ul li .right-side .photo-wrapper {
  width: 90%;
  margin: 0 auto;
  border-bottom: 2px solid #2e8767;
}
.top-customer-voice .section-inner .thoughts ul li .right-side .photo-wrapper .star {
  margin: 25px 0 15px 0;
}
.top-customer-voice .section-inner .thoughts ul li .right-side .inner-text {
  width: 90%;
  margin: 0 auto;
  margin-top: 15px;
}
.top-customer-voice .section-inner .thoughts ul li:nth-child(even) {
  margin-top: 110px;
}
.top-customer-voice .section-inner .thoughts ul li::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  background: url("photo/clip.png");
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
.top-customer-voice .section-inner .thoughts ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ddefa0;
  border-radius: 29px;
  transform: rotate(3deg);
  z-index: -1;
}

@media (max-width: 1300px) {
  .top-customer-voice .section-inner {
    padding-left: 10px;
  }
  .top-customer-voice .section-inner .english-heading {
    left: initial;
  }
  .top-customer-voice .section-inner .button {
    right: 5px;
  }
}
@media (max-width: 786px) {
  .top-customer-voice {
    margin-bottom: 430px;
  }
  .top-customer-voice .section-inner .japanese-heading {
    margin-bottom: 40px;
    font-size: 3.5rem;
  }
  .top-customer-voice .section-inner .main-text {
    width: 100%;
  }
  .top-customer-voice .section-inner .button {
    top: initial;
    bottom: -100px;
    right: initial;
    left: 50%;
    width: 235px;
    transform: translateX(-50%);
  }
  .top-customer-voice .section-inner .button a {
    font-size: 1.8rem;
  }
  .top-customer-voice .section-inner .thoughts ul {
    display: block;
  }
  .top-customer-voice .section-inner .thoughts ul li {
    width: 450px;
    margin-bottom: 50px;
  }
  .top-customer-voice .section-inner .thoughts ul li:nth-child(even) {
    margin-top: initial;
    margin-left: auto;
    justify-content: right;
  }
  .top-customer-voice .section-inner .thoughts ul li:nth-child(even)::after {
    content: "";
    right: 0;
    left: initial;
  }
}
@media (max-width: 500px) {
  .top-customer-voice {
    margin-bottom: 390px;
  }
  .top-customer-voice .section-inner .english-heading {
    font-size: 10rem;
  }
  .top-customer-voice .section-inner .button a .arrow {
    top: 24px;
  }
  .top-customer-voice .section-inner .thoughts ul li {
    width: initial;
    min-height: 180px;
  }
  .top-customer-voice .section-inner .thoughts ul li .left-side {
    flex: 1;
    justify-content: center;
  }
  .top-customer-voice .section-inner .thoughts ul li .left-side .person {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .top-customer-voice .section-inner .thoughts ul li .left-side .name {
    padding-bottom: initial;
  }
  .top-customer-voice .section-inner .thoughts ul li .right-side {
    flex: 2;
  }
  .top-customer-voice .section-inner .thoughts ul li .right-side .customer-voice-number-size {
    top: -17px;
    font-size: 4rem;
  }
  .top-customer-voice .section-inner .thoughts ul li .right-side .photo-wrapper .star {
    width: 65%;
    margin: 15px 0 10px 0;
  }
  .top-customer-voice .section-inner .thoughts ul li .right-side .inner-text {
    margin-bottom: 15px;
  }
  .top-customer-voice .section-inner .thoughts ul li:nth-child(even) {
    margin-top: initial;
    margin-left: auto;
    justify-content: right;
  }
  .top-customer-voice .section-inner .thoughts ul li:nth-child(even)::after {
    content: "";
    right: 0;
    left: initial;
  }
}
.transaction-flow {
  margin-bottom: 200px;
  padding-left: 310px;
  position: relative;
}
.transaction-flow .section-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f7f4f1;
  border-radius: 29px;
}
.transaction-flow .section-inner .english-heading {
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
  position: absolute;
  top: -135px;
  right: 30px;
}
.transaction-flow .section-inner .japanese-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
}
.transaction-flow .section-inner .japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #2e8767;
}
.transaction-flow .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 75px;
  text-align: left;
  color: #2e8767;
}
.transaction-flow .section-inner .step-flow ul {
  display: flex;
  justify-content: space-around;
}
.transaction-flow .section-inner .step-flow ul li {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: 30px 0;
  background-color: #ffffff;
  border-radius: 29px;
}
.transaction-flow .section-inner .step-flow ul li h3 {
  position: relative;
  margin-bottom: 70px;
  text-align: center;
}
.transaction-flow .section-inner .step-flow ul li h3 .flow-number-size {
  font-size: 2.2rem;
}
.transaction-flow .section-inner .step-flow ul li h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #2e8767;
}
.transaction-flow .section-inner .step-flow ul li .photo-wrapper {
  flex-grow: 1;
  text-align: center;
}
.transaction-flow .section-inner .step-flow ul li .photo-wrapper img {
  width: 95px;
}
.transaction-flow .section-inner .step-flow ul li .photo-wrapper .mail {
  padding-top: 10px;
}
.transaction-flow .section-inner .step-flow ul li .each-flow {
  margin-top: 20px;
  text-align: center;
}
.transaction-flow .section-inner .step-flow ul li .each-flow .item {
  display: inline;
  background: linear-gradient(transparent 15px, #cfe078 75%);
  color: #2e8767;
  font-weight: 600;
}
.transaction-flow .section-inner .step-flow ul li:nth-child(-n+2)::after {
  content: " ";
  position: absolute;
  top: 37%;
  right: -25%;
  background-image: linear-gradient(90deg, #f8ffdf 0%, #cfe078 100%);
  height: 70px;
  width: 30px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.transaction-flow::before {
  content: " ";
  position: absolute;
  top: -170px;
  right: 0;
  width: 50%;
  height: 80%;
  background-color: #2e8767;
  border-radius: 29px 0 0 0;
  z-index: -1;
}

@media (max-width: 1300px) {
  .transaction-flow {
    padding-left: initial;
  }
}
@media (max-width: 786px) {
  .transaction-flow {
    margin-bottom: 150px;
  }
  .transaction-flow .section-inner {
    padding: 60px 10px;
    border-radius: initial;
  }
  .transaction-flow .section-inner .japanese-heading {
    margin-bottom: 40px;
    font-size: 3.5rem;
  }
  .transaction-flow .section-inner .main-text {
    width: 100%;
  }
  .transaction-flow .section-inner .step-flow ul {
    justify-content: space-between;
  }
  .transaction-flow .section-inner .step-flow ul li {
    width: 27%;
  }
  .transaction-flow .section-inner .step-flow ul li h3 {
    margin-bottom: 40px;
  }
  .transaction-flow .section-inner .step-flow ul li .photo-wrapper img {
    width: 50%;
  }
  .transaction-flow .section-inner .step-flow ul li:nth-child(-n+2)::after {
    right: -27%;
  }
}
@media (max-width: 500px) {
  .transaction-flow .section-inner {
    padding: 60px 0px;
  }
  .transaction-flow .section-inner .english-heading {
    font-size: 10rem;
    top: -105px;
    right: 10px;
  }
  .transaction-flow .section-inner .japanese-heading {
    padding: 0 10px 10px 10px;
    line-height: 1.2;
  }
  .transaction-flow .section-inner .japanese-heading .br {
    display: block;
  }
  .transaction-flow .section-inner .main-text {
    width: 95%;
  }
  .transaction-flow .section-inner .step-flow ul li {
    width: initial;
  }
  .transaction-flow .section-inner .step-flow ul li .photo-wrapper img {
    width: 60%;
  }
  .transaction-flow .section-inner .step-flow ul li .each-flow p {
    padding: initial;
    font-size: 1.4rem;
    background: linear-gradient(transparent 10px, #cfe078 75%);
  }
  .transaction-flow .section-inner .step-flow ul li:nth-child(-n+2)::after {
    top: 40%;
    right: -7%;
    width: 15px;
    height: 50px;
    z-index: 1;
  }
  .transaction-flow::before {
    top: -130px;
  }
}
.footer {
  margin-bottom: 200px;
}
.footer .section-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.footer .section-inner .footer-company-name {
  font-size: 2rem;
  padding-top: 10px;
}
.footer .section-inner .detail-wrapper {
  display: flex;
  justify-content: space-between;
}
.footer .section-inner .detail-wrapper .company-detail, .footer .section-inner .detail-wrapper .site-map, .footer .section-inner .detail-wrapper .youtube-area {
  flex: 1;
}
.footer .section-inner .detail-wrapper .company-detail ul, .footer .section-inner .detail-wrapper .site-map ul, .footer .section-inner .detail-wrapper .youtube-area ul {
  margin-top: 30px;
}
.footer .section-inner .detail-wrapper .company-detail ul .phone-icon .gray-color img, .footer .section-inner .detail-wrapper .site-map ul .phone-icon .gray-color img, .footer .section-inner .detail-wrapper .youtube-area ul .phone-icon .gray-color img {
  width: 20px;
  margin-right: 5px;
  vertical-align: text-top;
}
.footer .section-inner .detail-wrapper .company-detail .link li, .footer .section-inner .detail-wrapper .site-map .link li, .footer .section-inner .detail-wrapper .youtube-area .link li {
  overflow: hidden; /* はみ出した部分を隠す */
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: solid 6px #2e8767;
  position: relative;
  /* 擬似要素で新しいテキストを下に配置 */
}
.footer .section-inner .detail-wrapper .company-detail .link li a, .footer .section-inner .detail-wrapper .site-map .link li a, .footer .section-inner .detail-wrapper .youtube-area .link li a {
  display: block;
  position: relative;
  transition: transform 0.5s ease-in-out;
  color: #71706e;
}
.footer .section-inner .detail-wrapper .company-detail .link li a::after, .footer .section-inner .detail-wrapper .site-map .link li a::after, .footer .section-inner .detail-wrapper .youtube-area .link li a::after {
  content: attr(data-text); /* data-text 属性の内容を表示 */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #71706e;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.footer .section-inner .detail-wrapper .company-detail .link li:hover a, .footer .section-inner .detail-wrapper .site-map .link li:hover a, .footer .section-inner .detail-wrapper .youtube-area .link li:hover a {
  transform: translateY(-100%); /* 既存のテキストを上へ消す */
}
.footer .section-inner .detail-wrapper .company-detail .link li:hover a::after, .footer .section-inner .detail-wrapper .site-map .link li:hover a::after, .footer .section-inner .detail-wrapper .youtube-area .link li:hover a::after {
  transform: translateY(100%); /* 新しいテキストを上から表示 */
}
.footer .section-inner .detail-wrapper .company-detail .link .site-map-company, .footer .section-inner .detail-wrapper .site-map .link .site-map-company, .footer .section-inner .detail-wrapper .youtube-area .link .site-map-company {
  width: 65px;
}
.footer .section-inner .detail-wrapper .company-detail .link .site-map-customer-voice, .footer .section-inner .detail-wrapper .site-map .link .site-map-customer-voice, .footer .section-inner .detail-wrapper .youtube-area .link .site-map-customer-voice {
  width: 85px;
}
.footer .section-inner .detail-wrapper .company-detail .link .site-map-transaction-flow, .footer .section-inner .detail-wrapper .site-map .link .site-map-transaction-flow, .footer .section-inner .detail-wrapper .youtube-area .link .site-map-transaction-flow {
  width: 165px;
}
.footer .section-inner .detail-wrapper .company-detail .link .site-map-question, .footer .section-inner .detail-wrapper .site-map .link .site-map-question, .footer .section-inner .detail-wrapper .youtube-area .link .site-map-question {
  width: 40px;
}
.footer .section-inner .detail-wrapper .company-detail .link .site-map-contact, .footer .section-inner .detail-wrapper .site-map .link .site-map-contact, .footer .section-inner .detail-wrapper .youtube-area .link .site-map-contact {
  width: 100px;
}
.footer .section-inner .detail-wrapper .company-detail .img-wrap, .footer .section-inner .detail-wrapper .site-map .img-wrap, .footer .section-inner .detail-wrapper .youtube-area .img-wrap {
  margin: 30px 0 20px 0;
}
.footer .section-inner .detail-wrapper .site-map {
  flex: initial;
  flex-basis: 250px;
}
.footer .section-inner .copy-right {
  display: block;
  text-align: center;
}
.footer .section-inner .copy-right p {
  margin-top: 100px;
  color: #2e8767;
}

@media (max-width: 1300px) {
  .footer .section-inner {
    padding-left: 10px;
  }
}
@media (max-width: 1000px) {
  .footer .section-inner .logo img {
    width: 250px;
  }
  .footer .section-inner .detail-wrapper {
    display: block;
  }
  .footer .section-inner .detail-wrapper .company-detail {
    display: flex;
    gap: 30px;
  }
  .footer .section-inner .detail-wrapper .site-map .link {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
  }
  .footer .section-inner .detail-wrapper .site-map .link li {
    margin-bottom: 10px;
    padding-left: 5px;
  }
}
@media (max-width: 786px) {
  .footer .section-inner .logo img {
    width: 200px;
  }
  .footer .section-inner .footer-company-name {
    padding-top: 5px;
  }
}
@media (max-width: 500px) {
  .footer .section-inner .detail-wrapper .company-detail {
    display: block;
  }
}
#scroll-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #2e8767;
  cursor: pointer;
  transition: 0.3s;
}
#scroll-top .button_top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 60px;
  height: 60px;
  color: #ffffff;
}
#scroll-top .button_top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
}

#scroll-top::after {
  content: "";
  position: absolute;
  border: 1px solid #f3eae1;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
}

#scroll-top:hover {
  opacity: 0.7;
}

.company .overview {
  margin-top: 100px;
  margin-bottom: 200px;
}
.company .overview .section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.company .overview .section-inner .background-image {
  background: url("photo/company-top-vidual.jpg") no-repeat center;
  background-size: cover;
  background-position: center bottom;
  height: 249px;
}
.company .overview .section-inner .background-image .background-color {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(44, 134, 102, 0.6);
}
.company .overview .section-inner .background-image .background-color .top-japanese-heading {
  position: relative;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.company .overview .section-inner .background-image .background-color .top-japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #ffffff;
}
.company .overview .section-inner .background-image .background-color .english-heading {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
}
.company .overview .section-inner .background-image .background-color::after {
  content: "";
  position: absolute;
  border: 3px solid #f3eae1;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.company .overview .section-inner .breadcrumb-trail {
  margin-bottom: 75px;
}
.company .overview .section-inner .breadcrumb-trail ol {
  display: flex;
  margin-top: 5px;
}
.company .overview .section-inner .breadcrumb-trail ol li {
  font-size: 1.4rem;
}
.company .overview .section-inner .breadcrumb-trail ol li .border {
  padding-bottom: 3px;
  background: linear-gradient(transparent 60%, #71706e 30%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
  transition: background-size 0.5s;
}
.company .overview .section-inner .breadcrumb-trail ol li .border:hover {
  background-size: 100% 3px;
}
.company .overview .section-inner .breadcrumb-trail ol li:after {
  content: ">";
  padding: 0 0.5em;
}
.company .overview .section-inner .breadcrumb-trail ol li:last-child:after {
  content: "";
}
.company .overview .section-inner .breadcrumb-trail ol li:last-child a {
  pointer-events: none;
}
.company .overview .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.company .overview .section-inner table {
  width: calc(100% - 70px);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 30px 30px;
}
.company .overview .section-inner table tr td .telephone {
  width: 22px;
  margin-right: 5px;
  vertical-align: text-top;
}
.company .overview .section-inner table tr td .earnings-table {
  width: 22px;
  margin-left: 5px;
  vertical-align: text-top;
}
.company .overview .section-inner table tr td {
  vertical-align: middle;
  border-radius: 12px;
  background-color: #f7f7f7;
  font-size: 1.8rem;
  font-weight: 600;
}
.company .overview .section-inner table tr td .br {
  display: block;
}
.company .overview .section-inner table tr .list-item {
  padding: 15px;
  text-align: center;
  color: #2e8767;
}
.company .overview .section-inner table tr .list-content {
  padding: 15px 15px 15px 30px;
}
.company .overview .section-inner table tr .list-content .margin {
  display: inline-block;
  margin-bottom: 15px;
}
.company .greeting {
  margin-bottom: 200px;
}
.company .greeting .section-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
}
.company .greeting .section-inner .english-heading {
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
  position: absolute;
  top: -80px;
}
.company .greeting .section-inner .japanese-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
}
.company .greeting .section-inner .japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #2e8767;
}
.company .greeting .section-inner .content-area {
  display: flex;
  padding: 50px 30px;
  background: url("photo/representative-photo-blur.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 29px;
}
.company .greeting .section-inner .content-area .left-side {
  position: relative;
  overflow: hidden;
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border-radius: 29px 0 0 29px;
}
.company .greeting .section-inner .content-area .left-side p {
  max-height: 288px;
  overflow: hidden;
  text-align: left;
  transition: max-height 0.3s ease-in-out;
}
.company .greeting .section-inner .content-area .left-side p .margin {
  display: inline-block;
  margin-bottom: 24px;
}
.company .greeting .section-inner .content-area .left-side .button-wrapper {
  margin-top: 5px;
  text-align: right;
}
.company .greeting .section-inner .content-area .left-side .button-wrapper .read-more {
  display: none; /* デフォルトでは非表示 */
  text-align: right;
  background-color: transparent;
  color: #2e8767;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.company .greeting .section-inner .content-area .right-side {
  flex: 1;
}
.company .greeting .section-inner .content-area .right-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  border-radius: 0 29px 29px 0;
}
.company .company-customer-voice {
  margin-bottom: 200px;
}
.company .company-customer-voice .section-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 350px;
  padding-right: 10px;
}
.company .company-customer-voice .section-inner .english-heading {
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
  position: absolute;
  top: -30px;
  left: 350px;
}
.company .company-customer-voice .section-inner .japanese-heading {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
}
.company .company-customer-voice .section-inner .japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #2e8767;
}
.company .company-customer-voice .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.company .company-customer-voice .section-inner .button {
  position: absolute;
  top: 18px;
  right: 30px;
}
.company .company-customer-voice .section-inner .button a {
  position: relative;
  padding: 15px 20px 15px 60px;
  font-size: 2rem;
  font-weight: 600;
  color: #2e8767;
  background-color: #ffffff;
  border-radius: 29px;
  line-height: 1.4;
  overflow: hidden;
  border: 1px solid #2e8767;
  margin-left: 4px;
}
.company .company-customer-voice .section-inner .button a .circle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #aac00d;
  transition: all 0.5s ease;
  z-index: 0;
}
.company .company-customer-voice .section-inner .button a .arrow {
  position: absolute;
  top: 26px;
  left: 25px;
  margin-bottom: 4px;
  background: #ffffff;
}
.company .company-customer-voice .section-inner .button a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  position: absolute;
  box-sizing: border-box;
}
.company .company-customer-voice .section-inner .button a .arrow.arrow-right {
  display: inline-block;
  width: 20px;
  height: 2px;
}
.company .company-customer-voice .section-inner .button a .arrow.arrow-right::before {
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  top: 50%;
  right: -1px;
}
.company .company-customer-voice .section-inner .button a .button-text {
  position: relative;
  z-index: 1;
}
.company .company-customer-voice .section-inner .button a:hover .circle {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  transform: none;
}
.company .company-customer-voice .section-inner .thoughts ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company .company-customer-voice .section-inner .thoughts ul li {
  position: relative;
  display: flex;
  width: 46%;
  height: 100%;
}
.company .company-customer-voice .section-inner .thoughts ul li .left-side {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  background-color: #2e8767;
  border-radius: 29px 0 0 29px;
}
.company .company-customer-voice .section-inner .thoughts ul li .left-side .person {
  width: 115px;
  margin: 30px 15px 10px;
}
.company .company-customer-voice .section-inner .thoughts ul li .left-side .name {
  padding-bottom: 25px;
}
.company .company-customer-voice .section-inner .thoughts ul li .right-side {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0 29px 29px 0;
}
.company .company-customer-voice .section-inner .thoughts ul li .right-side .customer-voice-number-size {
  position: absolute;
  top: -23px;
  right: 20px;
  line-height: 1;
  font-size: 5rem;
  color: #f3eae1;
}
.company .company-customer-voice .section-inner .thoughts ul li .right-side .photo-wrapper {
  width: 90%;
  margin: 0 auto;
  border-bottom: 2px solid #2e8767;
}
.company .company-customer-voice .section-inner .thoughts ul li .right-side .photo-wrapper .star {
  margin: 25px 0 15px 0;
}
.company .company-customer-voice .section-inner .thoughts ul li .right-side .inner-text {
  width: 90%;
  margin: 0 auto;
  margin-top: 15px;
}
.company .company-customer-voice .section-inner .thoughts ul li:nth-child(even) {
  margin-top: 110px;
}
.company .company-customer-voice .section-inner .thoughts ul li::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  background: url("photo/clip.png");
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
.company .company-customer-voice .section-inner .thoughts ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ddefa0;
  border-radius: 29px;
  transform: rotate(3deg);
  z-index: -1;
}

@media (max-width: 1300px) {
  .company .overview .section-inner {
    padding-left: 10px;
  }
  .company .overview .section-inner table tr {
    width: 100%;
  }
  .company .overview .section-inner table tr .list-item {
    width: 100px;
  }
  .company .greeting .section-inner {
    padding-left: initial;
  }
  .company .company-customer-voice .section-inner {
    padding-left: 10px;
  }
  .company .company-customer-voice .section-inner .english-heading {
    left: initial;
  }
  .company .company-customer-voice .section-inner .button {
    right: 5px;
  }
}
@media (max-width: 786px) {
  .company .overview {
    margin-top: 80px;
    margin-bottom: 150px;
  }
  .company .overview .section-inner .background-image .background-color .top-japanese-heading {
    font-size: 3.5rem;
  }
  .company .overview .section-inner .background-image .background-color .english-heading {
    font-size: 6rem;
  }
  .company .overview .section-inner .main-text {
    width: 100%;
  }
  .company .overview .section-inner table {
    width: calc(100% - 20px);
    border-collapse: initial;
    border-spacing: 0px 30px;
  }
  .company .overview .section-inner table tr .list-item {
    display: inline-block;
    margin-right: 20px;
  }
  .company .overview .section-inner table tr .list-content {
    width: 80%;
  }
  .company .greeting {
    margin-bottom: 150px;
  }
  .company .greeting .section-inner .japanese-heading {
    margin-bottom: 40px;
    font-size: 3.5rem;
  }
  .company .greeting .section-inner .content-area {
    width: 80%;
    margin: 0 auto;
    padding: 30px;
    flex-direction: column-reverse;
  }
  .company .greeting .section-inner .content-area .left-side {
    border-radius: 0 0 29px 29px;
  }
  .company .greeting .section-inner .content-area .left-side .content {
    max-height: 193px;
  }
  .company .greeting .section-inner .content-area .right-side {
    flex: initial;
    height: 300px;
  }
  .company .greeting .section-inner .content-area .right-side img {
    -o-object-position: top;
       object-position: top;
    border-radius: 29px 29px 0 0;
  }
  .company .company-customer-voice {
    margin-bottom: 260px;
  }
  .company .company-customer-voice .section-inner .japanese-heading {
    margin-bottom: 40px;
    font-size: 3.5rem;
  }
  .company .company-customer-voice .section-inner .main-text {
    width: 100%;
  }
  .company .company-customer-voice .section-inner .button {
    top: initial;
    bottom: -100px;
    right: initial;
    left: 50%;
    width: 235px;
    transform: translateX(-50%);
  }
  .company .company-customer-voice .section-inner .button a {
    font-size: 1.8rem;
  }
  .company .company-customer-voice .section-inner .thoughts ul {
    display: block;
  }
  .company .company-customer-voice .section-inner .thoughts ul li {
    width: 450px;
    margin-bottom: 50px;
  }
  .company .company-customer-voice .section-inner .thoughts ul li:nth-child(even) {
    margin-top: initial;
    margin-left: auto;
    justify-content: right;
  }
  .company .company-customer-voice .section-inner .thoughts ul li:nth-child(even)::after {
    content: "";
    right: 0;
    left: initial;
  }
}
@media (max-width: 500px) {
  .company .overview .section-inner .background-image {
    background: url("photo/company-top-vidual-sp.jpg") no-repeat center;
    background-size: cover;
    background-position: center bottom;
    height: 200px;
  }
  .company .overview .section-inner table {
    width: initial;
    margin: initial;
    border-spacing: initial;
  }
  .company .overview .section-inner table tr {
    display: block;
    margin-bottom: 30px;
  }
  .company .overview .section-inner table tr .list-item {
    padding: 15px 10px 10px 10px;
    text-align: left;
    background-color: initial;
  }
  .company .overview .section-inner table tr .list-content {
    display: inline-block;
    width: calc(100% - 20px);
    padding: 15px 10px 15px 10px;
  }
  .company .greeting .section-inner .english-heading {
    top: -45px;
    font-size: 10rem;
  }
  .company .greeting .section-inner .content-area {
    width: initial;
    padding: 10px;
    border-radius: initial;
  }
  .company .greeting .section-inner .content-area .left-side {
    border-radius: 0 0 29px 29px;
  }
  .company .greeting .section-inner .content-area .left-side .main-text {
    text-align: left;
  }
  .company .greeting .section-inner .content-area .left-side .button-wrapper .read-more {
    font-size: 1.7rem;
  }
  .company .greeting .section-inner .content-area .right-side img {
    -o-object-position: right;
       object-position: right;
  }
  .company .company-customer-voice .section-inner .english-heading {
    font-size: 10rem;
  }
  .company .company-customer-voice .section-inner .button a .arrow {
    top: 24px;
  }
  .company .company-customer-voice .section-inner .thoughts ul li {
    width: initial;
    min-height: 180px;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .left-side {
    flex: 1;
    justify-content: center;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .left-side .person {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .left-side .name {
    padding-bottom: initial;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .right-side {
    flex: 2;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .right-side .customer-voice-number-size {
    top: -17px;
    font-size: 4rem;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .right-side .photo-wrapper .star {
    width: 65%;
    margin: 15px 0 10px 0;
  }
  .company .company-customer-voice .section-inner .thoughts ul li .right-side .inner-text {
    margin-bottom: 15px;
  }
  .company .company-customer-voice .section-inner .thoughts ul li:nth-child(even) {
    margin-top: initial;
    margin-left: auto;
    justify-content: right;
  }
  .company .company-customer-voice .section-inner .thoughts ul li:nth-child(even)::after {
    content: "";
    right: 0;
    left: initial;
  }
}
.earnings-table .table {
  margin-top: 100px;
  margin-bottom: 200px;
}
.earnings-table .table .section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.earnings-table .table .section-inner .background-image {
  background: url("photo/earnings-top-vidual.jpg") no-repeat center;
  background-size: cover;
  height: 249px;
}
.earnings-table .table .section-inner .background-image .background-color {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(44, 134, 102, 0.6);
}
.earnings-table .table .section-inner .background-image .background-color .top-japanese-heading {
  position: relative;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.earnings-table .table .section-inner .background-image .background-color .top-japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #ffffff;
}
.earnings-table .table .section-inner .background-image .background-color .english-heading {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
}
.earnings-table .table .section-inner .background-image .background-color::after {
  content: "";
  position: absolute;
  border: 3px solid #f3eae1;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.earnings-table .table .section-inner .breadcrumb-trail {
  margin-bottom: 75px;
}
.earnings-table .table .section-inner .breadcrumb-trail ol {
  display: flex;
  margin-top: 5px;
}
.earnings-table .table .section-inner .breadcrumb-trail ol li {
  font-size: 1.4rem;
}
.earnings-table .table .section-inner .breadcrumb-trail ol li .border {
  padding-bottom: 3px;
  background: linear-gradient(transparent 60%, #71706e 30%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
  transition: background-size 0.5s;
}
.earnings-table .table .section-inner .breadcrumb-trail ol li .border:hover {
  background-size: 100% 3px;
}
.earnings-table .table .section-inner .breadcrumb-trail ol li:after {
  content: ">";
  padding: 0 0.5em;
}
.earnings-table .table .section-inner .breadcrumb-trail ol li:last-child:after {
  content: "";
}
.earnings-table .table .section-inner .breadcrumb-trail ol li:last-child a {
  pointer-events: none;
}
.earnings-table .table .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.earnings-table .table .section-inner .unit {
  width: calc(100% - 70px);
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: right;
}
.earnings-table .table .section-inner .table-contents {
  width: calc(100% - 70px);
  margin: 0 auto;
}
.earnings-table .table .section-inner .table-contents .flex-1 {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #71706e;
}
.earnings-table .table .section-inner .table-contents .flex-1 .left-side {
  flex-basis: 45%;
  font-size: 2.5rem;
  font-weight: 600;
  color: #aac00d;
}
.earnings-table .table .section-inner .table-contents .flex-1 .right-side {
  display: flex;
  justify-content: space-around;
  flex-basis: 65%;
}
.earnings-table .table .section-inner .table-contents .flex-1 .right-side .item, .earnings-table .table .section-inner .table-contents .flex-1 .right-side .number {
  display: inline-block;
  width: 100px;
}
.earnings-table .table .section-inner .table-contents .flex-1 .right-side .item-2 {
  display: inline-block;
  width: 116px;
}
.earnings-table .table .section-inner .table-contents .flex-1 .right-side .item, .earnings-table .table .section-inner .table-contents .flex-1 .right-side .item-2 {
  font-weight: 600;
}

@media (max-width: 1300px) {
  .earnings-table .table .section-inner {
    padding-left: 10px;
  }
  .earnings-table .table .section-inner .table-contents .flex-1 .left-side {
    flex-basis: 40%;
    font-size: 2.3rem;
  }
}
@media (max-width: 786px) {
  .earnings-table .table {
    margin-top: 80px;
    margin-bottom: 150px;
  }
  .earnings-table .table .section-inner .background-image .background-color .top-japanese-heading {
    font-size: 3.5rem;
  }
  .earnings-table .table .section-inner .background-image .background-color .english-heading {
    font-size: 6rem;
  }
  .earnings-table .table .section-inner .main-text {
    width: 100%;
  }
  .earnings-table .table .section-inner .unit {
    width: calc(100% - 50px);
  }
  .earnings-table .table .section-inner .table-contents {
    width: calc(100% - 50px);
  }
  .earnings-table .table .section-inner .table-contents .flex-1 {
    display: block;
  }
  .earnings-table .table .section-inner .table-contents .flex-1 .left-side {
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .earnings-table .table .section-inner .background-image {
    background: url("photo/earnings-top-vidual-sp.jpg") no-repeat center;
    background-size: cover;
    height: 200px;
  }
  .earnings-table .table .section-inner .unit {
    width: 100%;
  }
  .earnings-table .table .section-inner .table-contents {
    width: 100%;
  }
  .earnings-table .table .section-inner .table-contents .flex-1 .right-side p {
    margin-bottom: 20px;
  }
  .earnings-table .table .section-inner .table-contents .flex-1 .right-side p .item, .earnings-table .table .section-inner .table-contents .flex-1 .right-side p .number {
    display: block;
  }
}
.customer-voice .voice {
  margin-top: 100px;
  margin-bottom: 200px;
}
.customer-voice .voice .section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.customer-voice .voice .section-inner .background-image {
  background: url("photo/customer-voice-top-vidual.jpg") no-repeat center;
  background-size: cover;
  height: 249px;
}
.customer-voice .voice .section-inner .background-image .background-color {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(44, 134, 102, 0.6);
}
.customer-voice .voice .section-inner .background-image .background-color .top-japanese-heading {
  position: relative;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.customer-voice .voice .section-inner .background-image .background-color .top-japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #ffffff;
}
.customer-voice .voice .section-inner .background-image .background-color .english-heading {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
}
.customer-voice .voice .section-inner .background-image .background-color::after {
  content: "";
  position: absolute;
  border: 3px solid #f3eae1;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.customer-voice .voice .section-inner .breadcrumb-trail {
  margin-bottom: 75px;
}
.customer-voice .voice .section-inner .breadcrumb-trail ol {
  display: flex;
  margin-top: 5px;
}
.customer-voice .voice .section-inner .breadcrumb-trail ol li {
  font-size: 1.4rem;
}
.customer-voice .voice .section-inner .breadcrumb-trail ol li .border {
  padding-bottom: 3px;
  background: linear-gradient(transparent 60%, #71706e 30%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
  transition: background-size 0.5s;
}
.customer-voice .voice .section-inner .breadcrumb-trail ol li .border:hover {
  background-size: 100% 3px;
}
.customer-voice .voice .section-inner .breadcrumb-trail ol li:after {
  content: ">";
  padding: 0 0.5em;
}
.customer-voice .voice .section-inner .breadcrumb-trail ol li:last-child:after {
  content: "";
}
.customer-voice .voice .section-inner .breadcrumb-trail ol li:last-child a {
  pointer-events: none;
}
.customer-voice .voice .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.customer-voice .voice .section-inner .thoughts ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.customer-voice .voice .section-inner .thoughts ul li {
  position: relative;
  display: flex;
  width: 46%;
  height: 100%;
}
.customer-voice .voice .section-inner .thoughts ul li .left-side {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  background-color: #2e8767;
  border-radius: 29px 0 0 29px;
}
.customer-voice .voice .section-inner .thoughts ul li .left-side .person {
  width: 115px;
  margin: 30px 15px 10px;
}
.customer-voice .voice .section-inner .thoughts ul li .left-side .name {
  padding-bottom: 25px;
}
.customer-voice .voice .section-inner .thoughts ul li .right-side {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0 29px 29px 0;
}
.customer-voice .voice .section-inner .thoughts ul li .right-side .customer-voice-number-size {
  position: absolute;
  top: -23px;
  right: 20px;
  line-height: 1;
  font-size: 5rem;
  color: #f3eae1;
}
.customer-voice .voice .section-inner .thoughts ul li .right-side .photo-wrapper {
  width: 90%;
  margin: 0 auto;
  border-bottom: 2px solid #2e8767;
}
.customer-voice .voice .section-inner .thoughts ul li .right-side .photo-wrapper .star {
  margin: 25px 0 15px 0;
}
.customer-voice .voice .section-inner .thoughts ul li .right-side .inner-text {
  width: 90%;
  margin: 0 auto;
  margin-top: 15px;
}
.customer-voice .voice .section-inner .thoughts ul li:nth-child(even) {
  margin-top: 110px;
}
.customer-voice .voice .section-inner .thoughts ul li::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  background: url("photo/clip.png");
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
}
.customer-voice .voice .section-inner .thoughts ul li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ddefa0;
  border-radius: 29px;
  transform: rotate(3deg);
  z-index: -1;
}

@media (max-width: 1300px) {
  .customer-voice .voice .section-inner {
    padding-left: 10px;
  }
}
@media (max-width: 786px) {
  .customer-voice .voice {
    margin-top: 80px;
    margin-bottom: 150px;
  }
  .customer-voice .voice .section-inner .background-image .background-color .top-japanese-heading {
    font-size: 3.5rem;
  }
  .customer-voice .voice .section-inner .background-image .background-color .english-heading {
    font-size: 6rem;
  }
  .customer-voice .voice .section-inner .main-text {
    width: 100%;
  }
  .customer-voice .voice .section-inner .button {
    top: initial;
    bottom: -100px;
    right: initial;
    left: 50%;
    width: 235px;
    transform: translateX(-50%);
  }
  .customer-voice .voice .section-inner .button a {
    font-size: 1.8rem;
  }
  .customer-voice .voice .section-inner .thoughts ul {
    display: block;
  }
  .customer-voice .voice .section-inner .thoughts ul li {
    width: 450px;
    margin-bottom: 50px;
  }
  .customer-voice .voice .section-inner .thoughts ul li:nth-child(even) {
    margin-top: initial;
    margin-left: auto;
    justify-content: right;
  }
  .customer-voice .voice .section-inner .thoughts ul li:nth-child(even)::after {
    content: "";
    right: 0;
    left: initial;
  }
}
@media (max-width: 500px) {
  .customer-voice .voice .section-inner .background-image {
    background: url("photo/customer-voice-top-vidual-sp.jpg") no-repeat center;
    background-size: cover;
    height: 200px;
  }
  .customer-voice .voice .section-inner .thoughts ul li {
    width: initial;
    min-height: 180px;
  }
  .customer-voice .voice .section-inner .thoughts ul li .left-side {
    flex: 1;
    justify-content: center;
  }
  .customer-voice .voice .section-inner .thoughts ul li .left-side .person {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .customer-voice .voice .section-inner .thoughts ul li .left-side .name {
    padding-bottom: initial;
  }
  .customer-voice .voice .section-inner .thoughts ul li .right-side {
    flex: 2;
  }
  .customer-voice .voice .section-inner .thoughts ul li .right-side .customer-voice-number-size {
    top: -17px;
    font-size: 4rem;
  }
  .customer-voice .voice .section-inner .thoughts ul li .right-side .photo-wrapper .star {
    width: 65%;
    margin: 15px 0 10px 0;
  }
  .customer-voice .voice .section-inner .thoughts ul li .right-side .inner-text {
    margin-bottom: 15px;
  }
  .customer-voice .voice .section-inner .thoughts ul li:nth-child(even) {
    margin-top: initial;
    margin-left: auto;
    justify-content: right;
  }
  .customer-voice .voice .section-inner .thoughts ul li:nth-child(even)::after {
    content: "";
    right: 0;
    left: initial;
  }
}
.question .question-answer {
  margin-top: 100px;
  margin-bottom: 200px;
}
.question .question-answer .section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.question .question-answer .section-inner .background-image {
  background: url("photo/question-top-vidual.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 249px;
}
.question .question-answer .section-inner .background-image .background-color {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(44, 134, 102, 0.6);
}
.question .question-answer .section-inner .background-image .background-color .top-japanese-heading {
  position: relative;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.question .question-answer .section-inner .background-image .background-color .top-japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #ffffff;
}
.question .question-answer .section-inner .background-image .background-color .english-heading {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
}
.question .question-answer .section-inner .background-image .background-color::after {
  content: "";
  position: absolute;
  border: 3px solid #f3eae1;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.question .question-answer .section-inner .breadcrumb-trail {
  margin-bottom: 75px;
}
.question .question-answer .section-inner .breadcrumb-trail ol {
  display: flex;
  margin-top: 5px;
}
.question .question-answer .section-inner .breadcrumb-trail ol li {
  font-size: 1.4rem;
}
.question .question-answer .section-inner .breadcrumb-trail ol li .border {
  padding-bottom: 3px;
  background: linear-gradient(transparent 60%, #71706e 30%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
  transition: background-size 0.5s;
}
.question .question-answer .section-inner .breadcrumb-trail ol li .border:hover {
  background-size: 100% 3px;
}
.question .question-answer .section-inner .breadcrumb-trail ol li:after {
  content: ">";
  padding: 0 0.5em;
}
.question .question-answer .section-inner .breadcrumb-trail ol li:last-child:after {
  content: "";
}
.question .question-answer .section-inner .breadcrumb-trail ol li:last-child a {
  pointer-events: none;
}
.question .question-answer .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.question .question-answer .section-inner .accordion-area {
  width: calc(100% - 70px);
  margin: 0 auto;
}
.question .question-answer .section-inner .accordion-area li {
  margin: 0 0 50px 0;
}
.question .question-answer .section-inner .accordion-area li section {
  position: relative;
  border: 3px solid #cfe078;
  border-radius: 12px;
}
.question .question-answer .section-inner .accordion-area li section .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 20px 20px 20px 50px;
  transition: all 0.5s ease;
  font-weight: 500;
}
.question .question-answer .section-inner .accordion-area li section .title .circle {
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fbbc05;
  top: 17px;
  bottom: 0;
  left: 41px;
  z-index: -1;
}
.question .question-answer .section-inner .accordion-area li section .title .question-mark-color {
  color: #ffffff;
}
.question .question-answer .section-inner .accordion-area li section .title::before, .question .question-answer .section-inner .accordion-area li section .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.question .question-answer .section-inner .accordion-area li section .title::before {
  top: 30px;
  right: 50px;
  transform: rotate(0deg);
  background-color: #fbbc05;
}
.question .question-answer .section-inner .accordion-area li section .title::after {
  top: 30px;
  right: 50px;
  transform: rotate(90deg);
  background-color: #fbbc05;
}
.question .question-answer .section-inner .accordion-area li section .title.close::before {
  transform: rotate(45deg);
}
.question .question-answer .section-inner .accordion-area li section .title.close::after {
  transform: rotate(-45deg);
}
.question .question-answer .section-inner .accordion-area li section .box {
  display: none; /*はじめは非表示*/
  margin: 0 50px 0 50px;
  padding: 20px 0;
  border-top: 3px solid #cfe078;
}

@media (max-width: 1300px) {
  .question .question-answer .section-inner {
    padding-left: 10px;
  }
}
@media (max-width: 786px) {
  .question .question-answer {
    margin-top: 80px;
    margin-bottom: 150px;
  }
  .question .question-answer .section-inner .background-image .background-color .top-japanese-heading {
    font-size: 3.5rem;
  }
  .question .question-answer .section-inner .background-image .background-color .english-heading {
    font-size: 6rem;
  }
  .question .question-answer .section-inner .main-text {
    width: 100%;
  }
  .question .question-answer .section-inner .accordion-area {
    width: calc(100% - 20px);
  }
  .question .question-answer .section-inner .accordion-area li section .title {
    padding: 20px 20px 20px 30px;
  }
  .question .question-answer .section-inner .accordion-area li section .title .circle {
    left: 21px;
  }
  .question .question-answer .section-inner .accordion-area li section .title::before {
    right: 30px;
  }
  .question .question-answer .section-inner .accordion-area li section .title::after {
    right: 30px;
  }
  .question .question-answer .section-inner .accordion-area li section .box {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .question .question-answer .section-inner .background-image {
    background: url("photo/question-top-vidual-sp.jpg");
    height: 200px;
  }
  .question .question-answer .section-inner .accordion-area {
    width: 100%;
  }
  .question .question-answer .section-inner .accordion-area li section .title {
    padding: 20px 50px 20px 30px;
    text-indent: -1.7em;
    padding-left: 3.6em;
  }
  .question .question-answer .section-inner .accordion-area li section .title::before {
    right: 20px;
  }
  .question .question-answer .section-inner .accordion-area li section .title::after {
    right: 20px;
  }
}
.contact .contact-form {
  margin-top: 100px;
  margin-bottom: 200px;
}
.contact .contact-form .section-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.contact .contact-form .section-inner .background-image {
  background: url("photo/contact-top-vidual.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 249px;
}
.contact .contact-form .section-inner .background-image .background-color {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: rgba(44, 134, 102, 0.6);
}
.contact .contact-form .section-inner .background-image .background-color .top-japanese-heading {
  position: relative;
  padding-bottom: 10px;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1;
  color: #ffffff;
}
.contact .contact-form .section-inner .background-image .background-color .top-japanese-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 65px;
  height: 5px;
  background-color: #ffffff;
}
.contact .contact-form .section-inner .background-image .background-color .english-heading {
  position: absolute;
  right: 20px;
  bottom: 15px;
  display: inline-block;
  font-family: "Tangerine", serif;
  font-weight: 100;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #f3eae1;
  transform: rotate(-7deg);
}
.contact .contact-form .section-inner .background-image .background-color::after {
  content: "";
  position: absolute;
  border: 3px solid #f3eae1;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
}
.contact .contact-form .section-inner .breadcrumb-trail {
  margin-bottom: 75px;
}
.contact .contact-form .section-inner .breadcrumb-trail ol {
  display: flex;
  margin-top: 5px;
}
.contact .contact-form .section-inner .breadcrumb-trail ol li {
  font-size: 1.4rem;
}
.contact .contact-form .section-inner .breadcrumb-trail ol li .border {
  padding-bottom: 3px;
  background: linear-gradient(transparent 60%, #71706e 30%);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 3px;
  transition: background-size 0.5s;
}
.contact .contact-form .section-inner .breadcrumb-trail ol li .border:hover {
  background-size: 100% 3px;
}
.contact .contact-form .section-inner .breadcrumb-trail ol li:after {
  content: ">";
  padding: 0 0.5em;
}
.contact .contact-form .section-inner .breadcrumb-trail ol li:last-child:after {
  content: "";
}
.contact .contact-form .section-inner .breadcrumb-trail ol li:last-child a {
  pointer-events: none;
}
.contact .contact-form .section-inner .main-text {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 80px;
  text-align: left;
  color: #2e8767;
}
.contact .contact-form .section-inner .wpcf7 {
  width: calc(100% - 70px);
  margin: 0 auto;
}
.contact .contact-form .section-inner .wpcf7 .outer-frame {
  margin-bottom: 50px;
}
.contact .contact-form .section-inner .wpcf7 .outer-frame .each-frame {
  margin-bottom: 20px;
}
.contact .contact-form .section-inner .wpcf7 .outer-frame .each-frame label {
  display: inline-block;
  margin-bottom: 10px;
}
.contact .contact-form .section-inner .wpcf7 .outer-frame .each-frame .wpcf7-form-control {
  width: calc(100% - 20px);
  padding: 10px 10px 10px 10px;
  background-color: #f7f7f7;
  border: none;
  font-size: 1.6rem;
  opacity: 0.6;
  resize: vertical;
}
.contact .contact-form .section-inner .wpcf7 .outer-frame .each-frame .wpcf7-select {
  width: 100%;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .text {
  margin-bottom: 45px;
  text-align: center;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .content-area {
  width: 60%;
  height: 120px;
  margin: 0 auto;
  overflow-x: hidden;
  text-align: left;
  padding: 10px;
  border: 1px solid #71706e;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .content-area::-webkit-scrollbar {
  background: #f7f7f7;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .content-area::-webkit-scrollbar-thumb {
  background-color: #2e8767;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .check-button {
  margin-top: 50px;
  text-align: center;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .check-button .wpcf7-list-item {
  cursor: pointer;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .check-button .wpcf7-list-item input {
  cursor: pointer;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .recaptcha {
  margin: 10px 0 30px 0;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .send-button {
  text-align: center;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .send-button input {
  width: 200px;
  padding: 10px 0;
  font-size: 2rem;
  border: none;
  color: #fff;
  background-color: #2e8767;
  border-radius: 29px;
  cursor: pointer;
  transition: 0.3s;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .send-button input:hover {
  opacity: 0.8;
}
.contact .contact-form .section-inner .wpcf7 .privacy-policy .send-button .wpcf7-spinner {
  display: none;
}
.contact .contact-form .section-inner .wpcf7 .wpcf7-response-output {
  display: none;
}

@media (max-width: 1300px) {
  .contact .contact-form .section-inner {
    padding-left: 10px;
  }
}
@media (max-width: 786px) {
  .contact .contact-form {
    margin-top: 80px;
    margin-bottom: 150px;
  }
  .contact .contact-form .section-inner {
    padding-left: 10px;
  }
  .contact .contact-form .section-inner .background-image .background-color .top-japanese-heading {
    font-size: 3.5rem;
  }
  .contact .contact-form .section-inner .background-image .background-color .english-heading {
    font-size: 6rem;
  }
  .contact .contact-form .section-inner .main-text {
    width: 100%;
  }
  .contact .contact-form .section-inner .wpcf7 {
    width: calc(100% - 20px);
  }
  .contact .contact-form .section-inner .wpcf7 .privacy-policy .content-area {
    width: 80%;
  }
  .contact .contact-form .section-inner .wpcf7 .privacy-policy .send-button input {
    font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  .contact .contact-form .section-inner .background-image {
    background: url("photo/contact-top-vidual-sp.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 200px;
  }
  .contact .contact-form .section-inner .wpcf7 {
    width: 100%;
  }
  .contact .contact-form .section-inner .wpcf7 .privacy-policy .text {
    text-align: left;
  }
  .contact .contact-form .section-inner .wpcf7 .privacy-policy .content-area {
    width: calc(100% - 20px);
  }
}
.send-completely {
  margin-bottom: 200px;
}
.send-completely .section-inner {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 310px;
  padding-right: 10px;
}
.send-completely .section-inner h2 {
  margin: 150px 0 100px 0;
  font-size: 3rem;
  color: #2e8767;
  text-align: center;
}
.send-completely .section-inner .margin {
  margin-bottom: 24px;
}
.send-completely .section-inner .button {
  margin-top: 70px;
  text-align: center;
}
.send-completely .section-inner .button a {
  position: relative;
  padding: 15px 20px 15px 60px;
  font-size: 2rem;
  font-weight: 600;
  color: #2e8767;
  background-color: #ffffff;
  border-radius: 29px;
  line-height: 1.4;
  overflow: hidden;
  border: 1px solid #2e8767;
}
.send-completely .section-inner .button a .circle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #aac00d;
  transition: all 0.5s ease;
  z-index: 0;
}
.send-completely .section-inner .button a .arrow {
  position: absolute;
  top: 26px;
  left: 25px;
  margin-bottom: 4px;
  background: #ffffff;
}
.send-completely .section-inner .button a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  position: absolute;
  box-sizing: border-box;
}
.send-completely .section-inner .button a .arrow.arrow-right {
  display: inline-block;
  width: 20px;
  height: 2px;
}
.send-completely .section-inner .button a .arrow.arrow-right::before {
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  top: 50%;
  right: -1px;
}
.send-completely .section-inner .button a .button-text {
  position: relative;
  z-index: 1;
}
.send-completely .section-inner .button a:hover .circle {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 29px;
  transform: none;
}

@media (max-width: 1300px) {
  .send-completely .section-inner {
    padding-left: 10px;
  }
}
@media (max-width: 786px) {
  .send-completely {
    margin-bottom: 150px;
  }
  .send-completely .section-inner h2 {
    margin: 150px 0 70px 0;
    font-size: 2.3rem;
  }
  .send-completely .section-inner .button a {
    font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  .send-completely .section-inner .button a .arrow {
    top: 24px;
  }
}
.page-404 {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.page-404 h2 {
  margin: 100px 0 40px 0;
  font-size: 3rem;
}
.page-404 p {
  margin-bottom: 40px;
}/*# sourceMappingURL=style.css.map */