@charset "UTF-8";
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*, ::after, ::before {
  box-sizing: border-box;
}

a, button {
  cursor: revert;
}

menu, ol, ul {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/********************
  mixin 
*********************/
/* レスポンシブ ブレイクポイント */
/* vw 自動計算 */
/* vw横幅 */
/* vw縦幅 */
/********************
  コンテンツ幅 
*********************/
/********************
  基本設定
*********************/
html {
  scroll-behavior: smooth;
}

html, body {
  font-size: 62.5%;
  color: #333333;
  line-height: 1.5;
}

a,
a:visited {
  color: inherit;
}

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

/********************
  マウスオーバー時設定
*********************/
article a,
li a,
dt a,
dd a {
  transition: 0.3s;
}
article a:hover,
li a:hover,
dt a:hover,
dd a:hover {
  opacity: 0.7;
}

button {
  transition: 0.3s;
}
button:hover {
  opacity: 0.7;
}

.link-under-line {
  text-decoration: underline;
}

/********************
  汎用クラス
*********************/
.pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

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

/********************
  カテゴリ色
*********************/
/********************
  カテゴリアイコン画像
*********************/
/********************
  グローバルヘッダー
*********************/
.global-header {
  min-width: 1100px;
  padding-left: 72px;
  padding-right: 56px;
  height: 60px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .global-header {
    width: 100%;
    min-width: 100%;
    max-height: 60px;
    padding-left: 0;
    padding-right: 0;
    height: 13.3333333333vw;
  }
}
.global-header__logo {
  width: 180px;
  display: block;
}
@media screen and (max-width: 768px) {
  .global-header__logo {
    max-width: 180px;
    width: 40vw;
  }
}
.global-header .user-area {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .global-header .user-area {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.global-header .user-area a {
  color: #163259;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .global-header .user-area a {
    font-size: 1.2rem;
  }
}
.global-header .user-area a {
  transition: 0.3s;
}
.global-header .user-area a:hover {
  opacity: 0.7;
}
.global-header .user-name-are {
  border-right: solid 1px #E0E0E2;
  margin-right: 20px;
  padding-right: 20px;
}
.global-header .user-name-are a {
  display: flex;
  align-items: center;
  height: 100%;
}
.global-header .user-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: #163259;
  margin-right: 8px;
}
.global-header .user-name span {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.16666666;
}
.global-header .user-point {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 0.875;
  color: #C35656;
}
.global-header .user-point span {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.16666666;
  color: #163259;
}
.global-header .user-regist,
.global-header .user-mypage {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .global-header .user-regist,
  .global-header .user-mypage {
    margin-right: 10px;
  }
}
.global-header .user-regist a,
.global-header .user-mypage a {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .global-header .user-regist a,
  .global-header .user-mypage a {
    flex-direction: column;
    padding-top: 9px;
  }
}
.global-header .user-regist a::before,
.global-header .user-mypage a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../img/icon/icon_regist.png") no-repeat 0 0;
  background-size: 100%;
  margin-right: 6px;
  margin-bottom: 1px;
}
@media screen and (max-width: 768px) {
  .global-header .user-regist a::before,
  .global-header .user-mypage a::before {
    display: block;
    margin-bottom: 0;
    margin-right: 0;
  }
}
.global-header .user-login,
.global-header .user-logout {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .global-header .user-login,
  .global-header .user-logout {
    margin-right: 12px;
  }
}
.global-header .user-login a,
.global-header .user-logout a {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .global-header .user-login a,
  .global-header .user-logout a {
    flex-direction: column;
    padding-top: 9px;
  }
}
.global-header .user-login a::before,
.global-header .user-logout a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../img/icon/icon_login.png") no-repeat 0 0;
  background-size: 100%;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .global-header .user-login a::before,
  .global-header .user-logout a::before {
    display: block;
    margin-right: 0;
  }
}

.user-area--sp {
  padding: 6px 17px 4px 12px;
  border-top: solid 1px #E0E0E2;
  height: 54px;
}
.user-area--sp .user-name-are a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-area--sp .user-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  color: #163259;
  margin-right: 8px;
}
.user-area--sp .user-name span {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.16666666;
}
.user-area--sp .user-point {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #C35656;
}
.user-area--sp .user-point span {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.16666666;
  color: #163259;
}

/********************
  ハンバーガーメニュー
*********************/
.hamburger-btn {
  display: none;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  max-width: 60px;
  max-height: 60px;
  background: #163259;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }
}
.hamburger-btn span {
  width: 6.1538461538vw;
  height: 1px;
  background: #fff;
  position: relative;
  margin: auto;
}
.hamburger-btn::before {
  content: "";
  display: block;
  width: 7.1794871795vw;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s transform;
}
.hamburger-btn::after {
  content: "";
  display: block;
  width: 5.1282051282vw;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s transform;
}
.hamburger-btn.open span {
  display: none;
}
.hamburger-btn.open::before {
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
.hamburger-btn.open::after {
  top: 0;
  bottom: 0;
  transform: rotate(-45deg);
  width: 7.1794871795vw;
}

.sp-slide-menu {
  width: 80.51282%;
  height: 100%;
  background: #F4F1ED;
  padding: 32px 23px 60px;
  position: fixed;
  overflow: hidden;
  overflow-y: auto;
  top: min(13.3333333333vw, 60px);
  right: -80.51282%;
  transition-duration: 300ms;
  z-index: 100;
}
.sp-slide-menu.open {
  margin-right: 0;
  transform: translate(-100%, 0);
}
.sp-slide-menu.login {
  top: min(27.4358974359vw, 107px);
}
.sp-slide-menu li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.sp-slide-menu li a.cat-parent {
  font-weight: 500;
  display: block;
  width: 100%;
  border-bottom: solid 1px #212121;
  padding-bottom: 12px;
  line-height: 1.428571;
  padding-left: 16px;
  padding-right: 20px;
  position: relative;
}
.sp-slide-menu li a.cat-parent svg {
  position: absolute;
  right: 12px;
  top: 8px;
}
.sp-slide-menu li a.cat-parent + ul {
  padding-top: 16px;
  padding-bottom: 30px;
}
.sp-slide-menu li a.cat-parent + ul li {
  padding-left: 38px;
  padding-right: 20px;
}
.sp-slide-menu li.cat01 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_01.png);
  background-size: 12px;
  padding-left: 38px;
}
.sp-slide-menu li.cat02 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_02.png);
  background-size: 14px;
  padding-left: 38px;
}
.sp-slide-menu li.cat03 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_03.png);
  background-size: 14px;
  padding-left: 38px;
}
.sp-slide-menu li.cat04 {
  padding-bottom: 30px;
}
.sp-slide-menu li.cat04 .cat-parent {
  background: no-repeat 16px 4px;
  background-image: url(../img/icon/icon_side_menu_04.png);
  background-size: 10px;
  padding-left: 38px;
}
.sp-slide-menu li.cat05 {
  padding-bottom: 30px;
}
.sp-slide-menu li.cat05 .cat-parent {
  background: no-repeat 12px 3px;
  background-image: url(../img/icon/icon_side_menu_05.png);
  background-size: 16px;
  padding-left: 38px;
}
.sp-slide-menu li.cat06 .cat-parent {
  background: no-repeat 14px 3px;
  background-image: url(../img/icon/icon_side_menu_06.png);
  background-size: 16px;
  padding-left: 38px;
}
.sp-slide-menu li.cat07 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_07.png);
  background-size: 14px;
  padding-left: 38px;
}
.sp-slide-menu .sp-slide-menu-btn-area {
  margin-top: 100px;
}
.sp-slide-menu .sp-slide-menu-btn-area a {
  display: block;
  width: 210px;
  height: 40px;
  margin: 0 auto;
  line-height: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 100vh;
  text-align: center;
  padding-left: 22px;
  padding-right: 22px;
  border: solid 1px #163259;
}
.sp-slide-menu .sp-slide-menu-btn-area__regist, .sp-slide-menu .sp-slide-menu-btn-area__mypage {
  background: #FFA21A url("../img/icon/icon_regist.png") no-repeat 22px center;
  background-size: 14px;
  margin-bottom: 20px !important;
}
.sp-slide-menu .sp-slide-menu-btn-area__login, .sp-slide-menu .sp-slide-menu-btn-area__logout {
  background: #FFffff url("../img/icon/icon_login.png") no-repeat 22px center;
  background-size: 14px;
}
.sp-slide-menu .sp-slide-menu-logo__haseko {
  display: block;
  width: 100px;
  height: auto;
  margin: 40px auto 0;
}

.sp-footer-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-footer-menu {
    display: block;
    position: fixed;
    bottom: 0;
    background: #F4F1ED;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: solid 1px #212121;
  }
  .sp-footer-menu ul {
    display: flex;
    justify-content: space-between;
    padding-left: 18px;
    padding-right: 18px;
  }
  .sp-footer-menu li {
    width: 24.1025641026vw;
    padding: 0 12px 7px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    border-right: solid 1px #ffffff;
    text-align: center;
  }
  .sp-footer-menu li:first-child {
    padding-left: 0;
  }
  .sp-footer-menu li:last-child {
    padding-right: 0;
    border-right: none;
  }
  .sp-footer-menu li a {
    display: block;
  }
  .sp-footer-menu li.cat01 a {
    background: no-repeat center 0;
    background-image: url(../img/icon/icon_side_menu_01.png);
    background-size: 16px;
    padding-top: 26px;
  }
  .sp-footer-menu li.cat02 a {
    background: no-repeat center 0;
    background-image: url(../img/icon/icon_side_menu_02.png);
    background-size: 20px;
    padding-top: 26px;
  }
  .sp-footer-menu li.cat03 a {
    background: no-repeat center 0;
    background-image: url(../img/icon/icon_side_menu_03.png);
    background-size: 20px;
    padding-top: 26px;
  }
  .sp-footer-menu li.lot a {
    background: no-repeat center 0;
    background-image: url(../img/icon/icon_lot.png);
    background-size: 20px;
    padding-top: 26px;
  }
}

/********************
  ぱんくず
*********************/
.breadcrumb {
  width: 100%;
  background: #F4F1ED;
  border-top: 1px #212121 solid;
  border-bottom: 1px #fff solid;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    border-top: none;
    padding-left: 16px;
  }
}
.breadcrumb ul {
  padding-top: 8px;
  padding-bottom: 7px;
  width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .breadcrumb ul {
    width: 100%;
    overflow-x: scroll;
    display: flex;
  }
}
.breadcrumb ul li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.333333;
  font-family: "Noto Sans JP", sans-serif;
  color: #7C7C7C;
}
@media screen and (max-width: 768px) {
  .breadcrumb ul li {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
  }
}
.breadcrumb ul li::after {
  content: ">";
  display: inline-block;
  padding-left: 0.2em;
  padding-right: 0.3em;
}
.breadcrumb ul li:last-child::after {
  display: none;
}

/********************
  コンテンツヘッダー
*********************/
.contents-header {
  background: #F4F1ED;
  width: 100%;
}

.contents-header-inner {
  width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 188px;
}
@media screen and (max-width: 768px) {
  .contents-header-inner {
    width: 100%;
    height: auto;
  }
}
.contents-header-inner h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contents-header-inner h2 {
    font-size: 2rem;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.contents-header-inner h2 span {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 12px;
  display: block;
}
@media screen and (max-width: 768px) {
  .contents-header-inner h2 span {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
}

.contents-header--nav .contents-header-inner {
  justify-content: space-between;
}
.contents-header--nav .contents-header-inner h2 {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .contents-header--nav .contents-header-inner h2 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.contents-header--nav .contents-header-inner nav {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .contents-header--nav .contents-header-inner nav {
    width: 100%;
    position: relative;
  }
  .contents-header--nav .contents-header-inner nav .prev::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: solid 1px #7C7C7C;
    border-right: solid 1px #7C7C7C;
    position: absolute;
    top: 0;
    bottom: 8px;
    left: 18px;
    margin: auto;
    rotate: -135deg;
    z-index: 10;
  }
  .contents-header--nav .contents-header-inner nav .prev::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #E0E0E2;
    border-radius: 100vh;
    position: absolute;
    top: 0;
    bottom: 8px;
    left: 8px;
    margin: auto;
  }
  .contents-header--nav .contents-header-inner nav .next::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: solid 1px #7C7C7C;
    border-right: solid 1px #7C7C7C;
    position: absolute;
    top: 0;
    bottom: 8px;
    right: 18px;
    margin: auto;
    rotate: 45deg;
    z-index: 10;
  }
  .contents-header--nav .contents-header-inner nav .next::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #E0E0E2;
    border-radius: 100vh;
    position: absolute;
    top: 0;
    bottom: 8px;
    right: 8px;
    margin: auto;
  }
  .contents-header--nav .contents-header-inner nav.no-arrow-next .next {
    display: none;
  }
  .contents-header--nav .contents-header-inner nav.no-arrow-prev .prev {
    display: none;
  }
}
.contents-header--nav .contents-header-inner nav ul {
  display: flex;
  gap: 0 8px;
  padding-bottom: 8px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contents-header--nav .contents-header-inner nav ul {
    padding-right: 28px;
    padding-left: 28px;
    overflow-x: scroll;
  }
}
.contents-header--nav .contents-header-inner nav li {
  display: block;
  width: 114px;
  height: 46px;
  background: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2857142;
}
.contents-header--nav .contents-header-inner nav li.active {
  background: #E8E5E1;
}
.contents-header--nav .contents-header-inner nav li a {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 116px;
  height: 46px;
}
.contents-header--nav .contents-header-inner nav li.cat01 {
  border-bottom: 4px solid #C8C8C9;
}
.contents-header--nav .contents-header-inner nav li.cat02 {
  border-bottom: 4px solid #B2DCFF;
}
.contents-header--nav .contents-header-inner nav li.cat03 {
  border-bottom: 4px solid #70D5C5;
}
.contents-header--nav .contents-header-inner nav li.cat04 {
  border-bottom: 4px solid #FFB5B4;
}
.contents-header--nav .contents-header-inner nav li.cat05 {
  border-bottom: 4px solid #FFDE76;
}
.contents-header--nav .contents-header-inner nav li.cat06 {
  border-bottom: 4px solid #9EE2E2;
}
.contents-header--nav .contents-header-inner nav li.cat07 {
  border-bottom: 4px solid #C8E29E;
}
.contents-header--nav .contents-header-inner nav li.cat08 {
  border-bottom: 4px solid #FFBBDA;
}

/********************
  フッター
*********************/
.global-footer {
  border-top: solid 1px #212121;
  width: 100%;
}

.footer-top {
  background: #FFFCE6;
}
.footer-top a {
  transition: 0.3s;
}
.footer-top a:hover {
  opacity: 0.7;
}

.footer-logo-area {
  padding-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-logo-area {
    padding-top: 40px;
    flex-direction: column;
  }
}
.footer-logo-area a {
  display: block;
}
.footer-logo-area__haseko {
  width: 162px;
  margin-right: 36px;
}
@media screen and (max-width: 768px) {
  .footer-logo-area__haseko {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 22px;
  }
}
.footer-logo-area__branchera {
  width: 266px;
}

.footer-copy {
  padding-top: 18px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .footer-copy {
    padding-top: 24px;
  }
}
.footer-copy__title {
  font-size: 2rem;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 24px;
}
.footer-copy__read {
  font-size: 1.5rem;
  line-height: 2.666666;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .footer-copy__read {
    margin-bottom: 36px;
  }
}

.footer-btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  padding-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .footer-btn-area {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
.footer-btn-area a {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 50px;
  text-align: center;
  width: 300px;
  height: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  border-radius: 100vh;
  border: solid 1px #212121;
}
.footer-btn-area a svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.footer-btn-area__about {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .footer-btn-area__about {
    margin-bottom: 24px;
  }
}
.footer-btn-area__regist {
  background: #FFA21A;
}

.footer-nav {
  border-top: solid 1px #212121;
  background: #F4F1ED;
  width: 100%;
  padding: 64px 0 94px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-nav {
    padding: 44px 50px;
  }
}
.footer-nav nav {
  width: 1100px;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer-nav nav {
    width: 100%;
  }
}
.footer-nav nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 57px;
  width: 660px;
}
@media screen and (max-width: 768px) {
  .footer-nav nav ul {
    width: 100%;
  }
}
.footer-nav nav li {
  width: 182px;
  line-height: 2.7142857;
}
.footer-nav nav li:nth-child(1) {
  order: 1;
}
.footer-nav nav li:nth-child(2) {
  order: 4;
}
.footer-nav nav li:nth-child(3) {
  order: 2;
}
.footer-nav nav li:nth-child(4) {
  order: 5;
}
.footer-nav nav li:nth-child(5) {
  order: 3;
}

.footer-bottom {
  border-top: solid 1px #212121;
  background: #F4F1ED;
  width: 100%;
}
.footer-bottom nav {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer-bottom nav {
    padding: 0 51px 20px;
  }
}
.footer-bottom nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.footer-bottom nav li {
  background: url("../img/icon/icon_outer_link.png") no-repeat right center;
  background-size: 10px 8px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .footer-bottom nav li {
    line-height: 2.166666;
  }
}
.footer-bottom address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.footer-bottom-inner {
  width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 41px;
}
@media screen and (max-width: 768px) {
  .footer-bottom-inner {
    width: 100%;
    flex-direction: column;
    padding: 28px 0 89px;
  }
}

.page-top-wrapper {
  width: 1100px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top-wrapper {
    width: 100%;
  }
}

.page-top {
  position: absolute;
  width: 14px;
  top: 44px;
  right: 10px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page-top {
    top: 13px;
    right: 0;
  }
}

/********************
  コンテンツメニュー
*********************/
.sidebar-title {
  margin-bottom: 35px;
}
.sidebar-title__en {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.125;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.sidebar-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.sidebar--pc {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .sidebar--pc {
    display: none;
  }
}
.sidebar--pc li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}
.sidebar--pc li a.cat-parent {
  font-weight: 500;
  display: block;
  width: 100%;
  border-bottom: solid 1px #212121;
  padding-bottom: 12px;
  line-height: 1.428571;
  padding-left: 16px;
  padding-right: 20px;
  position: relative;
}
.sidebar--pc li a.cat-parent svg {
  position: absolute;
  right: 12px;
  top: 8px;
}
.sidebar--pc li a.cat-parent + ul {
  padding-top: 16px;
  padding-bottom: 30px;
}
.sidebar--pc li a.cat-parent + ul li {
  padding-left: 38px;
  padding-right: 20px;
}
.sidebar--pc li.cat01 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_01.png);
  background-size: 11px;
  padding-left: 38px;
}
.sidebar--pc li.cat02 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_02.png);
  background-size: 14px;
  padding-left: 38px;
}
.sidebar--pc li.cat03 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_03.png);
  background-size: 14px;
  padding-left: 38px;
}
.sidebar--pc li.cat04 {
  padding-bottom: 30px;
}
.sidebar--pc li.cat04 .cat-parent {
  background: no-repeat 16px 4px;
  background-image: url(../img/icon/icon_side_menu_04.png);
  background-size: 10px;
  padding-left: 38px;
}
.sidebar--pc li.cat05 {
  padding-bottom: 30px;
}
.sidebar--pc li.cat05 .cat-parent {
  background: no-repeat 12px 3px;
  background-image: url(../img/icon/icon_side_menu_05.png);
  background-size: 16px;
  padding-left: 38px;
}
.sidebar--pc li.cat06 .cat-parent {
  background: no-repeat 14px 3px;
  background-image: url(../img/icon/icon_side_menu_06.png);
  background-size: 16px;
  padding-left: 38px;
}
.sidebar--pc li.cat07 .cat-parent {
  background: no-repeat 16px 3px;
  background-image: url(../img/icon/icon_side_menu_07.png);
  background-size: 14px;
  padding-left: 38px;
}

.pickup-content {
  margin-top: 50px;
}
.pickup-content__image {
  width: 136px;
  margin-right: 16px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .pickup-content__image {
    width: 34.8717948718vw;
    margin-right: 18px;
  }
}
.pickup-content__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.pickup-content--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .pickup-content--sp {
    margin-top: 0;
    display: block;
    background: #F4F1ED;
    padding: 40px 28px;
  }
}

.pickup-content-title {
  border-bottom: solid 1px #212121;
  padding-bottom: 25px;
  margin-bottom: 12px;
}
.pickup-content-title__en {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.125;
  margin-bottom: 10px;
}
.pickup-content-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
}

.pickup-content-items {
  padding-bottom: 12px;
  border-bottom: solid 1px #E0E0E2;
  margin-bottom: 12px;
}
.pickup-content-items a {
  display: flex;
}

.kaya-tsubuyaki-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .kaya-tsubuyaki-wrapper {
    display: block;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.kaya-tsubuyaki {
  margin-top: 46px;
  background: #DBEFF2;
  width: 100%;
  padding-bottom: 36px;
}
.kaya-tsubuyaki a {
  transition: 0.3s;
}
.kaya-tsubuyaki a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .kaya-tsubuyaki {
    padding-bottom: 30px;
  }
}

.kaya-tsubuyaki-title {
  display: flex;
  justify-content: space-between;
}
.kaya-tsubuyaki-title img:first-child {
  position: relative;
  width: 220px;
  height: 54px;
  top: -4px;
  left: -14px;
}
@media screen and (max-width: 768px) {
  .kaya-tsubuyaki-title img:first-child {
    top: -18px;
    left: -11px;
  }
}
.kaya-tsubuyaki-title img:nth-child(2) {
  position: relative;
  width: 80px;
  height: auto;
  top: -28px;
}
@media screen and (max-width: 768px) {
  .kaya-tsubuyaki-title img:nth-child(2) {
    top: -30px;
  }
}

.kaya-tsubuyaki-text {
  margin-top: 4px;
  padding: 0 30px;
}
.kaya-tsubuyaki-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.142857;
}

.kaya-tsubuyaki-btn a {
  display: block;
  width: 98px;
  height: 44px;
  background: #163259;
  border-radius: 100vh;
  text-align: center;
  line-height: 44px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500px;
  color: #ffffff;
  margin: 22px auto 0;
}
.kaya-tsubuyaki-btn a svg {
  position: relative;
  top: -3px;
  left: 6px;
}

.ranking {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .ranking {
    margin-top: -42px;
    margin-left: -28px;
    margin-bottom: 32px;
    padding-top: 42px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 29px;
    background: #F4F1ED;
  }
}
.ranking__image {
  width: 136px;
  margin-right: 16px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .ranking__image {
    width: 30.7692307692vw;
    margin-right: 18px;
  }
}
.ranking__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.ranking--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .ranking--sp {
    margin-top: 0;
    display: block;
    background: #F4F1ED;
    padding: 40px 28px;
  }
}
.ranking__icon {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 22px;
}

.ranking-title {
  border-bottom: solid 1px #212121;
  padding-bottom: 25px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .ranking-title {
    border-bottom: none;
  }
}
.ranking-title__en {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.125;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.ranking-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.ranking-items {
  padding-bottom: 12px;
  border-bottom: solid 1px #E0E0E2;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .ranking-items {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
  }
}
.ranking-items a {
  display: flex;
  position: relative;
}

.sidebar--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sidebar--sp {
    display: block;
    padding-top: 42px;
    padding-left: 28px;
    border-top: solid 1px #212121;
  }
}
.sidebar--sp ul {
  padding-left: 23px;
  padding-right: 61px;
}
.sidebar--sp li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
.sidebar--sp li a.cat-parent {
  font-weight: 700;
  display: block;
  width: 100%;
  border-bottom: dotted 1px #212121;
  padding-bottom: 24px;
  line-height: 2;
  padding-left: 16px;
  padding-right: 0px;
  position: relative;
}
.sidebar--sp li.cat01 .cat-parent {
  background: no-repeat 9px 3px;
  background-image: url(../img/icon/icon_side_menu_01.png);
  background-size: 18px;
  padding-left: 48px;
}
.sidebar--sp li.cat02 {
  margin-top: 12px;
}
.sidebar--sp li.cat02 .cat-parent {
  background: no-repeat 7px 17px;
  background-image: url(../img/icon/icon_side_menu_02.png);
  background-size: 22px;
  padding-left: 48px;
  padding-bottom: 12px;
}
.sidebar--sp li.cat03 {
  margin-top: 12px;
}
.sidebar--sp li.cat03 .cat-parent {
  background: no-repeat 7px 17px;
  background-image: url(../img/icon/icon_side_menu_03.png);
  background-size: 22px;
  padding-left: 48px;
  padding-bottom: 12px;
}
.sidebar--sp li.cat04 {
  margin-top: 21px;
}
.sidebar--sp li.cat04 .cat-parent {
  background: no-repeat 14px 4px;
  background-image: url(../img/icon/icon_side_menu_04.png);
  background-size: 16px;
  padding-left: 48px;
}
.sidebar--sp li.cat05 {
  margin-top: 21px;
}
.sidebar--sp li.cat05 .cat-parent {
  background: no-repeat 8px 6px;
  background-image: url(../img/icon/icon_side_menu_05.png);
  background-size: 22px;
  padding-left: 48px;
}
.sidebar--sp li.cat06 {
  margin-top: 21px;
}
.sidebar--sp li.cat06 .cat-parent {
  background: no-repeat 7px 6px;
  background-image: url(../img/icon/icon_side_menu_06.png);
  background-size: 22px;
  padding-left: 48px;
}
.sidebar--sp li.cat07 {
  margin-top: 21px;
}
.sidebar--sp li.cat07 .cat-parent {
  background: no-repeat 7px 4px;
  background-image: url(../img/icon/icon_side_menu_07.png);
  background-size: 22px;
  padding-left: 48px;
}

/********************
  メインコンテンツ
*********************/
.content-wrapper {
  display: flex;
  justify-content: space-between;
  width: 1100px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    display: block;
    width: 100%;
    padding-top: 32px;
    padding-bottom: 50px;
  }
}

.main-content {
  width: 700px;
}
@media screen and (max-width: 768px) {
  .main-content {
    width: 100%;
    padding-bottom: 56px;
  }
}

@media screen and (max-width: 768px) {
  .detail .content-wrapper {
    padding-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .detail .main-content {
    padding-bottom: 0;
  }
}

/********************
  トップページ
*********************/
@media screen and (max-width: 768px) {
  .top-page .main-content {
    padding-bottom: 40px;
  }
  .top-page .sidebar--sp {
    border-top: none;
    padding-top: 0;
  }
}

.main-visual {
  width: 100%;
  border-top: solid 1px #212121;
  border-bottom: solid 1px #212121;
  display: flex;
}
@media screen and (max-width: 768px) {
  .main-visual {
    border-top: none;
  }
}

.main-visual-text {
  width: 31.7715959004%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 4.1727672035%;
  padding-right: 4.1727672035%;
}
@media screen and (max-width: 768px) {
  .main-visual-text {
    display: none;
  }
}

.main-visual-img {
  width: 68.2284040996%;
  line-height: 0;
}
.main-visual-img img {
  max-width: inherit;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main-visual-img {
    width: 100%;
  }
}

.information {
  width: 100%;
  background: #F4F1ED;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .information {
    padding: 40px 0;
  }
}

.information-inner {
  width: 1100px;
  margin: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  .information-inner {
    width: 100%;
    flex-direction: column;
    padding-left: 28px;
    padding-right: 28px;
  }
}

.information-title {
  padding-bottom: 25px;
  margin-bottom: 12px;
  margin-right: 164px;
}
@media screen and (max-width: 768px) {
  .information-title {
    width: 100%;
    border-bottom: solid 1px #212121;
    margin-left: 0;
    margin-right: auto;
  }
}
.information-title__en {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.125;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.information-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.information-items {
  border-bottom: solid 1px #E0E0E2;
  padding-bottom: 20px;
  margin-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .information-items {
    padding-left: 14px;
    padding-right: 14px;
  }
}
.information-items:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .information-items:last-child {
    border-bottom: solid 1px #E0E0E2;
  }
}
.information-items dt,
.information-items dd {
  font-family: "Noto Sans JP", sans-serif;
}
.information-items dt {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #7C7C7C;
}
.information-items dd {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #212121;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .information-items dd {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .whats-new {
    padding-top: 8px;
  }
}

.whats-new-title {
  margin-bottom: 51px;
}
@media screen and (max-width: 768px) {
  .whats-new-title {
    padding-left: 28px;
    padding-bottom: 33px;
    width: 100%;
    margin-bottom: 0;
  }
}
.whats-new-title__en {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.125;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.whats-new-title__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.whats-new-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  grid-auto-rows: minmax(auto, 280px);
}
@media screen and (max-width: 768px) {
  .whats-new-item {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(auto, auto);
    -moz-column-gap: 0px;
         column-gap: 0px;
    padding: 0;
    row-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .whats-new-item--pc {
    display: none;
  }
}
.whats-new-item--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .whats-new-item--sp {
    display: grid;
  }
}

.whats-new-items {
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .whats-new-items {
    padding-bottom: 22px;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .whats-new-items:nth-child(2n) {
    border-right: solid 1px #212121;
  }
}
@media screen and (max-width: 768px) {
  .whats-new-items:first-child {
    grid-row: 1/2;
    grid-column: 1/3;
    padding-bottom: 20px;
    border-top: solid 1px #212121;
    border-left: none;
    border-right: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .whats-new-items:first-child .whats-new-items-image {
    padding: 16px 16px 0;
  }
}
@media screen and (max-width: 768px) {
  .whats-new-items:first-child .whats-new-items-cat {
    padding: 0 16px;
  }
  .whats-new-items:first-child .whats-new-items-icon {
    padding: 0 16px;
  }
  .whats-new-items:first-child .whats-new-items-text {
    padding: 0 16px;
  }
}

.whats-new-items-image {
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .whats-new-items-image {
    width: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
    padding: 12px 12px 0;
    margin-bottom: 16px;
  }
}

.whats-new-items-cat {
  padding: 0 16px;
  margin-bottom: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.333333;
}
@media screen and (max-width: 768px) {
  .whats-new-items-cat {
    padding: 0 12px;
  }
}
.whats-new-items-cat__cat01 {
  background: no-repeat 0px 2px;
  background-image: url(../img/icon/icon_side_menu_01.png);
  background-size: 10px;
  padding-left: 16px;
}
.whats-new-items-cat__cat02 {
  background: no-repeat 0px 2px;
  background-image: url(../img/icon/icon_side_menu_02.png);
  background-size: 12px;
  padding-left: 16px;
}
.whats-new-items-cat__cat03 {
  background: no-repeat 0px 2px;
  background-image: url(../img/icon/icon_side_menu_03.png);
  background-size: 12px;
  padding-left: 16px;
}
.whats-new-items-cat__cat04 {
  background: no-repeat 2px 2px;
  background-image: url(../img/icon/icon_side_menu_04.png);
  background-size: 9px;
  padding-left: 16px;
}
.whats-new-items-cat__cat05 {
  background: no-repeat 0px 2px;
  background-image: url(../img/icon/icon_side_menu_05.png);
  background-size: 14px;
  padding-left: 18px;
}
.whats-new-items-cat__cat06 {
  background: no-repeat 0px 2px;
  background-image: url(../img/icon/icon_side_menu_06.png);
  background-size: 14px;
  padding-left: 18px;
}
.whats-new-items-cat__cat07 {
  background: no-repeat 0px center;
  background-image: url(../img/icon/icon_side_menu_07.png);
  background-size: 12px;
  padding-left: 16px;
}

.whats-new-items-icon {
  display: flex;
  gap: 0 8px;
  margin-bottom: 8px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .whats-new-items-icon {
    grid-row: 1/2;
    grid-column: 2/4;
    margin-bottom: 8px;
    padding: 0 12px;
  }
}
.whats-new-items-icon div {
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.whats-new-items-icon__new {
  background: #212121;
  width: 30px;
  color: #fff;
}
.whats-new-items-icon__cat01 {
  background: #C8C8C9;
}
.whats-new-items-icon__cat02 {
  background: #B2DCFF;
}
.whats-new-items-icon__cat03 {
  background: #70D5C5;
}
.whats-new-items-icon__cat04 {
  background: #FFB5B4;
}
.whats-new-items-icon__cat05 {
  background: #FFDE76;
}
.whats-new-items-icon__cat06 {
  background: #9EE2E2;
}
.whats-new-items-icon__cat07 {
  background: #C8E29E;
}
.whats-new-items-icon__cat08 {
  background: #FFBBDA;
}

.whats-new-items-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding: 0 16px 12px;
}
@media screen and (max-width: 768px) {
  .whats-new-items-text {
    grid-row: 2/3;
    grid-column: 2/4;
    line-height: 1.2857142;
    height: 4em;
    padding: 0 12px;
  }
}

.regist-information {
  background: #FFF1C4;
  position: relative;
  padding: 82px 50px 40px;
  margin-top: 75px;
  margin-bottom: 50px;
}
.regist-information a {
  transition: 0.3s;
}
.regist-information a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .regist-information {
    margin-top: 137px;
    padding: 30px 28px 40px;
    margin-bottom: 0;
  }
}
.regist-information__free {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #163259;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  background: url("../img/icon/icon_regist_info.png") no-repeat 0 0;
  background-size: 40px;
  position: absolute;
  top: -3px;
  left: -20px;
}
@media screen and (max-width: 768px) {
  .regist-information__free {
    top: 4px;
    left: 60px;
  }
}
.regist-information__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #163259;
  margin-bottom: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .regist-information__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
.regist-information__title::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: auto;
  background: #ffffff;
}
.regist-information__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #163259;
}
.regist-information__copy span {
  font-size: 3.6rem;
  line-height: 0.777777;
}
.regist-information__btn {
  display: block;
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #FFA21A;
  border: solid 1px #212121;
  border-radius: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 32px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .regist-information__btn {
    margin: 40px auto 0;
  }
}
.regist-information__btn svg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .regist-information + .whats-new {
    padding-top: 0;
  }
}

.regist-information-label {
  position: absolute;
  top: -22px;
  left: 0;
  right: 0;
  margin: auto;
  background: #FFA21A;
  width: 260px;
  height: 78px;
  padding: 6px 0 7px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .regist-information-label {
    top: -98px;
    width: 100%;
    height: 98px;
    padding: 10px 0 13px;
  }
}
.regist-information-label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFA21A;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .regist-information-label::after {
    bottom: -9px;
  }
}

.regist-information-item {
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 18px;
}
@media screen and (max-width: 768px) {
  .regist-information-item {
    padding: 24px 28px;
    flex-direction: column;
  }
}

.regist-information-items {
  border-bottom: dotted 1px #163259;
  padding: 0 0 6px 10px;
  margin-bottom: 10px;
  width: calc(50% - 18px);
}
@media screen and (max-width: 768px) {
  .regist-information-items {
    width: 100%;
    padding: 0 0 10px 10px;
  }
}
.regist-information-items:last-child {
  margin-top: 16px;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .regist-information-items:last-child {
    margin-top: inherit;
    padding-bottom: 0;
  }
}
.regist-information-items dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.16666666;
}
@media screen and (max-width: 768px) {
  .regist-information-items dt {
    font-size: 1.4rem;
    line-height: 1.4285714;
  }
}
.regist-information-items dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714;
}
@media screen and (max-width: 768px) {
  .regist-information-items dd {
    font-size: 1.8rem;
    line-height: 1.111111;
  }
}
.regist-information-items--01 {
  padding-left: 38px;
  background: url("../img/icon/icon_start_org.png") no-repeat 10px 8px;
  background-size: 18px;
}
.regist-information-items--02 {
  padding-left: 38px;
  background: url("../img/icon/icon_present_org.png") no-repeat 10px 8px;
  background-size: 18px;
}
.regist-information-items--03 {
  padding-left: 38px;
  background: url("../img/icon/icon_smile_org.png") no-repeat 10px 8px;
  background-size: 18px;
}
.regist-information-items--04 {
  padding-left: 38px;
  background: url("../img/icon/icon_flag_org.png") no-repeat 10px 8px;
  background-size: 18px;
}
.regist-information-items--05 {
  padding-left: 38px;
  background: url("../img/icon/icon_mail_org.png") no-repeat 10px 8px;
  background-size: 18px;
}

/********************
  カテゴリ一覧
*********************/
.list-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .list-header {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 32px;
  }
}
.list-header__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 8px;
  border-bottom: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .list-header__title {
    text-align: left;
    padding-left: 12px;
  }
}

.list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  grid-auto-rows: minmax(auto, 251px);
}
@media screen and (max-width: 768px) {
  .list {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(auto, 20vw);
    -moz-column-gap: 0px;
         column-gap: 0px;
    row-gap: 4.1025641026vw;
    padding: 0 28px;
  }
}

@media screen and (max-width: 768px) {
  .list-items a {
    display: grid;
    grid-template-columns: 35.92814% auto auto;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    gap: 0 10px;
  }
}

.list-items-image {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .list-items-image {
    width: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
}

.list-items-icon__cat08, .list-items-icon__cat07, .list-items-icon__cat06, .list-items-icon__cat05, .list-items-icon__cat04, .list-items-icon__cat03, .list-items-icon__cat02, .list-items-icon__cat01, .whats-new-items-icon__cat01, .whats-new-items-icon__cat02, .whats-new-items-icon__cat03, .whats-new-items-icon__cat04, .whats-new-items-icon__cat05, .whats-new-items-icon__cat06, .whats-new-items-icon__cat07, .whats-new-items-icon__cat08 {
  border-radius: 100vh;
  color: #212121;
  padding: 0 8px 1px;
}

.list-items-icon {
  display: flex;
  gap: 0 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .list-items-icon {
    grid-row: 1/2;
    grid-column: 2/4;
    margin-bottom: 4px;
  }
}
.list-items-icon div {
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.list-items-icon__new {
  background: #212121;
  width: 30px;
  color: #fff;
}
.list-items-icon__cat01 {
  background: #C8C8C9;
}
.list-items-icon__cat02 {
  background: #B2DCFF;
}
.list-items-icon__cat03 {
  background: #70D5C5;
}
.list-items-icon__cat04 {
  background: #FFB5B4;
}
.list-items-icon__cat05 {
  background: #FFDE76;
}
.list-items-icon__cat06 {
  background: #9EE2E2;
}
.list-items-icon__cat07 {
  background: #C8E29E;
}
.list-items-icon__cat08 {
  background: #FFBBDA;
}

.list-items-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .list-items-text {
    grid-row: 2/3;
    grid-column: 2/4;
    line-height: 1.2857142;
    height: 4em;
  }
}

.keyword-area {
  background: #F2F2F4;
  padding: 24px 48px 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .keyword-area {
    padding: 16px 28px 24px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.keyword-area--mt0 {
  margin-top: 0;
}
.keyword-area--mtb0 {
  margin-top: 0;
  margin-bottom: 0;
}

.keyword-area-title h3 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.333333;
}

.keyword-item {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
}
.keyword-item a {
  display: block;
  background: #FFFFFF;
  border: solid 1px #E0E0E2;
  border-radius: 100vh;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.333333;
  padding: 1px 8px 3px;
}

.pager-item {
  display: flex;
  align-items: baseline;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 56px auto 0;
}
.pager-item__prev-page {
  transform: scale(-1, 1);
  margin-right: 32px;
  position: relative;
  top: -3px;
}
.pager-item__next-page {
  position: relative;
  top: -3px;
}
.pager-item__none {
  display: none;
}

.pager-items {
  margin-right: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.pager-items.current {
  margin-right: 29px;
  width: 30px;
  height: 30px;
  background: #E0E0E2;
  text-align: center;
  padding: 1px 0 7px;
  color: #7C7C7C;
  border-radius: 100vh;
}

/********************
  記事ページ　コンテンツレイアウト
*********************/
.content-detail__character-btn {
  width: 210px;
  height: 40px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4285714;
  background: #00A0B0;
  border-radius: 100vh;
  color: #ffffff;
  position: relative;
  margin: 0 auto 43px;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .content-detail__character-btn {
    margin: 0 auto 22px;
  }
}
.content-detail__character-btn img {
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 19px;
  margin: auto;
}
.content-detail__character-btn--recipe {
  background: #009500;
}
.content-detail__character-btn--tidy {
  background: #C35656;
}
.content-detail__normal-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .content-detail__normal-text {
    margin-bottom: 32px;
  }
}
.content-detail__normal-text--mb0 {
  margin-bottom: 0 !important;
}
.content-detail__normal-text--mb24 {
  margin-bottom: 24px;
}
.content-detail__normal-text--mb56 {
  margin-bottom: 56px;
}
.content-detail__normal-text--bold {
  font-weight: 700 !important;
}
.content-detail__normal-text a {
  text-decoration: underline;
}
.content-detail__medium-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .content-detail__medium-text {
    margin-bottom: 32px;
  }
}
.content-detail__medium-text--mb0 {
  margin-bottom: 0 !important;
}
.content-detail__medium-text--mb16 {
  margin-bottom: 16px;
}
.content-detail__medium-text--mb24 {
  margin-bottom: 24px;
}
.content-detail__medium-text--bold {
  font-weight: 700 !important;
}
.content-detail__medium-text a {
  text-decoration: underline;
}
.content-detail__info-text {
  color: #00A0B0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 8px;
}
.content-detail__text-highlight {
  background: #FFD290;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .content-detail-text-box {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.content-detail-text-box--brackets {
  background-image: url("../img/detail/img_detail_text_bg_01.png"), url("../img/detail/img_detail_text_bg_02.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  background-size: 30px, 28px;
  padding: 28px;
}
@media screen and (max-width: 768px) {
  .content-detail-text-box--brackets {
    width: calc(100% - 32px);
    margin: auto;
  }
}
.content-detail-text-box--mb40 {
  margin-bottom: 40px;
}
.content-detail-text-box--mb56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-text-box--sp-mb20 {
    margin-bottom: 20px;
  }
}

.content-detail-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-header {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.content-detail-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 16px;
  }
}
.content-detail-header__meta {
  color: #7C7C7C;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

.content-detail-icon__cat08, .content-detail-icon__cat07, .content-detail-icon__cat06, .content-detail-icon__cat05, .content-detail-icon__cat04, .content-detail-icon__cat03, .content-detail-icon__cat02 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 25px;
  border-radius: 100vh;
  text-align: center;
  padding: 0 8px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .content-detail-icon__cat08, .content-detail-icon__cat07, .content-detail-icon__cat06, .content-detail-icon__cat05, .content-detail-icon__cat04, .content-detail-icon__cat03, .content-detail-icon__cat02 {
    font-size: 1rem;
  }
}

.content-detail-icon {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .content-detail-icon {
    margin-bottom: 8px;
  }
}
.content-detail-icon__cat02 {
  background: #B2DCFF;
}
.content-detail-icon__cat03 {
  background: #70D5C5;
}
.content-detail-icon__cat04 {
  background: #FFB5B4;
}
.content-detail-icon__cat05 {
  background: #FFDE76;
}
.content-detail-icon__cat06 {
  background: #9EE2E2;
}
.content-detail-icon__cat07 {
  background: #C8E29E;
}
.content-detail-icon__cat08 {
  background: #FFBBDA;
}

.content-detail-tags {
  margin-top: 21px;
  display: flex;
  gap: 0 8px;
}
.content-detail-tags__items {
  display: block;
  border-radius: 100vh;
  border: solid 1px #E0E0E2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.333333;
  padding: 1px 8px 2px;
  text-align: center;
}

.content-detail-image {
  max-width: 600px;
  margin: 0 auto 54px;
}
@media screen and (max-width: 768px) {
  .content-detail-image {
    width: 100%;
    margin: 0 auto 22px;
  }
}
.content-detail-image--mb40 {
  margin-bottom: 40px;
}
.content-detail-image--mb0 {
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .content-detail-image--sp-mb16 {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-image--sp-width {
    width: calc(100% - 56px);
  }
}

.content-detail-character-talk {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.content-detail-character-talk--mt56 {
  margin-top: 56px;
}
.content-detail-character-talk--mb56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk--sp-mt42 {
    margin-top: 42px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk--sp-mb32 {
    margin-bottom: 32px;
  }
}
.content-detail-character-talk__chapter {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk__chapter {
    margin-bottom: 30px;
  }
}
.content-detail-character-talk__title {
  color: #00A0B0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  width: 500px;
  margin: 0 auto 8px;
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk__title {
    width: 100%;
    margin: 0 auto 6px;
  }
}
.content-detail-character-talk__title--q {
  padding-left: 70px;
}
.content-detail-character-talk__images {
  width: 50px;
  flex: none;
}
.content-detail-character-talk__text {
  border-radius: 8px;
  background: #F2F2F4;
  padding: 16px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk__text {
    padding: 15px 10px 15px 8px;
  }
}
.content-detail-character-talk__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.content-detail-character-talk__text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid #F2F2F4;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  left: -16px;
  right: auto;
  margin: auto;
  border-radius: 0;
}
.content-detail-character-talk--recipe .content-detail-character-talk__text {
  background: #ECFAD5;
}
.content-detail-character-talk--recipe .content-detail-character-talk__text::before {
  border-right: 8px solid #ECFAD5;
}
.content-detail-character-talk--tidy .content-detail-character-talk__text {
  background: #FFF4EF;
}
.content-detail-character-talk--tidy .content-detail-character-talk__text::before {
  border-right: 8px solid #FFF4EF;
}

.content-detail-character-talk-images {
  margin-top: 48px;
  margin-bottom: 48px;
}

.content-detail-character-talk-items {
  display: flex;
  width: 500px;
  margin: 0 auto 14px;
  gap: 0 20px;
}
.content-detail-character-talk-items:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .content-detail-character-talk-items {
    width: 100%;
    margin: 0 auto 16px;
    gap: 0 14px;
  }
}
.content-detail-character-talk-items--mb0 {
  margin-bottom: 0;
}

.content-detail-character-talk-items--02 .content-detail-character-talk__text::before {
  border-left: 8px solid #F2F2F4;
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  left: auto;
  right: -16px;
}

.content-detail-character-talk--recipe .content-detail-character-talk-items--02 .content-detail-character-talk__text::before {
  border-left: 8px solid #ECFAD5;
}

.content-detail-character-talk--tidy .content-detail-character-talk-items--02 .content-detail-character-talk__text::before {
  border-left: 8px solid #FFF4EF;
}

.content-detail-outline {
  background: #F4F1ED;
  padding: 16px 32px 24px;
  width: 440px;
  margin: 16px auto 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-outline {
    width: calc(100% - 56px);
    margin: 16px auto 40px;
    padding: 16px;
  }
}
.content-detail-outline__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 16px;
}
.content-detail-outline ul li a {
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2.2857142;
  font-weight: 500;
}
.content-detail-outline--bg-wht {
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .content-detail-outline--bg-wht {
    width: 100%;
  }
}

.content-detail-anchor--sos01 {
  padding-top: 20px;
  margin-top: -20px;
}

.content-detail-banner {
  font-size: 1.6rem;
  text-align: center;
  background: #ccc;
  padding: 20px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-banner {
    width: calc(100% - 56px);
    margin: auto auto 10.2564102564vw;
  }
}

.content-detail-item-inner {
  padding: 54px 20px 56px;
}
.content-detail-item-inner--cafe {
  background: #FDEFE9;
  padding: 56px 60px;
}
@media screen and (max-width: 768px) {
  .content-detail-item-inner--cafe {
    padding: 32px 28px 56px;
  }
}

.content-detail-movie {
  margin-top: 112px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-movie {
    margin-top: 80px;
    margin-bottom: 40px;
  }
}
.content-detail-movie__title {
  background: #009500;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  position: relative;
  height: 57px;
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-movie__title {
    width: calc(100% - 56px);
    height: 8.2051282051vw;
  }
}
.content-detail-movie__title span {
  width: 251px;
  position: absolute;
  top: -71px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-movie__title span {
    width: 35.8974358974vw;
    top: -10.2564102564vw;
    top: -10.2564102564vw;
  }
}
.content-detail-movie__footer {
  background: #009500;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  position: relative;
  height: 14px;
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-movie__footer {
    width: calc(100% - 56px);
  }
}

.content-detail-movie-inner {
  position: relative;
  width: 600px;
  margin: 0 auto;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .content-detail-movie-inner {
    width: calc(100% - 56px);
  }
}
.content-detail-movie-inner iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.content-detail-items-wrapper {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-wrapper {
    padding: 18px 16px 16px;
  }
}
.content-detail-items-wrapper--pdt0 {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .content-detail-items-wrapper--pdt0 .content-detail-items-header {
    margin-top: 22px;
  }
}
.content-detail-items-wrapper--pdb0 {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .content-detail-items-wrapper--sp-mt80 {
    margin-top: 80px;
  }
}
.content-detail-items-wrapper--tidy {
  background: #FFECE2;
}
.content-detail-items-wrapper .content-detail-items {
  background: #fff;
  padding: 38px 31px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-wrapper .content-detail-items {
    width: 100%;
    padding: 18px 12px;
  }
}
.content-detail-items-wrapper .content-detail-items + .content-detail-items {
  padding-top: 0;
}
.content-detail-items-wrapper .content-detail-items-wrapper-images--kaasan-advice, .content-detail-items-wrapper .content-detail-items-wrapper-images {
  position: relative;
  margin: auto;
}
.content-detail-items-wrapper .content-detail-items-wrapper-images--kaasan-advice {
  width: 190px;
  height: 119px;
  margin-top: -55px;
}
.content-detail-items-wrapper .content-detail-items-wrapper-images img {
  display: block;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .content-detail-items {
    width: calc(100% - 56px);
    margin: auto;
  }
  .content-detail-items .content-detail__normal-text {
    margin-bottom: 24px;
  }
}
.content-detail-items__title {
  background: #DEEDEC;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  padding: 4px 12px 7px 8px;
  color: #02425E;
}
@media screen and (max-width: 768px) {
  .content-detail-items__title {
    text-align: left;
  }
}
.content-detail-items__title--01 {
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding-left: 8px;
  border-left: solid 4px #DEEDEC;
  margin-bottom: 16px;
}
.content-detail-items__title--02 {
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.5555555;
  font-weight: 700;
  color: #ffffff;
  padding: 5px 0 7px;
  background: #43B9A6;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content-detail-items__title--02 {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.content-detail-items--narrow {
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-items--narrow {
    width: calc(100% - 32px);
  }
}
.content-detail-items__title-fukidashi {
  text-align: center;
}
.content-detail-items__title-fukidashi--large {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 376px) {
  .content-detail-items__title-fukidashi--large {
    font-size: 4.102564102vw;
  }
}
.content-detail-items__title-fukidashi--medium {
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 700;
}
@media screen and (max-width: 376px) {
  .content-detail-items__title-fukidashi--medium {
    font-size: 3.489743589vw;
  }
}
.content-detail-items__title-fukidashi--small {
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 500;
}
@media screen and (max-width: 376px) {
  .content-detail-items__title-fukidashi--small {
    font-size: 3.489743589vw;
  }
}
.content-detail-items__images {
  flex: none;
  max-width: 334px;
}
@media screen and (max-width: 768px) {
  .content-detail-items__images {
    max-width: 100%;
  }
}
.content-detail-items__images--mb0 {
  margin-bottom: 0;
}
.content-detail-items__images--mb40 {
  margin-bottom: 40px;
}
.content-detail-items__images--mb56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-items__images--sp-mb16 {
    margin-bottom: 16px;
  }
}
.content-detail-items__images--fullwidth {
  flex: none;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .content-detail-items__images picture img {
    margin: 0 auto;
    display: block;
  }
}
.content-detail-items__overview {
  background: #FAFBD6;
  border: solid 1px #E0E0E2;
  padding: 10px 16px 16px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .content-detail-items__overview {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items__overview--sp-mb40 {
    margin-bottom: 40px;
  }
}
.content-detail-items__overview dl {
  border-bottom: solid 1px #E0E0E2;
  display: flex;
  flex-wrap: wrap;
}
.content-detail-items__overview dt, .content-detail-items__overview dd {
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2.857142;
  display: inline-block;
}
.content-detail-items__overview dt span, .content-detail-items__overview dd span {
  font-size: 1.2rem;
  line-height: 1.5;
}
.content-detail-items__overview dd a {
  text-decoration: underline;
}
.content-detail-items__overview p {
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2.857142;
  border-bottom: solid 1px #E0E0E2;
}
.content-detail-items__overview p span {
  font-size: 1.2rem;
  line-height: 1.5;
}
.content-detail-items__overview p a {
  text-decoration: underline;
}
.content-detail-items__overview--cafe {
  background: #F2F2F4;
  border: solid 1px #E0E0E2;
}
.content-detail-items__overview--cafe dl {
  border-bottom: none;
  flex-wrap: nowrap;
}
.content-detail-items__overview--cafe dt, .content-detail-items__overview--cafe dd {
  line-height: 2.142857;
}
.content-detail-items__overview--recipe {
  background: #F2F2F4;
  border: solid 1px #E0E0E2;
}
.content-detail-items__overview--recipe dl {
  justify-content: space-between;
  border-bottom: solid 1px #E0E0E2;
}
.content-detail-items__overview--recipe dl:last-child {
  border-bottom: none;
}
.content-detail-items__overview--recipe dt, .content-detail-items__overview--recipe dd {
  color: #212121;
}
.content-detail-items__overview-column--4length {
  width: 5em;
  position: relative;
  flex: none;
}
.content-detail-items__overview-column--4length span {
  position: absolute;
  right: 0;
  top: 7px;
}
.content-detail-items__overview-column--5length {
  width: 6em;
  position: relative;
}
.content-detail-items__overview-column--5length span {
  position: absolute;
  right: 0;
}
.content-detail-items__overview-fullwidth {
  width: 100%;
}
.content-detail-items__overview-pc {
  display: block;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .content-detail-items__overview-pc {
    display: none;
  }
}
.content-detail-items__overview-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .content-detail-items__overview-sp {
    display: block !important;
  }
  .content-detail-items__overview-sp span {
    display: block;
    padding-bottom: 6px;
  }
}
.content-detail-items__text--fukidashi {
  border: solid 1px #E0E0E2;
  border-radius: 8px;
  padding: 16px;
  position: relative;
  background: #fff;
}
.content-detail-items__text--fukidashi::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid 8px transparent;
  border-bottom: solid 8px transparent;
  border-left: solid 12px #E0E0E2;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -12px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-items__text--fukidashi::after {
    top: 36px;
    bottom: inherit;
  }
}
.content-detail-items__text-box {
  padding: 20px 16px;
  margin-top: 28px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .content-detail-items__text-box {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.content-detail-items__text-box--tidy {
  background: #FFECE2;
}
.content-detail-items__text-box li:last-child {
  margin-bottom: 0;
}
.content-detail-items__text-box-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 19px;
  padding-left: 38px;
  list-style: none;
  counter-increment: chapter;
  position: relative;
}
.content-detail-items__text-box-num span {
  font-weight: 700;
}
.content-detail-items__text-box-num::before {
  content: counter(chapter);
  background: url("../img/detail/img_detail_tidy_num_bg.png") no-repeat 0 0;
  background-size: 32px 28px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 32px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  color: #fff;
}
.content-detail-items--pdb40 {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--pdb40 {
    padding-bottom: 32px;
  }
}
.content-detail-items--pdb56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--sp-pd-small {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items--sp-fullwidth {
    width: 100%;
    margin: auto auto 40px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items--sp-wide {
    width: calc(100% - 40px);
  }
}
.content-detail-items--sos {
  background: #FFFCE6;
  padding-left: 32px;
  padding-right: 32px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--sos {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 40px;
  }
}
.content-detail-items--cafe {
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe {
    width: 100%;
    padding-bottom: 40px;
  }
}
.content-detail-items--cafe .content-detail-items__title {
  background: none;
  border-bottom: dotted 2px #212121;
  color: #393636;
  font-size: 2.4rem;
  line-height: 1.333333;
  padding-left: 0;
  padding-bottom: 12px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe .content-detail-items__title {
    font-size: 2rem;
    line-height: 1.4;
    padding-bottom: 16px;
    margin-bottom: 15px;
  }
}
.content-detail-items--cafe .content-detail-items-header {
  display: flex;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe .content-detail-items-header {
    margin-top: 40px;
  }
}
.content-detail-items--cafe .content-detail-items-header img {
  flex: none;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  top: -5px;
}
.content-detail-items--cafe .content-detail-items-header:first-of-type {
  margin-top: 0;
}
.content-detail-items--cafe .content-detail-items__title--01 {
  background: none;
  border-bottom: dotted 2px #212121;
  color: #393636;
  font-size: 2.4rem;
  line-height: 1.333333;
  padding-left: 0;
  padding-bottom: 12px;
  border-left: none;
  position: relative;
  margin-left: 15px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe .content-detail-items__title--01 {
    font-size: 2rem;
    line-height: 1.4;
    padding-bottom: 16px;
    margin-bottom: 15px;
  }
}
.content-detail-items--cafe .content-detail-items__title--01::before {
  content: "";
  display: none;
  width: 50px;
  height: 55px;
  position: absolute;
  background: url("../img/detail/img_title_cafe_01.png") no-repeat 0 0;
  background-size: contain;
  top: -5px;
  left: -65px;
}
.content-detail-items--cafe .content-detail-items__title--02 {
  background: none;
  border-bottom: dotted 2px #212121;
  color: #393636;
  font-size: 2.4rem;
  line-height: 1.333333;
  padding-left: 0;
  padding-bottom: 12px;
  border-left: none;
  position: relative;
  margin-left: 65px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe .content-detail-items__title--02 {
    font-size: 2rem;
    line-height: 1.4;
    padding-bottom: 16px;
    margin-bottom: 15px;
  }
}
.content-detail-items--cafe .content-detail-items__title--02::before {
  content: "";
  display: none;
  width: 50px;
  height: 74px;
  position: absolute;
  background: url("../img/detail/img_title_cafe_02.png") no-repeat 0 0;
  background-size: contain;
  left: -65px;
}
.content-detail-items--cafe .content-detail-items__title--03 {
  background: #F8BF8E;
  padding: 8px 16px;
  color: #393636;
  font-size: 2.4rem;
  line-height: 1.333333;
  border-left: none;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe .content-detail-items__title--03 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.content-detail-items--cafe .content-detail-items__title--04 {
  background: #F6BFD2;
  padding: 8px 16px;
  color: #393636;
  font-size: 2.4rem;
  line-height: 1.333333;
  border-left: none;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .content-detail-items--cafe .content-detail-items__title--04 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }
}
.content-detail-items--recipe .content-detail-items__title {
  background: #009500;
  color: #fff;
}
.content-detail-items--recipe .content-detail-items__title--01 {
  border-left: none;
  background: #E8FFC3;
  color: #009500;
  padding: 4px 8px 7px 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--recipe .content-detail-items__title--01 {
    margin-bottom: 16px;
  }
}
.content-detail-items--tidy .content-detail-items__title {
  background: none;
  color: #212121;
  padding-bottom: 18px;
  border-bottom: solid 2px #C35656;
  background: url("../img/detail/img_detail_eyewear.png") no-repeat 0 4px;
  background-size: 44px;
  padding-left: 57px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--tidy .content-detail-items__title {
    padding-bottom: 8px;
    background-position: 0 center;
  }
}
.content-detail-items--tidy .content-detail-items__title--01 {
  border-left: none;
  background: #E8FFC3;
  color: #009500;
  padding: 4px 8px 7px 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-items--tidy .content-detail-items__title--01 {
    margin-bottom: 16px;
  }
}

.content-detail-header + .content-detail-items {
  margin-top: 41px;
}

.content-detail-items-header--fukidashi03 p, .content-detail-items-header--fukidashi02 p, .content-detail-items-header--fukidashi01 {
  border-radius: 100vh;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  position: relative;
}

.content-detail-items-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-header {
    margin-bottom: 16px;
  }
}
.content-detail-items-header--fukidashi01 {
  background: #D96862;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0 6px;
  width: 334px;
  top: -17px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-header--fukidashi01 {
    width: 84.358974359vw;
  }
}
.content-detail-items-header--fukidashi01 img {
  width: 44px;
  position: relative;
  top: -3px;
  left: -5px;
}
.content-detail-items-header--fukidashi01::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid 15px #D96862;
  border-left: solid 10px transparent;
  border-right: solid 10px transparent;
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: auto;
}
.content-detail-items-header--fukidashi02 p {
  background: #D96862;
  color: #fff;
  width: 280px;
  top: -20px;
  padding-top: 4px;
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-header--fukidashi02 p {
    width: 71.7948717949vw;
  }
}
.content-detail-items-header--fukidashi02 p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid 12px #D96862;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.content-detail-items-header--fukidashi02 .content-detail-items__title {
  background: none;
  color: #212121;
  padding: inherit;
  text-align: center;
}
.content-detail-items-header--fukidashi03 p {
  background: #43B9A6;
  color: #fff;
  width: 280px;
  top: -20px;
  padding-top: 4px;
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-header--fukidashi03 p {
    width: 71.7948717949vw;
  }
}
.content-detail-items-header--fukidashi03 p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid 12px #43B9A6;
  border-left: solid 6px transparent;
  border-right: solid 6px transparent;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.content-detail-items-header--fukidashi03 .content-detail-items__title {
  background: none;
  color: #2FA58E;
  padding: inherit;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: solid 1px #2FA58E;
}
.content-detail-items-header--fukidashi04 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  margin-bottom: 18px;
}
.content-detail-items-header--fukidashi04 p {
  color: #212121;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: solid 1px #212121;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
.content-detail-items-header--fukidashi04 p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-top: 12px solid #212121;
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.content-detail-items-header--fukidashi04 p::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-top: 11px solid #FFFCE6;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.content-detail-items-bg-wht {
  background: #fff;
  padding-top: 24px;
}
.content-detail-items-bg-wht--pd0 {
  margin-left: -32px;
  margin-right: -32px;
}
.content-detail-items-bg-wht--pdt0 {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .content-detail-items-bg-wht--sp-pd-small {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.content-detail-items-flex {
  display: flex;
  gap: 0 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex {
    flex-direction: column;
    gap: 16px 0;
  }
}
.content-detail-items-flex--fukidashi {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex--fukidashi {
    align-items: flex-start;
    flex-direction: row !important;
    gap: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex--fukidashi .content-detail-items__images {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex--reverse {
    flex-direction: column-reverse !important;
  }
}
.content-detail-items-flex--col {
  flex-direction: column;
}
.content-detail-items-flex--row {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex--sp-row {
    flex-direction: row !important;
    gap: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex--sp-0gap {
    gap: 0;
    margin-bottom: 24px;
  }
}
.content-detail-items-flex--align-c {
  align-items: center;
}
.content-detail-items-flex--mb24 {
  margin-bottom: 24px;
}
.content-detail-items-flex--mb40 {
  margin-bottom: 40px;
}
.content-detail-items-flex--mb42 {
  margin-bottom: 42px;
}
.content-detail-items-flex--mb56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-flex--sp-mb14 {
    margin-bottom: 14px !important;
  }
}

@media screen and (max-width: 768px) {
  .content-detail-items-sp-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

.content-detail-tips {
  background: #EFF7F6;
  padding: 57px 50px 8px;
  position: relative;
  margin-top: 73px;
  margin-bottom: 40px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .content-detail-tips {
    width: calc(100% - 56px);
    margin-top: 52px;
    padding: 37px 16px 8px;
    margin-left: auto;
    margin-right: auto;
  }
}
.content-detail-tips .clean-support {
  width: 278px;
  position: absolute;
  top: -32px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-tips .clean-support {
    width: 175px;
    top: -20px;
  }
}
.content-detail-tips .clean-trick {
  width: 254px;
  position: absolute;
  top: -46px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .content-detail-tips .clean-trick {
    width: 160px;
    top: -27px;
  }
}
.content-detail-tips__copy {
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  border-bottom: solid 1px #02425E;
  padding-bottom: 8px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content-detail-tips__copy {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
}
.content-detail-tips__copy--ext {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .content-detail-tips__copy--ext {
    text-align: left;
    margin-bottom: 26px;
  }
}
.content-detail-tips__chara {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #EFF7F6;
  padding: 8px;
  display: block;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .content-detail-tips__chara {
    padding: 0;
    width: 13.5897435897vw;
    height: 13.5897435897vw;
  }
}
.content-detail-tips .content-detail-items__images {
  width: 304px;
}
.content-detail-tips__icon {
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 8px;
  border-radius: 100vh;
  text-align: center;
  line-height: 2.333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.content-detail-tips__title {
  line-height: 1.333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: dotted 1px #212121;
  padding-bottom: 8px;
  margin-bottom: 23px;
}
.content-detail-tips__title--up {
  position: relative;
}
@media screen and (max-width: 768px) {
  .content-detail-tips__title--up {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
    padding-right: 48px;
  }
}
.content-detail-tips__title--up::after {
  content: "";
  display: block;
  width: 16px;
  height: 8px;
  background: url("../img/icon/icon_arrow_up.png") no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  transition: all 0.3s;
}
.content-detail-tips__title--up.open::after {
  rotate: 180deg;
}
.content-detail-tips--sos {
  background: #F2F2F4;
  padding: 24px 24px 0;
  margin-top: 40px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .content-detail-tips--sos {
    padding: 16px 16px 0;
    margin-bottom: 40px;
  }
}
.content-detail-tips--sos.open {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .content-detail-tips--sos.open {
    padding: 16px;
  }
}

.content-detail-tips-toggle-box {
  transition: all 0.5s;
  height: 0;
  overflow: hidden;
}

.content-detail-items-option {
  background: #fff;
  margin-bottom: 32px;
}
.content-detail-items-option__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.333333;
  font-weight: 700;
  display: flex;
  gap: 0 32px;
  align-items: center;
  background: #EC8881;
  border-radius: 4px;
  padding: 19px 16px 21px;
  color: #fff;
  margin-bottom: 24px;
}
.content-detail-items-option__title span {
  font-size: 1.4rem;
  line-height: 1.7142857;
  position: relative;
}
.content-detail-items-option__title span::after {
  content: "";
  width: 1px;
  height: 56px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -16px;
  margin: auto;
  background: #fff;
}
.content-detail-items-option .content-detail-items-flex {
  padding: 0 24px 24px;
}

.content-detail-items-point__title {
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding-bottom: 12px;
  border-bottom: solid 1px #EB6F2E;
  margin-bottom: 12px;
}
.content-detail-items-point__title p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.333333;
  color: #EB6F2E;
  padding-top: 12px;
}
.content-detail-items-point__title-num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #EB6F2E;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-detail-items-point__title-num span:first-child {
  font-size: 1rem;
  line-height: 1.5;
}
.content-detail-items-point__title-num span:last-child {
  width: 40px;
  height: 40px;
  font-size: 2.4rem;
  border-radius: 100vh;
  display: block;
  text-align: center;
  border: solid 1px #EB6F2E;
  background: #fff;
}

.content-detail-faq h5 {
  color: #009500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.content-detail-summary {
  background: #FAFBD6;
  padding: 16px 50px 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .content-detail-summary {
    padding: 16px 26px 32px;
    margin-top: 40px;
  }
}
.content-detail-summary__header {
  text-align: center;
}
.content-detail-summary__header img {
  width: 64px;
}
.content-detail-summary__header-title {
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.333333;
  font-weight: 700;
  padding: 8px 0 10px;
  margin-top: 8px;
  margin-bottom: 16px;
  border-top: solid 1px #02425E;
  border-bottom: solid 1px #02425E;
}
.content-detail-summary .content-detail__normal-text--mbsmall {
  margin-bottom: 24px;
}

.content-detail-summary-btn-area p {
  text-align: center;
  color: #02425E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}
.content-detail-summary-btn-area__btn {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
.content-detail-summary-btn-area__btn img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

.gift-content-detail-items__btn a, .content-detail-items-btn-area__btn-wht, .content-detail-items-btn-area__btn-org {
  display: block;
  border-radius: 100vh;
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  border: solid 1px #212121;
}
.gift-content-detail-items__btn a::after, .content-detail-items-btn-area__btn-wht::after, .content-detail-items-btn-area__btn-org::after {
  content: "";
  width: 18px;
  height: 6px;
  background: url("../img/icon/img_arrow.png") no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}

.content-detail-items-btn-area {
  margin-bottom: 56px;
  display: flex;
  gap: 0 21px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-btn-area {
    flex-direction: column;
    align-items: center;
    gap: 24px 0;
  }
}
.content-detail-items-btn-area__btn-org {
  background: #FFA21A;
}
.content-detail-items-btn-area__btn-wht {
  background: #FFFFFF;
}
.content-detail-items-btn-area__title {
  display: block;
  text-align: center !important;
  color: #B43F76 !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.42857;
  margin-bottom: 24px;
}
.content-detail-items-btn-area--narrow {
  width: 246px;
  flex: none;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content-detail-items-btn-area--narrow {
    width: 100%;
  }
}
.content-detail-items-btn-area--narrow .content-detail-items-btn-area__btn-org {
  width: 100%;
  line-height: 1.42857;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 24px;
  padding-right: 50px;
}
.content-detail-items-btn-area--narrow .content-detail-items-btn-area__btn-org + .content-detail-items-btn-area__btn-org {
  margin-top: 24px;
}
.content-detail-items-btn-area--narrow .content-detail-items-btn-area__btn-org + .content-detail-items-btn-area__title {
  margin-top: 30px;
}
.content-detail-items-btn-area--narrow .content-detail-items-btn-area__btn-org + .content-detail-items__images {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-btn-area--sp-mt32 {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items-btn-area--sp-mb32 {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .content-detail-items-btn-area--sp-mt16 {
    margin-top: 16px;
  }
}

.content-detail-bottom-nav {
  display: flex;
  width: 334px;
  justify-content: space-between;
  align-items: center;
  margin: 64px auto;
}
@media screen and (max-width: 768px) {
  .content-detail-bottom-nav {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    margin: 40px auto;
  }
}
.content-detail-bottom-nav a {
  transition: 0.3s;
}
.content-detail-bottom-nav a:hover {
  opacity: 0.7;
}
.content-detail-bottom-nav a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.content-detail-bottom-nav__prev, .content-detail-bottom-nav__next {
  line-height: 1.714285;
  display: flex !important;
  align-items: center;
}
.content-detail-bottom-nav__prev svg {
  margin-right: 8px;
}
.content-detail-bottom-nav__next svg {
  margin-left: 8px;
}
.content-detail-bottom-nav__list {
  width: 140px;
  height: 36px;
  text-align: center;
  line-height: 34px;
  border: solid 1px #212121;
  border-radius: 100vh;
}
.content-detail-bottom-nav__blank {
  width: 54px;
}

.content-detail-supervision {
  background: #F4F1ED;
  padding: 40px 50px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .content-detail-supervision {
    padding: 28px;
    margin-bottom: 40px;
  }
}
.content-detail-supervision__icon {
  background: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.166666;
  text-align: center;
  padding: 0 5px 1px;
  margin-bottom: 4px;
  display: inline-block;
  font-weight: 500;
}
.content-detail-supervision__name {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.content-detail-supervision__post {
  font-size: 1.2rem;
  line-height: 1.5;
}
.content-detail-supervision__url {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 500;
}
.content-detail-supervision__url a {
  transition: 0.3s;
}
.content-detail-supervision__url a:hover {
  opacity: 0.7;
}
.content-detail-supervision__url a {
  text-decoration: underline;
}

.content-detail-supervision-header {
  display: flex;
  gap: 0 16px;
  padding-bottom: 16px;
  border-bottom: dotted 1px #212121;
  margin-bottom: 18px;
}
.content-detail-supervision-header img {
  width: 102px;
}
.content-detail-supervision-header div {
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .content-detail-reccomend {
    padding: 24px 28px 32px;
    background: #F4F1ED;
  }
}

.content-detail-reccomend-header {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .content-detail-reccomend-header {
    margin-bottom: 24px;
  }
}
.content-detail-reccomend-header h2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.333333;
  padding-bottom: 8px;
  border-bottom: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .content-detail-reccomend-header h2 {
    font-size: 1.6rem;
    line-height: 1.5;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.content-detail-reccomend-item {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .content-detail-reccomend-item {
    flex-direction: column;
    gap: 16px 0;
  }
}

.content-detail-reccomend-items {
  width: 220px;
}
@media screen and (max-width: 768px) {
  .content-detail-reccomend-items {
    width: 100%;
    display: flex;
    gap: 0 10px;
    padding-bottom: 16px;
    border-bottom: solid 1px #E0E0E2;
  }
  .content-detail-reccomend-items:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.content-detail-reccomend-items__images {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .content-detail-reccomend-items__images {
    margin-bottom: 0;
    width: 30.7692307692vw;
    flex: none;
  }
}
.content-detail-reccomend-items__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}

.content-detail-items-recipe-check {
  background: #E8FFC3;
  border-radius: 4px;
  padding: 18px 50px 20px;
  margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
  .content-detail-items-recipe-check {
    padding: 18px 14px 16px;
  }
}
.content-detail-items-recipe-check h4 {
  background: #009500;
  border-radius: 100vh;
  width: 100%;
  height: 34px;
  position: relative;
}
.content-detail-items-recipe-check h4 span {
  width: 233px;
  height: 54px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.content-detail-items-recipe-check__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 8px;
}

.content-detail-plus1 {
  background: #F0FFD8;
  border-radius: 4px;
  padding: 16px 50px 48px;
}
@media screen and (max-width: 768px) {
  .content-detail-plus1 {
    width: calc(100% - 56px);
    margin-left: auto;
    margin-right: auto;
    padding: 16px;
  }
}
.content-detail-plus1__title img {
  display: block;
  width: 100px;
  margin: auto auto 8px;
}
.content-detail-plus1__title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: solid 1px #009500;
  border-bottom: solid 1px #009500;
  margin-bottom: 16px;
}
.content-detail-plus1 .content-detail__normal-text {
  margin-bottom: 33px;
}

/********************
  モーダルウィンドウ
*********************/
#modal-wrapper {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8000;
  opacity: 0;
  transition: all 0.5s;
}
#modal-wrapper.open {
  visibility: visible;
  opacity: 1;
}

.modal-bg {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 8000;
  opacity: 0;
  transition: all 0.5s;
}

.open .modal-bg {
  visibility: visible;
  opacity: 1;
}

.modal-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 620px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.9s;
  z-index: 9000;
}
@media screen and (max-width: 768px) {
  .modal-inner {
    width: calc(100% - 54px);
  }
}

.open .modal-inner {
  opacity: 1;
  transition: all 1s;
}

.modal-header {
  background: #F4F1ED;
  padding: 8px 0;
  position: relative;
}
.modal-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #163259;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.75;
}

.modal-close-btn {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
}

.modal-close-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #163259;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}

.modal-close-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #163259;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(-45deg);
}

.modal-content {
  background: #fff;
  padding: 20px 92px 26px;
}
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 20px 30px 20px 28px;
  }
}

.character-items {
  display: flex;
  gap: 0 16px;
  padding-bottom: 20px;
  border-bottom: dotted 1px #163259;
  margin-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .character-items {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.character-items:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.character-items-images {
  flex: none;
  width: 60px;
}

.character-items-text__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #163259;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.714285;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .character-items-text__name {
    margin-bottom: 4px;
  }
}
.character-items-text__comment {
  font-size: 1.4rem;
  font-weight: 400;
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.714285;
}

/********************
  優待サービスページ
*********************/
.gift-content-header {
  border-radius: 4px;
  border: solid 1px #212121;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .gift-content-header {
    width: calc(100% - 32px);
    margin: auto auto 32px;
  }
}
.gift-content-header h2 {
  background: #FFA21A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 7px;
  text-align: center;
}
.gift-content-header__image {
  width: 260px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .gift-content-header__image {
    width: 33.3333333333vw;
  }
}
.gift-content-header__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}

.gift-content-header-box {
  background: #FFFCE6;
  border-top: solid 1px #212121;
  display: flex;
  gap: 0 32px;
  padding: 24px 32px 32px;
}
@media screen and (max-width: 768px) {
  .gift-content-header-box {
    padding: 16px;
    gap: 0 12px;
  }
}

.gift-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .gift-content {
    grid-template-columns: 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 4.1025641026vw;
    padding: 0 28px;
  }
}

@media screen and (max-width: 768px) {
  .gift-content-items {
    border-bottom: solid 1px #E0E0E2;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .gift-content-items a {
    display: grid;
    grid-template-columns: 35.92814% auto auto;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    gap: 0 17px;
  }
}
.gift-content-items__image {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .gift-content-items__image {
    margin-bottom: 0;
    width: 100%;
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.gift-content-items__image img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .gift-content-items__text {
    grid-row: 2/3;
    grid-column: 2/4;
    margin-bottom: 4px;
  }
}
.gift-content-items__text h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  height: 4.5em;
  margin-bottom: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gift-content-items__text h3 {
    display: none;
  }
}
.gift-content-items__text--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .gift-content-items__text--sp {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    display: block;
    width: 100%;
    grid-row: 1/2;
    grid-column: 1/4;
    margin-bottom: 19px;
  }
}
.gift-content-items__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gift-content-items__text p {
    -webkit-line-clamp: 3;
  }
}

/********************
  優待ページ　コンテンツレイアウト
*********************/
.gift-content-detail__normal-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .gift-content-detail__normal-text {
    margin-bottom: 32px;
  }
}
.gift-content-detail__normal-text--mb0 {
  margin-bottom: 0 !important;
}
.gift-content-detail__normal-text--mb24 {
  margin-bottom: 24px;
}
.gift-content-detail__normal-text--mb56 {
  margin-bottom: 56px;
}
.gift-content-detail__normal-text--bold {
  font-weight: 700 !important;
}

@media screen and (max-width: 768px) {
  .gift-content-detail-header {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.gift-content-detail-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 16px;
  }
}
.gift-content-detail-header h2 img {
  width: 326px;
  margin: 0 auto 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-header h2 img {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 768px) {
  .gift-content-detail-text {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.gift-content-detail-image {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-image {
    width: 100%;
  }
}
.gift-content-detail-image--mtb48 {
  margin-top: 48px;
  margin-bottom: 48px;
}
.gift-content-detail-image--sp-mt24-mb32 {
  margin-top: 24px;
  margin-bottom: 32px;
}

.gift-content-detail-items {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-items {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.gift-content-detail-items__header {
  background: #F4F1ED;
  margin-bottom: 24px;
}
.gift-content-detail-items__header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 4px 8px 7px;
}
.gift-content-detail-items__title-center {
  text-align: center;
}
.gift-content-detail-items__overview dl {
  margin-bottom: 24px;
}
.gift-content-detail-items__overview dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-items__overview dt {
    margin-bottom: 16px;
  }
}
.gift-content-detail-items__overview dt span {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: #E0E0E2;
  border-radius: 100vh;
  font-size: 2rem;
  line-height: 30px;
  text-align: center;
  margin-right: 8px;
}
.gift-content-detail-items__overview dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.gift-content-detail-items__btn a {
  background: #FFA21A;
  margin-left: auto;
  margin-right: auto;
}
.gift-content-detail-items__btn--mt32 {
  margin-top: 32px;
}

.gift-content-detail-items-regist-information {
  position: relative;
  margin-top: 95px;
  background: #FFFCE6;
  padding: 0 60px 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-items-regist-information {
    margin-top: 87px;
    padding: 0 16px 24px;
    margin-bottom: 48px;
  }
}
.gift-content-detail-items-regist-information__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #163259;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
  margin-bottom: 0 !important;
}
.gift-content-detail-items-regist-information__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  color: #163259;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.gift-content-detail-items-regist-information p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  margin-bottom: 24px;
}

.gift-content-detail-items-regist-information-label {
  background: #FFA21A;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  width: 358px;
  margin-left: auto;
  margin-right: auto;
  top: -39px;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-items-regist-information-label {
    width: 100%;
  }
}
.gift-content-detail-items-regist-information-label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFA21A;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .gift-content-detail-items-regist-information-label::after {
    bottom: -9px;
  }
}

@media screen and (max-width: 768px) {
  .gift-content-detail-items-regist-information-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.gift-content-cluboff-service {
  border-top: dotted 1px #212121;
  padding-top: 22px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-service {
    padding-top: 10px;
  }
}
.gift-content-cluboff-service header h2 {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  font-weight: 500;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-service header h2 {
    margin-bottom: 15px;
  }
}

.gift-content-cluboff-service-image img {
  vertical-align: bottom;
}

.gift-content-cluboff-service-image-slide {
  position: relative;
  border-top: solid 1px #212121;
  border-bottom: solid 1px #212121;
}
.gift-content-cluboff-service-image-slide__items {
  width: 200px;
  border-left: solid 1px #212121;
}

.gift-content-cluboff-service-image-slide-inner {
  z-index: 1;
}
.gift-content-cluboff-service-image-slide-inner.clone {
  position: relative;
  z-index: 0;
}

.gift-content-cluboff-service-image-slide-inner-copy {
  width: 1407px;
  transform: translate3d(-1400px, 0px, 0px);
  transition: transform 5000ms linear;
  display: flex;
  position: relative;
  z-index: 10;
}

.gift-content-cluboff-service-text {
  background: #F4F1ED;
  display: flex;
  border-bottom: solid 1px #212121;
  font-family: "Noto Sans JP", sans-serif;
}
.gift-content-cluboff-service-text__items-left {
  width: 50%;
  border-right: solid 1px #212121;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 25px;
  padding-top: 8px;
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-service-text__items-left {
    flex-direction: column;
    padding-top: 19px;
    padding-bottom: 0;
  }
}
.gift-content-cluboff-service-text__items-left-small {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 19px;
}
.gift-content-cluboff-service-text__items-left-red-large {
  font-size: 6.2rem;
  font-family: "Josefin Sans", sans-serif;
  color: #ED4940;
  line-height: 1.1935483;
  letter-spacing: -0.02em;
}
.gift-content-cluboff-service-text__items-left-left-col {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
}
.gift-content-cluboff-service-text__items-left-right-col {
  display: flex;
  align-items: center;
}
.gift-content-cluboff-service-text__items-left-right-col div {
  font-family: "Josefin Sans", sans-serif;
  color: #ED4940;
  padding-left: 1px;
}
.gift-content-cluboff-service-text__items-left-right-col div span {
  display: block;
}
.gift-content-cluboff-service-text__items-left-right-col div span:first-child {
  font-size: 1.7rem;
  line-height: 1;
}
.gift-content-cluboff-service-text__items-left-right-col div span:last-child {
  font-size: 2.4rem;
  line-height: 1.2083333;
}
.gift-content-cluboff-service-text__items-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 22px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-service-text__items-right {
    flex-direction: column;
  }
}
.gift-content-cluboff-service-text__items-right-left-col {
  font-size: 1.6rem;
  font-weight: 500;
}
.gift-content-cluboff-service-text__items-right-right-col {
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: -0.02em;
  color: #ED4940;
  line-height: 1.55;
}

.gift-content-cluboff-regist-information {
  background: #FFFCE6;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-regist-information {
    padding: 24px 16px 32px;
  }
}
.gift-content-cluboff-regist-information__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  line-height: 0.9;
  color: #163259;
  font-weight: 700;
  padding: 14px 35px 15px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-regist-information__title {
    line-height: 1.5;
    padding: 8px 0;
  }
}
.gift-content-cluboff-regist-information__title span {
  font-size: 1.8rem;
  line-height: 1.2;
  padding-right: 4px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-regist-information__title span {
    display: block;
    margin-bottom: 1px;
    padding-right: 0;
  }
}

.gift-content-cluboff-regist-information-label {
  background: #FFA21A;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-regist-information-label {
    width: 100%;
    margin-bottom: 30px;
  }
}
.gift-content-cluboff-regist-information-label::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 22px solid #FFA21A;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  position: absolute;
  bottom: -21px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-regist-information-label::after {
    border-top: 14px solid #FFA21A;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    bottom: -13px;
  }
}

.gift-content-cluboff-regist-information-text {
  margin-bottom: 24px;
}
.gift-content-cluboff-regist-information-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-regist-information-text p {
    text-align: left;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.gift-content-cluboff-btn {
  display: flex;
  gap: 0 21px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-btn {
    flex-direction: column;
    gap: 24px 0;
  }
}
.gift-content-cluboff-btn__regist {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
.gift-content-cluboff-btn__regist img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}
.gift-content-cluboff-btn__login {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFFFFF;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
.gift-content-cluboff-btn__login img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

.gift-content-cluboff-regist-information-sample {
  text-align: center;
}
.gift-content-cluboff-regist-information-sample a {
  transition: 0.3s;
}
.gift-content-cluboff-regist-information-sample a:hover {
  opacity: 0.7;
}
.gift-content-cluboff-regist-information-sample a {
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.gift-content-cluboff-items {
  padding: 40px 33px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items {
    padding: 39px 16px;
  }
}
.gift-content-cluboff-items--bg-beige {
  background: #F4F1ED;
  padding-top: 34px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items--bg-beige {
    padding-top: 24px;
    padding-bottom: 22px;
  }
}
.gift-content-cluboff-items--bg-yellow {
  background: #FFFCE6;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items--bg-yellow {
    padding-top: 18px;
    padding-bottom: 25px;
  }
}
.gift-content-cluboff-items__header {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__header {
    margin-bottom: 12px;
  }
}
.gift-content-cluboff-items__header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.333333;
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.gift-content-cluboff-items__header h2::before {
  content: "";
  width: 1px;
  height: 21px;
  background: #212121;
  rotate: -45deg;
  position: absolute;
  left: -13px;
  bottom: 0;
}
.gift-content-cluboff-items__header h2::after {
  content: "";
  width: 1px;
  height: 21px;
  background: #212121;
  rotate: 45deg;
  position: absolute;
  right: -13px;
  bottom: 0;
}
.gift-content-cluboff-items__image {
  width: 464px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__image {
    width: 100%;
    margin: 0 auto 42px;
  }
}
.gift-content-cluboff-items__haseko-day-header {
  background: #163259;
  padding-top: 10px;
  padding-bottom: 9px;
  margin: 0 auto 36px;
  width: 464px;
  position: relative;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-header {
    width: 100%;
    padding-top: 7px;
    margin-bottom: 29px;
  }
}
.gift-content-cluboff-items__haseko-day-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 5px;
}
.gift-content-cluboff-items__haseko-day-header h2 {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-header h2 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.gift-content-cluboff-items__haseko-day-header h2 img {
  width: 340px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-header h2 img {
    width: 100%;
    max-width: 340px;
  }
}
.gift-content-cluboff-items__haseko-day-header::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 29px solid transparent;
  border-left: 29px solid transparent;
  border-right: 17px solid #163259;
  border-bottom: 17px solid #163259;
  position: absolute;
  z-index: 1;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 4px;
  rotate: 45deg;
}
.gift-content-cluboff-items__haseko-day-image {
  width: 464px;
  background: #ffffff;
  border: solid 1px #212121;
  border-radius: 4px;
  margin: auto;
  padding: 28px 0 27px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-image {
    width: calc(100% - 56px);
  }
}
.gift-content-cluboff-items__haseko-day-image img {
  width: 230px;
  display: block;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-image img {
    width: 58.9743589744vw;
  }
}
.gift-content-cluboff-items__haseko-day-info {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  background: #ffffff;
  border-bottom: dotted 1px #212121;
  width: 464px;
  height: 50px;
  margin: 34px auto 16px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-info {
    width: calc(100% - 56px);
    margin-top: 26px;
  }
}
.gift-content-cluboff-items__haseko-day-this-month {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: -25%;
  left: 0;
  right: 0;
  margin: auto;
}
.gift-content-cluboff-items__haseko-day-this-month::before {
  content: "";
  width: 200px;
  height: 1px;
  border-top: dotted 1px #212121;
  position: absolute;
  left: 0;
  bottom: 7px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-this-month::before {
    width: 35.3846153846vw;
  }
}
.gift-content-cluboff-items__haseko-day-this-month::after {
  content: "";
  width: 200px;
  height: 1px;
  border-top: dotted 1px #212121;
  position: absolute;
  right: 0;
  bottom: 7px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-this-month::after {
    width: 35.3846153846vw;
  }
}
.gift-content-cluboff-items__haseko-day-gift {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 50px;
  text-align: center;
}
.gift-content-cluboff-items__haseko-day-date {
  background: #FFDE76;
  width: 464px;
  height: 32px;
  margin: auto auto 16px;
  text-align: center;
  line-height: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-date {
    width: calc(100% - 56px);
  }
}
.gift-content-cluboff-items__haseko-day-attention {
  line-height: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 464px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__haseko-day-attention {
    width: calc(100% - 56px);
  }
}
.gift-content-cluboff-items__overview-header {
  background: #163259;
  padding-top: 10px;
  padding-bottom: 9px;
  margin: 0 auto 36px;
  width: 464px;
  position: relative;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__overview-header {
    width: 100%;
  }
}
.gift-content-cluboff-items__overview-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #ffffff;
  position: relative;
  z-index: 10;
}
.gift-content-cluboff-items__overview-header::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 29px solid transparent;
  border-left: 29px solid transparent;
  border-right: 17px solid #163259;
  border-bottom: 17px solid #163259;
  position: absolute;
  z-index: 1;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 4px;
  rotate: 45deg;
}
.gift-content-cluboff-items__overview dl {
  margin-bottom: 24px;
  width: 464px;
  margin: auto auto 18px;
  border-bottom: dotted 1px #212121;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__overview dl {
    width: calc(100% - 56px);
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.gift-content-cluboff-items__overview dl::after {
  content: "";
  width: 64px;
  height: 8px;
  background: #fff url("../img/icon/icon_arrow_up.png") no-repeat center 0;
  background-size: 16px;
  rotate: 180deg;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
}
.gift-content-cluboff-items__overview dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.gift-content-cluboff-items__overview dl:last-child::after {
  display: none;
}
.gift-content-cluboff-items__overview dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items__overview dt {
    margin-bottom: 16px;
  }
}
.gift-content-cluboff-items__overview dt span {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: #E0E0E2;
  border-radius: 100vh;
  font-size: 2rem;
  line-height: 30px;
  text-align: center;
  margin-right: 8px;
}
.gift-content-cluboff-items__overview dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}

.gift-content-cluboff-items-service h3 {
  display: block;
  width: 358px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #ffffff;
  background: #163259;
  margin: auto;
  padding: 7px 0 9px;
  border-radius: 4px;
  z-index: 2;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service h3 {
    width: 100%;
    margin-bottom: 29px;
  }
}
.gift-content-cluboff-items-service h3 span {
  position: relative;
  z-index: 10;
}
.gift-content-cluboff-items-service h3::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 29px solid transparent;
  border-left: 29px solid transparent;
  border-right: 17px solid #163259;
  border-bottom: 17px solid #163259;
  position: absolute;
  z-index: 1;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 4px;
  rotate: 45deg;
}
.gift-content-cluboff-items-service__header-title {
  background: #FFF1C4;
  text-align: center;
  border-bottom: solid 1px #212121;
}
.gift-content-cluboff-items-service__header-title h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-read {
  position: relative;
  top: -10px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-read {
    top: -5px;
  }
}
.gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-read--ext {
  position: relative;
  top: -4px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-read--ext {
    top: unset;
  }
}
.gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text {
  font-size: 2.4rem;
  line-height: 2.583333;
  letter-spacing: -0.02em;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text {
    display: block;
    line-height: 1;
  }
}
.gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text--red {
  font-size: 3.6rem;
  line-height: 1.9375;
  letter-spacing: -0.02em;
  color: #ED4940;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text--red {
    line-height: 1;
  }
}
.gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text--red span:first-child {
  font-size: 1.8rem;
  line-height: 3.4444444;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text--red span:first-child {
    line-height: 1;
  }
}
.gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text--red span:last-child {
  font-size: 2.4rem;
  line-height: 2.5833333;
  padding-left: 4px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__header-title h4 .gift-content-cluboff-items-service__items-title-l-text--red span:last-child {
    line-height: 1;
  }
}
.gift-content-cluboff-items-service__items-col {
  display: flex;
  gap: 0 15px;
}
.gift-content-cluboff-items-service__items-image {
  width: 120px;
  flex: none;
}
.gift-content-cluboff-items-service__items-text {
  font-family: "Noto Sans JP", sans-serif;
}
.gift-content-cluboff-items-service__items-title {
  font-size: 1.4rem;
  line-height: 1.285714;
  margin-bottom: 8px;
}
.gift-content-cluboff-items-service__items-price {
  font-size: 1.4rem;
  line-height: 1.285714;
}
.gift-content-cluboff-items-service__items-price span {
  font-size: 2rem;
  color: #ED4940;
  line-height: 0.9;
  font-weight: 700;
  padding-left: 8px;
}

.gift-content-cluboff-items-service__items {
  border-radius: 10px;
  overflow: hidden;
  border: solid 1px #212121;
  margin-bottom: 24px;
}
.gift-content-cluboff-items-service__items:last-child {
  margin-bottom: 0;
}

.gift-content-cluboff-items-service__items-inner {
  display: flex;
  gap: 0 16px;
  background: #ffffff;
  padding: 24px 15px;
}
@media screen and (max-width: 768px) {
  .gift-content-cluboff-items-service__items-inner {
    flex-direction: column;
    gap: 16px 0;
  }
}

/********************
  イベント・キャンペーン　ページ
*********************/
.event-content-header {
  border-radius: 4px;
  border: solid 1px #212121;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .event-content-header {
    width: calc(100% - 32px);
    margin: auto auto 32px;
  }
}
.event-content-header h2 {
  background: #FFA21A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 7px;
  text-align: center;
}
.event-content-header--end h2 {
  background: #E0E0E2;
}
.event-content-header__image {
  width: 260px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .event-content-header__image {
    width: 33.3333333333vw;
  }
}
.event-content-header__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.event-content-header__read {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;
  margin-bottom: 16px;
}

.event-content-header-box {
  background: #FFFCE6;
  border-top: solid 1px #212121;
  display: flex;
  gap: 0 32px;
  padding: 24px 32px 32px;
}
@media screen and (max-width: 768px) {
  .event-content-header-box {
    padding: 16px;
    gap: 0 12px;
  }
}

.event-content-header--end .event-content-header-box {
  background: #F2F2F4;
}

.event-content-header-title h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700 !important;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: solid 1px #212121;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .event-content-header-title h3 {
    font-size: 1.6rem;
    padding-left: 12px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .event-content-header-title {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.event-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .event-content {
    grid-template-columns: 1fr;
    -moz-column-gap: 16px;
         column-gap: 16px;
    row-gap: 4.1025641026vw;
    padding: 0 28px;
  }
}

.event-content-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: minmax(auto, 258px);
}
@media screen and (max-width: 768px) {
  .event-content-items {
    grid-auto-rows: minmax(auto, 104px);
    border-bottom: solid 1px #E0E0E2;
    padding-bottom: 16px;
  }
}
.event-content-items a {
  position: relative;
  display: block;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .event-content-items a {
    display: grid;
    grid-template-columns: 35.92814% auto auto;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    gap: 0 17px;
  }
}
.event-content-items__image {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .event-content-items__image {
    margin-bottom: 0;
    width: 100%;
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.event-content-items__image img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .event-content-items__text {
    grid-row: 2/3;
    grid-column: 2/4;
    margin-bottom: 4px;
  }
}
.event-content-items__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .event-content-items__text p {
    -webkit-line-clamp: 3;
  }
}
.event-content-items__meta {
  position: absolute;
  bottom: 0;
  right: 0;
}
.event-content-items__meta span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3333333;
  font-weight: 500;
  background: #F2F2F4;
  border-radius: 100vh;
  padding: 0 8px 4px;
}

/********************
  イベント　詳細ページ
*********************/
.event-detail-header {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .event-detail-header {
    width: calc(100% - 56px);
    margin: 0 auto 24px;
  }
}
.event-detail-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.428571;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .event-detail-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
.event-detail-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}

.event-detail-image {
  width: 600px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 768px) {
  .event-detail-image {
    width: calc(100% - 56px);
    margin-bottom: 24px;
  }
}

.event-detail-overview {
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .event-detail-overview {
    width: calc(100% - 32px);
  }
}
.event-detail-overview h3 {
  background: #163259;
  border-top: solid 1px #163259;
  border-left: solid 1px #163259;
  border-right: solid 1px #163259;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 9px 12px;
  color: #fff;
}

.event-detail-overview-inner {
  background: #F2F2F4;
  border-left: solid 1px #E0E0E2;
  border-right: solid 1px #E0E0E2;
  padding: 24px 32px;
}
@media screen and (max-width: 768px) {
  .event-detail-overview-inner {
    padding: 16px 16px;
  }
}
.event-detail-overview-inner dl {
  display: flex;
  gap: 0 48px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px #E0E0E2;
}
@media screen and (max-width: 768px) {
  .event-detail-overview-inner dl {
    flex-direction: column;
    gap: 5px 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.event-detail-overview-inner dl:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.event-detail-overview-inner dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 700;
  width: 56px;
  flex: none;
}
.event-detail-overview-inner dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}
.event-detail-overview-inner dd span {
  font-size: 1.2rem;
  line-height: 1.5;
}

.event-detail-btn a {
  display: block;
  width: 300px;
  height: 50px;
  background: #FFA21A;
  text-align: center;
  border: solid 1px #212121;
  border-radius: 100vh;
  color: #212121;
  margin: 56px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 50px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .event-detail-btn a {
    margin-top: 24px;
    width: 280px;
  }
}
.event-detail-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

/********************
  イベントレポート　ページ
*********************/
@media screen and (max-width: 768px) {
  .event-report {
    margin-top: -32px;
  }
}

.event-report-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .event-report-header {
    margin-bottom: 32px;
  }
}
.event-report-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .event-report-header p {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.event-report-image {
  width: 580px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .event-report-image {
    width: 100%;
    margin-bottom: 16px;
  }
}

.event-report-overview {
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .event-report-overview {
    width: calc(100% - 32px);
  }
}

.event-report-overview-inner {
  background: #F2F2F4;
  padding: 16px 32px;
}
@media screen and (max-width: 768px) {
  .event-report-overview-inner {
    padding: 16px 16px;
  }
}
.event-report-overview-inner dl {
  display: flex;
  gap: 0 48px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px #E0E0E2;
}
@media screen and (max-width: 768px) {
  .event-report-overview-inner dl {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.event-report-overview-inner dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.event-report-overview-inner dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 700;
  width: 56px;
  flex: none;
}
.event-report-overview-inner dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}
.event-report-overview-inner dd span {
  font-size: 1.2rem;
  line-height: 1.5;
}

.event-report-movie {
  background: #F4F1ED;
  padding: 32px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .event-report-movie {
    padding: 18px 16px 24px;
    margin-top: 40px;
  }
}
.event-report-movie h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  line-height: 1.181818;
  margin-bottom: 32px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .event-report-movie h3 {
    font-size: 1.8rem;
    line-height: 1.444444;
    margin-bottom: 16px;
  }
}
.event-report-movie p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .event-report-movie p {
    margin-top: 24px;
  }
}

.event-report-movie-wrapper {
  position: relative;
  width: 600px;
  margin: 0 auto;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .event-report-movie-wrapper {
    width: 100%;
  }
}
.event-report-movie-wrapper iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.event-report-btn a {
  display: block;
  width: 300px;
  height: 50px;
  background: #FFA21A;
  text-align: center;
  border: solid 1px #212121;
  border-radius: 100vh;
  color: #212121;
  margin: 56px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 50px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .event-report-btn a {
    margin-top: 24px;
    width: 280px;
  }
}
.event-report-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

.event-report-items {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .event-report-items {
    margin-top: 32px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.event-report-items__header {
  background: #F4F1ED;
  padding: 4px 8px 7px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .event-report-items__header {
    margin-bottom: 24px;
  }
}
.event-report-items__header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}
.event-report-items__flex {
  display: flex;
  gap: 0 24px;
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .event-report-items__flex {
    flex-direction: column;
    gap: 16px 0;
    margin-bottom: 24px;
  }
}
.event-report-items__flex--mb0 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .event-report-items__flex--sp-revers {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .event-report-items__flex--sp-row {
    flex-direction: row;
    gap: 0 10px;
  }
  .event-report-items__flex--sp-row .event-report-items__image img {
    max-width: 120px;
  }
}
.event-report-items__image {
  flex: none;
}
@media screen and (max-width: 768px) {
  .event-report-items__image img {
    width: 100%;
  }
}
.event-report-items__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
.event-report-items__point {
  width: 580px;
  margin: auto;
  background: #FFFCE6;
  padding: 12px 32px 24px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .event-report-items__point {
    width: 100%;
    margin-bottom: 40px;
    padding: 10px 16px;
  }
}
.event-report-items__point h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 7px;
  margin-bottom: 16px;
  border-bottom: dotted 1px #212121;
  font-weight: 700;
  color: #163259;
}
.event-report-items__point .event-report-items__text p {
  line-height: 1.714285;
}

/********************
  アンケート　詳細ページ
*********************/
.enquete-detail-header {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .enquete-detail-header {
    width: calc(100% - 56px);
    margin: 0 auto 24px;
  }
}
.enquete-detail-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.428571;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .enquete-detail-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
.enquete-detail-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}

.enquete-detail-image {
  width: 600px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 768px) {
  .enquete-detail-image {
    width: calc(100% - 56px);
    margin-bottom: 24px;
  }
}

.enquete-detail-overview {
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .enquete-detail-overview {
    width: calc(100% - 32px);
  }
}
.enquete-detail-overview h3 {
  background: #163259;
  border-top: solid 1px #163259;
  border-left: solid 1px #163259;
  border-right: solid 1px #163259;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 9px 12px;
  color: #fff;
}

.enquete-detail-overview-inner {
  background: #F2F2F4;
  border-left: solid 1px #E0E0E2;
  border-right: solid 1px #E0E0E2;
  padding: 24px 32px;
}
@media screen and (max-width: 768px) {
  .enquete-detail-overview-inner {
    padding: 16px 16px;
  }
}
.enquete-detail-overview-inner dl {
  display: flex;
  gap: 0 48px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px #E0E0E2;
}
@media screen and (max-width: 768px) {
  .enquete-detail-overview-inner dl {
    flex-direction: column;
    gap: 5px 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.enquete-detail-overview-inner dl:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.enquete-detail-overview-inner dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 700;
  width: 56px;
  flex: none;
}
.enquete-detail-overview-inner dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}
.enquete-detail-overview-inner dd span {
  font-size: 1.2rem;
  line-height: 1.5;
}

.enquete-detail-btn a {
  display: block;
  width: 300px;
  height: 50px;
  background: #FFA21A;
  text-align: center;
  border: solid 1px #212121;
  border-radius: 100vh;
  color: #212121;
  margin: 56px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 50px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .enquete-detail-btn a {
    margin-top: 24px;
    width: 280px;
  }
}
.enquete-detail-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

/********************
  アンケートレポート　ページ
*********************/
.enquete-report-header {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .enquete-report-header {
    margin-bottom: 24px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.enquete-report-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.428571;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .enquete-report-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 23px;
  }
}
.enquete-report-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}

.enquete-report-image {
  width: 600px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 768px) {
  .enquete-report-image {
    width: 100%;
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 24px;
  }
}

.enquete-report-overview {
  width: 440px;
  margin: auto auto 40px;
}
@media screen and (max-width: 768px) {
  .enquete-report-overview {
    width: calc(100% - 32px);
  }
}
.enquete-report-overview h3 {
  background: #163259;
  border-top: solid 1px #163259;
  border-left: solid 1px #163259;
  border-right: solid 1px #163259;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 9px 16px;
  color: #fff;
}

.enquete-report-overview-inner {
  background: #F2F2F4;
  border-left: solid 1px #E0E0E2;
  border-right: solid 1px #E0E0E2;
  padding: 16px 16px;
}
@media screen and (max-width: 768px) {
  .enquete-report-overview-inner {
    padding: 16px 16px;
  }
}
.enquete-report-overview-inner dl {
  display: flex;
  gap: 0 48px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: solid 1px #E0E0E2;
}
@media screen and (max-width: 768px) {
  .enquete-report-overview-inner dl {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.enquete-report-overview-inner dl:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.enquete-report-overview-inner dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 700;
  width: 56px;
  flex: none;
}
.enquete-report-overview-inner dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}
.enquete-report-overview-inner dd span {
  font-size: 1.2rem;
  line-height: 1.5;
}

.enquete-report-outline {
  background: #F4F1ED;
  padding: 16px 32px 24px;
  width: 440px;
  margin: 0 auto 56px;
}
@media screen and (max-width: 768px) {
  .enquete-report-outline {
    width: calc(100% - 56px);
    margin: 16px auto 40px;
    padding: 16px;
  }
}
.enquete-report-outline__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 16px;
}
.enquete-report-outline ul li a {
  text-decoration: underline;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2.2857142;
  font-weight: 500;
}
.enquete-report-outline--bg-wht {
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .enquete-report-outline--bg-wht {
    width: 100%;
  }
}

.enquete-report-btn a {
  display: block;
  width: 300px;
  height: 50px;
  background: #FFA21A;
  text-align: center;
  border: solid 1px #212121;
  border-radius: 100vh;
  color: #212121;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 50px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .enquete-report-btn a {
    margin-top: 24px;
    width: 280px;
  }
}
.enquete-report-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

.enquete-report-items {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .enquete-report-items {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 32px;
  }
}
.enquete-report-items__header {
  background: #F4F1ED;
  padding: 9px 13px 11px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__header {
    margin-bottom: 24px;
  }
}
.enquete-report-items__header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 6px;
}
.enquete-report-items__header h2 span {
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: block;
  background: #fff;
  border-radius: 100vh;
  text-align: center;
  flex: none;
}
.enquete-report-items__flex {
  display: flex;
  gap: 0 32px;
  margin-bottom: 66px;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__flex {
    flex-direction: column;
    gap: 16px 0;
    margin-bottom: 24px;
  }
}
.enquete-report-items__flex--mb0 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__flex--sp-revers {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .enquete-report-items__flex--sp-row {
    flex-direction: row;
    gap: 0 10px;
  }
  .enquete-report-items__flex--sp-row .enquete-report-items__image img {
    max-width: 120px;
  }
}
.enquete-report-items__image {
  flex: none;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__image picture img {
    display: block;
    margin: auto;
  }
}
.enquete-report-items__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
.enquete-report-items__point {
  width: 100%;
  margin: auto;
  background: #FFFCE6;
  padding: 24px 28px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__point {
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: 40px;
    padding: 18px 28px 24px;
  }
}
.enquete-report-items__point h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__point .enquete-report-items__image img {
    width: 100%;
  }
}
.enquete-report-items__point .enquete-report-items__text p {
  line-height: 1.714285;
}
.enquete-report-items__point .enquete-report-btn {
  margin-top: 24px;
}
.enquete-report-items__talk {
  width: 500px;
  margin: 0 auto 41px;
}
@media screen and (max-width: 768px) {
  .enquete-report-items__talk {
    width: 100%;
  }
}
.enquete-report-items__talk-items {
  display: flex;
  gap: 0 12px;
  margin-bottom: 14px;
  align-items: center;
}
.enquete-report-items__talk-items--02 {
  flex-direction: row-reverse;
}
.enquete-report-items__talk-items--02 .enquete-report-items__talk-text::before {
  left: unset;
  right: -5px;
  rotate: 180deg;
}
.enquete-report-items__talk-items img {
  flex: none;
  width: 48px;
  height: 48px;
}
.enquete-report-items__talk-items:last-child {
  margin-bottom: 0;
}
.enquete-report-items__talk-text {
  background: #F2F2F4;
  width: 100%;
  border-radius: 8px;
  padding: 16px;
  position: relative;
}
.enquete-report-items__talk-text::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid #F2F2F4;
  position: absolute;
  left: -6px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.enquete-report-items__talk-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}

.enquete-report-summary {
  width: 600px;
  margin: auto;
  padding: 37px 24px 25px;
  background: #FFA21A;
  position: relative;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .enquete-report-summary {
    width: calc(100% - 32px);
    padding: 38px 16px 16px;
  }
}
.enquete-report-summary::before {
  content: "";
  width: 180px;
  height: 41px;
  background: url("../img/enquete/img_enquete_repo_clip.png") no-repeat center 0;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .enquete-report-summary::before {
    width: 158px;
    height: 43px;
    top: 12px;
  }
}

.enquete-report-summary-item {
  background: #fff;
  padding: 24px 26px;
}
@media screen and (max-width: 768px) {
  .enquete-report-summary-item {
    padding: 25px 13px;
  }
}
.enquete-report-summary-item p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 32px;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, transparent 1px 31px, #707070 1px 90%);
  background-size: 8px 100%, 100% 32px;
}

/********************
  住まいレージ　ページ
*********************/
.smile-content {
  padding: 48px 32px 32px;
  background: #F4F1ED;
}
@media screen and (max-width: 768px) {
  .smile-content {
    margin-top: -32px;
    margin-bottom: -56px;
    padding: 32px 16px 56px;
  }
}

.smile-content-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .smile-content-header {
    margin-bottom: 32px;
  }
}
.smile-content-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .smile-content-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
  }
}
.smile-content-header h2 span {
  display: block;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .smile-content-header h2 span {
    font-size: 1.8rem;
  }
}
.smile-content-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .smile-content-header--about {
    margin-bottom: 24px;
  }
}
.smile-content-header--about h2 {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .smile-content-header--about h2 {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .smile-content-header--get {
    margin-bottom: 24px;
  }
}
.smile-content-header--get h2 {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .smile-content-header--get h2 {
    margin-bottom: 16px;
  }
}

.smile-index-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 26px;
}
@media screen and (max-width: 768px) {
  .smile-index-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 16px;
  }
}

.smile-index-list-items {
  background: #fff;
  border: solid 1px #212121;
  border-radius: 10px;
  padding: 0 0 24px;
  overflow: hidden;
}
.smile-index-list-items header {
  background: #9EE2E2;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 8px;
}
.smile-index-list-items header h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}
.smile-index-list-items p {
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
.smile-index-list-items__text--line2 {
  height: 6.5em;
}
@media screen and (max-width: 768px) {
  .smile-index-list-items__text--line2 {
    height: unset;
    margin-bottom: 24px;
  }
}
.smile-index-list-items__text--line3 {
  height: 8.4em;
}
@media screen and (max-width: 768px) {
  .smile-index-list-items__text--line3 {
    height: unset;
    margin-bottom: 24px;
  }
}
.smile-index-list-items__image {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 24px;
}
.smile-index-list-items__image img {
  vertical-align: bottom;
}
.smile-index-list-items__btn a {
  width: 276px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
.smile-index-list-items__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

/********************
  住まいレージとは？　ページ
*********************/
.smile-about-items {
  border: solid 1px #212121;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #fff;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .smile-about-items {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.smile-about-items:last-of-type {
  margin-bottom: 0;
}
.smile-about-items__header {
  padding: 9px 0 11px;
  border-bottom: solid 1px #212121;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .smile-about-items__header {
    padding: 7px 0 9px;
    margin-bottom: 16px;
  }
}
.smile-about-items__header h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .smile-about-items__header h3 {
    font-size: 2rem;
    line-height: 1.2;
  }
}
.smile-about-items__header--org {
  background: #FFA21A;
}
.smile-about-items__header--blu {
  background: #9EE2E2;
}
.smile-about-items p {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .smile-about-items p {
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.smile-about-items__tile {
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(auto, 100px);
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .smile-about-items__tile {
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(auto, 104px);
    -moz-column-gap: 6px;
         column-gap: 6px;
    row-gap: 6px;
  }
}
.smile-about-items__tile-items {
  text-align: center;
  background: #FFFCE6;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100px;
}
.smile-about-items__tile-items p {
  line-height: 1.142857;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  font-weight: 700;
}
.smile-about-items__tile-items-image {
  height: 40px;
  margin-bottom: 14px;
}
.smile-about-items__tile-items-image--mb6 {
  margin-bottom: 6px;
}
.smile-about-items__tile-items-image--pdt5 {
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .smile-about-items__btn {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.smile-about-items__btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFFFFF;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .smile-about-items__btn a {
    width: 100%;
  }
}
.smile-about-items__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}
.smile-about-items__list {
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .smile-about-items__list {
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
    margin-bottom: 8px;
  }
}
.smile-about-items__list-items {
  border-bottom: dotted 1px #212121;
  display: flex;
  gap: 0 16px;
  padding-bottom: 16px;
}
@media screen and (max-width: 376px) {
  .smile-about-items__list-items {
    align-items: center;
  }
  .smile-about-items__list-items:last-child {
    border-bottom: none;
  }
}
.smile-about-items__list-items p {
  padding-left: 0;
  padding-right: 0;
  line-height: 1.285714;
  padding-bottom: 0;
}
.smile-about-items__list-items-image {
  width: 120px;
  flex: none;
}
@media screen and (max-width: 376px) {
  .smile-about-items__list-items-image {
    width: 30.7692307692vw;
  }
}

/********************
  住まいレージため方　ページ
*********************/
.smile-get-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
}
@media screen and (max-width: 376px) {
  .smile-get-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 16px;
  }
}

.smile-get-items {
  background: #fff;
  border: solid 1px #212121;
  border-radius: 10px;
  padding: 16px 16px 24px;
}
.smile-get-items__point {
  display: flex;
  gap: 0 7px;
  margin-bottom: 8px;
}
.smile-get-items__point p {
  display: block;
  background: #FFF1C4;
  border-radius: 100vh;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #163259;
  line-height: 24px;
  width: calc(100% - 39px);
  height: 24px;
  position: relative;
}
.smile-get-items__point p::before {
  content: "";
  display: block;
  width: 8px;
  height: 10px;
  background: url("../img/smile/img_smile_get_fukidashi.png") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  bottom: -3px;
  left: -3px;
}
.smile-get-items__image {
  margin-bottom: 16px;
}
.smile-get-items__image img {
  vertical-align: bottom;
}
.smile-get-items__title {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #163259;
  line-height: 1.333333;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.smile-get-items__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  margin-bottom: 24px;
}
.smile-get-items__text--min-height {
  min-height: 7.1999994rem;
}
.smile-get-items__attention {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.333333;
}
.smile-get-items__btn a {
  width: 276px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
.smile-get-items__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

/********************
  スマイルを使う・交換する　ページ
*********************/
.smile-use-content__read {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .smile-use-content__read {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 24px;
  }
}

.smile-use-content-header {
  border-radius: 4px;
  border: solid 1px #212121;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .smile-use-content-header {
    width: calc(100% - 32px);
    margin: auto auto 32px;
  }
}
.smile-use-content-header h2 {
  background: #FFA21A;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding-top: 4px;
  padding-bottom: 7px;
  text-align: center;
}
.smile-use-content-header__image {
  width: 260px;
  flex: none;
}
@media screen and (max-width: 768px) {
  .smile-use-content-header__image {
    width: 33.3333333333vw;
  }
}
.smile-use-content-header__product-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .smile-use-content-header__product-name {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.smile-use-content-header__read {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .smile-use-content-header__read {
    font-size: 1.4rem;
    line-height: 1.7142857;
    margin-bottom: 4px;
  }
}
.smile-use-content-header__deadline {
  background: #163259;
  padding: 3px 8px 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .smile-use-content-header__deadline {
    font-size: 1.2rem;
    line-height: 1.666666;
    padding: 0px 15px 2px;
  }
}

.smile-use-content-header-box {
  background: #FFFCE6;
  border-top: solid 1px #212121;
  display: flex;
  gap: 0 32px;
  padding: 24px 32px 32px;
}
@media screen and (max-width: 768px) {
  .smile-use-content-header-box {
    padding: 16px;
    gap: 0 9px;
  }
}

.smile-use-list-header h3,
.smile-exchange-list-header h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700 !important;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: solid 1px #212121;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .smile-use-list-header h3,
  .smile-exchange-list-header h3 {
    font-size: 1.6rem;
    padding-left: 12px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .smile-use-list-header,
  .smile-exchange-list-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.smile-exchange-list-header h3 {
  margin-bottom: 24px;
}

.smile-use-list-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .smile-use-list-item {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .smile-use-list-items {
    width: calc(100% - 56px);
    border-bottom: solid 1px #E0E0E2;
    padding-bottom: 28px;
    margin: 0 auto;
  }
  .smile-use-list-items a {
    display: grid;
    grid-template-columns: 35.92814% auto auto;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    gap: 0 17px;
  }
}
.smile-use-list-items__image {
  margin-bottom: 16px;
}
.smile-use-list-items__image img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .smile-use-list-items__image {
    width: 100%;
    margin-bottom: 0;
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.smile-use-list-items__title {
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .smile-use-list-items__title {
    display: none;
  }
}
.smile-use-list-items__title--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .smile-use-list-items__title--sp {
    display: block;
    width: 100%;
    grid-row: 1/2;
    grid-column: 1/4;
    color: #212121;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .smile-use-list-items__text {
    width: 100%;
    grid-row: 2/3;
    grid-column: 2/4;
  }
}
.smile-use-list-items__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .smile-use-list-items__caption {
    -webkit-line-clamp: 3;
  }
}

.smile-exchange-list {
  margin-top: 42px;
}
.smile-exchange-list--mt0 {
  margin-top: 0;
}

.smile-exchange-list-menu {
  width: 100%;
  position: relative;
  background: #F4F1ED;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-menu .prev::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: solid 1px #7C7C7C;
    border-right: solid 1px #7C7C7C;
    position: absolute;
    top: 0;
    bottom: 8px;
    left: 18px;
    margin: auto;
    rotate: -135deg;
    z-index: 10;
  }
  .smile-exchange-list-menu .prev::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #E0E0E2;
    border-radius: 100vh;
    position: absolute;
    top: 0;
    bottom: 8px;
    left: 8px;
    margin: auto;
  }
  .smile-exchange-list-menu .next::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: solid 1px #7C7C7C;
    border-right: solid 1px #7C7C7C;
    position: absolute;
    top: 0;
    bottom: 8px;
    right: 18px;
    margin: auto;
    rotate: 45deg;
    z-index: 10;
  }
  .smile-exchange-list-menu .next::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: #E0E0E2;
    border-radius: 100vh;
    position: absolute;
    top: 0;
    bottom: 8px;
    right: 8px;
    margin: auto;
  }
  .smile-exchange-list-menu.no-arrow-next .next {
    display: none;
  }
  .smile-exchange-list-menu.no-arrow-prev .prev {
    display: none;
  }
}
.smile-exchange-list-menu ul {
  display: flex;
  gap: 16px 8px;
  padding: 24px 16px 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-menu ul {
    width: 100%;
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
}
.smile-exchange-list-menu li {
  display: block;
  width: 161px;
  height: 46px;
  background: #fff;
  border-radius: 4px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2857142;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-menu li {
    width: 114px;
  }
}
.smile-exchange-list-menu li span {
  display: block;
  font-size: 1.2rem;
}
.smile-exchange-list-menu li.active {
  background: #E8E5E1;
}
.smile-exchange-list-menu li div {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  width: 161px;
  height: 46px;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-menu li div {
    width: 114px;
  }
}
.smile-exchange-list-menu__excAll {
  border-bottom: 4px solid #C8C8C9;
}
.smile-exchange-list-menu__exc01 {
  border-bottom: 4px solid #F48D23;
}
.smile-exchange-list-menu__exc02 {
  border-bottom: 4px solid #FAD51F;
}
.smile-exchange-list-menu__exc03 {
  border-bottom: 4px solid #48C311;
}
.smile-exchange-list-menu__exc04 {
  border-bottom: 4px solid #59BBFD;
}
.smile-exchange-list-menu__exc05 {
  border-bottom: 4px solid #F35558;
}
.smile-exchange-list-menu__exc06 {
  border-bottom: 4px solid #3A9C38;
}

.smile-exchange-list-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-item {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}

.smile-exchange-list-items.hide {
  display: none;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items {
    width: calc(100% - 56px);
    border-bottom: solid 1px #E0E0E2;
    padding-bottom: 28px;
    margin: 0 auto;
  }
  .smile-exchange-list-items a {
    display: grid;
    grid-template-columns: 35.92814% auto auto;
    grid-template-rows: auto 1fr;
    grid-auto-flow: row;
    gap: 0 17px;
  }
}
.smile-exchange-list-items__new {
  background: #212121;
  padding: 0 4px 1px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.smile-exchange-list-items__image {
  position: relative;
  margin-bottom: 16px;
}
.smile-exchange-list-items__image img {
  vertical-align: bottom;
  border: solid 1px #E0E0E2;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items__image {
    width: 100%;
    margin-bottom: 0;
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.smile-exchange-list-items__title {
  color: #212121;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items__title {
    display: none;
  }
}
.smile-exchange-list-items__title--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items__title--sp {
    display: block;
    width: 100%;
    grid-row: 1/2;
    grid-column: 1/4;
    color: #212121;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items__text {
    width: 100%;
    grid-row: 2/3;
    grid-column: 2/4;
  }
}
.smile-exchange-list-items__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items__caption {
    -webkit-line-clamp: 3;
    margin-bottom: 8px;
  }
}
.smile-exchange-list-items__smile {
  background: #163259;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 19px;
  color: #fff;
  display: block;
  width: 99px;
  height: 19px;
  text-align: center;
}
.smile-exchange-list-items--under .smile-exchange-list-items__title {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 8px;
  min-height: 4.8rem;
}
.smile-exchange-list-items--under .smile-exchange-list-items__caption {
  display: block;
  min-height: 7.19999994rem;
}
@media screen and (max-width: 768px) {
  .smile-exchange-list-items--under .smile-exchange-list-items__caption {
    min-height: unset;
  }
}

/********************
  hgc　ページ
*********************/
@media screen and (max-width: 768px) {
  .hgc-detail-content {
    margin-bottom: -56px;
  }
}

.hgc-detail-content-header {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-header {
    margin-bottom: 24px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.hgc-detail-content-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.4285714;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}
.hgc-detail-content-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}

.hgc-detail-content-image {
  width: 600px;
  margin: 0 auto 48px;
}
.hgc-detail-content-image img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-image {
    width: 100%;
    margin-bottom: 0;
  }
}

.hgc-detail-content-exhange {
  background: #F4F1ED;
  padding: 32px 40px 24px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-exhange {
    padding: 28px 28px 24px;
    margin-bottom: 32px;
  }
}
.hgc-detail-content-exhange__overview {
  background: #fff;
  padding: 16px 24px 24px;
  width: 480px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-exhange__overview {
    width: 100%;
    padding: 16px 16px 24px;
  }
}
.hgc-detail-content-exhange__overview-title {
  border-bottom: solid 1px #E0E0E2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.333333;
  font-weight: 700;
  padding-bottom: 8px;
  text-align: center;
  margin-bottom: 8px;
}
.hgc-detail-content-exhange__overview-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.090909;
  font-weight: 700;
  text-align: center;
}
.hgc-detail-content-exhange__overview-content span {
  font-size: 1.4rem;
  line-height: 1.7142857;
  padding-left: 8px;
}
.hgc-detail-content-exhange__overview-btn a {
  transition: 0.3s;
}
.hgc-detail-content-exhange__overview-btn a:hover {
  opacity: 0.7;
}
.hgc-detail-content-exhange__overview-btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-exhange__overview-btn a {
    width: 76.9230769231vw;
  }
}
.hgc-detail-content-exhange__overview-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}
.hgc-detail-content-exhange__faq-btn a {
  transition: 0.3s;
}
.hgc-detail-content-exhange__faq-btn a:hover {
  opacity: 0.7;
}
.hgc-detail-content-exhange__faq-btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFF;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-exhange__faq-btn a {
    width: 76.9230769231vw;
  }
}
.hgc-detail-content-exhange__faq-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}
.hgc-detail-content-exhange__terms h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.714285;
  text-align: center;
  margin-bottom: 10px;
}
.hgc-detail-content-exhange__terms-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.714285;
  margin-bottom: 8px;
}
.hgc-detail-content-exhange__terms-detail-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-exhange__terms-detail-text {
    padding-left: 1em;
    text-indent: -1em;
  }
}

.hgc-detail-content-section-header {
  margin-bottom: 24px;
}
.hgc-detail-content-section-header h3 {
  background: #F4F1ED;
  text-align: center;
  padding: 4px 0 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
}

.hgc-detail-content-howto-entry {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-howto-entry {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 38px;
  }
}
.hgc-detail-content-howto-entry__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  margin-bottom: 24px;
}
.hgc-detail-content-howto-entry__text--small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.hgc-detail-content-howto-entry__tel {
  display: flex;
  gap: 0 16px;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-howto-entry__tel {
    flex-direction: column;
    padding-left: 17px;
    padding-right: 17px;
    gap: 16px 0;
  }
}
.hgc-detail-content-howto-entry__tel-num {
  display: flex;
  border: solid 1px #212121;
  width: 300px;
  height: 50px;
  border-radius: 100vh;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-howto-entry__tel-num {
    width: 76.9230769231vw;
  }
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-howto-entry__tel-num.sp-none {
    display: none !important;
  }
}
.hgc-detail-content-howto-entry__tel-num dt {
  background: url("../img/icon/icon_tel.png") no-repeat 0 5px;
  background-size: 22px;
  padding-left: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-right: solid 1px #212121;
  padding-right: 8px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.hgc-detail-content-howto-entry__tel-num dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 8px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.hgc-detail-content-entry-flow {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-flow {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.hgc-detail-content-entry-flow__overview dl {
  margin-bottom: 22px;
  display: flex;
  gap: 0 8px;
  align-items: center;
}
.hgc-detail-content-entry-flow__overview dl:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-flow__overview dl {
    margin-bottom: 16px;
    align-items: flex-start;
  }
}
.hgc-detail-content-entry-flow__overview dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.hgc-detail-content-entry-flow__overview dt span {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: #E0E0E2;
  border-radius: 100vh;
  font-size: 2rem;
  line-height: 30px;
  text-align: center;
}
.hgc-detail-content-entry-flow__overview dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
}
.hgc-detail-content-entry-flow__btn a {
  transition: 0.3s;
}
.hgc-detail-content-entry-flow__btn a:hover {
  opacity: 0.7;
}
.hgc-detail-content-entry-flow__btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-flow__btn a {
    width: 76.9230769231vw;
  }
}
.hgc-detail-content-entry-flow__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-faq {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.hgc-detail-content-entry-faq__list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px #E0E0E2;
}
.hgc-detail-content-entry-faq__list li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  display: block;
  width: 100%;
  background: url("../img/icon/img_arrow.png") no-repeat right center;
  background-size: 18px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-faq__list li a {
    padding-right: 34px;
  }
}

.hgc-detail-content-entry-regist-information {
  position: relative;
  margin-top: 95px;
  background: #FFFCE6;
  padding: 0 60px 56px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-regist-information {
    margin-top: 87px;
    padding: 0 16px 24px;
    margin-bottom: 0;
  }
}
.hgc-detail-content-entry-regist-information__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem !important;
  color: #163259;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
  margin-bottom: 0 !important;
}
.hgc-detail-content-entry-regist-information__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  color: #163259;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.hgc-detail-content-entry-regist-information p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  margin-bottom: 24px;
}
.hgc-detail-content-entry-regist-information__btn a {
  transition: 0.3s;
}
.hgc-detail-content-entry-regist-information__btn a:hover {
  opacity: 0.7;
}
.hgc-detail-content-entry-regist-information__btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-regist-information__btn a {
    width: 76.9230769231vw;
  }
}
.hgc-detail-content-entry-regist-information__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-regist-information-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.hgc-detail-content-entry-regist-information-label {
  background: #FFA21A;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  width: 358px;
  margin-left: auto;
  margin-right: auto;
  top: -18px;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-regist-information-label {
    width: 100%;
  }
}
.hgc-detail-content-entry-regist-information-label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFA21A;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .hgc-detail-content-entry-regist-information-label::after {
    bottom: -9px;
  }
}

/********************
  smile detail item　ページ
*********************/
@media screen and (max-width: 768px) {
  .smile-detail-change-content {
    margin-bottom: -56px;
  }
}

.smile-detail-change-content-header {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-header {
    margin-bottom: 24px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.smile-detail-change-content-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  line-height: 1.4285714;
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }
}
.smile-detail-change-content-header p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
}

.smile-detail-change-content-present {
  background: #163259;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 22px 10px;
  position: relative;
  border-radius: 4px;
  margin: 0 auto 30px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-present {
    padding: 7px 15px 9px;
    margin: 0 auto 25px;
  }
}
.smile-detail-change-content-present::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 29px solid transparent;
  border-left: 29px solid transparent;
  border-right: 17px solid #163259;
  border-bottom: 17px solid #163259;
  position: absolute;
  z-index: 1;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 4px;
  rotate: 45deg;
  z-index: 0;
}
.smile-detail-change-content-present p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.090909;
  color: #fff;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-present p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.smile-detail-change-content-image {
  width: 100%;
  margin: 0 auto 48px;
  overflow: hidden;
  position: relative;
}
.smile-detail-change-content-image__items {
  width: 248px;
  margin-left: 24px;
}
.smile-detail-change-content-image img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-image {
    width: 100%;
  }
}
.smile-detail-change-content-image__arrow {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 0 64px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-image__arrow {
    margin-top: 34px;
  }
}
.smile-detail-change-content-image__arrow .slick-prev-arrow {
  text-indent: -9999px;
  background: url("../img/icon/img_arrow.png") no-repeat 0 0;
  background-size: 18px;
  width: 18px;
  height: 7px;
  transform: scaleX(-1);
  cursor: pointer;
}
.smile-detail-change-content-image__arrow .slick-next-arrow {
  text-indent: -9999px;
  background: url("../img/icon/img_arrow.png") no-repeat 0 0;
  background-size: 18px;
  width: 18px;
  height: 7px;
  cursor: pointer;
}

.smile-detail-change-content-exhange {
  background: #F4F1ED;
  padding: 32px 40px 24px;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-exhange {
    padding: 28px 28px 24px;
    margin-bottom: 32px;
  }
}
.smile-detail-change-content-exhange__overview {
  background: #fff;
  padding: 16px 24px 24px;
  width: 480px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-exhange__overview {
    width: 100%;
    padding: 16px 16px 24px;
  }
}
.smile-detail-change-content-exhange__overview-title {
  border-bottom: solid 1px #E0E0E2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.333333;
  font-weight: 700;
  padding-bottom: 8px;
  text-align: center;
  margin-bottom: 8px;
}
.smile-detail-change-content-exhange__overview-content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  line-height: 1.090909;
  font-weight: 700;
  text-align: center;
}
.smile-detail-change-content-exhange__overview-content span {
  font-size: 1.4rem;
  line-height: 1.7142857;
  padding-left: 8px;
}
.smile-detail-change-content-exhange__overview-btn a {
  transition: 0.3s;
}
.smile-detail-change-content-exhange__overview-btn a:hover {
  opacity: 0.7;
}
.smile-detail-change-content-exhange__overview-btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-exhange__overview-btn a {
    width: 76.9230769231vw;
  }
}
.smile-detail-change-content-exhange__overview-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}
.smile-detail-change-content-exhange__overview-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.285714;
  text-align: center;
  margin-top: 24px;
}
.smile-detail-change-content-exhange__overview-text span {
  font-weight: 700;
  color: #ED4940;
}
.smile-detail-change-content-exhange__faq-btn a {
  transition: 0.3s;
}
.smile-detail-change-content-exhange__faq-btn a:hover {
  opacity: 0.7;
}
.smile-detail-change-content-exhange__faq-btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFF;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-exhange__faq-btn a {
    width: 76.9230769231vw;
  }
}
.smile-detail-change-content-exhange__faq-btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}
.smile-detail-change-content-exhange__terms h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.714285;
  text-align: center;
  margin-bottom: 10px;
}
.smile-detail-change-content-exhange__terms-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.714285;
  margin-bottom: 8px;
}
.smile-detail-change-content-exhange__terms-text a {
  transition: 0.3s;
}
.smile-detail-change-content-exhange__terms-text a:hover {
  opacity: 0.7;
}
.smile-detail-change-content-exhange__terms-text--attention {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ED4940;
  line-height: 1.285714;
}
.smile-detail-change-content-exhange--bottom {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-exhange--bottom {
    margin-top: 48px;
    margin-bottom: 0;
  }
}

.smile-detail-change-content-overview {
  width: 580px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-overview {
    width: calc(100% - 32px);
  }
}
.smile-detail-change-content-overview h3 {
  background: #163259;
  border-top: solid 1px #163259;
  border-left: solid 1px #163259;
  border-right: solid 1px #163259;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 9px 12px;
  color: #fff;
}
.smile-detail-change-content-overview__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.smile-detail-change-content-overview__text p {
  margin-bottom: 8px;
}
.smile-detail-change-content-overview__text p:last-child {
  margin-bottom: 0;
}

.smile-detail-change-content-overview-inner {
  background: #F2F2F4;
  border-left: solid 1px #E0E0E2;
  border-right: solid 1px #E0E0E2;
  padding: 24px 32px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-overview-inner {
    padding: 16px 16px;
  }
}
.smile-detail-change-content-overview-inner dl {
  display: flex;
  gap: 0 48px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px #E0E0E2;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-overview-inner dl {
    flex-direction: column;
    gap: 5px 0;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.smile-detail-change-content-overview-inner dl:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.smile-detail-change-content-overview-inner dt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
  font-weight: 700;
  width: 84px;
  flex: none;
}
.smile-detail-change-content-overview-inner dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}
.smile-detail-change-content-overview-inner dd span {
  font-size: 1.2rem;
  line-height: 1.5;
}

.smile-detail-change-content-point {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-point {
    margin-top: 48px;
    margin-bottom: 40px;
  }
}
.smile-detail-change-content-point__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.714285;
}

.smile-detail-change-content-point-items {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-point-items {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 32px;
  }
}

.smile-detail-change-content-point-header {
  background: #F4F1ED;
  padding: 12px 16px;
  margin-bottom: 24px;
}
.smile-detail-change-content-point-header h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0 16px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-point-header h3 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.smile-detail-change-content-point-header h3 span {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 100vh;
  background: #FFFFFF;
  text-align: center;
  line-height: 40px;
  font-size: 1.2rem;
  flex: none;
}

.smile-detail-change-content-entry-regist-information {
  position: relative;
  margin-top: 95px;
  background: #FFFCE6;
  padding: 0 60px 56px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-entry-regist-information {
    margin-top: 87px;
    padding: 0 16px 24px;
    margin-bottom: 0;
  }
}
.smile-detail-change-content-entry-regist-information__copy {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem !important;
  color: #163259;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2 !important;
  margin-bottom: 0 !important;
}
.smile-detail-change-content-entry-regist-information__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  color: #163259;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.smile-detail-change-content-entry-regist-information p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7142857;
  margin-bottom: 24px;
}
.smile-detail-change-content-entry-regist-information__btn a {
  transition: 0.3s;
}
.smile-detail-change-content-entry-regist-information__btn a:hover {
  opacity: 0.7;
}
.smile-detail-change-content-entry-regist-information__btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFA21A;
  border-radius: 100vh;
  display: block;
  margin: 24px auto 0;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-entry-regist-information__btn a {
    width: 76.9230769231vw;
  }
}
.smile-detail-change-content-entry-regist-information__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .smile-detail-change-content-entry-regist-information-item {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.smile-detail-change-content-entry-regist-information-label {
  background: #FFA21A;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  width: 358px;
  margin-left: auto;
  margin-right: auto;
  top: -18px;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-entry-regist-information-label {
    width: 100%;
  }
}
.smile-detail-change-content-entry-regist-information-label::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFA21A;
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .smile-detail-change-content-entry-regist-information-label::after {
    bottom: -9px;
  }
}

/********************
  news詳細 ページ
*********************/
@media screen and (max-width: 768px) {
  .news-content-detail {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .news-content-detail__text {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.news-content-detail__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 1em;
}
.news-content-detail__text p strong {
  font-weight: 700;
}
.news-content-detail__image {
  width: 500px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .news-content-detail__image {
    width: 100%;
    margin-top: 24px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.news-content-detail__btn {
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .news-content-detail__btn {
    margin-top: 32px;
    padding-left: 28px;
    padding-right: 28px;
  }
}
.news-content-detail__btn a {
  width: 300px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  background: #FFF;
  border-radius: 100vh;
  display: block;
  margin: auto;
  border: solid 1px #212121;
}
@media screen and (max-width: 768px) {
  .news-content-detail__btn a {
    width: 100%;
  }
}
.news-content-detail__btn a img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 18px;
  margin: auto;
}

.news-content-detail-header {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .news-content-detail-header {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.news-content-detail-header h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .news-content-detail-header h2 {
    font-size: 2rem;
    line-height: 1.4;
    text-align: left;
    margin-bottom: 16px;
  }
}
.news-content-detail-header__meta {
  color: #7C7C7C;
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}