@charset "UTF-8";
body {
    font-family: 'Sawarabi Mincho', serif;
    background-color: #EAEAEA;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2b2b2b;
}
.btn a  {
    width: 350px;
    display: block;
    border-radius: 60px;
    background-color: #FFFDCC;
    text-align: center;
    padding-top: 20px;
    margin: 10% auto;
    padding-bottom: 20px;
    color: #2B2B2B;
    text-decoration: none;
    text-shadow: 0px 0px;
    -webkit-box-shadow: 1px 1px 1px #2B2B2B;
    box-shadow: 1px 1px 1px #2B2B2B;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1rem;
}
.btn a:hover {
    opacity: 0.8;
}
.openbtn {
    display: none;
}
.header-nav  {
    width: 100vw;
    background-color: rgba(255,255,255,0.50);
    display: flex;
    justify-content: space-between;
    top: 0px;
    position: fixed;
    z-index: 100;
}
.header-navlist {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    white-space: nowrap;
    padding-right: 1%;
    padding-left: 1%;
}
.header-navlist a {
    padding: 10px;
    text-decoration: none;
    color: #000000;
    border-radius: 10px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.header-navlist a:hover {
    box-shadow:0 6px 14px rgba(0, 0, 0, 0.24);
   transform:translate(0, -2px);
}
header .nav-icon {
    display: flex;
    justify-content: center;
    margin-left: 1%;
}
.nav-icon img {
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 5px;
    width: 50px;
    height: 50px;
    margin-top: 5px;
    margin-left: 10px;
    margin-right: 0px;
    border-radius: 10px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.nav-icon img:hover {
   box-shadow:0 6px 14px rgba(0, 0, 0, 0.24);
   transform:translate(0, -2px);
}
.openbtn {
    position: relative;
    background-color: #000000;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
    margin-top: 10px;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;/*animation*/
    position: absolute;
    left: 14px;
    height: 3px;
    width: 45%;
    border-radius: 2px;
    background-color: #FFFFFF
}
.openbtn span:nth-of-type(1) {
    top: 15px;
}
.openbtn span:nth-of-type(2) {
    top: 23px;
}
.openbtn span:nth-of-type(3) {
    top: 31px;
}
/*active class付与で回転*/
.openbtn.open span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}
.openbtn.open span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.open span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
.main-image {
    background-repeat: no-repeat;
    background-position: left 0%;
    background-size: auto auto;
    background-image: url(../image/main.png);
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    position: relative;
    opacity: 1;
    z-index: -1;
}
.main-image h1 {
    margin-top: 0;
    margin-right: 2%;
    margin-left: auto;
    margin-bottom: 0;
    max-width: 370px;
    position: absolute;
    right: 10%;
    top: 15%;
}
.main-image h2    {
    text-align: right;
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    color: #000000;
    padding-right: 2%;
    white-space: nowrap;
    position: absolute;
    right: 2%;
    bottom: 0px;
}
section {
    margin-top: 150px;
    margin-right: auto;
    margin-left: auto;
    width: 90%;
    padding-bottom: 50px;
    padding-left: 0px;
}
#about {
    width: 80%;
    padding: 0 5%;
    background-color: rgba(255,255,255,0.20);
}
.about-name h2 {
    font-size: 2rem;
}
.about-name h3 {
    margin-top: 2%;
    margin-bottom: 2%;
}
.about-top  {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    align-items: center;
    padding-bottom: 20px;
}
#about p {
    text-align: center;
    line-height: 3;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    margin: 0 auto;
    padding: 5px 0;
    width: 60%;
}
#about span {
    font-weight: bold;
    color: #FD5858;
}
.about-name {
    text-align: center;
    width: 40%;
}
#about img  {
    width: 300px;
}
.keireki  {
    line-height: 3;
    padding: 3% 0;
}
.keireki li {
    list-style-type: disc;
    margin-left: 2rem;
}
.dekigoto {
    margin-top: 5%;
}
.dekigoto h3 {
    margin-bottom: 2%;
}
.dekigoto dt {
    font-style: italic;
    font-weight: bold;
    background-color: rgba(0,0,0,0.35);
    padding-left: 1rem;
    padding-top: 3px;
    padding-bottom: 3px;
}
.dekigoto dd {
    padding-top: 30px;
    padding-right: 0;
    padding-left: 1rem;
    padding-bottom: 30px;
    line-height: 3.5;
}



/*出来事アコーディオン*/

.dekigoto-title{
    text-align: center;
    position: relative;
    transition: all .7s ease;
    cursor: pointer;
    padding-bottom: 30px;
    padding-top: 30px;
}
.dekigoto-title::before, .dekigoto-title::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 5px;
    background-color: #000000;
}
.dekigoto-title::before {
    bottom: 15px;
    left: 50%;
    transform: rotate(0deg) translateX(-50%);
    transition: all .7s ease;
}
.dekigoto-title::after {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transition: all .7s ease;
}
/*closeのクラスがついたら*/
.dekigoto-title.close::before {
    transform:  translateX(-50%) rotate(45deg);
    transition: all .7s ease;
}
.dekigoto-title.close::after {
    transform: translateX(-50%) rotate(-45deg);
    transition: all .7s ease;
}
/*アコーディオンで現れるエリア*/
.dekigoto-box {
    display: none;
}

.title {
    display: flex;
    align-items: baseline;
    border-bottom: 2px solid #2B2B2B;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 4rem;
    margin-bottom: 10%;
}
.title p {
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 1.2rem;
    font-weight: normal;
}
.title-right {
    display: flex;
    align-items: baseline;
    border-bottom: 2px solid #2B2B2B;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 4rem;
    margin-bottom: 10%;
    flex-direction: row-reverse;
}
.title-right p {
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Sawarabi Mincho', serif;
    font-size: 1.2rem;
    font-weight: normal;
}
.container1  {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.container1 img , .container2 img  {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    width: 40%;
    height: auto;
}
.container2 {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
}
.what-text {
    padding-top: 5%;
    padding-bottom: 5%;
    display: none;
}
.checklist-container {
    display: none;
}

.rec-list li{
    position: relative;
    line-height: 3;
  }
 
 .rec-list li:before {
    content: "";
    position: absolute;
    left: -2rem;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform:  translateY(-50%) rotate(50deg);
    width: 10px;
    height: 15px;
    border-right: 5px solid #2b2b2b;
    border-bottom: 5px solid #2b2b2b;
    right: auto;
    top: 50%;
  }
.point1, .point2 {
    text-align: center;
    width: 45%;
    background-color: rgba(255,255,255,0.20);
    padding-bottom: 3%;
}
.point1 p, .point2 p {
    line-height: 3;
}
#point span {
    color: #FFF690;
    font-size: 3rem;
    font-style: italic;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(25,25,25,1.00);
}
#point img {
    border-radius: 50px;
    margin: 3% 0;
}
.flow {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10%;
    background-color: rgba(255,255,255,0.20);
}
.flow img {
    padding: 10px;
    background-color: #FFFFFF;
    width: 300px;
    height: auto;
}


.flow-text h3 {
    width: 200px;
    text-align: center;
    position: relative;
    padding-top: 0.25em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 0.25em;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}
.flow-text h3:before, .flow-text h3:after{
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: black;
}
.flow-text h3:before {
  left: 7px;
}
#flow .flow-text p {
    margin-top: 10%;
    line-height: 2;
    text-align: left;
}
.flow-text {
    padding-top: 3%;
    padding-right: 5%;
    padding-left: 5%;
    padding-bottom: 5%;
}
.flow-text h3:after {
    right: 7px;
}
#flow p {
    margin-top: 5%;
    text-align: center;
}
.menu-icons {
    display: flex;
    justify-content: space-around;
}
.price-list {
    margin-top: 10%;
    align-items: center;
    margin-bottom: 5%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.price-list table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px 0px;
}
.price-list th  {
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    opacity: 1;
    border-bottom: 1px solid #000000;
    border-top: 1px solid #000000;
}
.price-list td {
    text-align: left;
    padding-left: 10%;
    padding-top: 5%;
    padding-bottom: 5%;
    vertical-align: middle;
    font-style: italic;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}
.price-list td .bikou {
    color: #A91500;
}
#price p {
    text-align: center;
    font-size: 1.rem;
}
#price p span {
    color: #FD5858;
    font-size: 3rem;
    letter-spacing: 1.5px;
    padding: 0 1%;
    background-color: rgba(255,251,191,0.38);
}
#example p {
    text-align: center;
}

/* slick css*/
.slider {
    margin: 0 auto;
    width: 94%;
}
.slider li img {
    max-width: 400px;
    height: auto;
}
.slider .slick-slide {
    transform: scale(0.8);
    transition: all .5s;
    opacity: 0.5;
}
.slider .slick-slide.slick-center{
    transform: scale(1);
    opacity: 1;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 5px solid #000000;/*矢印の色*/
    border-right: 5px solid #000000;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットの設定*/
.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}
.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dots button{
    color: transparent;
    width: 10px;/*ドットのサイズ*/
    height: 10px;/*ドットのサイズ*/
    display: block;
    border-radius: 50%;
    background-color: #FFFFFF;/*ドットの色*/
    cursor: pointer;/*マウスカーソルを指マークに*/
    border: none;
}
.slick-dots .slick-active button{
    background: #2b2b2b;/*ドットの現在表示の色*/
}


/*アコーディオン*/
.accordion-area{
    list-style: none;
    width: 90%;
    margin: 0 auto;
}
.accordion-area li {
    margin: 10px 0;
}
.accordion-area .bigbox {
    border: 1px solid #2b2b2b;
}
/*質問タイトル*/
.question {
    position: relative;
    cursor: pointer;
    font-weight: bold;
    padding-top: 3%;
    padding-left: 3%;
    padding-bottom: 3%;
    transition: all .5s ease;
}
/*アイコンの＋と−*/
.question::before, .question::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 5px;
    background-color: #333;
}
.question::before {
    top: 48%;
    right: 3%;
    transform: rotate(0deg);
}
.question::after {
    top: 48%;
    right: 3%;
    transform: rotate(90deg);
}
/*closeというクラスがついたら形状変化*/
.question.close::before {
    transform: rotate(45deg);
}
.question.close::after {
    transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
    display: none;
    background: #ccc;
    margin: 0 3% 3% 3%;
    padding: 3%;
    word-wrap: break-word;
}
.box p {
    padding-left: 1rem;
    text-indent: -1rem;
}
#tint {
    text-align: center;
}
#tint p {
    margin: 5% 0;
}
#tint .title p {
    margin-top: 0;
    margin-right: 0;
    margin-left: 20px;
    margin-bottom: 0;
}
#tint .tint-link a {
    text-decoration: none;
    padding: 2% 4%;
    color: #FFFFFF;
    background-color: #B20713;
}
#tint .tint-link a:hover {
    color: #B20713;
    background-color: #FFFFFF;
}
.map {
    display: flex;
    justify-content: center;
    margin: 15% 0;
    align-items: center;
}
.map-add {
    margin-left: 2%;
    padding-bottom: 0px;
}
.map h3 {
    text-decoration: underline;
}
.map p {
    line-height: 3;
}
.map-add .walk:before {
    content: "";
    background-image: url(../image/train-subway-solid.svg);
    width: 1rem;
    height: 1rem;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 5px;
    vertical-align: baseline;
}
footer {
    text-align: center;
    padding-bottom: 5%;
    padding-top: 15%;
}
.footer-nav .nav-icon {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: -1%;
    margin-bottom: 0px;
}
.footer-logo {
    margin: 0 auto;
    max-width: 370px;
}
.footer-navlist {
    display: flex;
    justify-content: center;
    margin-top: 3%;
}
.footer-navlist a {
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    color: #000000;
    border-radius: 10px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.footer-navlist a:hover {
    background-color: rgba(255,255,255,0.26);
    -webkit-box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24);
    transform: translate(0, -2px);
}



@media screen and (max-width:1000px){
body {
    font-size: 0.9rem;
}
img {
    width: 100%;
    height: auto;
}
.btn a {
    font-size: 0.8rem;
    width: 300px;
}
.openbtn {
    display: block;
}
.header-navlist a:hover {
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}
.header-navlist {
    display: none;
    padding-top: 10%;
    margin-left: auto;
    text-align: right;
}
.header-navlist a {
    padding: 5% 0;
    display: block;
}
.main-image h1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.main-image h2 {
    display: none;
}
.about-top {
    display: block;
    text-align: center;
}
#about p {
    width: 100%;
}
.about-name {
    width: 100%;
}
#about img {
    width: 30%;
}
.title {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    font-size: 3rem;
}
.title-right {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    font-size: 3rem;
}
.title p {
    font-size: 1rem;    
}
.title-right p {
    font-size: 1rem;     
}
.container2  {
    display: block;
}
#recommend .container1 {
    width: 70%;
    margin: 0 auto;
    padding: 5% 5% 5% 0;
    background-color: rgba(255,255,255,0.20);
}
.rec-list li:before {
    width: 8px;
    height: 13px;
}
.point1, .point2 {
    margin: 0 auto;
    width: 90%;
}
.point2 {
    margin-top: 3%;
}
.what-text  {
    background-image: url(../image/whatis.png);
    background-size: cover;
    width: 90%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: relative;
    background-position: center 0%;
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto;
    height: 700px;
    text-align: center;
}
.what-text p {
    position: absolute;
    bottom: 0px;
    left: 50%;
    color: #FFFFFF;
    transform: translateX(-50%);
    width: 95%;
    line-height: 4;
    display: block;
    text-shadow: 1px 1px 1px #000000;
}

.checklist-container  {
    background-image: url(../image/checklist.png);
    width: 90%;
    text-align: center;
    display: block;
    height: 700px;
    background-size: cover;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: relative;
    background-position: center 0%;
    margin: 0 auto;
    background-repeat: no-repeat;
}
.checklist-text  {
    position: absolute;
    bottom: 0px;
    left: 50%;
    color: #FFFFFF;
    transform: translateX(-50%);
    line-height: 4;
    display: block;
    text-align: left;
    text-shadow: 1px 1px 1px #000000;
    white-space: nowrap;
}


.container1 img   {
    display: none;
}

.rec-list  {
    margin: 0px auto;
    transform: translateX(2rem);
}
.point2 {
    margin-top: 10%;
}
.flow-text h3 {
    margin: 0 auto;
}
.flow img {
    display: none;
}
.flow {
    background-repeat: no-repeat;
    background-position: center 0%;
    border: 15px solid white;
    background-size: cover;
}
.map {
    /* [disabled]display: block; */
    text-align: center;
    flex-direction: column-reverse;
}
.map-add {
    margin-bottom: 3%;
}
iframe {
    width: 100%;
}
}

@media screen and (max-width:600px){
body {
    font-size: 0.7rem;
}
.btn a {
    font-size: 0.7rem;
    width: 250px;
    padding: 10px;
}
.about-name h2 {
    font-size: 1.5rem;
}
#price p span {
    color: #FD5858;
    font-size: 1.5rem;
    padding: 0 1%;
    letter-spacing: 1.5px;
    background-color: rgba(255,251,191,0.38);
}
.title {
    font-size: 1.5rem;
}
.title p {
    font-size: 0.8rem;
}
.title-right {
    font-size: 1.5rem;
}
.title-right p {
    font-size: 0.8rem;
}
#about p {
    line-height: 2.5;
}
.dekigoto dd {
    padding: 10px 1rem;
}
.checklist-container  {
    width: 100%;
    height: 500px;
}
.rec-list li:before {
    width: 5px;
    height: 10px;
}
.checklist-text {
    line-height: 4;
    font-size: 0.6rem;
}
.what-text {
    width: 100%;
    height: 500px;
}
.what-text p {
    line-height: 3;
    font-size: 0.8rem;
}
.slider li img {
    width: 60%;
    margin: 0 auto;
    height: auto;
}
.price-list td .bikou {
    font-size: 0.5rem;
}
#price p span {
    font-size: 1.2rem;
}
.slick-dots button{
    display: none;
}
.accordion-area {
    width: 100%;
}
.footer-navlist {
    display: block;
}
.footer-navlist li {
    margin: 5%;
}
.footer-logo {
    display: none;
}
}
