@charset "UTF-8";

/* =========================================================
   moved from inline style in index.html
   ========================================================= */

:root {
  --header-height: 8rem;
}

@media (max-width: 767px) {
  :root {
    --header-height: 6.4rem;
  }
}

.button {
  align-items: center;
  border-radius: 3.2rem;
  color: #fff;
  display: flex;
  font-family: yakuhanmp, "Noto Serif JP", YuMincho, 游明朝体, Yu Mincho, ヒラギノ明朝 ProN W3, Hiragino Mincho ProN, HG明朝E, ＭＳ Ｐ明朝, MS PMincho, ＭＳ 明朝, serif;
  font-size: 1.7rem;
  font-weight: 500;
  justify-content: center;
  line-height: 1.5;
  margin: 0;
  padding: 1.8rem 0;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  width: 32.4rem;
}

.button .arrowSVG {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  width: 3.6rem;
}

@media screen and (min-width: 768px) {
  .button:hover .arrowSVG {
    transform: translate(0.5rem, -50%);
  }

  .button:hover circle {
    fill: currentColor;
  }

  .button:hover path {
    stroke: #fff;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover .arrowSVG {
    transform: translate(0.5rem, -50%);
  }

  .button:hover circle {
    fill: currentColor;
  }

  .button:hover path {
    stroke: #fff;
  }
}

.button--default {
  background-color: #fff;
  border: 1px solid #2b883a;
  color: #2b883a;
}

.button--default circle {
  fill: #2b883a;
}

.button--default path {
  stroke: #fff;
}

.button--request {
  /*background-color: #2b883a;
  border: 1px solid #2b883a;*/
	background-color: #dc9a5b;
  border: 1px solid #dc9a5b;
}

.button--request .arrowSVG {
  /*stroke: #2b883a;*/
	stroke: #dc9a5b;
}

@media screen and (min-width: 768px) {
  .button--request:hover {
    background-color: #fff;
    color: #2b883a;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button--request:hover {
    background-color: #fff;
    color: #2b883a;
  }
}

.button--limited {
  background-color: #375928;
  border: 1px solid #375928;
}

.button--limited .arrowSVG {
  stroke: #375928;
}

@media screen and (min-width: 768px) {
  .button--limited:hover {
    background-color: #fff;
    color: #375928;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button--limited:hover {
    background-color: #fff;
    color: #375928;
  }
}

.button--reserve {
  background-color: #c9a063;
  border: 1px solid #c9a063;
}

.button--reserve .arrowSVG {
  stroke: #c9a063;
}

@media screen and (min-width: 768px) {
  .button--reserve:hover {
    background-color: #fff;
    color: #c9a063;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button--reserve:hover {
    background-color: #fff;
    color: #c9a063;
  }
}

.button--planBack {
  background-color: #2b883a;
  border: 1px solid #2b883a;
}

.button--planBack .arrowSVG {
  stroke: #2b883a;
}

@media screen and (min-width: 768px) {
  .button--planBack:hover {
    background-color: #fff;
    color: #2b883a;
  }
}

@media (hover: hover) and (pointer: fine) {
  .button--planBack:hover {
    background-color: #fff;
    color: #2b883a;
  }
}

.button--pageTop {
  background-color: #375928;
  border: 1px solid #375928;
}

@media screen and (min-width: 768px) {
  .button--pageTop {
    font-size: 1.4rem;
    height: 4rem;
    padding: 1rem;
    width: 24.6rem;
  }
}

@media screen and (max-width: 768px) {
  .button--pageTop {
    font-size: 1.4rem;
    padding: 1.3rem;
    width: 24.6rem;
  }
}

.button--pageTop .arrowSVG {
  stroke: #375928;
}

@media screen and (min-width: 768px) {
  .button--pageTop .arrowSVG {
    height: 3.6rem;
    right: 0.2rem;
    width: 3.6rem;
  }
}

@media screen and (max-width: 768px) {
  .button--pageTop .arrowSVG {
    height: 3.6rem;
    right: 0.6rem;
    width: 3.6rem;
  }
}

@media screen and (min-width: 768px) {
  .button--pageTop:hover {
    background-color: #fff;
    color: #375928;
  }

  .button--pageTop:hover .arrowSVG {
    transform: translate(0.1rem, -50%);
  }
}

@media (hover: hover) and (pointer: fine) {
  .button--pageTop:hover {
    background-color: #fff;
    color: #375928;
  }

  .button--pageTop:hover .arrowSVG {
    transform: translate(0.1rem, -50%);
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .button--onlyPC {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .button--onlyPC {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .button--onlySP {
    display: none;
  }
}

[data-astro-image] {
  aspect-ratio: var(--w) / var(--h);
  height: auto;
  object-fit: var(--fit);
  object-position: var(--pos);
  width: 100%;
}

[data-astro-image="responsive"] {
  max-height: calc(var(--h) * 1px);
  max-width: calc(var(--w) * 1px);
}

[data-astro-image="fixed"] {
  height: calc(var(--h) * 1px);
  width: calc(var(--w) * 1px);
}

.image {
  display: block;
  height: auto;
  max-width: 100%;
}

.parallaxPhoto {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.parallaxPhoto__capIn,
.parallaxPhoto__capOut {
  display: block;
  line-height: 1.5;
}

.parallaxPhoto__capIn {
  bottom: 0;
  padding: 0.5rem;
  position: absolute;
  right: 0;
  text-align: right;
  width: 100%;
}

.parallaxPhoto__capOut {
  margin-top: 1rem;
  text-align: right;
}

.parallaxPhoto__cap--grey {
  color: #999;
}

.parallaxPhoto__cap--black {
  color: #000;
}

.parallaxPhoto__cap--white {
  color: #fff;
}

.parallaxPhoto__cap--sdw_wh {
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.parallaxPhoto__cap--sdw_bl {
  color: #000;
  text-shadow: 0 0 4px hsla(0, 0%, 100%, 0.5);
}

.parallaxPhoto--full {
  height: 100vh;
  width: 100vw;
}

.parallaxPhoto--half {
  height: 50vh;
  width: 100%;
}

/* =========================================================
   Common design for Duo Hills Toyoake Zengo
   ========================================================= */
/*
Gotham Book
font-family: "gotham", sans-serif;
font-weight: 400;
font-style: normal;
*/

/* hover */
a {
  color: #2E87CA;
  text-decoration: none;
}
a:hover {
  color: #205F8E;
  /*text-decoration: underline;*/
}

a.off{
    pointer-events: none;
	cursor: default;
}

a img.over {
  transition: all 0.3s linear;
}
a img.over:hover {
  opacity: 0.6;
}
/* display */
.sp {
  display: none !important;
}
.pc {
  display: block !important;
}
.sp_pr {
  display: none !important;
}
.pc_pr {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .sp_pr {
    display: block !important;
  }
  .pc_pr {
    display: none !important;
  }
}

/* img */
img {
    max-width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

.inner {
  max-width: 1040px; /*1000*/
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
   Header design for Duo Hills Toyoake Zengo
   ========================================================= */

/* header
   ========================================================= */
header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(250,250,250,1.0);
    z-index: 999;
    transition: all 0.5s ease-out;
}

header .inner {
    max-width: 100%;
    height: 80px;
    padding: 0;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
     align-items: center; 
    transition: all 0.75s ease-out;
}

@media screen and (max-width: 768px){
header .inner {
    height: 60px;
}
}

header h1.logo {
	max-width: 298px;
    margin-left: 40px;
    position: relative;
    transition: all 0.5s ease-out;
}

@media screen and (max-width: 768px){
header h1.logo {
   max-width: 220px;
   margin-left: 20px;
}
}

/* header_nav
   ========================================================= */
.header_nav {
    margin-right: 86px;
    overflow: hidden;
}

@media screen and (max-width: 768px){
.header_nav {
    display: none;
}
}

.header_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
}

.header_nav li {
    font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    border-left: 1px solid #00b4b4;
}
.header_nav li.box {
    border-left: none;
}

.header_nav li a {
  font-size: 1.6rem;
  width: 120px;
  height: 30px;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s linear;
}
.header_nav li a span {
  font-family: "gotham", 'Roboto', "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.header_nav li a.siryo {
  width: 160px;
  height: 80px;
    color: #FFFFFF;
  background-color: #dc9a5b;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header_nav li a.reserve {
  width: 160px;
  height: 80px;
    color: #FFFFFF;
  background-color: #002541;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.header_nav li a.siryo a span,
.header_nav li a.reserve a span{
  font-size: 1.6rem;
}

.header_nav li a:hover {
  opacity: 0.6;
}
/* soon */
.header_nav li a.soon {
  pointer-events: none;
  cursor: default;
}
.header_nav li a.soon p{
  opacity: 0.5;
}
.header_nav li a.soon:hover {
  opacity: 1;
}


/* =========================================================
   Index design for Duo Hills Toyoake Zengo
   ========================================================= */

/* MainVisual
   ========================================================= */
.MainVisual{
    width: 100%;
    position: relative;
    overflow: hidden;
	margin-top: 80px;
}
@media screen and (max-width: 768px){
.MainVisual{
	margin-top: 0px;
}
}

.MainVisual img {
	max-width: 100%;
    height: auto;
}

.MainVisual .mv-video {
  line-height: 0;
}

.MainVisual .mv-video video {
  display: block;
  width: 100%;
  height: auto;
}

.MainVisual .mv-video {
	position: relative;
}

/* SP */
@media screen and (max-width: 480px) {
  .MainVisual {
    height: auto;
  }

  .MainVisual .mv-video {
    height: 390px;
    overflow: hidden;
  }

  .MainVisual .mv-video video {
    width: 120%;
    height: 100%;
    margin-left: -10%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
}

.MainVisual p.cap {
	position: absolute;
	right: 5px;
	bottom: 5px;
	font-size: 1.1rem;
	color: #FFFFFF;
}

.MainVisual .obi {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 2.5em 1em;
	background-color: rgba(255,255,255,0.90);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 2;
}
@media screen and (max-width: 768px) {
.MainVisual .obi {
	padding: 1em 0.5em;
}
}

.MainVisual p.catch{
	text-align: center;
	font-size: 4.3rem;
	font-weight: 700;
	line-height: 1.3;
	color: #184f7b;
}
@media screen and (max-width: 768px) {
.MainVisual p.catch{
	font-size: 1.6rem;
}
}

.MainVisual h2{
	text-align: center;
	font-size: 5.3rem;
	font-weight: 700;
	line-height: 1.3;
	color: #184f7b;
	/*margin-bottom: 8px;*/
}
@media screen and (max-width: 768px) {
.MainVisual h2{
	font-size: 1.8rem;
	margin-bottom: 4px;
}
}
.MainVisual p.lead{
	text-align: center;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.4;
}
@media screen and (max-width: 768px) {
.MainVisual p.lead{
	font-size: 1.1rem;
}
}
.MainVisual p sup {
	font-size: 0.3em;
	vertical-align: top;
	margin-left: 2px;
}

.MainVisual .scr{
    position: absolute;
	bottom: 23%;
	left: 50%;
	transform: translateX(-50%);
    z-index: 3;
}
@media screen and (max-width: 768px) {
.MainVisual .scr{
	bottom: 30%;
}
}

@media screen and (max-width: 480px) {
.MainVisual .scr{ 
    display: none;
}
}

/* information
   ========================================================= */
.intro{
	max-width: 1040px; /*1000*/
    margin: 0 auto;
	padding: 60px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.intro ul.point{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.intro ul.point li{
    width: 100%;
	text-align: center;
}

@media screen and (max-width: 768px){
.intro{
    padding: 40px 20px;
}
}

/* information
   ========================================================= */
.information{
	width: 100%;
	margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
.information{
	margin-bottom: 30px;
}
}

.information h3.ttl{
	width: 100%;
	padding: 10px 0;
	background-color: #00b4b4;
	text-align: center;
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 1.7rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
.information h3.ttl{
	margin-bottom: 1em;
}
}
.information h4{
	text-align: center;
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #00b4b4;
	margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
.information h4{
	font-size: 2.6rem;
}
}

.information p.lead{
	text-align: center;
	font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
.information p.lead{
	text-align: justify;
	font-size: 1.4rem;
}
}

.information p.lead span{
	display: block;
	font-size: 1.2rem;
	margin-top: 0.5em;
}

.information .btn_wrap{
	text-align: center;
	margin-top: 3em;
}

a.btn_siryo{
	position: relative;
	width: 300px;
	height: 60px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background-color: #dc9a5b;
	color: #FFFFFF;
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	transition: all 0.3s linear;
	border-radius: 50vh;
}

a.btn_siryo span{
	position: absolute;
    top: 24px;
    right: 20px;
    transform: translateY(-50%);
}

a.btn_siryo:hover{
	opacity: 0.6;
}



/* ConceptWrap
   ========================================================= */
.ConceptWrap{
	width: 100%;
	padding: 60px 0;
	background-color: #F0EFE3;
	/*background-color: #f8f7f0;*/
}
@media screen and (max-width: 768px) {
.ConceptWrap{
	padding: 30px 0;
}
}

.ConceptWrap .inner{
	padding-top: 90px;
	background-image: url(../images/concept_bg.svg);
	background-repeat: no-repeat;
	background-position: center top;
}
@media screen and (max-width: 768px) {
.ConceptWrap .inner{
	max-width: 90%;
	padding-top: 0px;
	background-image: none;
}
}

.ConceptWrap h3.ttl{
	width: 100%;
	text-align: center;
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 3.6rem;
	letter-spacing: 0.02em;
	color: #00b4b4;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.ConceptWrap h3.ttl{
	font-size: 2.4rem;
}
}

.ConceptWrap h4{
	text-align: center;
	font-size: 4.6rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #00b4b4;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.ConceptWrap h4{
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	line-height: 2.2;
	padding: 60px 20px;
	background-image: url(../images/concept_bg_sp.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
		margin-bottom: 30px;
}
}

.ConceptWrap p.msg{
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.0;
	margin-bottom: 40px;
	letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
.ConceptWrap p.msg{
	text-align: justify;
	font-size: 1.2rem;
}
}

.ConceptWrap p.msg sup{
	font-size: 0.8em;
	vertical-align: top;
}

.ConceptWrap h5{
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	color: #00b4b4;
	margin-bottom: 60px;
}


/* MapWrap
   ========================================================= */
.MapWrap{
	position: relative;
	background-color: #F0EFE3;
	z-index: 11;
	padding: 60px 0 90px;
}
@media screen and (max-width: 768px) {
.MapWrap{
	padding: 30px 0 30px;
}
}

.MapWrap::before{
	position: absolute;
	content: '';
	width: 100%;
	height: 50%;
	left: 0;
	bottom: 0;
	background-color: #184f7b;
}

.MapWrap .inside{
	width: 90%;
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	z-index: 3;
}

/* NvyWrap
   ========================================================= */
.NvyWrap{
	position: relative;
	background-color: #184f7b;
}

/* LineUp
========================================================= */

.line-up {
	width: 100%;
	padding-bottom: 90px;
}

@media only screen and (max-width: 768px) {
.line-up {
    padding-bottom: 30px;
}
}

.LineUpBnr {
    width: 100%;
    /*max-width: 1280px;*/
    margin: 0 auto;
    position: relative;
}

.LineUpBnr li {
	max-width: 306px;
	text-align: center;
	/*margin: 0 20px;*/
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-bottom: 10px;
}

@media only screen and (max-width: 768px) {
.LineUpBnr li {
    /*margin: 0 10px;*/
	padding: 0 10px;
}
}

.LineUp .slider {
  display: block;
}
.LineUp .slider .slick-list {
  margin: 0 -20px;
}

.LineUpBnr li img{
	max-width: 100%;
}

.LineUpBnr li p{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #FFFFFF;
}

.LineUpBnr li p span{
    font-size: 2.4rem;
	color: #00b4b4;
}
/*
.LineUpBnr li a{
    color: #000000;
    transition: all 0.3s ease-out;
}

.LineUpBnr li a:hover img{
    opacity: 0.6;
}
*/

/* PlanWrap
   ========================================================= */
.PlanWrap{
	position: relative;
	padding: 60px 0 90px;
}

.PlanWrap .inner{
	max-width: 1080px;
}

.PlanWrap .inside{
	position: relative;
	max-width: 600px;
	margin: 0 auto 60px;
}

.PlanWrap .inside p.cap{
	font-family: 'Noto Serif JP', 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
	position: absolute;
	color: #FFF;
	font-size: 1.1rem;
	bottom: 5px;
	right: 5px;
	z-index: 3;
}

.PlanWrap h3.ttl{
	width: 100%;
	text-align: center;
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 3.6rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
.PlanWrap h3.ttl{
	font-size: 2.4rem;
}
}
.PlanWrap h4{
	text-align: center;
	font-size: 4.6rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #FFFFFF;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
.PlanWrap h4{
	font-size: 2.4rem;
}
}

/* model
   ========================================================= */
.model{
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
    margin-bottom: 80px;
	background-image: url(../images/plan_bg.svg);
	background-repeat: no-repeat;
	background-position: center top;
}

@media screen and (max-width: 768px) {
.model{
	padding-top: 0px;
	margin-bottom: 0px;
	background-image: none;
}
}

/*** slick ***/
/*
.model-slider .slick-img{
    position: relative;
}
*/
/* =========================
   model-slider（メイン）
========================= */

.slider_container {
  margin: 0 auto;
  max-width: 1040px;
  width: 100%;
}

.model-slider .slick-slide {
	padding: 0 20px;
}

.model-slider img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   thumbnail（サムネ）
========================= */

.thumbnail {
  max-width: 1040px;
  margin: 0px auto 40px;
}

.thumbnail .slick-slide {
  padding: 0 20px; /* 間隔調整 */
  box-sizing: border-box;
}

/* 画像 */
.thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity .3s;
  cursor: pointer;
}

/* hover */
.thumbnail img:hover {
  opacity: 0.6;
}

/* current */
.thumbnail .slick-current img {
  /*opacity: 1;*/
}

@media screen and (max-width: 768px){

  /* modelはそのまま */
  .model-slider .slick-slide {
    padding: 0 5px;
  }

  /* thumbnail */
  .thumbnail {
	  margin: 0px auto 10px;
  }

  .thumbnail .slick-img {
    margin: 0 auto;
    padding: 0 5px;
	  /*margin-bottom: 10px;*/
  }
}

/* originalProductSect
   ========================================================= */
.originalProductSect h2{
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
.originalProductSect h2{
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 2.4rem;
}
}

.originalProductSect h3{
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
.originalProductSect h3{
	font-size: 2.0rem;
}
}

.originalProductSect p{
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
}
@media screen and (max-width: 768px) {
.originalProductSect p.guideFeature__txt--small{
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: justify;
}
}

.originalProductSect__inner{
	/*background-image: url(../images/product_bg.svg);
	background-repeat: no-repeat;
	background-position: center top 240px;
	background-size: 85% auto;*/
}
@media screen and (max-width: 768px) {
.originalProductSect__inner{
	background-image: none;
}
}

.sceneCardGroup .photo{
	position: relative;
}

.photo__capIn{
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 5;
}

a .photo__capIn{
	color: #FFFFFF;
}

.sceneCard{
  transition: all 0.3s linear;
}
.sceneCard:hover{
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .originalProductSect .sceneCardGroup .sceneCard .originalProductSect__linkArea {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}


/* productModal
   ========================================================= */
.productModal[hidden] {
  display: none;
}

.productModal {
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.productModal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(235, 240, 234, 0.82);
}

.productModal__content {
  position: relative;
  z-index: 100000;
  width: min(520px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  overflow-y: auto;
  padding: 50px 40px;
  box-sizing: border-box;
}

.productModal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0;
}

.productModal__close::before,
.productModal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 1px;
  background: #222;
  transform-origin: center;
}

.productModal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.productModal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.productModal__inner img {
	width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 20px 0;
}

body.is-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .productModal__content {
    width: calc(100% - 24px);
    margin: 12px auto;
    max-height: calc(100vh - 24px);
    padding: 40px 20px 24px;
  }

  .productModal__close {
    top: 12px;
    right: 12px;
  }
}


/* bannerSect
   ========================================================= */
.bannerSect {
    padding-top: 12rem;
	background-color: #FFFFFF;
  }


/* plan_wrap
   ========================================================= */
.plan_wrap {
	position: relative;
    background-color: #FFFFFF;
    padding: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .plan_wrap {
      padding: 20px;
  }
}

/* plan_detail_wrap */

.plan_detail_wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*padding-bottom: 30px;*/
}
@media screen and (max-width: 768px) {
  .plan_detail_wrap {
    /*padding-bottom: 20px;*/
  }
}

/* plan_box */
.plan_box {
	width: 60%;
	max-width: 540px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: right;
}
@media screen and (max-width: 768px) {
  .plan_box {
      width: 100%;
      padding: 0 20px;
  }
}
.plan_box img {
	max-width: 100%;
}

/* plan_detail */

.plan_detail {
	width: 35%;
	max-width: 320px;
}
@media screen and (max-width: 768px) {
  .plan_detail {
    width: 100%;
      margin-bottom: 30px;
  }
}

/*
.plan_detail ul {
    width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.plan_detail li {
    width: 100%;
    height: 40px;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
        align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f1f0e5;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  color: #251e1c;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
.plan_detail ul {
    width: 100%;
}
  .plan_detail li {
    width: 49%;
      font-size: 1.2rem;
      letter-spacing: -0.05em;
      margin-bottom: 5px;
  }
}
*/

/* plan_btm */

.plan_btm {
	position: relative;
	width: 100%;
	/*margin-top: -40px;*/
}
@media screen and (max-width: 768px) {
    .plan_btm {
        /*margin: 20px 0;*/
    }
}

/*.plan_btm .icon {
}*/

.plan_btm .icon img{
    max-width: 295px;
	margin-bottom: 20px;
}

.plan_btm p.caption {
  font-size: 1.0rem;
  text-align: left;
}

@media screen and (max-width: 768px) {
.plan_btm p.caption {
  font-size: 0.9rem;
}
}

/* fixedBottomNav
   ========================================================= */
.fixedBottomNav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.fixedBottomNav.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}