@charset "utf-8";

/* ----- ↓ reset ------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display:block;
}

ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    color: #000;
}

/* change colours to suit your needs */
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}


/* change border colour to suit your needs */

hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

img {
　　　vertical-align: top;
　　　font-size:0;
　　　line-height: 0;
}

/* ----- ↑ reset ------- */


body {
  color: #333;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.contents-wrapper {
  position: relative;
}

.contents-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}

nav {
  width: 100%;
  height: 80px;
  background: #fff;
  padding: 10px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  nav {
    height: 60px;
  }
}

nav .logo img {
  height: 60px;
  width: auto;
}

@media only screen and (max-width: 768px) {
  nav .logo img {
    height: 40px;
  }
}

nav .nav-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  nav .nav-link ul {
    display: none;
  }
}

nav .nav-link a {
  margin: 0 20px;
  font-weight: normal;
  line-height: 60px;
}

nav .nav-link a:hover {
  background: linear-gradient(transparent 60%, #add8e6 60%);
}

.sp-nav {
  display: none;
}

@media only screen and (max-width: 768px) {
  .sp-nav {
    display: block;
  }

  .menu-icon {
    position: absolute;
    top: 32px;
    right: 24px;
    z-index: 100;
  }

  .menu-icon span {
    display: block;
    width: 40px;
    height: 2px;
    margin-bottom: 8px;
    border-radius: 4px;
    background: #333;
    transition: all .3s;
  }

  .sp-nav nav {
    width: 300px;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    background: #fff;
    position: absolute;
    right: -300px;
    top: 0;
    transition: all .3s;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
  }

  .sp-nav .nav-inner {
    width: 100%;
    padding: 80px 0 20px;
    text-align: right;
  }

  .sp-nav ul {
    padding: 20px 0;
  }

  .sp-nav li {
    margin-bottom: 30px;
    font-size: 20px;
  }

  .toggle {
    display: none;
  }

  .toggle:checked ~ nav {
    right: 0;
    opacity: 1;
  }

  .toggle:checked ~ .menu-icon span:first-child {
    transform: rotate(-20deg) translate(-3px, 10px);
  }

  .toggle:checked ~ .menu-icon span:last-child {
    transform: rotate(20deg);
  }
}

header {
  margin-top: 80px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  header {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

header .mv-space {
  position: relative;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  left: 0;
  overflow-x: scroll;
}

header .mv-space .mv-bg {
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

.modal-checkbox {
  display: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
}

.close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
  transform: translate(50%, -50%);
}

.modal-wrapper {
  position: relative;
  width: 80%;
  max-width: 600px;
  max-height: 70%;
  padding: 50px 40px;
  margin: auto;
  background-color: #FEFEFE;
  border-radius: 10px;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .modal-wrapper {
    padding: 50px 30px 30px;
  }
}

.modal-checkbox:checked + .modal {
  display: flex;
}

.modal-inner {
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .modal-inner {
    display: block;
  }
}

.modal-inner .modal-img {
  width: 50%;
  max-height: 250px;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .modal-inner .modal-img {
    width: 100%;
    padding: 0 24px;
    margin-bottom: 30px;
    box-sizing: border-box;
  }
}

.modal-inner .modal-img img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 0 0.5rem rgb(0, 0, 0, 0.3));
}

@media only screen and (max-width: 768px) {
  .modal-inner .modal-img img {
    display: block;
    max-height: 200px;
    margin: 0 auto;
  }
}

.modal-inner .corp-text {
  width: 50%;
  box-sizing: border-box;
  padding-left: 30px;
}

@media only screen and (max-width: 768px) {
  .modal-inner .corp-text {
    width: auto;
    padding-left: 0;
  }
}

.modal-inner h2 {
  font-size: 20px;
  padding: 0 10px 10px;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
}

.modal-inner h3 {
  padding-left: 10px;
  margin-bottom: 15px;
}

.modal-inner ul {
  list-style: circle;
  padding-left: 30px;
}

.modal-inner li {
  padding-bottom: 10px;
}

.corp-img {
  position: absolute;
  cursor: pointer;
}

.corp-img img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  object-position: bottom;
  transition: all .3s;
}

.corp-img:hover img {
  width: 160px;
  height: 160px;
}

#corp-img-01 {
  left: 40px;
  bottom: 400px;
}

#corp-img-02 {
  left: 210px;
  bottom: 330px;
}

#corp-img-03 {
  left: 370px;
  bottom: 370px;
}

#corp-img-04 {
  left: 540px;
  bottom: 340px;
}

#corp-img-05 {
  left: 710px;
  bottom: 410px;
}

#corp-img-06 {
  left: 820px;
  bottom: 330px;
}

#corp-img-07 {
  left: 40px;
  bottom: 180px;
}

#corp-img-08 {
  left: 200px;
  bottom: 180px;
}

#corp-img-09 {
  left: 360px;
  bottom: 180px;
}

#corp-img-10 {
  left: 160px;
  bottom: 50px;
}

#corp-img-11 {
  left: 320px;
  bottom: 50px;
}

#corp-img-12 {
  left: 480px;
  bottom: 50px;
}

#corp-img-13 {
  left: 520px;
  bottom: 180px;
}

#corp-img-14 {
  left: 650px;
  bottom: 50px;
}

#corp-img-15 {
  left: 750px;
  bottom: 50px;
}

#corp-img-16 {
  left: 850px;
  bottom: 50px;
}

.mv-home {
  width: auto;
  height: 120px;
  position: absolute;
  bottom: 50px;
  left: 20px;
}

.mv-track {
  width: auto;
  height: 80px;
  position: absolute;
  bottom: 280px;
  left: 700px;
}

section {
  margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  section {
    margin-bottom: 80px;
  }
}

section h2 {
  margin-bottom: 50px;
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  section h2 {
    font-size: 21px;
    margin-bottom: 30px;
  }
}

.about-box {
  padding: 50px 40px 20px;
  margin: 0 auto 80px;
  border: 1px solid #333;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .about-box {
    padding: 40px 20px 20px;
  }
}

.about h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 5px;
  background: #add8e6;
  margin: 15px auto 0;
}

.about p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.item-list {
  background: #add8e6;
  padding: 80px 0;
}

@media only screen and (max-width: 768px) {
  .item-list {
    padding: 60px 0 40px;
  }
}

.item-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item-list li {
  width: 180px;
  height: 180px;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .item-list li {
    width: 150px;
    height: 150px;
  }
}

.item-list li::after {
  content: '';
  display: block;
  width: 160px;
  height: 160px;
  border: 1px solid #add8e6;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
}

@media only screen and (max-width: 768px) {
  .item-list li::after {
    width: 130px;
    height: 130px;
  }
}

.item-list li span {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .item-list li span {
    font-size: 15px;
  }
}

.business-partner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 32px;
}

@media only screen and (max-width: 768px) {
  .business-partner ul {
    display: block;
  }
}

.business-partner li {
  flex-basis: 32%;
  padding: 0 10px 20px 0;
  box-sizing: border-box;
  list-style: disc;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .business-partner li {
    line-height: 1;
    padding: 0 0 15px;
  }
}

.company {
  background-image: linear-gradient(#f9f6ca 1px, transparent 0),
                  linear-gradient(90deg, #f9f6ca 1px, transparent 0);
  background-size: 30px 30px;
  background-color: #fffa9f;
  padding: 50px 0;
  margin-bottom: 0;
}

.company h2 {
  font-size: 30px;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.company .table-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}

@media only screen and (max-width: 768px) {
  .company .table-wrap {
    padding: 10px 20px 20px;
  }
}

.company table {
  width: 100%;
}

.company table th,
.company table td {
  padding: 20px 30px;
  border-bottom: 1px solid #aaa;
  line-height: 1.8;
}

@media only screen and (max-width: 768px) {
  .company table th,
  .company table td {
    display: block;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
}

.company table th {
  width: 180px;
  box-sizing: border-box;
  border-right: 1px solid #aaa;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .company table th {
    width: 100%;
    box-sizing: border-box;
    border: none;
    padding-bottom: 0;
  }
}

.company table tr:last-child th,
.company table tr:last-child td {
  border-bottom: none;
}

.access {
  background-image: linear-gradient(#f9f6ca 1px, transparent 0),
                  linear-gradient(90deg, #f9f6ca 1px, transparent 0);
  background-size: 30px 30px;
  background-color: #fffa9f;
  padding: 50px 0;
}

@media only screen and (max-width: 768px) {
  .access {
    padding: 20px 0 50px;
  }
}

.access .map-space iframe {
  width: 100%;
  height: 320px;
}

.contact p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .contact p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}

.contact .mail {
  text-align: center;
}

.contact .mail img {
  width: auto;
  height: 50px;
  padding-right: 20px;
  transform: translateY(15px);
}

@media only screen and (max-width: 768px) {
  .contact .mail img {
    height: 24px;
    padding-right: 10px;
    transform:  translateY(7px);
  }
}

.contact .mail a {
  color: #888;
  font-size: 30px;
  letter-spacing: 3px;
  transition: all .3s;
}

@media only screen and (max-width: 768px) {
  .contact .mail a {
    font-size: 20px;
  }
}

.contact .mail a:hover {
  color: #333;
}

footer {
  background: #386b3c;
  border-top: 40px solid #ccc;
  margin-top: 160px;
}

footer .contents-inner {
  position: relative;
}

footer .logo {
  position: absolute;
  left: 0;
  top: -150px;
}

@media only screen and (max-width: 768px) {
  footer .logo {
    left: 20px;
  }
}

footer .logo img {
  height: 150px;
}

footer .track img {
  width: auto;
  height: 100px;
  position: absolute;
  top: -90px;
  right: 0;
}

footer .footernav {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

@media only screen and (max-width: 768px) {
  footer .footernav {
    display: block;
  }
}

footer .footernav .left {
  margin: 40px 0;
  padding: 20px 40px;
  border-right: 1px solid #fff;
  line-height: 2;
}

@media only screen and (max-width: 768px) {
  footer .footernav .left {
    margin: 0 0 20px;
    padding: 40px 0 0;
    border: none;
    font-size: 20px;
  }
}

footer .footernav .right {
  margin: 40px 0;
  padding: 20px 40px;
}

@media only screen and (max-width: 768px) {
  footer .footernav .right {
    margin: 0 0 20px;
    padding: 30px 0 0;
    border-top: 1px solid #fff;
  }
}

footer .footernav li {
  margin-bottom: 15px;
}

footer .footernav a {
  color: #fff;
  transition: all .3s;
  font-size: 13px;
}

footer .footernav a:hover {
  opacity: 0.6;
}

footer .copyright {
  font-size: 11px;
  text-align: right;
  color: #fff;
  padding: 10px 0 20px;
}
