@charset "UTF-8";
body {
  font-family: "Helvetica", "Noto Sans JP", sans-serif;
  color: #333;
}

.main-content {
  overflow-x: hidden;
}

img {
  width: 100%;
}

@media screen and (max-width: 700px) {
  .sp-none {
    display: none;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 700px) {
  .pc-none {
    display: block;
  }
}

.underline-orange {
  position: relative;
}
.underline-orange:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #FC8C60;
  position: absolute;
  bottom: 0;
  left: 0;
}

.link-secondary {
  position: relative;
  color: #FC8C60;
  font-weight: 500;
}
.link-secondary:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FC8C60;
  position: absolute;
  bottom: 0;
  left: 0;
}

.accent-secondary {
  color: #FC8C60;
}
.accent-secondary--bold {
  color: #FC8C60;
  font-weight: 500;
}

.js-jump {
  position: relative;
  overflow: hidden;
}

.js-image-default {
  position: relative;
  z-index: 1;
}

.js-image-jump {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: translateY(100%);
  transition: 0.3s;
}
.js-image-jump.active {
  transform: translateY(0%);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
}
@media screen and (max-width: 700px) {
  .header {
    align-items: center;
    padding: 0 2.67vw;
    padding-top: 10px;
  }
}
.header__logo-inner {
  width: 150px;
  aspect-ratio: 15/7;
}
@media screen and (max-width: 700px) {
  .header__logo-inner {
    width: 85px;
  }
}
.header__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__nav {
  display: flex;
}
.header__hamburger, .header__nav-link--contact, .header__nav-link {
  display: block;
  width: 7.77em;
  height: 4.44em;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .header__hamburger, .header__nav-link--contact, .header__nav-link {
    font-size: 15px;
    width: fit-content;
    height: 30px;
  }
}

.header__nav-link--contact {
  background-color: #3181B0;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s;
}
.header__nav-link--contact:hover, .header__nav-link--contact:active {
  background-color: rgb(229.5, 229.5, 229.5);
  color: #3181B0;
}
@media screen and (max-width: 700px) {
  .header__nav-link--contact {
    display: none;
  }
}
.header__hamburger-visibility-hidden {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0;
  overflow: hidden;
  border: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #3181B0;
  transition: opacity 0.3s ease;
}
.header__hamburger {
  position: relative;
  cursor: pointer;
  border: 1px solid #3181B0;
  z-index: 9999;
}
@media screen and (max-width: 700px) {
  .header__hamburger {
    border: none;
  }
}
.header__hamburger.active {
  border-color: transparent;
}
.header__hamburger.active .header__hamburger-line-inner::before {
  transform: translateY(0) rotate(45deg);
}
.header__hamburger.active .header__hamburger-line-inner::after {
  transform: translateY(0) rotate(-45deg);
}
.header__hamburger.active span {
  opacity: 0;
}
.header__hamburger-line-inner {
  position: relative;
  width: 42.86%;
  aspect-ratio: 60/40;
}
@media screen and (max-width: 700px) {
  .header__hamburger-line-inner {
    width: 30px;
  }
}
.header__hamburger-line-inner::before, .header__hamburger-line-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 3px;
  background-color: #3181B0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__hamburger-line-inner::before {
  transform: translateY(-17px);
}
@media screen and (max-width: 700px) {
  .header__hamburger-line-inner::before {
    transform: translateY(-15px);
  }
}
.header__hamburger-line-inner::after {
  transform: translateY(15px);
}
@media screen and (max-width: 700px) {
  .header__hamburger-line-inner::after {
    transform: translateY(13px);
  }
}

.hidemenu {
  position: absolute;
  top: 0;
  right: 0;
  width: 675px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 900;
  visibility: hidden;
  transition: linear 0.14s;
  transform: scaleX(0) translateX(100%);
  transform-origin: 100% 50%;
}
@media screen and (max-width: 700px) {
  .hidemenu {
    z-index: 2000;
    right: 0;
    left: 0;
    top: 17.58vw;
    margin: auto;
    width: 84%;
    opacity: 0;
    transform: none;
    transform-origin: 50% 0;
  }
}
.hidemenu.active {
  transform: scaleX(1) translateX(0);
  visibility: visible;
}
@media screen and (max-width: 700px) {
  .hidemenu.active {
    opacity: 1;
    transform: none;
  }
}
.hidemenu__inner {
  display: flex;
  justify-content: space-between;
  padding: 16% 9.5% 8%;
  padding-right: 4%;
  font-weight: 600;
}
@media screen and (max-width: 700px) {
  .hidemenu__inner {
    display: block;
    padding: 0;
  }
}
.hidemenu__row {
  flex: 0 0 50%;
}
.hidemenu__row:nth-of-type(2) {
  flex-basis: 45%;
}
.hidemenu__item {
  margin-bottom: 43px;
}
@media screen and (max-width: 700px) {
  .hidemenu__item {
    padding: 5vw 0;
    margin-bottom: 0;
    border-bottom: 1px solid #3181B0;
  }
}
.hidemenu__link {
  color: #3181B0;
  font-size: 23px;
}
@media screen and (max-width: 700px) {
  .hidemenu__link {
    padding-right: 5vw;
    padding-left: 12.2vw;
    font-size: 5.5vw;
    display: block;
    position: relative;
  }
  .hidemenu__link--pearent::before {
    content: "＞";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #3181B0;
    left: 5%;
  }
  .hidemenu__link--pearent.is-accordion-open::before {
    content: "ー";
  }
}
.hidemenu__childs {
  margin-top: 15px;
}
@media screen and (max-width: 700px) {
  .hidemenu__childs {
    margin-top: 8%;
    display: none;
  }
  .hidemenu__childs.is-accordion-contents-open {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .hidemenu__child-item {
    padding-left: 9.788vw;
  }
}
.hidemenu__child-item:not(:last-of-type) {
  margin-bottom: 13px;
}
.hidemenu__child-link {
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  .hidemenu__child-link {
    font-size: 3.65vw;
  }
}
.hidemenu__child-link--pickup {
  color: #FC8C60;
  position: relative;
}
.hidemenu__child-icon {
  width: 70px;
  position: absolute;
  right: -80px;
  bottom: -9px;
  display: inline-block;
}

.fv {
  position: relative;
  width: 100%;
  padding-top: 62.69%;
}
@media screen and (max-width: 700px) {
  .fv {
    padding-top: 133.87%;
  }
}
.fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.fv__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.fv__title-inner {
  position: absolute;
  left: 10.81vw;
  top: 10.06vw;
  width: 37.5vw;
}
@media screen and (max-width: 700px) {
  .fv__title-inner {
    top: 72.8vw;
    left: 4.8vw;
    width: 88vw;
  }
}
.fv__title {
  font-size: 3.125vw;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .fv__title {
    font-size: 8vw;
  }
}
.fv__title-1st {
  display: block;
  padding-top: 0.32em;
  padding-bottom: 0.32em;
  padding-right: 0.52em;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.7);
}
.fv__title-2nd {
  display: block;
  padding-top: 0.32em;
  padding-bottom: 0.32em;
  padding-left: 0.52em;
  margin-left: auto;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.7);
}
.fv__company {
  position: absolute;
  bottom: 3vw;
  right: 6.25vw;
  font-size: 6.25vw;
  color: #FC8C60;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(51, 51, 51, 0.16);
}
@media screen and (max-width: 700px) {
  .fv__company {
    font-size: 13.33vw;
    right: 5.07vw;
    bottom: 4vw;
  }
}

.common__title--primary, .common__title {
  position: relative;
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.53em;
  margin-bottom: 1.11em;
}
@media screen and (max-width: 700px) {
  .common__title--primary, .common__title {
    font-size: 32px;
  }
}
.common__title--primary:after, .common__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1.78em;
  height: 5px;
}
@media screen and (max-width: 700px) {
  .common__title--primary:after, .common__title:after {
    width: 2.5em;
  }
}

.common__title:after {
  background-color: #FC8C60;
}
@media screen and (max-width: 700px) {
  .common__title--primary {
    font-size: 25px;
  }
}
.common__title--primary:after {
  background-color: #3181B0;
}
.common__title2--min-margin, .common__title2 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.2em;
}
.common__title2--min-margin:after, .common__title2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5em;
  height: 3px;
  background: linear-gradient(to right, #FC8C60 50%, #D8D8D8 50%);
}
@media screen and (max-width: 700px) {
  .common__title2--min-margin:after, .common__title2:after {
    width: 2.5em;
  }
}

.common__title2 {
  margin-bottom: 5.28em;
}
@media screen and (max-width: 700px) {
  .common__title2 {
    margin-bottom: 3.89em;
    font-size: clamp(18px, 4.8vw, 30px);
  }
}
.common__title2--min-margin {
  margin-bottom: 2.3em;
}
@media screen and (max-width: 700px) {
  .common__title2--min-margin {
    margin-bottom: 2em;
    font-size: 26px;
  }
}
.common__title3 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 0.2em;
  margin-bottom: 5.28em;
}
@media screen and (max-width: 700px) {
  .common__title3 {
    font-size: 18px;
    font-size: clamp(18px, 4.8vw, 30px);
    margin-bottom: 3.89em;
  }
}
.common__title3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5em;
  height: 3px;
  background: linear-gradient(to right, #3181B0 50%, #D8D8D8 50%);
}
@media screen and (max-width: 700px) {
  .common__title3:after {
    width: 2.5em;
  }
}
.common__min-title {
  font-size: 24px;
  color: #3181B0;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.67em;
}
@media screen and (max-width: 700px) {
  .common__min-title {
    font-size: 17px;
  }
}
.common__text {
  font-size: 20px;
  text-align: center;
  line-height: 1.7em;
  margin-bottom: 2.2em;
}
@media screen and (max-width: 700px) {
  .common__text {
    font-size: 14px;
  }
}
.common__accent {
  color: #FC8C60;
}
.common__accent2 {
  position: relative;
  color: #FC8C60;
}
.common__accent2:after {
  content: "";
  height: 2px;
  width: 80%;
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FC8C60;
}
.common__link {
  display: block;
  width: fit-content;
  margin: auto;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
}
.common__link:hover, .common__link:active {
  opacity: 0.6;
}
@media screen and (max-width: 700px) {
  .common__link {
    font-size: 16px;
  }
}
.common__link2--min-text, .common__link2 {
  display: block;
  width: 100%;
  font-weight: 500;
  transition: 0.3s;
  background-color: #3181B0;
  color: #fff;
  padding: 0.6em 0;
  text-align: center;
  border-radius: 3em;
}
.common__link2--min-text:hover, .common__link2:hover, .common__link2--min-text:active, .common__link2:active {
  opacity: 0.6;
}
@media screen and (max-width: 700px) {
  .common__link2--min-text, .common__link2 {
    font-size: 16px;
  }
}

.common__link2 {
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  .common__link2 {
    font-size: 18px;
  }
}
.common__link2--min-text {
  font-size: 18px;
}
.common__link3--square, .common__link3 {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  background-color: #FC8C60;
  color: #fff;
  padding: 0.6em 0;
  text-align: center;
}
.common__link3--square:hover, .common__link3:hover, .common__link3--square:active, .common__link3:active {
  opacity: 0.6;
}
@media screen and (max-width: 700px) {
  .common__link3--square, .common__link3 {
    font-size: 16px;
  }
}

.common__link3 {
  border-radius: 3em;
}
.common__link3--square {
  border-radius: 5px;
}

.section--page-sns, .section--party, .section--page-tea-party, .section--advisory-service, .section--advisory-sit, .section--page-advisory, .section--page-service-le, .section--page-service, .section--green-wavy, .section--secondary-wavy, .section--interview-ob, .section--fact, .section--commitment-content, .section--commitment, .section--page-interview, .section--top-contact, .section--top-join, .section--top-event, .section--top-commitment, .section--top-vision, .section--top-mission, .section {
  padding: 0 2.67vw;
}

.section--top-mission {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 700px) {
  .section--top-mission {
    margin-top: 17.87vw;
  }
}
.section--top-vision {
  background-image: url(../images/top/vison_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 589px;
  height: 36.81vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .section--top-vision {
    background-size: 723px;
    height: 500px;
    min-height: auto;
    background-position: center bottom;
  }
}
.section--top-commitment {
  padding-top: 115px;
  padding-bottom: 200px;
}
@media screen and (max-width: 700px) {
  .section--top-commitment {
    padding-top: 70px;
    padding-bottom: 73px;
  }
}
.section--top-event {
  background-color: #FFFEEA;
  padding-top: 93px;
  padding-bottom: 137px;
  margin-top: 263px;
  margin-bottom: 134px;
}
@media screen and (max-width: 700px) {
  .section--top-event {
    margin-top: 85px;
    padding-top: 67px;
    padding-bottom: 62px;
    margin-bottom: 98px;
  }
}
.section--top-join {
  margin-top: 196px;
}
@media screen and (max-width: 700px) {
  .section--top-join {
    margin-top: 137px;
  }
}
.section--top-event {
  background-color: #FFFEEA;
  padding-top: 93px;
  padding-bottom: 137px;
  margin-top: 263px;
  margin-bottom: 134px;
}
@media screen and (max-width: 700px) {
  .section--top-event {
    margin-top: 85px;
    padding-top: 67px;
    padding-bottom: 62px;
    margin-bottom: 98px;
  }
}
.section--top-contact {
  margin-top: 270px;
  margin-bottom: 160px;
}
@media screen and (max-width: 700px) {
  .section--top-contact {
    margin-top: 140px;
    margin-bottom: 140px;
  }
}
.section--page-interview {
  margin-top: 80px;
}
@media screen and (max-width: 700px) {
  .section--page-interview {
    margin-top: 50px;
  }
}
.section--commitment {
  margin-top: 100px;
}
@media screen and (max-width: 700px) {
  .section--commitment {
    margin-top: 50px;
  }
}
.section--commitment-content {
  margin-top: 200px;
  background-image: url(../images/common/commitment-content-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 138px;
}
@media screen and (max-width: 700px) {
  .section--commitment-content {
    background-image: url(../images/common/commitment-content-bg_sp.png);
    margin-top: 50px;
    padding-top: 90px;
  }
}
.section--fact {
  margin-top: 85px;
  margin-bottom: 33px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 700px) {
  .section--fact {
    margin-bottom: 52px;
    margin-top: 52px;
  }
}
.section--interview-ob {
  padding-top: 160px;
  margin-top: 180px;
  margin-bottom: 160px;
  background-image: url(../images/interview/blue-bg.png);
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  .section--interview-ob {
    padding-top: 80px;
    background-image: url(../images/interview/blue-bg-sp.png);
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.section--secondary-wavy {
  padding-top: 145px;
  padding-bottom: 140px;
  margin-top: 180px;
  margin-bottom: 160px;
  background: linear-gradient(to bottom, transparent 5vw, #FFF5F0 5vw), url(../images/interview/bg_orange-wavy.png);
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  .section--secondary-wavy {
    background: linear-gradient(to bottom, transparent 5vw, #FFF5F0 5vw), url(../images/interview/bg_orange-wavy-sp.png);
    padding-top: 85px;
    padding-bottom: 75px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.section--green-wavy {
  padding-top: 140px;
  margin-bottom: 175px;
  background-image: url(../images/fact/bg_green-wavy.png);
  background-position: top;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 700px) {
  .section--green-wavy {
    background-image: url(../images/fact/bg_green-wavy_sp.png);
    padding-top: 90px;
    margin-bottom: 100px;
  }
}
.section--page-service {
  padding-top: 70px;
  padding-bottom: 259px;
}
@media screen and (max-width: 700px) {
  .section--page-service {
    padding-top: 47px;
    padding-bottom: 130px;
  }
}
.section--page-service-le {
  padding-top: 147px;
  padding-bottom: 259px;
  background: url(../images/service/sec02_bg.png) no-repeat 50% 0;
  background-size: 100% auto;
}
@media screen and (max-width: 700px) {
  .section--page-service-le {
    padding-top: 47px;
    padding-bottom: 0;
  }
}
.section--page-tsumugu {
  padding-top: 147px;
}
@media screen and (max-width: 700px) {
  .section--page-tsumugu {
    padding-top: 70px;
  }
}
.section--page-advisory {
  padding-top: 100px;
  padding-bottom: 49px;
}
@media screen and (max-width: 700px) {
  .section--page-advisory {
    padding-top: 47px;
    padding-bottom: 65px;
  }
}
.section--advisory-sit {
  background: url(../images/advisory-service/bg.png) no-repeat 50% 0;
  background-size: 100% auto;
  padding-top: 147px;
  padding-bottom: 272px;
}
@media screen and (max-width: 700px) {
  .section--advisory-sit {
    padding-top: 83px;
    padding-bottom: 80px;
    background-size: 2239px auto;
  }
}
.section--advisory-service {
  background: url(../images/advisory-service/bg.png) no-repeat 50% 0;
  background-size: 100% auto;
  padding-top: 147px;
  padding-bottom: 272px;
}
@media screen and (max-width: 700px) {
  .section--advisory-service {
    padding-top: 83px;
    padding-bottom: 80px;
    background-size: 2239px auto;
  }
}
.section__wrapper {
  position: relative;
  max-width: 1400px;
  margin: auto;
}
.section--page-tea-party {
  padding-top: 70px;
  padding-bottom: 305px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 700px) {
  .section--page-tea-party {
    padding-top: 47px;
    padding-bottom: 105px;
  }
}
.section--page-sns {
  padding: 54px 0;
}

.top-commitment__items {
  display: flex;
  flex-direction: column;
  gap: 88px;
}
.top-commitment__item {
  position: relative;
  padding-top: 105px;
}
@media screen and (max-width: 700px) {
  .top-commitment__item {
    padding-top: 50vw;
  }
}
.top-commitment__item:nth-child(odd) .top-commitment__image-inner {
  left: 0;
}
.top-commitment__item:nth-child(odd) .top-commitment__number {
  right: 27px;
  top: -0.8em;
}
@media screen and (max-width: 700px) {
  .top-commitment__item:nth-child(odd) .top-commitment__number {
    top: 0;
    right: 4%;
  }
}
.top-commitment__item:nth-child(odd) .top-commitment__text-inner {
  margin-left: auto;
  padding: 60px 45px 45px 70px;
  box-shadow: -20px 20px 0 #FC8C60;
}
@media screen and (max-width: 850px) {
  .top-commitment__item:nth-child(odd) .top-commitment__text-inner {
    padding: 40px 50px 25px 25px;
  }
}
@media screen and (max-width: 700px) {
  .top-commitment__item:nth-child(odd) .top-commitment__text-inner {
    padding: 20px 15px 15px 15px;
    box-shadow: -4vw 4vw 0 #FC8C60;
  }
}
.top-commitment__item:nth-child(even) .top-commitment__image-inner {
  right: 0;
}
.top-commitment__item:nth-child(even) .top-commitment__number {
  left: 27px;
  top: -1em;
}
@media screen and (max-width: 700px) {
  .top-commitment__item:nth-child(even) .top-commitment__number {
    top: 0;
    left: auto;
    right: 2%;
  }
}
.top-commitment__item:nth-child(even) .top-commitment__text-inner {
  margin-right: auto;
  padding: 60px 70px 45px 45px;
  box-shadow: 20px 20px 0 #FC8C60;
}
@media screen and (max-width: 850px) {
  .top-commitment__item:nth-child(even) .top-commitment__text-inner {
    padding: 40px 50px 25px 25px;
  }
}
@media screen and (max-width: 700px) {
  .top-commitment__item:nth-child(even) .top-commitment__text-inner {
    padding: 20px 15px 15px 15px;
    box-shadow: 4vw 4vw 0 #FC8C60;
  }
}
.top-commitment__image-inner {
  position: absolute;
  top: 0;
  width: 57.14%;
  aspect-ratio: 800/536;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .top-commitment__image-inner {
    width: 100%;
  }
}
.top-commitment__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-commitment__number {
  position: absolute;
  font-size: 180px;
  color: #F4F4F4;
  font-weight: 700;
  line-height: 1em;
  z-index: 3;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1400px) {
  .top-commitment__number {
    font-size: clamp(140px, 12.14vw, 170px);
  }
}
@media screen and (max-width: 700px) {
  .top-commitment__number {
    width: 26.67vw;
    aspect-ratio: 100/124;
    transform: translateY(-66%);
  }
}
@media screen and (max-width: 700px) {
  .top-commitment__number-text {
    display: none;
  }
}
.top-commitment__num-image {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 700px) {
  .top-commitment__num-image {
    display: block;
  }
}
.top-commitment__text-inner {
  position: relative;
  min-width: 580px;
  width: 52.57%;
  border-radius: 35px;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 850px) {
  .top-commitment__text-inner {
    min-width: 480px;
  }
}
@media screen and (max-width: 700px) {
  .top-commitment__text-inner {
    width: 86.93vw;
    min-width: auto;
    border-radius: 10px;
  }
}
.top-commitment__item-title {
  font-size: 42px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.95em;
}
@media screen and (max-width: 700px) {
  .top-commitment__item-title {
    font-size: 26px;
    margin-bottom: 1.44em;
  }
}
.top-commitment__item-title-en {
  color: #3181B0;
  font-size: 0.67em;
  font-weight: 400;
  line-height: 1em;
}
.top-commitment__item-min-title {
  font-size: 28px;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 1.71em;
  line-height: 1.2em;
}
@media screen and (max-width: 700px) {
  .top-commitment__item-min-title {
    font-size: 20px;
    margin-bottom: 1.15em;
  }
}
.top-commitment__accent {
  color: #FC8C60;
}
.top-commitment__item-text {
  font-size: 20px;
  line-height: 1.7em;
  margin-bottom: 2.65em;
}
@media screen and (max-width: 700px) {
  .top-commitment__item-text {
    font-size: 16px;
    margin-bottom: 2.75em;
  }
}
.top-commitment__link-inner {
  width: 170px;
  margin-left: auto;
}

.top-fact__items {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media screen and (max-width: 700px) {
  .top-fact__items {
    gap: 100px;
  }
}
.top-fact__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .top-fact__item {
    flex-direction: column;
  }
}
.top-fact__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  .top-fact__item:nth-child(even) {
    flex-direction: column;
  }
}
.top-fact__image-inner {
  width: 40.5%;
}
@media screen and (max-width: 700px) {
  .top-fact__image-inner {
    width: 100%;
  }
}
.top-fact__text-inner {
  width: 56.43%;
}
@media screen and (max-width: 700px) {
  .top-fact__text-inner {
    width: 100%;
  }
}
.top-fact__item-title {
  font-size: 38px;
  color: #FC8C60;
  font-weight: 500;
  margin-bottom: 0.79em;
  line-height: 1.3em;
}
@media screen and (max-width: 700px) {
  .top-fact__item-title {
    font-size: 26px;
  }
}
.top-fact__item-text {
  font-size: 16px;
  line-height: 1.7em;
  margin-bottom: 3.625em;
}
@media screen and (max-width: 700px) {
  .top-fact__item-text {
    font-size: 14px;
    margin-bottom: 2.64em;
  }
}
.top-fact__link-inner {
  max-width: 300px;
}
@media screen and (max-width: 700px) {
  .top-fact__link-inner {
    margin: auto;
  }
}

.top-event__items {
  display: flex;
  flex-direction: column;
  gap: 124px;
}
@media screen and (max-width: 700px) {
  .top-event__items {
    gap: 67px;
  }
}
.top-event__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .top-event__item {
    flex-direction: column;
    gap: 23px;
  }
}
.top-event__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  .top-event__item:nth-child(even) {
    flex-direction: column;
  }
}
.top-event__image-inner {
  width: 42.36%;
}
@media screen and (max-width: 700px) {
  .top-event__image-inner {
    width: 100%;
  }
}
.top-event__text-inner {
  width: 54.21%;
}
@media screen and (max-width: 700px) {
  .top-event__text-inner {
    width: 100%;
  }
}
.top-event__item-title {
  font-size: 38px;
  color: #3181B0;
  font-weight: 500;
  margin-bottom: 0.3em;
  line-height: 1.3em;
}
@media screen and (max-width: 700px) {
  .top-event__item-title {
    font-size: 26px;
  }
}
.top-event__item-min-title {
  font-size: 30px;
  color: #3181B0;
  font-weight: 500;
  margin-bottom: 1em;
  line-height: 1.64em;
}
@media screen and (max-width: 700px) {
  .top-event__item-min-title {
    font-size: 18px;
  }
}
.top-event__item-text {
  font-size: 16px;
  line-height: 1.7em;
  margin-bottom: 3.625em;
}
@media screen and (max-width: 700px) {
  .top-event__item-text {
    font-size: 14px;
    margin-bottom: 2.64em;
  }
}
.top-event__link-inner {
  max-width: 300px;
}
@media screen and (max-width: 700px) {
  .top-event__link-inner {
    margin: auto;
  }
}
.top-event__item-list-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.9em;
}
.top-event__list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6em 1em;
  align-items: center;
  font-size: 16px;
  margin-bottom: 3.19em;
}
.top-event__list-date {
  font-weight: 400;
}
.top-event__list-item {
  color: #3181B0;
  font-weight: 400;
}

.top-company__inner {
  max-width: 750px;
  margin: auto;
}
.top-company__list {
  width: 100%;
  margin-bottom: 50px;
}
.top-company__list-row {
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 700px) {
  .top-company__list-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 26px;
  }
}
.top-company__list-title {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  padding: 1.78em;
  padding-right: 4.5em;
}
@media screen and (max-width: 700px) {
  .top-company__list-title {
    padding: 0;
    font-size: 16px;
  }
}
.top-company__company {
  position: relative;
}
.top-company__ruby {
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.6em;
}
.top-company__list-item {
  font-size: 18px;
  padding-top: 1.78em;
  padding-bottom: 1.78em;
  font-weight: 400;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .top-company__list-item {
    text-align: center;
    font-size: 16px;
    padding-top: 1.1em;
  }
}
.top-company__list-link {
  position: relative;
  padding-bottom: 0.2em;
  margin-left: 1em;
}
@media screen and (max-width: 700px) {
  .top-company__list-link {
    display: block;
    width: fit-content;
    margin: auto;
    margin-top: 1em;
  }
}
.top-company__list-link:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}
.top-company__link-inner {
  max-width: 170px;
  margin: auto;
}
.top-company__products {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
}
.top-company__product {
  display: flex;
  padding: 20px 15px;
  border: 2px solid #D8D8D8;
  gap: 15px;
}
.top-company__product-image-inner {
  width: 87px;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .top-company__product-image-inner {
    width: 100px;
  }
}
.top-company__product-image {
  width: 100%;
}
.top-company__product-right {
  text-align: left;
}
.top-company__product-title-image--tsumugu {
  width: 140px;
}
.top-company__product-title-image--thanks {
  width: 128px;
}
.top-company__product-text {
  font-size: 15px;
  line-height: 1.5em;
  margin-top: 0.5em;
}

.top-join__items {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media screen and (max-width: 700px) {
  .top-join__items {
    gap: 100px;
  }
}
.top-join__item {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 3.79%;
  padding: 0 5%;
}
@media screen and (max-width: 700px) {
  .top-join__item {
    flex-direction: column;
    padding: 0;
  }
}
.top-join__item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: left;
}
@media screen and (max-width: 700px) {
  .top-join__item:nth-child(even) {
    flex-direction: column;
  }
}
.top-join__image-inner {
  width: 42.94%;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .top-join__image-inner {
    width: 100%;
  }
}
.top-join__text-inner {
  width: 100%;
}
.top-join__item-title {
  font-size: 38px;
  color: #3181B0;
  font-weight: 500;
  margin-bottom: 0.79em;
  line-height: 1.3em;
}
@media screen and (max-width: 700px) {
  .top-join__item-title {
    font-size: 26px;
  }
}
.top-join__item-text {
  font-size: 16px;
  line-height: 1.7em;
  margin-bottom: 3.625em;
}
@media screen and (max-width: 700px) {
  .top-join__item-text {
    font-size: 14px;
    margin-bottom: 2.64em;
  }
}
.top-join__link-inner {
  max-width: 300px;
}
@media screen and (max-width: 700px) {
  .top-join__link-inner {
    margin: auto;
  }
}

.footer {
  padding: 0 2.67vw;
  background-color: #3181B0;
}
.footer__wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 45px;
  gap: 70px;
}
@media screen and (max-width: 700px) {
  .footer__wrapper {
    flex-direction: column;
  }
}
.footer__left {
  width: fit-content;
}
@media screen and (max-width: 700px) {
  .footer__right {
    width: 100%;
  }
}
.footer__logo-text {
  color: #fff;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  font-size: 16px;
}
.footer__logo {
  width: 100%;
  max-width: 170px;
}
.footer__menu {
  width: 100%;
  max-width: 600px;
}
.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  font-size: 18px;
}
@media screen and (max-width: 700px) {
  .footer__menu-list {
    flex-direction: column;
    height: 9em;
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .footer__menu-list-item {
    width: 50%;
  }
}
.footer__menu-list-link {
  color: #fff;
  font-weight: 500;
}
.footer__copy {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-top: 3.57em;
  width: 100%;
  padding: 0.7em 0;
}

.contact {
  max-width: 750px;
  margin: auto;
}
.contact__item {
  margin-bottom: 2em;
  font-size: 16px;
}
.contact__item--check {
  margin-bottom: 3em;
  margin-top: 3em;
  font-size: 16px;
}
.contact__item--check label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .contact__item--check label {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.contact__label {
  font-weight: 500;
  display: block;
}
.contact__input-text {
  display: block;
  background-color: #F2F2F2;
  width: 100%;
  padding: 1em;
}
.contact__checkbox {
  margin-bottom: 0.3em;
}
.contact__textarea {
  background-color: #F2F2F2;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  padding: 1em;
  height: 7em;
}
.contact__submit-inner {
  max-width: 95px;
  margin: auto;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item input[type=checkbox] {
  transform: scale(3);
  margin-left: 0.7em;
  margin-right: 1.5em;
}
@media screen and (max-width: 700px) {
  .wpcf7-list-item input[type=checkbox] {
    margin-top: 1.5em;
    margin-right: 0.7em;
  }
}
.wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 500;
}

.page-mv--thanks, .page-mv--sns, .page-mv--tsumugu, .page-mv--tea-party, .page-mv--advisory-service, .page-mv--company, .page-mv--service, .page-mv--engineer-satisfaction, .page-mv--privacy-policy, .page-mv--fact, .page-mv--commitment, .page-mv--interview, .page-mv {
  background-size: cover;
  background-position: center;
  height: 20.81vw;
  min-height: 333px;
}
@media screen and (max-width: 700px) {
  .page-mv--thanks, .page-mv--sns, .page-mv--tsumugu, .page-mv--tea-party, .page-mv--advisory-service, .page-mv--company, .page-mv--service, .page-mv--engineer-satisfaction, .page-mv--privacy-policy, .page-mv--fact, .page-mv--commitment, .page-mv--interview, .page-mv {
    min-height: 0;
    height: 51.2vw;
  }
}

.page-mv--interview {
  background-image: url(../images/interview/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--interview {
    background-image: url(../images/interview/mv_sp.jpg);
  }
}
.page-mv--commitment {
  background-image: url(../images/commitment/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--commitment {
    background-image: url(../images/commitment/mv_sp.jpg);
  }
}
.page-mv--fact {
  background-image: url(../images/fact/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--fact {
    background-image: url(../images/fact/mv_sp.jpg);
  }
}
.page-mv--privacy-policy {
  background-image: url(../images/privacy-policy/mv.png);
}
@media screen and (max-width: 700px) {
  .page-mv--privacy-policy {
    background-image: url(../images/privacy-policy/mv_sp.png);
  }
}
.page-mv--engineer-satisfaction {
  background-image: url(../images/engineer-satisfaction/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--engineer-satisfaction {
    background-image: url(../images/engineer-satisfaction/mv_sp.jpg);
  }
}
.page-mv--service {
  background-image: url(../images/service/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--service {
    background-image: url(../images/service/mv_sp.jpg);
  }
}
.page-mv--company {
  background-image: url(../images/company/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--company {
    background-image: url(../images/company/mv_sp.jpg);
  }
}
.page-mv--service {
  background-image: url(../images/service/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--service {
    background-image: url(../images/service/mv_sp.jpg);
  }
}
.page-mv--advisory-service {
  background-image: url(../images/advisory-service/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--advisory-service {
    background-image: url(../images/advisory-service/mv_sp.jpg);
  }
}
.page-mv--tea-party {
  background-image: url(../images/tea-party/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--tea-party {
    background-image: url(../images/tea-party/mv_sp.jpg);
  }
}
.page-mv--tsumugu {
  background-image: url(../images/tsumugu/mv.jpg);
}
@media screen and (max-width: 700px) {
  .page-mv--tsumugu {
    background-image: url(../images/tsumugu/mv_sp.jpg);
  }
}
.page-mv--tsumugu .common__title {
  visibility: hidden;
}
.page-mv--sns {
  background-image: url(../images/sns/mv.jpg);
  background-position: 50% 100%;
}
@media screen and (max-width: 700px) {
  .page-mv--sns {
    background-image: url(../images/sns/mv_sp.jpg);
  }
}
.page-mv--thanks {
  background-image: url(../images/thanks/mv.jpg);
  background-position: 50% 100%;
}
@media screen and (max-width: 700px) {
  .page-mv--thanks {
    background-image: url(../images/thanks/mv_sp.jpg);
  }
}
.page-mv--thanks .common__title {
  width: 225px;
  margin: auto;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 700px) {
  .page-mv--thanks .common__title {
    width: 110px;
  }
}
.page-mv--thanks .common__title::after {
  display: none;
}
.page-mv__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.page-interview__section-title--blue, .page-interview__section-title {
  font-size: min(12.14vw, 170px);
  position: absolute;
  top: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 700px) {
  .page-interview__section-title--blue, .page-interview__section-title {
    display: none;
  }
}

.page-interview__section-title {
  color: rgba(255, 207, 152, 0.2);
  right: 0;
  transform: rotate(90deg) translate(100%, 0%);
  transform-origin: top right;
  z-index: -1;
}
.page-interview__section-title--blue {
  color: rgba(205, 224, 235, 0.2);
  left: 0;
  transform: rotate(90deg) translateY(-1em);
  transform-origin: top left;
  z-index: 1;
  opacity: 0.2;
}
.page-interview__inner {
  padding-top: 80px;
}
.page-interview__items {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 150px;
  max-width: 920px;
  margin: auto;
}
@media screen and (max-width: 700px) {
  .page-interview__items {
    gap: 70px;
  }
}
.page-interview__item-container:nth-child(even) .page-interview__item {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  .page-interview__item-container:nth-child(even) .page-interview__item {
    flex-direction: column;
    gap: 20px;
  }
}
.page-interview__item {
  display: flex;
  align-items: flex-start;
  gap: 10.87%;
}
@media screen and (max-width: 700px) {
  .page-interview__item {
    flex-direction: column;
    gap: 20px;
  }
}
.page-interview__left-inner {
  width: 34.78%;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .page-interview__left-inner {
    width: 78.87%;
    max-width: 400px;
    margin: auto;
  }
}
.page-interview__image-inner {
  width: 100%;
  aspect-ratio: 320/375;
  border-radius: 13px;
  overflow: hidden;
}
.page-interview__image-default {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-interview__image-jump {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-interview__prof-inner {
  flex-grow: 1;
}
@media screen and (max-width: 700px) {
  .page-interview__prof-inner {
    width: 90%;
    max-width: 460px;
    margin: auto;
  }
}
.page-interview__prof-title-inner {
  display: flex;
  align-items: flex-start;
  font-size: 28px;
  gap: 1.86em;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .page-interview__prof-title-inner {
    width: 100%;
    font-size: 22px;
    justify-content: center;
  }
}
.page-interview__point-image {
  width: 185px;
}
@media screen and (max-width: 700px) {
  .page-interview__point-image {
    display: none;
  }
}
.page-interview__point-image--sp {
  display: none;
  width: 66.07%;
  margin-bottom: 25px;
}
@media screen and (max-width: 700px) {
  .page-interview__point-image--sp {
    display: block;
    margin-left: auto;
  }
}
.page-interview__prof-name--blue, .page-interview__prof-name {
  display: flex;
  flex-direction: column;
  padding-top: 1em;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .page-interview__prof-name--blue, .page-interview__prof-name {
    padding-top: 0;
  }
}

.page-interview__prof-name:after {
  content: "";
  width: 4.32em;
  height: 0.64em;
  background-image: url(../images/common/title-accent1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.page-interview__prof-name--blue:after {
  content: "";
  width: 4.32em;
  height: 0.64em;
  background-image: url(../images/common/title-accent2.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.page-interview__prof-text {
  font-size: 16px;
  line-height: 1.69em;
}
@media screen and (max-width: 700px) {
  .page-interview__prof-text {
    font-size: 14px;
  }
}
.page-interview__prof-list {
  font-size: 16px;
  margin: 0.5em 0 1.75em 0;
  line-height: 1.8em;
}
@media screen and (max-width: 700px) {
  .page-interview__prof-list {
    font-size: 14px;
  }
}
.page-interview__prof-list-item--remarks, .page-interview__prof-list-item {
  display: flex;
  padding-left: 1em;
}
@media screen and (max-width: 700px) {
  .page-interview__prof-list-item--remarks, .page-interview__prof-list-item {
    padding-left: 0;
  }
}
.page-interview__prof-list-item--remarks:not(:last-child), .page-interview__prof-list-item:not(:last-child) {
  margin-bottom: 0.5em;
}

.page-interview__prof-list-item::before {
  content: "・";
}
.page-interview__prof-list-item--remarks::before {
  content: "※";
  margin-right: 0.3em;
}
.page-interview__president-name-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 28px;
  width: 7.28em;
}
@media screen and (max-width: 700px) {
  .page-interview__president-name-inner {
    font-size: 25px;
    justify-content: center;
  }
}
.page-interview__logo {
  width: 100%;
}
.page-interview__facebook-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
@media screen and (max-width: 700px) {
  .page-interview__facebook-inner {
    margin-bottom: 1.5em;
  }
}
.page-interview__facebook {
  width: 1.67em;
  margin-right: 0.5em;
}
.page-interview__facebook-link {
  color: #3181B0;
  text-decoration: underline;
}

.page-commitment__section-title {
  font-size: min(12.14vw, 170px);
  position: absolute;
  top: 0;
  text-transform: uppercase;
  color: rgba(255, 207, 152, 0.2);
  right: 0;
  transform: rotate(90deg) translate(100%, 0%);
  transform-origin: top right;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .page-commitment__section-title {
    display: none;
  }
}
.page-commitment__title-inner {
  background-image: url(../images/commitment/title-line.png);
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  width: 12em;
  margin: auto;
  padding-bottom: 0.8em;
  margin-bottom: 4.625em;
  gap: 0.63em;
}
@media screen and (max-width: 700px) {
  .page-commitment__title-inner {
    flex-direction: column;
    background-position: center;
    align-items: center;
    width: 163px;
    font-size: 26px;
    margin-bottom: 2.69em;
  }
}
.page-commitment__title-small {
  font-size: 0.63em;
  color: #3181B0;
}
.page-commitment__item--not-first, .page-commitment__item {
  display: flex;
  gap: 3.59%;
}
@media screen and (max-width: 700px) {
  .page-commitment__item--not-first, .page-commitment__item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 700px) {
  .page-commitment__item {
    gap: 20px;
  }
}
.page-commitment__item--not-first {
  margin-bottom: 150px;
}
@media screen and (max-width: 700px) {
  .page-commitment__item--not-first {
    flex-direction: column;
    margin-bottom: 45px;
    gap: 45px;
  }
}
.page-commitment__item-image-inner--wide, .page-commitment__item-image-inner {
  min-width: 300px;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .page-commitment__item-image-inner--wide, .page-commitment__item-image-inner {
    width: 100%;
    min-width: 100%;
  }
}

.page-commitment__item-image-inner {
  width: 40.73%;
}
.page-commitment__item-image-inner--wide {
  width: 56%;
}
.page-commitment__item-text-inner {
  flex-grow: 1;
}
.page-commitment__item-title {
  font-size: 38px;
  line-height: 1.3em;
  font-weight: 500;
  color: #FC8C60;
  margin-bottom: 1.09em;
}
@media screen and (max-width: 700px) {
  .page-commitment__item-title {
    font-size: 26px;
    text-align: center;
  }
}
.page-commitment__item-text {
  font-size: 16px;
  line-height: 1.375em;
}
@media screen and (max-width: 700px) {
  .page-commitment__item-text {
    font-size: 14px;
  }
}
.page-commitment__image-container {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.page-commitment__image-inner {
  max-width: 960px;
  margin: auto;
}
.page-commitment__image-inner--content-width {
  max-width: 1400px;
  margin: auto;
  width: 100%;
}
.page-commitment__image-box {
  display: flex;
  max-width: 960px;
  margin: auto;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .page-commitment__image-box {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
}
.page-commitment__image-box-item {
  width: 47.92%;
}
@media screen and (max-width: 700px) {
  .page-commitment__image-box-item {
    width: 100%;
  }
}
.page-commitment__image-box-text {
  font-size: 16px;
  line-height: 1.3em;
  margin-top: 0.9em;
  text-align: center;
  color: #707070;
}

.page-fact {
  position: relative;
}
.page-fact__text {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5em;
}
@media screen and (max-width: 700px) {
  .page-fact__text {
    font-size: 14px;
  }
}
.page-fact__section-title {
  font-size: min(12.14vw, 170px);
  position: absolute;
  top: 0;
  text-transform: uppercase;
  color: rgba(255, 207, 152, 0.2);
  right: 0;
  transform: rotate(90deg) translate(100%, 0%);
  transform-origin: top right;
  z-index: 1;
}
@media screen and (max-width: 700px) {
  .page-fact__section-title {
    display: none;
  }
}
.page-fact__title-inner {
  background-image: url(../images/fact/title-line.png);
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  width: 12em;
  margin: auto;
  padding-bottom: 0.8em;
  margin-bottom: 4.625em;
}
@media screen and (max-width: 700px) {
  .page-fact__title-inner {
    background-size: 6.5em;
    background-position: bottom center;
    padding-bottom: 0.7em;
    font-size: 26px;
    margin-bottom: 2.69em;
    width: 100%;
  }
}
.page-fact__items {
  display: flex;
  flex-direction: column;
  gap: 127px;
}
.page-fact__item {
  display: flex;
  gap: 45px;
}
@media screen and (max-width: 700px) {
  .page-fact__item {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.page-fact__graph-inner {
  width: 570px;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .page-fact__graph-inner {
    width: 100%;
  }
}
.page-fact__graph-title-wrap {
  display: flex;
  margin-bottom: 20px;
}
.page-fact__graph-title {
  display: flex;
  background-color: #FFFEEA;
  border-left: 2px solid #FFCF98;
  padding: 6px 9px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .page-fact__graph-title {
    width: 100%;
    font-size: 0.88rem;
  }
}
.page-fact__graph-content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.page-fact__graph-left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  color: #FC8C60;
}
.page-fact__graph-text {
  font-size: 10px;
}
.page-fact__graph-avarege {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 700px) {
  .page-fact__graph-avarege {
    font-size: 0.7rem;
  }
}
.page-fact__graph-wrap {
  flex: 1 1 auto;
}
.page-fact__graph-main {
  width: 100% !important;
  height: 100% !important;
}
.page-fact__graph-right {
  writing-mode: vertical-rl;
  text-align: center;
  color: #3181B0;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 700px) {
  .page-fact__graph-right {
    font-size: 0.7rem;
  }
}
.page-fact__item-title {
  font-size: 38px;
  font-weight: 500;
  color: #3181B0;
  margin-bottom: 0.9em;
}
@media screen and (max-width: 700px) {
  .page-fact__item-title {
    font-size: 26px;
  }
}
.page-fact__item-title-min {
  font-size: 0.66em;
}
.page-fact__item-min-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .page-fact__item-min-title {
    font-weight: 700;
    font-size: 14px;
  }
}
.page-fact__item-text {
  font-size: 16px;
  line-height: 1.5em;
}
@media screen and (max-width: 700px) {
  .page-fact__item-text {
    font-size: 14px;
  }
}
.page-fact__item-link {
  display: inline-block;
  position: relative;
  color: #FC8C60;
  font-size: 16px;
  margin-top: 1.5em;
  line-height: 1.5em;
  padding-bottom: 0.3em;
}
@media screen and (max-width: 700px) {
  .page-fact__item-link {
    font-size: 14px;
  }
}
.page-fact__item-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FC8C60;
}

.privacy__inner {
  max-width: 750px;
  margin: auto;
  padding: 0 10px;
}
.privacy__title {
  font-size: 18px;
  color: #3181B0;
  font-weight: 500;
  line-height: 1.67em;
}
@media screen and (max-width: 700px) {
  .privacy__title {
    font-size: 15px;
  }
}
.privacy__text {
  font-size: 16px;
  line-height: 1.875em;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .privacy__text {
    font-size: 14px;
  }
}
.privacy__align-right {
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .privacy__align-right {
    margin-top: 40px;
  }
}

.satisfaction__title {
  font-size: 24px;
  width: fit-content;
  margin: auto;
  color: #3181B0;
  font-weight: 500;
  background-image: url(../images/engineer-satisfaction/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding: 0.1em 0 0.54em;
  margin-bottom: 3.75em;
}
@media screen and (max-width: 700px) {
  .satisfaction__title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 4.8em;
  }
}
.satisfaction__accordion-status {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}
.satisfaction__accordion-status:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.satisfaction__accordion-status:after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #707070;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s;
}
.satisfaction__accordion-status.active:after {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 700px) {
  .satisfaction__accordion-status {
    width: 10px;
    height: 10px;
    top: auto;
    right: 0;
    bottom: 8px;
    transform: translateY(-50%);
  }
}
.satisfaction__accordion {
  position: relative;
  cursor: pointer;
  padding: 0 55px 18px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: background-color 0.2s ease;
  padding-top: 10px;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 700px) {
  .satisfaction__accordion {
    padding: 0 40px 8px 0;
  }
}
.satisfaction__accordion-title {
  font-size: 19px;
  line-height: 1.5em;
}
@media screen and (max-width: 700px) {
  .satisfaction__accordion-title {
    display: flex;
    gap: 22px;
    font-size: 16px;
    font-weight: 500;
  }
}
.satisfaction__accordion-number {
  font-size: 0.89em;
  display: block;
  color: #FC8C60;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .satisfaction__accordion-number {
    font-size: 1em;
  }
}
.satisfaction__accordion:hover {
  background-color: #CDE0EB;
}
.satisfaction__accordion-panel {
  background-color: white;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}
.satisfaction__accordion-detail {
  display: flex;
  gap: 3.07%;
  padding-top: 85px;
}
@media screen and (max-width: 700px) {
  .satisfaction__accordion-detail {
    padding-top: 25px;
    flex-direction: column;
  }
}
.satisfaction__graph-inner {
  width: 44.86%;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .satisfaction__graph-inner {
    width: 100%;
  }
}
.satisfaction__text-inner--bad, .satisfaction__text-inner--good, .satisfaction__text-inner {
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: top right;
  min-height: 265px;
}
@media screen and (max-width: 700px) {
  .satisfaction__text-inner--bad, .satisfaction__text-inner--good, .satisfaction__text-inner {
    background-size: 53.33%;
    background-position: top center;
  }
}

.satisfaction__graph-title-wrap {
  display: flex;
  margin-bottom: 20px;
}
.satisfaction__graph-title {
  display: flex;
  background-color: #FFFEEA;
  border-left: 2px solid #FFCF98;
  padding: 6px 9px;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .satisfaction__graph-title {
    width: 100%;
    font-size: 0.88rem;
  }
}
.satisfaction__graph-content {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.satisfaction__graph-left {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
  color: #FC8C60;
}
.satisfaction__graph-text {
  font-size: 10px;
}
.satisfaction__graph-avarege {
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 700px) {
  .satisfaction__graph-avarege {
    font-size: 0.7rem;
  }
}
.satisfaction__graph-wrap {
  flex: 1 1 auto;
}
.satisfaction__graph-main {
  width: 100% !important;
  height: 100% !important;
}
.satisfaction__graph-right {
  writing-mode: vertical-rl;
  text-align: center;
  color: #3181B0;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 700px) {
  .satisfaction__graph-right {
    font-size: 0.7rem;
  }
}
.satisfaction__text-inner--good {
  margin-bottom: 50px;
  background-image: url(../images/engineer-satisfaction/good.png);
}
@media screen and (max-width: 700px) {
  .satisfaction__text-inner--good {
    margin-bottom: 40px;
  }
}
.satisfaction__text-inner--bad {
  background-image: url(../images/engineer-satisfaction/bad.png);
}
.satisfaction__text-title {
  font-size: 20px;
  line-height: 1.5em;
  margin-bottom: 1.5em;
  color: #3181B0;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .satisfaction__text-title {
    font-size: 15px;
    margin-bottom: 1.1em;
  }
}
.satisfaction__list-item {
  display: flex;
  font-size: 16px;
  line-height: 1.6em;
}
@media screen and (max-width: 700px) {
  .satisfaction__list-item {
    font-size: 14px;
    line-height: 2em;
  }
}
.satisfaction__list-item:before {
  content: "・";
}
.satisfaction__answer {
  background-color: #FFFFE8;
  padding: 50px 100px;
  border-radius: 20px;
  background-image: url(../images/engineer-satisfaction/answer_arrow.png);
  background-size: 42.85%;
  background-position: left 50px;
  background-repeat: no-repeat;
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .satisfaction__answer {
    margin-top: 32px;
    padding: 30px 15px;
    background-size: 80%;
    background-position: left 30px;
    background-image: url(../images/engineer-satisfaction/answer_arrow-sp.png);
  }
}
.satisfaction__answer-item:not(:last-child) {
  margin-bottom: 50px;
}
.satisfaction__answer-title {
  font-size: 22px;
  line-height: 1em;
  margin-bottom: 1.5em;
  color: #3181B0;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .satisfaction__answer-title {
    font-size: 15px;
  }
}
.satisfaction__answer-list-item {
  display: flex;
  font-size: 17px;
  line-height: 1.6em;
}
@media screen and (max-width: 700px) {
  .satisfaction__answer-list-item {
    font-size: 14px;
    line-height: 2em;
  }
}
.satisfaction__answer-list-item:before {
  content: "・";
}
.satisfaction__answer-mintitle {
  font-size: 22px;
  line-height: 1em;
  margin-top: 0.8em;
  margin-bottom: 0.3em;
  color: #FC8C60;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .satisfaction__answer-mintitle {
    font-size: 14px;
    margin-top: 1.43em;
  }
}
.satisfaction__answer-text {
  font-size: 17px;
  line-height: 2em;
}
@media screen and (max-width: 700px) {
  .satisfaction__answer-text {
    font-size: 14px;
  }
}

.company__list {
  max-width: 750px;
  margin: auto;
  padding: 0 10px;
  border-top: 1px solid #C1C1C1;
  margin-bottom: 200px;
}
@media screen and (max-width: 700px) {
  .company__list {
    margin-bottom: 160px;
  }
}
.company__text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 700px) {
  .company__text {
    font-size: 12px;
  }
}
.company__list-row {
  border-bottom: 1px solid #C1C1C1;
}
.company__list-title {
  padding: 1em 2em;
  width: 31.46%;
  line-height: 1.875em;
}
@media screen and (max-width: 700px) {
  .company__list-title {
    font-size: 12px;
    padding: 0.5em 0;
    width: 23%;
  }
}
.company__list-detail {
  padding: 1em 0;
  line-height: 1.875em;
}
@media screen and (max-width: 700px) {
  .company__list-detail {
    font-size: 12px;
    padding: 0.5em 0;
  }
}
.company__link {
  color: #FC8C60;
  position: relative;
}
.company__link:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FC8C60;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.company__name {
  position: relative;
  font-size: 16px;
}
.company__ruby {
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.6em;
}
.company__access {
  margin-bottom: 200px;
}
@media screen and (max-width: 700px) {
  .company__access {
    margin-bottom: 145px;
  }
}
.company__map-container {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.company__map-inner {
  width: 100%;
  max-width: 900px;
  margin: auto;
  aspect-ratio: 900/675;
}
.company__map-inner > iframe {
  width: 100%;
  height: 100%;
}
.company__items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 200px;
}
@media screen and (max-width: 700px) {
  .company__items {
    flex-direction: column;
    gap: 95px;
    margin-bottom: 130px;
  }
}
.company__item {
  width: 29.85%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  .company__item {
    width: 100%;
  }
}
.company__item-image-inner {
  width: 100%;
  aspect-ratio: 1/1;
}
.company__item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company__item-text {
  font-size: 16px;
  color: #707070;
  margin-top: 3.375em;
  margin-bottom: 1.31em;
  line-height: 1.75em;
}
@media screen and (max-width: 700px) {
  .company__item-text {
    font-size: 14px;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    padding: 0 20px;
  }
}
.company__item-link-inner {
  margin: auto auto 0 auto;
  max-width: 170px;
  width: 100%;
  font-size: 20px;
}
@media screen and (max-width: 700px) {
  .company__item-link-inner {
    margin: auto;
  }
}
.company__product-items {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-bottom: 200px;
}
@media screen and (max-width: 700px) {
  .company__product-items {
    padding: 0 20px;
    gap: 97px;
    margin-bottom: 145px;
  }
}
.company__product-item {
  display: flex;
  gap: 9.28%;
  justify-content: right;
  align-items: flex-start;
}
@media screen and (max-width: 700px) {
  .company__product-item {
    flex-direction: column;
  }
}
.company__product-image-inner {
  width: 20%;
  min-width: 180px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 700px) {
  .company__product-image-inner {
    width: 100%;
  }
}
.company__product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company__product-text-inner {
  width: 50.36%;
}
@media screen and (max-width: 700px) {
  .company__product-text-inner {
    width: 100%;
  }
}
.company__product-title {
  font-size: 38px;
  color: #FC8C60;
  font-weight: 500;
  margin-bottom: 0.92em;
}
@media screen and (max-width: 700px) {
  .company__product-title {
    font-size: 26px;
    text-align: center;
    margin-top: 1.35em;
    margin-bottom: 0.58em;
  }
}
.company__product-item-subject {
  font-size: 19px;
  line-height: 1.75em;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .company__product-item-subject {
    font-size: 16px;
  }
}
.company__product-text {
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 2.19em;
}
@media screen and (max-width: 700px) {
  .company__product-text {
    font-size: 14px;
    margin-bottom: 2.5em;
  }
}
.company__product-link-inner {
  width: 100%;
  max-width: 170px;
}
@media screen and (max-width: 700px) {
  .company__product-link-inner {
    margin: auto;
  }
}
.company__kenko {
  display: flex;
  align-items: center;
  gap: 10px;
}
.company__kenko-image-inner {
  width: 138px;
  aspect-ratio: 138/46;
}
@media screen and (max-width: 700px) {
  .company__kenko-image-inner {
    width: 103px;
  }
}

.sevice__inner {
  max-width: 750px;
  margin: auto;
  padding: 0 10px;
}
.sevice__title {
  font-size: 18px;
  color: #3181B0;
  font-weight: 500;
  line-height: 1.67em;
}
@media screen and (max-width: 700px) {
  .sevice__title {
    font-size: 15px;
  }
}
.sevice__text {
  font-size: 16px;
  line-height: 1.875em;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .sevice__text {
    font-size: 14px;
  }
}
.sevice__align-right {
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 700px) {
  .sevice__align-right {
    margin-top: 40px;
  }
}

.page-service__title {
  font-weight: 600;
  font-size: 32px;
  width: fit-content;
  margin: auto;
  color: #3181B0;
  background-image: url(../images/service/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding: 0.1em 0 0.54em;
  margin-bottom: 3.75em;
}
@media screen and (max-width: 700px) {
  .page-service__title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 1.8em;
  }
}
.page-service__col {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .page-service__col {
    flex-flow: column;
  }
}
.page-service__thumb {
  flex: 0 0 42%;
}
@media screen and (max-width: 700px) {
  .page-service__thumb {
    flex-basis: auto;
    order: 2;
    height: 204px;
    margin: 47px 0;
  }
  .page-service__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.page-service__main {
  flex: 0 0 55%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .page-service__main {
    display: contents;
  }
}
.page-service__thumb02 {
  flex: 0 0 42%;
}
@media screen and (max-width: 700px) {
  .page-service__thumb02 {
    margin: 47px 0 0;
    order: 2;
  }
}
.page-service__block {
  flex: 0 0 55%;
}
@media screen and (max-width: 700px) {
  .page-service__block {
    order: 1;
  }
}
@media screen and (max-width: 700px) {
  .page-service__texts {
    order: 1;
    padding: 0 5%;
  }
}
.page-service__desc {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 700px) {
  .page-service__desc {
    font-size: 14px;
  }
}
.page-service__desc span {
  font-weight: bold;
  color: #3181B0;
}
.page-service__box {
  background-color: #FFFFE8;
  padding: 26px 15px;
}
@media screen and (max-width: 700px) {
  .page-service__box {
    order: 3;
  }
  .page-service__box .page-service__desc {
    line-height: 2;
  }
}
.page-service__engs {
  position: absolute;
  right: 0;
  top: 80px;
  width: fz(208);
}
@media screen and (max-width: 700px) {
  .page-service__engs {
    display: none;
  }
}
.page-service__catch {
  font-size: 2rem;
  font-weight: bold;
  color: #FC8C60;
  margin-bottom: 35px;
}
@media screen and (max-width: 700px) {
  .page-service__catch {
    font-size: 1.38rem;
    padding: 0 5%;
    margin-bottom: 20px;
  }
}
.page-service__list {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 700px) {
  .page-service__list {
    display: block;
  }
}
.page-service__item {
  width: 30%;
}
@media screen and (max-width: 700px) {
  .page-service__item {
    width: 90%;
    margin: 0 auto;
  }
  .page-service__item:not(:last-of-type) {
    margin-bottom: 6rem;
  }
}
.page-service__item-ttl {
  text-align: center;
  color: #3181B0;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .page-service__item-ttl {
    font-size: 26px;
    margin-bottom: 19px;
    text-align: left;
  }
}
.page-service__item-desc {
  color: #707070;
  line-height: 1.7;
}
@media screen and (max-width: 700px) {
  .page-service__item-desc {
    font-size: 14px;
  }
}
.page-service__item-link {
  color: #3181B0;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 10px;
}
@media screen and (max-width: 700px) {
  .page-service__item-link {
    font-size: 14px;
    margin-top: 3px;
  }
}
.page-service__item-link a {
  border-bottom: 1px solid #3181B0;
}
.page-service__item-link-liner {
  color: #3181B0;
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  .page-service__item-link-liner {
    font-size: 14px;
    line-height: 1.5;
  }
}
.page-service__item-link-liner a {
  border-bottom: 1px solid #3181B0;
}
.page-service__item-movie {
  margin-top: 1rem;
}

.page-tsumugu__title {
  font-weight: 600;
  font-size: 24px;
  width: 369px;
  max-width: 70%;
  margin: auto;
  color: #3181B0;
  background-image: url(../images/tsumugu/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding: 0.1em 0 0.54em;
  margin-bottom: 3.75em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .page-tsumugu__title {
    font-size: 22px;
    margin-bottom: 1.8em;
  }
}
@media screen and (max-width: 700px) {
  .page-tsumugu__gr {
    padding: 0 7.3%;
  }
}
.page-tsumugu__sub-ttl {
  color: #3181B0;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 700px) {
  .page-tsumugu__sub-ttl {
    font-size: 1rem;
    margin-bottom: 22px;
    line-height: 1.8;
  }
}
.page-tsumugu__desc {
  text-align: center;
  line-height: 1.78;
}
@media screen and (max-width: 700px) {
  .page-tsumugu__desc {
    font-size: 14px;
  }
}
.page-tsumugu__bg {
  background: url(../images/tsumugu/service_bg.png) 50% 0 no-repeat;
  background-size: 100% auto;
  padding: 147px 0 118px;
  margin-top: 76px;
}
@media screen and (max-width: 700px) {
  .page-tsumugu__bg {
    margin-top: 58px;
    padding: 83px 0 58px;
  }
}
.page-tsumugu__illust {
  width: 820px;
  max-width: 85%;
  margin: 83px auto 45px;
}
@media screen and (max-width: 700px) {
  .page-tsumugu__illust {
    margin: 21px auto 15px;
  }
}

.page-advisory__title {
  font-weight: 600;
  font-size: 24px;
  width: 369px;
  max-width: 70%;
  margin: auto;
  color: #3181B0;
  background-image: url(../images/tsumugu/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding: 0.1em 0 0.54em;
  margin-bottom: 3.75em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .page-advisory__title {
    font-size: 22px;
    margin-bottom: 1.8em;
  }
}
@media screen and (max-width: 700px) {
  .page-advisory__gr {
    width: 90%;
    margin: 0 auto;
  }
}
.page-advisory__sub-ttl {
  color: #3181B0;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 38px;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .page-advisory__sub-ttl {
    font-size: 1rem;
    margin-bottom: 22px;
  }
}
.page-advisory__read {
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.7;
}
@media screen and (max-width: 700px) {
  .page-advisory__read {
    font-size: 14px;
  }
  .page-advisory__read--sp-left {
    text-align: left;
    font-weight: normal;
  }
}
.page-advisory__col {
  display: flex;
  justify-content: center;
  gap: 47px;
}
@media screen and (max-width: 700px) {
  .page-advisory__col {
    display: block;
  }
}
.page-advisory__col-cap {
  text-align: right;
  margin-top: 10px;
  font-size: 15px;
}
@media screen and (max-width: 700px) {
  .page-advisory__col-cap {
    font-size: 10px;
  }
}
.page-advisory__col-cap a {
  border-bottom: 1px solid #1F78B4;
  color: #1F78B4;
}
.page-advisory__left {
  flex: 0 0 45%;
}
@media screen and (max-width: 700px) {
  .page-advisory__left {
    margin-bottom: 105px;
  }
}
.page-advisory__right {
  flex: 0 0 45%;
}
.page-advisory__arrow {
  margin: 93px auto 33px;
  width: 150px;
}
.page-advisory__info {
  width: 950px;
  max-width: 90%;
  margin: auto;
}
.page-advisory__info-ttl {
  background-color: #FFFFE8;
  color: #FC8C60;
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  padding: 14px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 700px) {
  .page-advisory__info-ttl {
    font-size: 15px;
  }
}
.page-advisory__info-row {
  display: flex;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .page-advisory__info-row {
    display: block;
  }
}
.page-advisory__info-row:not(:last-of-type) {
  margin-bottom: 21px;
}
.page-advisory__info-h {
  border: 1px solid #FC8C60;
  background-color: #FC8C60;
  color: #fff;
  flex: 0 0 200px;
  text-align: center;
  font-size: 20px;
  padding: 12px 0;
}
@media screen and (max-width: 700px) {
  .page-advisory__info-h {
    font-size: 16px;
    padding: 6px 0;
  }
}
.page-advisory__info-d {
  border: 1px solid #FC8C60;
  flex: 1 1 auto;
  font-size: 18px;
  padding: 12px 41px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .page-advisory__info-d {
    text-align: center;
    display: block;
    font-size: 16px;
    padding: 8px 30px;
    line-height: 1.45;
  }
}
.page-advisory__info-d span {
  color: #FC8C60;
}
.page-advisory__info-link {
  text-align: right;
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 18px;
}
@media screen and (max-width: 700px) {
  .page-advisory__info-link {
    font-size: 10px;
  }
}
.page-advisory__info-link a {
  color: #FC8C60;
  border-bottom: 1px solid #FC8C60;
}
.page-advisory__table {
  width: 750px;
  max-width: 100%;
  margin: 39px auto 39px;
}
@media screen and (max-width: 700px) {
  .page-advisory__table {
    margin-bottom: 59px;
  }
}
.page-advisory__table-main {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .page-advisory__table-main {
    width: 96%;
    margin: 0 auto 22px;
  }
}
.page-advisory__table-main th,
.page-advisory__table-main td {
  border: 1px solid #959595;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  color: #707070;
  padding: 11px 5px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .page-advisory__table-main th,
  .page-advisory__table-main td {
    font-size: 12px;
    padding: 5px 1px;
  }
}
.page-advisory__table-main th.right,
.page-advisory__table-main td.right {
  background-color: #FFFFF4;
  color: #191919;
}
.page-advisory__table-main thead th {
  background-color: #D9F1FF;
}
.page-advisory__table-main thead th.orange {
  background-color: #FCE9B8;
  color: #FF6529;
}
.page-advisory__table-cap {
  font-size: 16px;
  color: #707070;
  line-height: 1.8;
  margin-top: 39px;
}
@media screen and (max-width: 700px) {
  .page-advisory__table-cap {
    width: 88%;
    margin: 25px auto 0;
    font-size: 12px;
  }
}
.page-advisory__table-cap dt {
  font-weight: normal;
}
.page-advisory__table-cap ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.page-advisory__table-cap ol li:not(:last-of-type) {
  margin-bottom: 6px;
}
.page-advisory__solution {
  width: 950px;
  max-width: 90%;
  margin: 0 auto 80px;
  text-align: center;
  color: #3181B0;
  font-weight: bold;
  font-size: 38px;
  background-color: #FFFFE8;
  padding: 12px 0;
  line-height: 1.25;
}
@media screen and (max-width: 700px) {
  .page-advisory__solution {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 36px;
  }
}
.page-advisory__illust {
  display: block;
}
@media screen and (max-width: 700px) {
  .page-advisory__illust {
    width: 80%;
    margin: 0 auto;
  }
}

.page-tea-party__read {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.88;
  margin-bottom: 69px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__read {
    font-size: 14px;
    margin-bottom: 57px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
.page-tea-party__read--normal {
  font-weight: normal;
}
@media screen and (max-width: 700px) {
  .page-tea-party__read--normal {
    text-align: left;
    width: 88%;
  }
}
.page-tea-party__bg {
  background: url(../images/tea-party/sec_bg.png) no-repeat 50% 0/100% auto;
  padding-top: 148px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__bg {
    padding-top: 82px;
  }
}
.page-tea-party__title {
  font-weight: 600;
  font-size: 24px;
  width: 369px;
  max-width: 70%;
  margin: auto;
  color: #3181B0;
  background-image: url(../images/tea-party/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding: 0.1em 0 0.54em;
  margin-bottom: 3.75em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .page-tea-party__title {
    font-size: 22px;
    margin-bottom: 1.8em;
  }
}
.page-tea-party__step-item {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.page-tea-party__step-item:not(:last-of-type) {
  margin-bottom: 29px;
}
.page-tea-party__step-num {
  width: 100px;
  margin: 0 auto -40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .page-tea-party__step-num {
    width: 61px;
    margin-bottom: -30px;
  }
}
.page-tea-party__step-col {
  display: flex;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  min-height: 236px;
  border-radius: 10px;
  padding: 60px 25px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__step-col {
    min-height: auto;
    padding: 49px 18px 31px;
    display: block;
    border: 2px solid #E8E8E8;
  }
}
.page-tea-party__step-illust {
  flex: 0 0 200px;
}
.page-tea-party__step-illust--line {
  padding-right: 60px;
  margin-left: 25px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__step-illust--line {
    width: 120px;
    padding: 0;
    margin: 0 auto 20px;
  }
}
.page-tea-party__step-illust--note {
  padding-right: 10px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__step-illust--note {
    width: 120px;
    padding: 0;
    margin: 0 auto 20px;
  }
}
.page-tea-party__step-illust--tea {
  padding-right: 5px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__step-illust--tea {
    width: 120px;
    padding: 0;
    margin: 0 auto 20px;
  }
}
.page-tea-party__step-cap {
  display: block;
  text-align: center;
  color: #3181B0;
  text-decoration: underline;
  font-size: 0.8rem;
  margin-top: 0.1rem;
}
.page-tea-party__step-info {
  flex: 1 1 auto;
}
.page-tea-party__step-desc {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.75;
}
@media screen and (max-width: 700px) {
  .page-tea-party__step-desc {
    font-size: 14px;
  }
}
.page-tea-party__step-line {
  display: inline-block;
  width: 25px;
  margin-top: -20px;
  margin-right: 0.4em;
}
.page-tea-party__step-chat {
  display: inline-block;
  width: 28px;
  margin-right: 0.4em;
}
.page-tea-party__tbs {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
}
.page-tea-party__table {
  width: 100%;
  border-collapse: collapse;
}
.page-tea-party__table:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__table:not(:last-of-type) {
    margin-bottom: 31px;
  }
}
.page-tea-party__table th,
.page-tea-party__table td {
  border: 1px solid #959595;
  padding: 10px 7px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__table th,
  .page-tea-party__table td {
    font-size: 11px;
    padding: 7px 4px;
  }
}
.page-tea-party__table thead th {
  text-align: center;
  background-color: #D9F1FF;
}
@media screen and (max-width: 700px) {
  .page-tea-party__table thead th {
    font-size: 12px;
  }
}
.page-tea-party__table tbody th {
  text-align: center;
  font-weight: normal;
}
.page-tea-party__table tbody td {
  width: 80%;
}
.page-tea-party__table-note {
  font-size: 16px;
  margin-top: 40px;
}
@media screen and (max-width: 700px) {
  .page-tea-party__table-note {
    font-size: 12px;
    margin-top: 13px;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 1.7;
  }
}

.page-sns__title {
  font-weight: 600;
  font-size: 24px;
  width: 369px;
  max-width: 70%;
  margin: auto;
  color: #3181B0;
  background-image: url(../images/tea-party/title_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 1em center;
  padding: 0.1em 0 0.54em;
  margin-bottom: 3.75em;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .page-sns__title {
    font-size: 22px;
    margin-bottom: 1.8em;
  }
}
.page-sns__list {
  max-width: 900px;
  width: 92%;
  margin: auto;
}
.page-sns__block {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 28px 27px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  min-height: 307px;
}
@media screen and (max-width: 700px) {
  .page-sns__block {
    padding: 19px 20px;
  }
}
.page-sns__block:not(:last-of-type) {
  margin-bottom: 142px;
}
@media screen and (max-width: 700px) {
  .page-sns__block:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.page-sns__top {
  display: flex;
}
@media screen and (max-width: 700px) {
  .page-sns__top {
    display: block;
  }
}
.page-sns__texts {
  flex: 1 1 auto;
}
.page-sns__name {
  color: #3181B0;
  font-size: 24px;
  margin-bottom: 13px;
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .page-sns__name {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
.page-sns__desc {
  font-size: 18px;
  line-height: 1.57;
}
@media screen and (max-width: 700px) {
  .page-sns__desc {
    font-size: 14px;
  }
}
.page-sns__thumb {
  flex: 0 0 212px;
  margin-left: 30px;
}
@media screen and (max-width: 700px) {
  .page-sns__thumb {
    margin: 22px auto;
    width: 169px;
  }
}
.page-sns__btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .page-sns__btm {
    display: block;
  }
}
.page-sns__logos {
  display: flex;
  align-items: flex-end;
}
.page-sns__logos-img {
  flex: 0 0 auto;
  margin-right: 10px;
  display: block;
  width: 70px;
}
@media screen and (max-width: 700px) {
  .page-sns__logos-img {
    width: 60px;
  }
}
.page-sns__logos-cap {
  font-size: 18px;
  flex: 1 1 auto;
  margin-bottom: 0.45rem;
  line-height: 1.5;
}
@media screen and (max-width: 700px) {
  .page-sns__logos-cap {
    font-size: 14px;
    margin-bottom: 1rem;
  }
}
.page-sns__note {
  width: 150px;
}
@media screen and (max-width: 700px) {
  .page-sns__note {
    width: 130px;
    margin-left: auto;
  }
}/*# sourceMappingURL=style.css.map */