@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */ /*rootA：文字サイズを大きくできる　相対的に大きさを指定*/
  width: 100%;
  box-sizing: border-box; /*ボーダーまで含める*/
}
body {
  color: #333; /*RGB*/
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.6em; /*親要素に対して1.6倍　bodyの親はhtmlなので、結局rootAより16px　16pxは標準サイズ*/
  line-height: 3.2rem; /*rootトップの
  要素に対して2.4倍　→rootAより24px*/
  text-align: center;
}
a {
  text-decoration: none;
  color: #fff;
  display: block;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
.small {
  font-size: smaller;
}
.more_small {
  font-size: small;
  line-height: 1.3rem;
}
.large {
  font-size: 3.4rem;
}
.font_big {
  font-size: 6.0rem;
  line-height: 6.0rem;
}
.white {
  color: #fff;
}
img {
  width: 100%;
  height: auto;
}
/*==========original-common===================*/
h2 {
  padding: 25px;
  font-size: 5.6rem;
  line-height: 5.6rem;
  background: linear-gradient(to right, #114357, #f29492);
  -webkit-background-clip: text;
  color: transparent;
}
h3 {
  font-size: 3.0rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.p_white {
  background: rgb(255, 255, 255, 0.8);
}
.background_gradient {
  box-sizing: border-box; /*揺れ対策*/
  background: radial-gradient(circle, rgba(165, 166, 156, 1) 0%, rgba(9, 9, 121, 1) 0%, rgba(216, 235, 242, 1) 0%, rgba(113, 157, 178, 1) 100%);
  overflow: hidden; /*子のmarginの突き抜け対策*/
}
.break_diamond {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: linear-gradient(to right, #114357, #f29492);
  margin: 20px auto;
}
.break_diamond_mini {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background-color: #fff;
  margin: 20px auto;
}
.break_diamond_mini_black {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background-color: #000;
  margin: 20px auto;
}
.column {
  /*margin: 5px;*/
  background-color: #EAF6FD;
  padding: 10px;
  border-radius: 30px;
}
.sp_br {
  /*line-height: 0;*/
}
@media(min-width:600px) {
  .sp_br {
    display: none;
  }
}
li {
  font-size: 1.6rem;
  line-height: 1.6rem; /*複数行になった時に行間をなくす*/
  list-style-type: none; /*点を非表示*/
  position: relative; /*基準位置*/
  margin-bottom: 5px;
}
@media(max-width:600px) {
  li:before {
    display: none;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(to right, #cc95c0, #dbd4b4, #7aa1d2);
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  bottom: -50px;
  transition: all 2.0s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  /*text-transform: uppercase;*/
  letter-spacing: 0.1em;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: linear-gradient(#114357, #f29492);
  border-radius: 5px;
  box-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 5px 6.1px rgba(0, 0, 0, 0.076), 0 10.1px 11.4px rgba(0, 0, 0, 0.086), 0 19.2px 19.8px rgba(0, 0, 0, 0.092), 0 38.4px 34.8px rgba(0, 0, 0, 0.1), 0 101px 74px rgba(0, 0, 0, 0.13);
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  /*background-color: #666;*/
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*------*/
.box-title {
  border-top: solid 0.5px #f05053;
  border-bottom: solid 0.5px #f05053;
  color: #f05053;
  padding: 5px;
}
header {
  width: 100%;
  /*  height: 100px;
*/ padding-bottom: 20px;
  color: #fff;
  text-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 5px 6.1px rgba(0, 0, 0, 0.076), 0 10.1px 11.4px rgba(0, 0, 0, 0.086), 0 19.2px 19.8px rgba(0, 0, 0, 0.092), 0 38.4px 34.8px rgba(0, 0, 0, 0.1), 0 101px 74px rgba(0, 0, 0, 0.13);
}
.moake_life {
  position: absolute;
  top: 10px;
  left: 10vw;
  text-align: left;
  text-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 5px 6.1px rgba(0, 0, 0, 0.076), 0 10.1px 11.4px rgba(0, 0, 0, 0.086), 0 19.2px 19.8px rgba(0, 0, 0, 0.092), 0 38.4px 34.8px rgba(0, 0, 0, 0.1), 0 101px 74px rgba(0, 0, 0, 0.13);
}
footer {
  width: 100%;
  height: 200px;
  padding-top: 60px;
  background-color: #000;
  color: #fff;
}
.contact div {
  display: inline-block;
}
.footer_instagram, .contact_img {
  margin: 10px;
  width: 50px;
  height: auto;
}