@charset "utf-8";
/*===== Responsive Grid Media Queries =====
   - 1280, 1024, 768, 480
   1280-1024   - デスクトップ（デフォルトのグリッド）
   1024-768    - タブレット横長
   768-480     - タブレット縦長
   480-less    - スマホ
==========================================*/

@media all and (min-width: 1024px) and (max-width: 1280px) {

}
@media all and (min-width: 768px) and (max-width: 1024px) {

}
@media all and (min-width: 480px) and (max-width: 768px) {

}
@media all and (max-width: 480px) {

}


/*-------------------------
1. 変数
-------------------------*/
:root {
  /* color style */
  --main-color:#DD8045;
  --key-color:#;
  --sub-color:#;
  --bgcolor- :#;
  --bgcolor- :#;
  --bgcolor- :#;
  --bgcolor- :#;
  --bgcolor- :#;
  --font-menu-size:16pt;
  --font-size:16pt;
  --font-h1size:42px;
  --font-h2size:32px;
  --font-h3size:20px;
  --font-h4size:18px;
}

@media all and (min-width: 1024px) and (max-width: 1280px) {

}
@media all and (max-width: 1280px) {
  :root {
    --font-h1size:36px;
    --font-h2size:28px;
    --font-h3size:20px;
    --font-h4size:16px;
  }
}
@media all and (min-width: 768px) and (max-width: 1024px) {
  :root {
    --font-tcon-size:14px;
    --font-scon-size:24px;
  }
}
@media all and (min-width: 480px) and (max-width: 768px) {
  :root {
    --font-size:14px;
  }
}
@media all and (max-width: 768px) {
  :root {
    --font-scon-size:24px;
    --font-tcon-size:12px;
    --font-h1size:30px;
    --font-h2size:24px;
    --font-h3size:18px;
    --font-h4size:14px;
  }
}
@media all and (max-width: 480px) {
  :root {
    --font-scon-size:18px;
  }
}


/*-------------------------
2. 共通
-------------------------*/
body {
  font-size: var(--fontsize);
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
}
body.fixed {
　width: 100%;
　height: 100%;
　position: fixed;
}
main {
  max-width: 1000px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/*-------------------------
3. フォントスタイル
-------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h1 {
  font-size: var(--font-h1size);
  line-height: 1;
}
h2 {
  font-size: var(--font-h2size);
  line-height: 1.333;
}
h3 {
  font-size: var(--font-h3size);
  line-height: 1;
}
h4 {
  font-size: var(--font-h4size);
  line-height: 1.5;
}
p {
  margin: 10px 0;
}
section {
  position: relative;
  padding: 100px 0;
}

header {
    width: 100%;
    background-color: #FFF;
    padding: 10px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}
.bg-box {
    background-color: #FFF;
    border-radius: 10px;
}
.bg-shadow {
    box-shadow: 0px 0px 15px -5px #000000;
}
.main-content-box {
    padding: 15px 20px;
}
.main-content-box h3 {
    color: var(--main-color);
    text-align: center;
    line-height: 1.4;
}
.main-content-area {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    align-items: center;
}
.main-content-area p {
    font-size: 14px;
    line-height: 1.6;
    min-height: 135px;
}
.main-content-box span {
    background-color: var(--main-color);
    color: #FFFFFF;
    border-radius: 50px;
    padding: 5px 0;
    text-align: center;
    display: block;
    margin: 10px 0;
}
.logo {
  width: 15%;
  z-index: 5;
}
.logo img {
  width: 70%;
}
.gnavi__pc-style {
  margin: 0 0 0 auto;
  width: 100%
}
.gnavi__pc-style ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.gnavi__pc-style ul li:not(:last-of-type) {
  margin-right: 20px;
}
.gnavi__pc-style ul li:last-child {
  width: 22%;
}

.gnavi__pc-style ul li:last-child a {
  font-size: 12px;
      border: 1px solid #DD8145;
      border-radius: 9999px;
      padding: 10px 20px;
}
.gnavi__pc-style ul li a {
  font-size: 1.2vw;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 1112px) {
  .gnavi__pc-style ul li:last-child {
    width: 26%;
  }
  .gnavi__pc-style ul li:last-child a {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  .gnavi__pc-style ul li:last-child {
    width: 20%;
  }
}
@media screen and (max-width: 468px) {
  .gnavi__pc-style ul li:last-child {
    width: 20%;
  }
}
/*ここから下がハンバーガーメニューのスタイル*/
.gnavi__sp-style {
  display: none;
}
@media screen and (max-width: 768px) {
.gnavi__pc-style {
  display: none;
}
.gnavi__sp-style {
  display: block;
}

/*メニューボタン　展開前*/
.menu-btn {
    display: block;
    position: fixed;
    z-index: 3;
    right: 15px;
    top: 5px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.menu-btn span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.menu-btn span:nth-of-type(1) {
  top: 10px;
}
.menu-btn span:nth-of-type(2) {
  top: 20px;
}
.menu-btn span:nth-of-type(3) {
  top: 30px;
}

/*メニューボタン　展開後*/
.menu-btn.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#000;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
.menu-btn.active span:nth-child(2),
.menu-btn.active span:nth-child(3) {
  top: 16px;
  background :#000;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/*スマホ用のメニュー*/
.gnavi__sp-style {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background-color: #FFFFFF;
  text-align: center;
  width: 100%;
	height: 100vh;
  transition: opacity .6s ease, visibility .6s ease;
	display: flex;
	align-items: center;
  display: none;
}
.gnavi__sp-style ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-top: 200px;
}
.gnavi__sp-style ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
.gnavi__sp-style ul li:last-of-type {
    padding-bottom: 0;
    width: 50%;
    margin: 0 auto;
}
.gnavi__sp-style ul li:hover{
  background :#ddd;
}
.gnavi__sp-style ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}
.gnavi__sp-style.active {
  display: block;
}
}
#header{
    /*fixedで上部固定*/
  position: fixed;
  width:100%;
    z-index: 999;/*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:#fff;
  text-align: center;
}

/*　上に上がる動き　*/

#header.UpMove{
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 0;
  transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
#visual {
  background-color: #F9F3D9;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, color-stop(.5, rgba(255,255,255,0.4)), color-stop(.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(left, #fff 50%, transparent 50%, transparent);
  background-image: -o-linear-gradient(left, #fff 50%, transparent 50%, transparent);
  background-image: linear-gradient(left, #fff 50%, transparent 50%, transparent);
  -webkit-background-size: 60px 60px;
  -moz-background-size: 60px 60px;
  background-size: 60px 60px;
  padding-top: 100px;
}
#main {
    margin-bottom: -100px;
    z-index: 12;
    padding: 100px 0 50px 0;
}
#point {
    background: url(../images/point-bg.png) center center / cover no-repeat;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 10;
    padding-bottom: calc(150 / 1000 * 100%); /* calc(画像高さ ÷ 画像横幅 × 100%) */
    padding-top: calc(80 / 1000 * 100%); /* calc(画像高さ ÷ 画像横幅 × 100%) */
}
#point-2 {
    background-color: initial;
    border-top-left-radius: 400px 60px;
    border-top-right-radius: 400px 60px;
    padding: 40px 0 0 0;
    position: relative;
    z-index: 12;
}
#feature {
  background-color: #F9F3D9;
  margin-top: -200px;
}
#voice {
    background-color: #99C3CE;
}
#bottom {
  background-color: #F9F3D9;
  background-image: -webkit-gradient(linear, 0 0, 100% 0, color-stop(.5, rgba(255,255,255,0.4)), color-stop(.5, transparent), to(transparent));
  background-image: -moz-linear-gradient(left, #fff 50%, transparent 50%, transparent);
  background-image: -o-linear-gradient(left, #fff 50%, transparent 50%, transparent);
  background-image: linear-gradient(left, #fff 50%, transparent 50%, transparent);
  -webkit-background-size: 60px 60px;
  -moz-background-size: 60px 60px;
  background-size: 60px 60px;
  padding: 50px 0 0 0;
}
.visual .title {
  max-width: inherit;
  display: grid;
  grid-template-columns: 5fr 1fr;
  gap:50px;
}
.visual .sub-title {
    width: 90%;
}
.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-end;
    margin: -40px 0 0 0;
}
.visual-btn {
    margin: 50px 50px -150px;
    position: relative;
    z-index: 89;
}
#bottom .visual-btn {
    margin: -150px 50px 0px;
    padding-bottom: 55px;
    display: block;
}
.visual-btn.floating {
  display: none;
}
.visual-btn .banner-btn {
    background-color: #EBE75E;
    border-radius: 5px;
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 15px -5px #777777;
}
.visual-btn .banner-btn h4 {
  font-size: 30px;
  line-height: 1.2;
  width: 30%;
  text-align: center;
}
.visual-btn .banner-btn h4 span {
    font-weight: bold;
    display: block;
    font-family: Hiragino Kaku Gothic StdN;
    font-size: 26px;
    text-align: center;
    letter-spacing: 2px;
}
.visual-btn .banner-btn a {
    width: 60%;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    background-color: #FFF;
    padding: 10px;
    border-radius: 9999px;
    position: relative;
    box-shadow: 0px 0px 15px -5px #777777;
    transition: 0.6s;
}
.visual-btn .banner-btn a::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.visual-btn .banner-btn a:hover {
  opacity: 0.8;
  box-shadow: 0px 0px 10px -5px #333;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:20px;
}
.grid-img {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap:20px;
  align-items: flex-end;
  margin-top: -100px;
}
.gridImg {

}
.grid-img .gridImg.left img {
  width: 80%;
  margin-bottom: -20px;
}
.grid-img .gridImg.center img {
  margin-bottom: 20px;
}
.grid-img .gridImg.right img {
  margin-bottom: 20px;
  width: 80%;
}
.main .title {
    margin-bottom: 25px;
    width: 50%;
}
.main .text {
    width: 70%;
    margin: 20px auto 50px;
}
.point {
  max-width: 800px;
  margin: 0 auto;
}
.point .title {
    margin-bottom: 50px;
    text-align: center;
    max-width: inherit;
}
.point .title h3 {
  margin-bottom: 15px;
}
.title {
  max-width: 700px;
  margin: 0 auto;
}
.feature-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 10px;
    max-width: 750px;
    margin: 50px auto;
}
.feature-subtitle {
    padding: 0 15px;
}
.feature-subtitle h3 {
  line-height: 1.4;
}
.feature-subtitle p {
    line-height: 1.6;
}
.feature-text img {
  padding: 0 15px;
}
.feature-btn {
    margin-top: 50px;
}
.feature-text img:first-child {
  margin-bottom: 20px;
}
.feature-text .feature-btn img {
  padding: 0;
}
.feature .title {
    margin-bottom: 25px;
    width: 50%;
}
.feature .text {
    margin: 20px auto 50px;
    text-align: center;
}
.feature .text h3 {
  line-height: 1.8;
}
.voice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}
.voice .title {
    max-width: inherit;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
    color: #FFF;
}
.voice .text {
  font-size: 20px;
  text-align: center;
    margin: 20px auto 50px;
}
.voice hr {
  border-color: #75AEBD;
  width: 70%;
  margin: 0 auto;
}
.bottom {
  position: relative;
}
.bottom::before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    background-image: url(../images/bottom-right.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    background-position: right;
}
.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    padding-bottom: 100px;
}
.bottom-text img:nth-child(1) {
  margin-bottom: 30px;
}
.bottom-text img:nth-child(2) {
  margin-bottom: 150px;
}
.btn {
  overflow: hidden;
  display: block;
  position: relative;
}
.btn img.btn-link {
  position: absolute;
      right: 15%;
      width: 55%;
      top: 50%;
      transform: translate(10%, -60%);
      -webkit-transform: translate(10%, -60%);
      -ms-transform: translate(10%, -60%);
}
.btn:hover img.btn-link {
  opacity: 0.7;
}

@media all and (min-width: 1400px) {
  #feature {
    margin-top: -220px;
  }
  .gnavi__pc-style ul li a {
      font-size: 16px;
  }
}

@media all and (min-width: 1700px) {

  #feature {
    margin-top: -260px;
  }
}

@media all and (max-width: 1250px) {
  nav {
    width: 70%;
  }
  .logo-area {
      padding: 20px 0 20px 20px;
  }
}
@media all and (max-width: 978px) {
  nav {
    width: 80%;
  }
  .logo-area {
      padding: 20px 0 20px 10px;
  }
}

.floating {
    position: fixed;
    left: 45%;
    bottom: 200px;
    transform: translateX(-47%) translateY(-30px);
    display: none;
    z-index: 99;
    max-width: 800px;
    width: 100%;
    transition: 0.6s;
}
.floating a {
	display: block;
  transition: 0.6s;
}
.floating a:hover {
	opacity: 1;
}

@media all and (max-width: 1000px) {
  main {
    max-width: 758px;
  }
  .floating {
    max-width: 600px;
  }
}

@media all and (min-width: 1400px) {
  #point {
    background-image: url(../images/long_version_a.png);
  }
}


/*========= モーダル表示のためのCSS ===============*/

/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before{
  background:#ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
  background:#666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title{
  font-size:1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper{
  padding:0;
}

/*以下はコンテンツ内のレイアウト*/
.info-list dl,
.gallery-list{
  display: flex;
}

.info-list dt{
  margin:0 10px 0 0;
}

.gallery-list li{
  margin:0 10px 0 0;
}


.floating-banner {
    position: fixed;/* 追従 */
    z-index: 99999;/* 他の要素の下に隠れないように */
    bottom: 0;/* バナーの上下の位置 */
    right: 0;/* バナーの左右の位置 */
}
.pc {
    width: 300px;/* バナーの横幅を指定 */
}
.floating-banner:hover {
    opacity: .9;/* ホバーで少し透過 */
}
.sp {
    display: none;/* PCではスマホ用のバナーは非表示に */
}
@media screen and (max-width: 990px) {/* タブレット用のブレイクポイントを指定 */
    .pc {
        display: none;/* タブレットサイズ以下でPC用のバナーを非表示に */
    }
}
@media screen and (max-width: 560px) {/* スマホ用のブレイクポイントを指定 */
    .sp {
        display: inline-block;/* 消していたスマホ用のバナーを表示させる */
        width: 100vw;/* スマホの画面幅いっぱいにバナーを表示 */
    }
}

.bottom-sp-img {
  display: none;
}
.visual .title img.free {
  display: block;
}
.btn-link {
  display: block;
}
#feature .visual-btn {
    margin: -50px 50px 50px;
    position: relative;
    z-index: 89;
}
@media all and (max-width: 768px) {
  #feature .visual-btn {
      margin: -50px 0px 50px;
      position: relative;
      z-index: 89;
      display: none;
  }
  .visual-btn .banner-btn {
    padding: 20px;
  }
  .visual-btn .banner-btn a {
    width: 100%;
    font-size: 16px;
  }
  .visual-btn .banner-btn a::before {
    width: 10px;
    height: 10px;
  }
  .btn-link {
    display: none;
  }
  main {
      max-width: inherit;
      padding: 0 15px;
  }
  .header .logo a img {
      width: 100%;
  }


  .grid {
      grid-template-columns: auto;
      gap: 20px;
  }
  .grid-img {
      grid-template-columns: auto;
      gap: 10px;
      margin-top: 0;
      text-align: center;
  }
  .point .grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .feature .title {
      margin-bottom: 25px;
      width: 100%;
  }
  .feature-box {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 25px;
  }
  .feature-grid {
      grid-template-columns: auto;
      gap: 25px;
      max-width: inherit;
  }
  .feature-text {
      width: 70%;
      margin: 0 auto;
  }

  .voice .title {
      width: 70%;
  }
  .voice .text {
      width: 100%;
  }
  .voice-grid {
      grid-template-columns: auto;
      gap: 25px;
  }
  .bottom-grid {
      grid-template-columns: auto;
      padding-bottom: 0;
  }
  .bottom::before {
    content: none;
  }
  .bottom-text img:nth-child(2) {
      margin-bottom: 50px;
  }
  .bottom-sp-img {
    display: block;
  }
  .bottom-sp-img-01 {
    text-align: center;
  }
  .bottom-sp-img-01 img {
    width: 70%;
  }
  .main .title {
      margin-bottom: 25px;
      width: 85%;
  }
  .main .text {
      width: 90%;
      margin: 20px auto 50px;
  }
  .visual .title {
      grid-template-columns: auto;
  }
  .visual-grid {
      display: block;
      grid-template-columns: auto;
      gap: 0px;
      align-items: flex-end;
      margin: 40px 0;
      text-align: center;
  }
  .visual-grid img:nth-child(1) {
    width: 80%;
  }
  .visual-grid img:nth-child(2) {
    margin-top: -40px;
  }
  .visual .sub-title {
      width: 90%;
      margin-top: -15px;
  }

  section {
      position: relative;
      padding: 25px 0;
  }
  #main {
      margin-bottom: 0;
      z-index: 12;
      padding: 50px 0 50px 0;
  }
  .visual .title img.free {
    display: none;
  }
  #point {
      background: none;
      background-repeat: no-repeat;
      width: 100%;
      height: 100%;
      background-position: center;
      background-size: cover;
      z-index: 10;
      padding-bottom: 25px;
      padding-top: 25px;
      background-color: #F9F3D9;
      margin-top: 0px;
      border-top-left-radius: inherit;
      border-top-right-radius: inherit;
  }
  #feature {
      background-color: #F9F3D9;
      margin-top: 0;
      padding-top: 60px;
  }
  .grid-img .gridImg.left img {
      width: 75%;
      margin-bottom: 0;
  }
  .grid-img .gridImg.center img {
      margin-bottom: 0;
  }
  .floating {
      position: fixed;
      left: 0px;
      bottom: 0;
      transform: none;
      display: none;
      z-index: 99;
      max-width: 800px;
      width: 100%;
      transition: 0.6s;
      max-width: inherit;
  }
  .btn img.btn-link {
      position: absolute;
      right: 10%;
      width: 60%;
      top: 60%;
      transform: translate(10%, -60%);
      -webkit-transform: translate(10%, -60%);
      -ms-transform: translate(10%, -60%);
  }
  header {
      width: 100%;
      background-color: #FFF;
      padding: 15px;
      display: flex;
      justify-content: flex-start;
      position: relative;
  }
  .logo {
      width: 30%;
  }
  #visual {
    padding-top: 80px;
  }
  #point-2 {
    background-color: #E5DFDC;
    border-top-left-radius: 400px 60px;
    border-top-right-radius: 400px 60px;
    padding-bottom: 80px;
  }
  #bottom .visual-btn {
      margin: auto;
      padding-bottom: 0px;
  }
  .visual-btn {
      margin: 0;
  }
  .visual-btn.floating {
    display: block;
  }
  #bottom .visual-btn {
    display: none;
  }
  #visual .visual-btn {
    display: none;
  }

}

@media all and (max-width: 468px) {
  .point .grid {
      gap: 10px;
  }
  .feature-box {
      gap: 10px;
  }
}


img.pcImg {
  display: block;
  max-width: 70%;
  margin: 0 auto;
}
img.spImg {
  display: none;
}
.catalog-wrap {
  margin: 70px auto 0;
  max-width: 70%;
}
.cautionText {
  text-align: right;
}
@media all and (max-width: 468px) {
  img.pcImg {
    display: none;
  }
  img.spImg {
    display: block;
  }
  .catalog-wrap {
    max-width: 100%;
  }
}