 @charset "UTF-8";
 /*
* Theme Name: 龍カフェ
* Author:
* Version:
* Description: 
*/
 * {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
 }
 *:before, *:after {
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   box-sizing: border-box;
 }
 html {
   font-size: 62.5%;
   scroll-behavior: smooth;
 }
 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, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   outline: 0;
   font-style: normal;
   font-weight: normal;
   vertical-align: baseline;
   background: transparent;
 }
 body {
   line-height: 1;
 }
 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
   display: block;
 }
 ul {
   list-style: none;
 }
 blockquote, q {
   quotes: none;
 }
 blockquote:before, blockquote:after, q:before, q:after {
   content: '';
   content: none;
 }
 a {
   margin: 0;
   padding: 0;
   font-size: 100%;
   vertical-align: baseline;
   background: transparent;
 }
 /* change colours to suit your needs */
 ins {
   background-color: #ff9;
   color: #000;
   text-decoration: none;
 }
 /* change colours to suit your needs */
 mark {
   background-color: #ff9;
   color: #000;
   font-style: italic;
   font-weight: bold;
 }
 del {
   text-decoration: line-through;
 }
 abbr[title], dfn[title] {
   border-bottom: 1px dotted;
   cursor: help;
 }
 table {
   border-collapse: collapse;
   border-spacing: 0;
 }
 /* change border colour to suit your needs */
 hr {
   display: block;
   height: 1px;
   border: 0;
   border-top: 1px solid #cccccc;
   margin: 1em 0;
   padding: 0;
 }
 input, select {
   vertical-align: middle;
 }
 /********【画像設定】********/
 img {
   max-width: 100%;
   height: auto;
   border: none;
 }
 body {
   font-size: 1.6rem;
   font-weight: 600;
   font-optical-sizing: auto;
   line-height: 1.8;
   color: #323232;
   letter-spacing: 0.0em;
   min-width: 1000px;
   font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
 }
 main {
   overflow: hidden;
 }
 @media only screen and (max-width: 800px) {
   body {
     font-size: 1.3rem;
     min-width: 0;
     line-height: 1.6;
   }
 }
 /********【a:link a:hover設定】********/
 a:link, a:visited {
   color: #000;
   text-decoration: none;
 }
 /********【PC/SP表示設定】********/
 @media only screen and (max-width: 800px) {
   .hidden-s {
     display: none !important;
   }
 }
 @media only screen and (min-width: 801px) {
   .hidden-l {
     display: none !important;
   }
 }
 /********【サイト幅設定（meta内のviewportも同様の数値を記入　※960px以下の場合は960pxに設定するiPad向け）】********/
 .container {
   max-width: 1040px;
   margin: auto;
   padding: 0 20px;
 }
 .container:before, .container:after {
   content: " ";
   display: table;
 }
 .container:after {
   clear: both;
 }
 @media only screen and (max-width: 800px) {
   .container {
     width: 100%;
   }
 }
 /***************************/
 /********【ヘッダー】********/
 /***************************/
 #link01, #link02, #link03, #link04, #link05, #link06, #link07, #link08, #link09, #link10 {
   margin-top: -120px; /* 固定ナビの高さ分のネガティブマージン */
   padding-top: 120px; /* 打ち消し用のパディング */
 }
 @media only screen and (max-width: 800px) {
   #link01, #link02, #link03, #link04, #link05, #link06, #link07, #link08, #link09, #link10 {
     margin-top: -80px; /* 固定ナビの高さ分のネガティブマージン */
     padding-top: 80px; /* 打ち消し用のパディング */
   }
 }
 .no-link {
   pointer-events: none;
 }
 /***************************/
 /********【header】********/
 /***************************/
 .head_ar {
   width: 100%;
   padding: 10px 10px 10px 50px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 80px;
   background: #f3eee1;
 }
 .head_ar .logo {
   padding: 10px 0 0;
   max-width: 200px;
 }
 .head_ar .nav_ar ul {
   display: flex;
   justify-content: flex-end;
   align-items: center;
 }
 .head_ar .nav_ar ul li a {
   display: block;
   font-size: 1.6rem;
   font-weight: 600;
   padding: 10px 20px;
   transition: .3s;
   position: relative;
   overflow: hidden;
 }
 .head_ar .nav_ar ul li a:before {
   position: absolute;
   content: "";
   background: #ac2019;
   width: 0px;
   height: 2px;
   left: 50%;
   bottom: 0;
   transform: translate(-50%, 0%);
   transition: .3s;
 }
 .head_ar .nav_ar ul li a:hover:before {
   width: 50px;
 }
 /*ナビ出現*/
 .head_ar.clone-nav {
   position: fixed;
   top: 0;
   left: 0;
   z-index: 10;
   width: 100%;
   transition: .3s;
   transform: translateY(-100%);
 }
 .head_ar.is-show {
   transform: translateY(0);
 }
 /***************************/
 /********【フッター】********/
 /***************************/
 .foot_ar {
   width: 100%;
   background: #074137;
   padding: 60px 0 10px;
   text-align: center;
   color: #fff;
   position: relative;
 }
 .foot_ar a {
   color: #fff;
 }
 .foot_ar .logo {
   max-width: 204px;
   margin: 0 auto 40px;
 }
 .foot_ar .nav_ar ul {
   display: flex;
   justify-content: center;
   align-items: center;
   align-content: start;
   flex-direction: row;
   flex-wrap: wrap;
 }
 .foot_ar .nav_ar ul li a {
   display: block;
   padding: 0.5em 1.25em;
   letter-spacing: 0.1em;
   position: relative;
 }
 .foot_ar .nav_ar ul li a:before {
   position: absolute;
   content: "";
   background: #fff;
   width: 0px;
   height: 2px;
   left: 50%;
   bottom: 0;
   transform: translate(-50%, 0%);
   transition: .3s;
 }
 .foot_ar .nav_ar ul li a:hover:before {
   width: 50px;
 }
 .foot_ar .nav_ar ul li a:after {
   position: absolute;
   content: "|";
   right: 0px;
 }
 .foot_ar .nav_ar ul li:last-child a:after {
   content: "";
 }
 .foot_ar .ico {
   width: 36px;
   margin: 40px auto 50px;
 }
 .foot_ar .btn {
   margin: 0 auto 50px;
 }
 .foot_ar .btn a {
   width: 260px;
   display: block;
   border: 1px solid #fff;
   padding: 15px 20px;
   border-radius: 10px;
   position: relative;
   margin: auto;
   transition: .3s;
 }
 .foot_ar .btn a:after {
   position: absolute;
   content: "";
   background: url("images/shared/btn_arr_wh.svg") no-repeat center center/cover;
   width: 7px;
   height: 14px;
   right: 20px;
   top: 52%;
   transform: translate(0%, -50%);
 }
 .foot_ar .btn a:hover {
   background: #ac2019;
 }
 .foot_ar .copy {
   font-size: 1.2rem;
   text-align: center;
 }
 .foot_ar .page_top_btn {
   position: absolute;
   top: 0;
   right: 5vw;
   transform: rotate(90deg);
 }
 .foot_ar .page_top_btn a {
   display: block;
   padding: 78px 10px;
   position: relative;
 }
 .foot_ar .page_top_btn a:before {
   position: absolute;
   content: "";
   background: #fff;
   width: 40px;
   height: 1px;
   margin: 0 0 0 -45px;
   left: 0px;
   top: 50%;
   transform: translate(0%, -50%);
 }
 /***************************/
 /********【index】********/
 /***************************/
 /***************************/
 /********【main_ar】********/
 /***************************/
 .main_ar {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #f3eee1;
   position: relative;
   padding: 0 0 100px;
 }
 .main_ar .main_txt_ar {
   margin: 0 0 0 10vw;
   width: 40vw;
   position: relative;
   z-index: 2;
 }
 .main_ar .ttl_ar {
   margin: 0 0 20px;
 }
 .main_ar .ttl {
   margin: 0 0 20px;
   font-family: "Shippori Mincho", serif;
   font-size: 3.5vw;
   font-weight: 600;
   background: #fff;
   padding: 0 20px 5px;
   line-height: 1.3;
   letter-spacing: 0.05em;
   display: inline-block;
 }
 .main_ar .txt {
   margin: 0 0 80px;
   /* 文字縁取り */
   text-shadow:
     0 1px 0 #f3eee1, 1px 0 0 #f3eee1, 0 -1px 0 #f3eee1, -1px 0 0 #f3eee1, -1px -1px 0 #f3eee1, 1px -1px 0 #f3eee1, -1px 1px 0 #f3eee1, 1px 1px 0 #f3eee1;
 }
 /****/
 .main_ar .main_img_ar {
   width: 80vw;
   margin: 0 0 0 -20vw;
   position: relative;
   z-index: 1;
 }
 .main_ar .main_img img {
   /*max-height: 600px;*/
 }
 .main_ar .ttl_img {
   position: absolute;
   z-index: 3;
   bottom: 25px;
   left: 0%;
   right: 0;
   text-align: center;
   margin: auto;
   max-width: 625px;
   width: 45vw;
 }
 @media only screen and (max-width: 800px) {
   .main_ar {
     padding: 60px 0 50px;
     display: block;
   }
   .main_ar .main_txt_ar {
     margin: 0 0 0 20px;
     width: 100%;
   }
   .main_ar .ttl_ar {
     margin: 50px 0 0px -15px;
     position: absolute;
     display: flex;
     justify-content: flex-start;
   }
   .main_ar .ttl {
     margin: 0 7px 0px;
     font-size: 3.6rem;
     padding: 10px 3px;
     writing-mode: vertical-rl;
     display: inline;
     vertical-align: top; /* 上揃えを指定 */
   }
   .main_ar .ttl:nth-child(2) {
     max-height: 310px;
   }
   .main_ar .txt {
     margin: 0 0 30px;
     text-align: center;
   }
   .main_ar .bt {
     text-align: center;
   }
   /****/
   .main_ar .main_img_ar {
     width: 90vw;
     margin: 0 0 60px 10vw;
     text-align: right;
   }
   .main_ar .main_img img {
     /*max-height: 600px;*/
   }
   .main_ar .ttl_img {
     bottom: 200px;
     width: 80vw;
   }
 }
 /***************************/
 /********【common】********/
 /***************************/
 .common_ttl_img {
   margin: 0 0 30px;
   text-align: center;
 }
 .common_ttl {
   font-size: 3.0rem;
   font-weight: 700;
   margin: 0 0 30px;
   text-align: center;
   line-height: 1.5em;
 }
 .common_txt {
   margin: 0 0 40px;
   text-align: center;
 }
 @media only screen and (max-width: 800px) {
   .common_ttl_img {
     margin: 0 0 20px;
   }
   .common_ttl {
     font-size: 2.6rem;
     line-height: 1.4em;
   }
   .common_txt {
     margin: 0 0 30px;
   }
 }
 .fo_red {
   color: #ac2019;
   font-weight: 700;
 }
 /***************************/
 /********【01】********/
 /***************************/
 .cont01 {
   padding: 100px 0;
   background: #fff;
 }
 .cont01 .cols2_ar {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
 }
 .cont01 .cols2_ar .img {
   width: 50vw;
   position: relative;
   z-index: 4;
 }
 .cont01 .cols2_ar .txt_ar {
   width: 50vw;
   padding: 18vh clamp(40px, /* 最小値 */ calc(30.00vw - 300px), /* 画面幅に応じて可変 */ 385px /* 最大値 */ ) 0 5vw;
   position: relative;
   z-index: 3;
 }
 .cont01 .cols2_ar .txt_ar:before {
   position: absolute;
   content: "";
   background: url("images/top/top_con_01_bg01.webp") no-repeat center center/cover;
   width: 251px;
   height: 172px;
   right: -60px;
   top: 70px;
   z-index: 3;
 }
 .cont01 .cols2_ar .txt_ar:after {
   position: absolute;
   z-index: 2;
   content: "";
   background: #f3eee1;
   width: 60vw;
   height: 80vh;
   right: 0px;
   top: 12vh;
 }
 .cont01 .cols2_ar .txt_bx {
   position: relative;
   z-index: 4;
 }
 .cont01 .cols2_ar .common_ttl_img {
   margin: 0 0 20px;
 }
 .cont01 .cols2_ar .common_ttl {
   text-align: left;
 }
 .cont01 .cols2_ar .txt {
   max-width: 460px;
 }
 /****/
 .cont01 .cols1_ar {
   position: relative;
   z-index: 3;
 }
 .cont01 .cols1_ar:after {
   position: absolute;
   content: "";
   background: url("images/top/top_con_01_bg02.webp") no-repeat center center/cover;
   width: 236px;
   height: 180px;
   margin: 0 0 0 -px;
   left: -70px;
   bottom: -250px;
 }
 .cont01 .cols1_ar .ttl_img {
   margin: 20px 0 -10px 18vw;
 }
 .cont01 .cols1_ar .img {
   padding: 0 20px;
   text-align: center;
 }
 @media only screen and (max-width: 800px) {
   .cont01 {
     padding: 70px 0;
   }
   .cont01 .cols2_ar {
     display: block;
     position: relative;
   }
   .cont01 .cols2_ar:before {
     position: absolute;
     content: "";
     background: url("images/top/top_con_01_bg01.webp") no-repeat center center/cover;
     width: 163px;
     height: 111px;
     right: -30px;
     top: 20px;
   }
   .cont01 .cols2_ar .img {
     width: 100vw;
     padding: 0 20px;
   }
   .cont01 .cols2_ar .txt_ar {
     width: 100vw;
     padding: 40px 20px 0;
     background: #f3eee1;
   }
   .cont01 .cols2_ar .txt_ar:before {
     display: none;
   }
   .cont01 .cols2_ar .txt_ar:after {
     width: 100vw;
     height: 600px;
     max-height: 70vh;
     top: -150px;
   }
   .cont01 .cols2_ar .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 180px;
   }
   .cont01 .cols2_ar .ttl {
     font-size: 2.4rem;
     margin: 0 0 20px;
     text-align: center;
   }
   .cont01 .cols2_ar .txt {
     margin: 0 -20px -100px;
     position: relative;
     z-index: 3;
     background: #f3eee1;
     padding: 0 20px 130px;
   }
   /****/
   .cont01 .cols1_ar:after {
     width: 106px;
     height: 81px;
     left: -20px;
     bottom: inherit;
     top: -480px;
   }
   .cont01 .cols1_ar .img {
     padding: 0 20px;
     text-align: center;
     position: relative;
     z-index: 1;
   }
   .cont01 .cols1_ar .img:before {
     position: absolute;
     z-index: 2;
     content: "";
     background: #f3eee1;
     width: 100%;
     height: 50%;
     left: 0px;
     top: 0%;
   }
   .cont01 .cols1_ar .img img {
     position: relative;
     z-index: 3;
   }
 }
 /**video**/
 .cont01 .video_ar {
   max-width: 1040px;
   max-height: 400px;
   margin: 0 auto 200px;
   padding: 0 20px;
 }
 .cont01 .video_ar .movie {
   max-width: 1000px;
   display: block;
   width: 100%;
   height: auto;
 }
 .cont01 .video_ar video {
   border-radius: 30px;
 }
 @media only screen and (max-width: 800px) {
   .cont01 .video_ar {
     margin: 0 auto 0px;
   }
   .cont01 .video_ar video {
     border-radius: 10px;
   }
 }
 /***************************/
 /********【02】********/
 /***************************/
 .cont02 {
   width: 100vw;
   background: #f3eee1;
   padding: 100px 0;
   position: relative;
   z-index: 3;
 }
 .cont02:before {
   position: absolute;
   content: "";
   background: url("images/top/top_con_02_bg01.webp") no-repeat center center/cover;
   width: 189px;
   height: 170px;
   right: -30px;
   top: 100px;
 }
 .cont02 .container {
   max-width: 700px;
   margin: auto;
 }
 .cont02 .img {
   text-align: center;
 }
 .cont02 .ttl {
   font-size: 2.0rem;
   font-weight: 700;
 }
 .cont02 .txt {
   margin: 0 0 40px;
 }
 .cont02 .cols2_ar {
   margin: 0 -3%;
   display: flex;
   justify-content: center;
   align-items: center;
 }
 .cont02 .cols2_ar .bx {
   width: 44%;
   margin: 0 3%;
 }
 @media only screen and (max-width: 800px) {
   .cont02 {
     padding: 70px 0;
   }
   .cont02:before {
     width: 113px;
     height: 102px;
     right: -10px;
     top: -40px;
   }
   .cont02 .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 146px;
   }
   .cont02 .com {
     margin: 0 0 20px;
   }
   .cont02 .cols1_ar, .cont02 .cols2_ar {
     margin: 0 auto;
   }
   .cont02 .img {
     margin: 0 0 10px;
   }
   .cont02 .ttl {
     font-size: 1.8rem;
     font-weight: 700;
     margin: 0 0 10px 0px;
     text-align: center;
   }
   .cont02 .txt {
     margin: 0 0 30px 15px;
   }
   .cont02 .cols2_ar {
     margin: 0 auto;
     display: block;
     justify-content: center;
     align-items: center;
   }
   .cont02 .cols2_ar .bx {
     width: 100%;
     margin: 0 0%;
   }
 }
 /***************************/
 /********【03】********/
 /***************************/
 .cont03 {
   padding: 100px 0;
   position: relative;
 }
 .cont03:before {
   position: absolute;
   content: "";
   background: url("images/top/top_con_03_bg01.webp") no-repeat center center/cover;
   width: 220px;
   height: 134px;
   left: -30px;
   top: 120px;
   z-index: 3;
 }
 .cont03 .bx_ar {
   display: flex;
   justify-content: space-around;
   align-items: center;
 }
 .cont03 .bx_txt {
   width: 60vw;
   padding: 0vh 5vw 0 clamp(40px, calc(33.00vw - 300px), 385px);
   position: relative;
   z-index: 3;
   margin: 0 -15vw 0 0;
 }
 .cont03 .txt {
   margin: 0 0 50px;
   max-width: 440px;
   /* 文字縁取り */
   text-shadow:
     0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
 }
 .cont03 .com_bg {
   font-family: "Shippori Mincho", serif;
   font-size: 3.8rem;
   font-weight: 700;
   background: #f3eee1;
   padding: 0 10px 2px;
   display: inline-block;
   margin: 0 0 25px;
   line-height: 1.3em;
 }
 @media only screen and (max-width: 1000px) {
   .cont03 .com_bg {
     font-size: 2.4rem;
   }
 }
 .cont03 .bx_img {
   width: 55vw;
   position: relative;
   z-index: 2;
 }
 @media only screen and (max-width: 800px) {
   .cont03 {
     padding: 70px 20px;
     position: relative;
   }
   .cont03:before {
     width: 139px;
     height: 85px;
     left: -30px;
     top: -40px;
   }
   .cont03 .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 107px;
   }
   .cont03 .bx_ar {
     display: block;
   }
   .cont03 .bx_txt {
     width: 100vw;
     padding: 0vh;
     margin: 0 0vw 0 0;
     display: flex;
     justify-content: flex-start;
     align-items: flex-start;
   }
   .cont03 .com_ar {
     width: 40%;
     text-align: right;
   }
   .cont03 .txt {
     width: 70%;
     margin: 0 0 0px;
     padding: 0 40px 20px 20px;
   }
   .cont03 .com_bg {
     writing-mode: vertical-rl;
     display: inline;
     vertical-align: top;
     font-size: 2.0rem;
     padding: 15px 3px;
     margin: 0 4px -80px;
   }
   .cont03 .bx_img {
     width: 100%;
     position: relative;
     z-index: 2;
   }
 }
 /***************************/
 /********【04】********/
 /***************************/
 .cont04 {
   width: 100%;
   padding: 100px 0;
   background: #f3eee1;
 }
 .cont04 .main_img_ar {
   position: relative;
 }
 .cont04 .main_img {
   text-align: center;
   margin: 0 0 50px;
 }
 .cont04 .notice {
   position: absolute;
   left: 0;
   top: 440px;
   font-size: 1.4rem;
 }
 /****/
 .cont04 .loop_ar {
   margin: 0 -1%;
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
   align-content: start;
   flex-direction: row;
   flex-wrap: wrap;
 }
 .cont04 .loop {
   width: 31.333%;
   margin: 0 1% 30px;
 }
 .cont04 .name {
   font-size: 2.2rem;
   font-weight: 700;
   margin: 0 0 10px;
 }
 .cont04 .detail {
   margin: 0 0 20px;
   letter-spacing: 0;
   font-size: 1.55rem;
 }
 .cont04 .price_ar ul {
   display: flex;
   justify-content: flex-start;
   align-items: center;
   align-content: start;
   flex-direction: row;
   flex-wrap: wrap;
 }
 .cont04 .price_ar ul li {
   font-size: 2.0rem;
   font-weight: 700;
   position: relative;
   padding: 0 1.25em 0 0;
 }
 .cont04 .price_ar ul li:after {
   position: absolute;
   content: "／";
   right: 0px;
 }
 .cont04 .price_ar ul li:last-child:after {
   content: "";
 }
 @media only screen and (max-width: 800px) {
   .cont04 {
     padding: 70px 0;
   }
   .cont04 .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 120px;
   }
   .cont04 .main_img {
     margin: 0 0 0px;
   }
   .cont04 .notice {
     position: static;
     text-align: right;
     font-size: 1.3rem;
     margin: -50px 0 60px;
   }
   /****/
   .cont04 .loop_ar {
     margin: 0 -2%;
     display: flex;
     justify-content: flex-start;
     align-items: flex-start;
     align-content: start;
     flex-direction: row;
     flex-wrap: wrap;
   }
   .cont04 .loop {
     width: 46.0%;
     margin: 0 2% 20px;
   }
   .cont04 .img {
     text-align: center;
   }
   .cont04 .name {
     font-size: 1.8rem;
   }
   .cont04 .detail {
     font-size: 1.35rem;
   }
   .cont04 .price_ar ul li {
     width: 100%;
     padding: 0 0em 0 0;
   }
   .cont04 .price_ar ul li:after {
     display: none;
   }
 }
 /***************************/
 /********【05】********/
 /***************************/
 .cont05 {
   padding: 100px 0 200px;
   position: relative;
 }
 .cont05:before {
   position: absolute;
   content: "";
   background: url("images/top/top_con_05_bg01.webp") no-repeat center center/cover;
   width: 193px;
   height: 163px;
   right: -40px;
   top: 180px;
 }
 .cont05:after {
   position: absolute;
   content: "";
   background: url("images/top/top_con_05_bg02.webp") no-repeat center center/cover;
   width: 194px;
   height: 146px;
   left: -40px;
   bottom: 250px;
 }
 .cont05 .ttl_ar {
   margin: 0 0 60px;
 }
 .cont05 .bx_ar {
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
 }
 .cont05 .bx_img {
   width: 60%;
 }
 .cont05 .bx_txt {
   width: 40%;
   padding: 60px 0 450px 3vw;
   position: relative;
 }
 .cont05 .bx_txt:after {
   position: absolute;
   content: "";
   background: url("images/top/top_con_05_img02.webp") no-repeat center center/cover;
   width: 478px;
   height: 364px;
   margin: 0 0 0 -px;
   right: 0px;
   bottom: 0%;
 }
 @media only screen and (max-width: 800px) {
   .cont05 {
     padding: 70px 0 150px;
   }
   .cont05:before {
     width: 115px;
     height: 97px;
     right: -20px;
     top: 20px;
   }
   .cont05:after {
     width: 91px;
     height: 68px;
     left: -20px;
     bottom: 150px;
   }
   .cont05 .ttl_ar {
     margin: 0 0 30px;
   }
   .cont05 .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 90px;
   }
   .cont05 .bx_ar {
     display: block;
   }
   .cont05 .bx_img {
     width: 100%;
   }
   .cont05 .img01 {
     text-align: center;
   }
   .cont05 .bx_txt {
     width: 100%;
     padding: 0px 0 20px 0vw;
   }
   .cont05 .bx_txt:after {
     display: none;
   }
 }
 /***************************/
 /********【06】********/
 /***************************/
 .cont06 {
   width: 100%;
   background: #f3eee1;
   padding: 100px 0;
 }
 .cont06 .faq_ar {
   max-width: 740px;
   margin: 0 auto 0px;
   padding: 30px 0;
   border-bottom: 1px dashed #b59948;
 }
 .cont06 .faq_ar.bor_top {
   border-top: 1px dashed #b59948;
   margin: 60px auto 0;
 }
 .cont06 .q {
   font-size: 1.8rem;
   font-weight: 700;
   padding: 0 0 15px 33px;
   position: relative;
 }
 .cont06 .q:before {
   font-size: 2.4rem;
   font-weight: 700;
   position: absolute;
   content: "Q";
   left: 0px;
   top: -8px;
 }
 .cont06 .a {
   padding: 0 0 0 33px;
   position: relative;
 }
 .cont06 .a:before {
   font-size: 2.4rem;
   font-weight: 700;
   color: #ac2019;
   position: absolute;
   content: "A";
   left: 2px;
   top: -9px;
 }
 @media only screen and (max-width: 800px) {
   .cont06 {
     padding: 70px 0;
   }
   .cont06 .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 82px;
   }
   .cont06 .faq_ar {
     padding: 20px 0;
   }
   .cont06 .faq_ar.bor_top {
     margin: 40px auto 0;
   }
 }
 /***************************/
 /********【07】********/
 /***************************/
 .cont07 {
   padding: 100px 0;
 }
 .cont07 .bx_ar {
   display: flex;
   justify-content: flex-start;
   align-items: center;
 }
 .cont07 .bx_txt {
   width: 50%;
   padding: 0vh 5vw 0 clamp(40px, calc(35.00vw - 300px), 450px);
   position: relative;
   z-index: 3;
 }
 .cont07 .ttl {
   max-width: 380px;
   font-size: 2.4rem;
   font-weight: 700;
   padding: 0 0 10px;
   margin: 0 0 20px;
   border-bottom: 1px dashed #b59948;
 }
 .cont07 .name {
   font-size: 1.4rem;
   font-weight: 700;
 }
 .cont07 .detail {
   line-height: 2.4em;
 }
 .cont07 .bx_img {
   width: 50%;
 }
 .cont07 iframe {
   height: 420px;
   width: 100%;
   border-radius: 20px 0px 0px 20px / 20px 0px 0px 20px;
 }
 @media only screen and (max-width: 800px) {
   .cont07 {
     padding: 70px 20px;
   }
   .cont07 .ttl_img {
     margin: 0 auto 20px;
     text-align: center;
     max-width: 124px;
   }
   .cont07 .bx_ar {
     display: block;
   }
   .cont07 .bx_txt {
     width: 100%;
     padding: 0;
   }
   .cont07 .detail {
     margin: 0 0 20px;
   }
   .cont07 .bx_img {
     width: 100%;
   }
   .cont07 iframe {
     height: 450px;
     width: 100%;
     border-radius: 20px;
   }
 }
 /***************************/
 /********【common】********/
 /***************************/
 /****/
 .css_bt_st a, .css_bt_st a:link, .css_bt_st a:visited {
   display: inline-block;
   padding: 15px 1em 20px;
   text-align: center;
   vertical-align: middle;
   min-width: 240px;
   background-color: #ac2019;
   border-radius: 15px;
   transition: background-color .3s;
   position: relative;
   color: #fff;
   text-decoration: none;
   -webkit-tap-highlight-color: transparent;
 }
 .css_bt_st a::after {
   position: absolute;
   content: "";
   background: url(images/shared/btn_arr_wh.svg) no-repeat center center;
   background-size: contain;
   width: 7px;
   height: 14px;
   right: 40px;
   top: 50%;
   transform: translateY(-50%);
 }
 .css_bt_st .css_bt_fo {
   font-size: 1.5rem;
   font-weight: 600;
   color: #fff;
 }
 /* ホバーできるPC端末だけ適用 */
 @media (hover: hover) and (pointer: fine) {
   .css_bt_st a:hover {
     background-color: #074137;
     color: #fff;
     text-decoration: none;
   }
 }
 /* スマホタップ瞬間のみ変化 */
 .css_bt_st a:active {
   background-color: #074137;
   color: #fff;
 }