@charset "utf-8";

/* -----------------------------------------------------
 Common
------------------------------------------------------- */
html {
  font-size: 62.5%;
  font-family: 'Barlow Condensed',"Noto Sans Japanese", sans-serif ;
  font-weight: 350;
  letter-spacing: .05em;
  line-height: 1.6;
}

body {
  background: url(/assets/images/common/bg/bg_black.jpg) center top repeat;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 768px) {
  body {
    transition-duration: .01s;
  }
}


a,
label,
input,
textarea,
button {
  -webkit-tap-highlight-color: rgba(192, 192, 192, .8);
}

button {
  cursor: pointer;
}

#Container {
	position: relative;
	overflow: hidden;
}
#Contents{
	min-height:100%;
}
@media screen and (min-width: 769px) {
  #Container {
    min-width: 1120px;
    overflow: hidden;
  }
	#Contents{
		min-height:100%;
	}
}
img {
  width: 100%;
  height: auto;
}
/* ---------- 各ページメイン画像のアニメーション ---------- */
/*.top_anim {
-moz-animation-name: top_anim;
-moz-animation-duration: 0.7s;
-moz-animation-timing-function: ease-out;

-webkit-animation-name: top_anim;
-webkit-animation-duration: 0.7s;
-webkit-animation-timing-function: ease-out;

-o-animation-name: top_anim;
-o-animation-duration: 0.7s;
-o-animation-timing-function: ease-out;

-ms-animation-name: top_anim;
-ms-animation-duration: 0.7s;
-ms-animation-timing-function: ease-out;
}

@-moz-keyframes top_anim {
0% {transform:translateX(0%); opacity:0;}
100% {transform:translateX(100%); opacity:1;}
}

@-webkit-keyframes top_anim {
0% {transform:translateX(0%); opacity:0;}
100% {transform:translateX(100%); opacity:1;}
}

@-o-keyframes top_anim {
0% {transform:translateX(0%); opacity:0;}
100% {transform:translateX(100%); opacity:1;}
}

@-ms-keyframes top_anim {
0% {transform:translateX(0%); opacity:0;}
100% {transform:translateX(100%); opacity:1;}
}*/

.top_anim
{
	-webkit-animation-name:top_anim;
	-webkit-animation-duration:0.3s;
	-webkit-animation-timing-function:ease-in;
	-webkit-animation-iteration-count:1;
	-webkit-animation-delay:0.0s;
	-webkit-animation-fill-mode:forwards;
	
	-moz-animation-name:top_anim;
	-moz-animation-duration:0.3s;
	-moz-animation-timing-function:ease-in;
	-moz-animation-iteration-count:1;
	-moz-animation-delay:0.0s;
	-moz-animation-fill-mode:forwards;
	
	animation-name:top_anim;
	animation-duration:0.5s;
	animation-timing-function:ease-in;
	animation-iteration-count:1;
	animation-delay:0.0s;
	animation-fill-mode:forwards;
}
@keyframes top_anim {
	 0% {
		opacity:0;
	 }
	 100% {
		opacity:1;
	 }
}


/* -----------------------------------------------------
 Helper
 さらっと使うクラス
 命名は最短
------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .visible-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .visible-sp {
    display: none;
  }
}
.bg-grey{
	background:#ddd;
}

/* clearfix */
.cf:after {
  content: '';
  height: 0;
  display: block;
  clear: both;
}

/* color */
.color-main {
  color: #ad9007!important;
}
.color-sub {
  color: #3c3100!important;
}
.color-link {
  color: #eee;
}
.bg-color-main {
  background-color: #ad9007!important;
}
.bg-color-sub {
  background-color: #3c3100!important;
}
.border-color-main {
  border-color: #ad9007!important;
}

/* font */
.font-droid {
  font-family: 'Droid Serif', serif;
}

/* icon */
.icon-external:after {
  background: url(/assets/images/common/icon_external.svg) top left no-repeat;
}

.icon-loading {
  width: 60px;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #eee;
  transition: .1s linear;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.is-clicked .icon-loading {
  opacity: 1;
}
.icon-loading span,
.icon-loading:before,
.icon-loading:after {
  content: "";
  width: 25%;
  height: 0;
  padding-top: 25%;
  display: inline-block;
  background: currentColor;
  border-radius: 50%;
  -webkit-animation: loading 1.4s infinite 0s;
          animation: loading 1.4s infinite 0s;
}

.icon-loading span {
  margin: 0 12.5%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.icon-loading:after {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}

@-webkit-keyframes loading {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
}

@keyframes loading {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
}


/* position */
.center-vertical {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.center-horizontal {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.center-both {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fit-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* pull */
.pull-left {
  float: left;
}
.pull-right {
  float: right;
}

/* hide text */
.hide-text {
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}

/* fade */
.hover-fade {
  transition: .1s linear;
}
.hover-fade:hover {
  opacity: .5!important;
}

/* 選択する角丸のやつ */
.c-choice {
  position: relative;
}
.c-choice li {
  padding: 7px 0;
  padding: 2.1875vw 0;
  color: #111;
  font-size: 12px;
  font-size: 3.75vw;
  text-align: center;
  border-radius: 9999px;
  border: 1px solid #111;
  cursor: pointer;
  transition: .15s;
}
.c-choice li:after {
  content: '';
  width: 6px;
  width: 1.875vw;
  height: 6px;
  height: 1.875vw;
  margin-left: 8px;
  margin-left: 2.5vw;
  display: inline-block;
  border-bottom: 1px solid #111;
  border-right: 1px solid #111;
  -webkit-transform: translateY(-40%) rotate(45deg);
      -ms-transform: translateY(-40%) rotate(45deg);
          transform: translateY(-40%) rotate(45deg);
  box-sizing: border-box;
  transition: .15s;
}
.c-choice li:hover,
.c-choice li.is-active {
  color: #fff;
  background-color: #111;
}
.c-choice li:hover:after,
.c-choice li.is-active:after {
  border-color: #fff;
}
.c-choice li em {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .c-choice li {
    padding: 12px 0;
    font-size: 16px;
  }
  .c-choice li:after {
    content: '';
    width: 10px;
    height: 10px;
    margin-left: 10px;
    -webkit-transform: translateY(-35%) rotate(45deg);
        -ms-transform: translateY(-35%) rotate(45deg);
            transform: translateY(-35%) rotate(45deg);
  }
}

/* -----------------------------------------------------
 Page
 下層ページの共通部分
------------------------------------------------------- */
.page_image{
	width:100%;
	height:500px;
}
.page_title{
	font-size: 6.6em;
	font-weight:500;
	text-align: center;
	line-height: 450px;
}
.color-white{
	color:#fff;
}
@media screen and (max-width: 768px){
	.page_image {
		width: 100%;
		height: 250px;
	}
	.page_title {
		font-size: 3.7em;
		font-weight: 500;
		line-height: 250px;
		/*padding-left: 0;*/
	}
}

/* -----------------------------------------------------
 Modal
------------------------------------------------------- */
.modal__common {
  visibility: hidden;
  opacity: 0;
  transition: opacity .15s linear, z-index .15s .15s, visibility .15s .15s;
}
.modal__common.is-active {
  visibility: visible;
  opacity: 1;
  transition: opacity .15s linear;
}
.modal__overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -100;
  position: absolute;
  z-index: 100;
  background: rgba(0, 0, 0, .9);
  cursor: pointer;
}
.modal__overlay.is-active {
  z-index: 100;
}
.modal__body {
  position: absolute;
  z-index: -1000;
}
.modal__body.is-active {
  z-index: 1000;
}
.modal__close {
  width: 30px;
  width: 9.38vw;
  height: 30px;
  height: 9.38vw;
  position: fixed;
  z-index: -10000;
  top: 25px;
  top: 7.81vw;
  right: 20px;
  right: 6.25vw;
  cursor: pointer;
}
.modal__close.is-active {
  z-index: 10000;
}
.modal__close:before,
.modal__close:after {
  content: '';
  width: 43px;
  width: 13.4375vw;
  height: 1px;
  height: 0.3125vw;
  position: absolute;
  background: #fff;
  top: 50%;
  left: 0;
}
.modal__close:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__close:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 769px) {
  .modal__close {
    width: 60px;
    height: 60px;
    top: 40px;
    right: 26px;
  }
  .modal__close:before,
  .modal__close:after {
    width: 84px;
    height: 1px;
    top: 50%;
    left: 50%;
    margin-left: -42px;
  }
}

/* -----------------------------------------------------
 Zoom
------------------------------------------------------- */
.zoom {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1000;
  opacity: 0;
  top: 0;
  left: 0;
}
.is-active .zoom {
  z-index: 1000;
}
.zoom .icon-loading {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.zoom.is-loaded .icon-loading  {
  opacity: 0;
}
.zoom__area {
  z-index: -1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1000;
  overflow: hidden;
  box-sizing: border-box;
  transition: .2s linear;
}
.is-active .zoom__area{
  z-index: 1000;
}
.zoom__item {
  width: 100vw;
  padding: 20px 0;
  box-sizing: border-box;
}
.zoom__item--inside,
.zoom__item > img {
  opacity: 0;
}
.zoom.is-loaded .zoom__item--inside,
.zoom.is-loaded .zoom__item > img {
  opacity: 1;
  transition: .2s linear;
}

.zoom__title {
  margin-bottom: 20px;
  margin-bottom: 6.25vw;
  font-size: 14px;
  font-size: 4.38vw;
  color: #fff;
}
.zoom__title span {
  display: block;
  font-size: 10px;
  font-size: 3.13vw;
  text-indent: -.5em;
}
.zoom__image {
  margin-bottom: 15px;
  margin-bottom: 4.69vw;
}
.zoom__desc {
  font-size: 11px;
  font-size: 3.44vw;
  line-height: 1.6;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .zoom__title {
    min-height: 40px;
    min-height: 12.5vw;
    padding-left: 20px;
    padding-left: 6.25vw;
  }
  .zoom__desc {
    padding-left: 20px;
    padding-left: 6.25vw;
  }
  .zoom .slick-arrow {
    display: none!important;
  }
}
@media screen and (min-width: 769px) {
  .zoom__item {
    padding: 30px 0 0;
  }
  .zoom__item--inside {
    width: 720px;
    margin: 0 auto;
  }
  .zoom__title {
    margin-bottom: 30px;
    font-size: 2.2rem;
  }
  .zoom__title span {
    font-size: 1.5rem;
  }
  .zoom__image {
    margin-bottom: 30px;
  }
  .zoom__desc {
    font-size: 1.5rem;
  }
  .zoom .slick-arrow {
    position: fixed;
    z-index: 10000;
    top: 50%;
    background: none;
    border: none;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    cursor: pointer;
  }
  .arrow-prev {
    left: 27px;
	width: 3vh;
  }
  .arrow-next {
    right: 27px;
	width: 3vh;
  }
  .zoom .slick-arrow:focus {
    outline: none;
  }
  .zoom .icon-loading {
    width: 100px;
  }
}


/* -----------------------------------------------------
 Form
------------------------------------------------------- */
.form__title {
	position: relative;
	padding: 16px 0;
	padding: 5vw 0;
	font-size: 13px;
	font-size: 4.0625vw;
	font-weight: bold;
	border-bottom: 1px solid #666;
	text-align: center;
	color: #eee;
}
.form__title img {
   margin-right: 6px;
   margin-right: 1.8750vw;
}
.form__notice {
	padding: 6.25%;
	font-size: 13px;
	font-size: 4.0625vw;
	line-height: 1.7;
	background-color: #fff;
	display:none;
}
.form__label {
	margin-bottom: 4px;
	margin-bottom: 1.25vw;
	font-size: 11px;
	font-size: 3.4375vw;
	color: #eee;
}
.form__notice a {
  color: #673a4d;
  text-decoration: underline;
}
.form__table,
.form__table > tbody > tr,
.form__table > tbody > tr > th,
.form__table > tbody > tr > td {
	text-align: left;
	width: 71%;
	max-width: 800px;
}
/*.form__table .form__required > th:before {
	content: 'Required';
	margin-right: 5px;
	padding: 1px 5px 2px;
	padding: .3125vw 5px .6250vw;
	border: 1px solid #c00;
	border-radius: 4px;
	font-size: 9px;
	font-size: 2.8125vw;
	color: #eee;
	background: #c00;
	line-height: 1;
}*/
.form__table--notice {
  margin-top: 2%;
}
.form__desc {
	font-size: 10px;
	font-size: 3.125vw;
	line-height: 1.5;
	color: #eee;
}
.form__table--notice.caution {
  color: #c00;
}
.form__table--notice.plane {
  margin-top: 0!important;
}
.form__table--notice li {
	font-size: 10px;
	font-size: 3.125vw;
	font-weight: 200;
	padding-left: 1em;
	text-indent: -1em;
	color: #000;
}
.form__table > tbody > tr > td .table__option--wrap + .table__option--wrap {
  border-top: 1px solid #666;
}

@media screen and (max-width: 768px) {
	.form__table,
	.form__table > tbody > tr,
	.form__table > tbody > tr > th,
	.form__table > tbody > tr > td {
		display: inline-block;
		text-align: left;
		width: 100%;
		margin-left: 10px;
}
  .form__table {
	font-family: "Noto Sans Japanese", sans-serif;
	width: 90%;
	margin: 0 auto;
  }
  .form__table > tbody > tr > th,
  .form__table > tbody > tr > td {
    font-size: 11px;
    font-size: 3.4375vw;
  }
  .form__table > tbody > tr > th {
	padding-top: 10px;
	padding-bottom: 0;
	color: #000;
  }
  .form__table > tbody > tr:first-child > th {
    padding-top: 0;
  }
  .form__table > tbody > tr:first-child > th {
    top: 28px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .form__table > tbody > tr > td {
	padding-top: 5px;
	padding-top: 1.5625vw;
	padding-bottom: 15px;
	padding-bottom: 5px;
  }
  .form__table > tbody > tr > td.table__option--data {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 769px) {
  .form__notice {
	width:100%;
	max-width:1120px;
	margin:0 auto;
	text-align:left;
  }
  .form__table--notice.caution {
    line-height: 2;
  }
  .form__label {
	padding-top: 10px;
	margin-bottom: 4px;
	font-size: 15px;
	color: #eee;
  }
  .form__desc {
    font-size: 13px;
    line-height: 2;
  }
  .form__table {
	margin: 0 auto 40px;
  }
	.form__table > tbody > tr > th,
	.form__table > tbody > tr > td {
		padding: 7px 0;
		box-sizing: border-box;
	}
	.form__table > tbody > tr > th {
		width: 100%;
		color: #000;
		font-size: 1.5em;
		font-weight: 500;
		display: inline-block;
		margin-bottom: -10px;
	}
  .form__table > tbody > tr.form__row--large > th {
    vertical-align: top;
  }
.form__table > tbody > tr > td {
	width: 100%;
	color: #000;
	font-family: "Noto Sans Japanese", sans-serif;
	font-size: 1.54em;
	display: inline-block;
	padding-bottom: 20px;
	margin-bottom: 10px;
	}
	.form__table > tbody > tr >td.form__half{
		display:flex;
		justify-content:space-between;
}
	.form__select_shooting tbody tr td{
		
	}
	.form__table > tbody > tr >td.form__half p{
		font-size: 2.5em;
		line-height: 3;
		margin: 0 25px;
	}
  .form__table > tbody > tr > td .table__option--wrap {
	padding: 8px 0;
  }
  .form__table > tbody > tr > td .table__option--wrap.plane {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .form__table > tbody > tr > td .table__option--wrap  th,
  .form__table > tbody > tr > td .table__option--wrap  td {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .form__table > tbody > tr > td.table__option--data {
    padding: 0;
  }
  .form__title {
	padding: 23px 0 25px;
	font-size: 2rem;
	color:#eee;
  }
  .form__title img {
     margin-right: 12px;
  }
  /*.form__table .form__required > th:before {
    position: absolute;
    top: 50%;
	left: 40px;
	padding: 4px 10px;
    font-size: 11px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }*/
  /*.form__table .form__row--large.form__required > th:before {
    top: 29px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }*/
	
  .form__table--notice {
    margin-top: 12px;
  }
  .form__table--notice li {
	font-size: 13px;
  }
}
.form__table .form__required > th:after,
	.form__table .form__row--large.form__required > th:after{
		content: '※';
		color:#ff0000;
		padding-left:15px;
	}

/* 利用規約
------------------------------------------------ */
.form__agree {
  /*margin-bottom: 20px;
  margin-bottom: 6.25vw;*/
  padding-bottom: 20px;
  padding-bottom: 6.25vw;
  /*border-bottom: 1px solid #ccc;*/
}
.form__agree--title {
	margin-top: -5px;
	margin-top: -1.5625vw;
	margin-bottom: 10px;
	margin-bottom: 3.125vw;
	font-size: 11px;
	font-size: 3.4375vw;
	font-weight: bold;
	text-align: center;
	color: #000;
}
.form__agree--outside {
  height: 320px;
  height: 50vw;
  margin-bottom: 12px;
  margin-bottom: 3.75vw;
  padding: 15px;
  padding: 4.6875vw;
  overflow: scroll;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.form__agree--section {
  line-height: 1.5;
}
.form__agree--section + .form__agree--section {
  margin-top: 20px;
  margin-top: 6.25vw;
}
.form__agree--label {
  margin-bottom: 10px;
  margin-bottom: 3.125vw;
  font-size: 10px;
  font-size: 3.125vw;
}
.form__agree--text {
  margin: 5px 0;
  margin: 1.5625vw 0;
  font-size: 9px;
  font-size: 2.8125vw;
}
.form__agree--list li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 9px;
  font-size: 2.8125vw;
}
.form__agree--list li + li {
  margin-top: 5px;
  margin-top: 1.5625vw;
}
.form__agree--please {
  margin-bottom: 10px;
  margin-bottom: 3.125vw;
  font-size: 10px;
  font-size: 3.125vw;
  text-align: center;
	color: #eee;
}
.form__box--select.form__agree--check {
  display: block;
  text-align: center;
}
.form__agree--check.form__box--select input[type="checkbox"] + label {
  display: inline-block;
  font-size: 11px;
  font-size: 3.4375vw;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .form__agree {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .form__agree--title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 15px;
	color: #000;
  }
  .form__agree--outside {
    width: 790px;
    height: 300px;
    margin: 0 auto 25px;
    padding: 30px;
  }
  .form__agree--section {
    line-height: 2;
  }
  .form__agree--section + .form__agree--section {
    margin-top: 20px;
  }
  .form__agree--label {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .form__agree--text {
    margin: 5px 0;
    font-size: 12px;
  }
  .form__agree--list li {
    font-size: 12px;
  }
  .form__agree--list li + li {
	margin-top: 5px;
	margin-bottom: 15px;
  }
  .form__agree--please {
	margin: -15px 0 30px 0;
	font-size: 1.6em;
	color: #000;
  }
	.form__agree--please a{
		padding-right: 20px;
		padding-bottom: 5px;
		border-bottom: 1px #000 solid;
		background: url(/assets/images/common/external01.png) no-repeat right 5px center;
	}
	.form__agree--please a:hover{
		opacity:0.6;
		border-bottom: none;
	}
	.form__agree--check.form__box--select input[type="checkbox"] + label {
		font-size: 1.7em;
		font-weight: 300;
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 768px) {
	.form__agree--please {
		font-size: 1.45em;
		font-weight: 100;
		text-align: left;
		width: 90%;
		margin: 0 auto 20px;
		color: #000;
	}
	.form__agree--please a{
		padding-right: 20px;
		padding-bottom: 5px;
		border-bottom: 1px #000 solid;
		background: url(/assets/images/common/external01.png) no-repeat right 5px center;
	}
	.form__agree--please a:hover{
		opacity:0.6;
		border-bottom: none;
	}
	.form__agree--check.form__box--select input[type="checkbox"] + label {
		font-size: 1.4em;
		font-weight: 200;
	}
}


/* error
------------------------------------------------ */
.form__error {
  padding: 20px 0;
  padding: 6.2500vw 0;
  font-size: 11px;
  font-size: 3.4375vw;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .form__error {
    padding: 30px 0;
    font-size: 1.5rem;
  }
}



/* input
------------------------------------------------ */
.form__text,
.form__textarea,
.form__select_plan,
.form__select_time,
.form__select_shooting,
.form__select_number{
	width: 100%;
	padding: 10px 15px;
	padding: 3.13vw 4.6875vw;
	font-size: 16px;
	background: #eee;
	box-sizing: border-box;
}
.form__text::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  color: #999;
}
.form__text::-moz-placeholder,
.form__textarea::-moz-placeholder {
  color: #999;
}
.form__text[readonly] {
  cursor: pointer;
}
.form__textarea {
  line-height: 1.5;
}
.form__postcode input {
  padding-left: 35px;
  padding-left: 10.9375vw;
  background: #fff url(/assets/images/contact/icon_postcode.svg) 15px center no-repeat;
  background: #fff url(/assets/images/contact/icon_postcode.svg) 4.6875vw center no-repeat;
  background-size: 8px auto;
  background-size: 2.5000vw auto;
}
.form__with--arrow {
  position: relative;
}
.form__with--arrowHalf{
	position:relative;
	width: 45%;
}
.form__with--arrow:after,
.form__with--arrowHalf:after{
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  pointer-events: none;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translateY(-80%) rotate(45deg);
      -ms-transform: translateY(-80%) rotate(45deg);
          transform: translateY(-80%) rotate(45deg);
}

@media screen and (min-width: 769px) {
	.form__text,
	.form__textarea,
	.form__select_plan,
	.form__select_time,
	.form__select_shooting,
	.form__select_number{
		font-family: "Noto Sans Japanese", sans-serif;
		padding: 23px 20px;
		font-size: 1.7rem;
		resize: none;
	}
	.form__select_time{
		width: 100%;
		padding: 23px 20px;
		box-sizing: border-box;
	}
  .form__postcode input {
    padding-left: 48px;
    background: #fff url(/assets/images/contact/icon_postcode.svg) 22px center no-repeat;
    background-size: 10px auto;
  }
  .form__label + .form__with--arrow,
  .form__with--arrow + .form__with--arrow {
    margin-top: 10px;
  }
.form__with--arrow:after {
	content: '';
	width: 13px;
	height: 13px;
	right: 35px;
	}
}
@media screen and (max-width: 768px){
	.form__text,
	.form__textarea,
	.form__select_plan,
	.form__select_time,
	.form__select_shooting,
	.form__select_number {
		padding: 20px;
	}
	.form__with--arrow:after,
	.form__with--arrowHalf:after{
		right: 25px;
	}
	.form__with--arrowHalf {
		width: 100%;
	}
	.form__text, .form__textarea,
	.form__select_plan, .form__select_time,
	.form__select_shooting, .form__select_number{
		font-size: 1em;
	}
}


/* number
------------------------------------------------ */
.form__number {
  width: 40px;
  width: 12.5vw;
  height: 38px;
  height: 11.875vw;
  padding: 6px 2px;
  padding: 6px .6250vw;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .form__number {
    width: 60px;
    height: 34px;
    padding: 6px 6px;
    border-radius: 2px;
    font-size: 1.3rem;
  }
}

/* radio
------------------------------------------------ */
.form__radio {
  padding: 2px 0;
  padding: .6250vw 0;
}
.form__radio input[type="radio"] {
  display: none;
}
.form__radio input[type="radio"] + label {
	display: inline-block;
	position: relative;
	margin: 0 7px 0 0;
	margin: 0 2.1875vw 0 0;
	padding: 0 0 0 25px;
	padding: 0 0 0 7.8125vw;
	line-height: 2;
	cursor: pointer;
	color: #000;
}
.form__radio input[type="radio"][disabled] + label {
  color: #bbb;
  cursor: auto;
}
.form__radio input[type="radio"] + label:before {
  content: "";
  width: 20px;
  width: 6.2500vw;
  height: 20px;
  height: 6.2500vw;
  position: absolute;
  top: -1px;
  top: -.3125vw;
  left: 0;
  background-color: #eee;
  border-radius: 50%;
}
.form__radio input[type="radio"] + label:after {
	content: "";
	width: 10px;
	width: 3.2vw;
	height: 10px;
	height: 3.2vw;
	position: absolute;
	top: 5px;
	top: 1.3vw;
	left: 6px;
	left: 1.6vw;
	border-radius: 50%;
	background: transparent;
	transition: background 0.1s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.form__radio input[type="radio"]:checked + label:after {
	background-color: #000;
}
@media screen and (min-width: 769px) {
  .form__radio {
    padding: 5px 0;
  }
.form__radio input[type="radio"] + label {
	margin: 0 40px 10px 0;
	padding: 0 0 0 50px;
	color: #000;
	font-size: 1em;
}
.form__radio input[type="radio"] + label:before {
	width: 35px;
	height: 35px;
}
  .form__radio input[type="radio"] + label:after {
	width: 17px;
	height: 17px;
	top: 5px;
	left: 9px;
  }
  .form__radio .form__price {
    margin-left: 15px;
  }
}

/* checkbox
------------------------------------------------ */
.form__box--select input[type="checkbox"] {
  display: none;
}
.form__box--select input[type="checkbox"] + label {
	position: relative;
	display: block;
	padding: 3px 0 3px 25px;
	padding: .9375vw 0 .9375vw 7.8125vw;
	font-size: 1em;
	line-height: 1;
	vertical-align: top;
	cursor: pointer;
	margin-bottom: 15px;
}
.form__box--select input[type="checkbox"] + label:before {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #eee;
	background: #eee;
	box-sizing: border-box;
	border-radius: 1px;
}
.form__box--select input[type="checkbox"] + label:after {
	content: "";
	width: 10px;
	height: 14px;
	position: absolute;
	z-index: 1;
	top: 1.2500vw;
	left: 1.2500vw;
	background: #000;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 150ms cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.form__box--select input[type="checkbox"]:checked + label:after {
  opacity: 1;
}
.form__hidden--select {
  display: none;
}

@media screen and (min-width: 769px) {
  .form__box--select input[type="checkbox"] + label {
    padding: 4px 0 4px 40px;
  }
	.form__box--select input[type="checkbox"] + label:before {
		width: 30px;
		height: 30px;
	}
	.form__box--select input[type="checkbox"] + label:after {
		content: "";
		width: 16px;
		height: 16px;
		top: 7px;
		left: 7px;
	}
}
@media screen and (max-width: 768px){
	.form__box--select input[type="checkbox"] + label{
		font-size: 1em;
		font-weight: 200;
		line-height: 1.3;
		margin-bottom: -10px;
	}
	.form__box--select input[type="checkbox"] + label:after {
		height: 10px;
	}
}
/* select
------------------------------------------------ */
.form__select {
  width: 50px;
  width: 15.625vw;
  height: 38px;
  height: 11.875vw;
  padding: 6px 8px;
  padding: 1.875vw 2.5vw;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
}
.form__select_dress select{
	width: 100%;
	height: 34px;
	text-align: left;
	border: none;
	padding: 6px 14px;
	font-size: 1em;
}
.form__select--wrap {
  display: inline-block;
}
.form__select--wrap:after {
  width: 6px;
  width: 1.875vw;
  height: 6px;
  height: 1.875vw;
}
@media screen and (min-width: 769px) {
  .form__select {
    width: 60px;
    height: 34px;
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 1.3rem;
  }
  .form__select--wrap:after {
    width: 8px;
    height: 8px;
    right: 12px;
  }
}


/* costume
------------------------------------------------ */
.form__costume,.form__dress{
  color: #ccc;
  cursor: pointer;
}
.form__costume.is-selected {
  color: #111;
}

/* button
------------------------------------------------ */
.form__button_wrap{
	width: 71%;
	margin:0 auto;
}
.form__button {
	width: 71%;
	margin: 0 auto;
	display: block;
	text-align: center;
	overflow: hidden;
}
.form__button_reset{
	display: inline-block;
	/*float: left;*/
	/*overflow: hidden;*/
}
.form__button a,
.form__button button {
	position: relative;
	padding: 17px 60px;
	padding: 5.3125vw 18.75vw;
	display: inline-block;
	font-size: 12px;
	font-size: 3.7500vw;
	font-weight: 500;
	color: #000;
	line-height: 1;
}
.form__button_reset a,
.form__button_reset button {
	position: relative;
	width: 55%;
	padding: 5.3125vw 18.75vw;
	display: inline-block;
	color: #000;
	font-size: 1.8em;
	font-weight: 500;
}
.form__button button,
.form__button_reset button{
	border: 1px solid #000;
}
.form__button button.back,
.form__button_reset button.back{
	font-size: 1.8em;
	padding: 40px 60px;
	background: url(/assets/images/common/link_arrow_g_back.png)no-repeat left 10% center/6%;
}

/* クリック時のローディングのためにフェード */
.form__button--submit:after
.form__button--text {
  transition: .1s linear;
}
.is-clicked.form__button--submit {
background-color: #999;
}
.is-clicked .form__button--text,
.is-clicked.form__button--submit:after {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .form__confirm .form__button form:first-child {
    float: none;
  }
  .form__confirm .form__button form:last-child {
    float: none;
  }
/*  .form__confirm .form__button button:not(.back) {
    padding: 15px 58px;
    padding: 4.6875vw 18.125vw;
  }*/
  .form__confirm .form__button button.back {
	font-size: 1.2em;
	padding: 15px 108px;
	margin-bottom: -30px;
    /*margin-top: 6px;
    margin-top: 1.8vw;*/
  }
	.form__button button {
		border: 1px solid #000;
		padding: 25px;
		margin: 30px auto 20px;
		width: 100%;
		background: url(/assets/images/common/link_arrow_g.png)no-repeat right 10% center/6%;
	}
}
@media screen and (min-width: 769px) {
	.form__button a,
	.form__button button {
		width: 420px;
		padding: 40px 92px;
		color: #000;
		font-size: 1.8em;
		font-weight: 500;
		border: 1px solid #000;
		background: url(/assets/images/common/link_arrow_g.png)no-repeat right 10% center/6%;
		transition: .1s linear;
	}
	.form__button a:hover,
	.form__button button:hover{
		background: url(/assets/images/common/link_arrow_g.png)no-repeat right 8% center/6%;
		opacity:0.6;
		transition: .1s linear;
	}
	.form__button_reset a,
	.form__button_reset button {
		width: 320px;
		padding: 40px 92px;
		color: #000;
		font-size: 1.8em;
		font-weight: 500;
		border: 1px solid #000;
		background: url(/assets/images/common/link_arrow_g_back.png)no-repeat left 10% center/6%;
		transition: .3s linear;
	}
	.form__button_reset a:hover,
	.form__button_reset button:hover{
		background: url(/assets/images/common/link_arrow_g_back.png)no-repeat left 8% center/6%;
		opacity:0.6;
		transition: .3s linear;
	}
  .form__confirm .form__button form {
    margin: 0 10px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) and (min-width:481px){
	.form__button button {
		border: 1px solid #000;
		padding: 20px;
		margin: 30px auto 0;
		width: 40%;
		font-size: 1.8em;
		background: url(/assets/images/common/link_arrow_g.png)no-repeat right 10% center/6%;
	}
}

/* form__aside
------------------------------------------------ */
.form__aside {
	margin-bottom: 15px;
	margin-bottom: 4.6875vw;
	font-size: 11px;
	font-size: 3.4375vw;
	line-height: 1.5;
	color: #000;
}
@media screen and (min-width: 769px) {
  .form__aside {
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: #000;
  }
}

/* note
------------------------------------------------ */
.form__note--box {
	position: relative;
	margin-top: 25px;
	margin-top: 7.8125vw;
	padding: 7.14%;
	border-top: 1px solid #777;
}
.form__note--icon {
  position: absolute;
  width: 12.5%;
  top: 0;
  left: 1.78%;
  margin-top: 7.4%;
}
.form__note--item {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 11px;
	font-size: 3.4375vw;
	color: #000;
}
@media screen and (min-width: 769px) {
	.form__note--box {
		position: relative;
		width: 71%;
		max-width: 784px;
		margin-top: 60px;
		padding: 40px;
		margin: 90px auto;
	}
	.form__note--icon {
		position: absolute;
		width: 70px;
		top: 40px;
		left: 20px;
		margin-top: 0;
	}
	.form__note--item {
		font-size: 15px;
		line-height: 1.8;
		color:#000;
	}
}

/* -----------------------------------------------------
 Option
------------------------------------------------------- */
.table__option--wrap {
  padding-top: 15px;
  padding-top: 4.6875vw;
  padding-bottom: 15px;
  padding-bottom: 4.6875vw;
}
.table__option--wrap:first-child {
  padding-top: 0;
}
.form__box--select,
.form__box--price {
	display: inline-block;
	/*vertical-align: middle;*/
}
.form__price{
	font-size:1em;
}
.form__box--select {
  margin-right: 16px;
  margin-right: 5.0000vw;
}
.form__row--multi .form__box--price {
  margin-top: 5px;
  margin-top: 1.5625vw;
  padding-left: 25px;
  padding-left: 7.8125vw;
}
.form__row--multi .form__box--price .form__price {
  margin-left: 10px;
  margin-left: 3.125vw;
}
.form__box--note {
  padding-left: 25px;
  padding-left: 7.8125vw;
}
.table__option td {
  padding: 5px 0;
  padding: 1.5625vw 0;
}
.table__harf th,
.table__harf td {
  width: 50%;
}


@media screen and (max-width: 768px) {
  .table__option:not(.table__harf),
  .table__option:not(.table__harf) tbody,
  .table__option:not(.table__harf) tr,
  .table__option:not(.table__harf) th,
  .table__option:not(.table__harf) td {
    display: block;
  }
	table.sp-width tbody{
		display:flex !important;
		flex-wrap: wrap;
	}
	table.sp-width tbody tr{
		width:50%;
	}
  .form__box--price + .form__box--price {
    margin-left: 15px;
  }
  .form__input--row .form__box--price {
    display: block;
    margin-top: 5px;
    margin-top: 1.5625vw;
  }
	.form__price {
		font-size: 1em;
		font-weight: 200;
		margin-left:30px;
	}
}
@media screen and (min-width: 769px) {
  .table__option {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-family: "Noto Sans Japanese", sans-serif
  }
  .form__box--select {
    margin-right: 10px;
  }
  .form__box--price + .form__box--price {
    margin-left: 30px;
  }
  .form__box--note {
    padding-left: 30px;
  }
  .table__option td {
    padding: 10px 0;
  }
	.table__option tbody{
		width: 100%;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.table__option tbody tr{
		width: 100%;
	}
  .form__input--row {
    padding-bottom: 10px;
	  
  }
  .form__row--multi .form__box--price {
    margin-top: 5px;
    padding-left: 30px;
  }
  .form__row--multi .form__box--price .form__price {
    margin-left: 10px;
  }
}

/* -----------------------------------------------------
 Confirm
------------------------------------------------------- */
.confirm__title {
	position: relative;
	padding-bottom: 25px;
	font-size: 12px;
	font-size: 3.7500vw;
	color: #000;
	margin: 0 0 10px 5%;
}
.form__confirm .form__mail .form__table > tbody > tr > td {
	border-bottom: 1px #ddd solid;
}
@media screen and (min-width: 769px) {
.confirm__title {
	padding-bottom: 50px;
	font-size: 1.6em;
	text-align: left;
	color: #000;
	border-bottom: 1px #ddd solid;
	margin-bottom: 42px;
	}
}
@media screen and (max-width: 768px) and (min-width:481px){
	.confirm__title {
		position: relative;
		padding-bottom: 25px;
		font-size: 16px;
		color: #000;
		margin: 0 0 5px 19%;
	}
}
/* -----------------------------------------------------
 Complete
------------------------------------------------------- */
.complete__title {
	margin-bottom: 25px;
	margin-bottom: 7.8125vw;
	font-size: 14px;
	font-size: 4.3750vw;
	font-weight: 500;
	text-align: left;
}
.complete__desc {
  margin-top: 25px;
  margin-top: 7.8125vw;
  font-size: 12px;
  font-size: 3.7500vw;
  line-height: 1.7;
}
.complete__contact {
  margin-top: 30px;
  margin-top: 9.3750vw;
  padding-top: 30px;
  padding-top: 9.3750vw;
  border-top: 1px solid #ddd;
  font-size: 12px;
  font-size: 3.7500vw;
  line-height: 1.7;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .complete__title {
	margin-bottom: 40px;
	font-size: 2.4rem;
  }
  .complete__desc {
	margin-top: 30px;
	font-size: 1.5rem;
	text-align: left;
  }
  .complete__contact {
	margin-top: 50px;
	padding-top: 50px;
	font-size: 1.5rem;
  }
}
/* -----------------------------------------------------
 Header PC
------------------------------------------------------- */
@media screen and (min-width: 769px) {
	.header {
		position: relative;
		width: 100%;
		height: 100px;
		background:#fff;
		overflow: hidden;
	}
	.header_wrap{
		width:100%;
		/*max-width:1440px;*/
		margin: 0 auto;
	}
	.headerLeft{
		width:30%;
		float:left;
		position:relative;
	}
	.header_logo{
		width: 30vw;
		max-width: 250px;
		height: 100px;
		padding-left: 35px;
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(30%);
		-moz-transform: translateY(30%);
		-ms-transform: translateY(30%);
		-o-transform: translateY(30%);
		transform: translateY(30%);
	}
	.header_logo:hover{
		opacity:0.6;
		transition: .3s linear
	}
	/*.header_logo img{
		position:absolute;
		top:50%;
		left:50%;
		-webkit-transform:translate(-50%,-50%);
		-moz-transform:translate(-50%,-50%);
		-ms-transform:translate(-50%,-50%);
		-o-transform:translate(-50%,-50%);
		transform:translate(-50%,-50%);
		width:100%;
		height:100px;
	}*/
	.headerRight{
		width: 56%;
		float:right;
	}
	.headerRight .nav{
		display:flex;
		justify-content: space-between;
		align-items: center;
	}
	.header_menu{
		height: 100px;
		padding: 30px 3.5vw 0 0;
		font-size: 1.25vw;
		font-size: 22px;
		font-weight: 600;
		letter-spacing: 1.4px;
	}
	.header_menu:nth-of-type(6){
		padding: 30px 3.5vw 0 3.5vw;
		background: #eee;
	}
	.header_menu.ext-link:after{
		content: "";
		display: inline-block;
		width: 15px;
		height: 18px;
		background-image: url(../../images/common/external02.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		margin-left: 0.3em;
		vertical-align: -1px;
	}
	.header_menu a{
		position: relative;
		display: inline-block;
		text-decoration: none;
	}
	.header_menu a::after{
		position: absolute;
		bottom: -4px;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #333;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform .3s;
	}
	.header_menu a:hover::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}
/* -----------------------------------------------------
 Header TAB
------------------------------------------------------- */
@media screen and (max-width:768px) and (min-width: 481px) {
	.header {
		width: 100%;
		height: 75px;
		margin:0 auto;
		background:#fff;
	}
  .header__overlay {
	width: 100%;
	height: 0;
	position: absolute;
	z-index: -5;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: #fff;
	transition: opacity .2s linear;
  }
  .header.is-active + .header__overlay {
    height: 100%;
    /*opacity: 1;*/
    /*z-index: 2;*/
  }
  .header__upper {
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
	position: absolute;
	top: 23px;
	left: 20px;
	width: 50%;
	max-width: 200px;
  }
  .header__logo a {
    display: block;
  }
	.header__left_text{
		position: absolute;
		top: 113px;
		left: -45px;
		height: 0;
		color: #eee;
		text-align: left;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.header__left_text li{
		font-size: 3.1vw;
		color: #eee;
	}
  .header__right {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 31.25%;
  }
  .header__tel {
    position: relative;
    float: left;
    width: 27.2%;
    height: 0;
    padding-top: 31%;
    background-size: cover;
    text-align: center;
    color: #eee;
    background-color: #272727;
  }
  .header__tel figure {
    position: absolute;
    top: 18%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header__tel figure img {
    width: 36px;
    width: 5.625vw;
    margin-bottom: 13%;
  }
  .header__tel figure figcaption {
    font-size: 10px;
    font-size: 3.125vw;
	line-height: 1;
  }
   .header__tel figure figcaption small{
    font-size: 5px;
    font-size: 1.5625vw;
	line-height: 1;
	position: absolute;
    top:0;
    left: 50%;
  }
	.header__tel a .time{
		padding-top: 85%;
		font-size: 2.5vw;
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	.header__tel a .font-arapey{
		font-family: 'Droid Serif', serif;
	}
  .header__contact {
    width: 41.8%;
    height: 0;
    padding-top: 31%;
    position: relative;
  }
  .header__contact--upper,
  .header__contact--lower {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    font-size: 10px;
    font-size: 3.125vw;
    white-space: nowrap;
    color: #eee;
  }
  .header__contact--upper a,
  .header__contact--lower a {
    position: absolute;
  }
  .header__contact--upper {
    top: 0;
    background-color: #111;
  }
  .header__contact--lower {
    top: 50%;
    background-color: #b58d00;
  }
  .header__menu {
    position: absolute;
    z-index: 10;
    width: 22%;
    height: 0;
    padding-top: 22%;
    top: 0;
    right: 0;
  }
  .header__menu div {
	position: absolute;
	width: 35%;
	height: 0;
	padding-top: 17%;
	top: 15%;
	left: 70%;
	margin-left: -24.2%;
	}
  .header__menu div span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: .2s ease-out;
  }
  .header__menu div span:nth-child(1) {
    top: 0;
  }
  .header__menu div span:nth-child(2){
    top: 50%;
  }
  .header__menu div span:nth-child(3) {
    bottom: 0;
  }
  .header__menu div span:nth-child(4),
  .header__menu div span:nth-child(5) {
    top: 48%;
  }
  .header__menu div span:nth-child(4) {
    -webkit-transform: rotate(28deg);
        -ms-transform: rotate(28deg);
            transform: rotate(28deg);
  }
  .header__menu div span:nth-child(5) {
    -webkit-transform: rotate(-28deg);
        -ms-transform: rotate(-28deg);
            transform: rotate(-28deg);
  }
  .header.is-active .header__menu div span:nth-child(1),
  .header.is-active .header__menu div span:nth-child(2),
  .header.is-active .header__menu div span:nth-child(3),
  .header__menu div span:nth-child(4),
  .header__menu div span:nth-child(5) {
    opacity: 0;
  }
  .header.is-active .header__menu div span:nth-child(4),
  .header.is-active .header__menu div span:nth-child(5) {
    opacity: 1;
  }
  .header__menu p {
    position: absolute;
    width: 100%;
    bottom: 22%;
    left: 0;
  }
  .header__menu p span {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 10px;
    font-size: 3.125vw;
    text-align: center;
    line-height: 1;
    transition: .2s linear;
  }
  .header__menu p span:nth-child(2) {
    opacity: 0;
  }
  .header.is-active .header__menu p span:nth-child(1) {
    opacity: 0;
  }
  .header.is-active .header__menu p span:nth-child(2) {
    opacity: 1;
  }
  .header__lower {
    width: 31.25%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 32.8125%;
  }
  /*.header__english {
    position: relative;
    background: #111;
  }
  .header__english a {
    width: 31.25%;
    padding: 5px 0 5px 20px;
    padding: 1.5625vw 0 1.5625vw 6.25vw;
    display: block;
    font-size: 9px;
    font-size: 2.8125vw;
    white-space: nowrap;
    line-height: 1;
    color: #eee;
    border-left: 4px solid #a58102;
  }
  .header__english a:after {
    content: '';
    display: inline-block;
    vertical-align: 1px;
    vertical-align: .3125vw;
    width: 4px;
    width: 1.25vw;
    height: 4px;
    height: 1.25vw;
    margin-left: 3px;
    margin-left: .9375vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }*/
	.header__home {
		position: absolute;
		top: 23px;
		left: 20px;
		width: 26%;
	}
  .header__contents {
    position: absolute;
    width: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s linear;
	color: #000;
	text-align: left;
	background-color: #fff;
  }
	.header.is-active .header__contents {
	pointer-events: auto;
	z-index: 2;
	opacity: 1;
	padding-bottom: 80px;
	}
	.header__menu_logo{
		width: 50%;
		margin: 10px 25% 15px;
	}
	.header__list {
		overflow: hidden;
		height: 89vh;
		main-height:560px;
		padding: 11vh 0 350vh 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.header__item {
		position: relative;
		width: 100%;
		color: #000;
		padding: 8% 0 0;
	}
	.header__item:last-of-type{
		background: #f7f7f7;
		padding: 10% 0;
		/*margin-top: 25px;*/
		/*padding: 40px 0;*/
	}
	.header__item a {
		display: block;
		letter-spacing: 1.5px;
		font-size: 2.8em;
		font-weight: 500;
		padding-left: 20%;
	}
  .header__item.small a {
	font-size: 10px;
	font-size: 3.5vw;
  }
  /*.header__item a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    right: 3.125vw;
    width: 5px;
    width: 1.5625vw;
    height: 5px;
    height: 1.5625vw;
    border-top: 1px solid #111;
    border-right: 1px solid #111;
    -webkit-transform: rotate(45deg) translateY(-50%);
        -ms-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }*/
  .header__item.external a:after {
    width: 6px;
    width: 1.875vw;
    height: 5px;
    height: 1.5625vw;
    border: none;
    background: url(/assets/images/common/icon/external01.png) center center no-repeat;
    background-size: 100% auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header__item:nth-child(9) {
	  margin-bottom: 30px;
  }
	.header__item:nth-child(11){
		margin-bottom: 10px;
	}
	.header__item:nth-child(11):before {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -5px;
		display: inline-block;
		width: 34px;
		height: 1px;
		-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: #eee;
  }
  .header__item:nth-child(even):before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
  }
}

/* -----------------------------------------------------
 Header SP
------------------------------------------------------- */
@media screen and (max-width: 480px) {
	.header {
		width: 100%;
		height: 75px;
		margin:0 auto;
		background:#fff;
	}
  .header__overlay {
	width: 100%;
	height: 0;
	position: absolute;
	z-index: -5;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: #fff;
	transition: opacity .2s linear;
  }
  .header.is-active + .header__overlay {
    height: 100%;
    /*opacity: 1;*/
    /*z-index: 2;*/
  }
  .header__upper {
    overflow: hidden;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header__logo {
	position: absolute;
	top: 21px;
	left: 20px;
	width: 50%;
	max-width: 200px;
  }
  .header__logo a {
    display: block;
  }
	.header__left_text{
		position: absolute;
		top: 113px;
		left: -45px;
		height: 0;
		color: #eee;
		text-align: left;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.header__left_text li{
		font-size: 3.1vw;
		color: #eee;
	}
  .header__right {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 31.25%;
  }
  .header__tel {
    position: relative;
    float: left;
    width: 27.2%;
    height: 0;
    padding-top: 31%;
    background-size: cover;
    text-align: center;
    color: #eee;
    background-color: #272727;
  }
  .header__tel figure {
    position: absolute;
    top: 18%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header__tel figure img {
    width: 36px;
    width: 5.625vw;
    margin-bottom: 13%;
  }
  .header__tel figure figcaption {
    font-size: 10px;
    font-size: 3.125vw;
	line-height: 1;
  }
   .header__tel figure figcaption small{
    font-size: 5px;
    font-size: 1.5625vw;
	line-height: 1;
	position: absolute;
    top:0;
    left: 50%;
  }
	.header__tel a .time{
		padding-top: 85%;
		font-size: 2.5vw;
		-webkit-transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		transform: scale(0.9);
	}
	.header__tel a .font-arapey{
		font-family: 'Droid Serif', serif;
	}
  .header__contact {
    width: 41.8%;
    height: 0;
    padding-top: 31%;
    position: relative;
  }
  .header__contact--upper,
  .header__contact--lower {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    font-size: 10px;
    font-size: 3.125vw;
    white-space: nowrap;
    color: #eee;
  }
  .header__contact--upper a,
  .header__contact--lower a {
    position: absolute;
  }
  .header__contact--upper {
    top: 0;
    background-color: #111;
  }
  .header__contact--lower {
    top: 50%;
    background-color: #b58d00;
  }
  .header__menu {
    position: absolute;
    z-index: 10;
    width: 22%;
    height: 0;
    padding-top: 22%;
    top: 0;
    right: 0;
  }
  .header__menu div {
	position: absolute;
	width: 57%;
	height: 0;
	padding-top: 25%;
	top: 30%;
	left: 45%;
	margin-left: -24.2%;
	}
  .header__menu div span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    transition: .2s ease-out;
  }
  .header__menu div span:nth-child(1) {
    top: 0;
  }
  .header__menu div span:nth-child(2){
    top: 50%;
  }
  .header__menu div span:nth-child(3) {
    bottom: 0;
  }
  .header__menu div span:nth-child(4),
  .header__menu div span:nth-child(5) {
    top: 48%;
  }
  .header__menu div span:nth-child(4) {
    -webkit-transform: rotate(28deg);
        -ms-transform: rotate(28deg);
            transform: rotate(28deg);
  }
  .header__menu div span:nth-child(5) {
    -webkit-transform: rotate(-28deg);
        -ms-transform: rotate(-28deg);
            transform: rotate(-28deg);
  }
  .header.is-active .header__menu div span:nth-child(1),
  .header.is-active .header__menu div span:nth-child(2),
  .header.is-active .header__menu div span:nth-child(3),
  .header__menu div span:nth-child(4),
  .header__menu div span:nth-child(5) {
    opacity: 0;
  }
  .header.is-active .header__menu div span:nth-child(4),
  .header.is-active .header__menu div span:nth-child(5) {
    opacity: 1;
  }
  .header__menu p {
    position: absolute;
    width: 100%;
    bottom: 22%;
    left: 0;
  }
  .header__menu p span {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 10px;
    font-size: 3.125vw;
    text-align: center;
    line-height: 1;
    transition: .2s linear;
  }
  .header__menu p span:nth-child(2) {
    opacity: 0;
  }
  .header.is-active .header__menu p span:nth-child(1) {
    opacity: 0;
  }
  .header.is-active .header__menu p span:nth-child(2) {
    opacity: 1;
  }
  .header__lower {
    width: 31.25%;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 32.8125%;
  }
  /*.header__english {
    position: relative;
    background: #111;
  }
  .header__english a {
    width: 31.25%;
    padding: 5px 0 5px 20px;
    padding: 1.5625vw 0 1.5625vw 6.25vw;
    display: block;
    font-size: 9px;
    font-size: 2.8125vw;
    white-space: nowrap;
    line-height: 1;
    color: #eee;
    border-left: 4px solid #a58102;
  }
  .header__english a:after {
    content: '';
    display: inline-block;
    vertical-align: 1px;
    vertical-align: .3125vw;
    width: 4px;
    width: 1.25vw;
    height: 4px;
    height: 1.25vw;
    margin-left: 3px;
    margin-left: .9375vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }*/
	.header__home {
		position: absolute;
		top: 23px;
		left: 20px;
		width: 50%;
	}
  .header__contents {
    position: absolute;
    width: 100%;
    z-index: -2;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s linear;
	color: #000;
	text-align: left;
	background-color: #fff;
  }
	.header.is-active .header__contents {
	pointer-events: auto;
	z-index: 2;
	opacity: 1;
	padding-bottom: 80px;
	}
	.header__menu_logo{
		width: 50%;
		margin: 10px 25% 15px;
	}
	.header__list {
		overflow: hidden;
		height: 70vh;
		main-height: 560px;
		padding: 15vh 0 350vh 0;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.header__item {
		position: relative;
		width: 100%;
		color: #000;
		padding: 8% 0 0;
	}
	.header__item a.ext-link:after{
		content: "";
		display: inline-block;
		width: 15px;
		height: 18px;
		background-image: url(../../images/common/external02.png);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		margin-left: 0.3em;
		vertical-align: -1px;
	}
	/*.header__item:last-of-type{
		background: #f7f7f7;
		padding: 10% 0;
		margin-top: 25px;
		padding: 40px 0;
	}*/
	.header__item a {
		display: block;
		letter-spacing: 1.5px;
		font-size: 2.8em;
		font-weight: 600;
		text-align: center;
		/* margin: 0 auto; */
		/* padding-left: 20%; */
	}
  .header__item.small a {
	font-size: 10px;
	font-size: 3.5vw;
  }
  /*.header__item a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    right: 3.125vw;
    width: 5px;
    width: 1.5625vw;
    height: 5px;
    height: 1.5625vw;
    border-top: 1px solid #111;
    border-right: 1px solid #111;
    -webkit-transform: rotate(45deg) translateY(-50%);
        -ms-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }*/
  .header__item.external a:after {
    width: 6px;
    width: 1.875vw;
    height: 5px;
    height: 1.5625vw;
    border: none;
    background: url(/assets/images/common/icon/external01.png) center center no-repeat;
    background-size: 100% auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header__item:nth-child(9) {
	  margin-bottom: 30px;
  }
	.header__item:nth-child(11){
		margin-bottom: 10px;
	}
	.header__item:nth-child(11):before {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -5px;
		display: inline-block;
		width: 34px;
		height: 1px;
		-moz-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: #eee;
  }
  .header__item:nth-child(even):before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
  }
}


/* -----------------------------------------------------
 予約フォームボタン
------------------------------------------------------- */
.form_btn_wrap{
	display:block;
}
.form_btn_wrap li{
	width:90%;
}
.form_btn{
	border:1px #000 solid;
	overflow: hidden;
}
.secInner_wrap .form_btn_wrap li .form_btn a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 25px 20px;
	background: url(/assets/images/common/link_arrow_g.png)no-repeat right 15% center/4%;
	transition: .1s linear;
}
.form_btn a h3 span {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-right: 12px;
}
#contact .form_btn a h3 span:before{
	content: '';
	display: inline-block;
	width: 21px;
	height: 18.5px;
	background: url(/assets/images/common/contact_icon.svg)no-repeat;
	background-size: contain;
	vertical-align: -5px;
	margin-right: 10px;
}
#reserve .form_btn a h3 span:before{
	content: '';
	display: inline-block;
	width: 21px;
	height: 20px;
	background: url(/assets/images/common/reserve_icon.svg)no-repeat;
	background-size: contain;
	vertical-align: -2px;
	margin-right: 10px;
}
.form_btn a h3 small{
	font-size: 12px;
	font-weight: 500;
	vertical-align: 3px;
}
@media screen and (max-width: 769px){
	.form_btn_wrap li{
		margin: 0 auto 20px;
		width: 100%;
	}
}
@media screen and (min-width: 769px){
	.form_btn_wrap{
		display:flex;
		justify-content:space-between;
	}
	.form_btn_wrap li{
		width: 48%;
	}
	.form_btn{
		border:1px #000 solid;
		overflow: hidden;
	}
	.secInner_wrap .form_btn_wrap li .form_btn a{
		display: block;
		width: 100%;
		height: 100%;
		padding: 35px 0 35px 40px;
		background: url(/assets/images/common/link_arrow_g.png)no-repeat right 13.5% center/4%;
		transition: .1s linear;
	}
	.secInner_wrap .form_btn_wrap li .form_btn a:hover{
		background: url(/assets/images/common/link_arrow_g.png)no-repeat right 12% center/4%;
		opacity: 0.6;
		transition: .1s linear;
	}
	.form_btn a h3 span{
		font-size: 47px;
		font-weight: 600;
		letter-spacing: 2.5px;
		margin-right: 25px;
	}
	#contact .form_btn a h3 span:before{
		content: '';
		display: inline-block;
		width: 42px;
		height: 37px;
		background: url(/assets/images/common/contact_icon.svg)no-repeat;
		background-size: contain;
		margin-right: 20px;
	}
	#reserve .form_btn a h3 span:before{
		content: '';
		display: inline-block;
		width: 42px;
		height: 40px;
		background: url(/assets/images/common/reserve_icon.svg)no-repeat;
		background-size: contain;
		margin-right: 20px;
	}
	.form_btn a h3 small{
		font-size: 17px;
		font-weight: 500;
		vertical-align: 10px;
	}

}


/* -----------------------------------------------------
 Banner
------------------------------------------------------- */
.footer_banner{
	width: 100%;
}
.footer_banner_wrap{
	position: relative;
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 45px 0 85px;
}
.banner-small{
	margin: 0 auto;
	width: 1120px;
}
.banner-small__slider{
	width:100%;
	max-width:1120px;
}
.banner_arrow_left,
.banner_arrow_right{
	box-sizing: border-box;
	width: 50px;
	line-height: 50%;
	padding: 5px;
}
.banner_arrow_left:hover,
.banner_arrow_right:hover{
	opacity:0.7;
	transition: .2s linear;
}
.banner_arrow_left{
	position:absolute;
	top: 40%;
	left:0;
}
.banner_arrow_left:hover{
	margin-left:-10px;
}
.banner_arrow_right{
	position:absolute;
	top: 40%;
	right:0;
}
.banner_arrow_right:hover{
	margin-right:-10px;
}
.footer_banner .slick-track{
	display: flex;
}
.footer_banner .banner-small_arrow{
	z-index:9999;
}
@media screen and (max-width:768px) and (min-width:481px){
	
}
@media screen and (min-width: 769px) {
	.banner-small ul{
		width:1140px;
	}
	.banner-small li a{
		display: block;
		margin-right: 35px;
	}
	.banner-small .banner-small__slider .banner1,
	.banner-small .banner-small__slider .banner2{
		margin-right: 40px;
	}
	.banner-small .banner-small__slider .banner1{
		min-width:540px;
	}
	.banner-small .banner-small__slider .banner2{
		min-width:345px;
		}
}
.slick-dots {
  margin-top: -1px;
  margin-top: -.3125vw;
  padding: 7px 0;
  padding: 2.8vw 0 2.2vw;
  text-align: center;
  line-height: 0;
}
.slick-dots li {
  width: 2%;
  display: inline-block;
  line-height: 0;
}
.slick-dots li + li {
  margin-left: 3.6%;
}
.slick-dots li button {
	width: 100%;
	height: 0;
	padding: 100% 0 0;
	display: block;
	border-radius: 50%;
	border: 1px solid #bbb;
	background: #bbb;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	box-sizing: content-box;
	transition: .15s;
}
.slick-dots li.slick-active button {
	border: 2.2px solid #000;
	background-color: #000;
}

@media screen and (max-width: 480px) {
	.slick-dots {
		/*background-color: #bbb;*/
		display:none;
	}
	.footer_banner_wrap {
		padding: 25px 0 0;
		overflow: hidden;
	}
}
@media screen and (max-width: 768px) and (min-width: 481px){
	.footer_banner_wrap {
		padding: 15px 0;
	}
}
@media screen and (min-width: 769px) {
	.slick-dots {
		position: absolute;
		bottom: -50px;
		left: 46.5%;
		padding: 0;
	}
	.slick-dots li {
		width: 8px;
	}
	.slick-dots li button {
		border-width: 2.2px;
	}
	.slick-dots li + li {
		margin-left: 25px;
	}
}

/* -----------------------------------------------------
 Footer
------------------------------------------------------- */
.footer{
	color:#bbb;
	background:#111;
	margin-top: 50px;
}
.footerInner {
	width: 100%;
	/*max-width: 1360px;*/
	margin: 0 auto;
	box-sizing: border-box;
	padding: 55px 40px 38px;
	position: relative;
}
.footerInnerLeft,
.footerInnerRight{
	padding-bottom:60px;
}
.footerInnerLeft{
	width:30%;
	float:left;
}
.footer_logo {
	width: 240px;
	margin-bottom:35px;
}
.footer_logo:hover{
	opacity:0.6;
	transition: .3s linear;
}
.footer_address{
	color: #777;
	font-family: "Noto Sans Japanese", sans-serif;
	font-size: 1.13em;
	line-height: 2.3;
	letter-spacing: 0.7px;
	text-align: left;
}
.footerInnerRight {
	width: 50.5%;
	position: absolute;
	top: 60px;
	right: 40px;
}
.footerInnerRight ul{
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.footerInnerRight ul li{
	font-size: 1.4em;
	color: #bbb;
}
.footerInnerRight ul li:hover{
	opacity:0.6;
	transition: .1s linear;
}
.footerInnerRight ul li:nth-child(8),
.footerInnerRight ul li:nth-child(9){
	width:30px;
}
.footerInnerRight ul li:nth-child(9){
	margin-right:0;
}
.footer__aside{
	clear: both;
	background:#222;
	padding-left: 38px;
	height: 65px;
}
.footer__aside ul{
	display: inline-flex;
	text-align: left;
	width: 100%;
	/*max-width: 1400px;*/
}
.footer__aside ul li{
	color: #777;
	padding: 23px 35px 0 0;
}
.footer__aside ul li:hover{
	opacity:0.6;
	transition: .3s linear;
}
.footer__aside ul li::after{
	content:url(/assets/images/common/external01.png);
	margin-left: 7px;
}
.footer__tel{
	font-size: 1.6em;
	font-weight: 400;
	letter-spacing: 1.5px;
	color: #bbb;
	position: absolute;
	bottom: 0;
	left: 0;
	}
.footer__tel span{
	font-size: 1.8em;
	font-weight: 500;
	letter-spacing: 3px;
	margin: 0 6px 0 10px;
}
.footer__copyright{
	font-family: "Noto Sans Japanese", sans-serif;
	font-size: 1.2em;
	color: #777;
	text-align: right;
	position: absolute;
	bottom: 0;
	right: 0;
	}
	
.footer__pagetop {
  position: fixed;
  width: 14%;
  bottom: 20px;
  bottom: 6.25vw;
  right: 20px;
  right: 6.25vw;
  transition: .4s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 200%, 0);
          transform: translate3d(0, 200%, 0);
	z-index:9998;
}
.footer__pagetop.is-visible {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.footer__pagetop.is-hidden {
  opacity: 0;
  -webkit-transform: translate3d(0, 200%, 0);
          transform: translate3d(0, 200%, 0);
}
.footer__pagetop a {
	display: block;
	width: 100%;
	height: 0;
	padding-top: 100%;
	background: #000 url(/assets/images/common/footer/pagetop.png) center center no-repeat;
	background-size: 26% auto;
	border:#bbb 1px solid;
	border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .footer__aside {
    font-size: 12px;
	text-align: center;
  }
  .footer__aside--text {
    margin-bottom: 20px;
  }
  .footer__pagetop {
    width: 70px;
    bottom: 40px;
    right: 40px;
    -webkit-transform: translate3d(0, 120px, 0);
            transform: translate3d(0, 120px, 0);
    transition-duration: .5s;
  }
  .footer__pagetop.is-hidden {
    -webkit-transform: translate3d(0, 120px, 0);
            transform: translate3d(0, 120px, 0);
  }
  .footer__pagetop a {
    transition: .15s;
  }
  .footer__pagetop a:hover {
    background-color: #333;
  }
}
@media screen and (max-width: 768px){
	.footerInner {
		width: 100%;
		max-width: 670px;
		padding: 38px 5%;
	}
	.footer_logo {
		width: 200px;
		margin-bottom: 10px;
	}
	.footerInner ul{
		display:flex;
		flex-wrap: wrap;
	}
	.footerInner ul.upper{
		margin: 35px 0 0;
	}
	.footerInner ul.lower{
		margin: 10px 0 25px;
	}
	.footerInner ul li{
		margin-right: 25px;
		font-size: 1.2em;
		font-weight: 200;
	}
	.footerInner ul li:hover{
		opacity:0.6;
		transition: .3s linear;
	}
	.footerInner ul.upper li:nth-child(3),
	.footerInner ul.upper li:nth-child(4){
		width: auto;
		margin-right: 25px;
	}
	.footerInner ul.lower li:nth-child(4),
	.footerInner ul.lower li:nth-child(5){
		width: 22px;
		margin-right: 25px;
	}
	.footerInner ul.upper li:nth-child(4),
	.footerInner ul.lower li:nth-child(5){
		margin-right:0;
	}
	.footer_address {
		font-size: 10px;
		-webkit-transform: scale(0.95);
		-moz-transform: scale(0.95);
		-ms-transform: scale(0.95);
		-o-transform: scale(0.95);
		transform: scale(0.95);
		color: #555;
		line-height: 1.8;
		letter-spacing: 0.4px;
		margin: -5px 0 0 -10px;
}
	.footer__copyright {
		font-family: "Noto Sans Japanese", sans-serif;
		font-size: 1.1em;
		color: #666;
		text-align: left;
		margin-top: 20px;
		position:relative;
	}
	.footer__aside {
		clear: both;
		background: #222;
		padding: 0 5% 0;
		height: 100px;
	}
	.footer__aside ul {
		display: flex;
		flex-wrap: wrap;
	}
	.footer__aside ul li {
		padding: 25px 0 0 0;
		margin: 0 35px -10px 0;
	}
	.footer__aside ul li::after {
		content: '';
		padding-right: 10px;
		background: url(/assets/images/common/external01.png)no-repeat right center/90%;
		margin-left: 5px;
	}
	.footer__tel{
		font-size: 1.2em;
		letter-spacing: 1px;
		position: relative;
	}
	.footer__tel span {
		font-size: 1.6em;
		font-weight: 500;
		letter-spacing: 2px;
		margin: 0 4px 0 6px;
	}
}

/* -----------------------------------------------------
 お申込み改修 2017/05/28
------------------------------------------------------- */
.table__option--wrap.note .form__label {
  margin-bottom: 9px;
  margin-bottom: 2.8vw;
}
#ui-datepicker-div {
  font-size: 1.6em;
}
.form__costume--delete {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -12px 0 0 -12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}
.form__costume--delete:before,
.form__costume--delete:after {
  content: '';
  width: 14px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -7px;
  background-color: #fff;
}
.form__costume--delete:before {
  transform: rotate(45deg);
}
.form__costume--delete:after {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .form__input--row .form__box--price + .form__box--price {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .table__option--wrap.note .form__label {
    margin-bottom: 13px;
  }
  .form__radio input[type="radio"] + label:before {
    top: -3px;
  }
  .form__radio input[type="radio"] + label:after {
    top: 5px;
  }
  .form__costume--delete:before,
  .form__costume--delete:after {
    height: 2px;
  }
}

/* -----------------------------------------------------
 フッターボタン改修　2017/09/07
------------------------------------------------------- */

.footer__menu--upper li a {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.footer__menu--lower li a {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}


/* -----------------------------------------------------
 税込み表示　2020/03/10
------------------------------------------------------- */

.tax {
	font-weight: normal;
	font-size: 85%;
}
.tax .txjp {
	font-size: 80%;
}