@charset "UTF-8";
/******************************************************************
Theme Name: 立花商事
******************************************************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;500;600;700&display=swap");
/* CSS Document */
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, label, input, textarea, small, figure, :before, :after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
  word-break: break-all;
  line-height: 1.7em;
  color: #4A4949;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html, h1, h2, h3, h4 {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-feature-settings: "palt";
}

@media screen and (max-width: 750px) {
  html {
    font-size: 3.73vw;
    line-height: 1.785em;
  }
}
article, header, footer, aside, figure, figcaption, nav, section, main, picture {
  display: block;
  box-sizing: border-box;
}

body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  line-height: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.7em;
}

/* iPhone reset */
input, textarea {
  max-width: 100%;
}

input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px;
}
input::-moz-placeholder {
  color: #B2B2B2;
}
input::placeholder {
  color: #B2B2B2;
}

textarea::placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder, input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #B2B2B2;
}

/* IE */
/* Edge */
@media screen and (max-width: 750px) {
  input[type=text] {
    font-size: 16px;
  }
}
/* Common */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
section {
  background-color: #fff;
  padding: 80px 0;
}
@media screen and (max-width: 736px) {
  section {
    padding: 30px 0;
  }
}
section .box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.btn-more {
  display: block;
  text-align: center;
}
.btn-more a {
  display: inline-block;
  margin-top: 80px;
}
.btn-more img {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*---------------------------------*/
header {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: rgba(255, 255, 255, 0.67);
}
@media screen and (max-width: 736px) {
  header {
    display: none;
  }
}
header .logo h1 a {
  display: block;
}
header .logo h1 a img {
  width: 100%;
  height: 50px;
}
header ul {
  display: flex;
  justify-content: space-between;
}
header ul li a {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  padding: 5px 15px;
  border-radius: 3px;
}
header ul li.btn-contact {
  margin-left: 10px;
}
header ul li.btn-contact a {
  font-family: "Poppins", sans-serif;
  background-color: #246FD6;
  color: #fff;
}
header ul li.btn-recruit {
  margin-left: 10px;
}
header ul li.btn-recruit a {
  font-family: "Poppins", sans-serif;
  background-color: #47D86D;
  color: #fff;
}
header .has-submenu {
  position: relative;
  display: flex;
}
header .has-submenu:hover .submenu {
  display: block;
}
header .has-submenu a {
  display: flex;
  align-items: center;
}
header .has-submenu a img.arrow-down {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
header .has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  z-index: 100;
  transition: all 0.3s;
}
header .has-submenu .submenu li {
  padding: 0;
}
header .has-submenu .submenu li a {
  font-size: 14px;
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}
header .has-submenu .submenu li a:hover {
  background-color: #f5f5f5;
}

/* スマホ用ヘッダー */
.sp-header {
  display: none;
}
@media screen and (max-width: 736px) {
  .sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.sp-header .logo h1 a {
  display: block;
}
.sp-header .logo h1 a img {
  width: auto;
  height: 26px;
}
.sp-header .menu-trigger {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}
.sp-header .menu-trigger:hover {
  opacity: 0.8;
}
.sp-header .menu-trigger span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.sp-header .menu-trigger span img {
  width: 100%;
  height: auto;
}

/* スマホ用メニュー */
.sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  overflow-y: auto;
}
.sp-menu.active {
  display: block;
}
.sp-menu .sp-menu-inner {
  padding: 20px 5%;
  position: relative;
  min-height: 100vh;
}
.sp-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 5%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #246FD6;
}
.sp-menu .close-btn:hover {
  opacity: 0.8;
}
.sp-menu .close-btn span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-right: 5px;
  color: #246FD6;
}
.sp-menu .close-btn::after {
  content: "×";
  font-size: 24px;
  font-weight: 300;
  color: #246FD6;
}
.sp-menu .sp-menu-content {
  padding-top: 60px;
}
.sp-menu .sp-menu-nav li {
  border-bottom: 1px solid #eee;
}
.sp-menu .sp-menu-nav li a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #246FD6;
}
.sp-menu .sp-menu-nav li.service-sub {
  padding-left: 20px;
  background-color: #f9f9f9;
}
.sp-menu .sp-menu-nav li.service-sub a {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
.sp-menu .sp-menu-nav li.service-sub a:last-child {
  border-bottom: none;
}

section#cta .box {
  text-align: center;
}
section#cta .box h2 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background-color: #47D86D;
  padding: 20px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
  section#cta .box h2 {
    font-size: 14px;
  }
}
section#cta .box p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
  section#cta .box p {
    font-size: 14px;
  }
}
section#cta .box a {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
section#cta .box ul.external {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 736px) {
  section#cta .box ul.external {
    flex-wrap: wrap;
  }
}
section#cta .box ul.external li {
  width: 24%;
}
@media screen and (max-width: 736px) {
  section#cta .box ul.external li {
    width: 49%;
    margin-bottom: 10px;
  }
}
section#cta .box ul.external li a {
  display: block;
}
section#cta .box ul.city-hall {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 736px) {
  section#cta .box ul.city-hall {
    flex-direction: column;
    margin-top: 0;
  }
}
section#cta .box ul.city-hall li {
  width: 49%;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 736px) {
  section#cta .box ul.city-hall li {
    width: 100%;
    margin-bottom: 10px;
  }
}
section#cta .box ul.city-hall li::after {
  content: "";
  background-image: url(../img/common/arrow-down.png);
  width: 16px;
  height: 9px;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 55px;
  right: 50px;
  transform: translateY(-50%);
}
@media screen and (max-width: 736px) {
  section#cta .box ul.city-hall li::after {
    top: 26px;
    right: 30px;
    width: 12px;
  }
}
section#cta .box ul.city-hall li a {
  display: block;
}
section#cta .box ul.city-hall li > img {
  cursor: pointer;
}
section#cta .box ul.city-hall li .city-child {
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}
section#cta .box ul.city-hall li .city-child li {
  width: 100%;
  margin-bottom: 0;
  border-bottom: 1px solid #D3D3D3;
}
section#cta .box ul.city-hall li .city-child li:last-child {
  margin-bottom: 0;
  border: none;
}
section#cta .box ul.city-hall li .city-child li::after {
  display: none;
}
section#cta .box ul.city-hall li .city-child li a {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  padding: 5px 20px;
  transition: all 0.3s;
  text-align: left;
}
@media screen and (max-width: 736px) {
  section#cta .box ul.city-hall li .city-child li a {
    font-size: 16px;
  }
}
section#cta .box ul.city-hall li .city-child li a:hover {
  color: #246FD6;
}

.scroll {
  position: absolute;
  top: 90%;
  left: 60px;
  width: 30px;
  height: 300px;
  z-index: 10;
}
@media screen and (max-width: 1440px) {
  .scroll {
    left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .scroll {
    display: none;
  }
}
.scroll span.scroll-text {
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 400;
  color: #246FD6;
  position: relative;
}
.scroll span.scroll-text::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 10px;
  width: 2px;
  height: 250px;
  background-color: #246FD6;
}
.scroll span.scroll-dot {
  position: absolute;
  bottom: 58px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #246FD6;
  animation: scrollDotJump 3s ease-out infinite;
}
@keyframes scrollDotJump {
  0% {
    bottom: 235px;
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    bottom: -15px;
    opacity: 0.7;
  }
  91% {
    bottom: -15px;
    opacity: 0;
  }
  100% {
    bottom: 235px;
    opacity: 0;
  }
}

#splash {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100dvh;
  background: #fff;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  width: 320px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
@media screen and (max-width: 736px) {
  .splash-logo {
    width: 200px;
  }
}

/* パララックス背景 */
#pala01, #pala02, #pala03, #pala04 {
  background: transparent;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 736px) {
  #pala01, #pala02, #pala03, #pala04 {
    height: 200px;
  }
}
#pala01::before, #pala02::before, #pala03::before, #pala04::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
}
#pala01.active::before, #pala02.active::before, #pala03.active::before, #pala04.active::before {
  opacity: 1;
}

#pala01::before {
  background-image: url(../img/top/pala01.jpg);
}

#pala02::before {
  background-image: url(../img/top/pala02.jpg);
}

#pala03::before {
  background-image: url(../img/top/pala03.jpg);
}

#pala04::before {
  background-image: url(../img/top/pala04.jpg);
}

footer {
  background-image: url(../img/common/bg-gray.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 0;
  position: relative;
}
@media screen and (max-width: 736px) {
  footer {
    padding: 30px 0 0;
  }
}
footer .btn-top {
  position: absolute;
  top: -30px;
  right: 40px;
  z-index: 1;
}
@media screen and (max-width: 736px) {
  footer .btn-top {
    top: -20px;
    right: 20px;
  }
}
footer .btn-top a {
  width: 60px;
  height: 60px;
  display: block;
}
@media screen and (max-width: 736px) {
  footer .btn-top a {
    width: 40px;
    height: 40px;
  }
}
footer .btn-top a img {
  width: 100%;
  height: auto;
}
footer .box .footer-top {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
footer .box .footer-top .footer-logo {
  text-align: center;
  max-width: 500px;
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 736px) {
  footer .box .footer-top .footer-logo {
    width: 100%;
  }
}
footer .box .footer-top .footer-logo a {
  display: block;
  width: auto;
  height: 90px;
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-top .footer-logo a {
    height: auto;
    width: 100%;
    margin-bottom: 15px;
  }
}
footer .box .footer-top .footer-logo a img {
  width: 100%;
  height: auto;
}
footer .box .footer-top .footer-logo p.address {
  font-size: 16px;
  flex: 1;
}
@media screen and (max-width: 736px) {
  footer .box .footer-top .footer-logo p.address {
    font-size: 12px;
    margin-top: 10px;
    text-align: left;
  }
}
footer .box .footer-top .footer-logo p.address a {
  display: inline-block;
  height: auto;
  width: auto;
  margin-bottom: 0;
}
footer .box .footer-top .footer-logo .instagram {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-top .footer-logo .instagram {
    width: 30px;
    height: 30px;
  }
}
footer .box .footer-top .footer-logo .instagram a {
  display: block;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-top .footer-logo .instagram a {
    width: 30px;
    height: 30px;
  }
}
footer .box .footer-top .footer-logo .instagram a img {
  width: 100%;
  height: auto;
}
footer .box .footer-top .footer-nav {
  flex: 1;
  text-align: right;
  padding-left: 60px;
}
@media screen and (max-width: 736px) {
  footer .box .footer-top .footer-nav {
    display: none;
  }
}
footer .box .footer-top .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer .box .footer-top .footer-nav ul li {
  width: 19%;
  margin-right: 1%;
  position: relative;
  min-width: 12em;
}
footer .box .footer-top .footer-nav ul li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  text-align: left;
}
footer .box .footer-top .footer-nav ul li.has-child {
  text-align: left;
  min-width: 12em;
}
footer .box .footer-top .footer-nav ul li .nav-child {
  padding: 0 0 10px;
  z-index: 10;
}
footer .box .footer-top .footer-nav ul li .nav-child li {
  width: 100%;
  margin: 0;
}
footer .box .footer-top .footer-nav ul li .nav-child li a {
  padding: 3px 0;
  font-size: 12px;
}
footer .box .footer-top .footer-nav p.privacy {
  font-size: 16px;
  margin-top: 30px;
}
footer .box .footer-copyright {
  padding: 50px 10% 30px;
  margin-top: 30px;
  background-color: #246FD6;
}
@media screen and (max-width: 736px) {
  footer .box .footer-copyright {
    padding: 20px 0;
  }
}
footer .box .footer-copyright p {
  color: #fff;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  footer .box .footer-copyright p {
    font-size: 9px;
  }
}

main.top #mv {
  position: relative;
  padding-top: 0;
}
@media screen and (max-width: 736px) {
  main.top #mv {
    padding: 0;
  }
}
main.top #mv .box {
  display: flex;
  position: relative;
  max-width: none;
  z-index: 2;
  width: 100%;
}
main.top #mv .box .mv-text {
  width: 25%;
  padding-top: 130px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-text {
    width: 34%;
    padding-top: 80px;
  }
}
main.top #mv .box .mv-text h1 {
  font-size: 30px;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #246FD6;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-text h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-text h1 {
    font-size: 16px;
  }
}
main.top #mv .box .mv-text h1 span {
  font-size: 50px;
  font-weight: bold;
  color: #246FD6;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-text h1 span {
    font-size: 40px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-text h1 span {
    font-size: 24px;
  }
}
main.top #mv .box .mv-img {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 800px;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-img {
    height: 600px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img {
    height: 360px;
  }
}
main.top #mv .box .mv-img ul {
  width: 100%;
  height: auto;
  min-height: 400px;
  height: 800px;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-img ul {
    height: 600px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img ul {
    height: 360px;
  }
}
main.top #mv .box .mv-img ul li {
  width: 100%;
  height: 100%;
  height: 800px;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-img ul li {
    height: 600px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img ul li {
    height: 360px;
  }
}
main.top #mv .box .mv-img ul li img {
  width: 100%;
  height: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img ul li img {
    height: 360px;
  }
}
main.top #mv .box .mv-img .slick-track {
  display: flex;
  height: 100%;
  height: 800px;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-img .slick-track {
    height: 600px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img .slick-track {
    height: 360px;
  }
}
main.top #mv .box .mv-img .slick-slide {
  height: auto;
  height: 800px;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-img .slick-slide {
    height: 600px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img .slick-slide {
    height: 360px;
  }
}
main.top #mv .box .mv-img .slick-slide > div {
  height: 100%;
  height: 800px;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-img .slick-slide > div {
    height: 600px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-img .slick-slide > div {
    height: 360px;
  }
}
main.top #mv .box .mv-banner-box {
  position: absolute;
  bottom: 24px;
  right: 18px;
}
main.top #mv .box .mv-banner-box a {
  display: block;
  width: 320px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  main.top #mv .box .mv-banner-box a {
    width: 240px;
  }
}
@media screen and (max-width: 736px) {
  main.top #mv .box .mv-banner-box a {
    width: 150px;
  }
}
main.top #mv .box .mv-banner-box a img {
  width: 100%;
  height: auto;
}
main.top #about {
  position: relative;
  padding: 80px 0 0;
}
@media screen and (max-width: 736px) {
  main.top #about {
    padding: 30px 0 0;
  }
}
main.top #about::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 0;
  width: 50vw;
  height: auto;
  aspect-ratio: 16/9;
  background-image: url(../img/common/bg-blue02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: rotate(180deg);
  opacity: 0.2;
}
@media screen and (max-width: 736px) {
  main.top #about::before {
    top: -60px;
  }
}
main.top #about .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 736px) {
  main.top #about .box {
    flex-direction: column;
  }
}
main.top #about .box .text {
  width: 50%;
}
@media screen and (max-width: 736px) {
  main.top #about .box .text {
    width: 100%;
  }
}
main.top #about .box .text h2 {
  font-size: 70px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #246FD6;
}
@media screen and (max-width: 736px) {
  main.top #about .box .text h2 {
    font-size: 36px;
  }
}
main.top #about .box .text h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 736px) {
  main.top #about .box .text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
}
main.top #about .box .text p {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main.top #about .box .text p {
    font-size: 14px;
  }
}
main.top #about .box .img {
  width: 50%;
}
@media screen and (max-width: 736px) {
  main.top #about .box .img {
    width: 100%;
  }
}
main.top #about .box .img img {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: auto;
}
main.top #about-banner-box {
  background-image: url(../img/common/bg-wave.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media screen and (max-width: 736px) {
  main.top #about-banner-box {
    padding: 40px 0;
  }
}
main.top #about-banner-box .box ul {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  main.top #about-banner-box .box ul {
    width: 100%;
    flex-direction: column;
  }
}
main.top #about-banner-box .box ul li {
  width: 48%;
}
@media screen and (max-width: 736px) {
  main.top #about-banner-box .box ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
main.top #about-banner-box .box ul li a {
  display: block;
}
main.top #about-banner-box .box ul li a img {
  width: 100%;
  height: auto;
}
main.top #pickup {
  padding: 0 0 80px;
}
main.top #pickup .box .title-box {
  text-align: center;
}
main.top #pickup .box .title-box h2 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .title-box h2 {
    font-size: 18px;
  }
}
main.top #pickup .box .title-box h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #246FD6;
  position: absolute;
  bottom: 0;
}
main.top #pickup .box .title-box h3 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .title-box h3 {
    font-size: 16px;
  }
}
main.top #pickup .box .inner-box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .inner-box ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    margin-left: 0;
    margin-right: -5%;
    scroll-snap-type: x mandatory;
  }
}
main.top #pickup .box .inner-box ul li {
  width: 32%;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .inner-box ul li {
    min-width: 280px;
    width: 80%;
    margin-right: 15px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  main.top #pickup .box .inner-box ul li:last-child {
    margin-right: 0;
  }
}
main.top #pickup .box .inner-box ul li img {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
main.top #pickup .box .inner-box ul li h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .inner-box ul li h3 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
  }
}
main.top #pickup .box .inner-box ul li span {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .inner-box ul li span {
    font-size: 12px;
  }
}
main.top #pickup .box .inner-box .btn-more {
  text-align: right;
}
main.top #pickup .box .inner-box .btn-more a {
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  main.top #pickup .box .inner-box .btn-more a {
    width: 160px;
  }
}
main.top #service {
  position: relative;
}
main.top #service::before {
  content: "";
  position: absolute;
  top: 140px;
  right: 0;
  width: 70vw;
  height: auto;
  aspect-ratio: 16/8;
  background-image: url(../img/common/bg-green.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.2;
}
main.top #service .box .title-box {
  text-align: right;
}
main.top #service .box .title-box h2 {
  display: inline-block;
  font-size: 70px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #47D86D;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main.top #service .box .title-box h2 {
    font-size: 36px;
    text-align: right;
  }
}
main.top #service .box .title-box span {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 736px) {
  main.top #service .box .title-box span {
    font-size: 16px;
  }
}
main.top #service .box .inner-box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  main.top #service .box .inner-box ul {
    flex-direction: column;
  }
}
main.top #service .box .inner-box ul li {
  width: 48%;
}
@media screen and (max-width: 736px) {
  main.top #service .box .inner-box ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}
main.top #service .box .inner-box ul li a {
  display: block;
}
main.top #service .box .inner-box ul li a img {
  width: 100%;
}
main.top #area {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 736px) {
  main.top #area {
    padding-top: 60px;
  }
}
main.top #area::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 0;
  width: 70vw;
  height: 100%;
  aspect-ratio: 16/8;
  background-image: url(../img/common/bg-blue.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: rotate(180deg);
  opacity: 0.2;
}
main.top #area .icon-car01 {
  position: absolute;
  top: 0px;
  right: 200px;
  width: 200px;
  height: auto;
  z-index: 2;
  animation: driveBounce 0.2s infinite ease-in-out;
}
@media screen and (max-width: 736px) {
  main.top #area .icon-car01 {
    top: 20px;
    right: 10px;
    width: 80px;
    z-index: 10;
  }
}
@keyframes driveBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
  100% {
    transform: translateY(0);
  }
}
main.top #area .icon-mountain01 {
  position: absolute;
  top: -60px;
  right: 0;
  width: 320px;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 736px) {
  main.top #area .icon-mountain01 {
    top: -60px;
    right: -20px;
    width: 160px;
  }
}
main.top #area .box .title-box {
  position: relative;
}
main.top #area .box .title-box h2 {
  display: inline-block;
  font-size: 70px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #246FD6;
}
@media screen and (max-width: 736px) {
  main.top #area .box .title-box h2 {
    font-size: 36px;
  }
}
main.top #area .box .title-box span {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 736px) {
  main.top #area .box .title-box span {
    font-size: 16px;
  }
}
main.top #area .box .inner-box {
  padding-top: 50px;
}
main.top #area .box .inner-box .img img {
  width: 100%;
}
main.top #area .box .inner-box p {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 736px) {
  main.top #area .box .inner-box p {
    font-size: 10px;
    text-align: left;
  }
}
main.top #news .box {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main.top #news .box {
    flex-direction: column;
  }
}
main.top #news .box .title-box {
  text-align: center;
  width: 30%;
  margin-right: 80px;
}
@media screen and (max-width: 736px) {
  main.top #news .box .title-box {
    width: 100%;
    margin-right: 0;
    position: relative;
    text-align: left;
  }
}
main.top #news .box .title-box h2 {
  font-size: 26px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
main.top #news .box .title-box h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #246FD6;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 736px) {
  main.top #news .box .title-box h2 {
    font-size: 20px;
  }
}
main.top #news .box .title-box span {
  display: block;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main.top #news .box .title-box span {
    font-size: 16px;
    text-align: left;
  }
}
@media screen and (max-width: 736px) {
  main.top #news .box .title-box .btn-more {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
  }
}
@media screen and (max-width: 736px) {
  main.top #news .box .title-box .btn-more a {
    margin-top: 0;
  }
}
main.top #news .box .inner-box {
  flex: 1;
}
main.top #news .box .inner-box ul.tabarea {
  display: flex;
}
@media screen and (max-width: 736px) {
  main.top #news .box .inner-box ul.tabarea {
    display: none;
  }
}
main.top #news .box .inner-box ul.tabarea li {
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 10px;
  border-bottom: 2px solid #BCB8B8;
  color: #BCB8B8;
  cursor: pointer;
}
main.top #news .box .inner-box ul.tabarea li.active {
  border-bottom: 2px solid #246FD6;
  color: #4A4949;
}
main.top #news .box .inner-box ul.news-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
main.top #news .box .inner-box ul.news-content li {
  width: 100%;
  border-bottom: 1px dashed #D3D3D3;
  padding: 20px 0;
}
main.top #news .box .inner-box ul.news-content li a {
  display: flex;
  align-items: center;
}
main.top #news .box .inner-box ul.news-content li a span.date {
  font-size: 14px;
  font-weight: 400;
  margin-right: 15px;
}
@media screen and (max-width: 736px) {
  main.top #news .box .inner-box ul.news-content li a span.date {
    display: none;
  }
}
main.top #news .box .inner-box ul.news-content li a span.cat {
  font-size: 14px;
  font-weight: 400;
  border: 2px solid #72CDFD;
  padding: 2px 10px;
  margin-right: 15px;
  color: #72CDFD;
  width: 6em;
  text-align: center;
}
main.top #news .box .inner-box ul.news-content li a h3 {
  font-size: 14px;
}
main.top #case {
  position: relative;
}
main.top #case::before {
  content: "";
  position: absolute;
  top: 140px;
  right: 0;
  width: 90vw;
  height: auto;
  aspect-ratio: 16/8;
  background-image: url(../img/common/bg-green.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.2;
}
main.top #case .box .title-box {
  text-align: right;
  position: relative;
}
main.top #case .box .title-box h2 {
  display: inline-block;
  font-size: 70px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #47D86D;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main.top #case .box .title-box h2 {
    font-size: 36px;
    text-align: right;
  }
}
main.top #case .box .title-box span {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 736px) {
  main.top #case .box .title-box span {
    font-size: 16px;
  }
}
main.top #case .box .title-box .icon-person01 {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 180px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  main.top #case .box .title-box .icon-person01 {
    top: 20px;
    left: 10px;
    width: 90px;
  }
}
main.top #case .box .inner-box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 736px) {
  main.top #case .box .inner-box ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    margin-left: 0;
    margin-right: -5%;
    scroll-snap-type: x mandatory;
  }
}
main.top #case .box .inner-box ul li {
  width: 32%;
}
@media screen and (max-width: 736px) {
  main.top #case .box .inner-box ul li {
    min-width: 280px;
    width: 80%;
    margin-right: 15px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  main.top #case .box .inner-box ul li:last-child {
    margin-right: 0;
  }
}
main.top #case .box .inner-box ul li a {
  display: block;
}
main.top #case .box .inner-box ul li a img {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
main.top #case .box .inner-box ul li a h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  background-color: #47D86D;
  color: #fff;
  text-align: center;
}
main.top #case .box .inner-box ul li a p {
  font-size: 14px;
  font-weight: 400;
}
main.top #case .box .inner-box ul li a p span {
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #4A4949;
  border-radius: 2px;
  padding: 2px 20px;
  margin-right: 10px;
  color: #4A4949;
  background-color: #fff;
}
main.top #case .box .inner-box .btn-more {
  text-align: right;
}
@media screen and (max-width: 736px) {
  main.top #case .box .inner-box .btn-more a {
    width: 160px;
    margin-top: 0;
  }
}
main.top #strength {
  position: relative;
}
main.top #strength::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 0;
  width: 70vw;
  height: 100%;
  aspect-ratio: 16/8;
  background-image: url(../img/common/bg-blue02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: rotate(180deg);
  opacity: 0.2;
}
main.top #strength .box .title-box h2 {
  display: inline-block;
  font-size: 70px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #246FD6;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .title-box h2 {
    font-size: 36px;
  }
}
main.top #strength .box .title-box span {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .title-box span {
    font-size: 16px;
  }
}
main.top #strength .box .inner-box {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box {
    flex-direction: column;
    position: relative;
  }
}
main.top #strength .box .inner-box .text {
  width: 40%;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .text {
    width: 100%;
  }
}
main.top #strength .box .inner-box .text ul li {
  width: 100%;
  height: 120px;
  position: relative;
  padding-left: 120px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .text ul li {
    padding-left: 90px;
    height: 90px;
  }
}
main.top #strength .box .inner-box .text ul li::before {
  content: "";
  background-image: url(../img/top/st-num01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .text ul li::before {
    width: 70px;
    height: 70px;
  }
}
main.top #strength .box .inner-box .text ul li:nth-of-type(2)::before {
  background-image: url(../img/top/st-num02.png);
}
main.top #strength .box .inner-box .text ul li:nth-of-type(3)::before {
  background-image: url(../img/top/st-num03.png);
}
main.top #strength .box .inner-box .text ul li h3 {
  display: block;
  width: 100%;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4em;
  position: relative;
  border-bottom: 1px solid #246FD6;
  padding-bottom: 10px;
}
@media screen and (max-width: 1200px) {
  main.top #strength .box .inner-box .text ul li h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .text ul li h3 {
    font-size: 18px;
  }
}
main.top #strength .box .inner-box .img {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
main.top #strength .box .inner-box .img img.st01 {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 320px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .img img.st01 {
    top: 100%;
    width: 160px;
    left: auto;
    right: 0;
    aspect-ratio: 3/4;
  }
}
main.top #strength .box .inner-box .img img.st02 {
  position: absolute;
  top: -100px;
  right: 30px;
  width: 270px;
  height: auto;
}
@media screen and (max-width: 736px) {
  main.top #strength .box .inner-box .img img.st02 {
    width: 120px;
    top: -140px;
    left: auto;
    right: 0;
  }
}
main.top #company {
  padding: 200px 0;
  position: relative;
  overflow: hidden;
}
main.top #company::before {
  content: "";
  position: absolute;
  top: 140px;
  right: 0;
  width: 70vw;
  height: auto;
  aspect-ratio: 16/8;
  background-image: url(../img/common/bg-gray.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.2;
}
@media screen and (max-width: 736px) {
  main.top #company::before {
    top: 240px;
  }
}
main.top #company .icon-car02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: auto;
  z-index: 2;
  animation: driveBounce 0.2s infinite ease-in-out;
}
@media screen and (max-width: 736px) {
  main.top #company .icon-car02 {
    width: 100px;
    bottom: 0px;
    right: 60px;
  }
}
@keyframes driveBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
  100% {
    transform: translateY(0);
  }
}
main.top #company .box {
  position: relative;
}
main.top #company .box .icon-flower01 {
  position: absolute;
  bottom: -160px;
  right: 0px;
  width: 120px;
  height: auto;
}
@media screen and (max-width: 736px) {
  main.top #company .box .icon-flower01 {
    width: 60px;
    bottom: -100px;
    right: 10px;
  }
}
main.top #company .box .title-box {
  text-align: right;
}
main.top #company .box .title-box h2 {
  display: inline-block;
  font-size: 70px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #4A4949;
  text-align: right;
}
@media screen and (max-width: 736px) {
  main.top #company .box .title-box h2 {
    font-size: 36px;
  }
}
main.top #company .box .title-box span {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 736px) {
  main.top #company .box .title-box span {
    font-size: 16px;
  }
}
main.top #company .box .inner-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
main.top #company .box .inner-box .img {
  flex: 1;
  position: relative;
}
main.top #company .box .inner-box .img img.company01 {
  position: absolute;
  top: -100px;
  left: 30px;
  width: 320px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 736px) {
  main.top #company .box .inner-box .img img.company01 {
    top: -160px;
    left: auto;
    width: 120px;
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main.top #company .box .inner-box .img img.company02 {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 320px;
  height: auto;
}
@media screen and (max-width: 736px) {
  main.top #company .box .inner-box .img img.company02 {
    top: 20px;
    left: 0;
    width: 120px;
    aspect-ratio: 3/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main.top #company .box .inner-box .text {
  width: 40%;
}
@media screen and (max-width: 736px) {
  main.top #company .box .inner-box .text {
    width: 100%;
  }
}
main.top #company .box .inner-box .text .btn-more {
  text-align: right;
}
@media screen and (max-width: 736px) {
  main.top #company .box .inner-box .text .btn-more a {
    width: 160px;
    margin-top: 0;
  }
}

main.under-page section {
  padding: 0 0 80px;
}
@media screen and (max-width: 736px) {
  main.under-page section {
    padding: 0 0 40px;
  }
}
main.under-page section.bg-blue {
  position: relative;
}
main.under-page section.bg-blue::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg-blue.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
}
@media screen and (max-width: 736px) {
  main.under-page section.bg-blue::before {
    top: 30px;
  }
}
main.under-page section.bg-green {
  position: relative;
}
main.under-page section.bg-green::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg-green02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.2;
}
@media screen and (max-width: 736px) {
  main.under-page section.bg-green::before {
    top: 30px;
  }
}
main.under-page section .title-box {
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box {
    margin-bottom: 30px;
  }
}
main.under-page section .title-box h2 {
  font-size: 45px;
  font-weight: 400;
  color: #246FD6;
  display: inline-block;
  background-color: #fff;
  padding: 0px 50px 20px;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box h2 {
    font-size: 20px;
    padding: 10px;
  }
}
main.under-page section .title-box span {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: block;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box span {
    font-size: 12px;
  }
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box.title-left {
    margin-left: 0px;
  }
}
main.under-page section .title-box.title-right {
  text-align: right;
  margin-right: -50px;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box.title-right {
    margin-right: 0px;
  }
}
main.under-page section .title-box-line {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box-line {
    margin-bottom: 30px;
  }
}
main.under-page section .title-box-line h2 {
  font-size: 26px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box-line h2 {
    font-size: 20px;
  }
}
main.under-page section .title-box-line h2::after {
  content: "";
  display: block;
  width: 140%;
  height: 3px;
  background-color: #47D86D;
  position: absolute;
  bottom: 0;
  left: -20%;
}
main.under-page section .title-box-line span {
  display: block;
  font-size: 24px;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main.under-page section .title-box-line span {
    font-size: 18px;
  }
}
main.under-page section.flex-box .box .inner-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main.under-page section.flex-box .box .inner-box ul li {
  width: 32%;
  padding: 0 1%;
}
@media screen and (max-width: 736px) {
  main.under-page section.flex-box .box .inner-box ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
main.under-page section.flex-box .box .inner-box ul li h3 {
  font-size: 20px;
  text-align: center;
  color: #246FD6;
  background-color: #EBF9FF;
  padding: 10px 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 736px) {
  main.under-page section.flex-box .box .inner-box ul li h3 {
    font-size: 16px;
  }
}
main.under-page section.flex-box .box .inner-box ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
main.under-page section.flex-box .box .inner-box ul li p {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 736px) {
  main.under-page section.flex-box .box .inner-box ul li p {
    font-size: 14px;
  }
}
main.under-page section.flex-box .box .inner-box ul li h4 {
  font-size: 16px;
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #4A4949;
  padding-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main.under-page section.flex-box .box .inner-box ul li h4 {
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
}
main.under-page section.flex-box.bg-blue .box .inner-box ul li h3 {
  background-color: #fff;
}
main.under-page #under-mv {
  padding: 0 0 80px;
  position: relative;
}
@media screen and (max-width: 736px) {
  main.under-page #under-mv {
    padding: 60px 0 40px;
  }
}
main.under-page #under-mv .box {
  display: flex;
  width: 100%;
  max-width: none;
}
main.under-page #under-mv .box .title-box {
  width: 25%;
  padding-top: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 736px) {
  main.under-page #under-mv .box .title-box {
    width: 34%;
    padding-top: 20px;
  }
}
main.under-page #under-mv .box .title-box h1 {
  font-size: 40px;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #246FD6;
}
@media screen and (max-width: 736px) {
  main.under-page #under-mv .box .title-box h1 {
    font-size: 24px;
    line-height: 1.2;
  }
}
main.under-page #under-mv .box .title-box span {
  font-size: 20px;
  font-weight: 600;
  color: #4A4949;
  writing-mode: vertical-rl;
  margin-right: 20px;
}
@media screen and (max-width: 736px) {
  main.under-page #under-mv .box .title-box span {
    font-size: 14px;
    margin-right: 10px;
    font-weight: 400;
  }
}
main.under-page #under-mv .box .img-box {
  flex: 1;
}
main.under-page #under-mv .box .img-box img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 736px) {
  main.under-page #under-mv .box .img-box img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main.under-page #flow {
  padding-top: 80px;
}
@media screen and (max-width: 736px) {
  main.under-page #flow {
    padding-top: 40px;
  }
}
main.under-page #cta {
  padding: 80px 0;
}

main#service01 #resource .box .inner-box p {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main#service01 #resource .box .inner-box p {
    font-size: 14px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
main#service01 #resource .box .inner-box .img img {
  width: 100%;
}
main#service01 #area .box .inner-box p {
  text-align: right;
}
@media screen and (max-width: 736px) {
  main#service01 #area .box .inner-box p {
    text-align: left;
    font-size: 12px;
  }
}
main#service01 #vehicle .box .title-box {
  position: relative;
}
main#service01 #vehicle .box .title-box .icon-car02 {
  position: absolute;
  bottom: -100px;
  right: 50px;
  width: 160px;
  height: auto;
}
@media screen and (max-width: 736px) {
  main#service01 #vehicle .box .title-box .icon-car02 {
    width: 80px;
    bottom: 10px;
    right: 120px;
  }
}
main#service01 #vehicle .box .inner-box ul li {
  width: 40%;
  padding: 0 40px;
}
@media screen and (max-width: 736px) {
  main#service01 #vehicle .box .inner-box ul li {
    width: 50%;
    padding: 0 10px 0 0;
  }
}
main#service01 #vehicle .box .inner-box ul li:nth-child(even) {
  margin-top: 100px;
}
@media screen and (max-width: 736px) {
  main#service01 #vehicle .box .inner-box ul li:nth-child(even) {
    margin-top: 50px;
    padding: 0 0px 0 10px;
  }
}
@media screen and (max-width: 736px) {
  main#service01 #vehicle .box .inner-box ul li h3 {
    font-size: 13px;
  }
}
@media screen and (max-width: 736px) {
  main#service01 #vehicle .box .inner-box ul li p {
    font-size: 12px;
  }
}
main#service01 #vehicle .box .inner-box ul li p span {
  display: block;
  font-weight: 600;
}

main#service02 #area .box .inner-box ul {
  margin-top: 60px;
}
main#service02 #vehicle .box .title-box {
  position: relative;
}
main#service02 #vehicle .box .title-box .icon-car03 {
  position: absolute;
  bottom: -20px;
  left: 280px;
  width: 160px;
  height: auto;
}
@media screen and (max-width: 736px) {
  main#service02 #vehicle .box .title-box .icon-car03 {
    width: 80px;
    bottom: 10px;
    left: 120px;
  }
}
main#service02 #vehicle .box .inner-box ul li:nth-child(even) {
  margin-top: 0;
}
main#service02 #vehicle .box .inner-box ul li p span {
  display: block;
  font-weight: 600;
}
main#service02 #flow {
  padding-top: 80px;
}
@media screen and (max-width: 736px) {
  main#service02 #flow {
    padding-top: 40px;
  }
}
main#service02 #flow .box .title-box-line h2::after {
  background-color: #72CDFD;
}

@media screen and (max-width: 736px) {
  main#csr #under-mv {
    padding-bottom: 0;
  }
}
main#csr #under-mv .box .title-box h1 {
  font-feature-settings: "pkna";
}
main#csr #cosmos .box {
  width: 100%;
  max-width: none;
}
main#csr #cosmos .box .title-box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
main#csr #cosmos .box .title-box h2 {
  color: #47D86D;
}
main#csr #cosmos .box .inner-box p {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box p {
    font-size: 14px;
  }
}
main#csr #cosmos .box .inner-box .img {
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box .img {
    margin-bottom: 0px;
  }
}
main#csr #cosmos .box .inner-box .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
main#csr #cosmos .box .inner-box .flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
main#csr #cosmos .box .inner-box .flex .text {
  width: 40%;
  margin-right: 5%;
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box .flex .text {
    width: 100%;
    margin-right: 0;
  }
}
main#csr #cosmos .box .inner-box .flex .text p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 80px;
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box .flex .text p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
main#csr #cosmos .box .inner-box .flex .text img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box .flex .text img {
    display: none;
  }
}
main#csr #cosmos .box .inner-box .flex .img {
  flex: 1;
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box .flex .img {
    width: 100%;
  }
}
@media screen and (max-width: 736px) {
  main#csr #cosmos .box .inner-box .flex .img img {
    width: 100%;
    height: auto;
  }
}
main#csr #gym .box .title-box h2 {
  color: #47D86D;
}
@media screen and (max-width: 736px) {
  main#csr #gym .box .inner-box {
    display: flex;
  }
}
main#csr #gym .box .inner-box p {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#csr #gym .box .inner-box p {
    font-size: 14px;
    width: 60%;
    margin: 0;
    padding-right: 15px;
  }
}
main#csr #gym .box .inner-box .img {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main#csr #gym .box .inner-box .img {
    width: 40%;
  }
}
main#csr #gym .box .inner-box .img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
main#csr #gym .box .inner-box .img img.gym01 {
  width: 65%;
  margin-bottom: 160px;
}
@media screen and (max-width: 736px) {
  main#csr #gym .box .inner-box .img img.gym01 {
    display: none;
  }
}
main#csr #gym .box .inner-box .img img.gym02 {
  width: 30%;
  margin-top: 160px;
}
@media screen and (max-width: 736px) {
  main#csr #gym .box .inner-box .img img.gym02 {
    width: 100%;
    margin-top: 0;
  }
}
main#csr #gym .box .img-sp {
  display: none;
}
@media screen and (max-width: 736px) {
  main#csr #gym .box .img-sp {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
}
main#csr #pickup .box .title-box-line h2::after {
  background-color: #246FD6;
}
main#csr #pickup .box .title-box-line span {
  font-weight: 500;
}
@media screen and (max-width: 736px) {
  main#csr #pickup .box .inner-box ul li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 736px) {
  main#csr #pickup .box .inner-box ul li a img {
    width: 45%;
    float: left;
    margin-right: 10px;
  }
}
main#csr #pickup .box .inner-box ul li a h3 {
  background-color: transparent;
  font-size: 18px;
  text-align: left;
  color: #4A4949;
  padding: 0;
  margin: 10px 0 0;
}
@media screen and (max-width: 736px) {
  main#csr #pickup .box .inner-box ul li a h3 {
    font-size: 16px;
    margin-top: 0;
  }
}
main#csr #pickup .box .inner-box ul li a span.date {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#csr #pickup .box .inner-box ul li a span.date {
    font-size: 14px;
  }
}
main#csr #pickup .box .inner-box .btn-more {
  text-align: right;
}
@media screen and (max-width: 736px) {
  main#csr #pickup .box .inner-box .btn-more a {
    width: 160px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 736px) {
  main#company #message:before {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  main#company #message .box .title-box {
    margin-bottom: -10px;
  }
}
main#company #message .box .inner-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main#company #message .box .inner-box {
    flex-wrap: wrap;
  }
}
main#company #message .box .inner-box .img {
  width: 40%;
  max-width: 500px;
  margin-right: 30px;
}
@media screen and (max-width: 736px) {
  main#company #message .box .inner-box .img {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
  }
}
main#company #message .box .inner-box .img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 736px) {
  main#company #message .box .inner-box .img img {
    width: 50%;
  }
}
@media screen and (max-width: 736px) {
  main#company #message .box .inner-box .img h3 {
    width: 50%;
    font-size: 16px;
    font-weight: 300;
    color: #246FD6;
    padding-left: 20px;
  }
}
main#company #message .box .inner-box .text {
  flex: 1;
  margin-top: 160px;
  background-color: #fff;
  padding: 40px;
}
@media screen and (max-width: 736px) {
  main#company #message .box .inner-box .text {
    margin-top: 0;
    padding: 20px 0;
  }
}
main#company #message .box .inner-box .text h3 {
  font-size: 30px;
  font-weight: 300;
  color: #246FD6;
  text-align: center;
  margin-bottom: 20px;
}
main#company #message .box .inner-box .text p {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}
@media screen and (max-width: 736px) {
  main#company #message .box .inner-box .text p {
    font-size: 14px;
  }
}
main#company #message .box .inner-box .text p.right {
  width: 11em;
  margin: 0 0 0 auto;
}
main#company #company-profile .box .inner-box .dl-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 736px) {
  main#company #company-profile .box .inner-box .dl-box {
    flex-wrap: wrap;
  }
}
main#company #company-profile .box .inner-box .dl-box dl {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 736px) {
  main#company #company-profile .box .inner-box .dl-box dl {
    width: 100%;
  }
}
main#company #company-profile .box .inner-box .dl-box dl dt {
  width: 10em;
  font-size: 20px;
  font-weight: 400;
  color: #246FD6;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
@media screen and (max-width: 736px) {
  main#company #company-profile .box .inner-box .dl-box dl dt {
    width: 9em;
    font-size: 14px;
  }
}
main#company #company-profile .box .inner-box .dl-box dl dd {
  width: calc(100% - 10em);
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
@media screen and (max-width: 736px) {
  main#company #company-profile .box .inner-box .dl-box dl dd {
    font-size: 14px;
  }
}
main#company #company-history {
  position: relative;
}
main#company #company-history .history01 {
  position: absolute;
  bottom: -160px;
  right: 80px;
  width: 200px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  main#company #company-history .history01 {
    bottom: -120px;
    right: 20px;
    width: 100px;
  }
}
@media screen and (max-width: 736px) {
  main#company #company-history:before {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  main#company #company-history .box .title-box {
    margin-bottom: 0;
  }
}
main#company #company-history .box .inner-box dl {
  background-color: #fff;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 736px) {
  main#company #company-history .box .inner-box dl {
    width: 100%;
    padding: 20px 0;
  }
}
main#company #company-history .box .inner-box dl dt {
  width: 12em;
  font-size: 20px;
  font-weight: 400;
  color: #246FD6;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
@media screen and (max-width: 736px) {
  main#company #company-history .box .inner-box dl dt {
    width: 11em;
    font-size: 14px;
  }
}
main#company #company-history .box .inner-box dl dt:last-of-type {
  border-bottom: none;
}
main#company #company-history .box .inner-box dl dd {
  width: calc(100% - 12em);
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
main#company #company-history .box .inner-box dl dd:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 736px) {
  main#company #company-history .box .inner-box dl dd {
    font-size: 14px;
    width: calc(100% - 11em);
  }
}
main#company #certification {
  position: relative;
}
main#company #certification .certification01 {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 200px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  main#company #certification .certification01 {
    bottom: -110px;
    left: 20px;
    width: 100px;
  }
}
main#company #certification .box .inner-box ul {
  width: 30em;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  main#company #certification .box .inner-box ul {
    width: 100%;
  }
}
main#company #certification .box .inner-box ul li {
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
@media screen and (max-width: 736px) {
  main#company #certification .box .inner-box ul li {
    font-size: 14px;
  }
}
main#company #fleet-size {
  position: relative;
}
@media screen and (max-width: 736px) {
  main#company #fleet-size {
    padding-bottom: 60px;
  }
}
main#company #fleet-size .fleet01 {
  position: absolute;
  bottom: -160px;
  right: 80px;
  width: 200px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  main#company #fleet-size .fleet01 {
    bottom: -80px;
    right: 20px;
    width: 100px;
  }
}
@media screen and (max-width: 736px) {
  main#company #fleet-size:before {
    display: none;
  }
}
main#company #fleet-size .box .inner-box {
  background-color: #fff;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}
main#company #fleet-size .box .inner-box dl {
  background-color: #fff;
  width: 36em;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 736px) {
  main#company #fleet-size .box .inner-box dl {
    width: 100%;
    padding: 20px;
  }
}
main#company #fleet-size .box .inner-box dl dt {
  width: 12em;
  font-size: 20px;
  font-weight: 400;
  color: #246FD6;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
main#company #fleet-size .box .inner-box dl dt:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 736px) {
  main#company #fleet-size .box .inner-box dl dt {
    font-size: 14px;
  }
}
main#company #fleet-size .box .inner-box dl dd {
  width: calc(100% - 12em);
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
main#company #fleet-size .box .inner-box dl dd:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 736px) {
  main#company #fleet-size .box .inner-box dl dd {
    font-size: 14px;
  }
}
main#company #base .box .inner-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main#company #base .box .inner-box ul li {
  width: 32%;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
  }
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li img {
    width: 35%;
    height: auto;
    margin-right: 15px;
    display: block;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
main#company #base .box .inner-box ul li .text h3 {
  font-size: 20px;
  font-weight: 400;
  color: #246FD6;
  text-align: center;
  padding: 10px;
  border: 1px solid #246FD6;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li .text h3 {
    font-size: 14px;
    display: inline-block;
    width: 60%;
    padding: 0;
  }
}
main#company #base .box .inner-box ul li .text p {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li .text p {
    font-size: 12px;
  }
}
main#company #base .box .inner-box ul li:first-of-type {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li:first-of-type {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
main#company #base .box .inner-box ul li:first-of-type img {
  width: 48%;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li:first-of-type img {
    width: 100%;
  }
}
main#company #base .box .inner-box ul li:first-of-type .text {
  width: 48%;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li:first-of-type .text {
    width: 100%;
  }
}
main#company #base .box .inner-box ul li:first-of-type .text h3 {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  color: #246FD6;
  text-align: center;
  padding: 10px 160px;
  border: 1px solid #246FD6;
  margin-bottom: 20px;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li:first-of-type .text h3 {
    font-size: 14px;
    padding: 10px 0;
    width: 100%;
  }
}
main#company #base .box .inner-box ul li:first-of-type .text p {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#company #base .box .inner-box ul li:first-of-type .text p {
    font-size: 14px;
  }
}
@media screen and (max-width: 736px) {
  main#company #advisor:before {
    display: none;
  }
}
main#company #advisor .box .inner-box {
  background-color: #fff;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 736px) {
  main#company #advisor .box .inner-box {
    padding: 20px 0;
  }
}
main#company #advisor .box .inner-box ul {
  width: 30em;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  main#company #advisor .box .inner-box ul {
    width: 100%;
  }
}
main#company #advisor .box .inner-box ul li {
  font-size: 20px;
  font-weight: 400;
  border-bottom: 1px solid #246FD6;
  padding: 10px;
}
@media screen and (max-width: 736px) {
  main#company #advisor .box .inner-box ul li {
    font-size: 14px;
  }
}

main#single-pickup #pickup-detail .box {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
main#single-pickup #pickup-detail .box .inner-box h2 {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main#single-pickup #pickup-detail .box .inner-box h2 {
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
}
main#single-pickup #pickup-detail .box .inner-box span.date {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 736px) {
  main#single-pickup #pickup-detail .box .inner-box span.date {
    font-size: 14px;
  }
}
main#single-pickup #pickup-detail .box .inner-box .img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  text-align: center;
}
main#single-pickup #pickup-detail .box .inner-box p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 736px) {
  main#single-pickup #pickup-detail .box .inner-box p {
    font-size: 14px;
  }
}
main#single-pickup #pickup-detail .box .inner-box pre {
  white-space: break-spaces;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
main#single-pickup .post-navigation {
  margin-top: 30px;
}
main#single-pickup .post-navigation .prev-next-links {
  display: flex;
  justify-content: space-between;
}

main#archive-news #news-list .box {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
main#archive-news #news-list .box .category-nav ul {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 736px) {
  main#archive-news #news-list .box .category-nav ul {
    margin-bottom: 10px;
  }
}
main#archive-news #news-list .box .category-nav ul li a {
  display: block;
  width: 7em;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #BCB8B8;
  padding: 5px 10px;
  border-bottom: 2px solid #BCB8B8;
  margin-right: 40px;
}
@media screen and (max-width: 736px) {
  main#archive-news #news-list .box .category-nav ul li a {
    width: 5em;
    margin-right: 10px;
    padding: 5px 0;
  }
}
main#archive-news #news-list .box .category-nav ul li.active a {
  border-bottom: 2px solid #246FD6;
  color: #246FD6;
}
main#archive-news #news-list .box .news-items .news-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #D3D3D3;
  padding: 20px 0;
}
main#archive-news #news-list .box .news-items .news-item span.date {
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
}
main#archive-news #news-list .box .news-items .news-item span.cat {
  font-size: 12px;
  font-weight: 400;
  margin-right: 30px;
  color: #72CDFD;
  border: 1px solid #72CDFD;
  padding: 2px 10px;
}
main#archive-news #news-list .box .news-items .news-item h3.title {
  font-size: 16px;
  font-weight: 400;
}

main#single-news .content-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
main#single-news .content-wrapper #news-detail {
  width: 70%;
  border-right: 1px solid #707070;
}
@media screen and (max-width: 736px) {
  main#single-news .content-wrapper #news-detail {
    width: 100%;
    border-right: none;
  }
}
main#single-news .content-wrapper #news-detail .box h2.news-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main#single-news .content-wrapper #news-detail .box h2.news-title {
    font-size: 18px;
  }
}
main#single-news .content-wrapper #news-detail .box .news-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
main#single-news .content-wrapper #news-detail .box .news-meta span.cat {
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
  color: #72CDFD;
  border: 1px solid #72CDFD;
  padding: 2px 10px;
}
@media screen and (max-width: 736px) {
  main#single-news .content-wrapper #news-detail .box .news-meta span.cat {
    font-size: 12px;
    margin-right: 10px;
  }
}
main#single-news .content-wrapper #news-detail .box .news-meta span.date {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#single-news .content-wrapper #news-detail .box .news-meta span.date {
    font-size: 12px;
  }
}
main#single-news .content-wrapper #news-detail .box .news-content img {
  width: 80%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}
@media screen and (max-width: 736px) {
  main#single-news .content-wrapper #news-detail .box .news-content img {
    width: 100%;
  }
}
main#single-news .content-wrapper #news-detail .box .post-navigation {
  margin-top: 30px;
}
main#single-news .content-wrapper #news-detail .box .post-navigation .prev-next-links {
  display: flex;
  justify-content: space-between;
}
main#single-news #sidebar {
  width: 30%;
}
@media screen and (max-width: 736px) {
  main#single-news #sidebar {
    display: none;
  }
}
main#single-news #sidebar .box h3 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  color: #246FD6;
  margin-bottom: 20px;
}
main#single-news #sidebar .box ul.recent-news-list li a {
  display: block;
  border-bottom: 1px dashed #D3D3D3;
  padding: 10px 0;
}
main#single-news #sidebar .box ul.recent-news-list li a .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
main#single-news #sidebar .box ul.recent-news-list li a .news-meta span.cat {
  font-size: 12px;
  font-weight: 400;
  margin-right: 10px;
  color: #72CDFD;
  border: 1px solid #72CDFD;
  padding: 0px 10px;
}
main#single-news #sidebar .box ul.recent-news-list li a .news-meta span.date {
  font-size: 12px;
  font-weight: 400;
}

main#archive-case #case-list {
  padding: 80px 0;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list {
    padding: 30px 0;
  }
}
main#archive-case #case-list::before {
  top: 0;
}
main#archive-case #case-list .box .case-items .case-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
main#archive-case #case-list .box .case-items .case-grid .case-item {
  width: 33%;
  padding: 0 1%;
  display: flex;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 30px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a {
  width: 100%;
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-image {
    margin-bottom: 10px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-meta {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-meta {
    margin-bottom: 0px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-meta span.cat {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-color: #47D86D;
  padding: 2px 20px;
  border-radius: 3px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-meta span.cat {
    font-size: 10px;
    padding: 2px 10px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-meta span.date {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-meta span.date {
    font-size: 10px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title {
  display: flex;
  align-items: center;
  width: 100%;
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title .region {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title .region {
    font-size: 10px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title .region span {
  font-size: 14px;
  font-weight: 400;
  padding: 2px 10px;
  border: 1px solid #707070;
  margin-right: 5px;
  background-color: #fff;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title .region span {
    font-size: 10px;
  }
}
main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title h3.title {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#archive-case #case-list .box .case-items .case-grid .case-item a .case-title h3.title {
    line-height: 1.3;
  }
}

main#single-case #case-detail .box {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
main#single-case #case-detail .box .case-title {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #707070;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
main#single-case #case-detail .box .case-title span.cat {
  font-size: 18px;
  font-weight: 400;
  margin-right: 30px;
  color: #fff;
  background-color: #47D86D;
  padding: 2px 20px;
}
@media screen and (max-width: 736px) {
  main#single-case #case-detail .box .case-title span.cat {
    font-size: 12px;
    padding: 2px 10px;
    margin-right: 10px;
    width: 7em;
    text-align: center;
  }
}
main#single-case #case-detail .box .case-title h2 {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 736px) {
  main#single-case #case-detail .box .case-title h2 {
    font-size: 18px;
    flex: 1;
  }
}
main#single-case #case-detail .box .case-meta {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
main#single-case #case-detail .box .case-meta span.date {
  font-size: 14px;
  font-weight: 400;
  margin-right: 20px;
}
@media screen and (max-width: 736px) {
  main#single-case #case-detail .box .case-meta span.date {
    font-size: 12px;
    margin-right: 10px;
  }
}
main#single-case #case-detail .box .case-meta .region {
  font-size: 14px;
  font-weight: 400;
}
main#single-case #case-detail .box .case-meta .region span {
  font-size: 14px;
  font-weight: 400;
  padding: 2px 10px;
  border: 1px solid #707070;
  margin-right: 10px;
  background-color: #fff;
}
@media screen and (max-width: 736px) {
  main#single-case #case-detail .box .case-meta .region span {
    font-size: 12px;
    margin-right: 5px;
  }
}
main#single-case #case-detail .box .case-content .case-thumbnail {
  margin: 0 auto 30px;
}
main#single-case #case-detail .box .case-content .case-text p {
  font-size: 16px;
}
main#single-case #case-detail .box .post-navigation {
  margin-top: 30px;
}
main#single-case #case-detail .box .post-navigation .prev-next-links {
  display: flex;
  justify-content: space-between;
}

main#contact #form .box h2 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #F0EFEF;
}
@media screen and (max-width: 736px) {
  main#contact #form .box h2 {
    font-size: 11px;
  }
}
main#contact #form .box form table {
  width: 100%;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr {
    display: block;
  }
}
main#contact #form .box form table tr th {
  width: 14em;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  padding: 20px 0;
  vertical-align: top;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr th {
    display: block;
    width: 100%;
    padding: 10px 0 0;
    font-size: 14px;
  }
}
main#contact #form .box form table tr th span.req {
  color: #FF0000;
  font-size: 14px;
  font-weight: 400;
  margin-left: 5px;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr th span.req {
    font-size: 12px;
  }
}
main#contact #form .box form table tr th p {
  padding: 10px 0;
  text-align: left;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr th p {
    padding: 0;
  }
}
main#contact #form .box form table tr td {
  width: calc(100% - 10em);
  font-size: 18px;
  font-weight: 400;
  padding: 20px 0;
  vertical-align: middle;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr td {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
  }
}
main#contact #form .box form table tr td p {
  text-align: left;
}
main#contact #form .box form table tr td label {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
main#contact #form .box form table tr td input, main#contact #form .box form table tr td textarea {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  padding: 10px;
  border: 2px solid #707070;
  border-radius: 2px;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr td input, main#contact #form .box form table tr td textarea {
    font-size: 14px;
    border: 1px solid #707070;
  }
}
main#contact #form .box form table tr td input[type=radio] {
  font-size: 18px;
  width: 20px;
  height: 20px;
  border: 2px solid #707070;
  border-radius: 50%;
}
@media screen and (max-width: 736px) {
  main#contact #form .box form table tr td input[type=radio] {
    font-size: 14px;
  }
}
main#contact #form .box form p {
  text-align: center;
}
main#contact #form .box form .btn-box {
  text-align: center;
  margin-top: 20px;
}
main#contact #form .box form .btn-box p {
  text-align: center;
}
main#contact #form .box form .btn-box input[type=submit] {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  padding: 10px 60px;
  background-color: #246FD6;
  color: #fff;
  border-radius: 3px;
}
main#contact #form .box form .btn-box input[type=submit]:disabled {
  background-color: #707070;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}
main#contact #form .box form .btn-box span.wpcf7-spinner {
  display: none;
}
main#contact #form .box .thanks-box {
  text-align: center;
  margin-bottom: 20px;
  padding: 60px 20px;
  background-color: #F0EFEF;
}
main#contact #form .box .thanks-box h3 {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color: #246FD6;
  margin-bottom: 60px;
}
main#contact #form .box .thanks-box p {
  margin-bottom: 40px;
  font-size: 16px;
}
main#contact #form .box .thanks-box a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 60px;
  background-color: #fff;
  border-radius: 3px;
  border: 2px solid #707070;
  margin-bottom: 10px;
}

main#privacy #under-mv {
  padding-top: 160px;
}
@media screen and (max-width: 736px) {
  main#privacy #under-mv {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
main#privacy #under-mv .box {
  justify-content: center;
}
main#privacy #under-mv .box .title-box-line {
  padding-top: 80px;
}
@media screen and (max-width: 736px) {
  main#privacy #under-mv .box .title-box-line {
    margin-bottom: 0;
  }
}
main#privacy #under-mv .box .title-box-line h2 {
  text-align: center;
  font-size: 40px;
  color: #246FD6;
  margin-bottom: 15px;
}
@media screen and (max-width: 736px) {
  main#privacy #under-mv .box .title-box-line h2 {
    font-size: 24px;
  }
}
main#privacy #under-mv .box .title-box-line h2::after {
  background-color: #246FD6;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
}
main#privacy #under-mv .box .title-box-line span {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 736px) {
  main#privacy #under-mv .box .title-box-line span {
    font-size: 14px;
  }
}
main#privacy #privacy-policy .box .inner-box h3 {
  font-size: 20px;
  font-weight: 400;
  color: #246FD6;
  margin-bottom: 5px;
  margin-top: 40px;
}
main#privacy #privacy-policy .box .inner-box p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}/*# sourceMappingURL=layout.css.map */