html {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.0em;
  scroll-behavior: smooth;
}
body {
  color: #000000;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
}
main {
  height:100%;
}
.center {
  text-align: center;
  display: block;
  margin: auto;
}
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}
h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.8em;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2.3em;
}
h3 {
  font-size: 2.1em;
}
h4 {
  font-size: 1.9em;
}
h5 {
  font-size: 1.7em;
}
p {
  font-size: 1.2em;
  line-height: 1.8em;
}
a {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.inner {
  max-width: 1643px;
  margin: auto;
  padding: 0 100px;
}
.inner2 {
  max-width: 1310px;
  margin: auto;
  padding: 0 80px;
}
.breaking-out {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}
.bg-pink {
  background-color: #FFF5FF;
}
.display-none {
  display: none;
}
@media(max-width:1440px) {
  p {
    font-size: 1.0em;
  }
  .inner2 {
    padding: 0 12%;
  }
}
@media(max-width:768px) {
  h1 {
    font-size: 2.4em;
  }
  h2 {
    font-size: 2.0em;
  }
  h3 {
    font-size: 1.7em;
  }
  h4 {
    font-size: 1.6em;
  }
  h5 {
    font-size: 1.4em;
  }
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .inner {
    padding: 0 40px;
  }
  .inner2 {
    padding: 0 40px;
  }
  p {
    font-size: 0.9em;
  }
}
@media(max-width:500px) {
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.5em;
  }
  h3 {
    font-size: 1.4em;
  }
  h4 {
    font-size: 1.3em;
  }
  h5 {
    font-size: 1.2em;
  }
  p {
    font-size: 0.8em;
  }
  .inner {
    padding: 0 20px;
  }
  .inner2 {
    padding: 0 20px;
  }
}
/*---
 余白
---*/
.section-mt {
  margin-top: 130px;
}
.section-mb {
  margin-bottom: 130px;
}
.section-pt {
  padding-top: 130px;
}
.section-pb {
  padding-bottom: 130px;
}
@media(max-width:1440px) {
  .section-mt {
    margin-top: 110px;
  }
  .section-mb {
    margin-bottom: 110px;
  }
  .section-pt {
    padding-top: 110px;
  }
  .section-pb {
    padding-bottom: 110px;
  }
}
@media(max-width:768px) {
  .section-mt {
    margin-top: 60px;
  }
  .section-mb {
    margin-bottom: 60px;
  }
  .section-pt {
    padding-top: 60px;
  }
  .section-pb {
    padding-bottom: 60px;
  }
}
/*---
背景
---*/
.bg-area {
  content: "";
  background-image: url( "../images/bg.svg");
  background-size: 100%;
  position: absolute;
  background-position: left calc(-100vw / 2.9);
  height: 100%;
  width: 100vw;
  mix-blend-mode: multiply;
}
.top-bg-area {
  content: "";
  background-image: url( "../images/bg.svg");
  background-size: 100%;
  position: absolute;
  background-position: left calc(-100vw / 2.9);
  height: 100%;
  width: 100vw;
  mix-blend-mode: multiply;
  z-index: 1;
}
.content {
  position:relative;
  z-index: 1;
  max-width: 1643px;
  margin: auto;
}
/*---
波線
---*/
.wave-img {
  width: 100%;
  position: absolute;
  bottom: -2px;
/*  z-index: -1;*/
}


/*---
画像ホバー時の動き
---*/
/*横にスライド*/
.img_wrap{
  overflow: hidden;
  cursor: pointer;
}
.img_wrap img{
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  object-position: -15px 0;
  object-fit: cover;
  transition-duration: 0.3s;
  margin-left: 15px;
}
.img_wrap:hover img{
  transform: scale(1.1);
  object-position: 0 0 ;
  transition-duration: 0.5s;
  opacity: 0.5;
}
/*透過*/
.hover-oc:hover img {
  opacity: 0.8;
}
/*---
フッター
---*/
#footer {
  background-color: #EDEDED;
  z-index: 1;
}
.footer-wrapper {
  padding: 50px 0;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer-nav li {
  margin-bottom: 6%;
  letter-spacing: 0.1em;
}
.footer-logo {
  width: 130px;
}
.footer-copyright {
  background-color: #FFF;
  display: block;
  width: 100%;
}
.footer-copyright {
  font-size: 1.0em;
  padding: 16px;
}
@media(max-width:1440px) {
  .footer-logo {
    width: 100px;
  }
  .footer-copyright {
    font-size: 0.8em;
    padding: 12px;
  }
  .footer-wrapper {
    padding: 30px 0;
  }
}
@media (max-width: 500px) {
  .footer-logo {
    width: 80px;
  }
  .footer-copyright {
    font-size: 0.6em;
  }
}
