@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;500&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc(100vw * 10 / 1200);
  }
}
@media screen and (max-width: 959px) {
  html {
    font-size: calc(100vw * 10 / 960);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 450);
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: 300;
  font-family: "Kiwi Maru", serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #555;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
    cursor: pointer;
  }
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
body {
  color: #555;
  font-size: 1rem;
  text-align: left;
}

section {
  position: relative;
}

main {
  display: block;
}

.wrap {
  width: 110rem;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

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

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.preload *, .preload *::before, .preload *::after {
  transition: none !important;
}

@media screen and (min-width: 768px) {
  .fade {
    transition: opacity 0.3s ease;
  }

  .fade:hover {
    opacity: 0.6;
    cursor: pointer;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 959px) {
  body {
    min-width: inherit;
  }

  .wrap {
    width: 90%;
    padding: 0;
  }

  input, textarea, select, .select {
    font-size: max(1.6rem, 16px) !important;
  }
}
/* ------------------------------
    header
------------------------------ */
#header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: #fff;
}
#header .wrap {
  width: 100%;
  min-width: 1060px;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
#header .logo_wrap {
  height: 80px;
  flex-grow: 1;
}
#header .logo_wrap .logo {
  display: flex;
  align-items: center;
  padding-left: 30px;
}
#header nav .gnavi {
  display: flex;
  justify-content: right;
}
#header nav .gnavi > li {
  height: 80px;
  line-height: 80px;
}
#header nav .gnavi > li > a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 1em;
}
#header nav .gnavi > li + li {
  margin-left: 10px;
}
#header .overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997;
}
#header .overlay.active {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  #header,
#header .wrap,
#header .logo_wrap {
    width: 100%;
    height: 60px;
  }

  #header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  #header .wrap {
    padding: 0;
    display: block;
    position: relative;
    min-width: inherit;
  }
  #header .logo_wrap {
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
    z-index: 999;
    padding: 0;
  }
  #header .logo_wrap .logo {
    padding-left: 3vw;
  }
  #header .logo_wrap .logo img {
    width: 30%;
    height: auto;
  }
  #header .menu-trigger {
    display: block;
    position: fixed;
    top: 15px;
    right: 3vw;
    width: 30px;
    height: 30px;
    z-index: 999;
  }
  #header .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  #header .menu-trigger span:nth-of-type(1) {
    top: 15%;
  }
  #header .menu-trigger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  #header .menu-trigger span:nth-of-type(3) {
    bottom: 15%;
  }
  #header nav {
    width: 100%;
    opacity: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 60px;
    overflow-y: auto;
    max-height: calc(100% - 60px);
    transform: translateY(-100%);
    transition: transform 0.3s, opacity 1s;
    z-index: 998;
  }
  #header nav .nav_wrap {
    background: #eee;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0;
  }
  #header nav .nav_wrap .gnavi {
    margin: 0;
    display: block;
  }
  #header nav .nav_wrap .gnavi > li {
    display: block;
    height: auto;
    position: relative;
  }
  #header nav .nav_wrap .gnavi > li > a {
    background: transparent;
    display: block;
    font-size: 4vw;
    line-height: 1;
    padding: 5%;
    position: relative;
  }
  #header nav .nav_wrap .gnavi > li + li {
    margin: 0;
    border-top: 1px solid #ccc;
  }
  #header.navOpen .menu-trigger span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #header.navOpen .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #header.navOpen .menu-trigger span:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }
  #header.navOpen nav {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s, opacity 0s;
  }
}
/* ------------------------------
    footer
------------------------------ */
#footer {
  background: #eee;
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  text-align: center;
}
#footer .menu > li {
  display: inline-block;
  font-size: 1.5rem;
  padding: 1em 0;
  position: relative;
  margin-right: 20px;
}
#footer .menu > li a {
  color: #fff;
}
#footer .copy {
  font-size: 1.2rem;
}

/* ------------------------------
    index
------------------------------ */
#sec_mv {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
#sec_mv .list {
  height: 100%;
  width: 100%;
  display: flex;
  align-content: flex-start;
}
#sec_mv .list .item {
  background: url(../img/mv01.jpg) top left/35rem auto;
  flex: 1;
  max-height: 0;
  transition: max-height 0.6s ease;
}
#sec_mv .list .item.scroll-show {
  max-height: 100vh;
}
#sec_mv .list .item._02 {
  background-image: url(../img/mv02.jpg);
}
#sec_mv .list .item._03 {
  background-image: url(../img/mv03.jpg);
}
#sec_mv .list .item._04 {
  background-image: url(../img/mv04.jpg);
}
#sec_mv .list .item._05 {
  background-image: url(../img/mv05.jpg);
}
@media screen and (max-width: 767px) {
  #sec_mv .list {
    flex-direction: column;
  }
  #sec_mv .list .item {
    background-size: 20rem auto;
    max-height: inherit;
    max-width: 0;
    transition: max-width 0.6s ease;
  }
  #sec_mv .list .item.scroll-show {
    max-height: inherit;
    max-width: 100%;
  }
}

.contents {
  background: #eee;
  position: relative;
  z-index: 1;
  margin-top: 100vh;
  padding: 15rem 0;
}
@media screen and (max-width: 767px) {
  .contents {
    padding: 10rem 0 5rem;
  }
}

#sec_about .flex {
  justify-content: center;
  max-width: 60rem;
  margin: 0 auto;
}
#sec_about .flex_l {
  flex: 0 0 auto;
  margin-right: 8rem;
}
#sec_about .flex .ico {
  width: 15rem;
  height: 15rem;
  overflow: hidden;
  border-radius: 100%;
}
#sec_about .flex .ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_about .flex .name {
  font-size: 2.2rem;
}
#sec_about .flex .name .en {
  font-size: 70%;
  margin-left: 1em;
}
#sec_about .flex .txt {
  margin: 1.5em 0 2.5em;
}
#sec_about .flex .data {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
#sec_about .flex .data dt {
  width: 6em;
}
#sec_about .flex .data dd {
  width: calc( 100% - 6em );
}
#sec_about .flex .history {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
#sec_about .flex .history dt {
  width: 4em;
}
#sec_about .flex .history dd {
  width: calc( 100% - 4em );
}
#sec_about .flex .sns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem 3rem;
  margin-top: 4rem;
}
#sec_about .flex .sns .item a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}
#sec_about .flex .sns .item svg {
  width: 95%;
  height: 95%;
  object-fit: contain;
}
#sec_about .flex .sns .item svg .cls-1 {
  fill: #555;
}
@media screen and (max-width: 767px) {
  #sec_about .flex {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #sec_about .flex_l {
    margin-right: 0;
  }
  #sec_about .flex_r {
    display: contents;
  }
  #sec_about .flex .ico {
    width: 8rem;
    height: 8rem;
  }
  #sec_about .flex .detail {
    width: 75%;
  }
  #sec_about .flex .txt {
    margin: 0.5em 0 0;
    font-size: 1.4rem;
  }
  #sec_about .flex .data {
    margin-top: 3rem;
  }
}

#sec_link {
  position: relative;
  overflow: hidden;
  padding-top: 40rem;
}
#sec_link .line {
  background: url("../img/line01.jpg") left center/20rem auto;
  position: absolute;
  width: 120%;
  height: 5rem;
}
#sec_link .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: #eee;
  width: 100%;
  height: 100%;
  transition: transform 2s ease;
}
#sec_link .line._01 {
  top: 2rem;
  left: 50%;
  transform: rotate(-4deg) translate(-50%, 180%);
}
#sec_link .line._01.scroll-show::after {
  transform: translateX(-100%);
}
#sec_link .line._02 {
  background-image: url("../img/line02.jpg");
  top: 0;
  right: 50%;
  transform: rotate(4deg) translate(50%, 180%);
}
#sec_link .line._02.scroll-show::after {
  transform: translateX(100%);
}
#sec_link .list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5%;
}
#sec_link .list .item {
  flex: 20%;
}
#sec_link .list .item a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
#sec_link .list .item .ico {
  flex: 0 0 auto;
  width: 8rem;
  height: 8rem;
  margin-right: 2rem;
  border-radius: 100%;
  overflow: hidden;
}
#sec_link .list .item .ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_link .list .item .name {
  color: #999;
  line-height: 1.4;
  font-weight: bold;
}
#sec_link .list .item .txt {
  font-size: 1.4rem;
  margin-top: 0.3em;
}
@media screen and (max-width: 959px) {
  #sec_link .list .item {
    flex: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  #sec_link {
    padding-top: 30rem;
  }
  #sec_link .line {
    height: 4rem;
    background-size: 15rem auto;
  }
  #sec_link .line._01 {
    transform: rotate(-8deg) translate(-50%, 180%);
  }
  #sec_link .line._02 {
    transform: rotate(12deg) translate(50%, 180%);
  }
  #sec_link .list {
    gap: 2rem 0;
  }
  #sec_link .list .item {
    flex: 100%;
  }
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll=fade-top] {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(30px);
}

*[data-scroll=fade-bottom] {
  transition: opacity 0.6s, transform 0.6s;
  opacity: 0;
  transform: translateY(-30px);
}

*[data-scroll=fade-top].scroll-show,
*[data-scroll=fade-bottom].scroll-show {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }

  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  /* 隙間対応 */
  font-size: 0.1em;
  /* 隙間対応 */
  line-height: 0;
  /* 隙間対応 */
}
