@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*----------------------------------------------------------------------
基本レイアウト
----------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 140%;
  color: #464646;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  font-feature-settings: "palt";
  background-color: white;
  letter-spacing: 0.075rem;
}

#wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  animation-delay: 0s;
}

a,
a img {
  transition: 0.3s all;
}

.sp {
  display: none;
}

.red {
  color: #e60020;
}

.bold {
  font-weight: 500;
}

.left {
  text-align: left;
}

/*----------------------------------------------------------------------
共通
----------------------------------------------------------------------*/
.row {
  display: flex;
}

.inner {
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
}

.border-top {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #231815;
}

.subat {
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: justify;
}

.blue_txt {
  color: #008ba3;
  display: block;
}

.subat2 {
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: justify;
  border: 1px solid #4d4d4d;
  background: white;
  padding: 8px;
}

.subat2 span {
  color: #e60012;
  font-weight: 500;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.sub_image {
  text-align: center;
  margin: 0 auto;
  line-height: 0;
}

/*----------------------------------------------------------------------
ヘッダー
----------------------------------------------------------------------*/
header {
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  background: #231815;
}

.logo {
  width: min(350px, 60vw);
  margin: 0 auto;
  padding: 10px 0;
  line-height: 0;
}

.logo a:hover {
  opacity: 0.7;
}

.bg_btm {
  position: relative;
  padding-bottom: 15vw;
  padding-top: 40px;
}
@media screen and (max-width: 600px) {
  .bg_btm {
    padding-bottom: 25vw;
  }
}
.bg_btm::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 50/7;
}

.mv {
  line-height: 0;
  padding: 0;
}
.mv::before {
  background: url(../images/mv_bg_btm.svg) no-repeat center center/cover;
}
.mv img {
  width: 100%;
}

.ttl {
  margin-bottom: 1.5rem;
}
.ttl img {
  height: 40px;
}
@media screen and (max-width: 600px) {
  .ttl img {
    height: 30px;
  }
}

.sec_block:not(:first-child) {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .sec_block:not(:first-child) {
    margin-top: 50px;
  }
}

.more_btn {
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  padding: 6px;
  transition: 0.3s all;
  box-sizing: border-box;
}
.more_btn a {
  height: 100%;
  width: 100%;
  display: block;
  padding: 30px 50px;
}
@media screen and (max-width: 600px) {
  .more_btn a {
    padding: 15px 15px 10px;
  }
}
@media screen and (max-width: 600px) {
  .more_btn {
    border-radius: 10px;
  }
}
.more_btn._white {
  background: white;
  border: #4ea2b2 1px solid;
  box-shadow: 0 0 0 8px white, 0 18px 0 #078ab4;
}
.more_btn._white:hover {
  box-shadow: 0 0 0 8px white;
}
@media screen and (max-width: 600px) {
  .more_btn._white {
    box-shadow: 0 0 0 4px white, 0 10px 0 #078ab4;
  }
  .more_btn._white:hover {
    box-shadow: 0 0 0 4px white;
  }
}
.more_btn._green {
  background: #4ea2b2;
  border: white 1px solid;
  box-shadow: 0 0 0 8px #4ea2b2, 0 18px 0 #078ab4;
}
.more_btn._green:hover {
  box-shadow: 0 0 0 8px #4ea2b2;
}
@media screen and (max-width: 600px) {
  .more_btn._green {
    box-shadow: 0 0 0 4px #4ea2b2, 0 10px 0 #078ab4;
  }
  .more_btn._green:hover {
    box-shadow: 0 0 0 4px #4ea2b2;
  }
}
.more_btn._red {
  background: #f0001e;
  border: white 1px solid;
  box-shadow: 0 0 0 8px #f0001e, 0 18px 0 #a0020e;
}
.more_btn._red:hover {
  box-shadow: 0 0 0 8px #f0001e;
}
@media screen and (max-width: 600px) {
  .more_btn._red {
    box-shadow: 0 0 0 4px #f0001e, 0 10px 0 #a0020e;
  }
  .more_btn._red:hover {
    box-shadow: 0 0 0 4px #f0001e;
  }
}
.more_btn._blue {
  background: #008bd5;
  border: white 1px solid;
  box-shadow: 0 0 0 8px #008bd5, 0 18px 0 #05679f;
}
.more_btn._blue:hover {
  box-shadow: 0 0 0 8px #008bd5;
}
@media screen and (max-width: 600px) {
  .more_btn._blue {
    box-shadow: 0 0 0 4px #008bd5, 0 10px 0 #05679f;
  }
  .more_btn._blue:hover {
    box-shadow: 0 0 0 4px #008bd5;
  }
}
.more_btn img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .more_btn img {
    width: auto;
    max-height: 58px;
  }
}

.more_txt {
  display: inline-block;
  margin-top: 15px;
}

.more_txt img {
  width: min(250px, 60vw);
}

.more_btn a span {
  color: #eace76;
}

.more_btn:hover,
.more_btn2:hover {
  margin-top: 7px;
  margin-bottom: -7px;
  opacity: 0.8;
}

hr {
  margin: 0;
  padding: 25px 0;
  border: none;
  height: 0;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------------------------
コンテンツ
----------------------------------------------------------------------*/
#contents {
  clear: both;
  width: 100%;
  text-align: center;
}

.section {
  padding: 120px 0;
}

/*
 * lp_box
 */
.lp_box::before {
  background: url(../images/lp_box_bg_btm.svg) no-repeat center center/cover;
}
.lp_box .sub_ttl {
  width: 500px;
  max-width: 70%;
  margin: 4rem auto 0;
}
@media screen and (max-width: 600px) {
  .lp_box .sub_ttl {
    margin: 2rem auto 0;
  }
}

.lp_box_list li {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .lp_box_list li {
    margin-bottom: 60px;
  }
  .lp_box_list li:last-child {
    margin-bottom: 0;
  }
}

/*
 * lp_box2
 */
.lp_box2 {
  background: #0068b6;
  color: white;
}
.lp_box2::before {
  background: url(../images/mv_bg_btm.svg) no-repeat center center/cover;
}
.lp_box2 .sub_txt {
  margin-top: 2rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .lp_box2 .sub_txt {
    margin-top: 0;
  }
}
.lp_box2 .subat {
  margin: 1.5rem 0;
}
@media screen and (max-width: 600px) {
  .lp_box2 .subat {
    margin: 1rem 0;
  }
}

.lp_box2_list li {
  margin-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .lp_box2_list li {
    margin-bottom: 1.5rem;
  }
}

/*
 * lp_box3
 */
.lp_box3::before {
  background: url(../images/lp_box3_bg_btm.svg) no-repeat center center/cover;
}

.lp_box3_list li {
  margin-bottom: 8rem;
}
@media screen and (max-width: 600px) {
  .lp_box3_list li {
    margin-bottom: 4rem;
  }
  .lp_box3_list li:last-child {
    margin-bottom: 0;
  }
}

/*
 * lp_box4
 */
.lp_box4 {
  background: #dcecf0;
}
.lp_box4::before {
  background: url(../images/mv_bg_btm.svg) no-repeat center center/cover;
}
.lp_box4 .subat {
  margin-top: 5rem;
}
@media screen and (max-width: 600px) {
  .lp_box4 .subat {
    margin-top: 3rem;
  }
}

.lp_box4_list li:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 600px) {
  .lp_box4_list li:not(:last-child) {
    margin-bottom: 4rem;
  }
}

/*
 * lp_box5
 */
.lp_box5::before {
  background: url(../images/lp_box3_bg_btm.svg) no-repeat center center/cover;
}
.lp_box5 .subat {
  margin: 1rem 0;
}
.lp_box5 .sub_txt {
  text-align: left;
}
.lp_box5 .sub_txt._red {
  color: #f0001e;
}

.lp_box5_list li:not(:last-child) {
  margin-bottom: 6rem;
}
@media screen and (max-width: 600px) {
  .lp_box5_list li:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.lp_box5_list .sub_img {
  padding-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .lp_box5_list .sub_img {
    padding-bottom: 2rem;
  }
}

/*
 * lp_box6
 */
.lp_box6 {
  background: #dcecf0;
  padding-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .lp_box6 {
    padding-bottom: 50px;
  }
}

.lp_box6_list {
  padding-bottom: 3rem;
}
@media screen and (max-width: 600px) {
  .lp_box6_list {
    padding-bottom: 2rem;
  }
}
.lp_box6_list li:not(:last-child) {
  margin-bottom: 4rem;
}

.ban {
  margin: 6rem 0 0;
}
@media screen and (max-width: 600px) {
  .ban {
    margin: 4rem 0 0;
  }
}
.ban a {
  transition: 0.3s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.ban a:hover {
  opacity: 0.7;
}

/*
 * shop_box
 */
.shop_box {
  width: 950px;
  max-width: 90%;
  margin: 0 auto;
}
.shop_box .border-txt {
  margin-top: 100px;
  font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
  letter-spacing: 0.5rem;
  border: 1px solid #231815;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .shop_box .border-txt {
    margin-top: 60px;
    letter-spacing: 0.2rem;
  }
}

.shop_box .sub_txt {
  line-height: 1.4;
  text-align: left;
  margin-bottom: 5px;
}

.sub_txt span {
  color: #e60020;
}

.shop_ttl {
  margin-top: 40px;
  font-size: clamp(2rem, 1.631rem + 1.64vw, 3.6rem);
  line-height: 1.4;
  margin-bottom: 20px;
  color: #595757;
}

.shop_ttl span {
  color: #e60020;
}

.shop_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -40px;
}

.shop_list li {
  width: calc(25% - 40px);
  margin-left: 40px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.shop_list address {
  color: #595757;
  font-style: normal;
  padding: 10px 0;
}

.tel {
  font-weight: bold;
  font-size: 1.8rem;
}

.shop_btn:hover,
.top_link_btn a:hover {
  opacity: 0.5;
}

.shop_btn {
  margin-top: auto;
  position: relative;
  font-size: clamp(1.6rem, 1.508rem + 0.41vw, 2rem);
  display: block;
  background: #e60020;
  color: white;
  font-weight: bold;
  padding: 8px 0;
  border-radius: 50px;
}

.shop_btn::before {
  position: absolute;
  content: "";
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
}

.top_link_btn {
  margin-bottom: 5px;
}

/*----------------------------------------------------------------------
フッター
----------------------------------------------------------------------*/
/*
 * backtotop
 */
.backtotop {
  position: fixed;
  right: 0px;
  bottom: 0px;
  z-index: 3000;
  text-indent: -9999px;
  display: none;
}

.backtotop a {
  position: relative;
  display: block;
  width: 65px;
  height: 65px;
  background: rgba(0, 0, 0, 0.8);
  transition: opacity 0.6s ease;
}

.backtotop a:hover {
  opacity: 0.6;
}

.backtotop a::before {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  content: "";
  transform: rotate(-45deg);
  border-top: 1px solid white;
  border-right: 1px solid white;
}

/*
 * footer
 */
footer {
  clear: both;
  text-align: center;
  margin: 80px auto 0;
  width: 100%;
  padding: 0;
}

/*
 * Copyright
 */
p.copy {
  clear: both;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 25px 0 25px 0;
  color: white;
  background-color: #000;
}

@media screen and (max-width: 834px) {
  .sp {
    display: block;
  }
  header {
    padding: 5px 0;
  }
  .subat,
  .subat2 {
    font-size: 1.2rem;
  }
  hr {
    padding: 15px 0;
  }
  /*
  * shop_list
  */
  .shop_ttl {
    margin-top: 40px;
  }
  .shop_list ul {
    margin-left: -20px;
  }
  .shop_list li {
    width: calc(33.3333333333% - 20px);
    margin-left: 20px;
  }
  .shop_list address {
    padding: 8px 0;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .tel {
    font-size: 1.6rem;
  }
  .backtotop img {
    vertical-align: bottom;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
  }
}
@media screen and (max-width: 480px) {
  .more_txt {
    margin-top: 10px;
  }
  .more_txt img {
    width: 50vw;
  }
  .present_block .sub_txt {
    font-size: 1.2rem;
    margin: 0.25rem auto 2rem;
  }
  .shop_list li {
    width: calc(50% - 20px);
  }
}/*# sourceMappingURL=common.css.map */