@charset "utf-8";
/* CSS Document */

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

body{
  width: 1200px;
  background-color: #0c2850; 
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height:170%;
  color: #fff;
  margin: 0 auto;
}

/*.wrapper{
  border: 1px solid #fff;
}*/

/* ゴシック体 */
h1{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

/* ギャラモン */
h2{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}

h3{
  font-size: 24px;
}

/*---------- 飾りの線 ----------*/
.line{
  display: block;
  margin: 80px auto 80px auto;
}

.line-reverse{
  display: block;
  margin: 80px auto 80px auto;
}

.vine{
  display: block;
  margin: 80px auto 80px auto;
}

/*---------- display:flexを適用 ----------*/
.box{
  display: flex;
  justify-content: center;
}

/*---------- aタグ ----------*/
a:link{text-decoration: none; color:#fff;}
a:visited{text-decoration: none; color:#fff;}
a:hover{text-decoration: none; color:#bcc2CC;}
a:active{text-decoration: none; /*color:#bfc8d0;*/}

/*--------------------------- PCレイアウト ---------------------------*/

/*---------- ヘッダー ----------*/
header{
  height: 105px;
  font-size: 14px;
  display: flex;
}

header img{
  margin: 5px 0 5px 10px;
}

header .box{
  font-size: 16px;
  display: flex;
  margin: 27px 0 15px 830px;
}

header .box p{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 2px 15px;
}

header .box .text{
  margin-right: 30px;
}

header .menu{
  display: flex;
  list-style: none;
  margin-left: 365px;
}

header nav ul .text{
  margin-right: 50px;
}

/*---------- メインビジュアル ----------*/
.main-visual{
  height: 650px;
  background-image: url(../img/top-mainvisual.png);
  background-position: -500px;
  margin-bottom: 100px;
}

.main-visual .h-e{
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2em;
  color: #0c2850;
  text-shadow: 1px 1px 1px #777;
  padding-top: 525px;
  padding-left: 590px;
}

.main-visual .h-j{
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #0c2850;
  text-shadow: 1px 1px 1px #777;
  padding-left: 690px;
  margin-top: 30px;
}

/*---------- コンテンツ01 ITSUMONEARのジュエリーについて ----------*/
.content01 h2{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 38px;
  padding-bottom: 10px;
  margin: 0 auto 30px auto;
}

.content01 p{
  font-size: 18px;
  text-align: center;
}


/*---------- コンテンツ02 ABOUT & パラジウムについて ----------*/
.content02 .box-top{
  display: flex;
  margin-bottom: 50px;
}

.content02 .box-top .text{
  width: 800px;
  padding: 100px 100px 50px 100px; 
}

.content02 .box .text{
  width: 800px;
  padding: 100px 100px 50px 100px; 
}

.content02 h3{
  margin-bottom: 30px;
}

.content02 .pr{
  margin-bottom: 50px;
}

.content02 .btn01{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 12px 40px;
  margin-left: 315px;
}

.content02 .btn02{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 12px 40px;
  margin-left: 325px;
}

/*---------- コンテンツ03 ブライダルリング ----------*/
.content03 h2{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 38px;
  padding-bottom: 10px;
  margin: 80px auto 30px auto;
}

.content03 h3{
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height:170%;
  text-align: center;
  margin-bottom: 30px;
}

.content03 .pr{
  text-align: center;
  margin-bottom: 30px;
}

.content03 img{
  margin-bottom: 20px;
}

.content03 .box .left .zoom {
  margin-bottom: 15px;
}

.content03 .box .box-bottom .zoom {
  margin-bottom: 15px;
}

.content03 .btn{
  font-size: 21px;
  text-align: center;
  padding-top: 5px;
  margin-right: 30px;
}

.content03 .box .maru{
  width: fit-content;
  border: 2px solid #fff;
  border-radius: 50%;
  padding:5px 10px;
}

.content03 .box .left{
  margin-right: 100px;
}

/* TOPページ---指輪画像のズーム設定 */
.left .zoom {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 450px;      /* 画像のサイズに合わせる */
  height: 450px;     /* 画像のサイズに合わせる */
  display: inline-block;
}

/* 画像にズーム効果 */
.left .zoom img {
  width: 100%;
  height: 100%;     /* 画像がコンテナにぴったり収まるように */
  transition: transform 0.3s ease-in-out;  /* ゆっくりズーム */
}

/* ホバー時に画像を拡大 */
.left .zoom:hover img {
  transform: scale(1.3); /* 画像をズーム */
}

/* (2 class=box-bottom)画像を囲む div に overflow: hidden を指定 */
.box-bottom .zoom {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 450px;      /* 画像のサイズに合わせる */
  height: 450px;     /* 画像のサイズに合わせる */
  display: inline-block;
}

/* 画像にズーム効果 */
.box-bottom .zoom img {
  width: 100%;
  height: 100%;     /* 画像がコンテナにぴったり収まるように */
  transition: transform 0.3s ease-in-out;  /* ゆっくりズーム */
}

/* ホバー時に画像を拡大 */
.box-bottom .zoom:hover img {
  transform: scale(1.3); /* 画像をズーム */
}

/*---------- コンテンツ04 サービスについて ----------*/
.content04 h2{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 38px;
  padding-bottom: 10px;
  margin: 0 auto 30px auto;
}

.content04 h3{
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height:170%;
  text-align: center;
  margin-bottom: 30px;
}

.content04 .box .left{
  margin-right: 45px;
}

.content04 .box img{
  margin-bottom: 20px;
}

.content04 .box p{
  font-size: 21px;
  text-align: center;
}

.content04 .box .btn{
  width:fit-content;
  padding: 10px 12px;
  margin-right:30px;
}

.content04 .box .yazirushi{
  width:fit-content;
  padding: 10px 12px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.content04 .box .left .zoom-service{
  margin-bottom: 15px;
}

/*　TOPページ---サービス画像のズーム設定 */
.content04 .box .left .zoom-service {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 299px;      /* 画像のサイズに合わせる */
  height: 299px;     /* 画像のサイズに合わせる */
  display: inline-block;
}

/* 画像にズーム効果 */
.content04 .box .left .zoom-service img {
  width: 100%;
  height: 100%;     /* 画像がコンテナにぴったり収まるように */
  transition: transform 0.3s ease-in-out;  /* ゆっくりズーム */
}

/* ホバー時に画像を拡大 */
.content04 .box .left .zoom-service:hover img {
  transform: scale(1.3); /* 画像をズーム */
}

/* (2 class=box-bottom)画像を囲む div に overflow: hidden を指定 */
.content04 .box .left .zoom-service {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 299px;      /* 画像のサイズに合わせる */
  height: 299px;     /* 画像のサイズに合わせる */
  display: inline-block;
}

/* 画像にズーム効果 */
.content04 .box .left .zoom-service img {
  width: 100%;
  height: 100%;     /* 画像がコンテナにぴったり収まるように */
  transition: transform 0.3s ease-in-out;  /* ゆっくりズーム */
}

/* ホバー時に画像を拡大 */
.content04 .box .left .zoom-service:hover img {
  transform: scale(1.3); /* 画像をズーム */
}


/*---------- コンテンツ05 CTAボタン２つ ----------*/
.content05{
  height: 400px;
  background-color: #3d5373;
  padding: 25px 50px 0 50px;
}

.content05 h2{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 38px;
  padding-bottom: 10px;
  margin: 0 auto 30px auto;
}

.content05 h3{
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height:170%;
  text-align: center;
  margin-bottom: 30px;
}

.access-btn{
  position:relative;
  z-index: 100;
  margin-right: 80px;
}

.access-btn .top{
  font-size: 14px;
  text-align: center;
  /*margin-top: 70px;*/ /* positionで調整 */
}

.content05 p{
  font-size: 21px;
  text-align: center;
}

.rsv-btn,
.access-btn{
  position:relative;
  z-index: 100;
}

.rsv-btn .top{
  font-size: 14px;
  text-align: center;
  /*margin-top: 70px;*/ /* positionで調整 */
}

.content05 .box .access-btn .btn_box,
.content05 .box .rsv-btn .btn_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}

.access-btn:hover img,
.rsv-btn:hover img{
  opacity: 0.8;
}

/*---------- フッター ----------*/
footer{
  font-size: 14px;
  height: 300px;
  display: flex;
  background-color: #939faa;
  padding: 50px 20px 50px 50px;
}

footer .left{
  list-style-type: none;
  margin-right: 60px;
}

footer .right{
  margin-top: 30px;
  margin-left: 350px;
}

footer .right ul{
  list-style-type: none;
}

footer .right img{
  margin-bottom: 20px;
  margin-left: 20px;
}

/*---------- 下層ページ：婚約指輪 ----------*/
.engagement-mv{
  height: 400px;
  background-image: url(../img/engage-visual.png);
}

.engagement-mv .h-e{
  width: fit-content;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #0c2850;
  text-shadow: 1px 1px 1px #909090;
  border-bottom: 1px solid #0c2850;
  padding: 180px 0 12px 0;
  margin: 0 auto 3px auto;
}

.engagement-mv .h-j{
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#0c2850;
  text-align: center;
}

/*---------- 下層ページ：結婚指輪 ----------*/
.wedding-mv{
  height: 400px;
  background-image: url(../img/wedding-visual.png);
}

.wedding-mv .h-e{
  width: fit-content;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #0c2850;
  text-shadow: 1px 1px 1px #909090;
  border-bottom: 1px solid #0c2850;
  padding: 180px 0 12px 0;
  margin: 0 auto 3px auto;
}

.wedding-mv .h-j{
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#0c2850;
  text-align: center;
}

/*---------- 下層ページ：婚約・結婚指輪　一覧 共通----------*/
.braidal h3{
  font-size: 18px;
  text-align: center;
  margin-bottom:80px;
}

.braidal h4{
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin-bottom: 15px;
}

.braidal .box p{
  width: fit-content;
  font-size: 21px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #fff;
}

.braidal .box-bottom p{
  width: fit-content;
  font-size: 21px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #fff;
}

.braidal .box{
  margin-bottom: 70px;
}

.braidal .box img{
  margin-bottom: 10px;
}

.braidal div .box-bottom img{
  margin-bottom: 10px;
}

.braidal .box-bottom{
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}

.braidal .left{
  margin-right:20px;
}

.braidal .btn{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 10px 35px;
  margin: 0 auto;
}

.braidal .rose{
  display: block;
  margin: 0 auto 15px auto;
}

/*　ブライダル---画像のズーム設定 */
.braidal .box .left .zoom-ring {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 285px;      /* 画像のサイズに合わせる */
  height: 285px;     /* 画像のサイズに合わせる */
  display: inline-block;
}

/* 画像にズーム効果 */
.braidal .box .left .zoom-ring img {
  width: 100%;
  height: 100%;     /* 画像がコンテナにぴったり収まるように */
  transition: transform 0.3s ease-in-out;  /* ゆっくりズーム */
}

/* ホバー時に画像を拡大 */
.braidal .box .left .zoom-ring:hover img {
  transform: scale(1.3); /* 画像をズーム */
}

/* (2 class=box-bottom)画像を囲む div に overflow: hidden を指定 */
.box-bottom .zoom-ring {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 285px;      /* 画像のサイズに合わせる */
  height: 285px;     /* 画像のサイズに合わせる */
  display: inline-block;
}

/* 画像にズーム効果 */
.box-bottom .zoom-ring img {
  width: 100%;
  height: 100%;     /* 画像がコンテナにぴったり収まるように */
  transition: transform 0.3s ease-in-out;  /* ゆっくりズーム */
}

/* ホバー時に画像を拡大 */
.box-bottom .zoom-ring:hover img {
  transform: scale(1.3); /* 画像をズーム */
}

/*---------- 下層ページ：指輪詳細ページ ----------*/
.detail{
  background-image: url(../img/wedding-engage-bg.png);
  background-repeat: no-repeat;
  background-position: 0 200px ;
}

.detail-box{
  display: flex;
  margin: 130px 0 80px 50px;
}

.detail .detail-box .text{
  padding-left: 80px;
}

.ring-name{
  font-size: 36px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 50px;
}

.ring-ccpt{
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.detail .detail-box .text .ring-name span{
  font-size: 14px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-left: 30px;
}

.detail .detail-box .text p{
  margin-bottom: 50px;
}

.detail .detail-box .text ul{
  list-style-type: none;
}

.detail .btn{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 12px 40px;
  margin: 0 auto;
}

/*---------- 下層ページ：ITSUMONEARについて ----------*/
.about-mv{
  height: 400px;
  background-image: url(../img/about-visual.png);
}

.about .rose{
  display: block;
  margin: 80px auto 80px auto;
}

.about-mv .h-e{
  width: fit-content;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  text-shadow: 1px 1px 1px #909090;
  border-bottom: 1px solid #fff;
  padding: 180px 0 12px 0;
  margin: 0 auto 3px auto;
}

.about-mv .h-j{
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#fff;
  text-align: center;
}

.about-h-e{
  width: fit-content;
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 170%;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.about .text{
  width: 600px;
  padding-left: 50px;
}

.about .box .pr{
 margin-bottom: 50px;
}

.about .text-02{
 width: 600px;
 margin-right: 380px;
}

.about .box .back-img{
  height: 550px;
  background-image: url(../img/about-2images-02.png);
  background-repeat: no-repeat;
  background-position: 370px 80px;
}

.about .box .btn{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 5px 20px;
}

.about .box .bottom{
  width: 400px;
  margin-left: 80px;
  margin-right: 100px;
}

.about .box .ring-img{
  margin-right: 80px;
}

/*---------- 下層ページ：パラジウムについて ----------*/
.palladium-mv{
  height: 400px;
  background-image: url(../img/palladium-visual.png);
}

.palladium-mv .h-e{
  width: fit-content;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #0c2850;
  text-shadow: 1px 1px 1px #909090;
  border-bottom: 1px solid #0c2850;
  padding: 180px 0 12px 0;
  margin: 0 auto 3px auto;
}

.palladium-mv .h-j{
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#0c2850;
  text-align: center;
}

.palladium .pr{
  text-align: center;
}

.palladium h2{
  width: fit-content;
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 170%;
  color: #fff;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
  margin: 0 auto 30px auto;
}

.palladium .merit{
  height: 564px;
  background-image: url(../img/palladium-metal.png);
}

/* メリット01 */
.palladium .text-01{
  width: 370px;
  margin-top: 65px;
  margin-right: 250px;
  margin-left: 80px;
}

.palladium .text-01 h3{
  margin-bottom: 20px;
}

/* メリット02 */
.palladium .text-02{
  width: 370px;
  margin-top: 65px
}

.palladium .text-02 h3{
  margin-bottom: 20px;
}

/* メリット03 */
.palladium .text-03{
  width: 370px;
  margin-top: 210px;
  margin-right: 250px;
  margin-left: 80px;
}

.palladium .text-03 h3{
  margin-bottom: 20px;
}

/* メリット04 */
.palladium .text-04{
  width: 370px;
  margin-top: 210px;
}

.palladium .text-04 h3{
  margin-bottom: 20px;
}

.palladium section .pr-bottom{
  text-align: center;
  margin-bottom: 30px;
}

.palladium .img-bottom{
  display: block;
  margin: 0 auto;
}

.palladium .rose{
  display: block;
  margin: 80px auto 80px auto;
}

/*---------- 下層ページ：サービスについて ----------*/
.service-mv{
  height: 400px;
  background-image: url(../img/palladium-visual.png);
}

.service-mv .h-e{
  width: fit-content;
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  color: #0c2850;
  text-shadow: 1px 1px 1px #909090;
  border-bottom: 1px solid #0c2850;
  padding: 180px 0 12px 0;
  margin: 0 auto 3px auto;
}

.service-mv .h-j{
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#0c2850;
  text-align: center;
}

.service section .pr{
  text-align: center;
}

/* アフターケア */
#link-aftercare{
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#fff;
  text-align: center;
  margin-bottom: 50px;
}

.box-2l{
  width: 285px;
  display: flex;
  border: 1px solid #fff;
  padding: 43px 20px 10px 40px;
  margin-bottom: 5px;
}

.box-3l{
  width: 285px;
  display: flex;
  border: 1px solid #fff;
  padding: 40px 20px 10px 40px;
  margin-bottom: 5px;
}

.aftercare .mini-rose{
  height: 36px;
  margin-right: 20px;
}

.aftercare h3{
  font-size: 16px;
  padding-top: 5px;
}

.aftercare .text-2l{
  width: 555px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 30px 20px 30px 20px;
  margin-bottom: 5px;
}

.aftercare .text-3l{
  width: 555px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px;
  margin-bottom: 5px;
}

.aftercare .text-2l span, .aftercare .text-3l span{
  font-size: 14px;
  color: #939faa;
}

.aftercare .bottom{
  text-align: center;
  margin-top: 10px;
  margin-bottom: 200px;
}

/* オリジナル刻印 */
#link-kokuin{
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#fff;
  text-align: center;
  margin-bottom: 50px;
}

.kokuin .box .text{
  width: px;
  padding:60px 150px 100px 150px;
}

.kokuin .box .text .s-line-t{
  margin-bottom: 80px;
}

.kokuin .box .text .s-line-b{
  margin-top: 80px;
}

.kokuin .box{
  margin-bottom: 200px;
}


/* 品質保証 */
#link-hosyo{
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color:#fff;
  text-align: center;
  margin-bottom: 50px;
}

.hosyosyo{
  width: 550px;
  padding: 80px 80px 0 50px;
}

.hosyosyo h3{
  width: fit-content;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.kanteisyo{
  width: 550px;
  padding: 80px 50px 0 80px;
}

.kanteisyo h3{
  width: fit-content;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.hosyo .box{
  margin-bottom: 150px;
}

/*---------- 下層ページ：よくある質問 ----------*/
.faq .h-j{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 12px;
  margin: 180px auto 100px auto;
}

.faq .box{
  border-top: 1px solid #939faa;
  padding-top: 15px;
}

.faq .about{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
}

.faq .box .about-box{
  width: 350px;
  padding-top: 10px
}

.faq .box .qa{
  width: 850px;  
}

/*  Questionの部分  */
.accordion-outer{
  cursor: pointer; /* クリックできます */
  display: flex; /* タイトル（Q）と矢印に対して */
  align-items: center;
  justify-content: space-between;
}

/*  Answerの部分  */
.accordion-inner{
  display: none;
  border: 1px solid #fff;
  padding: 20px;
  margin-bottom: 20px;
}

.accordion-outer:after{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(45deg); 
  transform: rotate(45deg); /* 下向きの矢印 */
  transition: 0.4s; /* 矢印のタイミング */
}

.open:after{
  -webkit-transform: rotate(225deg); 
  transform: rotate(225deg); /* 上向きの矢印 */
}

.faq-q{
  border-bottom: 1px solid #939faa;
  margin-bottom: 15px;
}

.faq-a{
  margin-bottom: 50px;
}

.faq-a-02{
  margin-bottom: 20px;
}

.faq .box .qa .btn{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  padding: 3px 25px;
  margin-bottom: 50px;
}

/*---------- 下層ページ：アクセス情報 ----------*/
.access .h-e{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px;
  padding-bottom:15px;
  margin: 180px auto 10px auto;
}

.access .h-j{
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color:#fff;
  text-align: center;
}

.map{
  text-align: center;
  margin-bottom: 100px;
}

.access .shop-img{
  height: 521px;
  margin-right: 105px; 
}

.access .shop-01{
  width: fit-content;
  background-color: #3d5373;
  font-size: 21px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 3px 15px;
  margin-bottom: 10px;
}

.shop-info{
  width: 445px;
}

.shop{
  border-bottom: 1px solid #939faa;
  font-size: 16px;
  margin-bottom: 5px;
}

.info{
  margin-bottom: 30px;
}

.info span{
  font-size: 21px;
  font-weight: 500;
}

.access .line{
  display: block;
  margin: 80px auto;
}

.access .vine{
  display: block;
  margin: 80px auto;
}

/*.access-rsv-btn{
  width: 501px;
  height: 200px;
  background-image: url(../img/cv-btn-visit.png);
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto;
}

.access-rsv-btn .top{
  font-size: 14px;
  padding-top: 70px;
}*/



/*---------- 下層ページ：来店予約 ----------*/
.reservation .h-j{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 12px;
  margin: 180px auto 100px auto;
}

.r-h-01{
  font-size: 24px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-bottom: 25px;
}

.r-p-01{
  font-size: 21px;
  text-align: center;
  margin-bottom: 5px;
}

.r-p-02{
  text-align: center;
  margin-bottom: 40px;
}

.step{
  display: block;
  margin: 0 auto 50px auto;
}

.r-box-03{
  width: 900px;
  margin: 0 auto 120px auto; 
}

.r-h3-01{
  font-size: 18px;
  background-color: #939faa;
  padding: 0 0 3px 10px;
  margin-bottom: 15px;
}

.r-p-03{
  margin-bottom: 7px;
}

.r-p-03 span{
  width: fit-content;
  background-color: #3d5373;
  padding: 1px 3px
}

#visit-date{
  width: 365px;
  height: 28px;
  color: #0c2850;
  font-weight: 500;
  background-color: #fff;
  padding-left: 20px;
  margin-bottom: 15px;

  font-family: "Noto Sans JP", serif;
}

#visit-time{
  width: 365px;
  height: 28px;
  color: #0c2850;
  font-weight: 500;
  background-color: #fff;
  padding-left: 20px;
  margin-bottom: 35px;

  font-family: "Noto Sans JP", serif;
}

.r-white{
  width: 365px;
  height: 30px;
  background-color: #fff;
}

.r-hosoku{
  font-size: 14px;
  color: #939faa;
  margin-bottom: 20px;
}

.r-box-05{
  margin-bottom: 35px;
}

.r-white-02{
  margin-bottom: 60px;
}

input::placeholder{
  font-family: "Noto Sans JP", serif;
}

.r-kakunin-btn{
  width: fit-content;
  border: 1px solid #fff;
  background-color: #3d5373;
  font-size: 18px;
  padding: 10px 100px;
  margin: 0 auto;

  display: flex;
  align-items: center;

  color:#fff;
  font-family: "Noto Sans JP", serif;
}

.rsv-access-btn .top{
  font-size: 14px;
  padding-top: 70px;
}

/*---------- アクセス情報と来店予約ページの
　　　　　　　コンテンツ05 CTAボタン２つ ----------*/
.access_rsv_content05{
  height: 400px;
  background-color: #3d5373;
  padding: 25px 50px 0 50px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.access_rsv_content05 h2{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 38px;
  padding-bottom: 10px;
  margin: 0 auto 30px auto;
}

.access_rsv_content05 h3{
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height:170%;
  text-align: center;
  margin-bottom: 30px;
}

.access_rsv_content05 .access_rsv_box .access_rsv_btn{
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;

  position:relative;
  z-index: 100;
}

.access_rsv_content05 .access_rsv_box .access_rsv_btn .mr{
  margin-right: 0; /* ほかのページでのmargin-rightを打ち消す */
}

.access_rsv_content05 .access_rsv_box .access_rsv_btn p{
  font-size: 21px;
  text-align: center;
}

.access_rsv_content05 .access_rsv_box .access_rsv_btn .btn_box{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}

.access_rsv_content05 .access_rsv_box .access_rsv_btn:hover img{
  opacity: 0.8;
}

/*---------- 下層ページ：プライバシーポリシー ----------*/
article{
  width: 1000px;
  margin: 0 auto 80px auto; 
 }

 .policy .h-j{
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 28px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 12px;
  margin: 180px auto 100px auto;
}

.policy article .line{
  display: block;
  margin: 0 auto 80px auto;
}

.policy-h{
  width: fit-content;
  border-bottom: 1px solid #939faa;
  font-size: 21px;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.policy-p01{
  margin-bottom: 15px;
}

.policy-li01{ 
  text-indent: 2rem;
  list-style-type: none;
}

.policy-li02{
  text-indent: 4rem;
  list-style-type: none;
}

article section{
  margin-bottom: 50px;
}

/*---------------------------------------- SPレイアウト ---------------------------------------- */

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

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



}