@charset "UTF-8";
/* ===================================
フォント指定
=================================== */
body {
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho",
 "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  overflow-wrap: break-word;
}

input,
textarea,
select,
button {
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho",
 "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

strong,
b {
  font-weight: bold;
}

video {
  width: 100%;
}

.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: bold;
  font-weight: 700;
}

/* 日本語フォント */
.ja {
  font-family: "Noto Serif JP", "Yu Mincho Light", "YuMincho", "Yu Mincho",
 "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

/* 英語フォント */
.en {
  font-family: "Playfair Display", serif;
}

/* ===================================
その他共通
=================================== */
a {
  color: inherit;
}

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

.list-styled {
  list-style-type: disc;
  padding-left: 1.5em;
}

.line-through{
    text-decoration: line-through;
}

/* ===================================
パンくずリスト
=================================== */
.pankuzu {
  max-width: 1440px;
  margin: 0px auto 80px;
  padding: 0 20px 10px;
  font-size: 12px;
  color: #aaa;
}

.pankuzu li {
  display: inline-block;
}

.pankuzu li span {
  margin: 0 2px 0 5px;
  vertical-align: 1px;
  letter-spacing: 0;
}

.pankuzu li a {
  text-decoration: underline;
  -webkit-text-decoration-color: #ccc;
          text-decoration-color: #ccc;
}

.pankuzu li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .pankuzu {
    overflow-x: auto;
    word-break: keep-all;
    white-space: nowrap;
  }
}

@media screen and (max-width: 600px) {
  .pankuzu {
    margin-bottom: 30px;
    font-size: 10px;
  }
}

/* ===================================
ヘッダー
=================================== */
header {
  width: 100%;
  z-index: 7;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  color: #271713;
  letter-spacing: 0;
}

.header-inner .logo {
  max-width: 200px;
}

.header-inner .logo img {
  display: block;
}

.header-inner .nav {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-inner .nav nav.main-nav {
  max-width: 855px;
  margin: 0 auto;
}

.header-inner .nav nav.main-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-inner .nav nav.main-nav > ul > li > a {
  display: block;
  line-height: 35px;
  padding: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-inner .nav nav.main-nav > ul > li > a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-left: 5px;
  vertical-align: 1px;
}

.header-inner .nav nav.main-nav > ul > li > a:hover {
  opacity: 0.7;
}

.header-inner .nav nav.main-nav .main-nav-top {
  font-size: 13px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 3px;
}

.nav-sp-wrap,
.sp-btn {
  display: none;
}

/* 後から降りてくる */
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #f5f5f5;
}

/* サブメニュー */
.header-inner .nav nav ul .submenu {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  min-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: -1;
  padding: 60px 20px 0;
}

.header-inner .nav nav ul .submenu .submenu-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.header-inner .nav nav ul .submenu.active {
  min-height: auto;
  height: auto;
  padding: 80px 20px 30px;
  background: #f5f5f5;
}

.header-inner .nav nav ul .submenu .submenu-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-inner .nav nav ul .submenu .submenu-flex > li:not(:last-of-type) {
  margin-right: 50px;
}

.header-inner .nav nav ul .submenu .submenu-inner .submenu-list > a {
  background-color: #fff;
}

.header-inner .nav nav ul .submenu .submenu-flex li a {
  display: block;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-inner .nav nav ul .submenu .submenu-flex li a:hover {
  opacity: 0.7;
}

/* fixed-btn */
.fixed-btn {
  position: fixed;
  bottom: 60px;
  right: 0;
  z-index: 60;
}

.fixed-btn > div a {
  display: block;
  height: 30px;
  width: 150px;
  background-color: #f5f5f5;
  text-align: center;
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 12px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fixed-btn > div a:hover {
  opacity: 0.7;
}

.fixed-btn-sp {
  display: none;
}

.header-icon {
  display: none;
}

@media screen and (max-width: 1350px) {
  .header-inner .nav nav.main-nav {
    max-width: 100%;
  }
  .header-inner .nav nav.main-nav > ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: 0 !important;
  }
}

@media screen and (max-width: 1200px) {
  header {
    background: white;
  }
  header.fixed {
    background-color: #fff;
  }
  .header-inner {
        padding: 12px;
        border-top: 8px solid #333;
  }
.header-icon {
  display: block;
}
    a.header-cart {
      position: absolute;
      left: 54px;
      margin-top: 2px;
    }
  
    a.header-tel {
      position: absolute;
      right: 50px;
      margin-top: 5px;
      z-index: 5;
    }
  
    a.header-contact {
      position: absolute;
      right: 20px;
    }

    .header-inner .logo {
      left: 50%;
      position: relative;
      transform: translateX(-50%);
    }
  /*     height: 50px;
    position: fixed; */
  .header-inner .nav {
    display: none;
  }
  .sp-btn {
    display: block;
    height: 36px;
    width: 24px;
    position: fixed;
    top: 10px;
    left: 18px;
    z-index: 100;
    cursor: pointer;
  }
  .nav-sp-wrap {
    display: block;
  }
  .modal {
    position: fixed;
    margin: 0 auto;
    padding: 0px 20px;
    position: fixed;
    bottom: 50%;
    right: 50%;
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
    width: 100%;
    max-width: 650px;
    z-index: 101;
  }
  .modal_inner {
    background-color: #fff;
    padding: 50px 20px;
    position: relative;
  }
  .overlay {
    display: none;
    background: rgba(0, 0, 0, 0.7);
    width: 100% !important;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .modal .close {
    position: absolute;
    top: 5px;
    right: 32px;
    font-size: 25px;
  }
  .modal .ttl {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .modal .btn-tel {
    text-align: center;
  }
  .modal .btn-tel a {
    max-width: 335px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #444444;
    padding: 15px 10px;
    display: block;
    background: #fff;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.1em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .modal .btn-tel a:hover {
    background: #444;
    color: #fff;
  }
  .modal .btn-tel a::before {
    content: "";
    display: inline-block;
    background: url(../img/common/ico-tel.png) center center no-repeat;
    background-size: contain;
    width: 17px;
    height: 24px;
    position: absolute;
    left: 87px;
    top: 13px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .modal .btn-tel a:hover::before {
    background: url(../img/common/ico-tel-w.png) center center no-repeat;
    background-size: contain;
  }
  .modal .btn-tel span {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
  }
  .modal .box01 {
    margin-bottom: 30px;
  }
.sp-btn span {
  display: block;
  width: 15px;
  height: 1px;
  background-color: #333;
  position: absolute;
  right: 5px;
}
  .sp-btn span:nth-child(1) {
    top: 13px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sp-btn span:nth-child(2) {
    top: 23px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sp-btn span:nth-child(3) {
    top: 18px;
  }
  .sp-btn.open span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    background: #000;
  }
  .sp-btn.open span:nth-child(2) {
    top: 15px;
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    background: #000;
  }
  .sp-btn.open span:nth-child(3) {
    display: none;
  }
  #popup-wrapper {
    position: fixed;
    top: 0;
    background: white;
    /*     background: linear-gradient(
      92deg,
      rgba(255, 255, 255, 1) 30%,
      #3c5995 100%,
      #3c5995 100%
    ); */
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 50;
    -webkit-transform: translateY(-105%);
            transform: translateY(-105%);
  }
  #popup-wrapper.open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .nav-sp-wrap > .inner {
    padding: 14px 20px 200px;
    border: 3px solid #000;
  }
  .nav-sp-wrap > .inner > figure {
max-width: 240px;
  margin: 0px auto;
  text-align: center;
  }
  .nav-sp-wrap a {
    display: block;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .nav-sp-wrap a:hover {
    opacity: 0.7;
  }
  .nav-sp > ul > li {
    border-bottom: 1px solid #f0f0f0;
    position:relative;
    padding-left:33px;
  }
    .nav-sp > ul > li::before {
  content: '';
    display: block;
    width: 25px;
    height: 25px;
    position: absolute;
    left: unset;
    top: 20px;
    right: 3px;
    width: 4px;
    height: 4px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    }
    .nav-sp > ul > li:nth-of-type(3)::before ,.nav-sp > ul > li:nth-of-type(4)::before{
      display:none;
    }

  .nav-sp .submenu-list {
    text-align: right;
  }
  .nav-sp .submenu-list > ul {
    display: none;
  }
  .nav-sp-wrap a {
    position: relative;
  }
  .nav-sp-wrap a.r-arrow::after {
    content: "";
    position: absolute;
    top: 30%;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(135deg) translateY(-60%);
            transform: rotate(135deg) translateY(-60%);
    right: 24px;
  }
  .nav-sp-wrap .arrow {
    display: inline-block;
    height: 40px;
    width: 40px;
    margin-left: auto;
    position: relative;
  }
  .nav-sp-wrap .arrow::after {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    right: 20px;
    top: 35%;
    display: inline-block;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(135deg) translateY(-60%);
            transform: rotate(135deg) translateY(-60%);
  }
  .nav-sp-wrap .toggle_title,
  .nav-sp-wrap .sub-toggle_title {
    margin-right: 50px;
    padding: 20px;
  }
  .nav-sp-wrap .toggle_title .arrow,
  .nav-sp-wrap .sub-toggle_title .arrow {
    right: -28px;
  }
  .nav-sp-wrap .toggle_title.open .arrow,
  .nav-sp-wrap .sub-toggle_title.open .arrow {
    -webkit-transform: rotate(315deg) translateY(-60%);
            transform: rotate(315deg) translateY(-60%);
    top: 50%;
  }
  .toggle_title + .submenu {
    display: none;
  }
  .fixed-btn {
    display: none;
  }
  .fixed-btn-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    padding-bottom: calc(env(safe-area-inset-bottom));
    justify-content: space-between;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    }
  .fixed-btn-sp > div:not(.modal) {
    width: 33%;
  }
  .fixed-btn-sp > div:not(:last-child) {
    justify-content: space-between;
  }
  .fixed-btn-sp > div a {
    display: block;
  }
  .fixed-btn-sp > div a i {
    color: #000;
  }
  .fixed-btn-sp > div a span {
    display: block;
    padding: 10px 0;
  }
}

@media screen and (max-width: 600px) {
  /*.fixed-btn-sp > div:nth-child(1),
  .fixed-btn-sp > div:nth-child(2) {
    width: calc(100% / 6);
  }*/
  /*.fixed-btn-sp > div:nth-child(3),
  .fixed-btn-sp > div:nth-child(4) {
    width: calc(100% / 3);
  }*/
}

@media screen and (max-width: 420px) {
  .modal .btn-tel a::before {
    left: calc(50% - 75px);
  }
}

/* ===================================
SPハンバーガー内アコーディオン
=================================== */
.sp-aco {
  margin-bottom: 20px;
}

.sp-aco_ttl {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sp-aco_list li a {
  padding: 0px 20px 20px 30px;
}

.sp-aco_plus1,
.sp-aco_plus2 {
  position: absolute;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #000;
}

.sp-aco_plus1 {
  top: 50%;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sp-aco_plus2 {
  top: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

/*＋、－切り替え*/
.sp-aco_ttl.active .sp-aco_plus1 {
  display: none;
}

.sp-aco_ttl.active .sp-aco_plus2 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* ===================================
ドロップリスト
=================================== */
.drop-list {
  /*   opacity: 0;
 */
  /*   visibility: hidden;
 */
  position: absolute;
  min-width: 150px;
  padding-top: 0px;
  display: none;
  z-index: 10;
}

.drop-list .drop-list_inner {
  padding: 20px;
  background: #fff;
  color: #000;
  /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2); */
}

.drop-list .drop-list_inner .drop-list_item {
  margin-bottom: 10px;
}

.drop-list .drop-list_inner .drop-list_item:last-child {
  margin-bottom: 0;
}

.drop-list .drop-list_inner .drop-list_item a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.drop-list .drop-list_inner .drop-list_item a:hover {
  opacity: 0.7;
}

.drop-list .ttl {
  margin-bottom: 15px;
  font-size: 12px;
  color: #aaaaaa;
}

.drop-list .inlist {
  margin-bottom: 25px;
}

.drop-list a {
  color: #000;
}

/* ===================================
sec06(フッターナビゲーションエリア)
=================================== */
.sec06-contents ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* padding-top: 40px; */
}

.sec06-contents ul li {
  width: calc(100% / 3);
}

@media all and (-ms-high-contrast: none) {
  .sec06-contents ul li {
    width: 33.3%;
  }
}

.sec06--page .sec06-contents ul li {
  width: 50%;
}

.sec06-contents ul li a {
  display: block;
  text-align: center;
  height: 278px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.sec06-contents ul li a:hover {
  opacity: 0.7;
}

.sec06-contents ul li a .ttl {
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 15px;
  font-weight: bold;
}

.sec06-contents ul li a .ttl::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 200px;
  background-color: #000;
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  bottom: 7px;
}

.sec06-contents ul li a img {
  max-width: 200px;
  margin: 10px auto;
}

.sec06-contents ul li:nth-child(1) a {
  background: url(../img/menu-img01.jpg) no-repeat center/cover;
}

.sec06-contents ul li:nth-child(2) a {
  background: url(../img/menu-img02.jpg) no-repeat center/cover;
}

.sec06-contents ul li:nth-child(3) a {
  background: url(../img/menu-img03.jpg) no-repeat center/cover;
}

.sec06-contents ul li:nth-child(4) a {
  background: url(../img/menu-img04.jpg) no-repeat center/cover;
}

.sec06-contents ul li:nth-child(5) a {
  background: url(../img/menu-img05.jpg) no-repeat center/cover;
}

.sec06-contents ul li:nth-child(6) a {
  background: url(../img/menu-img06.jpg) no-repeat center/cover;
}

@media screen and (max-width: 1000px) {
  .sec06-contents ul li {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 768px) {
  .sec06-contents ul li {
    width: 100%;
    margin-bottom: 0;
  }
  .sec06--page .sec06-contents ul li {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .sec06-contents ul {
    padding-top: 20px;
  }
  .sec06-contents ul li a {
    height: 200px;
  }
}

/* ===================================
フッター
=================================== */
footer {
  background-color: #fff;
}

footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.f-box02 li a[target="_blank"]:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-left: 5px;
  vertical-align: 1px;
}

footer a:hover {
  opacity: 0.7;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-inner .f-box01,
.footer-inner .f-box02 {
  width: calc((100% - 30px) / 4);
  margin-right: 15px;
}

.footer-inner .f-box01 {
  margin-right: 30px;
}

.footer-inner .f-box02 {
  font-weight: bold;
}

.footer-inner .f-box03 {
  width: calc((100% - 30px) / 2);
}

.footer-inner .f-box01 .logo a {
  display: block;
}

.footer-inner .f-box01 .logo {
  margin-bottom: 50px;
  max-width: 300px;
  font-family: "Lato", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0;
}

.footer-inner .f-box01 .logo img {
  width: 90px;
}

.footer-inner .f-box01 .logo p {
  font-size: 10px;
  font-weight: bold;
  margin-left: 10px;
  color: gray;
}

.footer-inner .f-box01 .logo p span {
  font-weight: normal;
}

.footer-inner .sns i {
  color: #000;
}

.footer-inner .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.footer-inner .sns-list > p {
  width: 160px;
  line-height: 26px;
  padding-bottom: 10px;
}

.footer-inner .sns-list > a {
  letter-spacing: 0.1em;
  display: block;
  height: 25px;
  width: 25px;
  margin-right: 5px;
  cursor: pointer;
}

.footer-inner .sns-list > p > img{
    width:25%;
    vertical-align: middle;
    margin-right: 5px;"
}

.footer-inner .sns-list:not(:last-child) > a {
  margin-bottom: 10px;
}

.footer-inner .f-box li {
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-inner .f-box .menu {
  margin-bottom: 30px;
}

.footer-inner .f-box02 li {
  margin-bottom: 10px;
}

.footer-inner .f-box02 li .inlist {
  padding-left: 1em;
}

.footer-inner .f-box02 li p {
  margin-bottom: 10px;
}

.footer-inner .f-box03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer-inner .f-box03 .menu > p {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-inner .f-box03 .menu ul {
  font-size: 12px;
}

.footer-inner .f-box03 > div {
  width: calc((100% - 10px) / 2);
}

.footer-inner .f-box03 > div:first-child {
  margin-right: 10px;
}

@media screen and (max-width: 1000px) {
  .footer-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-inner .f-box01,
  .footer-inner .f-box02 {
    width: calc((100% - 30px) / 2);
  }
  .footer-inner .f-box02 {
    margin-right: 0;
  }
  .footer-inner .f-box03 {
    width: 100%;
    margin-top: 50px;
  }
}

@media screen and (max-width: 600px) {
  .footer-inner {
    padding-bottom: 0;
    padding-top: 30px;
  }
  .footer-inner .f-box01,
  .footer-inner .f-box02 {
    width: 100%;
    margin-right: 0;
  }
  .footer-inner .f-box01 .logo {
    margin: 0 auto 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
    .footer-inner .sns_wrapper{
    padding: 20px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    }
  .footer-inner .sns {
      margin: 0 auto;
      width: max-content;
  }
  .footer-inner .sns-list {
    /* margin-left: calc(50% - 100px); */
  }
  .footer-inner .f-box02 .f-box02-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 20px;
    margin-bottom: 15px;
  }
  .footer-inner .f-box02 .f-box02-01 > ul {
    width: calc(98% / 2);
  }
  .footer-inner .f-box02 .f-box02-02 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid;
    padding-top: 21px;
    border-top: 1px solid;
    padding-bottom: 10px;
  }
  .footer-inner .f-box02 .f-box02-02 li {
    width: calc(98% / 2);
  }
  .footer-inner .f-box03 {
    margin-top: 10px;
  }
}

.copy {
  padding-bottom: 30px;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1200px) {
  .copy {
    margin-bottom: 55px;
  }
}

.scroll {
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.hide {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.photoWrap {
  opacity: 0;
  width: 0%;
  height: 100%;
  background-color: #fafafa;
  padding: 5px;
}

.photoWrap .blue {
  position: relative;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.photoWrap .blue::after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  width: 120%;
  height: 120%;
  background: url(../img/fv-img-bg.png) no-repeat top left/contain;
  top: -35px;
  left: -35px;
  -webkit-animation: fade 0.3s both;
          animation: fade 0.3s both;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.photoInner {
  /* width: 0%; */
  height: 100%;
  /* overflow: hidden; */
  position: relative;
  z-index: 5;
}

.photoInner img {
  width: inherit;
}

.hWrap {
  opacity: 0;
  width: 0%;
}

.hInner {
  overflow: hidden;
  width: 0%;
}

.pic {
  width: 100%;
}

/* セクションごと
==============================　*/
.sec {
  padding-bottom: 80px;
  margin-top: -110px;
  padding-top: 110px;
  /*   padding-top: 0; */
}

.sec_inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec-ttl-wrap {
  background: url(../img/common/ttl.jpg) center center no-repeat;
  background-size: cover;
  margin-bottom: 80px;
  padding: 23px 10px;
  min-height: 105px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-ttl-wrap01 {
  background: url(../img/common/ttl001.png) center center/cover no-repeat;
}

.sec-ttl-wrap02 {
  background: url(../img/common/ttl002.png) center center/cover no-repeat;
}

.sec-ttl-wrap03 {
  background: url(../img/common/ttl003.png) center center/cover no-repeat;
}

.sec-ttl-wrap04 {
  background: url(../img/common/ttl004.png) center center/cover no-repeat;
}

.sec-ttl-wrap.none {
  background: none;
}

.sec-ttl-wrap--2 {
  padding: 25px 0;
}

.sec-ttl {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.sec-ttl span {
  display: block;
}

.sec-ttl .main {
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: bold;
  letter-spacing: 0.12em;
  position: relative;
}

.sec-ttl .sub {
  font-size: 10px;
}

.sec-ttl-wrap.none .main:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 200px;
  height: 2px;
  background: url(../img/common/line-bl.png) center center no-repeat;
  background-size: cover;
}

.sec-subttl {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .sec {
    padding-top: 50px;
    margin-top: -50px;
  }
}

@media screen and (max-width: 600px) {
  .sec {
    padding-bottom: 80px;
  }
  .sec-ttl-wrap {
    margin-bottom: 30px;
    min-height: 100px;
  }
  .sec-ttl-wrap01 {
    background: url(../img/common/ttl001-sp.png) center center/cover no-repeat;
  }
  .sec-ttl-wrap02 {
    background: url(../img/common/ttl002-sp.png) center center/cover no-repeat;
  }
  .sec-ttl {
    font-size: 18px;
  }
  .normal-ttl {
    margin-bottom: 30px;
    font-size: 18px;
    text-align: center;
  }
}

/* ページヘッダー
==============================　*/
.page-header {
  margin-bottom: 60px;
}

.page-header .page-fv {
  margin-bottom: 25px;
  position: relative;
  /*       content: "";
      position: absolute;
      width: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: radial-gradient(transparent, #fff); */
}

.page-header .sec-ttl {
  font-size: 24px;
}

.page-header--2 {
  margin-top: 150px;
}

@media screen and (max-width: 600px) {
  .page-header {
    margin-bottom: 20px;
  }
  .page-header .sec-ttl {
    font-size: 22px;
  }
  .page-header--2 {
    margin-top: 100px;
  }
}

/* 料金一覧
==============================　*/
.price-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
  justify-content: center;
}

.price-box-wrap .ttl {
  background-color: #fafafa;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.price-box-wrap .price-box {
  width: 25%;
  margin-bottom: 60px;
  padding-right: 15px;
  padding-left: 15px;
  margin-top: -110px;
  padding-top: 110px;
}

.price-box-wrap .price-box .icon {
  max-width: 80px;
  margin: 0 auto 10px;
}

.price-box-wrap .price-box ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.price-box-wrap .price-box li {
  width: 100%;
  margin-bottom: 10px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 1.66666;
}

.price-box-wrap .price-box li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price-box-wrap .price-box li a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1000px) {
  .price-box-wrap .price-box {
    margin-top: -50px;
    padding-top: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .price-box-wrap .price-box {
    width: 50%;
  }
  .price-box-wrap .price-box li {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .sec-price .price-box-wrap {
    margin-bottom: 0px;
  }
  .price-box-wrap .price-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .price-box-wrap .ttl {
    padding: 10px 0;
    margin-bottom: 10px;
  }
}

/* ===================================
メニュー一覧
=================================== */
.menu-link {
  margin: 0 -10px 50px;
  padding-top: 110px;
  margin-top: -110px;
}

.menu-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu-link li {
  width: 20%;
  padding: 0 10px;
  margin-bottom: 30px;
}

.menu-link li a {
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menu-link li a:hover {
  opacity: 0.7;
}

.menu-link ul li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu-link ul li div img {
  max-width: 50px;
  margin-right: 15px;
}

@media screen and (max-width: 1200px) {
  .menu-link {
    padding-top: 50px;
    margin-top: -50px;
  }
}

@media screen and (max-width: 768px) {
  .menu-link ul li div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .menu-link ul li div img {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .menu-link ul li {
    width: 33.33333%;
  }
}

@media screen and (max-width: 600px) {
  .menu-link {
    margin-bottom: 40px;
  }
  .menu-link ul {
    margin-top: 40px;
    margin-bottom: 50px;
    margin: 0 -5px;
  }
  .menu-link ul li {
    padding: 0 5px;
    margin-bottom: 20px;
    font-size: 10px;
  }
}

/* ===================================
料金表テーブル
=================================== */
.price-table-ttl {
  background-color: #fafafa;
  font-weight: bold;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 20px;
}

.price-table-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.price-table-wrap .box {
  margin-bottom: 80px;
}

.price-table-wrap .box:last-child {
  margin-bottom: 0;
}

.price-table-wrap .inner {
  margin-bottom: 20px;
}

.price-table-wrap .inner:last-child {
  margin-bottom: 0;
}

.price-table-wrap .sup {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.8;
}

.price-table-wrap .cam-txt {
  line-height: 1.66666;
  margin-bottom: 20px;
  font-weight: bold;
}

.price-table-inttl {
  position: relative;
  padding-top: 110px;
  margin-top: -110px;
  /* margin-bottom: 20px; */
  padding-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.price-table-inttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 100%;
  height: 2px;
  background: url(../img/common/line.png) center center no-repeat;
  background-size: cover;
}

.price-table-catttl {
  padding: 10px;
  background-color: #444444;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.price-table {
  border: 1px solid #dddddd;
  border-collapse: collapse;
  width: 100%;
}

.price-table th,
.price-table td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
}

.price-table th {
  color: #888888;
  text-align: left;
}

.price-table td {
  text-align: right;
}

.price-table th {
  background-color: #f6f6f6;
}

.price-table--3col tr:first-child th {
  text-align: center;
}

.price-table--3col tr:first-child th:not(:first-child) {
  width: 20%;
}

.price-table--3col th {
  width: 40%;
}

.price-table--3col td {
  width: 30%;
}

.price-table--2col th {
  width: 80%;
}

.price-table--2col td {
  width: 20%;
}

@media screen and (max-width: 600px) {
  .price-table-wrap .box {
    margin-bottom: 60px;
  }
  .price-table-wrap .sup {
    font-size: 10px;
  }
  .price-table-inttl {
    padding-top: 50px;
    margin-top: -50px;
    font-size: 14px;
    margin-bottom: -20px;
  }
  .price-table {
    margin-bottom: 20px;
  }
  .price-table th,
  .price-table td {
    font-size: 10px;
  }
  .price-table--2col th {
    width: 20%;
  }
  .price-table--2col td {
    width: 40%;
  }
  .price-table--2col th {
    width: 67%;
  }
  .price-table--2col td {
    width: 33%;
  }
  .inner--auto {
    overflow-x: auto;
    /*     word-break: keep-all;
    white-space: nowrap; */
  }
  .price-table-scroll {
    width: 600px;
  }
}

/* ===================================
症例ボックス
=================================== */
.case-box-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -20px;
}

.case-box {
  width: 50%;
  padding: 0 20px;
  margin-bottom: 60px;
}

.case-box > .inner {
  height: 100%;
  padding: 20px;
  background: rgba(234, 234, 237, 0.9);
}

.case-box .case-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  margin-bottom: 30px;
}

.case-box .case-img .item {
  width: 50%;
  padding: 0 10px;
}

.case-box .case-img figcaption {
  text-align: center;
  margin-top: 5px;
}

.case-box .ttl {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  letter-spacing: 0.1em;
}

.case-box .ttl span {
  display: block;
}

.case-box .ttl .sub {
  margin-bottom: 5px;
  font-size: 14px;
}

.case-box .ttl .main {
  font-size: 16px;
  font-weight: bold;
}

.case-box .ttl:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  width: 100%;
  height: 2px;
  background: url(../img/common/line.png) center center no-repeat;
  background-size: cover;
}

.case-box .ttl--sp {
  display: none;
}

.case-box .ttl--pc {
  display: block;
}

.case-box .btn-default {
  margin-top: 20px;
}

.case-box:nth-child(even) {
  margin-top: 50px;
}

.case-table {
  line-height: 1.8;
}

.case-table > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.case-table dt {
  width: 120px;
  margin-right: 30px;
  font-weight: bold;
}

.case-table dd {
  width: calc(100% - 150px);
}

.case-table small {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .case-box {
    width: 100%;
    margin-bottom: 60px;
  }
  .case-box:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 600px) {
  .case-box > .inner {
    height: 100%;
    padding: 0;
    background: transparent;
  }
  .case-box .ttl {
    margin-bottom: 30px;
    padding-bottom: 12px;
  }
  .case-box .ttl .sub {
    font-size: 12px;
  }
  .case-box .ttl .main {
    font-size: 14px;
  }
  .case-box .ttl--sp {
    display: block;
  }
  .case-box .ttl--pc {
    display: none;
  }
  .case-box .txt {
    max-width: 100%;
    padding: 0;
    margin: 0;
    background: transparent;
  }
  .case-box .case-img {
    margin-bottom: 25px;
  }
  .case-table .inner {
    margin-bottom: 15px;
  }
  .case-table dt {
    width: 100%;
    margin-right: 0px;
  }
  .case-table dd {
    width: 100%;
  }
}

.btn-arrow {
  position: relative;
  max-width: 335px;
  margin: 30px auto 0;
  background: #fff;
  border: 1px solid #444444;
  padding: 15px 10px;
  display: block;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  right: 20px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #444;
  border-left: 2px solid #444;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-arrow:hover {
  color: #fff;
  background-color: #444;
}

.btn-arrow:hover:before {
  border-color: #fff;
}

@media all and (-ms-high-contrast: none) {
  .btn-arrow:before {
    top: 19px;
  }
}

/* ===================================
ユーティリティ
=================================== */
.ib {
  display: inline-block;
}

.red {
  color: #e03636;
}

.border-red {
  border-bottom: 1px solid #e03636;
}

.bold {
  font-weight: bold;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.tb {
  display: none;
}

@media screen and (max-width: 768px) {
  .tb {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}

/* 
揃え
=================================== */
.align-center {
  text-align: center !important;
}

@media screen and (max-width: 768px) {
  .align-left-tb {
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  .align-left-sp {
    text-align: left;
  }
}

/* 
改行
=================================== */
/*PCのみ*/
.pc-br {
  display: inline;
}

/*TBのみ*/
.tb-br {
  display: none;
}

/*SPのみ*/
.sp-br {
  display: none;
}

/*PCからTBにかけて*/
.pc-tb-br {
  display: inline;
}

/*TBからSPにかけて*/
.tb-sp-br {
  display: none;
}

/*iphoneSE用*/
.se-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
  .tb-br {
    display: inline;
  }
  .tb-sp-br {
    display: inline;
  }
}

@media screen and (max-width: 600px) {
  .pc-tb-br {
    display: none;
  }
  .tb-br {
    display: none;
  }
  .sp-br {
    display: inline;
  }
}

@media screen and (max-width: 374px) {
  .se-br {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
.price_page .inner{
    padding-top: 50px;
 }
}

@media screen and (min-width: 768px) {
.price_page .inner{
    padding-top: 110px;
    margin-top: -110px;
 }
    .cale-area .cale div{
        display: flex;
        justify-content: space-around;
    }
    
    .cale-area .cale div img{
        width: 45%;
    }
}
/*# sourceMappingURL=common.css.map */


/* 余白 */
@media screen and (min-width: 769px) {
  .flex {
    display: flex;
  }

  .mt-d-0 {
    margin-top: 0px !important;
  }

  .flex.-gap-d-24 {
    gap: 24px;
  }

  .mt-d-12 {
    margin-top: 12px;
  }

  .mt-d-24 {
    margin-top: 24px;
  }

  .mt-d-32 {
    margin-top: 32px;
  }

  .mt-d-48 {
    margin-top: 48px;
  }

  .mt-d-64 {
    margin-top: 64px;
  }

  .pt-d-0 {
    padding-top: 0px !important;
  }

  .width-d-32\% {
    width: 32%;
  }

  .width-d-full {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .flex.-gap-s-12 {
    gap: 12px;
  }

  .mt-s-0 {
    margin-top: 0px !important;
  }

  .mt-s-12 {
    margin-top: 12px;
  }

  .mt-s-24 {
    margin-top: 24px;
  }

  .mt-s-32 {
    margin-top: 32px;
  }

  .mt-s-64 {
    margin-top: 64px;
  }

  .pt-s-0 {
    padding-top: 0px !important;
  }

  .width-s-full {
    width: 100%;
  }
}

.u-new-pop {
  position: relative;
}

@media screen and (min-width: 769px) {
  .u-new-pop__content {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    animation: flash 2s linear infinite;
    font-size: 16px;
    font-weight: bold;
  }

  .u-new-pop.-left .u-new-pop__content {
    top: 50%;
    left: -58px;
    transform: translate(0, -50%);
  }
}

@media screen and (max-width: 768px) {
  .u-new-pop__content {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%, 0);
    animation: flash 2s linear infinite;
    font-size: 12px;
    font-weight: bold;
  }

  .u-new-pop.-left .u-new-pop__content {
    top: 0;
    right: 70px;
    transform: translate(0, 0);
  }
}


@keyframes flash {
/* 
	0%,
	35%,
	60%,
	100% {
		opacity: 0;
	}

	25% {
		opacity: 1;
		color: #7fff00;
	}

	50% {
		opacity: 1;
		color: #0091EA;
	}

	75% {
		opacity: 1;
		color: #ff1493;
	} */

  0%,
  50% {
    opacity: 0;
    color: #ff1493;
  }

	75%,
  100% {
		opacity: 1;
		color: #ff1493;
	}
}
/*--------gtlanslate---------*/
/*---------------------------*/
.gglobe {
  background-image: url(//the-roppongi-clinic.com/wp/wp-content/themes/trc/img/common/gtglobe2.svg) !important;
  height: 30px !important;
  width: 30px !important;
  margin-top: -7px !important;
  margin-right: 1px !important;
}
.gsatelite.gt-current-lang img {
  box-shadow: none !important;
}
.header-inner .nav {
  margin-right: 40px;
}
@media screen and (max-width: 1200px) {
  .gglobe {
    margin-top: 2px !important;
    margin-right: -5px !important;
  }
  .sp-btn {
    top: 14px;
    left: 15px;
  }
}