@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 10px !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
}

p,
a {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  color: #313131;
}

a,
img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}

.sp {
  display: block !important;
}
@media screen and (max-width: 765px) {
  .sp {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media screen and (max-width: 765px) {
  .pc {
    display: block !important;
  }
}

.wrapper {
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
}

.section-ttl {
  font-size: 60px;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #313131;
  letter-spacing: 0.075em;
}
.section-ttl span {
  display: block;
  font-size: 22px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.round-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #313131;
  border-radius: 40px;
  font-size: 18px;
  color: #333;
  text-decoration: none;
  width: 100%;
  max-width: 303px;
  height: 50px;
  position: relative;
  box-sizing: border-box;
  margin: 122px auto 0 auto;
}

.round-btn:after {
  position: absolute;
  content: "";
  background: url(../img/categori--item__arrow@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 19px;
  right: 15px;
}

.reverse {
  flex-direction: row-reverse;
}

/* TOPに戻るボタン（固定位置、最初は非表示） */
.back-to-top {
  display: block;
  position: fixed;
  right: 42px;
  bottom: 30px;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9999;
}

/* 表示された状態 */
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.sp-bottombtnarea {
  display: none;
}

@media screen and (max-width: 1200px) {
  .wrapper {
    width: 100%;
    max-width: 84.167vw;
    margin: 0 auto;
  }
  .section-ttl {
    font-size: 5vw;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #313131;
  }
  .section-ttl span {
    display: block;
    font-size: 1.833vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .round-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #313131;
    border-radius: 3.333vw;
    font-size: 1.5vw;
    color: #333;
    text-decoration: none;
    width: 100%;
    max-width: 25.25vw;
    height: 4.167vw;
    position: relative;
    box-sizing: border-box;
    margin: 10.167vw auto 0 auto;
  }
  .round-btn:after {
    position: absolute;
    content: "";
    background: url(../img/categori--item__arrow@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.333vw;
    height: 1.583vw;
    right: 1.25vw;
  }
  .reverse {
    flex-direction: row-reverse;
  }
  /* TOPに戻るボタン（固定位置、最初は非表示） */
  .back-to-top {
    display: block;
    position: fixed;
    right: 1vw;
    bottom: 2.5vw;
    width: 4.25vw;
    height: 4.25vw;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 9999;
  }
  /* 表示された状態 */
  .back-to-top.show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 765px) {
  .wrapper {
    width: 100%;
    max-width: 87.867vw;
    margin: 0 auto;
  }
  .section-ttl {
    font-size: 8vw;
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: #313131;
  }
  .section-ttl span {
    display: block;
    font-size: 2.933vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .round-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #313131;
    border-radius: 5.333vw;
    font-size: 3.733vw;
    color: #333;
    text-decoration: none;
    width: 100%;
    max-width: 52.133vw;
    height: 8.533vw;
    position: relative;
    box-sizing: border-box;
    margin: 16.267vw auto 0 auto;
  }
  .round-btn:after {
    position: absolute;
    content: "";
    background: url(../img/categori--item__arrow@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.133vw;
    height: 2.533vw;
    right: 2vw;
  }
  .sp-bottombtnarea {
    display: flex;
    position: fixed;
    bottom: 0;
  }
  .sp-bottombtnarea .sp-btn-line {
    display: block;
    width: 50%;
    height: auto;
  }
  .sp-bottombtnarea .sp-btn-reserve {
    display: block;
    width: 50%;
    height: auto;
  }
}
.header {
  width: 100%;
  position: fixed;
  top: 17px;
  z-index: 999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 105px;
}
.header__inner .logo {
  width: 88px;
  height: 43px;
  margin-right: 97px;
  flex-shrink: 0;
}
.header__inner #g-nav {
  width: 100%;
}
.header__inner #g-nav > #g-nav-list > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__inner #g-nav > #g-nav-list > ul a {
  display: block;
  font-size: 19px;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  transition: all 0.3s;
}
.header__inner #g-nav > #g-nav-list > ul a:hover {
  color: #91d2d1;
}
.header__inner #g-nav {
  /*== 2・3階層目の共通設定 */
  /*下の階層を持っているulの指定*/
  /*hoverしたら表示*/
  /*ナビゲーションaタグの形状*/
}
.header__inner #g-nav #g-nav-list ul li {
  position: relative;
}
.header__inner #g-nav #g-nav-list ul ul {
  display: block;
}
.header__inner #g-nav #g-nav-list li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  /*形状を指定*/
  background: rgba(54, 54, 54, 0.88);
  width: 340px;
  height: 160px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
  padding: 24px 30px 0 30px;
}
.header__inner #g-nav #g-nav-list li.has-child:hover > ul,
.header__inner #g-nav #g-nav-list li.has-child ul li:hover > ul,
.header__inner #g-nav #g-nav-list li.has-child:active > ul,
.header__inner #g-nav #g-nav-list li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
.header__inner #g-nav #g-nav-list li.has-child ul li a {
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  padding: 4px 0;
  margin-bottom: 8px;
  font-size: 14px;
}
.header__inner #g-nav #g-nav-list li.has-child ul li a:after {
  position: absolute;
  content: "";
  background: url(../img/polygon.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 7px;
  height: 11px;
  right: 0;
}
.header__inner #g-nav #g-nav-list li.has-child ul li:last-child > a {
  border-bottom: none;
}
.header .cta-area {
  display: none;
}

/* ================================
   ▼ スクロール後（campaign エリアに入ったとき）
   ================================ */
.header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  padding: 10px 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.header.scrolled .header__inner .logo img {
  content: url("../img/logo-black.png");
}
.header.scrolled .header__inner #g-nav > div > ul > li > a {
  color: #000 !important;
}
.header.scrolled .header__inner .openbtn span {
  background: #000;
}

@media screen and (max-width: 1200px) {
  .header {
    width: 100%;
    position: fixed;
    top: 1.417vw;
    z-index: 999;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 8.75vw;
  }
  .header__inner .logo {
    width: 7.333vw;
    height: 3.583vw;
    margin-right: 8.083vw;
  }
  .header__inner #g-nav {
    width: 100%;
  }
  .header__inner #g-nav > #g-nav-list > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__inner #g-nav > #g-nav-list > ul a {
    display: block;
    font-size: 1.583vw;
    color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s;
  }
  .header__inner #g-nav > #g-nav-list > ul a:hover {
    color: #91d2d1;
  }
  .header__inner #g-nav {
    /*== 2・3階層目の共通設定 */
    /*下の階層を持っているulの指定*/
    /*hoverしたら表示*/
    /*ナビゲーションaタグの形状*/
  }
  .header__inner #g-nav #g-nav-list ul li {
    position: relative;
  }
  .header__inner #g-nav #g-nav-list ul ul {
    display: block;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 5.167vw;
    z-index: 4;
    /*形状を指定*/
    background: rgba(54, 54, 54, 0.88);
    width: 28.333vw;
    height: 13.333vw;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all 0.3s;
    padding: 2vw 2.5vw 0 2.5vw;
  }
  .header__inner #g-nav #g-nav-list li.has-child:hover > ul,
  .header__inner #g-nav #g-nav-list li.has-child ul li:hover > ul,
  .header__inner #g-nav #g-nav-list li.has-child:active > ul,
  .header__inner #g-nav #g-nav-list li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul li a {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 0.333vw 0;
    margin-bottom: 0.667vw;
    font-size: 1.167vw;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul li a:after {
    position: absolute;
    content: "";
    background: url(../img/polygon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 0.583vw;
    height: 0.917vw;
    right: 0;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul li:last-child > a {
    border-bottom: none;
  }
  /* ================================
   ▼ スクロール後（campaign エリアに入ったとき）
   ================================ */
  .header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    padding: 0.833vw 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  .header.scrolled .header__inner .logo img {
    content: url("../img/logo-black.png");
  }
  .header.scrolled .header__inner #g-nav > div > ul > li > a {
    color: #000 !important;
  }
  .header.scrolled .header__inner .openbtn span {
    background: #000;
  }
}
@media screen and (max-width: 765px) {
  .header {
    width: 100%;
    position: fixed;
    top: 3.2vw;
    z-index: 999;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 160vw;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .header__inner .logo {
    width: 16.4vw;
    height: 7.867vw;
    margin-right: 0;
  }
  .header__inner #g-nav {
    width: 100%;
  }
  .header__inner #g-nav > #g-nav-list > ul {
    display: block;
    align-items: center;
    margin: 6.667vw 8vw 0 8vw;
  }
  .header__inner #g-nav > #g-nav-list > ul a {
    display: block;
    font-size: 4.267vw;
    color: #313131;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s;
  }
  .header__inner #g-nav > #g-nav-list > ul a:hover {
    color: #91d2d1;
  }
  .header__inner #g-nav > #g-nav-list > ul button {
    display: block;
    font-size: 4.267vw;
    color: #313131;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s;
  }
  .header__inner #g-nav > #g-nav-list > ul button:hover {
    color: #91d2d1;
  }
  .header__inner #g-nav {
    /*== 2・3階層目の共通設定 */
    /*下の階層を持っているulの指定*/
    /*hoverしたら表示*/
    /*ナビゲーションaタグの形状*/
  }
  .header__inner #g-nav #g-nav-list ul li {
    position: relative;
    border-bottom: solid 1px #c3c3c3;
    padding: 6.667vw 0;
  }
  .header__inner #g-nav #g-nav-list ul ul {
    display: none;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    left: 0;
    top: 8.267vw;
    z-index: 4;
    /*形状を指定*/
    background: rgba(54, 54, 54, 0.88);
    width: 45.333vw;
    height: 21.333vw;
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all 0.3s;
    padding: 3.2vw 4vw 0 4vw;
  }
  .header__inner #g-nav #g-nav-list li.has-child:hover > ul,
  .header__inner #g-nav #g-nav-list li.has-child ul li:hover > ul,
  .header__inner #g-nav #g-nav-list li.has-child:active > ul,
  .header__inner #g-nav #g-nav-list li.has-child ul li:active > ul {
    visibility: visible;
    opacity: 1;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul li a {
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    padding: 0.533vw 0;
    margin-bottom: 1.067vw;
    font-size: 1.867vw;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul li a:after {
    position: absolute;
    content: "";
    background: url(../img/polygon.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 0.933vw;
    height: 1.467vw;
    right: 0;
  }
  .header__inner #g-nav #g-nav-list li.has-child ul li:last-child > a {
    border-bottom: none;
  }
  .header .cta-area {
    width: 84vw;
    display: flex;
    justify-content: space-between;
    margin: 8vw auto 0 auto;
    padding-bottom: 6.667vw;
  }
  .header .cta-area a {
    display: block;
    width: 39.6vw;
    height: 12.4vw;
  }
  .header .cta-area a img {
    border-radius: 5.933vw;
  }
  /* ================================
   ▼ スクロール後（campaign エリアに入ったとき）
   ================================ */
  .header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    top: 0;
    padding: 1.333vw 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  .header.scrolled .header__inner .logo img {
    content: url("../img/logo-black.png");
  }
  .header.scrolled .header__inner #g-nav > div > ul > li > a {
    color: #000 !important;
  }
  .header.scrolled .header__inner .openbtn span {
    background: #000;
  }
  .header.scrolled .openbtn {
    top: 0;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    position: fixed;
    top: 0;
    bottom: inherit; /* 下から上がる動きを無効化 */
    right: 0;
    width: 100%;
    height: 100dvh;
    background: #fff; /* 背景は最初から白で固定 */
    transform: none; /* 伸びる移動アニメを完全OFF */
    transition: none; /* nav自体はアニメしない */
    display: none;
    opacity: 0; /* ← フェード用に透明スタート */
    pointer-events: none; /* 触れないように */
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    display: block;
    animation: navBgFadeIn 0.6s ease forwards; /* ← 背景だけのふわっと登場 */
    pointer-events: auto;
    opacity: 1;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100dvh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6.667vw;
  }
  /* ▼ ここが今回の変更（メニューだけのフェードイン） */
  #g-nav.panelactive #g-nav-list > ul {
    opacity: 0;
    transform: translateY(60px);
    animation: menuFadeUp 0.8s ease forwards;
    animation-delay: 0.25s; /* 背景フェードの後に出す */
  }
  @keyframes menuFadeUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: relative;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 9.2vw;
    height: 5.067vw;
  }
  .openbtn.active {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 1.867vw !important;
    right: 1.733vw;
    cursor: pointer;
    width: 13.333vw;
    height: 13.333vw;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    height: 0.533vw;
    border-radius: 0.267vw;
    background-color: #91d2d1;
    width: 9.333vw;
  }
  .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .openbtn span:nth-of-type(2) {
    top: 2.267vw;
  }
  .openbtn span:nth-of-type(3) {
    top: 4.533vw;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 2.4vw;
    left: 2.4vw;
    transform: translateY(0.8vw) rotate(-27deg);
    width: 9.333vw;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 4vw;
    left: 2.4vw;
    transform: translateY(-0.8vw) rotate(27deg);
    width: 9.333vw;
  }
  .humberger-logo {
    width: 16.4vw;
    height: 8vw;
    margin: 3.2vw 0 0 4vw;
  }
  /*アコーディオンタイトル*/
  .header-accordion-area-title {
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    display: block;
    font-size: 4.267vw;
    color: #313131;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    transition: all 0.3s;
  }
  /*アイコンの＋と×*/
  .header-accordion-area-title::before,
  .header-accordion-area-title::after {
    position: absolute;
    content: "";
 width: 3.067vw;
    height: 0.4vw;
    background-color: #91d2d1;
  }
  .header-accordion-area-title::before {
    top: 48%;
    right: 4vw;
    transform: rotate(0deg);
  }
  .header-accordion-area-title::after {
    top: 48%;
    right: 4vw;
    transform: rotate(90deg);
  }
  /*　closeというクラスがついたら形状変化　*/
  .header-accordion-area-title.close::before {
    transform: rotate(0);
  }
  .header-accordion-area-title.close::after {
    display: none;
  }
  /*アコーディオンで現れるエリア*/
  .header-accordion-area-box {
    display: none; /*はじめは非表示*/
  }
  .header-accordion-area-box li {
    border-bottom: inherit !important;
    padding: 5.067vw 0 !important;
  }
  .header-accordion-area-box li a {
    display: flex !important;
    align-items: center;
    position: relative;
      font-size: 3.733vw !important;
        padding: 2vw 0 2vw 5.2vw;
  }
  .header-accordion-area-box li a:before {
    position: absolute;
    content: "";
     width: 2.667vw;
    height: 0.267vw;
    background: #313131;
    left: 0;
  }
}
.fv {
  background: url(../img/fv@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.fv__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 0 38px 0;
}
.fv__catch {
  font-size: 56px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  color: #fff;
}
.fv__logo {
  width: 207px;
  height: 101px;
  margin: 87px auto 0 auto;
}
.fv__text {
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  color: #fff;
  padding-top: 87px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.fv__link-area {
  position: fixed;
  right: 19px;
  bottom: 20%;
}
.fv__link-area .link-line {
  margin-bottom: 10px;
}
.fv__link-area a {
  display: block;
  width: 101px;
  aspect-ratio: 1/1;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .fv {
    background: url(../img/fv@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .fv__inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 15vw 0 3.167vw 0;
  }
  .fv__catch {
    font-size: 4.667vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #fff;
  }
  .fv__logo {
    width: 17.25vw;
    height: 8.417vw;
    margin: 7.25vw auto 0 auto;
  }
  .fv__text {
    font-size: 1.667vw;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #fff;
    padding-top: 7.25vw;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .fv__link-area {
    position: fixed;
    right: 1.583vw;
    bottom: 20%;
  }
  .fv__link-area .link-line {
    margin-bottom: 0.833vw;
  }
  .fv__link-area a {
    display: block;
    width: 8.417vw;
    aspect-ratio: 1/1;
    height: auto;
  }
}
@media screen and (max-width: 765px) {
  .fv {
    background: url(../img/fv-sp@2x.png);
    background-position-x: 60%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .fv__inner {
    position: relative;
    width: 100%;
    max-width: 160vw;
    margin: 0 auto;
    padding: 36.8vw 0 17.333vw 0;
  }
  .fv__catch {
    font-size: 11.733vw;
    color: #fff;
    line-height: 1.15;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.82);
  }
  .fv__logo {
    display: none;
  }
  .fv__text {
    font-size: 4.133vw;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    color: #fff;
    padding-top: 6.933vw;
    line-height: 1.25;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.82);
  }
  .fv__link-area {
    display: none;
  }
}
.campaign {
  padding: 79px 0 173px 0;
}
.campaign__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.campaign__inner h2 {
  text-align: center;
}
.campaign__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0 auto;
  width: 100%;
  max-width: 822px;
}
.campaign__content:after {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
  content: "";
  background: url(../img/campaign__border@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100px;
  z-index: -1;
}
.campaign__item {
  width: 247px;
  height: 322px;
}

@media screen and (max-width: 1200px) {
  .campaign {
    padding: 6.583vw 0 14.417vw 0;
  }
  .campaign__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .campaign__inner h2 {
    text-align: center;
  }
  .campaign__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 4.167vw auto 0 auto;
    width: 100%;
    max-width: 68.5vw;
  }
  .campaign__content:after {
    position: absolute;
    left: 50%;
    bottom: -4.167vw;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
    content: "";
    background: url(../img/campaign__border@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 8.333vw;
    z-index: -1;
  }
  .campaign__item {
    width: 20.583vw;
    height: 26.833vw;
  }
}
@media screen and (max-width: 765px) {
  .campaign {
    padding: 9.067vw 0 23.067vw 0;
  }
  .campaign__inner {
    width: 100%;
    max-width: 160vw;
    margin: 0 auto;
  }
  .campaign__inner h2 {
    text-align: center;
  }
  .campaign__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 6.667vw auto 0 auto;
    width: 100%;
    max-width: 109.6vw;
  }
  .campaign__content:after {
    position: absolute;
    left: 50%;
    bottom: -6.667vw;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
    content: "";
    background: url(../img/campaign__border@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: 13.333vw;
    z-index: -1;
  }
  .campaign__item {
    width: 44.933vw;
    height: 44.933vw;
  }
}
.consept {
  background: url(../img/consept__backimg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.consept__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 0 165px;
}
.consept__inner p {
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
}
.consept__block {
  display: flex;
}
.consept__catch {
  display: flex;
  font-size: 34px;
  color: #313131;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin-left: 66px;
  margin-top: 6px;
  line-height: 1.45;
  white-space: nowrap;
}
.consept__text1 {
  margin-top: 86px;
  margin-right: 19px;
  line-height: 2;
}
.consept__text2 {
  margin-top: 139px;
  margin-right: 13px;
  line-height: 2.1;
}
.consept__img1 {
  position: absolute;
  left: 0;
  bottom: 169px;
  display: block;
  width: 412px;
  height: 576px;
  background: url(../img/consept__img1@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.consept__img2 {
  position: absolute;
  left: 168px;
  bottom: 80px;
  display: block;
  width: 434px;
  height: 394px;
  background: url(../img/consept__img2@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .consept {
    background: url(../img/consept__backimg@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .consept__inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 4.333vw 0 13.75vw;
  }
  .consept__inner p {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5vw;
  }
  .consept__block {
    display: flex;
  }
  .consept__catch {
    display: flex;
    font-size: 2.833vw;
    color: #313131;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: 0.08em;
    margin-left: 5.5vw;
    margin-top: 0.5vw;
    line-height: 1.45;
    white-space: nowrap;
  }
  .consept__text1 {
    margin-top: 7.167vw;
    margin-right: 1.583vw;
    line-height: 2;
  }
  .consept__text2 {
    margin-top: 11.583vw;
    margin-right: 1.083vw;
    line-height: 2.1;
  }
  .consept__img1 {
    position: absolute;
    left: 0;
    bottom: 14.083vw;
    display: block;
    width: 34.333vw;
    height: 48vw;
    background: url(../img/consept__img1@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .consept__img2 {
    position: absolute;
    left: 14vw;
    bottom: 6.667vw;
    display: block;
    width: 36.167vw;
    height: 32.833vw;
    background: url(../img/consept__img2@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 765px) {
  .consept {
    background: url(../img/consept__backimg@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .consept__inner {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 9.333vw 0 101.333vw 0;
  }
  .consept__inner p {
    display: flex;
    justify-content: flex-end;
    font-size: 3.6vw;
    line-height: 5.067vw;
  }
  .consept__block {
    display: block;
    margin: 0 auto;
  }
  .consept__block h2 {
    text-align: center;
  }
  .consept__catch {
    margin-top: 11.6vw;
    font-size: 4vw;
    color: #313131;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 600;
    font-style: normal;
    line-height: 1.3;
    text-align: center;
  }
  .consept__text1 {
    margin-top: 10.667vw;
  }
  .consept__text2 {
    margin-top: 8.533vw;
  }
  .consept__img1 {
    position: absolute;
    left: 0;
    bottom: 17.067vw;
    display: block;
    width: 54.933vw;
    height: 76.8vw;
    background: url(../img/consept__img1@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .consept__img2 {
    position: absolute;
    left: inherit;
    right: 0;
    bottom: 14.667vw;
    display: block;
    width: 57.867vw;
    height: 52.533vw;
    background: url(../img/consept__img2@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.treatment {
  padding: 95px 0 115px 0;
}
.treatment__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.treatment__inner h2 {
  text-align: center;
}
.treatment__inner .area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  margin-top: 78px;
}
.treatment__inner .area.is-active {
  display: grid;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.treatment__inner #category3 .category-item {
  width: 100vw;
  max-width: 1010px;
}
.treatment__inner #category3 .category-item .category-links {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.treatment__inner .category-list {
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
}
.treatment__inner .category-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
  gap: 24px 22px;
}
.treatment__inner .category-links li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 41px;
  padding-bottom: 5px;
  border-bottom: 1px solid #313131;
}
.treatment__inner .category-links a {
  flex: 1;
  font-size: 19px;
  color: #313131;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  height: auto;
}
.treatment__inner .category-links li::after {
  content: "";
  background: url(../img/categori--item__arrow@2x.png);
  width: 15px;
  height: 19px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.treatment__tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 97px;
}
.treatment__tab li {
  width: 33%;
}
.treatment__tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 69px;
  background: #e5e5e5;
  font-size: 38px;
}
.treatment__tab li.active a {
  background: #313131;
  color: #fff;
}

@media screen and (max-width: 1200px) {
  .treatment {
    padding: 7.917vw 0 9.583vw 0;
  }
  .treatment__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .treatment__inner h2 {
    text-align: center;
  }
  .treatment__inner .area {
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
    background: #fff;
    margin-top: 6.5vw;
  }
  .treatment__inner .area.is-active {
    display: grid;
    animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
  @keyframes displayAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .treatment__inner #category3 .category-item {
    width: 100vw;
    max-width: 84.167vw;
  }
  .treatment__inner #category3 .category-item .category-links {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .treatment__inner .category-list {
    grid-template-columns: 1fr 1fr;
    gap: 6.667vw 5vw;
  }
  .treatment__inner .category-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5vw;
    gap: 2vw 1.833vw;
  }
  .treatment__inner .category-links li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 3.417vw;
    padding-bottom: 0.417vw;
    border-bottom: 1px solid #313131;
  }
  .treatment__inner .category-links a {
    flex: 1;
    font-size: 1.583vw;
    color: #313131;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
    height: auto;
  }
  .treatment__inner .category-links li::after {
    content: "";
    background: url(../img/categori--item__arrow@2x.png);
    width: 1.25vw;
    height: 1.583vw;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 0.833vw;
  }
  .treatment__tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 8.083vw;
  }
  .treatment__tab li {
    width: 33%;
  }
  .treatment__tab li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 5.75vw;
    background: #e5e5e5;
    font-size: 3.167vw;
  }
  .treatment__tab li.active a {
    background: #313131;
    color: #fff;
  }
}
@media screen and (max-width: 765px) {
  .treatment {
    padding: 12.667vw 0 15.333vw 0;
  }
  .treatment__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .treatment__inner h2 {
    text-align: center;
  }
  .treatment__inner .area {
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
    background: #fff;
    margin-top: 6.5vw;
  }
  .treatment__inner .area.is-active {
    display: block;
    animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
  @keyframes displayAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .treatment__inner #category3 .category-item {
    width: 100vw;
    max-width: 87.867vw;
  }
  .treatment__inner #category3 .category-item__banner {
    height: auto;
  }
  .treatment__inner #category3 .category-item .category-links {
    grid-template-columns: 1fr 1fr;
  }
  .treatment__inner .category-list {
    grid-template-columns: 1fr 1fr;
    gap: 6.667vw 5vw;
  }
  .treatment__inner .category-item {
    margin-bottom: 16vw;
  }
  .treatment__inner .category-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 6vw;
    gap: 5.333vw 4vw;
  }
  .treatment__inner .category-links li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding-bottom: 2.4vw;
    border-bottom: 1px solid #313131;
  }
  .treatment__inner .category-links a {
    flex: 1;
    font-size: 3.333vw;
    color: #313131;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
    height: auto;
  }
  .treatment__inner .category-links li::after {
    content: "";
    background: url(../img/categori--item__arrow@2x.png);
    width: 2.8vw;
    height: 3.333vw;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 3.733vw;
  }
  .treatment__tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10vw;
  }
  .treatment__tab li {
    width: 33%;
  }
  .treatment__tab li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
 height: 10.933vw;
    background: #e5e5e5;
    font-size: 3.167vw;
  }
  .treatment__tab li.active a {
    background: #313131;
    color: #fff;
  }
}
.case {
  background-color: rgb(229, 229, 229);
  padding: 104px 0 130px 0;
}
.case__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.case__inner h2 {
  text-align: center;
}
.case__tab {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 120px 30px 0 30px;
  gap: 25px;
}
.case__tab li {
  position: relative;
  display: flex;
  align-items: center;
  width: 303px;
}
.case__tab li a {
  display: flex;
  width: 100%;
  height: 49px;
  justify-content: center;
  align-items: center;
  border: 1px solid #313131;
  border-radius: 24px;
  font-size: 22px;
  background: #fff;
}
.case__tab li:first-child:before {
  position: absolute;
  content: url(../img/double-eyelid-b.png);
  width: 33px;
  height: 23px;
  left: 23px;
}
.case__tab li:nth-child(2):before {
  position: absolute;
  content: url(../img/around-eyes_b.png);
  width: 38px;
  height: 22px;
  left: 23px;
}
.case__tab li:nth-child(3):before {
  position: absolute;
  content: url(../img/small-face_b.png);
  width: 22px;
  height: 32px;
  left: 23px;
}
.case__tab li:nth-child(4):before {
  position: absolute;
  content: url(../img/nose_b.png);
  width: 18px;
  height: 34px;
  left: 23px;
}
.case__tab li:nth-child(5):before {
  position: absolute;
  content: url(../img/liposuction_b.png);
  width: 36px;
  height: 34px;
  left: 23px;
}
.case__tab li:nth-child(6):before {
  position: absolute;
  content: url(../img/breast-augmentation_b.png);
  width: 29px;
  height: 35px;
  left: 23px;
}
.case__tab li.active a {
  background: #313131;
  color: #fff;
  border-radius: 24px;
}
.case__tab li.active:first-child:before {
  content: url(../img/double-eyelid_s.png);
}
.case__tab li.active:nth-child(2):before {
  content: url(../img/around-eyes_s.png);
}
.case__tab li.active:nth-child(3):before {
  content: url(../img/small-face.png);
}
.case__tab li.active:nth-child(4):before {
  content: url(../img/nose_s.png);
}
.case__tab li.active:nth-child(5):before {
  content: url(../img/liposuction_s.png);
}
.case__tab li.active:nth-child(6):before {
  content: url(../img/breast-augmentation_s.png);
}
.case-list {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
}
.case-list.is-active {
  display: flex;
  justify-content: space-between;
  width: 822px;
  margin: 52px auto 0 auto;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.case-item {
  width: 376px;
}
.case-item__image {
  width: 100%;
  height: 280px;
  border-radius: 39px;
  background-color: #fff;
}
.case-item__title {
  font-size: 23px;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.05em;
}
.case-detail {
  margin-top: 26px;
}
.case-detail .row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.case-detail .row dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 112px;
  height: 31px;
  font-size: 18px;
  background: #313131;
  color: #fff;
  flex-shrink: 0;
  margin-right: 12px;
  font-weight: 400;
}
.case-detail .row dd {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  margin-top: -7px;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
  .case {
    background-color: rgb(229, 229, 229);
    padding: 8.667vw 0 10.833vw 0;
  }
  .case__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .case__inner h2 {
    text-align: center;
  }
  .case__tab {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 10vw 2.5vw 0 2.5vw;
    gap: 2.083vw;
  }
  .case__tab li {
    position: relative;
    display: flex;
    align-items: center;
    width: 25.25vw;
  }
  .case__tab li a {
    display: flex;
    width: 100%;
    height: 4.083vw;
    justify-content: center;
    align-items: center;
    border: 1px solid #313131;
    border-radius: 2vw;
    font-size: 1.833vw;
    background: #fff;
  }
  .case__tab li:first-child:before {
    position: absolute;
    content: url(../img/double-eyelid-b.png);
    width: 2.75vw;
    height: 1.917vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(2):before {
    position: absolute;
    content: url(../img/around-eyes_b.png);
    width: 3.167vw;
    height: 1.833vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(3):before {
    position: absolute;
    content: url(../img/small-face_b.png);
    width: 1.833vw;
    height: 2.667vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(4):before {
    position: absolute;
    content: url(../img/nose_b.png);
    width: 1.5vw;
    height: 2.833vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(5):before {
    position: absolute;
    content: url(../img/liposuction_b.png);
    width: 3vw;
    height: 2.833vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(6):before {
    position: absolute;
    content: url(../img/breast-augmentation_b.png);
    width: 2.417vw;
    height: 2.917vw;
    left: 1.917vw;
  }
  .case__tab li.active a {
    background: #313131;
    color: #fff;
    border-radius: 2vw;
  }
  .case__tab li.active:first-child:before {
    content: url(../img/double-eyelid_s.png);
  }
  .case__tab li.active:nth-child(2):before {
    content: url(../img/around-eyes_s.png);
  }
  .case__tab li.active:nth-child(3):before {
    content: url(../img/small-face.png);
  }
  .case__tab li.active:nth-child(4):before {
    content: url(../img/nose_s.png);
  }
  .case__tab li.active:nth-child(5):before {
    content: url(../img/liposuction_s.png);
  }
  .case__tab li.active:nth-child(6):before {
    content: url(../img/breast-augmentation_s.png);
  }
  .case-list {
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
  }
  .case-list.is-active {
    display: flex;
    justify-content: space-between;
    width: 68.5vw;
    margin: 4.333vw auto 0 auto;
    animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
  .case-item {
    width: 31.333vw;
  }
  .case-item__image {
    width: 100%;
    height: 23.333vw;
    border-radius: 3.25vw;
    background-color: #fff;
  }
  .case-item__title {
    font-size: 1.917vw;
    text-align: center;
    margin-top: 1.667vw;
    letter-spacing: 0.05em;
  }
  .case-detail {
    margin-top: 2.167vw;
  }
  .case-detail .row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.667vw;
  }
  .case-detail .row dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9.333vw;
    height: 2.583vw;
    font-size: 1.5vw;
    background: #313131;
    color: #fff;
    flex-shrink: 0;
    margin-right: 1vw;
    font-weight: 400;
  }
  .case-detail .row dd {
    font-size: 1.417vw;
    line-height: 1.65;
    font-weight: 400;
    margin-top: -0.583vw;
  }
  @keyframes displayAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media screen and (max-width: 765px) {
  .case {
    background-color: rgb(229, 229, 229);
    padding: 16vw 0 21.067vw 0;
  }
  .case__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .case__inner h2 {
    text-align: center;
  }
  .case__tab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 13.067vw 4.667vw; 0 4.667vw;;
    gap: 3.733vw 3.467vw;
  }
  .case__tab li {
    width: 100%;
  }
  .case__tab li a {
    display: flex;
    width: 44vw;
    height: 9.333vw;
    justify-content: center;
    align-items: center;
    border: 1px solid #313131;
    border-radius: 2vw;
    font-size: 3.467vw;
  }
  .case__tab li.active a {
    background: #313131;
    color: #fff;
    border-radius: 2vw;
  }
  .case-list {
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
  }
  .case-list.is-active {
    display: flex;
    justify-content: space-between;
    width: 68.5vw;
    margin: 52px auto 0 auto;
    animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
  .case-item {
    width: 68.667vw;
  }
	  .case__tab li:first-child:before {
    position: absolute;
    content: "";
		  	 background: url("../img/double-eyelid-b.png");
	  background-size: cover;
    width: 4.667vw;
        height: 3.333vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(2):before {
    position: absolute;
    content: "";
	 background: url("../img/around-eyes_b.png");
	  background-size: cover;
         width: 5.6vw;
        height: 3.333vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(3):before {
    position: absolute;
    content: "";
	  	 background: url("../img/small-face_b.png");
	  background-size: cover;
 width: 3.333vw;
        height: 4.667vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(4):before {
    position: absolute;
    content: "";
	    	 background: url("../img/nose_b.png");
	  background-size: cover;
      width: 2.667vw;
        height: 4.933vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(5):before {
    position: absolute;

	      content: "";
	    	 background: url("../img/liposuction_b.png");
	  background-size: cover;
      width: 5.2vw;
        height: 4.933vw;
    left: 1.917vw;
  }
  .case__tab li:nth-child(6):before {
    position: absolute;
   
	   content: "";
	    	 background: url("../img/breast-augmentation_b.png");
	  background-size: cover;
    width: 4.133vw;
        height: 5.067vw;
    left: 1.917vw;
  }
	 .case__tab li.active:first-child:before {
    content: "";
		 background:url("../img/double-eyelid_s.png");
			 background-size:cover;
  }
  .case__tab li.active:nth-child(2):before {
	  background: url("../img/around-eyes_s.png");
    content: "";
	  background-size:cover;
  }
  .case__tab li.active:nth-child(3):before {
    content: "";
	  background: url("../img/small-face.png");
	  background-size:cover;
	  
  }
  .case__tab li.active:nth-child(4):before {
    content: "";
	  background: url("../img/nose_s.png");
	  background-size:cover;
  }
  .case__tab li.active:nth-child(5):before {
    content: "";
	  background: url("../img/liposuction_s.png");
	  background-size:cover;
  }
  .case__tab li.active:nth-child(6):before {
    content: "";
	  background: url("../img/breast-augmentation_s.png");
	  background-size:cover;
  }
  .case-item__image {
    width: 100%;
    height: 51.2vw;
    border-radius: 5.2vw;
    background-color: #fff;
  }
  .case-item__title {
    font-size: 4.533vw;
    text-align: center;
    margin-top: 6.667vw;
    letter-spacing: 0.05em;
  }
  .case-detail {
    margin-top: 5.2vw;
  }
  .case-detail .row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5.333vw;
  }
  .case-detail .row dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21.867vw;
    height: 6.133vw;
    font-size: 3.333vw;
    background: #313131;
    color: #fff;
    flex-shrink: 0;
    margin-right: 2.267vw;
  }
  .case-detail .row dd {
    font-size: 3.333vw;
    line-height: 1.35;
  }
  @keyframes displayAnime {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.group {
  background: #1b1b1b;
  padding: 107px 0 119px 0;
}
.group__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.group__inner h2 {
  text-align: center;
  color: #fff;
}
.group__inner h2 span {
  color: #fff;
}
.group__content {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
}
.group__content--item {
  display: block;
  width: 309px;
  height: 434px;
}
.group__content .tokyo {
  background: url(../img/group-tokyo@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.group__content .oosaka {
  background: url(../img/group-oosaka@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.group__content .nagoya {
  background: url(../img/group-nagoya@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.group-btn {
  border: 1px solid #fff;
  background: #fff;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1200px) {
  .group {
    background: #1b1b1b;
    padding: 8.917vw 0 9.917vw 0;
  }
  .group__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .group__inner h2 {
    text-align: center;
    color: #fff;
  }
  .group__inner h2 span {
    color: #fff;
  }
  .group__content {
    display: flex;
    justify-content: space-between;
    margin-top: 10vw;
  }
  .group__content--item {
    display: block;
    width: 25.75vw;
    height: 36.167vw;
  }
  .group__content .tokyo {
    background: url(../img/group-tokyo@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group__content .oosaka {
    background: url(../img/group-oosaka@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group__content .nagoya {
    background: url(../img/group-nagoya@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group-btn {
    border: 1px solid #fff;
    background: #fff;
    letter-spacing: 0.2em;
  }
}
@media screen and (max-width: 765px) {
  .group {
    background: #1b1b1b;
    padding: 16vw 0 11.067vw 0;
  }
  .group__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .group__inner h2 {
    text-align: center;
    color: #fff;
  }
  .group__content {
    display: block;
    margin-top: 16vw;
  }
  .group__content--item {
    display: block;
    width: 56.8vw;
    height: 79.733vw;
    margin: 0 auto 50px auto;
  }
  .group__content .tokyo {
    background: url(../img/group-tokyo@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group__content .oosaka {
    background: url(../img/group-oosaka@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group__content .nagoya {
    background: url(../img/group-nagoya@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .group-btn {
    border: 1px solid #fff;
    background: #fff;
  }
}
.doctor {
  background: url(../img/doctor-bk@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 106px 0;
}
.doctor__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.doctor__inner h2 {
  text-align: center;
  margin-bottom: 120px;
}
.doctor-main {
  display: flex;
  justify-content: space-between;
  margin: 0 0 133px 0;
}
.doctor-main__photo {
  width: 484px;
  height: 460px;
}
.doctor-main .name-box {
  margin-top: 43px;
}
.doctor-main .name-box .jp {
  font-size: 35px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.doctor-main .name-box .name {
  font-size: 30px;
  text-align: center;
  margin-top: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
.doctor-main .name-box .name span {
  font-size: 22px;
}
.doctor-main .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
}
.doctor-main .sns a {
  margin-right: 29px;
}
.doctor-main .sns .insta {
  width: 46px;
  height: auto;
}
.doctor-main .sns .youtube {
  width: 45px;
  height: 32px;
}
.doctor-main .sns .tiktok {
  width: 37px;
  height: 40px;
}
.doctor-main .sns .x {
  width: 40px;
  height: 37px;
}
.doctor-main__content {
  width: 48%;
}
.doctor-main__content .catch {
  font-size: 30px;
  line-height: 1.25;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 13px;
  margin-left: 29px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.doctor-main__content .intro {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 35px;
  margin-left: 29px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
}
.doctor-main__content .career-title {
  margin-top: 42px;
  margin-left: 29px;
  font-size: 25px;
  border-bottom: 1px solid #313131;
  padding-bottom: 11px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  color: #313131;
}
.doctor-main__content .career {
  display: flex;
  flex-wrap: wrap;
  margin-top: 11px;
  margin-left: 29px;
  color: #313131;
}
.doctor-main__content .career dd,
.doctor-main__content .career dt,
.doctor-main__content .career p {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
  white-space: nowrap;
}
.doctor-main__content .career dt {
  width: 17%;
}
.doctor-main__content .career dd {
  width: 83%;
}
.doctor-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b1b1b;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  width: 100%;
  max-width: 327px;
  height: 51px;
  position: relative;
  box-sizing: border-box;
  margin: 55px auto 0 auto;
}
.doctor-btn:after {
  position: absolute;
  content: "";
  background: url(../img/doctor--btn-arrow@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 19px;
  right: 15px;
}
.doctor-sub {
  display: flex;
  justify-content: space-between;
}
.doctor-sub__item {
  width: 309px;
}
.doctor-sub__item img {
  height: auto;
}
.doctor-sub__item .role {
  font-size: 24px;
  text-align: center;
  margin-top: 15px;
}
.doctor-sub__item .name-jp {
  font-size: 35px;
  text-align: center;
  margin-top: 16px;
}
.doctor-sub__item .name-en {
  font-size: 24px;
  text-align: center;
  margin-top: 19px;
}
.doctor-sub__item .small {
  margin-top: 35px;
  width: 271px;
  height: 43px;
}

@media screen and (max-width: 1200px) {
  .doctor {
    background: url(../img/doctor-bk@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 8.833vw 0;
  }
  .doctor__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .doctor__inner h2 {
    text-align: center;
    margin-bottom: 10vw;
  }
  .doctor-main {
    display: flex;
    justify-content: space-between;
    margin: 0 0 11.083vw 0;
  }
  .doctor-main__photo {
    width: 40.333vw;
    height: 38.333vw;
  }
  .doctor-main .name-box {
    margin-top: 3.583vw;
  }
  .doctor-main .name-box .jp {
    font-size: 2.917vw;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .doctor-main .name-box .name {
    font-size: 2.5vw;
    text-align: center;
    margin-top: 1.167vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .doctor-main .name-box .name span {
    font-size: 1.833vw;
  }
  .doctor-main .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3vw;
  }
  .doctor-main .sns a {
    margin-right: 2.417vw;
  }
  .doctor-main .sns .insta {
    width: 3.833vw;
    height: auto;
  }
  .doctor-main .sns .youtube {
    width: 3.75vw;
    height: 2.667vw;
  }
  .doctor-main .sns .tiktok {
    width: 3.083vw;
    height: 3.333vw;
  }
  .doctor-main .sns .x {
    width: 3.333vw;
    height: 3.083vw;
  }
  .doctor-main__content {
    width: 48%;
  }
  .doctor-main__content .catch {
    font-size: 2.5vw;
    line-height: 1.25;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    margin-top: 1.083vw;
    margin-left: 2.417vw;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .doctor-main__content .intro {
    font-size: 1.5vw;
    line-height: 1.7;
    margin-top: 2.917vw;
    margin-left: 2.417vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1em;
  }
  .doctor-main__content .career-title {
    margin-top: 3.5vw;
    margin-left: 2.417vw;
    font-size: 2.083vw;
    border-bottom: 1px solid #313131;
    padding-bottom: 0.917vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    color: #313131;
  }
  .doctor-main__content .career {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.917vw;
    margin-left: 2.417vw;
    color: #313131;
  }
  .doctor-main__content .career dd,
  .doctor-main__content .career dt,
  .doctor-main__content .career p {
    font-size: 1.5vw;
    margin-bottom: 0.5vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
    white-space: nowrap;
  }
  .doctor-main__content .career dt {
    width: 17%;
  }
  .doctor-main__content .career dd {
    width: 83%;
  }
  .doctor-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
    font-size: 1.833vw;
    color: #fff;
    text-decoration: none;
    width: 100%;
    max-width: 27.25vw;
    height: 4.25vw;
    position: relative;
    box-sizing: border-box;
    margin: 55px auto 0 auto;
  }
  .doctor-btn:after {
    position: absolute;
    content: "";
    background: url(../img/doctor--btn-arrow@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.333vw;
    height: 1.583vw;
    right: 1.25vw;
  }
  .doctor-sub {
    display: flex;
    justify-content: space-between;
  }
  .doctor-sub__item {
    width: 25.75vw;
  }
  .doctor-sub__item img {
    height: auto;
  }
  .doctor-sub__item .role {
    font-size: 2vw;
    text-align: center;
    margin-top: 1.25vw;
  }
  .doctor-sub__item .name-jp {
    font-size: 2.917vw;
    text-align: center;
    margin-top: 1.333vw;
  }
  .doctor-sub__item .name-en {
    font-size: 2vw;
    text-align: center;
    margin-top: 1.583vw;
  }
  .doctor-sub__item .small {
    margin-top: 2.917vw;
    width: 22.583vw;
    height: 3.583vw;
  }
}
@media screen and (max-width: 765px) {
  .doctor {
    background: url(../img/doctor-bk-sp@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 17.067vw 0 11.333vw 0;
  }
  .doctor__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .doctor__inner h2 {
    text-align: center;
  }
  .doctor-main {
    display: block;
    justify-content: space-between;
    margin: 13.067vw 0 16vw 0;
  }
  .doctor-main__photo {
    width: 76vw;
    height: 72.133vw;
    margin: 0 auto;
  }
  .doctor-main .name-box {
    margin-top: 6.8vw;
  }
  .doctor-main .name-box .jp {
    font-size: 4.667vw;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .doctor-main .name-box .name {
    font-size: 4.667vw;
    text-align: center;
    margin-top: 2.133vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .doctor-main .name-box .name span {
    font-size: 3.467vw;
    margin-left: 4.4vw;
  }
  .doctor-main .sns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5.6vw;
  }
  .doctor-main .sns a {
    margin-right: 2.417vw;
  }
  .doctor-main .sns .insta {
    width: 7.2vw;
    height: auto;
  }
  .doctor-main .sns .youtube {
    width: 7.067vw;
    height: 5.067vw;
  }
  .doctor-main .sns .tiktok {
    width: 5.733vw;
    height: 6.267vw;
  }
  .doctor-main .sns .x {
    width: 6.267vw;
    height: 5.733vw;
  }
  .doctor-main__content {
    width: 71.467vw;
    margin: 50px auto 0 auto;
  }
  .doctor-main__content .catch {
    font-size: 4.667vw;
    line-height: 6vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    text-align: center;
  }
  .doctor-main__content .intro {
    font-size: 3.333vw;
    line-height: 1.6;
    margin-top: 7.2vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }
  .doctor-main__content .career-title {
    margin-top: 7.333vw;
    font-size: 4vw;
    border-bottom: 1px solid #313131;
    padding-bottom: 1.733vw;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-style: normal;
    color: #313131;
  }
  .doctor-main__content .career {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.917vw;
    color: #313131;
  }
  .doctor-main__content .career dd,
  .doctor-main__content .career dt,
  .doctor-main__content .career p {
    font-size: 2.8vw;
    margin-bottom: 0.833vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
    white-space: nowrap;
  }
  .doctor-main__content .career dt {
    width: 17%;
  }
  .doctor-main__content .career dd {
    width: 83%;
  }
  .doctor-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b1b1b;
    font-size: 3.467vw;
    color: #fff;
    text-decoration: none;
    width: 100%;
    max-width: 51.2vw;
    height: 8vw;
    position: relative;
    box-sizing: border-box;
    margin: 14.8vw auto 0 auto;
  }
  .doctor-btn:after {
    position: absolute;
    content: "";
    background: url(../img/doctor--btn-arrow@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.533vw;
    height: 3.067vw;
    right: 1.733vw;
  }
  .doctor-sub {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
  }
  .doctor-sub__item {
    width: 41.2vw;
    margin-bottom: 15.467vw;
  }
  .doctor-sub__item img {
    height: auto;
  }
  .doctor-sub__item .role {
    font-size: 3.2vw;
    text-align: center;
    margin-top: 1.25vw;
  }
  .doctor-sub__item .name-jp {
    font-size: 4.667vw;
    text-align: center;
    margin-top: 1.333vw;
  }
  .doctor-sub__item .name-en {
    font-size: 3.2vw;
    text-align: center;
    margin-top: 1.583vw;
  }
  .doctor-sub__item .small {
    margin-top: 5.333vw;
    width: 36.133vw;
    height: 5.733vw;
  }
}
.news {
  padding: 110px 0 120px 0;
}
.news__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.news__inner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news__inner .wrapper h2 {
  text-align: center;
}
.news__list {
  margin-top: 35px;
  margin-right: 123px;
}
.news__item {
  padding-bottom: 35px;
  border-bottom: 1px solid #1b1b1b;
}
.news__date {
  font-size: 18px;
  margin-right: 35px;
}
.news__text {
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: solid 1px #313131;
}

@media screen and (max-width: 1200px) {
  .news {
    padding: 9.167vw 0 10vw 0;
  }
  .news__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .news__inner .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .news__inner .wrapper h2 {
    text-align: center;
  }
  .news__list {
    margin-top: 2.917vw;
    margin-right: 10.25vw;
  }
  .news__item {
    padding-bottom: 2.917vw;
    border-bottom: 1px solid #1b1b1b;
  }
  .news__date {
    font-size: 1.5vw;
    margin-right: 2.917vw;
  }
  .news__text {
    font-size: 1.5vw;
    padding-bottom: 0.833vw;
    border-bottom: solid 1px #313131;
  }
}
@media screen and (max-width: 765px) {
  .news {
    padding: 11.467vw 0 20.667vw 0;
  }
  .news__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .news__inner .wrapper {
    display: block;
    justify-content: space-between;
    align-items: center;
  }
  .news__inner .wrapper h2 {
    text-align: center;
  }
  .news__list {
    margin-top: 13.333vw;
    margin-right: 0;
  }
  .news__item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5.333vw;
    border-bottom: 1px solid #1b1b1b;
  }
  .news__date {
    font-size: 3.2vw;
    margin-right: 0;
  }
  .news__text {
    font-size: 3.2vw;
    padding-bottom: 2vw;
    border-bottom: solid 1px #313131;
  }
}
.qa {
  padding: 120px 0;
  background: url(../img/qa-bk@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.qa__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.qa__inner h2 {
  text-align: center;
}
.qa__inner .accordion-area {
  list-style: none;
  width: 100%;
  margin: 118px auto 0 auto;
  border: solid 1px #1b1b1b;
  background: #fff;
  padding-bottom: 62px;
}
.qa__inner .accordion-area li {
  width: 822px;
  margin: 0 auto;
}
.qa__inner .title {
  display: flex;
  align-items: center;
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 18px;
  padding: 45px 0 45px 65px;
  font-weight: normal;
  transition: all 0.5s ease;
  border-bottom: solid 1px #1b1b1b;
}
.qa__inner .title::before,
.qa__inner .title::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 4px;
  background-color: rgb(27, 27, 27);
}
.qa__inner .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.qa__inner .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.qa__inner .title span {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
}
.qa__inner .title.close::before {
  display: none;
}
.qa__inner .title.close::after {
  transform: rotate(0);
}
.qa__inner .box {
  position: relative;
  display: none; /*はじめは非表示*/
  padding: 25px 0;
}
.qa__inner .box span {
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
}
.qa__inner .box p {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding-left: 65px;
  line-height: 1.4;
}

@media screen and (max-width: 1200px) {
  .qa {
    padding: 10vw 0;
    background: url(../img/qa-bk@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .qa__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    /*アコーディオン全体*/
    /*アコーディオンタイトル*/
    /*アイコンの＋と×*/
    /*　closeというクラスがついたら形状変化　*/
    /*アコーディオンで現れるエリア*/
  }
  .qa__inner h2 {
    text-align: center;
  }
  .qa__inner .accordion-area {
    list-style: none;
    width: 100%;
    margin: 9.833vw auto 0 auto;
    border: solid 1px #1b1b1b;
    background: #fff;
    padding-bottom: 5.167vw;
  }
  .qa__inner .accordion-area li {
    width: 68.5vw;
    margin: 0 auto;
  }
  .qa__inner .title {
    display: flex;
    align-items: center;
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.5vw;
    padding: 3.75vw 0 3.75vw 5.417vw;
    font-weight: normal;
    transition: all 0.5s ease;
    border-bottom: solid 1px #1b1b1b;
  }
  .qa__inner .title::before,
  .qa__inner .title::after {
    position: absolute;
    content: "";
    width: 1.583vw;
    height: 0.333vw;
    background-color: rgb(27, 27, 27);
  }
  .qa__inner .title::before {
    top: 48%;
    right: 1.25vw;
    transform: rotate(0deg);
  }
  .qa__inner .title::after {
    top: 48%;
    right: 1.25vw;
    transform: rotate(90deg);
  }
  .qa__inner .title span {
    position: absolute;
    width: 3.333vw;
    height: 3.333vw;
    left: 0;
  }
  .qa__inner .title.close::before {
    display: none;
  }
  .qa__inner .title.close::after {
    transform: rotate(0);
  }
  .qa__inner .box {
    position: relative;
    display: none; /*はじめは非表示*/
    padding: 2.083vw 0;
  }
  .qa__inner .box span {
    position: absolute;
    width: 3.333vw;
    height: 3.333vw;
    left: 0;
  }
  .qa__inner .box p {
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    padding-left: 5.417vw;
    line-height: 1.4;
  }
}
@media screen and (max-width: 765px) {
  .qa {
    padding: 15.867vw 0;
    background: url(../img/qa-bk@2x.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .qa__inner {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    /*アコーディオン全体*/
    /*アコーディオンタイトル*/
    /*アイコンの＋と×*/
    /*　closeというクラスがついたら形状変化　*/
    /*アコーディオンで現れるエリア*/
  }
  .qa__inner h2 {
    text-align: center;
  }
  .qa__inner .accordion-area {
    list-style: none;
    width: 100%;
    margin: 15.867vw auto 0 auto;
    border: solid 1px #1b1b1b;
    background: #fff;
    padding-bottom: 5.167vw;
  }
  .qa__inner .accordion-area li {
    width: 100%;
    margin: 0 0 0 2.133vw;
    max-width: 84vw;
  }
  .qa__inner .title {
    display: flex;
    align-items: center;
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 3.467vw;
    padding: 3.75vw 0 3.75vw 10.133vw;
    font-weight: normal;
    transition: all 0.5s ease;
    border-bottom: solid 1px #1b1b1b;
  }
  .qa__inner .title::before,
  .qa__inner .title::after {
    position: absolute;
    content: "";
    width: 4vw;
    height: 0.533vw;
    background-color: rgb(27, 27, 27);
  }
  .qa__inner .title::before {
    top: 48%;
    right: 5.333vw;
    transform: rotate(0deg);
  }
  .qa__inner .title::after {
    top: 48%;
    right: 5.333vw;
    transform: rotate(90deg);
  }
  .qa__inner .title span {
    position: absolute;
    width: 8vw;
    height: 8vw;
    left: 0;
  }
  .qa__inner .title.close::before {
    display: none;
  }
  .qa__inner .title.close::after {
    transform: rotate(0);
  }
  .qa__inner .box {
    position: relative;
    display: none; /*はじめは非表示*/
    padding: 4.8vw 2vw 4.8vw 0;
  }
  .qa__inner .box span {
    position: absolute;
    width: 8vw;
    height: 8vw;
    left: 0;
  }
  .qa__inner .box p {
    display: flex;
    align-items: center;
    font-size: 3.467vw;
    padding-left: 10.133vw;
    line-height: 1.4;
  }
}
.loop-slider {
  overflow: hidden;
  width: 100%;
  padding: 120px 0;
}

.loop-track {
  display: flex;
  width: max-content;
  animation: loop 50s linear infinite;
  gap: 30px; /* 画像の間隔調整 */
}

.loop-track img {
  width: 412px;
  height: 310px; /* サイズは自由に変更 */
  border-radius: 47px;
  width: auto;
  object-fit: contain;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1200px) {
  .loop-slider {
    overflow: hidden;
    width: 100%;
    padding: 10vw 0;
  }
  .loop-track {
    display: flex;
    width: max-content;
    animation: loop 50s linear infinite;
    gap: 2.5vw; /* 画像の間隔調整 */
  }
  .loop-track img {
    width: 34.333vw;
    height: 25.833vw; /* サイズは自由に変更 */
    border-radius: 3.917vw;
    width: auto;
    object-fit: contain;
  }
  @keyframes loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}
@media screen and (max-width: 1200px) {
  .loop-slider {
    overflow: hidden;
    width: 100%;
    padding: 10.133vw 0 20.933vw 0;
  }
  .loop-track {
    display: flex;
    width: max-content;
    animation: loop 50s linear infinite;
    gap: 2.5vw; /* 画像の間隔調整 */
  }
  .loop-track img {
    width: 62vw;
    height: 41.333vw; /* サイズは自由に変更 */
    border-radius: 6.267vw;
    width: auto;
    object-fit: contain;
  }
  @keyframes loop {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}
.footer {
  background: #1b1b1b;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  padding-top: 55px;
}
.footer__logo {
  width: 102px;
  height: 50px;
}
.footer__btns {
  display: flex;
}
.footer .f-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 37px;
  color: #fff;
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 9px;
  margin-left: 10px;
}
.footer__menu {
  display: flex;
  margin-top: 35px;
}
.footer__menu li {
  margin-right: 20px;
}
.footer__menu li a {
  color: #fff;
  font-size: 16px;
}
.footer__group {
  margin-top: 43px;
}
.footer__group h3 {
  font-size: 16px;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
.footer__clinic {
  margin-top: 15px;
  display: flex;
}
.footer__clinic li {
  margin-right: 20px;
}
.footer__clinic a {
  color: #fff;
  font-size: 16px;
}
.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px 20px;
  margin-top: 45px;
  margin-bottom: 60px;
}
.footer__links a {
  color: #fff;
  font-size: 16px;
}
.footer__copy {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  font-size: 16px;
  text-align: center;
  background-color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  padding: 20px 0 25px 0;
}

@media screen and (max-width: 1200px) {
  .footer {
    background: #1b1b1b;
  }
  .footer__content {
    display: flex;
    justify-content: space-between;
    padding-top: 4.583vw;
  }
  .footer__logo {
    width: 8.5vw;
    height: 4.167vw;
  }
  .footer__btns {
    display: flex;
  }
  .footer .f-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.333vw;
    height: 3.083vw;
    color: #fff;
    font-size: 1.333vw;
    border: 1px solid #fff;
    border-radius: 0.75vw;
    margin-left: 0.833vw;
  }
  .footer__menu {
    display: flex;
    margin-top: 2.917vw;
  }
  .footer__menu li {
    margin-right: 1.667vw;
  }
  .footer__menu li a {
    color: #fff;
    font-size: 1.333vw;
  }
  .footer__group {
    margin-top: 3.583vw;
  }
  .footer__group h3 {
    font-size: 1.333vw;
    color: #fff;
  }
  .footer__clinic {
    margin-top: 1.25vw;
    display: flex;
  }
  .footer__clinic a {
    color: #fff;
    font-size: 1.333vw;
  }
  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.25vw 1.667vw;
    margin-top: 3.75vw;
    margin-bottom: 5vw;
  }
  .footer__links a {
    color: #fff;
    font-size: 1.333vw;
  }
  .footer__copy {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    font-size: 1.333vw;
    text-align: center;
    background-color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
    padding: 1.667vw 0 2.083vw 0;
  }
}
@media screen and (max-width: 765px) {
  .footer {
    background: #1b1b1b;
  }
  .footer__content {
    display: flex;
    justify-content: space-between;
    padding-top: 4.583vw;
  }
  .footer__logo {
    width: 17.2vw;
    height: 8.4vw;
  }
  .footer__btns {
    display: flex;
  }
  .footer .f-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22.933vw;
    height: 5.733vw;
    color: #fff;
    font-size: 2.4vw;
    border: 1px solid #fff;
    border-radius: 1.2vw;
    margin-left: 1.6vw;
  }
  .footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2.667vw 0;
    margin-top: 10.667vw;
  }
  .footer__menu li {
    margin-right: 1.667vw;
  }
  .footer__menu li a {
    color: #fff;
    font-size: 2.667vw;
  }
  .footer__group {
    margin-top: 6.4vw;
  }
  .footer__group h3 {
    font-size: 2.667vw;
    color: #fff;
  }
  .footer__clinic {
    margin-top: 2.667vw;
    display: flex;
  }
  .footer__clinic a {
    color: #fff;
    font-size: 2.667vw;
  }
  .footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.667vw 5.333vw;
    margin-top: 7.333vw;
    margin-bottom: 10.667vw;
  }
  .footer__links a {
    color: #fff;
    font-size: 2.667vw;
  }
  .footer__copy {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    font-size: 2.667vw;
    text-align: center;
    background-color: #fff;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
    padding: 3.333vw 0 2.8vw 0;
  }
}

.campaign__content {
  /* swiper本体だけoverflow隠したい場合はここではなく .campaignSwiper に付ける */
}

.campaignSwiper {
  overflow: hidden;
}

.campaign__nav {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.campaign__prev,
.campaign__next {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
}

.campaign__prev:hover,
.campaign__next:hover {
  opacity: 0.8;
}

.campaign__pagination {
  margin-top: 12px;
  text-align: center;
}

.js-campaign-prev,
.js-campaign-next {
  width: 40px;
  height: 40px;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
}

.js-campaign-prev {
  background-image: url("../img/arrow-prev.svg");
}

.js-campaign-next {
  background-image: url("../img/arrow-next.svg");
}



/*# sourceMappingURL=style.css.map */
