/*
Theme Name: Theme
*/
@charset "UTF-8";

html{
  font-size: 10px;
}
body{
  background-color: #fff;
  line-height: 1.66;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #510a0b;
}

a{
  color: #00f;
  text-decoration: underline;
}
a:visited{
  color: #00f;
  text-decoration: underline;
}
a:hover, a:active{
  color: #00f;
  text-decoration: none;
}

a,
.banners a img,
a.banners img{
  transition: all .4s;
}
.banners a:hover img,
a.banners:hover img{
  opacity: .7;
}

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

.table-break th,
.table-break td{
  padding: 10px 20px;
}
@media (max-width: 767px){
  .table-break,
  .table-break > thead,
  .table-break > thead > tr,
  .table-break > thead > tr > th,
  .table-break > thead > tr > td,
  .table-break > tbody,
  .table-break > tbody > tr,
  .table-break > tbody > tr > th,
  .table-break > tbody > tr > td,
  .table-break > tfoot,
  .table-break > tfoot > tr,
  .table-break > tfoot > tr > th,
  .table-break > tfoot > tr > td{
    display: block;
  }
  .table-break.table-bordered th{
    background: #eee;
  }
}

.en{
  font-family: 'Domine', serif;
}

.list-indent{
  padding-left: 0;
  list-style: none;
}
.list-indent > li{
  padding-left: 1em;
  text-indent: -1em;
}



/* Layout
======================================= */
#wrapper{
  overflow: hidden;
}
@media (max-width: 767px){
}
@media (min-width: 768px){
  #wrapper{
    min-width: 1000px;
  }
}



#header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
}
#header .container{
  display: flex;
  justify-content: space-between;
  width: auto;
}
@media (max-width: 767px){
  #header{
    height: 80px;
  }
  #header .container{
    align-items: center;
    padding: 15px 15px;
  }
  .header-logo img{
    width: auto;
    height: 50px;
  }
}
@media (min-width: 768px){
  #header .container{
    align-items: flex-start;
    padding: 20px 37px 20px 30px;
  }
  .header-logo img{
    width: 293px;
  }
}



/* Navigation */
.nav-main ul{
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: .1em;
}
.nav-main a{
  text-decoration: none;
  color: #510a0b;
  font-weight: bold;
}
.nav-main a:hover{
  opacity: .5;
}
@media (max-width: 767px){
  .nav-main-toggle{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent;
    width: 60px;
    height: 80px;
  }
  .nav-main-toggle:hover{
    cursor: pointer;
  }
  .nav-main-toggle span,
  .nav-main-toggle span::before,
  .nav-main-toggle span::after{
    display: block;
    background: #000;
    width: 27px;
    height: 1px;
    transition: top .4s ease, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, top .2s ease;
    transition: transform .3s ease-in-out, top .2s ease, -webkit-transform .3s ease-in-out;
  }
  .nav-main-toggle span::before,
  .nav-main-toggle span::after{
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-main-toggle span::before{
    top: -8px;
  }
  .nav-main-toggle span{
    position: relative;
  }
  .nav-main-toggle span::after{
    top: 8px;
  }
  .is-menu-open .nav-main-toggle span{
    top: 0;
    left: 0;
    width: 0;
  }
  .is-menu-open .nav-main-toggle span::before,
  .is-menu-open .nav-main-toggle span::after{
    left: -13px;
  }
  .is-menu-open .nav-main-toggle span::before{
    top: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .is-menu-open .nav-main-toggle span::after{
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  /* z-index */
  .nav-main-toggle{
    z-index: 1000;
  }
  .nav-main{
    z-index: 990;
  }

  .nav-main{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: rgba(255,255,255,.9);
    padding-right: 15px;
    padding-left: 15px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
  }

  .nav-main .logo{
    padding-top: 20px;
  }
  .nav-main .logo img{
    width: 84px;
    height: auto;
  }

  .nav-main ul{
    padding-top: 80px;
  }
  .nav-main ul li{
    opacity: 0;
  }
  .nav-main ul li a{
    display: block;
    padding: 1em;
    transition: color .6s ease;
    font-size: 2.2rem;
  }
  .nav-main .instagram .icon{
    display: none;
  }

  /* open */
  .is-menu-open{
    overflow: hidden;
  }
  .is-menu-open .nav-main{
    visibility: visible;
    opacity: 1;
  }
  .is-menu-open .nav-main li{
    opacity: 1;
    transform: translateX(0);
    transition: transform .7s ease, opacity .6s ease;
  }
}
@media (min-width: 768px){
  .nav-main-toggle{
    display: none;
  }
  .nav-main{
    font-size: 1.6rem;
  }
  .nav-main ul{
    display: flex;
    justify-content: flex-end;
  }
  .nav-main a{
    display: block;
    padding: 10px 12px;
    height: 38px;
    line-height: 1;
  }
  .nav-main .instagram .label{
    display: none;
  }
  .nav-main .instagram .icon{
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
  }
  .nav-main .instagram .icon img{
    position: relative;
    top: -2px;
    vertical-align: top;
  }
}



#main{
  display: block;
}
@media (max-width: 767px){
}
@media (min-width: 768px){
}



#footer{}
@media (max-width: 767px){
}
@media (min-width: 768px){
  #footer .container{
  }
}

.footer-upper .footer-profile .table a{
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px){
  .footer-upper .container{
  }
  .footer-upper .footer-profile{
  }
  .footer-upper .footer-logo{
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-upper .footer-logo img{
    width: 200px;
  }
  .footer-upper .footer-profile .table{
    font-size: 1.4rem;
  }
  .footer-upper .footer-profile .table th,
  .footer-upper .footer-profile .table td{
    border-bottom: 1px solid #e5e5e5;
  }
  .footer-upper .footer-profile .table th{
    width: 90px;
  }
  .footer-upper .footer-map iframe{
    width: 100%;
    height: 300px;
  }
}
@media (min-width: 768px){
  .footer-upper .container{
    display: flex;
    justify-content: space-between;
    width: 1080px;
  }
  .footer-upper .footer-profile{
    flex-basis: 45.74%;
    width: 45.74%;
    max-width: 45.74%;
  }
  .footer-upper .footer-logo{
    margin-bottom: 70px;
  }
  .footer-upper .footer-logo img{
    width: 283px;
  }
  .footer-upper .footer-profile .table{
    font-size: 1.6rem;
  }
  .footer-upper .footer-profile .table th,
  .footer-upper .footer-profile .table td{
    border-bottom: 1px solid #e5e5e5;
  }
  .footer-upper .footer-profile .table th{
    width: 108px;
  }
  .footer-upper .footer-map{
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
}

.footer-copyright{
  line-height: 2;
}
@media (max-width: 767px){
  .footer-lower .container{
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 1.2rem;
    text-align: center;
  }
}
@media (min-width: 768px){
  .footer-lower .container{
    display: flex;
    justify-content: space-between;
    padding: 150px 30px 60px 30px;
    width: auto;
    font-size: 1.2rem;
  }
  .footer-copyright{
    text-align: right;
  }
}



/* Modules
======================================= */

/* Heading */

/* Lists */

/* Tables */

/* Type */

/* Embed */



/* Scripts
======================================= */

/* Tab */
.tab-content{
  display: none;
}
.tab-content.is-active{
  display: block;
}

/* Collapse */
.collapse-content{
  display: none;
}
.collapse-toggle span{
}
.collapse-toggle .collapse-icon::after{
  content: "+";
  position: relative;
  top: -3px;
  display: inline-block;
  margin-left: 10px;
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.collapse-toggle.is-active .collapse-icon::after{
  content: "-";
}



/* Section
======================================= */
.section-title-sub{
  margin-bottom: 0;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: .1em;
}



/* Pages
======================================= */

/* Intro */
.intro-image{
  text-align: center;
}
.intro-text{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.intro-cta a{
  display: flex;
  align-items: center;
  background: #f5a5a5 url("../img/bg-btn-cta.png") left bottom no-repeat;
  padding-left: 110px;
  width: 100%;
  height: 100%;
  line-height: 1.56;
  box-shadow: 10px 10px 0 0 #e8e8e8;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  transition: opacity .5s;
}
.intro-cta a:hover{
  opacity: .7;
}
@media (max-width: 767px){
  .section-intro{
    margin-top: 80px;
    margin-bottom: 50px;
  }
  .section-intro .container{
    position: relative;
  }
  .intro-image img{
    border-radius: 40px;
  }
  .intro-text{
    float: left;
    margin-top: 25px;
    margin-left: 5px;
    line-height: 1.4;
    font-size: 1rem;
  }
  .intro-title{
    float: right;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 2.8rem;
    line-height: 1.6;
    letter-spacing: .05em;
  }
  .intro-cta{
    clear: both;
    height: 80px;
    text-align: center;
  }
  .intro-cta a{
    display: inline-flex;
    background-size: auto 60px;
    padding-left: 95px;
    width: 90%;
    font-size: 1.6rem;
    text-align: left;
  }
}
@media (min-width: 768px){
  .section-intro{
    position: relative;
    margin-top: 132px;
    margin-bottom: 110px;
  }
  .section-intro .container{
    position: relative;
    width: 80.42857143vw;
  }
  .intro-image img{
    width: 100%;
    border-radius: 60px;
  }
  .intro-text{
    position: absolute;
    top: 20%;
    margin: 0;
    left: calc(0px - ((100vw - 80.42857143vw) / 2) / 2);
    font-size: 1.2rem;
  }
  .intro-title{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    background: #fff;
    border-radius: 0 10px 10px 0;
    padding: 30px 40px;
    font-size: 3rem;
    line-height: 1.6;
    letter-spacing: .1em;
  }
  .intro-cta{
    position: absolute;
    right: -40px;
    bottom: -22px;
    width: 352px;
    height: 100px;
  }
  .intro-cta a{
    background-size: auto 75px;
  }
}




/* About */
@media (max-width: 767px){
  .section-about{
    margin-bottom: 60px;
  }
  .section-about .container{
    position: relative;
  }
  .section-about-heading{
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.6;
  }
  .about-image{
    background-size: cover;
  }
  .about-image-01{
    background-image: url("../img/img-about-01.jpg");
  }
  .about-image-02{
    background-image: url("../img/img-about-02.jpg");
  }
  .about-image-03{
    background-image: url("../img/img-about-03.jpg");
  }
  .about-image-04{
    background-image: url("../img/img-about-04.jpg");
  }
  .about-image-05{
    background-image: url("../img/img-about-05.jpg");
  }
  .about-image-01,
  .about-image-03,
  .about-image-05{
    border-radius: 40px;
  }
  .about-image-02{
    border-radius: 40px 0 0 40px;
  }
  .about-image-03{
    border: 3px solid #fff;
  }
  .about-image-04{
    border-radius: 0 40px 40px 0;
  }
  .about-image-01,
  .about-image-05{
    height: 200px;
  }
  .about-image-02{
    margin-right: -15px;
    width: calc(100% + 15px);
    height: 240px;
  }
  .about-image-03{
    position: relative;
    top: -100px;
    margin-bottom: -100px;
    margin-left: auto;
    width: 186px;
    height: 175px;
  }
  .about-image-04{
    margin-left: -15px;
    width: calc(100% + 15px);
    height: 240px;
  }
  .about-text{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px){
  .section-about{
    margin-bottom: 156px;
    width: 100%;
  }
  .section-about .container{
    position: relative;
    width: 1080px;
  }
  .section-about .section-title-sub,
  .section-about-heading{
    text-align: right;
  }
  .section-about-heading{
    font-size: 3rem;
    line-height: 2;
  }
  .about-image{
    position: absolute;
    background-size: cover;
  }
  .about-image-01{
    background-image: url("../img/img-about-01.jpg");
  }
  .about-image-02{
    background-image: url("../img/img-about-02.jpg");
  }
  .about-image-03{
    background-image: url("../img/img-about-03.jpg");
  }
  .about-image-04{
    background-image: url("../img/img-about-04.jpg");
  }
  .about-image-05{
    background-image: url("../img/img-about-05.jpg");
  }
  .about-image-01,
  .about-image-03,
  .about-image-05{
    border-radius: 60px;
  }
  .about-image-02{
    border-radius: 60px 0 0 60px;
  }
  .about-image-03{
    border: 3px solid #fff;
  }
  .about-image-04{
    border-radius: 0 60px 60px 0;
  }
  .about-image-01{
    top: 60px;
    left: -38px;
    width: 369px;
    height: 317px;
  }
  .about-image-02{
    top: 360px;
    right: calc(0px - (100vw - 1080px) / 2);
    width: 52vw;
    height: 400px;
  }
  .about-image-03{
    top: 692px;
    right: -61px;
    width: 310px;
    height: 292px;
  }
  .about-image-04{
    top: 666px;
    left: calc(0px - (100vw - 1080px) / 2);
    width: 41.07142857vw;
    height: 400px;
  }
  .about-image-05{
    top: 1044px;
    right: 115px;
    width: 339px;
    height: 208px;
  }
  .about-text{
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 2;
  }
  .about-text-01{
    margin-top: 196px;
    margin-left: 95px;
  }
  .about-text-02{
    margin-top: 250px;
    margin-left: 508px;
  }
  .about-text-03{
    margin-top: 168px;
    margin-left: 194px;
  }
}




/* Recommend */
.section-recommend-header .heading{
  position: relative;
  background: #fce5e7;
  border-radius: 30px;
  font-weight: bold;
}
.section-recommend-header .heading::after{
  content: "";
  position: absolute;
  bottom: -18px;
  left: 30px;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #fce5e7 transparent transparent transparent;
  width: 0;
  height: 0;
}
@media (max-width: 767px){
  .section-recommend{
    margin-bottom: 60px;
  }
  .section-recommend .container{
  }
  .section-recommend-header{
    background: url("../img/img-recommend-00.png") left top no-repeat;
    background-size: auto 140px;
  }
  .section-recommend-header .heading{
    margin-left: 35%;
    padding: 10px;
    width: 65%;
    line-height: 1.2;
    font-size: 2rem;
    text-align: center;
  }
  .section-recommend-header .lead{
    margin-top: 80px;
    font-size: 1.8rem;
    line-height: 1.67;
  }
}
@media (min-width: 768px){
  .section-recommend{
    margin-bottom: 98px;
  }
  .section-recommend .container{
    width: 880px;
  }
  .section-recommend-header{
    background: url("../img/img-recommend-00.png") 25px bottom no-repeat;
    background-size: 232px auto;
    height: 278px;
  }
  .section-recommend-header .heading{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    margin-left: 218px;
    width: 558px;
    height: 105px;
    line-height: 1;
    font-size: 3.6rem;
  }
  .section-recommend-header .lead{
    margin-left: 286px;
    font-size: 1.8rem;
    line-height: 1.67;
  }
}

.recommend-blk{
  border-radius: 10px;
}
.recommend-blk .heading{
  background: #f5a5a5;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}
.recommend-blk .content .text{
  background: #fce5e7;
}
.recommend-blk .list{
  margin: 0;
  list-style: none;
}
.recommend-blk .list li{
  margin-bottom: .5em;
  background: url("../img/icon-check.svg") 0 3px no-repeat;
  background-size: 26px 26px;
  padding-left: 34px;
}
@media (max-width: 767px){
  .recommend-blk{
    position: relative;
    margin-bottom: 20px;
  }
  .recommend-blk .heading{
    transform: translateY(50%);
    margin-right: 20px;
    margin-left: 20px;
    padding: 10px 15px;
    line-height: 1.2;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
  }
  .recommend-blk .content .image{
    border-radius: 10px 10px 0 0;
    overflow: hidden;
  }
  .recommend-blk .content .text{
    padding: 15px 10px;
    border-radius: 0 0 10px 10px;
  }
  .recommend-blk .list{
    padding-left: 0;
    font-size: 1.6rem;
  }
  .recommend-blk .list li{
    background: url("../img/icon-check.svg") 0 4px no-repeat;
    background-size: 20px 20px;
    padding-left: 28px;
  }
}
@media (min-width: 768px){
  .recommend-blk{
    position: relative;
    margin-bottom: 52px;
  }
  .recommend-blk .heading{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 60px;
    line-height: 1;
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: .1em;
    text-align: center;
  }
  .recommend-blk .content{
    display: flex;
  }
  .recommend-blk .content .image{
    flex: 0 0 377px;
    width: 377px;
    max-width: 377px;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
  }
  .recommend-blk .content .text{
    flex: 1 1 auto;
    padding-top: 70px;
    border-radius: 0 10px 10px 0;
  }
}



/* Plan */
.section-plan .section-title-sub,
.section-plan .section-plan-heading{
  text-align: center;
}
.section-plan .section-title-sub{
  margin-bottom: 0;
}
.section-plan .section-plan-heading{
  position: relative;
  font-weight: bold;
}
.section-plan .section-plan-heading::before{
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: -1;
  display: block;
  background: #e2f5f0;
  width: 100%;
  height: 15px;
}
@media (max-width: 767px){
  .section-plan{
    margin-bottom: 60px;
  }
}
@media (min-width: 768px){
  .section-plan{
    margin-bottom: 166px;
  }
  .section-plan .container{
    background-image: url("../img/bg-flow-left.svg"),
                      url("../img/bg-flow-right.svg");
    background-position: left top, 
                         right top;
    background-repeat: no-repeat;
    background-size: 60px auto;
    padding-top: 84px;
    width: 1080px;
    height: 674px;
  }
  .section-plan .container > .inner{
    margin-right: 32px;
    margin-left: 32px;
  }
  .section-plan .section-plan-heading{
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    width: 860px;
    font-size: 3.6rem;
  }
}

.plan-flow{
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767px){
  .plan-flow{
    margin-top: 20px;
  }
  .plan-flow .item{
    overflow: hidden;
    border-bottom: 4px solid #e2f5f0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .plan-flow .item .image{
    float: left;
    margin-right: 20px;
    width: 100px;
    text-align: center;
  }
  .plan-flow .item .image img{
    width: 80px;
  }
  .plan-flow .item .title,
  .plan-flow .item .text{
    padding-right: 10px;
  }
  .plan-flow .item .title{
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1;
    font-size: 2.2rem;
  }
  .plan-flow .item .text{
    font-size: 1.6rem;
  }
}
@media (min-width: 768px){
  .plan-flow{
    display: flex;
    justify-content: center;
  }
  .plan-flow .item{
    padding-right: 50px;
    padding-bottom: 20px;
    padding-left: 50px;
    border-left: 4px solid #e2f5f0;
    width: 33.3%;
  }
  .plan-flow .item:first-child{
    border-left: none;
  }
  .plan-flow .item .image,
  .plan-flow .item .title{
    text-align: center;
  }
  .plan-flow .item .image img{
    width: 103px;
  }
  .plan-flow .item .title{
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1;
    font-size: 2.8rem;
  }
  .plan-flow .item .text{
    font-size: 1.6rem;
    line-height: 1.88;
  }
}



/* Studio */
.section-studio .slick-dots li{
  margin: 0;
  width: auto;
  height: auto;
}
.section-studio .slick-dots li button{
  padding: 10px 4px;
  width: auto;
  height: auto;
}
.section-studio .slick-dots li button::before{
  content: "";
  position: static;
  display: block;
  background: #949494;
  width: 22px;
  height: 5px;
  border-radius: 0;
  opacity: 1;
}
.section-studio .slick-dots .slick-active button::before{
  background: #f7ae6c;
}
@media (max-width: 767px){
  .section-studio{
    margin-bottom: 60px;
  }
  .section-studio .slide-item{
    padding-right: 3px;
    padding-left: 3px;
    width: 80vw;
  }
  .section-studio .slick-dots{
    position: static;
    padding-right: 15px;
    margin-left: auto;
    text-align: right;
  }
}
@media (min-width: 768px){
  .section-studio{
    margin-bottom: 168px;
  }
  .section-studio .slide-item{
    padding-right: 5px;
    padding-left: 5px;
    width: 44vw;
  }
  .section-studio .slick-dots{
    position: static;
    margin-right: auto;
    margin-left: auto;
    width: 1080px;
    text-align: right;
  }
}



/* Price */
.section-price .section-title-sub,
.section-price .section-plan-heading{
  text-align: center;
}
.section-price .section-plan-heading{
  font-weight: bold;
  line-height: .8;
}
.section-price .section-title-sub{
  margin-bottom: 10px;
}
@media (max-width: 767px){
  .section-price{
    margin-bottom: 60px;
  }
  .section-price .section-plan-heading{
    margin-bottom: 20px;
    font-size: 3rem;
  }
  .section-price .section-plan-heading small{
    font-size: 1.4rem;
  }
}
@media (min-width: 768px){
  .section-price{
    margin-bottom: 130px;
  }
  .section-price .container{
    width: 1080px;
  }
  .section-price .section-plan-heading{
    margin-bottom: 40px;
    font-size: 3.6rem;
  }
  .section-price .section-plan-heading small{
    font-size: 1.4rem;
  }
}

.price-blk{
  border: 8px solid #cae8e0;
  background: #f7f9f8;
}
.price-header .icon{
  background: #cae8e0;
  font-weight: bold;
}
.price-header .icon .image{
  margin-bottom: 4px;
}
.price-header .heading{
  font-weight: bold;
}
.price-header .category{
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
.price-header .category li{
  background: #cae8e0;
  border-right: 10px;
}
.price-blk .price-body .box{
  background: #fff;
  border-radius: 30px;
}
.price-blk .price-body .box .title{
  padding-top: 7px;
  padding-bottom: 7px;
  font-weight: bold;
  line-height: 1;
}
.price-blk .price-body .box .time{
  line-height: 1;
  color: #b5a4a5;
  font-weight: bold;
}
.price-blk .price-body .box .time small{
  font-size: 80%;
}
.price-blk .price-body .box .price{
  margin: 0;
  line-height: 1;
  font-weight: bold;
}
.price-blk .price-body-01 .box .price{
  border-bottom: 11px solid #fce5e7;
}
.price-blk .price-body-02 .box .price{
  border-bottom: 11px solid #dffaff;
}
.price-blk .price-body .box .price small{
  font-size: 16px;
}
.price-blk .price-body .box .notice{
  margin-top: 1em;
  margin-bottom: 0;
  font-size: 1.2rem;
}
@media (max-width: 767px){
  .price-blk{
    margin-bottom: 40px;
    border-width: 5px;
    border-radius: 40px;
    padding-bottom: 30px;
  }
  .price-header{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .price-header .icon{
    position: absolute;
    top: -20px;
    left: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100px;
    height: 100px;
    font-size: 1.2rem;
    border-radius: 20px;
  }
  .price-header .icon .icon-01{
    width: 44px;
  }
  .price-header .icon .icon-02{
    width: 77px;
  }
  .price-header .heading{
    order: 2;
    margin-bottom: 15px;
    font-size: 3rem;
    line-height: 1;
    text-align: center;
  }
  .price-header .category{
    order: 1;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: 80px;
    font-size: 1.6rem;
  }
  .price-header .category li{
    margin-right: 10px;
    padding: 7px 5px;
    border-radius: 6px;
    width: 100px;
    text-align: center;
  }
  .price-blk .price-body .box{
    margin-bottom: 10px;
    padding: 20px 30px;
    text-align: center;
  }
  .price-blk .price-body-01,
  .price-blk .price-body-02{
    margin-right: 15px;
    margin-left: 15px;
  }
  .price-blk .price-body .box .title{
    font-size: 2.4rem;
  }
  .price-blk .price-body-01 .box .title{
    background: #fce5e7;
  }
  .price-blk .price-body-02 .box .title{
    background: #dffaff;
  }
  .price-blk .price-body .box .title small{
    font-size: 1.4rem;
  }
  .price-blk .price-body .box .time{
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
  .price-blk .price-body .box .price{
    font-size: 4.5rem;
  }
}
@media (min-width: 768px){
  .price-blk{
    margin-bottom: 60px;
    border-radius: 60px;
    padding-bottom: 90px;
  }
  .price-header{
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 32px 36px 54px 160px;
    align-items: center;
  }
  .price-header .icon{
    position: absolute;
    top: -34px;
    left: -16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 150px;
    height: 150px;
    font-size: 1.4rem;
    border-radius: 30px;
  }
  .price-header .icon .icon-01{
    width: 56px;
  }
  .price-header .icon .icon-02{
    width: 97px;
  }
  .price-header .heading{
    font-size: 3.6rem;
    line-height: 1;
  }
  .price-header .category{
    display: flex;
    justify-content: flex-end;
    font-size: 2.4rem;
  }
  .price-header .category li{
    margin-left: 14px;
    padding: 10px;
    border-radius: 10px;
    width: 150px;
    text-align: center;
  }
  .price-blk .price-body .box{
    padding: 46px 53px;
    text-align: center;
  }
  .price-blk .price-body-01{
    display: flex;
    justify-content: space-between;
    margin-right: 50px;
    margin-left: 50px;
  }
  .price-blk .price-body-02{
    margin-right: 230px;
    margin-left: 230px;
  }
  .price-blk .price-body-01 .box-01{
    flex-basis: 35.83%;
    width: 35.83%;
    max-width: 35.83%;
  }
  .price-blk .price-body-01 .box-02{
    flex-basis: 61.43%;
    width: 61.43%;
    max-width: 61.43%;
  }
  .price-blk .price-body .box .title{
    font-size: 3rem;
  }
  .price-blk .price-body-01 .box .title{
    background: #fce5e7;
  }
  .price-blk .price-body-02 .box .title{
    background: #dffaff;
  }
  .price-blk .price-body .box .title small{
    font-size: 1.6rem;
  }
  .price-blk .price-body .box .time{
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 3rem;
  }
  .price-blk .price-body .box .price{
    font-size: 5rem;
  }
  .price-blk .price-body .row{
    display: flex;
    justify-content: space-between;
  }
  .price-blk .price-body .row .col{
    flex-basis: 47.62%;
    width: 47.62%;
    max-width: 47.62%;
  }
}

.price-online .title{
  border: 1px solid #d6c9c9;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 5px;
  font-weight: normal;
}
@media (max-width: 767px){
  .price-online{
    margin: 20px 15px;
  }
  .price-online .title{
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .price-online .text{
    font-size: 1.4rem;
  }
}
@media (min-width: 768px){
  .price-online{
    display: flex;
    margin: 28px 50px 0 50px;
  }
  .price-online .title{
    align-self: flex-start;
    padding-top: 5px;
    padding-bottom: 5px;
    flex-basis: 300px;
    width: 300px;
    max-width: 300px;
  }
  .price-online .text{
    margin-left: 22px;
    font-size: 1.4rem;
  }
}

.price-cta a{
  position: relative;
  display: block;
  background-image: url("../img/bg-btn-cta.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  color: #fff;
  text-decoration: none;
  box-shadow: 5px 10px 0 0 rgba(0,0,0,.1);
  font-weight: bold;
  transition: opacity .5s;
}
.price-cta a::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url("../img/icon-arrow.svg") 0 0 no-repeat;
  background-size: 100% 100%;
}
.price-cta a:hover{
  opacity: .7;
}
.price-cta .cta-01{
  background-color: #f5a5a5;
}
.price-cta .cta-02{
  background-color: #91ccef;
}
@media (max-width: 767px){
  .price-cta{
    margin-right: 15px;
    margin-left: 15px;
  }
  .price-cta a{
    background-position: left bottom 15px;
    background-size: 70px auto;
    padding-top: 18px;
    padding-left: 80px;
    height: 100px;
    line-height: 1.2;
    border-radius: 10px;
    font-size: 1.8rem;
  }
  .price-cta a::after{
    right: 15px;
    width: 15px;
    height: 25px;
  }
}
@media (min-width: 768px){
  .price-cta{
    margin-top: 80px;
  }
  .price-cta a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    background-size: 128px auto;
    width: 862px;
    height: 110px;
    border-radius: 10px;
    font-size: 2.6rem;
  }
  .price-cta a::after{
    right: 32px;
    width: 15px;
    height: 25px;
  }
}

@media (max-width: 767px){
  .price-notice{
    margin: 20px 15px 0 15px;
    text-align: center;
    font-size: 1.2rem;
  }
}
@media (min-width: 768px){
  .price-notice{
    margin-top: 30px;
    margin-bottom: 0;
    text-align: center;
    font-size: 1.2rem;
  }
}



/* Info */
.section-info-header{
  background: url("../img/bg-info.svg") center top no-repeat;
  text-align: center;
}
.section-info-heading{
  position: relative;
  font-weight: bold;
}
.section-info-heading::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  z-index: 1;
  background: #fff;
  width: calc(100% + 20px);
  height: 15px;
}
.section-info-heading span{
  position: relative;
  z-index: 2;
}
.section-info-header .name{
  letter-spacing: .2em;
  font-weight: bold;
}
@media (max-width: 767px){
  .section-info{
    margin-bottom: 60px;
  }
  .section-info .container{
    padding-right: 0;
    padding-left: 0;
  }
  .section-info-header{
    margin-bottom: 20px;
    background-size: 100% auto;
    padding-top: 50px;
    height: 100vw;
  }
  .section-info-header .section-title-sub{
    margin-bottom: 5px;
  }
  .section-info-heading{
    margin-bottom: 30px;
    line-height: 1;
    font-size: 3.6rem;
    letter-spacing: .1em;
  }
  .section-info-heading::after{
    width: 200px;
    margin-left: -100px;
  }
  .section-info-header .image{
    margin-bottom: 10px;
  }
  .section-info-header .image img{
    width: 60%;
  }
}
@media (min-width: 768px){
  .section-info-header{
    margin-bottom: 80px;
    background-size: 506px auto;
    padding-top: 66px;
    height: 506px;
  }
  .section-info-header .section-title-sub{
    margin-bottom: 5px;
  }
  .section-info-heading{
    margin-bottom: 30px;
    line-height: 1;
    font-size: 3.6rem;
    letter-spacing: .1em;
  }
  .section-info-heading::after{
    width: 200px;
    margin-left: -100px;
  }
  .section-info-header .image{
    margin-bottom: 10px;
  }
  .section-info-header .image img{
    width: 378px;
  }
}

.info-content .col01 .text02{
  position: relative;
  line-height: 1;
}
.info-content .col01 .text02::after{
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
  display: block;
  background: #f5a5a5;
  width: 100%;
  height: 11px;
}
@media (max-width: 767px){
  .info-content{
    padding-right: 15px;
    padding-left: 15px;
  }
  .info-content .col01 .text01{
    font-size: 1.4rem;
    text-align: center;
  }
  .info-content .col01 .text02{
    font-size: 4rem;
    letter-spacing: .4em;
    text-align: center;
  }
  .info-content .col01 .text03{
    font-size: 1.2rem;
    letter-spacing: .3em;
    text-align: center;
  }
  .info-content .col02 .text{
    font-size: 1.6rem;
    line-height: 1.88;
  }
}
@media (min-width: 768px){
  .section-info{
    margin-bottom: 82px;
  }
  .section-info .container{
    width: 866px;
  }
  .section-info .container.wide{
    width: 920px;
  }
  .info-content{
    display: flex;
    justify-content: space-between;
  }
  .info-content .col01{
    margin-right: 40px;
    flex: 0 0 260px;
    width: 260px;
    max-width: 260px;
  }
  .info-content .col02{
    flex: 1 1 auto;
    width: 100%;
  }
  .info-content .col01 .text01{
    font-size: 1.6rem;
  }
  .info-content .col01 .text02{
    font-size: 4rem;
    letter-spacing: .4em;
    text-align: center;
  }
  .info-content .col01 .text03{
    font-size: 1.2rem;
    letter-spacing: .3em;
  }
  .info-content .col02 .text{
    font-size: 1.6rem;
    line-height: 1.88;
  }
}

.info-box{
  background: #fce5e7;
  border-radius: 10px;
}
.info-box dl{
  margin: 0;
}
.info-box dl dt{
  font-weight: normal;
}
.info-box dl dd ul{
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
}
.info-box dl dd ul li{
  position: relative;
}
.info-box dl dd ul li::before{
  content: "";
  position: absolute;
  top: .35em;
  left: -1.2em; 
  display: block;
  background: #f5a5a5;
  width: 1em;
  height: 1em;
  border-radius: 50%;
}
@media (max-width: 767px){
  .info-box{
    margin: 20px 15px 0 15px;
    padding: 20px 15px;
    font-size: 1.4rem;
  }
}
@media (min-width: 768px){
  .info-box{
    margin-top: 20px;
    padding: 30px 25px;
    font-size: 1.4rem;
  }
  .info-box dl{
    display: flex;
  }
}



/* Contact */
.section-contact-heading{
  background: #f5a5a5;
}
.contact-content .blk .icon{
  text-align: center;
}
.contact-content .blk .icon .label{
  margin: 0;
  text-align: center;
  color: #4b4b4b;
}
.contact-content .blk .icon .image{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #4b4b4b;
  border-radius: 10px;
}
.contact-content .blk .text,
.contact-content .blk .text a{
  color: #4b4b4b;
  text-decoration: none;
}
.contact-content .blk .text-tel,
.contact-content .blk .text-mail{
  font-weight: bold;
}
.contact-notice{
  font-size: 1.2rem;
}
@media (max-width: 767px){
  .section-contact{
    margin-bottom: 60px;
  }
  .section-contact-heading{
    padding: 10px 5px;
    line-height: 1;
    border-radius: 10px 10px 0 0;
    font-size: 1.8rem;
    text-align: center;
  }
  .contact-content .blk{
    display: flex;
    border-bottom: 4px solid #f5a5a5;
    height: 100px;
  }
  .contact-content .blk:first-child{
    border-top: 4px solid #f5a5a5;
  }
  .contact-content .blk .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-basis: 50px;
    width: 50px;
    max-width: 50px;
  }
  .contact-content .blk .icon .label{
    font-size: 1.2rem;
  }
  .contact-content .blk .icon .image{
    width: 40px;
    height: 40px;
  }
  .contact-content .blk .icon .image .icon-tel{
    width: 17px;
  }
  .contact-content .blk .icon .image .icon-mail{
    width: 23px;
  }
  .contact-content .blk .text{
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-content .blk .text-tel{
    font-size: 4rem;
  }
  .contact-content .blk .text-mail{
    font-size: 1.8rem;
  }
  .contact-notice{
    margin-top: 20px;
  }
}
@media (min-width: 768px){
  .section-contact{
    margin-bottom: 160px;
  }
  .section-contact .container{
    width: 680px;
  }
  .section-contact-heading{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    width: 366px;
    height: 40px;
    line-height: 1;
    border-radius: 10px 10px 0 0;
    font-size: 1.8rem;
  }
  .contact-content .blk{
    display: flex;
    border-bottom: 4px solid #f5a5a5;
    height: 134px;
  }
  .contact-content .blk:first-child{
    border-top: 4px solid #f5a5a5;
  }
  .contact-content .blk .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-basis: 96px;
    width: 96px;
    max-width: 96px;
  }
  .contact-content .blk .icon .label{
    font-size: 1.6rem;
  }
  .contact-content .blk .icon .image{
    width: 50px;
    height: 50px;
  }
  .contact-content .blk .icon .image .icon-tel{
    width: 25px;
  }
  .contact-content .blk .icon .image .icon-mail{
    width: 33px;
  }
  .contact-content .blk .text{
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-content .blk .text-tel{
    font-size: 4.8rem;
  }
  .contact-content .blk .text-mail{
    font-size: 3rem;
  }
  .contact-notice{
    margin-top: 20px;
  }
}



