@media "utf-8";

html { font-size: 62.5%;}
body {
  color: #333333;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
  line-height: 1.5;
  overflow-x: hidden;
}
.body-inner {
    overflow-x: hidden;
    position: relative;
}
a {
  color: #333333;
  transition: color .2s ease-in-out;
}
a:hover {
  color: #121CF6;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
}
* {
  box-sizing: border-box;
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  margin: 0 auto;
  max-width: 1024px;
  padding: 0 32px;
}
.wrapper2 {
  padding: 0 32px;
}
.ff-opensans {
  font-family: 'Open Sans';
}
.txt-center {
  text-align: center;
}
.pc-none {
  display: none;
}
.tab-none {
  display: none;
}
.sp-none {
  display: block;
}
.swspace {
padding-top: 20px !important;
}
/* ################### 768px ##################### */
@media screen and (max-width: 768px) {
  .tab-none {
    display: block;
  }
  .wrapper2 {
    padding: 0 16px;
  }
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .wrapper {
    padding: 0 16px;
  }
  .wrapper2 {
    padding: 0;
  }
  .pc-none {
    display:  block;
  }
  .sp-none {
    display:  none;
  }
}

/* ---------------------------
  section
----------------------------- */
.section {
  margin-bottom: 64px;
}
.section__title {
  background-color: #ECECEC;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #F9F9F9), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #F9F9F9),color-stop(.75, #F9F9F9), color-stop(.75, transparent),to(transparent));
  -webkit-background-size: 14px 14px;
  background-size: 14px 14px;
  padding: 8px 0;
  margin-bottom: 40px;
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .section__title {
    font-size: 2rem;
  }
}

/* ---------------------------
  common
----------------------------- */
.box1:not(:last-of-type) {
  margin-bottom: 24px;
}
.box1__title {
  background-color: #f2f2f2;
  padding: 8px 32px;
  margin-bottom: 24px;
  background-image: url("../img/triangle.png");
  background-repeat: no-repeat;
  background-size: 9px 16px;
  background-position: left 16px center;
  font-size: 1.8rem;
  font-weight: bold;
}
.container {
  display: flex;
}
.main-content {
  padding: 64px 0;
  width: 70%;
  padding-left: 32px;
  margin-left: auto;
}
.menu {
  width: 30%;
  margin: 64px 0 64px;
}
.common-text {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 24px;
}
.btn-top {
    opacity: 0;
}
.btn-top.is-fixed {
    opacity: 1;
    position: fixed;
    z-index: 99999;
    right: 16px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #ffffff;
    font-size: 1.4rem;
    background-color: #121CF6;
    transition: .2s ease-in-out;
}
.btn-top:hover {
    transform: translateY(-2px);
}


/* ################### 768px ##################### */
@media screen and (max-width: 768px) {
  .container {
    display: block;
  }
  .main-content {
    width: 100%;
    padding-left: 0;
  }
  .menu {
    position: absolute;
    z-index: 9999;
    top: 0;
    right: -110%;
    width: 50%;
    min-width: 320px;
    margin: 0;
    padding: 68px 32px 16px 16px;
    background-color: rgba(245, 245, 245, 0.95);
    transition: right 0.5s ease-in-out;
  }
  .menu.is-active {
    right: 0;
  }
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .menu {
    width: 100%;
    padding: 68px 16px 16px 16px;
  }
}

/* ---------------------------
  list
----------------------------- */
/* リスト共通 */
.list-item {
  display: flex;
  padding: 0 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #c6c6c6;
}
.list-item:last-of-type {
  border-bottom: none;
}
.list-item dt {
  max-width: 120px;
  width: 100%;
}
/* 番号付きリスト */
.list-item--numbering {
  align-items: flex-start;
}
.list-item--numbering dt {
  max-width: 48px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
/* discつきリスト */
.list-disc {
  list-style: disc;
  padding-left: 32px;
}
/* cel状リスト */
.list-cel {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #333333;
}
.list-cel__item {
  width: 50%;
  border: 1px solid #333333;
  border-collapse: collapse;
  background-color: #f2f2f2;
}
.list-cel__item a {
  display: block;
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
}
.list-cel__item a span {
  font-size: 1.4rem;
}
.list-cel__item a::before {
  display: inline-block;
  content: "";
  width: 12px;
  height: 13px;
  margin-right: 4px;
  background-image: url("../img/pin.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.company .list-cel__item a::before {
  content: none;
}
/* chevronつきリスト */
.list-chevron {
  margin-bottom: 32px;
}
.list-chevron__item a {
  display: block;
  text-decoration: underline;
  margin-bottom: 16px;
  padding-left: 24px;
  background-image: url("../img/chevron.png");
  background-repeat: no-repeat;
  background-size: 9px 15px;
  background-position: left 8px top 6px;
}
/* chevronつきリスト（小） */
.list-chevron__item--child a {
  display: block;
  padding-left: 16px;
  background-image: url("../img/chevron.png");
  background-repeat: no-repeat;
  background-size: 6px 10px;
  background-position: left 4px top 6px;
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .list-item dt {
    max-width: 80px;
  }
  .list-item--numbering dt {
    max-width: 32px;
  }
  .list-cel {
    margin: 0 16px;
  }
  .list-cel__item {
    width: 100%;
  }
  .list-cel__item a {
    font-size: 1.4rem;
  }
  .company .list-item dt {
    max-width: 96px;
  }
}

/* ---------------------------
  header
----------------------------- */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
}
.header__title {
  display: flex;
  align-items: center;
}
.logo {
  width: 48px;
}
.header__title a {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin: 0 8px;
}
.header__contact {
  margin-bottom: 0;
  margin-top: 8px;
  font-size: 1.6rem;
  padding: 4px 16px;
  display: flex;
  align-items: center;
}
.header__contact .tel {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: bold;
}
.header__contact .tel i {
  margin: 0 4px;
}
.hero {
  background-image: url("../img/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .youtube {
max-width: 80%;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.hero__overlay {
  position: absolute;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.hero__overlay--top {
  top: 0;
}
.hero__overlay--bottom {
  bottom: 0;
  transform: translateY(3px);
}

/* ################### 768px ##################### */
@media screen and (max-width: 768px) {
  .header__contact {
    display: none;
  }
  .hero {
    height: 480px;
  }
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .header__title a {
    font-size: 1.6rem;
  }
}
/* ---------------------------
  toggle btn
----------------------------- */
.btn-menu {
  background-color: #121CF6;
  padding: 7px;
  position: relative;
  z-index: 999999;
}
.btn-menu p {
  color: #ffffff;
  font-size: 1rem;
  margin-top: 4px;
  line-height: 1;
}
.btn-menu-inner {
  width: 28px;
  height: 18px;
  z-index: 1000;
  cursor: pointer;
  position: relative;
}
.btn-menu-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: .3s ease-in-out;
}
.btn-menu-inner span:nth-of-type(1) {
  top: 0;
}
.btn-menu-inner span:nth-of-type(2) {
  top: 8px;
}
.btn-menu-inner span:nth-of-type(3) {
  bottom: 0;
}
/* is-active */
.btn-menu.is-active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
  width: 28px;
}
.btn-menu.is-active span:nth-of-type(2) {
  opacity: 0;
}
.btn-menu.is-active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
  width: 28px;
}

/* ---------------------------
  menu
----------------------------- */
.menu.is-fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}
.menu-list__item a {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c6c6c6;
  text-decoration: none;
}
.menu-list__item:last-of-type a {
  border-bottom: none;
}
.menu-list__item--acc a {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.menu-list__item--acc {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #c6c6c6;
}
.menu-child-list {
  padding-left: 24px;
  padding-top: 24px;
  display: none;
}
.child-list__item a {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-decoration: none;
}

/* アコーディオン */
.btn-acc-outer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
}
.btn-acc {
  position: relative;
  background-color: #121CF6;
  width: 32px;
  height: 32px;
  transition: .4s ease-in-out;
}
.btn-acc span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}
.btn-acc span:first-of-type {
  transform: translate(-50%, -50%) rotate(90deg);
}
.btn-acc.is-active {
  transform: rotate(90deg);
  background-color: #333333;
}
.btn-acc.is-active span:last-of-type {
  visibility: hidden;
}

/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .menu-list__item a {
    font-size: 1.6rem;
  }
  .child-list__item a {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

/* ---------------------------
  concept
----------------------------- */
.concept-img {
  max-width: 270px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .concept-img {
    max-width: 180px;
  }
}

/* ---------------------------
  about
----------------------------- */
.slogan {
  margin-bottom: 40px;
}
.slogan__en {
  margin-bottom: 16px;
  font-size: 3.2rem;
  font-weight: 300;
  text-align: center;
}
/* ################### 480px ##################### */
@media screen and (max-width: 480px) {
  .slogan__en {
    font-size: 2.4rem;
    letter-spacing: -0.04em;
  }
}
/* ---------------------------
  access
----------------------------- */
.maps-outer {
  position: relative;
  padding-top: 400px;
  width: 100%;
  height: 0;
}
.maps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ---------------------------
  footer
----------------------------- */
.footer {
  background-color: #333333;
  position: relative;
  padding: 16px 0;
}
.footer-overlay {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-98%);
}
.copyright {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  color: #ffffff;
}

/* ---------------------------
  下層ページ - template
----------------------------- */
.name {
  width: 100%;
  background-color: #f2f2f2;
  position: relative;
  text-align: center;
}
.name__title {
  display: inline-block;
  font-size: 4rem;
  font-weight: bold;
  position: relative;
  margin: 80px 0 40px;
  background:linear-gradient(transparent 80%, #5e71f9 0%);
}
/*
.name__title::after {
  content: "";
  width: calc(100% + 16px);
  height: 8px;
  background-color: #1C11F6;
  opacity: 0.5;
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
}
*/
.name__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-1px);
}
.company-img {
  display: block;
  margin: 0 auto;
  margin-bottom: 24px;
}
.company-text {
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.7;
}

/* ################### 480px ##################### */
@media screen and (max-width: 480px) {

.name__title {
  font-size: 3.2rem;
  margin: 48px 0 32px;
}
.name__title--long {
  font-size: 2.2rem;
    letter-spacing: -0.08em;
}

}
