@charset "UTF-8";
/*****************/
/**** reset *****/
/*****************/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  overflow-x: hidden;
}

a {
  display: block;
  text-decoration: none;
  transition: all 0.6s ease;
  color: black;
}
a:hover {
  opacity: 0.6;
}

.no-link {
  pointer-events: none !important;
}
.no-link * {
  pointer-events: none !important;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

img {
  height: auto;
}

.wp-block-table td {
  border: none;
}

/*****************/
/****   font *****/
/*****************/
.desc {
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 500;
  font-family: zen-kaku-gothic-antique;
}

.bold {
  font-weight: bold;
}

.zen {
  font-family: zen-kaku-gothic-antique;
}

.ttl-color {
  color: #0F252C;
  font-weight: bold;
}

/*****************/
/***animation*****/
/*****************/
.lazy {
  opacity: 0;
  position: relative;
  transform: translate(0%, 50px);
}

.lazy-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1s;
}

.zoomin {
  opacity: 0;
  position: relative;
  transform: translate(50px, 0);
}

.zoomin-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: all 1s;
}

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 9999;
  display: flex;
  transition: all 0.6s ease;
}
.loader-wrapper.animate {
  opacity: 0;
  z-index: -1;
}
.loader-wrapper .loader {
  margin: auto;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #1C8854 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #1C8854);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
          animation: l13 1s infinite linear;
}
@-webkit-keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}

/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  /*****************/
  /***  parts  ***/
  /*****************/
  a[href*=tel] {
    pointer-events: none;
  }
  section {
    position: relative;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 1290px;
    padding-left: 15px;
    padding-right: 15px;
  }
  /*****************/
  /*** nav  ***/
  /*****************/
  .pc-nav .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .pc-nav .menu > li {
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid black;
    position: relative;
  }
  .pc-nav .menu > li a {
    font-size: 1.8rem;
    font-family: zen-kaku-gothic-antique;
  }
  .pc-nav .menu > li .sub-menu {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 150px;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 5;
  }
  .pc-nav .menu > li .sub-menu li a {
    font-size: 14px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: zen-kaku-gothic-antique;
    font-weight: 400;
  }
  .pc-nav .menu > li:last-child {
    padding-right: 0;
    border: none;
  }
  /*****************/
  /***  header  ***/
  /*****************/
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 80px;
    padding-right: 47px;
  }
  .header-logo {
    width: 269px;
  }
  .header-logo img {
    width: 100%;
  }
  /*****************/
  /***  page-header  ***/
  /*****************/
  .page-header {
    height: 493px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  /*****************/
  /***  footer  ***/
  /*****************/
  .footer {
    padding-top: 72px;
    padding-bottom: 50px;
  }
  .footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  .footer-info img {
    width: 310px;
  }
  .footer-info p {
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .footer-nav {
    margin-top: 20px;
  }
  .footer-copy {
    margin-top: 46px;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 400;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  /*****************/
  /***  parts  ***/
  /*****************/
  section {
    position: relative;
  }
  .container {
    width: 100%;
    margin: 0 auto;
    max-width: 1290px;
    padding-left: 15px;
    padding-right: 15px;
  }
  body {
    overflow-x: hidden;
  }
  /*****************/
  /*** nav  ***/
  /*****************/
  .sp-nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: all 0.6s ease;
  }
  .sp-nav.active {
    transform: translateX(0);
  }
  .sp-nav .menu-main-menu-container {
    width: 100%;
  }
  .sp-nav .menu-main-menu-container .menu {
    border-top: 1px solid #ccc;
  }
  .sp-nav .menu-main-menu-container .menu > li {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
  }
  .sp-nav .menu-main-menu-container .menu > li a {
    font-size: 1.6rem;
    text-align: center;
  }
  .sp-nav .menu-main-menu-container .menu > li .sub-menu {
    margin: 0 auto;
    width: 150px;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 5;
  }
  .sp-nav .menu-main-menu-container .menu > li .sub-menu li a {
    font-size: 14px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: zen-kaku-gothic-antique;
    font-weight: 400;
  }
  /*****************/
  /** hamburger  ***/
  /*****************/
  .hamburger-menu {
    width: 50px;
    height: 50px;
    position: fixed;
    border: none;
    background: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0;
    cursor: pointer;
    top: 0;
    right: 0;
    z-index: 100;
  }
  .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #242424;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  .hamburger-menu__bar:first-child {
    top: 16px;
  }
  .hamburger-menu__bar:nth-child(2) {
    top: 24px;
  }
  .hamburger-menu__bar:last-child {
    top: 32px;
  }
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  /*****************/
  /***  header  ***/
  /*****************/
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 20px;
    padding-right: 15px;
  }
  .header-logo {
    width: 150px;
  }
  .header-logo img {
    width: 100%;
  }
  /*****************/
  /***  page-header  ***/
  /*****************/
  .page-header {
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  /*****************/
  /***  footer  ***/
  /*****************/
  .footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .footer-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-info img {
    margin: 0 auto;
    width: 170px;
  }
  .footer-info p {
    margin: 12px auto 0;
    text-align: center;
    font-size: 1.4rem;
  }
  .footer-nav {
    margin-top: 20px;
  }
  .footer-nav .menu {
    border-top: 1px solid black;
  }
  .footer-nav .menu > li {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid black;
    position: relative;
  }
  .footer-nav .menu > li a {
    text-align: center;
    font-size: 1.6rem;
    font-family: zen-kaku-gothic-antique;
  }
  .footer-nav .menu > li .sub-menu {
    margin: 0 auto;
    width: 150px;
    background-color: rgba(255, 255, 255, 0.8);
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 5;
  }
  .footer-nav .menu > li .sub-menu li a {
    font-size: 1.4rem;
    text-align: center;
    padding-top: 7px;
    padding-bottom: 7px;
    font-family: zen-kaku-gothic-antique;
    font-weight: 400;
  }
  .footer-copy {
    margin-top: 25px;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 400;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #front {
    /*****************/
    /****   hero  *****/
    /*****************/
    /*****************/
    /***purpose ******/
    /*****************/
    /*****************/
    /***  intro ******/
    /*****************/
    /*****************/
    /***  work ******/
    /*****************/
    /*****************/
    /***  flow ******/
    /*****************/
    /*****************/
    /***  faq ******/
    /*****************/
    /*****************/
    /***  usage ******/
    /*****************/
    /*****************/
    /***  contact ******/
    /*****************/
    /*****************/
    /***  access ******/
    /*****************/
  }
  #front .hero {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  #front .hero::after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(transparent, white);
  }
  #front .hero-inner {
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    align-items: stretch;
  }
  #front .hero-left {
    padding-top: 77px;
    padding-bottom: 156px;
    width: 42%;
  }
  #front .hero-ttl {
    margin: 0 auto;
    width: 75%;
  }
  #front .hero-ttl img {
    width: 100%;
  }
  #front .hero-desc {
    margin: 0 auto;
    width: 75%;
    margin-top: 73px;
    font-size: 1.8rem;
  }
  #front .hero-right {
    width: 58%;
    background-image: url(../img/hero-front.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front .purpose {
    padding-top: 93px;
    padding-bottom: 76px;
  }
  #front .purpose img {
    margin: 0 auto;
    width: 70%;
    max-width: 1100px;
  }
  #front .intro {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 75px;
    padding-bottom: 50px;
  }
  #front .intro-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .intro-list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  #front .intro-list_item {
    border: 1px solid #707070;
    background-color: white;
  }
  #front .intro-list_item__top {
    display: flex;
    align-items: center;
  }
  #front .intro-list_item__top h3 {
    line-height: 1.6;
  }
  #front .intro-list.list-top {
    margin-top: 70px;
  }
  #front .intro-list.list-top .intro-list_item {
    width: 48%;
    padding-top: 50px;
    padding-bottom: 30px;
    padding-left: 5%;
    padding-right: 5%;
  }
  #front .intro-list.list-top .intro-list_item__top {
    min-height: 120px;
  }
  #front .intro-list.list-top .intro-list_item__top img {
    width: 70px;
  }
  #front .intro-list.list-top .intro-list_item__top h3 {
    margin-left: 10%;
    font-size: 3.75rem;
  }
  #front .intro-list.list-top .intro-list_item__bottom {
    margin-top: 50px;
    font-size: 1.8rem;
  }
  #front .intro-list.list-bottom {
    margin-top: 35px;
  }
  #front .intro-list.list-bottom .intro-list_item {
    width: 31%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 2%;
    padding-right: 2%;
  }
  #front .intro-list.list-bottom .intro-list_item__top img {
    width: 70px;
  }
  #front .intro-list.list-bottom .intro-list_item__top h3 {
    margin-left: 10%;
    font-size: 2.4rem;
  }
  #front .intro-list.list-bottom .intro-list_item__bottom {
    margin-top: 30px;
    font-size: 1.6rem;
  }
  #front .work {
    padding-top: 148px;
    padding-bottom: 148px;
  }
  #front .work-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .work-list {
    margin-top: 77px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #front .work-list_item {
    width: 31%;
    margin-bottom: 25px;
  }
  #front .work-list_item__thumb {
    aspect-ratio: 16/9;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    position: relative;
  }
  #front .work-list_item__thumb h3 {
    position: relative;
    margin: auto;
    font-size: 3.5rem;
    color: white;
    text-align: center;
    z-index: 1;
  }
  #front .work-list_item__desc {
    margin-top: 32px;
    font-size: 1.8rem;
    font-weight: 400;
  }
  #front .work-list_item.item1 .work-list_item__thumb {
    background-image: url(../img/work-list_item1.jpg);
  }
  #front .work-list_item.item2 .work-list_item__thumb {
    background-image: url(../img/work-list_item2.jpg);
  }
  #front .work-list_item.item3 .work-list_item__thumb {
    background-image: url(../img/work-list_item3.jpg);
  }
  #front .work-list_item.item4 .work-list_item__thumb {
    background-image: url(../img/work-list_item3.jpg);
  }
  #front .flow {
    padding-bottom: 123px;
  }
  #front .flow-inner {
    display: flex;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1440px;
  }
  #front .flow-left {
    width: 45%;
    background-image: url(../img/flow-left.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front .flow-right {
    min-width: 620px;
    width: 55%;
    padding-top: 78px;
    padding-bottom: 90px;
  }
  #front .flow-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .flow-timezone {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    width: 500px;
    margin: 78px auto 0;
  }
  #front .flow-timezone span {
    border: 1px solid black;
    padding: 10px 30px;
    margin-right: 25px;
  }
  #front .flow-schedule {
    display: flex;
    align-items: stretch;
    width: 500px;
    margin: 60px auto 0;
  }
  #front .flow-schedule__left {
    width: 199px;
  }
  #front .flow-schedule__left img {
    width: 100%;
  }
  #front .flow-schedule__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 26px;
    padding-bottom: 37px;
    margin-left: 28px;
  }
  #front .flow-schedule__right-item {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
  #front .flow-schedule__right-item span {
    margin-left: 40px;
  }
  #front .flow-option {
    margin-top: 67px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #front .flow-option__item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
  }
  #front .flow-option__item-left {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    background-color: #F6F5F5;
  }
  #front .flow-option__item-left img {
    margin: auto;
  }
  #front .flow-option__item-right {
    font-size: 1.8rem;
    min-height: 60px;
    font-weight: 400;
    text-align: center;
  }
  #front .flow-option__item-right span {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    font-weight: bold;
  }
  #front .flow-option__item.item1 .flow-option__item-left img {
    width: 22px;
  }
  #front .flow-option__item.item2 .flow-option__item-left img {
    width: 34px;
  }
  #front .flow-option__item.item3 .flow-option__item-left img {
    width: 39px;
  }
  #front .flow-option li:last-child {
    margin-right: 0;
  }
  #front .faq-inner {
    display: flex;
    align-items: stretch;
    margin: 0 auto;
    max-width: 1440px;
  }
  #front .faq-right {
    width: 55%;
    background-image: url(../img/faq-right.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front .faq-left {
    min-width: 620px;
    height: 700px;
    width: 45%;
    padding-top: 27px;
    position: relative;
  }
  #front .faq-left_close {
    position: absolute;
    right: 30px;
    bottom: 78px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  #front .faq-left_close span {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 7px;
  }
  #front .faq-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .faq-list {
    margin: 63px auto 0;
    width: 525px;
    padding-left: 23px;
    padding-right: 23px;
  }
  #front .faq-list__item {
    margin-bottom: 42px;
  }
  #front .faq-list__item-q {
    display: flex;
    align-items: center;
    padding-bottom: 23px;
    cursor: pointer;
  }
  #front .faq-list__item-q img {
    width: 88px;
    flex-shrink: 0;
    margin-right: 30px;
  }
  #front .faq-list__item-q h3 {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  #front .faq-list__item-a {
    border-top: 1px solid black;
    padding-top: 23px;
    display: flex;
    align-items: flex-start;
  }
  #front .faq-list__item-a img {
    width: 88px;
    flex-shrink: 0;
    margin-right: 30px;
  }
  #front .faq-list__item-a p {
    font-size: 2rem;
    font-weight: 400;
  }
  #front .usage {
    margin-top: 158px;
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 107px;
    padding-bottom: 74px;
  }
  #front .usage-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .usage-list {
    margin-top: 67px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }
  #front .usage-list__item {
    width: 315px;
    flex-shrink: 0;
  }
  #front .usage-list__item-thumb {
    aspect-ratio: 1/1;
    padding: 30px;
  }
  #front .usage-list__item-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #front .usage-list__item h3 {
    margin-top: 25px;
    text-align: center;
    line-height: 1.6;
    font-size: 2.4rem;
    min-height: 77px;
  }
  #front .usage-list__item p {
    position: relative;
    margin-top: 52px;
    border-top: 3px solid black;
    padding-top: 42px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 1.8rem;
    font-weight: 400;
  }
  #front .usage-list__item p:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #front .contact {
    padding-top: 131px;
    padding-bottom: 131px;
  }
  #front .contact-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .contact-desc {
    margin-top: 50px;
    text-align: center;
    font-size: 1.8rem;
  }
  #front .contact-phone {
    margin: 90px auto 0;
    width: 440px;
    border: 3px solid #1C8854;
    display: flex;
  }
  #front .contact-phone__left {
    width: 82px;
    flex-shrink: 0;
    background-color: #1C8854;
    display: flex;
  }
  #front .contact-phone__left img {
    width: 50px;
    margin: auto;
  }
  #front .contact-phone__right {
    padding: 25px;
    text-align: center;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 400;
    width: 100%;
  }
  #front .contact-phone__right span {
    font-weight: bold;
    display: block;
    font-size: 4.8rem;
    text-align: center;
    color: #1C8854;
    padding-bottom: 26px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
  }
  #front .access {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 75px;
    padding-bottom: 87px;
  }
  #front .access-h2 {
    text-align: center;
    font-size: 4.5rem;
  }
  #front .access-inner {
    margin: 56px auto 0;
    max-width: 942px;
  }
  #front .access-inner h3 {
    font-size: 2.7rem;
  }
  #front .access-inner iframe {
    margin-top: 45px;
    height: 393px;
    width: 100%;
  }
  #front .access-address {
    margin-top: 38px;
    font-size: 2.4rem;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #front {
    /*****************/
    /****   hero  *****/
    /*****************/
    /*****************/
    /***purpose ******/
    /*****************/
    /*****************/
    /***  intro ******/
    /*****************/
    /*****************/
    /***  work ******/
    /*****************/
    /*****************/
    /***  flow ******/
    /*****************/
    /*****************/
    /***  faq ******/
    /*****************/
    /*****************/
    /***  usage ******/
    /*****************/
    /*****************/
    /***  contact ******/
    /*****************/
    /*****************/
    /***  access ******/
    /*****************/
  }
  #front .hero {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  #front .hero-inner {
    margin: 0 auto;
    max-width: 1440px;
    display: flex;
    flex-direction: column-reverse;
  }
  #front .hero-left {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  #front .hero-ttl {
    margin: 30px auto 0;
    width: 75%;
  }
  #front .hero-ttl img {
    width: 100%;
  }
  #front .hero-desc {
    margin: 0 auto;
    width: 90%;
    margin-top: 70px;
    font-size: 1.4rem;
  }
  #front .hero-right {
    height: 300px;
    background-image: url(../img/hero-front.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  #front .hero-right::after {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(transparent, white);
  }
  #front .purpose {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #front .purpose img {
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
  }
  #front .intro {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  #front .intro-h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  #front .intro-list {
    margin-top: 15px;
  }
  #front .intro-list_item {
    border: 1px solid #707070;
    background-color: white;
    padding-top: 20px;
    padding-bottom: 15px;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 15px;
  }
  #front .intro-list_item__top {
    display: flex;
    align-items: center;
  }
  #front .intro-list_item__top img {
    width: 50px;
  }
  #front .intro-list_item__top h3 {
    line-height: 1.6;
    margin-left: 10%;
    font-size: 2rem;
  }
  #front .intro-list_item__bottom {
    margin-top: 30px;
    font-size: 1.4rem;
  }
  #front .work {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #front .work-h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  #front .work-list {
    margin-top: 50px;
  }
  #front .work-list_item {
    margin: 0 auto 25px;
    max-width: 400px;
  }
  #front .work-list_item__thumb {
    aspect-ratio: 16/9;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    position: relative;
  }
  #front .work-list_item__thumb h3 {
    position: relative;
    margin: auto;
    font-size: 2.5rem;
    color: white;
    text-align: center;
    z-index: 1;
  }
  #front .work-list_item__desc {
    margin-top: 18px;
    font-size: 1.6rem;
    font-weight: 400;
  }
  #front .work-list_item.item1 .work-list_item__thumb {
    background-image: url(../img/work-list_item1.jpg);
  }
  #front .work-list_item.item2 .work-list_item__thumb {
    background-image: url(../img/work-list_item2.jpg);
  }
  #front .work-list_item.item3 .work-list_item__thumb {
    background-image: url(../img/work-list_item3.jpg);
  }
  #front .work-list_item.item4 .work-list_item__thumb {
    background-image: url(../img/work-list_item3.jpg);
  }
  #front .flow {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front .flow-inner {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 auto;
    max-width: 1440px;
  }
  #front .flow-left {
    height: 200px;
    background-image: url(../img/flow-left.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front .flow-right {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  #front .flow-h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  #front .flow-timezone {
    padding-left: 15px;
    display: flex;
    font-size: 1.4rem;
    align-items: center;
    margin: 40px auto 0;
  }
  #front .flow-timezone span {
    border: 1px solid black;
    padding: 10px 15px;
    margin-right: 10px;
  }
  #front .flow-schedule {
    display: flex;
    align-items: stretch;
    padding-left: 15px;
    margin: 40px auto 0;
  }
  #front .flow-schedule__left {
    width: 150px;
  }
  #front .flow-schedule__left img {
    width: 100%;
  }
  #front .flow-schedule__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 17px;
    padding-bottom: 24px;
    margin-left: 28px;
  }
  #front .flow-schedule__right-item {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
  #front .flow-schedule__right-item span {
    margin-left: 40px;
  }
  #front .flow-option {
    margin: 30px auto 0;
    width: 250px;
  }
  #front .flow-option__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #front .flow-option__item-left {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: #F6F5F5;
    display: flex;
  }
  #front .flow-option__item-left img {
    margin: auto;
  }
  #front .flow-option__item-right {
    font-size: 1.8rem;
    min-height: 60px;
    font-weight: 400;
    text-align: center;
  }
  #front .flow-option__item-right span {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    font-weight: bold;
  }
  #front .flow-option__item.item1 .flow-option__item-left img {
    width: 31px;
  }
  #front .flow-option__item.item2 .flow-option__item-left img {
    width: 48px;
  }
  #front .flow-option__item.item3 .flow-option__item-left img {
    width: 51px;
  }
  #front .flow-option li:last-child {
    margin-right: 0;
  }
  #front .faq {
    margin-top: 60px;
  }
  #front .faq-inner {
    margin: 0 auto;
    max-width: 1440px;
  }
  #front .faq-right {
    height: 200px;
    background-image: url(../img/faq-right.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  #front .faq-left {
    height: 500px;
    position: relative;
    padding: 15px;
  }
  #front .faq-left_close {
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  #front .faq-left_close span {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 7px;
  }
  #front .faq-h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  #front .faq-list {
    margin: 35px auto 0;
  }
  #front .faq-list__item {
    margin-bottom: 20px;
  }
  #front .faq-list__item-q {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    cursor: pointer;
  }
  #front .faq-list__item-q img {
    width: 45px;
    flex-shrink: 0;
    margin-right: 20px;
  }
  #front .faq-list__item-q h3 {
    font-size: 2rem;
    line-height: 1.6;
  }
  #front .faq-list__item-a {
    border-top: 1px solid black;
    padding-top: 15px;
    display: flex;
    align-items: flex-start;
  }
  #front .faq-list__item-a img {
    width: 45px;
    flex-shrink: 0;
    margin-right: 20px;
  }
  #front .faq-list__item-a p {
    font-size: 1.6rem;
    font-weight: 400;
  }
  #front .usage {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 50px;
    padding-bottom: 40px;
  }
  #front .usage-h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  #front .usage-list {
    margin: 30px auto 0;
    padding-left: 20px;
    position: relative;
    max-width: 420px;
  }
  #front .usage-list::before {
    content: "";
    height: 100%;
    display: block;
    width: 2px;
    background-color: black;
    position: absolute;
    top: 0;
    left: 10px;
  }
  #front .usage-list__item-thumb {
    aspect-ratio: 1/1;
    padding: 15px;
  }
  #front .usage-list__item-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #front .usage-list__item h3 {
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
    font-size: 2rem;
    position: relative;
  }
  #front .usage-list__item h3:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: 50%;
    left: -17px;
    transform: translateY(-50%);
  }
  #front .usage-list__item p {
    position: relative;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  #front .contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #front .contact-h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  #front .contact-desc {
    margin-top: 25px;
    text-align: center;
    font-size: 1.6rem;
  }
  #front .contact-phone {
    margin: 50px auto 0;
    border: 3px solid #1C8854;
    display: flex;
  }
  #front .contact-phone__left {
    width: 82px;
    flex-shrink: 0;
    background-color: #1C8854;
    display: flex;
  }
  #front .contact-phone__left img {
    width: 50px;
    margin: auto;
  }
  #front .contact-phone__right {
    padding: 15px;
    text-align: center;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 400;
    width: 100%;
  }
  #front .contact-phone__right span {
    font-weight: bold;
    display: block;
    font-size: 3rem;
    text-align: center;
    color: #1C8854;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
  }
  #front .access {
    background-image: url(../img/section-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #front .access-h2 {
    text-align: center;
    font-size: 2.5rem;
  }
  #front .access-inner {
    margin: 25px auto 0;
    max-width: 942px;
  }
  #front .access-inner h3 {
    font-size: 2rem;
  }
  #front .access-inner iframe {
    margin-top: 25px;
    height: 393px;
    width: 100%;
  }
  #front .access-address {
    margin-top: 20px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
/*****************/
/****   PC   *****/
/*****************/
@media screen and (min-width: 769px) {
  #about .page-header {
    background-image: url(../img/header-about.jpg);
  }
  #about .info {
    margin-top: 87px;
  }
  #about .info h1 {
    font-size: 6rem;
    color: #0F252C;
    font-weight: 500;
  }
  #about .info .content {
    margin-top: 92px;
  }
  #about .info table tbody tr {
    margin-bottom: 33px;
    display: flex;
  }
  #about .info table tbody tr td {
    width: 50%;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
    font-size: 2rem;
    font-family: zen-kaku-gothic-antique;
    line-height: 1.6;
    font-weight: 500;
  }
  #about .info table tbody tr td a {
    color: #0000EE;
    text-decoration: underline;
  }
}
/*****************/
/****   SP   *****/
/*****************/
@media screen and (max-width: 768px) {
  #about .page-header {
    background-image: url(../img/header-about.jpg);
  }
  #about .info {
    margin-top: 50px;
  }
  #about .info h1 {
    font-size: 3rem;
    color: #0F252C;
    font-weight: 500;
  }
  #about .info .content {
    margin-top: 50px;
  }
  #about .info table tbody tr {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid black;
  }
  #about .info table tbody tr td {
    padding-bottom: 5px;
    font-size: 1.6rem;
    font-family: zen-kaku-gothic-antique;
    line-height: 1.6;
    font-weight: 500;
  }
  #about .info table tbody tr td a {
    color: #0000EE;
    text-decoration: underline;
  }
}
/*# sourceMappingURL=main.css.map */