@charset "utf-8";
/* CSS Document */

/* ------------------------
wrapper
-------------------------*/
#wrapper > section > h2{
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
}
#wrapper > section > h2:after{
  content: "";
  border-bottom: 8px solid #797762;
  display: block;
  width: 200px;
  margin: 30px auto 0;
}

/* PC */
@media print, screen and (min-width:769px) {
#wrapper > section > h2{
  font-size: 2.5em;
  margin: 0 0 60px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
#wrapper > section > h2{
  font-size: 2.3em;
  margin: 0 0 40px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
#wrapper > section > h2{
  font-size: 1.8em;
  letter-spacing: 0;
}
#wrapper > section > h2:after{
  border-bottom: 6px solid #797762;
  margin: 15px auto 0;
}
}

/* -------------------------------------------------

header

------------------------------------------------- */
header{
  background-image: url("../images/bg_pattern.jpg");
  padding: 20px 50px 0;
  text-align: center;
}
header > div.image{
  background:url("../images/main_bg_green.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
header > div.image p.mainPhoto{
  line-height: 100%;
  font-size: 0;
}
header > div.image div.text{
  position: absolute;
  bottom:70px;
  right: 0;
	width: 100%;
}
header > div.image div.text div{
	max-width: 960px;
	margin: 0 auto;
}
header > div.image div.text div p{
	width: 160px;
	height: 160px;
	border:3px solid #fff;
	background: #dc9694;
	border-radius: 50%;
  color:#fff;
	margin: 0 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
	transform: rotate(10deg);
}
header > div.image div.text div p span{
	display: block;
	padding-left: 5px;
	line-height: 150%;
	font-size: 1.2em;
}
header > div.date{
  background-color: #f9edd8;
  padding: 0 0 40px;
}
header > div.date table{
  margin: -50px auto 0;
  z-index: 12;
  position: relative;
  width: 970px;
}
header > div.date table th,td{
  vertical-align: top;
  text-align: left;
  font-size: 1.3em;
  padding: 15px;
  line-height: 140%;
}
header > div.date table th{
  white-space: nowrap;
  padding-right: 30px;
  background-color: #72c7cd;
  color:#fff;
}
header > div.date table td{
  background-color: #fff;
  
}
/* Tablet */
@media screen and (max-width:768px) {
header{
  padding: 10px 20px 0;
}
header > div.image div.text{
	right: 10px;
  bottom:30px;
}
header > div.image div.text div p{
	width: 140px;
	height: 140px;
}
header > div.date{
  padding: 0 0 25px;
}
header > div.date table{
  margin: -20px auto 0;
  width: calc(100% - 40px);
}
header > div.date table th,td{
  font-size: 1.2em;
  padding: 10px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
header{
  padding: 10px 10px 0;
}
header > div.image div.text{
  bottom:20px;
}
header > div.image div.text div p{
	width: 110px;
	height: 110px;
}
header > div.image div.text div p span{
	font-size: 1em;
}
header > div.date{
  padding: 0 10px 10px;
}
header > div.date table{
  margin: -10px auto 0;
  width: calc(100% - 20px);
}
header > div.date table th,td{
  font-size: 1em;
  padding: 8px;
}
}

/* -------------------------------------------------

nav

------------------------------------------------- */
nav{
  background-color:#64543e;
  z-index: 50;
  position: relative;
}
nav > ul{
  display: flex;
  justify-content: center;
}
nav > ul li{
  align-self: stretch;
  margin-top: -20px;
}
nav > ul li a{
  height: 100%;
  display: block;
  background-color: #fff;
  box-shadow:0px 0px 10px 0px rgba(0,0,0,0.2);
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
}
nav > ul li a:before{
  content: "●";
  font-size: 0.8em;
  margin: 0 0 7px;
  display: block;
}

nav > ul li:nth-child(1) a:before{
  color:#a2d7ce;
}
nav > ul li:nth-child(2) a:before{
  color:#ded384;
}
nav > ul li:nth-child(3) a:before{
  color:#f5b3ad;
}
nav > ul li a:hover{
  transform: translate(0,-5px);
}
nav > p{
  max-width: 1200px;
  margin: 30px auto 0;
}
nav > p img{
  width: 100%;
}
/* PC */
@media print, screen and (min-width:769px) {
nav{
  padding:0 0 30px;
}
nav > ul li a{
  width: 300px;
  margin: 0 15px;
  font-size: 1.4em;
  letter-spacing: 1px;
  padding: 12px 20px 20px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
nav{
  padding:0 20px 30px;
}
nav > ul li{
  width: calc(33.33% - 20px);
  margin: -15px 10px 0;
}
nav > ul li a{
  font-size: 1.2em;
  padding: 12px 10px 20px;
}
}
/* SP横向き */
@media screen and (max-width:768px) and (orientation: landscape) {
nav > ul li{
  width: calc(33.33% - 16px);
  margin: -10px 8px 0;
}
nav > ul li a{
  font-size: 1.1em;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
nav{
  padding:0 10px 30px;
}
nav > ul li{
  width: calc(33.33% - 8px);
  margin: -5px 4px 0;
}
nav > ul li a{
  padding: 12px 0 20px;
  font-size: 1.1em;
  line-height: 150%;
}
nav > ul li a span{
  display: none;
}
}

/* -------------------------------------------------

copyArea

------------------------------------------------- */
.copyArea{
  background-image: url("../images/bg_pattern.jpg");
}
.copyArea > section{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.copyArea > section > p{
  color:#fff;
  font-size: 1.4em;
  letter-spacing: 3px;
  line-height: 180%;
}
.copyArea > section > p img{
  width: 100%;
}
/* PC */
@media print, screen and (min-width:769px) {
.copyArea{
  padding: 60px 0;
}
.copyArea > section{
  width: 900px;
  margin: 0 auto;
}
.copyArea > section > p{
  width: 380px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.copyArea{
  padding: 30px 40px;
}
.copyArea > section > h3{
  width: calc(50% - 40px);
}
.copyArea > section > p{
  width: calc(50% - 20px);
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.copyArea{
  padding: 30px 20px;
}
.copyArea > section{
  display: block;
}
.copyArea > section > h3{
  width: 230px;
  margin: 0 auto 20px;
}
.copyArea > section > p{
  width: 100%;
  text-align: center;
}
}

/* -------------------------------------------------

photoArea

------------------------------------------------- */
.photoArea{
  display: flex;
  margin: 1px 0;
}
.photoArea p{
  width: 20%;
  line-height: 100%;
  font-size: 0;
}
.photoArea p img{
  width: 100%;
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.photoArea{
  flex-flow: wrap;
}
.photoArea p:nth-child(-n+2){
  width: 50%;
}
.photoArea p:nth-child(n+3){
  width: 33.33%;
}
}

/* -------------------------------------------------

detailArea

------------------------------------------------- */
.detailArea{
  /*background-image: url("../images/bg_pattern.jpg");*/
  background-color: #f9edd8;
}
.detailArea > p.text{
  text-align: center;
  padding: 50px 0 80px;
  letter-spacing: 2px;
}
/* detailTit */
.detailArea > div > section.detailTit{
  border-radius: 15px;
  color:#fff;
  padding:20px 80px 20px 25px;
  margin: 0 0 10px;
  /*box-shadow:0px 0px 10px 0px rgba(0,0,0,0.2);*/
  position: relative;
  min-height: 50px;
  cursor: pointer;
}
.detailArea > div:nth-of-type(1) > section.detailTit{
  background-color: #f1a49d;
}
.detailArea > div:nth-of-type(2) > section.detailTit{
  background-color: #82cbbf;
}
.detailArea > div:nth-of-type(3) > section.detailTit{
  background-color: #88b1d4;
}
.detailArea > div:nth-of-type(4) > section.detailTit{
  background-color: #e5a582;
}
.detailArea > div:nth-of-type(5) > section.detailTit{
  background-color: #b0a4e1;
}
.detailArea > div:nth-of-type(6) > section.detailTit{
  background-color: #8bcb86;
}
.detailArea > div:nth-of-type(7) > section.detailTit{
  background-color: #d0bd62;
}
.detailArea > div > section.detailTit h3{
  font-size: 1.8em;
	display: flex;
	align-items: center;
}
.detailArea > div > section.detailTit h3 span{
  font-size: 0.7em;
  padding-left: 20px;
	line-height: 120%;
}
.detailArea > div > section.detailTit p{
  font-size: 1.2em;
  letter-spacing: 1px;
}
.detailArea > div > section.detailTit:after{
  position: absolute;
  right: 25px;
  top:25px;
  content: "\f0fe";
	font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 50px;
  line-height: 100%;
}
.detailArea > div > section.detailTit.accLangOn:after{
  content: "\f146";
}
/* detailMain */
.detailArea > div > div.detailMain{
  background-color: #fff;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
  margin: 0 10px 10px;
  /*box-shadow:0px 0px 10px 0px rgba(0,0,0,0.2);*/
  display: none;
}
.detailArea > div > div.detailMain > div{
  display: flex;
  margin: 0 0 20px;
  justify-content: space-between;
}
.detailArea > div > div.detailMain > div dl{
  width: calc(100% - 650px);
}
.detailArea > div > div.detailMain > div dl dt{
  font-weight: bold;
  font-size: 1.2em;
  letter-spacing: 1px;
}
.detailArea > div > div.detailMain > div dl dt:before{
  color:#cdb83b;
	font-family: "Font Awesome 5 Free";
  font-weight: normal;
  padding-right: 5px;
}
.detailArea > div > div.detailMain > div dl dt:nth-of-type(1):before{
	content: "\f073";
}
.detailArea > div > div.detailMain > div dl dt:nth-of-type(2):before{
	content: "\f017";
}
.detailArea > div > div.detailMain > div dl dt:nth-of-type(3):before{
	content: "\f51d";
  font-weight: bold;
}
.detailArea > div > div.detailMain > div dl dt:nth-of-type(4):before{
	content: "\f3c5";
  font-weight: bold;
}
.detailArea > div > div.detailMain > div dl dd{
  margin-bottom: 15px;
}
.detailArea > div > div.detailMain > div dl dd a{
  color:#cdb83b;
  text-decoration: underline;
}
.detailArea > div > div.detailMain > div dl dd a:hover{
  opacity: 0.8;
}
.detailArea > div > div.detailMain > span{
  display:flex;
  justify-content: space-between;
}
.detailArea > div > div.detailMain section{
  background-color: #f6f5ed;
  text-align: center;
  margin: 0 0 20px;
  box-sizing: border-box;
}
.detailArea > div > div.detailMain > span > section{
  width: calc(50% - 15px);
}
.detailArea > div > div.detailMain section h4{
  letter-spacing: 5px;
  border-bottom: 2px solid #dddcd3;
  font-size: 1.3em;
  padding: 0 0 10px;
  margin: 0 0 20px;
  font-weight: 700;
}
.detailArea > div > div.detailMain section p{
  font-size: 1.1em;
  font-weight: 700;
}
.detailArea > div > div.detailMain section p.tote{
  width: 120px;
  margin: 0 auto;
}
.detailArea > div > div.detailMain section p.tote img{
   width: 100%;
}
.detailArea > div > div.detailMain section p span{
  font-size:0.7em;
  padding-left: 10px;
}
.detailArea > div > div.detailMain > ul{
  display: flex;
  justify-content: space-between;
}
.detailArea > div > div.detailMain > ul li{
  text-align: center;
}
.detailArea > div > div.detailMain > ul li:nth-child(1){
  padding-top: 5px;
}
.detailArea > div > div.detailMain > ul li:nth-child(1) strong{
  display: block;
}
.detailArea > div > div.detailMain > ul li:nth-child(1) strong span,
.detailArea > div > div.detailMain > ul li:nth-child(1) strong a{
  font-size: 2.1em;
  font-family: 'Noto Serif JP', serif;
  padding-left: 5px;
  letter-spacing:2px;
  line-height: 120%;
}
.detailArea > div > div.detailMain > ul li:nth-child(1) strong i{
  font-style: normal;
	font-size: 0.9em;
	padding-left: 5px;
}
.detailArea > div > div.detailMain > ul li:nth-child(2) a{
  display: block;
  color:#fff;
  background-color: #e99992;
  border-radius: 10px;
  padding:30px 10px;
  font-size: 1.3em;
}
.detailArea > div > div.detailMain > ul li:nth-child(2) a:hover{
  opacity: 0.8;
}
.detailArea > div > div.detailMain > div dl dd.tel{
  padding-top: 5px;
}
.detailArea > div > div.detailMain > div dl dd.tel strong{
  display: block;
}
.detailArea > div > div.detailMain > div dl dd.tel strong span,
.detailArea > div > div.detailMain > div dl dd.tel strong a{
  font-size: 2.1em;
  font-family: 'Noto Serif JP', serif;
  padding-left: 5px;
  letter-spacing:2px;
  line-height: 120%;
	text-decoration: none;
	color:#767464;
}
.detailArea > div > div.detailMain > div dl dd.tel strong i{
  font-style: normal;
	font-size: 0.9em;
	padding-left: 5px;
}
.detailArea .closeText p{
	font-size: 0.95em;
	text-indent: -1em;
	padding-left: 1em;
}
.detailArea > div:has(+ .closeText) {
	margin-bottom: 0;
}
/* PC */
@media print, screen and (min-width:769px) {
.detailArea{
  padding: 70px 0;
}
.detailArea > div{
  max-width: 1200px;
  margin: 0 auto 30px;
}
/* detailMain */
.detailArea > div > div.detailMain{
  padding: 30px 40px;
}
.detailArea > div > div.detailMain section{
  padding: 30px 40px;
}
.detailArea > div > div.detailMain > ul li:nth-child(1){
  width: calc(100% - 650px);
  font-size: 1.1em;
}
.detailArea > div > div.detailMain > ul li:nth-child(2){
  width: 630px;
}
.detailArea > div > div.detailMain > ul.sp{
	display: none;
}
}
/* PCs */
@media screen and (max-width:1200px) {
/* detailTit */
.detailArea > div > section.detailTit h3{
  display: block;
}
.detailArea > div > section.detailTit h3 span{
  display: block;
  padding-left: 0;
}	
}
/* Tablet */
@media screen and (max-width:768px) {
.detailArea{
  padding: 50px 30px;
  background-size:800px auto;
}
/* detailMain */
.detailArea > div > div.detailMain{
  padding: 25px;
}
.detailArea > div > div.detailMain > div dl{
  width:calc(47% - 20px);
}
.detailArea > div > div.detailMain > div iframe{
  width:53%;
}
.detailArea > div > div.detailMain section{
  padding: 30px;
}
.detailArea > div > div.detailMain > ul li:nth-child(1){
  width: 50%;
}
.detailArea > div > div.detailMain > ul li:nth-child(1) strong i{
  display: block;
}
.detailArea > div > div.detailMain > ul li:nth-child(2){
  width: calc(50% - 20px);
}
.detailArea > div > div.detailMain > ul.sp{
	display: none;
}
.detailArea .closeText{
	margin-bottom: 15px;
}
}
/* SP横向き */
@media screen and (max-width:768px) and (orientation: landscape) {

.detailArea > div > div.detailMain > div{
  display: block;
}
.detailArea > div > div.detailMain > div dl{
  width:100%;
  margin-bottom: 15px;
}
.detailArea > div > div.detailMain > div dl dd.tel{
  display: none;
}
.detailArea > div > div.detailMain > div iframe{
  width:100%;
}
 .detailArea > div > div.detailMain section{
  padding: 20px;
}
.detailArea > div > div.detailMain section p:not(:first-of-type){
  margin-left: 20px;
}
.detailArea > div > div.detailMain > ul li:nth-child(1){
  font-size: 0.9em;
}
.detailArea > div > div.detailMain > ul li:nth-child(1) strong a{
  font-size: 2.2em;
  letter-spacing:0;
}
.detailArea > div > div.detailMain > ul li:nth-child(2) a{
  padding:25px 5px;
  font-size: 1.2em;
}
.detailArea > div > div.detailMain > ul.sp{
	display: block!important;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.detailArea{
  padding: 30px 20px;
  background-size:600px auto;
}
/* detailTit */
.detailArea > div > section.detailTit{
  padding:10px 60px 10px 15px;
}
.detailArea > div > section.detailTit h3{
  font-size: 1.5em;
}
.detailArea > div > section.detailTit h3 span{
  display: block;
  padding-left: 0;
}
.detailArea > div > section.detailTit:after{
  right: 15px;
  top:50%;
  transform: translateY(-50%);
  font-size: 40px;
}
.detailArea > div > section.detailTit p{
  letter-spacing: 0
}
/* detailMain */
.detailArea > div > div.detailMain{
  padding: 20px;
  margin: 0 5px 15px;
}
.detailArea > div > div.detailMain > div{
  display: block;
}
.detailArea > div > div.detailMain > div dl{
  width:100%;
  margin-bottom: 15px;
}
.detailArea > div > div.detailMain > div dl dd.tel{
  display: none;
}
.detailArea > div > div.detailMain > div iframe{
  width:100%;
}
.detailArea > div > div.detailMain > span{
  display:block;
}
.detailArea > div > div.detailMain > span > section{
  width: 100%;
}
.detailArea > div > div.detailMain > span > section{
  padding: 20px 15px;
}
.detailArea > div > div.detailMain section p{
  display: block;
  font-size: 1em;
}
.detailArea > div > div.detailMain section p span{
  display: block;
  padding-left: 0;
}
.detailArea > div > div.detailMain > ul{
  display: block;
}
.detailArea > div > div.detailMain > ul li:nth-child(1){
  width: 100%;
  margin: 0 0 15px;
  font-size: 0.9em;
}
.detailArea > div > div.detailMain > ul li:nth-child(1) strong a{
  font-size: 2em;
  letter-spacing:1px;
}
.detailArea > div > div.detailMain > ul li:nth-child(2){
  width: 100%;
}
.detailArea > div > div.detailMain > ul li:nth-child(2) a{
  padding:25px 5px;
  font-size: 1.2em;
}
.detailArea > div > div.detailMain > ul.sp{
	display: block!important;
}
}

/* -------------------------------------------------

schedule

------------------------------------------------- */
.schedule{
  /*max-width: 950px;*/
	max-width: 1000px;
  margin: 0 auto;
}
.schedule > h3{
  text-align: center;
  font-size: 1.5em;
  margin: 20px 0 15px;
  font-weight: bold;
}
.schedule table{
  width: 100%;
	/*width: auto;*/
  /*margin: 0 0 10px;*/
	margin: 0 auto 10px;
}
.schedule table th,
.schedule table td{
  text-align: center;
  vertical-align: middle;
}
.schedule table th{
}
.schedule table th span{
  font-size: 0.9em;
  font-weight: bold;
	display: block;
}
.schedule table tr:first-child th{
  background-color: #c2e3de;
}
.schedule table tr:not(:first-child) th{
  background-color: #fff;
}
.schedule table td:not(:first-child){
  width:35%;
}
.schedule table td{
  background-color: #fff;
}
.schedule table th a{
  text-decoration: underline;
}
.schedule table td span.br:after{
  content: "・";
}
.schedule > p{
  font-size: 0.9em;
  text-align: center;
}
.schedule > p.redText{
	color:#f00;
	margin-top: 20px;
}
/* PC */
@media print, screen and (min-width:769px) {
/*.schedule table td:not(:first-child){
  width:35%;
}*/
}
/* Tablet */
@media screen and (max-width:768px) {
.schedule table td a{
  text-decoration: underline;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.schedule > div.spScroll{
 /*overflow-x: scroll;*/
}
.schedule > div.spScroll table{
 /*width: 400px;*/
	width: 100%;
}
.schedule table th,
.schedule table td{
  padding: 10px;
  font-size: 0.95em;
}
.schedule table th{
  text-align: left;
}
.schedule table th span{
  display: block;
}
.schedule table td span.br:after{
  display: none;
}
.schedule table td span.br::before {
  content: "\A";
  white-space: pre;
}
.schedule table td:not(:first-child){
  width:27%;
}
}



/* -------------------------------------------------

setArea

------------------------------------------------- */
.setArea > div{
  color:#fff;
}
.setArea > div.woman{
  background-image: url("../images/bg_pink.jpg");
}
.setArea > div.man{
  background-image: url("../images/bg_blue.jpg");
}
.setArea > div > div{
  display: flex;
  justify-content: space-between;
}
.setArea > div.woman > div{
  flex-direction: row-reverse;
}
.setArea > div > div > section{
  box-sizing: border-box;
}
.setArea > div > div > section p.setImg{
  display: none;
}
.setArea > div > div > section ul{
  margin-bottom: 20px;
}
.setArea > div > div > section ul li{
  line-height: 140%;
  vertical-align:middle;
  position: relative;
  padding-left: 1em;
}
.setArea > div > div > section ul li span{
  font-size: 0.7em;
}
.setArea > div > div > section ul li:before{
  content: "●";
  color:#fffddf;
  vertical-align:baseline;
  font-size:0.7em;
  position: absolute;
  left: 0;
}
.setArea > div > div > section ul li.kome{
  font-size:1em;
}
.setArea > div > div > section ul li.kome:before{
  display: none;
}
.setArea > div > div > section p.txtPhoto{
  letter-spacing: 1px;
  margin: 0 0 20px;
}
.setArea > div > div > section p.txtPhoto span{
  display: block;
}
.setArea > div > div > section section{
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
.setArea > div > div > section section h4{
  display: block;
  background-color: #fff;
  text-align: center;
  margin: 0 0 15px;
  padding: 13px 0;
  line-height: 100%;
  border-radius: 30px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 5px;
}
.setArea > div.woman > div > section section h4{
  color:#ee8593;
}
.setArea > div.man > div > section section h4{
  color:#72c7cd;
}
.setArea > div > div > section section dl{
  text-align: center;
}
.setArea > div > div > section section dl dt{
  margin: 0 0 5px;
}
.setArea > div > div > section section dl dd strong{
  font-family: 'Noto Serif JP', serif;
}
.setArea > p.txtSotsugyo{
  font-size: 2em;
  letter-spacing: 1px;
  font-weight: bold;
  text-align: center;
  padding: 80px 20px;
  background-color:#767464;
  color:#fff;
}
/* PC */
@media print, screen and (min-width:769px) {
.setArea{
  padding: 50px 0 1px;
}
.setArea > div > div{
  width: 1130px;
  margin: 0 auto;
  padding: 50px 0;
}
.setArea > div > div > section{
  width: 700px;
}
.setArea > div > div > section ul li{
  font-size: 1.55em;
}
.setArea > div > div > section section{
  width: 650px;
}
.setArea > div > div > section section h4{
  width: 650px;
}
.setArea > div > div > section p.txtPhoto{
  font-size: 2.3em;
}
.setArea > div > div > section p.txtPhoto span{
  font-size:0.45em;
}
.setArea > div > div > section section dl{
  margin: 0 15px;
}
.setArea > div > div > section section dl dt{
  font-size: 1.3em;
  margin: 0 0 5px;
}
.setArea > div > div > section section dl dd{
  font-size: 1.1em;
  letter-spacing: 1px;
}
.setArea > div > div > section section dl dd strong{
  font-size: 2.5em;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.setArea{
  padding: 50px 0 1px;
}
.setArea > div > div{
  padding: 20px 30px 30px;
}
.setArea > div > div > p{
  width: calc(45% - 20px);
}
.setArea > div > div > section{
  width: 55%;
}
.setArea > div > div > section ul li{
  font-size: 1.4em;
}
.setArea > div > div > section p.txtPhoto{
  font-size: 1.5em;
}
.setArea > div > div > section p.txtPhoto span{
  font-size:0.65em;
}
.setArea > div > div > section section h4{
  width: 100%;
}
.setArea > div > div > section section dl dd strong{
  font-size: 2em;
}
.setArea > div > div > section section dl{
  margin: 0 10px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.setArea{
  padding: 30px 0 1px;
}
.setArea > div > div{
  padding: 20px;
}
.setArea > div > div > p{
  display: none;
}
.setArea > div > div > section{
  width: 100%;
}
.setArea > div > div > section p.setImg{
  display: block;
  width: 270px;
  margin: 0 auto;
}
.setArea > div > div > section section dl:not(:first-of-type){
  padding-top: 10px;
}
.setArea > div > div > section section dl dt,
.setArea > div > div > section section dl dd{
  letter-spacing: 1px;
}
.setArea > div > div > section section dl dd strong{
  font-size: 2.4em;
}
}

/* -------------------------------------------------

movieArea

------------------------------------------------- */
.movieArea{
  background-color: #f9edd8;
}
.movieArea > div{
  display: flex;
  justify-content: space-between;
}
.movieArea > div > section > div{
  background-color: #fff;
  line-height: 100%;
}
.movieArea > div > section > div video{
  width: 100%;
}
.movieArea > div > section > div a:hover img{
  opacity: 0.8;
}
.movieArea > div > section > h3{
  background-color: #fff;
  text-align: center;
  padding: 20px 0 25px;
  line-height: 140%;
  border-radius: 0 0 15px 15px;
}
/* PC */
@media print, screen and (min-width:769px) {
.movieArea{
  padding: 70px 0;
}
.movieArea > div{
  max-width: 1200px;
  margin: 0 auto;
}
.movieArea > div > section{
  width: 580px;
}
.movieArea > div > section > h3{
  font-size: 1.8em;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.movieArea{
  padding: 50px 30px;
  background-size:800px auto;
}
.movieArea > div > section{
  width: calc(50% - 15px);
}
.movieArea > div > section > h3{
  font-size: 1.5em;
}
.movieArea > div > section > div{

} 

}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.movieArea{
  padding: 30px;
  background-size:600px auto;
}
.movieArea > div{
  display: block;
}
.movieArea > div > section:first-child{
  margin-bottom: 20px;
}
.movieArea > div > section{
  width:100%;
}
.movieArea > div > section > h3{
  padding: 15px 0 20px;
}
}

/* -------------------------------------------------

footer

------------------------------------------------- */
footer ul{
  display: flex;
  justify-content: center;
}
footer ul li a:hover img{
  opacity: 0.8;
}
footer address{
  background-color: #f9edd8;
  text-align: center;
  letter-spacing: 1px;
  color:#c3baab;
  padding: 40px 20px 140px;
}
/* PC */
@media print, screen and (min-width:769px) {
footer ul{
  padding: 80px 0;
}
footer ul li{
  margin: 0 40px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
footer ul{
  width: 480px;
  margin: 0 auto;
  padding:40px 0;
}
footer ul li{
  margin: 0 20px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
footer ul{
  width: calc(100% - 30px);
}
footer ul li{
  margin: 0 7px;
}
footer address{
  padding: 30px 5px 105px;
  letter-spacing:0;
}
}

/* -------------------------------------------------

footerLink

------------------------------------------------- */
.footerLink{
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
}
.footerLink > p{
  width: calc(100% - 70px);
}
.footerLink > p a,
.footerLink > span a{
  height: 100px;
  padding-top: 35px;
  box-sizing: border-box;
}
.footerLink > p a{
  display: block;
  color:#fff;
  background-color:#df2d2d;
  text-align: center;
  font-size: 1.5em;
  letter-spacing: 1px;
}
.footerLink > p a:hover{
  opacity: 0.9;
}
.footerLink > span{
  display: block;
  width: 70px;
}
.footerLink > span a{
	color: #fff;
	font-weight: bold;
	text-align: center;
	display: block;
	background-color: #f55151;
}
.footerLink > span a:hover{
  opacity: 0.9;
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.footerLink > p{
  width: calc(100% - 60px);
}
.footerLink > p a,
.footerLink > span a{
  height: 75px;
  padding-top: 25px;
}
.footerLink > p a{
  font-size: 1.25em;
  letter-spacing: 0;
}
.footerLink > span{
  width: 60px;
}
}

