@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  width: 100%;
  position: fixed;
  top: 24px;
  left: 0;
  z-index: 1000;
}

@media only screen and (max-width: 1024px) {
  .c-header {
    padding: 0 16px;
  }
}

@media only screen and (max-width: 767px) {
  .c-header {
    padding: 16px 16px 0;
    top: 0;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}

.c-header__inner {
  max-width: 1136px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 36px;
  height: 72px;
  display: -webkit-box;
  display: flex;
  position: relative;
  -webkit-box-align: start;
  align-items: flex-start;
  padding: 5px 32px 0 21px;
}

.c-header .c-iconmenu {
  position: absolute;
  top: 12px;
  right: 13px;
}

.c-header .gmenu {
  margin-left: auto;
  margin-top: 18px;
}

@media only screen and (max-width: 767px) {
  .c-header .gmenu {
    margin: 0;
  }
}

.c-header.is-active {
  background-color: #232930;
}

.c-iconmenu {
  width: 48px;
  height: 48px;
  background-color: #232930;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: none;
}

@media only screen and (max-width: 767px) {
  .c-iconmenu {
    display: -webkit-box;
    display: flex;
  }
}

.c-iconmenu span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  margin: 0 2px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.c-iconmenu.is-active {
  display: block;
}

.c-iconmenu.is-active span {
  width: 24px;
  height: 6px;
  border-radius: 3px;
  margin: 0 auto;
}

.c-iconmenu.is-active span:nth-child(2) {
  opacity: 0;
}

.c-iconmenu.is-active span:nth-child(1) {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
  transform: translate3d(0, 8px, 0) rotate(45deg);
  position: absolute;
  top: 13px;
  left: 13px;
}

.c-iconmenu.is-active span:nth-child(3) {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  position: absolute;
  top: 29px;
  left: 13px;
}

.gmenu ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: baseline;
  align-items: baseline;
}

@media only screen and (max-width: 767px) {
  .gmenu ul {
    display: block;
  }
}

.gmenu ul li {
  margin-left: 48px;
}

@media only screen and (max-width: 1024px) {
  .gmenu ul li {
    margin-left: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .gmenu ul li {
    margin: 0;
  }
}

.gmenu ul li a {
  font-size: 1.6rem;
  font-family: 'RobotoCondensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

@media only screen and (max-width: 767px) {
  .gmenu ul li a {
    color: #fff;
    font-size: 2.1rem;
    line-height: 1.3;
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding: 38px 0;
  }
}

@media only screen and (max-width: 374px) {
  .gmenu ul li a {
    padding: 20px 0;
  }
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    @media only screen and (max-width: 767px) {
      .gmenu ul li a {
        padding: 20px 0;
      }
    }
  }
}

@media only screen and (max-width: 767px) {
  .gmenu ul li a.icon-insta {
    padding: 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  .gmenu ul li a.icon-insta > p.pc-only {
    display: none;
  }
}

.gmenu ul li a.icon-insta > p.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .gmenu ul li a.icon-insta > p.sp-only {
    font-size: 1.6rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    text-transform: lowercase;
  }
  .gmenu ul li a.icon-insta > p.sp-only img {
    margin-right: 3px;
  }
}

.gmenu ul li:first-child {
  margin-left: 0;
}

.gmenu ul li:last-child {
  margin-left: 41px;
}

@media only screen and (max-width: 1024px) {
  .gmenu ul li:last-child {
    margin-left: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .gmenu ul li:last-child {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .gmenu {
    position: fixed;
    background-color: #232930;
    top: 87px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    padding: 15px 0;
    overflow-y: scroll;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    -webkit-transform-origin: center top;
    transform-origin: center top;
    transition-property: opacity, transform, -webkit-transform;
    -webkit-transition-duration: .3s, 0s, 0s;
    transition-duration: .3s, 0s, 0s;
    -webkit-transition-delay: 0s, .3s, .3s;
    transition-delay: 0s, .3s, .3s;
  }
  .gmenu.is-open {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
  }
}

/* Main menu
------------------------------------------------------------*/
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  background-color: #232930;
  color: #fff;
  padding: 25px 0 16px;
}

@media only screen and (max-width: 767px) {
  .c-footer {
    padding: 40px 0 16px;
  }
}

.c-footer__inner {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-footer__inner {
    display: block;
    text-align: center;
  }
}

.c-footer__inner .detail {
  padding: 21px 0 0 16px;
}

@media only screen and (max-width: 767px) {
  .c-footer__inner .detail {
    padding: 11px 0 0;
  }
}

.c-footer__inner .c-label1 {
  -webkit-box-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .c-footer__inner .c-label1 {
    -webkit-box-pack: center;
    justify-content: center;
    margin: 7px 0 0;
    line-height: 2.5;
  }
}

.c-footer__inner .c-label1 span {
  border-color: #fff;
}

.c-footer__inner .c-label1 .bg {
  background-color: #fff;
  color: #232930;
}

@media only screen and (max-width: 767px) {
  .c-footer__ttl img {
    margin: 0 auto;
  }
}

.c-footer__tel {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 7px 0 0px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .c-footer__tel {
    margin: 21px 0 0;
  }
}

.c-footer__tel small {
  font-size: 1.7rem;
  letter-spacing: -1px;
  margin-right: 6px;
}

.c-footer__tel span {
  font-size: 2.4rem;
  letter-spacing: -1.5px;
}

.c-footer__txt {
  font-size: 1.3rem;
}

@media only screen and (max-width: 767px) {
  .c-footer__txt {
    margin: 3px 0 0;
    line-height: 1.6;
  }
}

.c-footer__insta {
  display: inline-block;
  overflow: hidden;
  margin-top: 8px;
}

.c-footer__insta svg path {
  fill: currentColor;
}

.c-footer__insta svg circle {
  fill: currentColor;
}

.c-footer .copyright {
  font-size: 1rem;
  margin: 1px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-footer .copyright {
    text-align: center;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: "GenShinGothic-P", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  color: #232930;
}

body.is-hidden {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 1136px;
  margin: 0 auto;
}

.l-wrapper {
  max-width: 1366px;
  margin: 0 auto;
}

.l-content {
  max-width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  .l-content {
    padding: 0 16px;
  }
}

.l-cont {
  max-width: 736px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .l-cont {
    padding: 0 16px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  width: 100%;
}

.c-btn1 a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #B3A376;
  border: 1px solid #B3A376;
  text-align: center;
  border-radius: 28px;
  padding: 14px 0;
  font-weight: 500;
}

.c-btn1 a span {
  display: inline-block;
  position: relative;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn1 a span svg path {
  fill: currentColor;
}

@media screen and (min-width: 767px) {
  .c-btn1 a:hover {
    background-color: #fff;
  }
  .c-btn1 a:hover span {
    color: #B3A376;
  }
}

/*
------------------------------------------------------------*/
.c-btn2 {
  max-width: 320px;
  margin: 0 auto;
}

.c-btn2 a {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: #B3A376;
  border: 2px solid #B3A376;
  color: #fff;
  border-radius: 32px;
  font-family: 'RobotoCondensed', sans-serif;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .c-btn2 a {
    padding: 6px 0;
  }
}

.c-btn2 a span {
  display: inline-block;
  position: relative;
  font-size: 3.6rem;
}

@media only screen and (max-width: 767px) {
  .c-btn2 a span {
    font-size: 2.9rem;
  }
}

.c-btn2 a span small {
  font-size: 2.1rem;
}

@media screen and (min-width: 767px) {
  .c-btn2 a:hover {
    opacity: 1;
    color: #B3A376;
    background-color: #fff;
  }
}

.c-btn3 {
  max-width: 320px;
  margin: 0 auto;
}

.c-btn3 a, .c-btn3 button {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid #B3A376;
  color: #B3A376;
  border-radius: 32px;
  font-family: 'GenShinGothic-P', sans-serif;
  font-weight: 700;
  padding: 19px 0 18px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-btn3 a svg path, .c-btn3 button svg path {
  fill: currentColor;
}

@media screen and (min-width: 767px) {
  .c-btn3 a:hover, .c-btn3 button:hover {
    background-color: #B3A376;
    color: #fff;
  }
}

.c-btn3 a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-btn3--back button svg {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-ttl1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
}

.c-ttl1__img {
  flex-shrink: 0;
}

.c-ttl1__txt {
  position: relative;
  -webkit-box-flex: 1;
  flex: 1;
  padding-left: 19px;
  margin: 32px 0 0 -5px;
}

.c-ttl1__txt::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.c-ttl1__txt span {
  position: relative;
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  padding: 12px 0 13px;
}

@media only screen and (max-width: 767px) {
  .c-ttl1__txt span {
    font-size: 1.9rem;
    line-height: 1.3;
    padding: 7px 0 8px;
  }
}

.c-ttl1__txt span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.c-ttl1.u-fadeUp .c-ttl1__txt::after {
  width: 0;
}

.c-ttl1.u-fadeUp.is-show .c-ttl1__txt::after {
  width: 100%;
}

.c-ttl1.u-fadeUp .c-ttl1__txt span::before {
  width: 0;
}

.c-ttl1.u-fadeUp.is-show .c-ttl1__txt span::before {
  width: 100%;
}

/*
------------------------------------------------------------*/
.c-ttl2 {
  font-size: 4.2rem;
  font-weight: 700;
  font-family: 'RobotoCondensed', sans-serif;
  line-height: 1;
  text-align: center;
}

.c-ttl2 span {
  font-size: 1.2rem;
  font-family: 'GenShinGothic-P', sans-serif;
  display: block;
  font-weight: 400;
  margin-top: 6px;
}

/*
------------------------------------------------------------*/
.c-ttl3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #24292F;
}

@media only screen and (max-width: 767px) {
  .c-ttl3 {
    font-size: 1.9rem;
    line-height: 1.5;
  }
}

/*
------------------------------------------------------------*/
.c-ttl4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.c-ttl4 span {
  border-bottom: 1px solid #232930;
  padding-bottom: 17px;
  display: inline-block;
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-form1 {
  margin: 30px 0 0;
  padding: 0 32px 0;
}

@media only screen and (max-width: 767px) {
  .c-form1 {
    padding: 0;
  }
}

.c-form1 form dl {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dl {
    flex-wrap: wrap;
  }
}

.c-form1 form dl:nth-of-type(odd) {
  background-color: #f7f6f2;
}

.c-form1 form dl.pad1 dd {
  padding: 18px 14px 12px 0px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dl.pad1 dd {
    padding: 5px 16px 10px;
  }
}

.c-form1 form dl .pad2 dd {
  padding-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dl .pad2 dd {
    padding-bottom: 10px;
  }
}

.c-form1 form dt {
  width: 30.5%;
  padding: 18px 4px 18px 9px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dt {
    width: 100%;
    padding: 10px 16px 5px;
  }
}

.c-form1 form dt .required {
  background-color: #b3a376;
  font-size: 1rem;
  width: 36px;
  height: 20px;
  color: #fff;
  border-radius: 10px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media only screen and (max-width: 767px) {
  .c-form1 form dt .required {
    font-size: 1.2rem;
    -webkit-transform: none;
    transform: none;
    margin-right: 10px;
  }
}

.c-form1 form dt .required.none {
  background-color: #fff;
  color: #666666;
}

.c-form1 form dt h4 {
  font-size: 1.6rem;
  font-weight: 500;
  display: -webkit-inline-box;
  display: inline-flex;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dt h4 {
    line-height: 1.6;
    font-size: 1.4rem;
  }
}

.c-form1 form dd {
  width: 69.5%;
  padding: 14px 14px 14px 0;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd {
    width: 100%;
    padding: 10px 16px;
  }
  .c-form1 form dd > span,
  .c-form1 form dd > p {
    font-size: 1.4rem;
    margin-top: 0;
  }
}

.c-form1 form dd > span {
  margin-top: 2px;
  display: inline-block;
}

.c-form1 form dd > p {
  margin-top: 4px;
  word-break: break-all;
}

.c-form1 form dd .list-radio {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio {
    display: block;
  }
}

.c-form1 form dd .list-radio .item {
  display: block;
  min-width: 43.5%;
  margin-bottom: 7px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio .item {
    margin-bottom: 5px;
  }
}

.c-form1 form dd .list-radio input[type="radio"]:checked, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) {
  position: absolute;
  opacity: 0;
}

.c-form1 form dd .list-radio input[type="radio"]:checked + .text, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-size: 1.6rem;
  line-height: 1.69;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio input[type="radio"]:checked + .text, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text {
    font-size: 1.3rem;
    padding-left: 25px;
    line-height: 1.4;
  }
}

.c-form1 form dd .list-radio input[type="radio"]:checked + .text:before, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #b3a376;
  border-radius: 100%;
  background: #fff;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio input[type="radio"]:checked + .text:before, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text:before {
    width: 18px;
    height: 18px;
  }
}

.c-form1 form dd .list-radio input[type="radio"]:checked + .text:after, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text:after {
  content: "";
  width: 14px;
  height: 14px;
  background: #b3a376;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio input[type="radio"]:checked + .text:after, .c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text:after {
    width: 10px;
    height: 10px;
    top: 4px;
    left: 4px;
  }
}

.c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text:before {
  border: 1px solid #cccccc;
}

.c-form1 form dd .list-radio input[type="radio"]:not(:checked) + .text:after {
  background-color: #cccccc;
}

.c-form1 form dd .list-radio input[type="radio"]:disabled + .text {
  opacity: 0.5;
}

.c-form1 form dd .list-radio input[type="radio"]:disabled + .text:before {
  border: 1px solid #cccccc;
}

.c-form1 form dd .list-radio input[type="radio"]:disabled + .text:after {
  background-color: #cccccc;
}

.c-form1 form dd .list-radio--mode {
  -webkit-box-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio--mode {
    display: -webkit-box;
    display: flex;
  }
}

.c-form1 form dd .list-radio--mode .item {
  min-width: auto;
  margin-right: 32px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio--mode .item {
    width: 45%;
    margin-right: 5%;
  }
  .c-form1 form dd .list-radio--mode .item:nth-child(2n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-radio-menu {
    display: -webkit-box;
    display: flex;
  }
  .c-form1 form dd .list-radio-menu .item {
    width: 100%;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(4) {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(5) {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(6) {
    -webkit-box-ordinal-group: 4;
    order: 3;
  }
  .c-form1 form dd .list-radio-menu .item:nth-child(7) {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
}

.c-form1 form dd .list-select {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-select {
    flex-wrap: wrap;
  }
}

.c-form1 form dd .list-select > span {
  margin-top: 2px;
  margin-right: 5px;
}

.c-form1 form dd .list-select > span:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-select > span {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

.c-form1 form dd .list-select label {
  font-size: 1.3rem;
  color: #b3b3b3;
  margin-right: 6px;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-select label {
    margin-right: 0;
  }
}

.c-form1 form dd .list-select select {
  width: 104px;
  height: 36px;
  padding: 0 6px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1.6rem;
  font-family: "GenShinGothic-P", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  appearance: none;
  background: url(../img/common/arr-iconselect.svg) no-repeat;
  background-position: center right 8px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-select select {
    font-size: 1.3rem;
    width: 100%;
  }
}

.c-form1 form dd .list-select select::-ms-expand {
  display: none;
}

.c-form1 form dd .list-select select option {
  color: #232930;
}

.c-form1 form dd .list-select select.wid1 {
  width: 134px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-select select.wid1 {
    width: 100%;
  }
}

.c-form1 form dd .list-select-item {
  margin-right: 18px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list-select-item {
    margin-top: 8px;
    margin-right: 5%;
    width: 45%;
  }
  .c-form1 form dd .list-select-item:nth-child(2n) {
    margin-right: 0;
  }
}

.c-form1 form dd .list-select-item:last-child {
  margin-right: 0;
}

.c-form1 form dd .list1 {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list1 {
    display: block;
  }
}

.c-form1 form dd .list1 > span {
  margin-top: 2px;
  margin-right: 5px;
}

.c-form1 form dd .list1 > span:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list1 > span {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

.c-form1 form dd .list1 input + input {
  margin-left: 9px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd .list1 input + input {
    margin: 8px 0 0;
  }
}

.c-form1 form dd input[type="text"], .c-form1 form dd input[type="number"], .c-form1 form dd input[type="email"], .c-form1 form dd input[type="tel"] {
  display: block;
  width: 100%;
  height: 36px;
  background-color: #fff;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1.6rem;
  box-sizing: border-box;
  box-shadow: none;
  padding: 0 14px;
  font-family: "GenShinGothic-P", sans-serif;
  color: #232930;
  padding: 0 5px;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd input[type="text"], .c-form1 form dd input[type="number"], .c-form1 form dd input[type="email"], .c-form1 form dd input[type="tel"] {
    max-width: none !important;
    font-size: 1.3rem;
    padding: 0 10px;
  }
}

.c-form1 form dd input[type="text"].style1, .c-form1 form dd input[type="number"].style1, .c-form1 form dd input[type="email"].style1, .c-form1 form dd input[type="tel"].style1 {
  max-width: 222px;
}

@media only screen and (max-width: 1024px) {
  .c-form1 form dd input[type="text"].style1, .c-form1 form dd input[type="number"].style1, .c-form1 form dd input[type="email"].style1, .c-form1 form dd input[type="tel"].style1 {
    max-width: 49%;
  }
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd input[type="text"].style1, .c-form1 form dd input[type="number"].style1, .c-form1 form dd input[type="email"].style1, .c-form1 form dd input[type="tel"].style1 {
    max-width: none;
  }
}

.c-form1 form dd input[type="text"]::-webkit-input-placeholder, .c-form1 form dd input[type="number"]::-webkit-input-placeholder, .c-form1 form dd input[type="email"]::-webkit-input-placeholder, .c-form1 form dd input[type="tel"]::-webkit-input-placeholder {
  color: #ccc;
}

.c-form1 form dd input[type="text"]::-moz-placeholder, .c-form1 form dd input[type="number"]::-moz-placeholder, .c-form1 form dd input[type="email"]::-moz-placeholder, .c-form1 form dd input[type="tel"]::-moz-placeholder {
  color: #ccc;
}

.c-form1 form dd input[type="text"]:-ms-input-placeholder, .c-form1 form dd input[type="number"]:-ms-input-placeholder, .c-form1 form dd input[type="email"]:-ms-input-placeholder, .c-form1 form dd input[type="tel"]:-ms-input-placeholder {
  color: #ccc;
}

.c-form1 form dd input[type="text"]::-ms-input-placeholder, .c-form1 form dd input[type="number"]::-ms-input-placeholder, .c-form1 form dd input[type="email"]::-ms-input-placeholder, .c-form1 form dd input[type="tel"]::-ms-input-placeholder {
  color: #ccc;
}

.c-form1 form dd input[type="text"]::placeholder, .c-form1 form dd input[type="number"]::placeholder, .c-form1 form dd input[type="email"]::placeholder, .c-form1 form dd input[type="tel"]::placeholder {
  color: #ccc;
}

.c-form1 form dd .text1 {
  font-size: 1.3rem;
  color: #b3b3b3;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 5px;
}

.c-form1 form dd textarea {
  resize: none;
  width: 100%;
  box-sizing: border-box;
  height: 164px;
  font-family: serif;
  font-family: "GenShinGothic-P", sans-serif;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: none;
  color: #232930;
  overflow: auto;
}

@media only screen and (max-width: 767px) {
  .c-form1 form dd textarea {
    font-size: 1.4rem;
    height: 180px;
  }
}

.c-form1 .c-btn3 {
  margin-top: 17px;
}

.c-form1 .err-vld {
  display: block;
  width: 100%;
  margin: 5px 0;
  font-size: 1.4rem;
}

.c-form1 .c-btnSubmit {
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-form1 .c-btnSubmit {
    display: block;
  }
}

.c-form1 .c-btnSubmit .c-btn3 {
  width: 50%;
  max-width: 320px;
}

@media only screen and (max-width: 767px) {
  .c-form1 .c-btnSubmit .c-btn3 {
    width: auto;
    margin-top: 10px;
  }
}

/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-text1 {
  font-size: 1.6rem;
  line-height: 1.69;
}

@media only screen and (max-width: 767px) {
  .c-text1 {
    font-size: 1.3rem;
  }
}

/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .c-nav-list1 {
    display: none;
  }
}

.c-nav-list1 ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
}

.c-nav-list1 ul li {
  max-width: 106px;
  margin: 0 10px 0;
}

.c-nav-list1 ul a {
  display: block;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-nav-list1 ul a .thumb {
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
}

.c-nav-list1 ul a .thumb img {
  position: relative;
  top: 0;
}

.c-nav-list1 ul a .thumb:before {
  content: "";
  width: 7px;
  height: 7px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-nav-list1 ul a .ttl {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 0;
}

.c-nav-list1 ul a:hover {
  opacity: 1;
}

.c-nav-list1 ul a:hover .thumb img {
  top: 6px;
}

@media screen and (min-width: 767px) {
  .c-nav-list1 ul a:hover .thumb:before {
    bottom: 10px;
  }
}

.c-nav-list1 ul a:hover .thumb img {
  opacity: 1;
}

.c-nav-list1.u-fadeUp ul li:nth-child(1) {
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.c-nav-list1.u-fadeUp ul li:nth-child(2) {
  -webkit-transition: 1s 0.2s;
  transition: 1s 0.2s;
}

.c-nav-list1.u-fadeUp ul li:nth-child(3) {
  -webkit-transition: 1s 0.4s;
  transition: 1s 0.4s;
}

.c-nav-list1.u-fadeUp ul li:nth-child(4) {
  -webkit-transition: 1s 0.6s;
  transition: 1s 0.6s;
}

.c-nav-list1.u-fadeUp ul li:nth-child(5) {
  -webkit-transition: 1s 0.8s;
  transition: 1s 0.8s;
}

/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-imgText1 {
  position: relative;
  margin-bottom: 140px;
}

@media only screen and (max-width: 767px) {
  .c-imgText1 {
    margin-bottom: 32px;
  }
}

.c-imgText1__txt {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1024px) {
  .c-imgText1__txt {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .c-imgText1__txt {
    width: 100%;
  }
}

.c-imgText1__txt p {
  font-size: 1.6rem;
  line-height: 2.15;
}

@media only screen and (max-width: 767px) {
  .c-imgText1__txt p {
    font-size: 1.3rem;
    line-height: 2.1;
  }
}

.c-imgText1__txt p + p {
  margin-top: 34px;
}

@media only screen and (max-width: 767px) {
  .c-imgText1__txt p + p {
    margin-top: 26px;
  }
}

.c-imgText1__img {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .c-imgText1__img {
    position: initial;
  }
}

.c-imgText1__img.style1 {
  width: 171px;
  top: 37px;
  right: 67px;
}

@media only screen and (max-width: 1024px) {
  .c-imgText1__img.style1 {
    width: 17.7%;
    right: 5.8%;
  }
}

@media only screen and (max-width: 767px) {
  .c-imgText1__img.style1 {
    display: none;
  }
}

.c-imgText1.u-fadeUp .c-imgText1__img.style1 {
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.c-imgText1__img.style2 {
  width: 355px;
  top: 167px;
  right: 162px;
}

@media only screen and (max-width: 1024px) {
  .c-imgText1__img.style2 {
    width: 36.7%;
    right: 14%;
  }
}

@media only screen and (max-width: 767px) {
  .c-imgText1__img.style2 {
    width: 100%;
    max-width: 288px;
    margin: 11px auto 0;
    top: auto;
    right: auto;
  }
}

.c-imgText1.u-fadeUp .c-imgText1__img.style2 {
  -webkit-transition: 1s 0.6s;
  transition: 1s 0.6s;
}

@media only screen and (max-width: 767px) {
  .c-imgText1.u-fadeUp .c-imgText1__img.style2 {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: 1s 0s;
    transition: 1s 0s;
  }

  .c-imgText1.u-fadeUp .c-imgText1__img.style2.is-show {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-list1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .c-list1 {
    display: block;
  }
}

.c-list1__item {
  width: 47.6%;
  max-width: 476px;
}

@media only screen and (max-width: 767px) {
  .c-list1__item {
    margin: 0 auto;
    width: 100%;
  }
  .c-list1__item + .c-list1__item {
    margin-top: 30px;
  }
}

.c-list1__item:nth-child(2) {
  -webkit-transition: 1s 0.5s;
  transition: 1s 0.5s;
}

@media only screen and (max-width: 767px) {
  .c-list1__item:nth-child(2) {
    -webkit-transition: 1s 0s;
    transition: 1s 0s;
  }
}

.c-list1__item:nth-child(2) .img {
  -webkit-transition: 1s 0.5s;
  transition: 1s 0.5s;
}

@media only screen and (max-width: 767px) {
  .c-list1__item:nth-child(2) .img {
    -webkit-transition: 1s 0s;
    transition: 1s 0s;
  }
}

.c-list1__item .img {
  max-width: 298px;
  margin: 0 auto;
}

.c-list1__item .detail {
  font-size: 1.6rem;
  line-height: 1.69;
  margin: 22px 0 0;
  padding: 0 5px 0;
}

@media only screen and (max-width: 767px) {
  .c-list1__item .detail {
    font-size: 1.3rem;
    line-height: 1.7;
    padding: 0 27px 0 28px;
    margin-top: 23px;
  }
}

/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-tbl1 {
  border-collapse: collapse;
  width: 100%;
}

.c-tbl1 tr th, .c-tbl1 tr td {
  font-size: 1.6rem;
  line-height: 2.2;
  border: 1px solid #E6E6E6;
  padding: 4px 0 0px;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 tr th, .c-tbl1 tr td {
    font-size: 1.3rem;
    line-height: 1.69;
    padding: 10px 0 8px;
  }
}

.c-tbl1 tr th {
  font-weight: 500;
  background-color: #F7F7F7;
  width: 16.6%;
  border-right: none;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 tr th {
    width: 23.6%;
    vertical-align: top;
  }
}

.c-tbl1 tr td {
  padding-left: 24px;
  padding-right: 24px;
  border-left: none;
}

@media only screen and (max-width: 767px) {
  .c-tbl1 tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-mv {
  position: relative;
  overflow: hidden;
}

.c-mv__info {
  position: absolute;
  top: 24.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
} 

@media only screen and (max-width: 767px) {
  .c-mv__info {
    width: 100%;
    padding: 0 16px;
    top: 32%;
    -webkit-transform: translateX(-49.5%);
    transform: translateX(-49.5%);
  }
}

.c-mv__info .txt {
  font-size: 2.5rem;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
  margin: 7px 0;
}

@media only screen and (max-width: 767px) {
  .c-mv__info .txt {
    font-size: 1.7rem;
    margin: 5px 0 7px;
    padding-right: 10px;
  }
}

.c-mv__info.u-fadeUp .txt {
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

@media only screen and (max-width: 767px) {
  .c-mv__info .logo {
    width: 118px;
    margin: 0 auto;
  }
}

.c-mv__info.u-fadeUp .title {
  -webkit-transition: 1s 0.6s;
  transition: 1s 0.6s;
}

.c-mv__info.u-fadeUp {
  -webkit-transform: translate(-50%, 20px);
  transform: translate(-50%, 20px);
}

.c-mv__info.u-fadeUp.is-show {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.c-mvscroll {
  position: absolute;
  top: 65%;
  left: 49.2%;
  -webkit-animation: moveScroll 1.5s linear infinite;
  animation: moveScroll 1.5s linear infinite;
}

@media only screen and (max-width: 1136px) {
  .c-mvscroll {
    top: auto;
    bottom: 9%;
  }
}

@media only screen and (max-width: 767px) {
  .c-mvscroll {
    display: none;
  }
}

@-webkit-keyframes moveScroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@keyframes moveScroll {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
}

@media only screen and (max-width: 767px) {
  .c-mv__img img {
    width: 100%;
  }
}

.c-label1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .c-label1 {
    flex-wrap: wrap;
  }
}

.c-label1 span {
  display: block;
  border: 1px solid #232930;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 0 8px 0 6px;
}

.c-label1 span.bg {
  background-color: #232930;
  color: #fff;
}

.c-label1 span:nth-child(2) {
  margin-right: 8px;
}

@media only screen and (max-width: 767px) {
  .c-label1 span:nth-child(2) {
    margin-right: 0;
  }
}

.c-label1 small {
  font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
  .c-label1 small {
    font-size: 1.3rem;
    width: 100%;
    margin: 8px 0 0;
  }
}

.c-label2 {
  text-align: center;
}

.c-label2 span, .c-label2 a {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.69;
  position: relative;
  padding-left: 16px;
}

@media only screen and (max-width: 767px) {
  .c-label2 span, .c-label2 a {
    font-size: 1.3rem;
  }
}

.c-label2 span:before, .c-label2 a:before {
  content: "";
  width: 12px;
  height: 12px;
  background: url("../img/common/icon-arrow-right.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .c-label2 span:before, .c-label2 a:before {
    top: 3px;
  }
}

@media screen and (min-width: 767px) {
  .c-label2 a:hover {
    opacity: 0.7;
  }
}

.c-box1 {
  border: 1px solid #b3a376;
  border-radius: 16px;
  display: -webkit-box;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .c-box1 {
    display: block;
  }
}

.c-box1__ttl {
  background-color: #b3a376;
  border-radius: 16px 0 0 16px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  width: 15.2%;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .c-box1__ttl {
    width: 100%;
    border-radius: 16px 16px 0 0;
    padding: 2px 0;
  }
}

.c-box1__detail {
  width: 84.8%;
}

@media only screen and (max-width: 767px) {
  .c-box1__detail {
    width: 100%;
  }
}

.c-box1__detail ul {
  padding: 20px 23px;
}

@media only screen and (max-width: 767px) {
  .c-box1__detail ul {
    padding: 16px 19px 19px;
  }
}

.c-box1__detail ul li {
  font-size: 1.3rem;
  line-height: 2;
  position: relative;
  padding-left: 16px;
}

@media only screen and (max-width: 767px) {
  .c-box1__detail ul li {
    line-height: 1.69;
  }
}

.c-box1__detail ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #b3a376;
  position: absolute;
  top: 10px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .c-box1__detail ul li::before {
    top: 5px;
  }
}

/*
------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .c-accord01 {
    background-color: #fff;
    border-radius: 16px;
    padding: 6px 8px 13px;
  }
}

.c-accord01.u-fadeUp--sp.is-show .u-fadeIn2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (max-width: 767px) {
  .c-accord01__block:first-child .c-accord01__ttl::before {
    content: none;
  }
}

.c-accord01__ttl {
  display: none;
}

@media only screen and (max-width: 767px) {
  .c-accord01__block {
    -webkit-transition: 1s 0.5s;
    transition: 1s 0.5s;
  }
}

.c-accord01__block.u-fadeUp .c-accord01__ttl {
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

@media only screen and (max-width: 767px) {
  .c-accord01__ttl {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    padding: 15px 0 13px;
  }
  .c-accord01__ttl.pad1 {
    padding: 16px 0 12px;
  }
  .c-accord01__ttl .thumb {
    width: 80px;
    height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }
  .c-accord01__ttl .ttl {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-flex: 1;
    flex: 1;
    padding: 0 24px 0 12px;
  }
  .c-accord01__ttl::before {
    content: "";
    width: 100%;
    height: 4px;
    background: url("../img/common/border-image.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .c-accord01__ttl::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid #b3a376;
    border-right: 1px solid #b3a376;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 46%;
    right: 11px;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .c-accord01__ttl.is-active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 49%;
  }
}

.c-accord01__info {
  background-color: #fff;
  padding: 8px 8px 32px;
  border-radius: 16px;
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  .c-accord01__info {
    padding: 20px 0 0;
    position: relative;
    border-radius: 0;
    margin: 0;
    display: none;
  }
  .c-accord01__info::before {
    content: "";
    width: 100%;
    height: 4px;
    background: url("../img/common/border-image.png") no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.c-accord01__info .img {
  position: relative;
}

.c-accord01.u-fadeUp--sp .c-accord01__block.is-show .img.u-fadeIn2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-accord01__info .img span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #b3a376;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: 8px;
  left: 8px;
}

.c-accord01__info .detail {
  padding: 30px 24px 0;
}

@media only screen and (max-width: 767px) {
  .c-accord01__info .detail {
    padding: 19px 12px 31px;
  }
}

.c-accord01.u-fadeUp--sp .c-accord01__block .detail.u-fadeUp {
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.c-accord01.u-fadeUp--sp .c-accord01__block.is-show .detail.u-fadeIn2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-accord01__info .c-text1 {
  margin: 17px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-accord01__info .c-text1 {
    margin: 13px 0 0;
    line-height: 1.7;
  }
}

.c-accord01__info .c-tbl1 {
  margin: 21px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-accord01__info .c-tbl1 {
    margin: 14px 0 0;
  }
}

.c-accord01__info .c-btn1 {
  margin-top: 20px;
}

.c-map__iframe {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}

.c-map .c-text1 {
  text-align: center;
  margin: 19px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-map .c-text1 {
    text-align: left;
    margin: 15px 0 0;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top1 {
  background: url(../img/common/bg01.png) no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 114px 0 147px;
}

@media only screen and (max-width: 767px) {
  .p-top1 {
    background: url(../img/common/bg01-sp.png) no-repeat center top;
    background-size: cover;
    padding: 45px 0 62px;
    margin-top: -1px;
  }
}

.p-top1 .c-list1 {
  margin: 32px 0 0;
}

@media only screen and (max-width: 767px) {
  .p-top1 .c-list1 {
    margin: 21px 0 0;
  }
}

.p-top2 {
  padding-bottom: 92px;
  background-color: #F5F5F5;
}

@media only screen and (max-width: 767px) {
  .p-top2 {
    padding-bottom: 55px;
  }
}

.p-top2__menu {
  padding-top: 80px;
}

@media only screen and (max-width: 767px) {
  .p-top2__menu {
    padding-top: 69px;
  }
}

.p-top2 .mt1 {
  margin-top: 33px;
}

.p-top2 .c-label1 {
  margin: 9px 0 0;
}

@media only screen and (max-width: 767px) {
  .p-top2 .c-label1 {
    margin: 15px 0 0;
  }
}

.p-top2 .c-label2 {
  margin: 10px 0 0;
}

@media only screen and (max-width: 767px) {
  .p-top2 .c-label2 {
    margin: 2px 0 0;
  }
}

.p-top2 .c-box1 {
  margin: 37px 0 0;
}

@media only screen and (max-width: 767px) {
  .p-top2 .c-box1 {
    margin: 13px 0 0;
  }
}

.p-top2 .c-nav-list1 {
  margin: 40px 0 0;
}

.p-top2 .c-accord01 {
  margin: 30px 0 0;
}

@media only screen and (max-width: 767px) {
  .p-top2 .c-accord01 {
    margin: 23px 0 0;
  }
}

.p-top2__calendar {
  padding-top: 46px;
}

@media only screen and (max-width: 767px) {
  .p-top2__calendar {
    padding-top: 30px;
  }
}

.p-top2__calendar.u-fadeUp .c-calendar {
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.p-top2__note {
  position: relative;
  padding-left: 16px;
  font-size: 1.6rem;
}

.p-top2__note:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #B3A376;
  position: absolute;
  top: 10px;
  left: 0;
}

.p-top2 .c-calendar {
  margin: 13px 0 0;
  height: 530px;
}

@media only screen and (max-width: 767px) {
  .p-top2 .c-calendar {
    height: 106.7vw;
  }
}

.c-access {
  padding-top: 80px;
  padding-bottom: 96px;
}

@media only screen and (max-width: 767px) {
  .c-access {
    padding-top: 68px;
    padding-bottom: 64px;
  }
}

.c-access .c-map {
  margin: 34px 0 0;
}

.c-access .c-map.u-fadeUp .c-text1 {
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.c-access-box {
  display: -webkit-box;
  display: flex;
  margin-top: 64px;
  padding: 34px 0 24px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .c-access-box {
    margin-top: 53px;
    display: block;
    padding: 26px 0 16px;
  }
}

.c-access-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #232930;
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

@media only screen and (max-width: 767px) {
  .c-access-box::before {
    -webkit-transition: 1s 0.6s;
    transition: 1s 0.6s;
  }
}

.c-access-box::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #232930;
  -webkit-transition: 1s 0.75s;
  transition: 1s 0.75s;
}

@media only screen and (max-width: 767px) {
  .c-access-box::after {
    -webkit-transition: 1s 0.6s;
    transition: 1s 0.6s;
  }
}

.c-access-box .thumb {
  width: 200px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow-y: hidden;
}

@media only screen and (max-width: 767px) {
  .c-access-box .thumb {
    width: 100%;
  }
  .c-access-box .thumb img {
    width: 100%;
  }
}

.c-access-box .detail {
  -webkit-box-flex: 1;
  flex: 1;
  padding: 12px 70px 0 20px;
}

@media only screen and (max-width: 767px) {
  .c-access-box .detail {
    padding: 15px 0 0;
  }
}

.c-access-box .detail .ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.c-access-box .detail .c-text1 {
  margin: 7px 0 0;
}

.c-access-box .detail a {
  display: inline-block;
  position: relative;
  margin: 18px 0 0;
  padding-left: 16px;
}

@media only screen and (max-width: 767px) {
  .c-access-box .detail a {
    font-size: 1.3rem;
    margin: 13px 0 0;
  }
}

.c-access-box .detail a:before {
  content: '';
  width: 12px;
  height: 12px;
  background: url("../img/common/icon-arrow-right.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .c-access-box .detail a:before {
    top: 4px;
  }
}

.c-access-box .detail a[target=_blank]:after {
  content: '';
  width: 15px;
  height: 13px;
  background: url("../img/common/icon-blank.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  right: -19px;
}

@media only screen and (max-width: 767px) {
  .c-access-box .detail a[target=_blank]:after {
    top: 3px;
    right: -20px;
  }
}

.c-access-box.u-fadeUp::before {
  width: 0;
}

.c-access-box.u-fadeUp.is-show::before {
  width: 100%;
}

.c-access-box.u-fadeUp::after {
  width: 0;
}

.c-access-box.u-fadeUp.is-show::after {
  width: 100%;
}

.c-access-box__label {
  position: absolute;
  top: -12px;
  left: 0;
  background-color: #fff;
  padding-right: 10px;
}

.c-contact {
  background-color: #F5F5F5;
  padding: 69px 0 95px;
}

@media only screen and (max-width: 767px) {
  .c-contact {
    padding: 69px 0 64px;
  }
}

.c-contact .c-ttl2 {
  margin-bottom: 32px;
}

.c-contact .c-label2 {
  margin: 11px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-contact .c-label2 {
    margin: 9px 0 0;
  }
}

.c-contact-box {
  background-color: #fff;
  text-align: center;
  margin: 37px 0 0;
  border-radius: 16px;
  padding: 46px 0 37px;
}

@media only screen and (max-width: 767px) {
  .c-contact-box {
    margin: 25px 0 0;
    padding: 35px 20px 30px;
  }
}

.c-contact-box .ttl {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 26px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-contact-box .ttl {
    margin: 15px 0 4px;
  }
}

.c-contact-box .c-btn2 {
  margin-top: 17px;
}

@media only screen and (max-width: 767px) {
  .c-contact-box .c-btn2 {
    margin-top: 15px;
  }
}

.c-contact-box .c-btn2 + .c-text1 {
  margin: 7px 0 0;
}

.c-contact-box2 {
  background-color: #fff;
  border-radius: 16px;
  margin: 40px 0 0;
  padding: 46px 0 40px;
}

@media only screen and (max-width: 767px) {
  .c-contact-box2 {
    margin: 24px 0 0;
    padding: 35px 20px 30px;
  }
}

.c-contact-box2 .c-text1 {
  margin: 24px 0 0;
}

@media only screen and (max-width: 767px) {
  .c-contact-box2 .c-text1 {
    margin: 15px 0 0;
  }
}

.c-contact-box2.u-fadeUp .inner {
  -webkit-transition: 1s 0.3s;
  transition: 1s 0.3s;
}

.c-contact-box2.u-fadeUp .c-form1 {
  -webkit-transition: 1s 0.6s;
  transition: 1s 0.6s;
}

.c-contact-box2.u-fadeUp .c-form1 dl {
  -webkit-transition: 1s 0.6s;
  transition: 1s 0.6s;
}

.c-contact-box2.u-fadeUp .c-form1 dl:nth-child(odd) {
  opacity: 0;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}

.c-contact-box2.u-fadeUp.is-show .c-form1 dl:nth-child(odd) {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.c-contact-box2.u-fadeUp .c-form1 dl:nth-child(even) {
  opacity: 0;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}

.c-contact-box2.u-fadeUp.is-show .c-form1 dl:nth-child(even) {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*------------------------------------------------------------
Css of thank page
------------------------------------------------------------*/
.p-thank__content {
  background-color: #F5F5F5;
  padding: 80px 0;
}

.p-thank__content .inner {
  background-color: #fff;
  padding: 40px 25px;
  border-radius: 16px;
}

.p-thank__content .inner .c-text1 {
  margin: 24px 0 0;
}

.p-thank__content .inner .c-btn3 {
  margin-top: 17px;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.u-center {
  text-align: center;
}

.u-medium {
  font-weight: 500;
}

.u-fadeIn, .u-fadeIn2 {
  opacity: 0;
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-fadeIn.is-show, .is-show .u-fadeIn2 {
  opacity: 1;
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-fadeUp, .u-fadeUp2 {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-fadeUp.is-show, .is-show .u-fadeUp2 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (max-width: 767px) {
  .u-fadeUp--sp {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: 1s 0s;
    transition: 1s 0s;
  }

  .u-fadeUp--sp.is-show {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.u-fadeLeft, .u-fadeLeft2 {
  opacity: 0;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-fadeLeft.is-show, .is-show .u-fadeLeft2 {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (max-width: 767px) {
  .u-fadeLeft--sp {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    -webkit-transition: 1s 0s;
    transition: 1s 0s;
  }

  .u-fadeLeft--sp.is-show {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.u-fadeRight {
  opacity: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-fadeRight.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.u-flipLeft {
  opacity: 0;
  -webkit-transform: perspective(2500px) rotateY(-100deg);
  transform: perspective(2500px) rotateY(-100deg);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-flipLeft.is-show {
  opacity: 1;
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0);
}

.u-flipRight {
  opacity: 0;
  -webkit-transform: perspective(2500px) rotateY(100deg);
  transform: perspective(2500px) rotateY(100deg);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-flipRight.is-show {
  opacity: 1;
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0);
}

.u-zoomIn {
  opacity: 0;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-zoomIn.is-show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.u-zoomInUp {
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.6);
  transform: translateY(20px) scale(0.6);
  -webkit-transition: 1s 0s;
  transition: 1s 0s;
}

.u-zoomInUp.is-show {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

@font-face {
  font-family: 'GenShinGothic-P';
  src: url("../../assets/fonts/GenShinGothic-P-Bold.eot?q2nno2");
  src: url("../../assets/fonts/GenShinGothic-P-Bold.eot?q2nno2#iefix") format("embedded-opentype"), url("../../assets/fonts/GenShinGothic-P-Bold.ttf?q2nno2") format("truetype"), url("../../assets/fonts/GenShinGothic-P-Bold.woff?q2nno2") format("woff"), url("../../assets/fonts/GenShinGothic-P-Bold.svg?q2nno2#icon") format("svg");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GenShinGothic-P';
  src: url("../../assets/fonts/GenShinGothic-P-Medium.eot?q2nno2");
  src: url("../../assets/fonts/GenShinGothic-P-Medium.eot?q2nno2#iefix") format("embedded-opentype"), url("../../assets/fonts/GenShinGothic-P-Medium.ttf?q2nno2") format("truetype"), url("../../assets/fonts/GenShinGothic-P-Medium.woff?q2nno2") format("woff"), url("../../assets/fonts/GenShinGothic-P-Medium.svg?q2nno2#icon") format("svg");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GenShinGothic-P';
  src: url("../../assets/fonts/GenShinGothic-P-Regular.eot?q2nno2");
  src: url("../../assets/fonts/GenShinGothic-P-Regular.eot?q2nno2#iefix") format("embedded-opentype"), url("../../assets/fonts/GenShinGothic-P-Regular.ttf?q2nno2") format("truetype"), url("../../assets/fonts/GenShinGothic-P-Regular.woff?q2nno2") format("woff"), url("../../assets/fonts/GenShinGothic-P-Regular.svg?q2nno2#icon") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "RobotoCondensed";
  src: url("../../assets/fonts/RobotoCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "RobotoCondensed";
  src: url("../../assets/fonts/RobotoCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/*# sourceMappingURL=style.css.map */
