@charset "UTF-8";
/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/*
html5doctor.com Reset Style sheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  line-height: 1;
  word-break: break-all;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  pointer-events: none;
}

.hoverEase {
  transition: ease 0.3s;
  opacity: 0.7;
}

.borderDashedBottom {
  background-image: linear-gradient(to right, #CCCCCC 2px, transparent 2px);
  background-size: calc(2px + 2px) 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 8px;
  margin-bottom: 8px;
}

/*==================================================
 * 中央ぞろえ
 *================================================*/
.centerAbsolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*==================================================
 * flex
 *================================================*/
.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*==================================================
 * SVG Mask
 *================================================*/
/*==================================================
 * 角丸
 *================================================*/
.radiusXl {
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .radiusXl {
    border-radius: vw(24);
  }
}

/*==================================================
 * ボーダー
 *================================================*/
/*==================================================
 * スクロールバー非表示
 *================================================*/
/*==================================================
 * レスポンシブ化
 *================================================*/
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/*==================================================
 * カラー
 *================================================*/
:root {
  --mainColor: #0088d4;
}

.mainColor {
  color: var(--mainColor);
}

.subColor {
  color: #fff500;
}

.compColor {
  color: #6a3908;
}

.bgMainColor {
  background-color: var(--mainColor);
}

.bgMainColorLight {
  background-color: #e7f6ff;
}

.bgMainColorExLight {
  background-color: #e7f6ff;
}

.bgGrayColorLight {
  background-color: #f5f5f5;
}

.attentionColor {
  color: #fe2c55;
}

/*==================================================
 * シャドウ
 *================================================*/
.commonShadow {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
}
@media only screen and (max-width: 767px) {
  .commonShadow {
    box-shadow: 0px 0px vw(30) 0px rgba(0, 0, 0, 0.08);
  }
}

/*==================================================
 * 余白
 *================================================*/
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.mtXl {
  margin-top: 48px;
}

.mtLg {
  margin-top: 32px;
}

.mtSm {
  margin-top: 16px;
}

.mtXs {
  margin-top: 8px;
}

.mtBase {
  margin-top: 24px;
}

.mt2xl {
  margin-top: 56px;
}

.mb4xl {
  margin-bottom: 80px;
}

.mb3xl {
  margin-bottom: 64px;
}

.mb2xl {
  margin-bottom: 56px;
}

.mbXl {
  margin-bottom: 48px;
}

.mbLg {
  margin-bottom: 32px;
}

.mbBase {
  margin-bottom: 24px;
}

.mbSm {
  margin-bottom: 16px;
}

.mbXs {
  margin-bottom: 8px;
}

.mb2xs {
  margin-bottom: 4px;
}

.mrXl {
  margin-right: 48px;
}

.mrLg {
  margin-right: 32px;
}

.mrBase {
  margin-right: 24px;
}

.mrSm {
  margin-right: 16px;
}

.mrXs {
  margin-right: 8px;
}

.mr2xs {
  margin-right: 4px;
}

.mlXl {
  margin-left: 48px;
}

.mlSm {
  margin-left: 16px;
}

.mlXs {
  margin-left: 8px;
}

@media print, screen and (min-width: 768px) {
  .mrBasePc {
    margin-right: 24px;
  }
  .mbLgPc {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .mb0Sp {
    margin-bottom: 0 !important;
  }
  .mb4xlSp {
    margin-bottom: 18.691588785vw;
  }
  .mb3xlSp {
    margin-bottom: 14.953271028vw;
  }
  .mb2xlSp {
    margin-bottom: 13.0841121495vw;
  }
  .mbXlSp {
    margin-bottom: 11.214953271vw;
  }
  .mbLgSp {
    margin-bottom: 7.476635514vw;
  }
  .mbBaseSp {
    margin-bottom: 5.6074766355vw;
  }
  .mbSmSp {
    margin-bottom: 3.738317757vw;
  }
  .mbXsSp {
    margin-bottom: 1.8691588785vw;
  }
  .mb2XsSp {
    margin-bottom: 0.9345794393vw;
  }
  .mrLgSp {
    margin-right: 7.476635514vw;
  }
  .mrBaseSp {
    margin-right: 5.6074766355vw;
  }
  .mrSmSp {
    margin-right: 3.738317757vw;
  }
  .mrXsSp {
    margin-right: 1.8691588785vw;
  }
  .mr2xsSp {
    margin-right: 0.9345794393vw;
  }
  .mr0Sp {
    margin-right: 0;
  }
  .ml0Sp {
    margin-left: 0;
  }
  .mlSmSp {
    margin-left: 3.738317757vw;
  }
  .mlXsSp {
    margin-left: 1.8691588785vw;
  }
  .mt0 {
    margin-top: 0;
  }
  .mtXsSp {
    margin-top: 1.8691588785vw;
  }
  .mtSmSp {
    margin-top: 3.738317757vw;
  }
  .mtBaseSp {
    margin-top: 5.6074766355vw;
  }
  .mtLgSp {
    margin-top: 7.476635514vw;
  }
  .mtXlSp {
    margin-top: 11.214953271vw;
  }
  .mt2xlSp {
    margin-top: 56px;
  }
}
.ptSm {
  padding-top: 16px;
}

.ptBase {
  padding-top: 24px;
}

.ptLg {
  padding-top: 32px;
}

.pbBase {
  padding-bottom: 24px;
}

.pbSm {
  padding-bottom: 16px;
}

.pbXs {
  padding-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .pbBaseSp {
    padding-bottom: 5.6074766355vw;
  }
  .pbSmSp {
    padding-bottom: 3.738317757vw;
  }
  .pbXsSp {
    padding-bottom: 1.8691588785vw;
  }
  .ptSmSp {
    padding-top: 3.738317757vw;
  }
  .ptBaseSp {
    padding-top: 5.6074766355vw;
  }
  .ptLgSp {
    padding-top: 7.476635514vw;
  }
}
.mb40 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .mb40 {
    margin-bottom: 9.3457943925vw;
  }
}

@media print, screen and (min-width: 768px) {
  .mb40Pc {
    margin-bottom: 40px;
  }
}

.marginS {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .marginS {
    margin-top: 9.3457943925vw;
    margin-bottom: 9.3457943925vw;
  }
}

.margin {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .margin {
    margin-top: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .margin {
    margin-bottom: 9.3457943925vw;
  }
}

.marginL {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .marginL {
    margin-top: 18.691588785vw;
    margin-bottom: 18.691588785vw;
  }
}

.marginXl {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .marginXl {
    margin-top: 23.3644859813vw;
    margin-bottom: 23.3644859813vw;
  }
}

.padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .padding {
    padding-top: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .padding {
    padding-bottom: 9.3457943925vw;
  }
}

.paddingL {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .paddingL {
    padding-top: 18.691588785vw;
    padding-bottom: 18.691588785vw;
  }
}

.paddingXl {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media only screen and (max-width: 767px) {
  .paddingXl {
    padding-top: 25.7009345794vw;
    padding-bottom: 25.7009345794vw;
  }
}

.paddingXs {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .paddingXs {
    padding-top: 9.3457943925vw;
    padding-bottom: 9.3457943925vw;
  }
}

.paddingS {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media only screen and (max-width: 767px) {
  .paddingS {
    padding-top: 9.3457943925vw;
    padding-bottom: 9.3457943925vw;
  }
}

/*==================================================
 * 背景
 *================================================*/
.bgCenter {
  background-position: center center;
  background-size: cover;
}

.bgImg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bgCoverBlack {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}

/*==================================================
 * 画像
 *================================================*/
/*==================================================
 * ボーダー
 *================================================*/
.borderBottom {
  border-bottom: 1px solid #d9d9d9;
}

.borderTop {
  border-top: 1px solid #d9d9d9;
}

.hr--gray {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/*==================================================
 * バッジ
 *================================================*/
.badge {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
}
.badge::before, .badge::after {
  content: "";
  display: block;
  position: absolute;
}
.badge.badge--new {
  width: 54px;
  height: 54px;
  transform: rotate(45deg);
  transform-origin: center center;
}
.badge.badge--new::before, .badge.badge--new::after {
  width: 100%;
  position: absolute;
}
.badge.badge--new:before {
  top: -12px;
  left: -10px;
  width: 0;
  height: 0;
  border-left: 37px solid transparent;
  border-right: 37px solid transparent;
  border-bottom: 37px solid rgba(0, 136, 212, 0.6);
}
.badge.badge--new:after {
  content: "NEW";
  top: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .badge.badge--new {
    width: 12.6168224299vw;
    height: 12.6168224299vw;
  }
  .badge.badge--new:before {
    top: -2.8037383178vw;
    left: -2.3364485981vw;
    border-left: 8.6448598131vw solid transparent;
    border-right: 8.6448598131vw solid transparent;
    border-bottom: 8.6448598131vw solid rgba(0, 136, 212, 0.6);
  }
  .badge.badge--new:after {
    top: 1.6355140187vw;
    font-size: 3.0373831776vw;
  }
}

/*==================================================
 * 図形
 *================================================*/
.triangle {
  width: 100%;
  height: 162.8127759115px;
  background-color: #fff;
  display: block;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media only screen and (max-width: 767px) {
  .triangle {
    height: 16.1873907249vw;
  }
}

/*==================================================
 * アイコン
 *================================================*/
.icon--arrow {
  position: relative;
}
.icon--arrow::after {
  position: absolute;
  top: 40%;
  right: 16px;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.icon--arrow--black {
  position: relative;
}
.icon--arrow--black::after {
  position: absolute;
  top: 40%;
  right: 16px;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}

.icon--cart {
  position: relative;
}
.icon--cart:before {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon--cart:before {
  mask: url("../img/icon_cart.svg") no-repeat center center/contain;
  -webkit-mask: url("../img/icon_cart.svg") no-repeat center center/contain;
  background-color: #fff;
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 767px) {
  .icon--cart:before {
    mask: url("../img/icon_cart.svg") no-repeat center center/contain;
    -webkit-mask: url("../img/icon_cart.svg") no-repeat center center/contain;
    background-color: #fff;
    width: 7.0093457944vw;
    height: 7.0093457944vw;
  }
}

/*==================================================
 * フォント - サイト独自設定
 *================================================*/
.fontNum {
  font-family: "Roboto", sans-serif;
}

.fontEn {
  font-family: "Roboto", sans-serif;
}

.fontEnSub {
  font-family: "Lora", sans-serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.commonTitleWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .commonTitleWrap {
    margin-bottom: 1.8691588785vw;
  }
}

.commonTitleJp {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp {
    font-size: 4.6728971963vw;
  }
}

.commonTitleJp--s {
  font-size: 14px;
  color: var(--mainColor);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp--s {
    font-size: 3.2710280374vw;
  }
}

.commonTitleJp--m {
  font-size: 24px;
  color: var(--mainColor);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp--m {
    font-size: 5.6074766355vw;
  }
}

.commonTitleJp--l {
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp--l {
    font-size: 7.0093457944vw;
  }
}

.commonTitleJp--xl {
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .commonTitleJp--xl {
    font-size: 9.3457943925vw;
  }
}

.commonTitleJpSub {
  font-size: 20px;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .commonTitleJpSub {
    font-size: 4.6728971963vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonTitleJpSub {
    padding-bottom: 1.1682242991vw;
  }
}
.commonTitleJpSub:after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  bottom: 0;
  width: 100%;
  background-color: #d6be71;
}
@media only screen and (max-width: 767px) {
  .commonTitleJpSub:after {
    height: 0.4672897196vw;
  }
}

.commonTitleJpSub--s {
  font-size: 17px;
}
@media only screen and (max-width: 767px) {
  .commonTitleJpSub--s {
    font-size: 3.5046728972vw;
  }
}

.commonTitleJpSub--m {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .commonTitleJpSub--m {
    font-size: 4.2056074766vw;
  }
}

.commonTitleJpSubWrap {
  margin-bottom: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .commonTitleJpSubWrap {
    margin-bottom: 4.6728971963vw;
  }
}

.commonTitleEn {
  font-size: 40px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 767px) {
  .commonTitleEn {
    font-size: 7.0093457944vw;
  }
}

.commonText p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonText p {
    font-size: 3.738317757vw;
  }
}

.commonText--s p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonText--s p {
    font-size: 3.2710280374vw;
  }
}

.commonText--l p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonText--l p {
    font-size: 3.5046728972vw;
  }
}

.commonText--center p {
  text-align: center;
}

.smallText {
  font-size: 12px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .smallText {
    font-size: 2.8037383178vw;
  }
}
.smallText.smallText--s {
  font-size: 11px;
}
@media only screen and (max-width: 767px) {
  .smallText.smallText--s {
    font-size: 2.5700934579vw;
  }
}

/*==================================================
 * タイトル 色変更
 *================================================*/
.titleBlack {
  color: #333 !important;
}

.titleWhite {
  color: #fff !important;
}

.titleGray {
  color: #333 !important;
}

.titleMainColor {
  color: #0088d4 !important;
}

.titleSubColor {
  color: #fff500 !important;
}

.titleWhiteOpacity {
  color: rgba(255, 255, 255, 0.5) !important;
}

@media only screen and (max-width: 767px) {
  .titleBlackSp {
    color: #333 !important;
  }
  .titleWhiteSp {
    color: #fff !important;
  }
  .titleGraySp {
    color: #333 !important;
  }
  .titleWhiteOpacitySp {
    color: rgba(255, 255, 255, 0.5) !important;
  }
}
@media print, screen and (min-width: 768px) {
  .titleBlackPc {
    color: #333 !important;
  }
  .titleWhitePc {
    color: #fff !important;
  }
  .titleGrayPc {
    color: #333 !important;
  }
  .titleWhiteOpacityPc {
    color: rgba(255, 255, 255, 0.5) !important;
  }
}
/*==================================================
 * テーブル
 *================================================*/
.specialContent .commonTableScrollPadding {
  display: none;
}
@media only screen and (max-width: 767px) {
  .commonTableScrollPadding {
    display: block;
    background-color: transparent;
  }
  .commonTableScrollPadding.commonTableScrollPadding--right {
    padding-right: 3.738317757vw;
  }
}

.commonTableOuter {
  overflow-x: auto;
  position: relative;
}
.commonTableOuter.commonTableOuter--col {
  display: flex;
}
.specialContent .commonTableOuter {
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .commonTableOuter {
    margin-right: calc(50% - 50vw);
  }
}

.specialContent .commonTableUlWrap {
  padding-left: 0;
}
.specialContent .commonTableUlWrap.commonTableUlWrap--horizontal::after {
  display: none;
}
@media only screen and (max-width: 767px) {
  .commonTableUlWrap.commonTableUlWrap--horizontal::after {
    content: "";
    display: block;
    padding-left: 3.738317757vw;
  }
}

.commonTableUl {
  border-left: 1px solid #aaaaaa;
}
.commonTableUl:first-child li {
  display: grid;
  place-items: center left;
}
.commonTableUl li {
  padding: 8px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonTableUl {
    font-size: 3.2710280374vw;
  }
  .commonTableUl li {
    padding: 1.8691588785vw;
  }
}
.commonTableUl.commonTableUl--horizontal {
  width: 300px;
  flex: 0 0 auto;
  border-bottom: 1px solid #aaaaaa;
  border-top: 1px solid #aaaaaa;
}
.commonTableUl.commonTableUl--horizontal:last-of-type {
  border-right: 1px solid #aaaaaa;
}
.commonTableUl.commonTableUl--horizontal li:not(:last-of-type) {
  border-bottom: 1px solid #aaaaaa;
}
.commonTableUl.commonTableUl--horizontal li:nth-of-type(even) {
  background-color: #f8f8f8;
}
@media only screen and (max-width: 767px) {
  .commonTableUl.commonTableUl--horizontal {
    width: 46.7289719626vw;
  }
}
.commonTableUl.commonTableUl--col {
  display: flex;
}
.commonTableUl.commonTableUl--col:nth-of-type(n + 2):nth-of-type(odd) {
  background-color: #f8f8f8;
}
.commonTableUl.commonTableUl--col li {
  border-right: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  width: 300px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
  .commonTableUl.commonTableUl--col li {
    width: 46.7289719626vw;
  }
}

.commonTableUlHead li {
  background-color: #707070 !important;
  color: #fff;
  font-weight: bold;
}

/*==================================================
 * リスト
 *================================================*/
.commonUl li:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .commonUl li:not(:last-child) {
    border-bottom: 0.2336448598vw solid #d9d9d9;
  }
}
@media only screen and (max-width: 767px) {
  .commonUl li:not(:last-child) {
    padding-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonUl li:not(:last-child) {
    margin-bottom: 3.738317757vw;
  }
}
.commonUl.commonUlPadding li {
  padding-right: 16px;
  padding-left: 16px;
}
@media only screen and (max-width: 767px) {
  .commonUl.commonUlPadding li {
    padding-right: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonUl.commonUlPadding li {
    padding-left: 3.738317757vw;
  }
}
.commonUl.commonUlRadio li:not(:last-child) {
  padding-bottom: 22px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .commonUl.commonUlRadio li:not(:last-child) {
    padding-bottom: 5.1401869159vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonUl.commonUlRadio li:not(:last-child) {
    margin-bottom: 5.1401869159vw;
  }
}

.commonUlUnderLine li:not(:last-child) {
  padding-bottom: 22px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .commonUlUnderLine li:not(:last-child) {
    padding-bottom: 5.1401869159vw;
  }
}
.commonUlUnderLine li:not(:first-child) {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .commonUlUnderLine li:not(:first-child) {
    padding-top: 3.738317757vw;
  }
}

.commonUlDisc li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .commonUlDisc li {
    padding-left: 4.2056074766vw;
  }
}
.commonUlDisc li:not(:last-child) {
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .commonUlDisc li:not(:last-child) {
    margin-bottom: 1.8691588785vw;
  }
}
.commonUlDisc li:before {
  content: "・";
  position: absolute;
  left: 0;
}

.commonUlNum {
  counter-reset: number 0;
}
.commonUlNum > li {
  line-height: 1.6;
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}
@media only screen and (max-width: 767px) {
  .commonUlNum > li {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonUlNum > li {
    padding-left: 5.6074766355vw;
  }
}
.commonUlNum > li:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .commonUlNum > li:not(:last-child) {
    margin-bottom: 3.738317757vw;
  }
}
.commonUlNum > li::before {
  position: absolute;
  left: 0;
  counter-increment: number 1; /* number カウンタの増加数をセット */
  content: counter(number)".";
  padding-right: 0.5em;
}

.commonUlAlpha {
  list-style-type: lower-alpha;
}

/*==================================================
 * データリスト
 *================================================*/
.commonDl {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.commonDl dt:not(:first-of-type),
.commonDl dd:not(:first-of-type) {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .commonDl dt:not(:first-of-type),
  .commonDl dd:not(:first-of-type) {
    padding-top: 3.738317757vw;
  }
}
.commonDl dt:not(:last-of-type),
.commonDl dd:not(:last-of-type) {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .commonDl dt:not(:last-of-type),
  .commonDl dd:not(:last-of-type) {
    padding-bottom: 3.738317757vw;
  }
}
.commonDl dt {
  font-weight: bold;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .commonDl dt {
    font-size: 2.8037383178vw;
  }
}
.commonDl dd {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .commonDl dd {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonDl {
    grid-template-columns: 23.3644859813vw 1fr;
  }
}
.commonDl.commonDl--s dt:not(:first-of-type),
.commonDl.commonDl--s dd:not(:first-of-type) {
  padding-top: 8px;
}
@media only screen and (max-width: 767px) {
  .commonDl.commonDl--s dt:not(:first-of-type),
  .commonDl.commonDl--s dd:not(:first-of-type) {
    padding-top: 1.8691588785vw;
  }
}
.commonDl.commonDl--s dt:not(:last-of-type),
.commonDl.commonDl--s dd:not(:last-of-type) {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .commonDl.commonDl--s dt:not(:last-of-type),
  .commonDl.commonDl--s dd:not(:last-of-type) {
    padding-bottom: 1.8691588785vw;
  }
}

/*==================================================
 * 下線
 *================================================*/
.markerLine {
  background: linear-gradient(transparent 75%, #fff500 75%);
}

/*==================================================
 * カラム制御
 *================================================*/
:root {
  --colGap: 24px;
  --rowGap: 24px;
}

.colBox {
  display: grid;
  column-gap: var(--colGap);
  row-gap: var(--rowGap);
}
@media only screen and (max-width: 767px) {
  .colBox {
    --colGap: 2.3364485981vw;
    --rowGap: 2.3364485981vw;
  }
}

@media only screen and (max-width: 767px) {
  .colBoxSp {
    display: grid;
    column-gap: var(--colGap);
    row-gap: var(--rowGap);
  }
}

@media print, screen and (min-width: 768px) {
  .colBoxPc {
    display: grid;
    column-gap: var(--colGap);
    row-gap: var(--rowGap);
  }
}

.colImgBox figcaption {
  font-size: 14px;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .colImgBox {
    margin-bottom: 3.738317757vw;
  }
  .colImgBox figcaption {
    font-size: 3.2710280374vw;
    margin-top: 3.738317757vw;
    margin-bottom: 5.6074766355vw;
  }
}

.colText {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .colText {
    font-size: 3.2710280374vw;
    margin-bottom: 3.738317757vw;
  }
}

.col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.col3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.col4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.col5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media only screen and (max-width: 767px) {
  .col2Sp {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .col3Sp {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .col4Sp {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media print, screen and (min-width: 768px) {
  .col2Pc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .col3Pc {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .col4Pc {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .col5Pc {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.gap8 {
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .gap8 {
    gap: 1.8691588785vw;
  }
}

.gap16 {
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .gap16 {
    gap: 3.738317757vw;
  }
}

.gap24 {
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .gap24 {
    gap: 5.6074766355vw;
  }
}

@media print, screen and (min-width: 768px) {
  .gap24Pc {
    gap: 24px;
  }
}

.gap32 {
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  .gap32 {
    gap: 7.476635514vw;
  }
}

@media print, screen and (min-width: 768px) {
  .gap32Pc {
    gap: 32px;
  }
}

/*==================================================
 * リンク link
 *================================================*/
.moreLink {
  color: var(--mainColor);
  font-weight: bold;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .moreLink {
    font-size: 3.2710280374vw;
  }
}
@media (hover: hover) {
  .moreLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    transition: 0.3s;
    color: var(--mainColor);
    opacity: 0.5;
  }
}

.commonLink {
  /* position: relative; */
  color: var(--mainColor);
  /* padding-bottom: 2px; */
  text-decoration: underline;
}
/* @media only screen and (max-width: 767px) {
  .commonLink {
    padding-bottom: 0.4672897196vw;
  }
}
.commonLink:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--mainColor);
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .commonLink:after {
    height: 0.2336448598vw;
  }
} */
@media (hover: hover) {
  .commonLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    color: var(--mainColor);
    text-decoration: underline;
  }
}
.commonLink.commonLink--arrow {
  line-height: 1.2;
  padding-right: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .commonLink.commonLink--arrow {
    padding-right: 3.738317757vw;
  }
}
.commonLink.commonLink--arrow::before {
  position: absolute;
  top: 25%;
  right: 4px;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}

/*==================================================
 * フォーム関連
 *================================================*/
.commonInput,
.commonInputLabel {
  width: 100%;
}

input[type=text].commonInput {
  background-color: #f9f9f9;
  border: 1px solid #d9d9d9;
  margin: 0;
  border-radius: 4px;
  font-size: 14px;
  padding: 9px;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  input[type=text].commonInput {
    border-radius: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  input[type=text].commonInput {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  input[type=text].commonInput {
    padding: 2.1028037383vw;
  }
}
input[type=text].commonInput::-webkit-input-placeholder {
  /* WebKit browsers (Chrome, Safari) */
  color: rgba(51, 51, 51, 0.5);
}
input[type=text].commonInput:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(51, 51, 51, 0.5);
  opacity: 1; /* Firefox 19+ */
}
input[type=text].commonInput::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(51, 51, 51, 0.5);
  opacity: 1;
}
input[type=text].commonInput:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(51, 51, 51, 0.5);
}

.commonInputTitle {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .commonInputTitle {
    margin-bottom: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonInputTitle {
    font-size: 2.8037383178vw;
  }
}

.commonRadioUl {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .commonRadioUl {
    column-gap: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonRadioUl {
    row-gap: 4.6728971963vw;
  }
}

.commonRadio {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.commonRadioLabel {
  position: relative;
  cursor: pointer;
  width: 100%;
  line-height: 32px;
  padding-left: 40px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel {
    line-height: 7.476635514vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel {
    padding-left: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel {
    font-size: 3.738317757vw;
  }
}
.commonRadioLabel::before, .commonRadioLabel::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.commonRadioLabel::before {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel::before {
    width: 7.476635514vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel::before {
    height: 7.476635514vw;
  }
}
.commonRadioLabel::after {
  background-color: var(--mainColor);
  border-radius: 50%;
  opacity: 0;
  width: 22px;
  height: 22px;
  left: 5px;
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel::after {
    width: 5.1401869159vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel::after {
    height: 5.1401869159vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonRadioLabel::after {
    left: 1.1682242991vw;
  }
}

input:checked + .commonRadioLabel::after {
  opacity: 1;
}

input[type=checkbox].commonCheckBox {
  display: none;
}

.mbRadio {
  margin-bottom: 14px;
}
@media only screen and (max-width: 767px) {
  .mbRadio {
    margin-bottom: 3.2710280374vw;
  }
}

.mbRadioL {
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .mbRadioL {
    margin-bottom: 5.1401869159vw;
  }
}

.commonCheckLabel {
  padding-left: 40px;
  position: relative;
  width: 100%;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel {
    padding-left: 9.3457943925vw;
  }
}
.commonCheckLabel:before, .commonCheckLabel:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.commonCheckLabel::before {
  width: 32px;
  height: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  left: 0;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::before {
    width: 7.476635514vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::before {
    height: 7.476635514vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::before {
    border: 0.2336448598vw solid #d9d9d9;
  }
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::before {
    border-radius: 0.9345794393vw;
  }
}
.commonCheckLabel::after {
  opacity: 0;
  background-image: url(/assets/img/icn_check.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  left: 5px;
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::after {
    width: 5.1401869159vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::after {
    height: 5.1401869159vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonCheckLabel::after {
    left: 1.1682242991vw;
  }
}

input[type=checkbox].commonCheckBox:checked + .commonCheckLabel::after {
  opacity: 1;
}

.agreeReservationNotesLabel {
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 24px;
  padding-left: 75px;
  min-height: 76px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel {
    padding-top: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel {
    padding-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel {
    padding-right: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel {
    padding-left: 17.523364486vw;
  }
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel {
    min-height: 17.7570093458vw;
  }
}
.agreeReservationNotesLabel:before {
  left: 24px;
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel:before {
    left: 5.6074766355vw;
  }
}
.agreeReservationNotesLabel:after {
  left: 29px;
}
@media only screen and (max-width: 767px) {
  .agreeReservationNotesLabel:after {
    left: 6.7757009346vw;
  }
}

input[type=checkbox].commonCheckBox:checked + .agreeReservationNotesLabel {
  background-color: rgba(255, 248, 79, 0.1);
}

.commonSelect {
  padding: 15px;
  font-size: 16px;
  border-radius: 2px;
  border: 1px solid #333;
  color: #333;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .commonSelect {
    padding: 3.5046728972vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSelect {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSelect {
    border-radius: 0.4672897196vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSelect {
    border: 0.2336448598vw solid #333;
  }
}
.commonSelect.commonSelect--quantity {
  width: 104px;
}
@media only screen and (max-width: 767px) {
  .commonSelect.commonSelect--quantity {
    width: 24.2990654206vw;
  }
}
.commonSelect.commonSelect--special {
  font-size: 15px;
  line-height: 1.5;
  padding-right: 46px;
}
@media only screen and (max-width: 767px) {
  .commonSelect.commonSelect--special {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSelect.commonSelect--special {
    padding-right: 10.7476635514vw;
  }
}

.commonSelectWrap {
  position: relative;
  position: relative;
}
.commonSelectWrap::after {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  transform: rotate(135deg);
  pointer-events:none;
}
.commonSelectWrap:after {
  top: 33%;
  right: 18px;
}
@media only screen and (max-width: 767px) {
  .commonSelectWrap:after {
    right: 4.2056074766vw;
  }
}

.commonSelectDate {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap:16px;
}
.commonSelectDate .commonSelect--date {
  padding:9px 50px 9px 9px;
  font-size:14px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius:4px;
}
@media only screen and (max-width: 767px) {
  .commonSelectDate .commonSelect--date {
    padding:9px 50px 9px 6px;
  }
  .commonSelectDate {
    gap:6px;
  }
}

.commonTextArea {
  resize: none;
  width: 100%;
  border-radius: 4px;
  height: 240px;
  line-height: 1.8;
  background-color: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 9px;
}
@media only screen and (max-width: 767px) {
  .commonTextArea {
    border-radius: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonTextArea {
    height: 56.0747663551vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonTextArea {
    padding: 2.1028037383vw;
  }
}

/*==================================================
 * hover
 *================================================*/
.cursor {
  cursor: pointer;
}

.pointerEvents--none {
  pointer-events: none;
}

/*==================================================
 * ボタン
 *================================================*/
.commonBtnWrap {
  text-align: center;
}

.commonBtn {
  width: auto;
  display: inline-flex;
  justify-content: center;
  font-size: 14px;
  padding: 14px;
  min-width: 182px;
  border-radius: 100px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  background-color: #fff;
  border: 1px solid var(--mainColor);
  transition: 0.2s;
  color: var(--mainColor);
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    padding: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonBtn {
    min-width: 42.523364486vw;
  }
}
@media (hover: hover) {
  .commonBtn:hover {
    background-color: var(--mainColor);
    color: #fff;
    opacity: 1 !important;
    opacity: 0.5;
  }
}
.commonBtn.commonBtn--fill {
  background-color: var(--mainColor);
  color: #fff;
}
@media (hover: hover) {
  .commonBtn.commonBtn--fill:hover {
    background-color: #fff;
    color: var(--mainColor);
    opacity: 1 !important;
    opacity: 0.5;
  }
}
.commonBtn.commonBtn--mwAuto {
  min-width: auto;
}
.commonBtn.commonBtn--xs_full {
  padding: 4px;
  padding-top: 5px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .commonBtn.commonBtn--xs_full {
    padding: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonBtn.commonBtn--xs_full {
    padding-top: 1.1682242991vw;
  }
}
.commonBtn.commonBtn--s {
  padding: 8px;
  min-width: 130px;
}
.commonBtn.commonBtn--blank span {
  display: block;
  position: relative;
  padding-right: 26px;
}
@media only screen and (max-width: 767px) {
  .commonBtn.commonBtn--blank span {
    padding-right: 5.6074766355vw;
  }
}
.commonBtn.commonBtn--blank span::after {
  transition: 0.4s;
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  right: 0;
  top: -3px;
  mask: url("/assets/img/icn_blank.svg") no-repeat center center/contain;
  -webkit-mask: url("/assets/img/icn_blank.svg") no-repeat center center/contain;
  background-color: #0088d4;
}
@media only screen and (max-width: 767px) {
  .commonBtn.commonBtn--blank span::after {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonBtn.commonBtn--blank span::after {
    top: -0.9345794393vw;
  }
}
@media (hover: hover) {
  .commonBtn.commonBtn--blank:hover {
    opacity: 0.5;
  }
  .commonBtn.commonBtn--blank:hover span::after {
    background-color: #fff;
  }
}

/*==================================================
 * タグ
 *================================================*/
/*==================================================
 * フォント用
 *================================================*/
.italic {
  font-style: italic;
}

html {
  font-size: 10px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.6;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2;
}
.lh_xl * {
  line-height: 2;
}

.lh_l {
  line-height: 1.8;
}
.lh_l * {
  line-height: 1.8;
}

.lh_m {
  line-height: 1.5;
}
.lh_m * {
  line-height: 1.5;
}

.lh_ms {
  line-height: 1.4;
}
.lh_ms * {
  line-height: 1.4;
}

.lh_s {
  line-height: 1;
}
.lh_s * {
  line-height: 1;
}

.lh_xs {
  line-height: 0.7;
}
.lh_xs * {
  line-height: 0.7;
}

@media only screen and (max-width: 767px) {
  .lh_sSp {
    line-height: 1;
  }
}
@media print, screen and (min-width: 768px) {
  .lh_sPc {
    line-height: 1;
  }
}
.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.15em;
}

.lsBase {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
  .ls_sSp {
    letter-spacing: 0.05em;
  }
}
a {
  text-decoration: none;
}

.bold {
  font-weight: 700 !important;
}

.bold900 {
  font-weight: 900 !important;
}

.medium {
  font-weight: 500 !important;
}

.normal {
  font-weight: normal;
}

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

@media print, screen and (min-width: 768px) {
  .nowrapPc {
    white-space: nowrap;
  }
}

.white {
  color: #fff;
}

.black {
  color: #333;
}

.gray {
  color: #707070;
}

.red {
  color: #dc4517 !important;
}

/*==================================================
 * フォントサイズ
 *================================================*/
.fs5Xl {
  font-size: 64px;
}

.fs4Xl {
  font-size: 56px;
}

.fs3Xl {
  font-size: 48px;
}

.fs2Xl {
  font-size: 40px;
}

.fsXl {
  font-size: 32px;
}

.fsL {
  font-size: 24px;
}

.fsM {
  font-size: 18px;
}

.fsBase {
  font-size: 16px;
}

.fs20 {
  font-size: 20px;
}

.fs14 {
  font-size: 14px;
}

.fs12 {
  font-size: 12px;
}

.fs10 {
  font-size: 10px;
}

@media only screen and (max-width: 767px) {
  .fsMSp {
    font-size: 4.2056074766vw;
  }
  .fsBaseSp {
    font-size: 3.738317757vw;
  }
  .fs20 {
    font-size: 4.6728971963vw;
  }
  .fs14Sp {
    font-size: 3.2710280374vw;
  }
  .fs13Sp {
    font-size: 3.0373831776vw;
  }
  .fs12Sp {
    font-size: 2.8037383178vw;
  }
  .fs10Sp {
    font-size: 2.3364485981vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fs14Tab {
    font-size: 14px;
  }
}
/*flex box*/
.flex {
  display: flex;
}

.flexCol2 {
  width: 50%;
}

.flexBr {
  width: 100%;
  margin: 0 !important;
}

.full {
  width: 100%;
}

.flex_1 {
  flex: 1;
}

.flexGrow_1 {
  flex-grow: 1;
}

.justCenter {
  justify-content: center;
}

.justSelfCenter {
  justify-self: center;
}

.justEnd {
  justify-content: flex-end;
}

.justBetween {
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.alignBase {
  align-items: baseline;
}

.alignSelf {
  align-self: end;
}

.flexReverse {
  flex-flow: row-reverse;
}

.flexWrap {
  flex-wrap: wrap;
}

.flexColumn {
  flex-direction: column;
}

.flexColReverse {
  flex-direction: column-reverse;
}

.flexColReverse {
  flex-direction: column-reverse;
}

@media only screen and (max-width: 767px) {
  .fullSp {
    width: 100%;
  }
  .justCenterSp {
    justify-content: center;
  }
}
@media print, screen and (min-width: 768px) {
  .justBetweenPc {
    justify-content: space-between;
  }
  .justEndPc {
    justify-content: flex-end;
  }
  .justCenterPc {
    justify-content: center;
  }
  .flexColumnPc {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    flex-wrap: wrap;
  }
  .flexReverseSp {
    flex-flow: row-reverse;
  }
  .flexColumnSp {
    flex-direction: column;
  }
  .flexColReverseSp {
    flex-direction: column-reverse;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row-reverse;
  }
  .flexSp {
    display: flex;
  }
  .justEndSp {
    justify-content: flex-end;
  }
  .justBetweenSp {
    justify-content: space-between;
  }
  .alignCenterSp {
    align-items: center;
  }
  .alignEndSp {
    align-items: flex-end;
  }
}
/*==================================================
 * レスポンシブ 表示切り替え
 *================================================*/
.tab {
  display: none;
}

@media only screen and (min-width: 960px) and (max-width: 1280px) {
  .note {
    display: block;
  }
}

.pcInline {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc,
  .pcInline {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/*==================================================
 * 独自クラス（どのサイトでも） 汎用
 *================================================*/
.opacity {
  opacity: 1;
}

.remove {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 0;
}

.overScrollX {
  overflow-x: scroll;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
  font-size: 12px;
}

.disNone {
  display: none !important;
}

.opa0 {
  transition: 0.3s;
  opacity: 0;
}

.opa {
  transition: 0.3s;
  opacity: 1;
}

a:hover .opa {
  transition: 0.3s;
  opacity: 0.7;
}

.tra,
.tra:hover {
  transition: 0.3s;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

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

@media only screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

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

@media print, screen and (min-width: 768px) {
  .text-left-pc {
    text-align: left;
  }
}

.text-center-pc {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .text-center-pc {
    text-align: start;
  }
}

@media only screen and (max-width: 767px) {
  .inlineBlockSp {
    display: inline-block;
  }
  .blockSp {
    display: block;
  }
  .overScrollXSp {
    overflow-x: scroll;
    overflow-y: clip;
    scrollbar-width: none;
  }
  .overScrollXSp::-webkit-scrollbar {
    display: none;
  }
}
.displayNone {
  display: none;
}

.overFlowHidden {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .overFlowHiddenSp {
    overflow: hidden;
  }
}

/*==================================================
 * 横幅 container
 *================================================*/
.cnt {
  width: 100%;
  max-width: min(calc(100% - var(--padding, 80px)), var(--maxWidth, 1120px));
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .cnt {
    --padding: 9.3457943925vw;
  }
}

.cntXs {
  --maxWidth: 632px;
}

.cntS {
  --maxWidth: 792px;
}

.cntM {
  --maxWidth: 840px;
}

.cntL {
  --maxWidth: 960px;
}

.cntXl {
  --maxWidth: 1290px;
}

.cntFull {
  max-width: 1400px;
}

.cntSpTab {
  --padding: 0;
}
@media only screen and (max-width: 767px) {
  .cntSpTab {
    --padding: 11.214953271vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntSpTab {
    --padding: 48px;
  }
}

@media print, screen and (min-width: 768px) {
  .cnt0Pc {
    --padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .cntSpPadding0 {
    --padding: 0;
  }
}

.overCnt {
  width: 100vw;
  margin: auto calc(50% - 50vw);
}

@media only screen and (max-width: 767px) {
  .cntSpS {
    --padding: 7.476635514vw;
  }
}

@media only screen and (max-width: 767px) {
  .cntSpM {
    --padding: 11.214953271vw;
  }
}

@media only screen and (max-width: 767px) {
  .cntSpL {
    --padding: 11.214953271vw;
  }
}

@media only screen and (max-width: 767px) {
  .overCntSp {
    width: 100vw;
    margin: auto calc(50% - 50vw);
  }
}

@media only screen and (max-width: 767px) {
  .minWidthAutoSp {
    min-width: auto;
  }
}

/*==================================================
 * ふきだし balloon
 *================================================*/
.balloon {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  min-width: 105px;
  max-width: 100%;
  color: var(--mainColor);
  font-weight: 300;
  background: #fff;
  border: solid 1px var(--mainColor);
  box-sizing: border-box;
  margin-right: 10px;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 10px solid #fff;
  z-index: 2;
}
.balloon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-left: 10px solid var(--mainColor);
  z-index: 1;
}
.balloon p {
  text-align: center;
  line-height: 1.5;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .balloon {
    padding: 1.8691588785vw 2.3364485981vw 1.6355140187vw;
    min-width: 24.5327102804vw;
  }
  .balloon p {
    font-size: 2.8037383178vw;
  }
}

/*==================================================
 * プレフィックス / サフィックス
 *================================================*/
.annotation {
  position: relative;
  padding-left: 1.7em;
  display: inline-block;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .annotation {
    font-size: 2.8037383178vw;
  }
}
.annotation::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.annotationUl li {
  position: relative;
  padding-left: 1.7em;
  display: inline-block;
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .annotationUl li {
    font-size: 2.8037383178vw;
  }
}
.annotationUl li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.annotationUl--l li {
  position: relative;
  padding-left: 1.7em;
  display: inline-block;
  font-size: 12px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .annotationUl--l li {
    font-size: 2.8037383178vw;
  }
}
.annotationUl--l li::before {
  content: "※";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .annotationUl--l li {
    font-size: 3.2710280374vw;
  }
}

.en {
  font-family: "Roboto", sans-serif;
}
.en:before {
  content: "¥";
}

.any:after {
  content: "任意";
  display: inline-block;
  font-weight: normal;
  margin-left: 8px;
}
@media only screen and (max-width: 767px) {
  .any:after {
    margin-left: 1.8691588785vw;
  }
}

/*==================================================
 * 斜め線 斜線タイトル obliqueLine
 *================================================*/
.obliqueLine {
  position: relative;
}
.obliqueLine:before, .obliqueLine:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #333;
  width: 1px;
  height: 1.3em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.obliqueLine:before {
  transform: rotate(-30deg);
}
.obliqueLine:after {
  transform: rotate(30deg);
}
@media only screen and (max-width: 767px) {
  .obliqueLine:before, .obliqueLine:after {
    height: 1.3em;
    margin-top: -0.2em;
  }
}

/*==================================================
 * スリック slick
 *================================================*/
.slick-num {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 14px;
  padding-top: 4px;
  padding-bottom: 3px;
  font-size: 12px;
  border-radius: 50px;
  background-color: #fff;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .slick-num {
    padding: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .slick-num {
    padding-top: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  .slick-num {
    padding-bottom: 0.7009345794vw;
  }
}
@media only screen and (max-width: 767px) {
  .slick-num {
    font-size: 2.8037383178vw;
  }
}
.slick-num .separator:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d9d9d9;
  width: 1px;
  height: 13px;
}

.slick-numInner {
  position: relative;
  display: flex;
  gap: 9px;
}

.slick-dotted.slick-slider {
  margin-bottom: 32px;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  margin: 0;
}

.slick-slider .slick-list {
  overflow: visible;
}

/*==================================================
 * ページネーション
 *================================================*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination li {
  position: relative;
}
.pagination li:not(:last-child) {
  margin-right: 8px;
}
.pagination li a {
  display: block;
  white-space: nowrap;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  display: inline-block;
  font-size: 20px;
  white-space: nowrap;
  color: #666;
}
@media only screen and (max-width: 767px) {
  .pagination li a {
    font-size: 4.6728971963vw;
  }
}
@media (hover: hover) {
  .pagination li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.pagination li.paginationCurrent {
  pointer-events: none;
}
.pagination li.paginationCurrent a {
  color: var(--mainColor);
}
.pagination li.firstPageLink {
  position: relative;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .pagination li.firstPageLink {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
.pagination li.firstPageLink a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.pagination li.firstPageLink a:before {
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/assets/img/icn_first-arrow.svg);
}
.pagination li.prevPageLink {
  position: relative;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .pagination li.prevPageLink {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
.pagination li.prevPageLink a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.pagination li.prevPageLink a:before {
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/assets/img/icn_prev-arrow.svg);
}
.pagination li.lastPageLink {
  position: relative;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .pagination li.lastPageLink {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
.pagination li.lastPageLink a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.pagination li.lastPageLink a:before {
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/assets/img/icn_last-arrow.svg);
}
.pagination li.nextPageLink {
  position: relative;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .pagination li.nextPageLink {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
.pagination li.nextPageLink a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.pagination li.nextPageLink a:before {
  width: 100%;
  height: 100%;
  left: 0;
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/assets/img/icn_next-arrow.svg);
}
.pagination li.disabled {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .pagination li:not(:last-child) {
    margin-right: 2.8037383178vw;
  }
  .pagination li a {
    padding: 0 1.8691588785vw;
  }
}

.paginationSection {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .paginationSection {
    padding-bottom: 18.691588785vw;
  }
}

.paginationPrev {
  position: relative;
}
.paginationPrev::after {
  position: absolute;
  top: 5px;
  right: 0px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(-135deg);
}
.paginationPrev:after {
  top: 35%;
  right: 25%;
}
@media only screen and (max-width: 767px) {
  .paginationPrev:after {
    width: 2.3364485981vw;
    height: 2.3364485981vw;
  }
}

.paginationNext {
  position: relative;
}
.paginationNext::after {
  position: absolute;
  top: 5px;
  right: 0px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}
.paginationNext:after {
  left: 25%;
  top: 35%;
}
@media only screen and (max-width: 767px) {
  .paginationNext:after {
    width: 2.3364485981vw;
    height: 2.3364485981vw;
  }
}

/*==================================================
 * パンくず breadcrumbsNav
 *================================================*/
.breadcrumbsNav {
  position: relative;
  margin-bottom: 40px;
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .breadcrumbsNav {
    margin-bottom: 7.476635514vw;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumbsNav {
    padding-top: 3.738317757vw;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumbsNavWrap {
    overflow-x: scroll;
    white-space: nowrap;
    word-break: keep-all;
  }
  .breadcrumbsNavWrap::-webkit-scrollbar {
    display: none;
  }
}

.breadcrumbsNavUl {
  display: flex;
  align-items: center;
}
.breadcrumbsNavUl li {
  color: #333;
  font-size: 14px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .breadcrumbsNavUl li {
    font-size: 3.2710280374vw;
  }
}
.breadcrumbsNavUl li:not(:last-child) {
  padding-right: 18px;
  position: relative;
}
.breadcrumbsNavUl li:not(:last-child)::after {
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
}
.breadcrumbsNavUl li:not(:last-child):after {
  top: 35%;
}
.breadcrumbsNavUl li:not(:first-child) {
  padding-left: 14px;
}
.breadcrumbsNavUl li a {
  padding: 2px 3px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .breadcrumbsNavUl li a {
    font-size: 3.2710280374vw;
  }
}
.breadcrumbsNavUl li a:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 95%;
  height: 1px;
  background-color: #333;
}
@media (hover: hover) {
  .breadcrumbsNavUl li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5 !important;
    opacity: 0.5;
  }
}
.breadcrumbsNavUl li:last-child {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .breadcrumbsNavUl li:not(:last-child) {
    padding-right: 3.2710280374vw;
    padding-left: 2.3364485981vw;
    position: relative;
  }
  .breadcrumbsNavUl li:not(:last-child)::after {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    content: "";
    width: 2.1028037383vw;
    height: 2.1028037383vw;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
    transform: rotate(45deg);
  }
  .breadcrumbsNavUl li:not(:last-child):after {
    top: 30%;
  }
  .breadcrumbsNavUl li:first-child {
    padding-left: 0;
  }
  .breadcrumbsNavUl li:last-child {
    flex: auto;
    flex-shrink: 0;
    max-width: 150px;
  }
  .breadcrumbsNavUl li:not(:first-child) a {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/*==================================================
 * サイト独自 共通
 *================================================*/
/*target=_blank リンク --------------------------------------*/
.commonLink--blank {
  position: relative;
  padding-right: 26px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .commonLink--blank {
    padding-right: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonLink--blank {
    font-size: 3.2710280374vw;
  }
}
.commonLink--blank::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  right: 0;
  top: -2px;
  background-image: url(/assets/img/icn_blank.svg);
}
@media only screen and (max-width: 767px) {
  .commonLink--blank::after {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonLink--blank::after {
    top: -0.4672897196vw;
  }
}
@media (hover: hover) {
  .commonLink--blank:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5 !important;
    opacity: 0.5;
  }
}

/*SP フッターメニュー --------------------------------------*/
.spFootNav {
  background-color: var(--mainColor);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.spFootNav.hide {
  display: none;
}

.spFootNavUl {
  display: flex;
  justify-content: space-between;
  padding: 1.8691588785vw;
}
.spFootNavUl li a {
  display: flex;
  flex-direction: column;
}
.spFootNavUl li a span {
  color: #fff;
  font-size: 2.3364485981vw;
}

/*セクション --------------------------------------*/
.commonSectionBase {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
  padding-right: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .commonSectionBase {
    border-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSectionBase {
    padding: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSectionBase {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.commonSectionBaseInnerBg {
  background-color: #f0f0f0;
  padding: 24px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .commonSectionBaseInnerBg {
    padding: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSectionBaseInnerBg {
    border-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSectionBaseInnerBg {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.commonSectionBaseBg--mainColorLight {
  background-color: #e7f6ff;
  padding: 24px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .commonSectionBaseBg--mainColorLight {
    padding: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSectionBaseBg--mainColorLight {
    border-radius: 1.8691588785vw;
  }
}

.commonSectionMargin {
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .commonSectionMargin {
    margin-bottom: 14.953271028vw;
  }
}

/*共通スライドカード --------------------------------------*/
@media print, screen and (min-width: 768px) {
  .commonSlideCover {
    position: relative;
  }
  .commonSlideCover::before, .commonSlideCover::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100vw;
    background-color: #f0f0f0;
    z-index: 100;
  }
  .commonSlideCover::before {
    right: 100%;
  }
  .commonSlideCover::after {
    left: 100%;
  }
}

.commonSlideWrap {
  position: relative;
}
.commonSlideWrap .slick-list{
  overflow: visible;
}
.commonSlideWrap .slick-dots {
  bottom: -30px;
}
.commonSlideWrap .slick-dots li {
  width: 13px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap .slick-dots li {
    width: 3.0373831776vw;
  }
}
.commonSlideWrap .slick-dots li.slick-active button:before {
  color: var(--mainColor);
}
.commonSlideWrap .slick-dots li button {
  padding: unset;
  width: auto;
  height: auto;
}
.commonSlideWrap .slick-dots li button:before {
  font-size: 10px;
  line-height: normal;
  width: auto;
  height: auto;
  opacity: 1;
  color: #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap .slick-dots li button:before {
    font-size: 2.3364485981vw;
  }
}
.commonSlideWrap .slick-prev {
  left: -16px;
  background-image: url(/assets/img/icn_slick_arrow_prev.svg);
}
.commonSlideWrap .slick-next {
  right: -16px;
  background-image: url(/assets/img/icn_slick_arrow_next.svg);
}
.commonSlideWrap .slick-arrow {
  z-index: 120;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap .slick-arrow {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
.commonSlideWrap .slick-arrow:before {
  content: "";
}
@media (hover: hover) {
  .commonSlideWrap .slick-arrow:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.commonSlideWrap .slick-arrow {
  top: 143px;
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap {
    overflow: scroll;
    display: flex;
    width: 100vw;
    margin: auto calc(50% - 50vw);
    column-gap: 3.738317757vw;
    padding-right: 5.6074766355vw;
    padding-left: 5.6074766355vw;
    padding-bottom: 16px;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
    /* Chrome, Safari 対応 */
  }
  .simplebar-content,
  .simplebar-content-wrapper {
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
    /* Chrome, Safari 対応 */
  }
  .simplebar-content::-webkit-scrollbar,
  .simplebar-content-wrapper::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
  }
}
.commonSlideWrap:not(:first-child) {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap:not(:first-child) {
    padding-top: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap:not(:first-child) {
    margin-top: 5.6074766355vw;
  }
}
.commonSlideWrap:not(:last-child) {
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  .commonSlideWrap:not(:last-child) {
    margin-bottom: 5.6074766355vw;
  }
}

@media print, screen and (min-width: 768px) {
  .commonSlideCard {
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .commonSlideCard {
    width: 65.4205607477vw;
    flex-shrink: 0;
    padding-right: 3.2710280374vw;
  }
}

.commonSlideCardLink .commonSlideCardImgBox {
  overflow: hidden;
}
.commonSlideCardLink .commonSlideCardImgBox img {
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .commonSlideCardLink:hover {
    opacity: 1 !important;
    opacity: 0.5;
  }
  .commonSlideCardLink:hover img {
    transform: scale(1.05);
  }
}

.commonSlideCardImgBox {
  margin-bottom: 8px;
  border-radius: 16px;
  border: 1px solid rgba(204,204,204,0.5);
}
@media only screen and (max-width: 767px) {
  .commonSlideCardImgBox {
    margin-bottom: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSlideCardImgBox {
    border-radius: 3.738317757vw;
  }
}
.commonSlideCardImgBox img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .commonSlideCardImgBox {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .commonSlideCardImgBox {
    box-shadow: 0px 0px 7.0093457944vw 0px rgba(0, 0, 0, 0.08);
  }
}

.commonSlideCardTitle {
  font-weight: bold;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .commonSlideCardTitle {
    font-size: 3.2710280374vw;
  }
}

.commonSlideCardText {
  color: #666;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .commonSlideCardText {
    font-size: 3.2710280374vw;
  }
}

.commonSlideCardShopLink {
  font-size: 12px;
  color: #666;
  position: relative;
  line-height: 2;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .commonSlideCardShopLink {
    font-size: 2.8037383178vw;
  }
}
.commonSlideCardShopLink:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #d9d9d9;
  height: 1px;
  width: 100%;
  bottom: 0;
  left: 0;
}
@media (hover: hover) {
  .commonSlideCardShopLink:hover {
    opacity: 0.7;
    opacity: 0.5;
  }
}

/*共通スプリットカード --------------------------------------*/
.commonSplitCard {
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .commonSplitCard {
    border-radius: 1.8691588785vw;
  }
}
@media print, screen and (min-width: 768px) {
  .commonSplitCard {
    display: flex;
  }
  .commonSplitCard .commonSplitCardImgBox,
  .commonSplitCard .commonSplitCardTextBox {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .commonSplitCard {
    width: 100vw;
    margin: auto calc(50% - 50vw);
  }
}

@media print, screen and (min-width: 768px) {
  .topRecruit:nth-of-type(odd) .commonSplitCard {
    flex-direction: row-reverse;
  }
}

.commonSplitCardImgBox {
  position: relative;
}
.commonSplitCardImgBox::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #c7c7c7;
  mix-blend-mode: multiply;
  width: 100%;
  height: 100%;
}

.commonSplitCardImgTextWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.commonSplitCardImgTextEn {
  font-family: "Lora", sans-serif;
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .commonSplitCardImgTextEn {
    font-size: 7.476635514vw;
  }
}

.commonSplitCardImgTextJp {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .commonSplitCardImgTextJp {
    font-size: 4.2056074766vw;
  }
}
.commonSplitCardImgTextJp.commonSplitCardImgTextJp--l {
  font-size: 24px;
  line-height: 2;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .commonSplitCardImgTextJp.commonSplitCardImgTextJp--l {
    font-size: 5.6074766355vw;
  }
}

.commonSplitCardTextBox {
  background-color: #fff;
  padding-top: 106px;
  padding-left: 100px;
  padding-right: 93px;
}
@media only screen and (max-width: 767px) {
  .commonSplitCardTextBox {
    padding-top: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSplitCardTextBox {
    padding-left: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSplitCardTextBox {
    padding-right: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSplitCardTextBox {
    padding-bottom: 5.6074766355vw;
  }
}

.commonSplitCardTitle {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.8;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .commonSplitCardTitle {
    font-size: 4.6728971963vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSplitCardTitle {
    margin-bottom: 5.6074766355vw;
  }
}

.commonSplitCardText {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 48px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .commonSplitCardText {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonSplitCardText {
    margin-bottom: 5.6074766355vw;
  }
}

/*共通タグ --------------------------------------*/
.commonTagUl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .commonTagUl {
    gap: 1.8691588785vw;
  }
}
.commonTagUl li {
  font-size: 12px;
  padding: 2px;
  padding-right: 7px;
  padding-left: 7px;
  border-radius: 30px;
  font-weight: bold;
  color: var(--mainColor);
  border: 1px solid currentColor;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .commonTagUl li {
    font-size: 2.8037383178vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonTagUl li {
    padding: 0.4672897196vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonTagUl li {
    padding-right: 1.6355140187vw;
  }
}
@media only screen and (max-width: 767px) {
  .commonTagUl li {
    padding-left: 1.6355140187vw;
  }
}

/*共通下層ページ --------------------------------------*/
.lowerPageTitleWrap {
  text-align: center;
}

.lowerPageTitleJp {
  font-size: 30px;
  font-weight: bold;
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .lowerPageTitleJp {
    font-size: 7.0093457944vw;
  }
}

.lowerPageTitleEn {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
  line-height: 1;
  color: #666;
}
@media only screen and (max-width: 767px) {
  .lowerPageTitleEn {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .lowerPageTitleEn {
    margin-bottom: 1.8691588785vw;
  }
}

.lowerPageCommonCard {
  border-radius: 8px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCard {
    border-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCard {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

.lowerPageCommonCardTextWrap p {
  line-height: 1.8;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardTextWrap p {
    font-size: 3.738317757vw;
  }
}
.lowerPageCommonCardTextWrap p:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardTextWrap p:not(:last-child) {
    margin-bottom: 5.6074766355vw;
  }
}

.lowerPageCommonCardImgBox {
  position: relative;
}
.lowerPageCommonCardImgBox img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardImgBox img {
    border-top-left-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardImgBox img {
    border-top-right-radius: 1.8691588785vw;
  }
}

.lowerPageCommonCardImgTextWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.lowerPageCommonCardImgText {
  font-size: 30px;
  text-align: center;
  color: #fff;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardImgText {
    font-size: 4.2056074766vw;
  }
}

.lowerPageCommonCardTextBox {
  padding-top: 40px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardTextBox {
    padding-top: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardTextBox {
    padding-bottom: 5.6074766355vw;
  }
}

.footerImgNavUl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  column-gap: 16px;
}
@media only screen and (max-width: 767px) {
  .footerImgNavUl {
    row-gap: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerImgNavUl {
    column-gap: 3.738317757vw;
  }
}
.footerImgNavUl li a {
  display: block;
  position: relative;
}
.footerImgNavUl li a img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .footerImgNavUl li a img {
    border-radius: 1.8691588785vw;
  }
}
.footerImgNavUl li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #CDC6C6;
  mix-blend-mode: multiply;
  border-radius: 8px;
  top: 0;
  left: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .footerImgNavUl li a:before {
    border-radius: 1.8691588785vw;
  }
}
@media (hover: hover) {
  .footerImgNavUl li a:hover {
    opacity: 1 !important;
    opacity: 0.5;
  }
  .footerImgNavUl li a:hover:before {
    opacity: 0;
  }
  .footerImgNavUl li a:hover .footerImgNavTitleWrap {
    text-shadow: gray 0px 1px 3px;
  }
}
@media print, screen and (min-width: 768px) {
  .footerImgNavUl {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footerImgNavTitleWrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  color: #FFF;
}

.footerImgNavTitleEn {
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footerImgNavTitleEn {
    font-size: 3.2710280374vw;
  }
}

.footerImgNavTitleJp {
  font-size: 12px;
}
@media only screen and (max-width: 767px) {
  .footerImgNavTitleJp {
    font-size: 2.3364485981vw;
  }
}

.googleMapLink {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  margin-top: 16px;
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .googleMapLink {
    padding-left: 6.5420560748vw;
  }
}
@media only screen and (max-width: 767px) {
  .googleMapLink {
    margin-top: 3.738317757vw;
  }
}
.googleMapLink::before {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  background-image: url(/assets/img/icn_blank.svg);
  transition: 0.2s;
}
@media only screen and (max-width: 767px) {
  .googleMapLink::before {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}
@media (hover: hover) {
  .googleMapLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5 !important;
    opacity: 0.5;
  }
}

.messageCeoWrap {
  text-align: right;
}
.messageCeoWrap span {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .messageCeoWrap span {
    font-size: 3.2710280374vw;
  }
}
.messageCeoWrap p {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .messageCeoWrap p {
    font-size: 5.6074766355vw;
  }
}

.messageSection .lowerPageCommonCardImgBox {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .messageSection .lowerPageCommonCardImgBox {
    padding-top: 20px;
  }
}
.messageSection .lowerPageCommonCardImg {
  width: 360px;
  max-width: 100%;
  border-radius: 8px;
}

/*==================================================
 * header ヘッダー
 *================================================*/
header {
  border-bottom: 1px solid #f0f0f0;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  header {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) {
  header {
    position: fixed;
    width: 100%;
    min-width: 1280px;
  }
}

@media only screen and (max-width: 767px) {
  .js-menuBtn img {
    width: 7.476635514vw;
  }
}

.headerNavSearchBtn {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.headerNavSearchBtn img {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .headerNavSearchBtn img {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
.headerNavSearchBtn span {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (max-width: 767px) {
  .menuBtn--close img {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .menuBtn--close img {
    width: 4.2056074766vw;
    height: 4.2056074766vw;
  }
}

.headerLogoCompany {
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .headerLogoCompany {
    width: 46.7289719626vw;
  }
}

.headerLogo img {
  width: 273px;
}
@media only screen and (max-width: 767px) {
  .headerLogo img {
    width: 54.4392523364vw;
  }
}

.headerKeywordSearch {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .headerKeywordSearch {
    position: absolute;
    width: 100%;
    background-color: #f0f0f0;
    top: 28.9719626168vw;
    left: 0;
    padding: 3.738317757vw 5.6074766355vw;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .headerKeywordSearch.show {
    opacity: 1;
    visibility: visible;
  }
}

.headerSearchBar {
  padding-top: 6px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d9d9d9;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .headerSearchBar {
    padding-top: 2.1028037383vw;
  }
}
@media only screen and (max-width: 767px) {
  .headerSearchBar {
    padding-bottom: 2.1028037383vw;
  }
}

.headerSearchFormSearchButton {
  height: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  left: 11px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .headerSearchFormSearchButton {
    font-size: 3.0373831776vw;
  }
}
@media only screen and (max-width: 767px) {
  .headerSearchFormSearchButton {
    left: 9.3457943925vw;
  }
  .headerSearchFormSearchButton img {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}

input[type=text].headerSearchFormInput {
  background-color: #f5f5f5;
  border-radius: 100px;
  padding: 4px 0 7px 40px;
  width: 277px;
}
input[type=text].headerSearchFormInput::placeholder {
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  input[type=text].headerSearchFormInput {
    width: 100%;
    padding: 2.8037383178vw 0 3.5046728972vw 14.2523364486vw;
    background-color: #fff;
  }
}

.headerNavBar {
  padding-top: 15px;
  padding-bottom: 12px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .headerNavBar {
    padding-top: 4.6728971963vw;
  }
}
@media only screen and (max-width: 767px) {
  .headerNavBar {
    padding-bottom: 4.6728971963vw;
  }
}

.headerNavUl {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .headerNavUl {
    gap: 4.6728971963vw;
  }
}
.headerNavUl li {
  position: relative;
  margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
  .headerNavUl li {
    margin-bottom: 3.0373831776vw;
  }
}
.headerNavUl li a {
  display: grid;
  height: 100%;
}
@media (hover: hover) {
  .headerNavUl li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.headerNavUl li a img {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .headerNavUl li a img {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
.headerNavUl li span {
  text-align: center;
  display: block;
  font-size: 10px;
  line-height: 1.2;
  display: grid;
  place-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  white-space: nowrap;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .headerNavUl li span {
    font-size: 2.3364485981vw;
  }
}
@media print, screen and (min-width: 768px) {
  .headerNavUl li span {
    height: 100%;
  }
}

/*重要なお知らせ--------------------------------------*/
.importantNotice {
  background-color: #feffe6;
}
@media only screen and (max-width: 767px) {
  .importantNotice {
    display: flex;
    flex-direction: column;
  }
}
@media print, screen and (min-width: 768px) {
  .importantNotice {
    padding-top: 11px;
    padding-bottom: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .importantNoticeInner {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.importantNoticeBadge {
  background-color: var(--mainColor);
  padding: 7px;
  padding-right: 16px;
  padding-left: 16px;
}
@media only screen and (max-width: 767px) {
  .importantNoticeBadge {
    padding: 1.6355140187vw;
  }
}
@media only screen and (max-width: 767px) {
  .importantNoticeBadge {
    padding-right: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .importantNoticeBadge {
    padding-left: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .importantNoticeBadge {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .importantNoticeBadge {
    display: inline-block;
    border-radius: 100px;
    font-size: 14px;
    line-height: 1.35;
  }
}

.importantNoticeText a {
  text-decoration: underline;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .importantNoticeText a {
    font-size: 3.2710280374vw;
  }
}
@media (hover: hover) {
  .importantNoticeText a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .importantNoticeText {
    padding: 5.6074766355vw;
    padding-top: 3.738317757vw;
    padding-bottom: 3.738317757vw;
  }
  .importantNoticeText a {
    line-height: 1.8;
  }
}

/*==================================================
 * SP ドロワーメニュー
 *================================================*/
.overRayBoxInner {
  width: 100%;
  margin-top: 22.1962616822vw;
}

.overRayBox {
  background-color: #f0f0f0;
  position: fixed;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  top: 0;
  right: 0;
  overflow: auto;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  transition: 0.3s;
}
.open .overRayBox {
  visibility: visible;
  opacity: 1;
  z-index: 200;
}
@media print, screen and (min-width: 768px) {
  .overRayBox {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .overRayNav {
    padding-bottom: 12.6168224299vw;
  }
}

.overRayNavUl li {
  border-bottom: 1px solid #d9d9d9;
}
.overRayNavUl li:not(:first-child) a {
  padding-top: 3.738317757vw;
}
.overRayNavUl li a {
  padding-bottom: 3.738317757vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.8691588785vw;
}
.overRayNavUl li a img {
  margin: 0;
  width: 7.476635514vw;
}
.overRayNavUl li a span {
  font-size: 3.738317757vw;
  font-weight: bold;
}

.overRayNavUlSub li:not(:last-child) {
  margin-bottom: 5.6074766355vw;
}
.overRayNavUlSub li a {
  font-size: 3.738317757vw;
  font-weight: bold;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menuBtnWrap {
  height: 100%;
  position: relative;
  z-index: 1001;
  width: 5.6074766355vw;
  height: 10.2803738318vw;
}
.menuBtnWrap p {
  font-size: 2.3364485981vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  white-space: nowrap;
}

.menuBtn {
  cursor: pointer;
  z-index: 1100;
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .menuBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    top: 30%;
    height: 4.6728971963vw;
  }
}
@media print, screen and (min-width: 768px) {
  .menuBtn {
    padding: 0 8px;
    padding-bottom: 16px;
    margin-top: -30px;
  }
}

.menuBtn--close {
  background-color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  display: grid;
  place-content: center;
  position: fixed;
  top: 3.738317757vw;
  right: 3.738317757vw;
}
@media only screen and (max-width: 767px) {
  .menuBtn--close {
    width: 11.214953271vw;
    height: 11.214953271vw;
  }
}

/*==================================================
 * footer フッター
 *================================================*/
.footerSection {
  padding: 80px;
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .footerSection {
    padding: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerSection {
    padding-top: 11.214953271vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerSection {
    padding-bottom: 11.214953271vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerSection {
    margin-bottom: 14.953271028vw;
  }
}

.footerSnsText {
  margin-bottom: 32px;
  text-align: center;
  font-size: 14px;
  color: #666;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footerSnsText {
    margin-bottom: 7.476635514vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerSnsText {
    font-size: 3.2710280374vw;
  }
}

.footerSnsWrap {
  padding-bottom: 48px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .footerSnsWrap {
    padding-bottom: 11.214953271vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerSnsWrap {
    margin-bottom: 11.214953271vw;
  }
}

.snsUl {
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .snsUl {
    gap: 9.3457943925vw;
  }
}
.snsUl li {
  width: 32px;
}
@media only screen and (max-width: 767px) {
  .snsUl li {
    width: 7.476635514vw;
  }
}
@media (hover: hover) {
  .snsUl li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}

.companyInfoNav {
  margin-bottom: 64px;
}
@media only screen and (max-width: 767px) {
  .companyInfoNav {
    margin-bottom: 14.953271028vw;
  }
}

.companyInfoNavUl {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .companyInfoNavUl {
    gap: 5.6074766355vw;
  }
}
.companyInfoNavUl li a {
  font-size: 14px;
  color: #666;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .companyInfoNavUl li a {
    font-size: 3.2710280374vw;
  }
}
@media (hover: hover) {
  .companyInfoNavUl li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
@media only screen and (max-width: 767px) {
  .companyInfoNavUl {
    flex-wrap: wrap;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

.footerCopy {
  font-size: 12px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    font-size: 2.8037383178vw;
  }
}

.footerLogo {
  text-align: center;
}
.footerLogo img {
  width: 253px;
}
@media only screen and (max-width: 767px) {
  .footerLogo img {
    width: 59.1121495327vw;
  }
}

.footerLogoWrap {
  padding-bottom: 40px;
  margin: auto calc(50% - 50vw);
  margin-bottom: 48px;
  border-bottom: 1px solid #d9d9d9;
  width: 100vw;
}
@media only screen and (max-width: 767px) {
  .footerLogoWrap {
    padding-bottom: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .footerLogoWrap {
    margin-bottom: 11.214953271vw;
  }
}

@media (hover: hover) {
  .footerLogoLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}

body {
  font-size: 16px;
  letter-spacing: 0;
  width: 100%;
  color: #333;
  overflow-x: hidden;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.035em;
  min-width: 1080px;
  width: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif !important;
  background: #f0f0f0;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: initial;
    font-size: 3.2710280374vw;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 240px;
}
@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 39.7196261682vw;
  }
}
@media print, screen and (min-width: 768px) {
  html {
    overflow-x: scroll;
  }
}

@media print, screen and (min-width: 768px) {
  .mainWrapper {
    padding-top: 131px;
  }
}

/*==================================================
 * TOP トップページ
 *================================================*/
:root {
  --gradientBg: linear-gradient(180deg, #97d9ff 0%, #eef9ff 75.5%, rgba(255, 255, 255, 0) 100%);
}

.topFvNewsWrap {
  position: relative;
}
.topFvNewsWrap::before, .topFvNewsWrap::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.topFvNewsWrap::before {
  background: var(--gradientBg);
  z-index: -1;
  height: 615px;
}
@media only screen and (max-width: 767px) {
  .topFvNewsWrap::before {
    height: 153.2710280374vw;
  }
}

.topFv {
  overflow: hidden;
  padding-top: 24px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topFv {
    padding-top: 5.6074766355vw;
  }
}
.topFv::after {
  content: "";
  display: block;
  position: absolute;
}

@media print, screen and (min-width: 768px) {
  .topFvCnt {
    --padding: 0px;
    --maxWidth: 1143.5px;
  }
}

.topFvSlide {
  position: relative;
  opacity: 0;
  transition: 0.2s;
  margin-bottom: 16px;
  padding-bottom: 36px;
}
@media only screen and (max-width: 767px) {
  .topFvSlide {
    margin-bottom: 4vw;
    padding-bottom: 8vw;
  }
}
.topFvSlide .slick-prev {
  left: -16px;
  background-image: url(/assets/img/icn_slick_arrow_prev.svg);
}
.topFvSlide .slick-next {
  right: -16px;
  background-image: url(/assets/img/icn_slick_arrow_next.svg);
}
.topFvSlide .slick-arrow {
  z-index: 120;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .topFvSlide .slick-arrow {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
  .topFvSlideImg {
    border: 1px solid rgba(204,204,204,0.5);
  }
}
.topFvSlide .slick-arrow:before {
  content: "";
}
@media (hover: hover) {
  .topFvSlide .slick-arrow:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.topFvSlide.slick-initialized {
  opacity: 1;
}
.topFvSlide .slick-prev {
  left: -4px;
}
.topFvSlide .slick-next {
  right: -4px;
}
.topFvSlide a {
  margin: auto;
  margin-left: 12px;
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  .topFvSlide a {
    margin-left: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  .topFvSlide a {
    margin-right: 0.9345794393vw;
  }
}
.topFvSlide a img {
  border-radius: 16px;
  width: 1120px;
  /* height: 344px; */
}
@media only screen and (max-width: 767px) {
  .topFvSlide a img {
    border-radius: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .topFvSlide a img {
    width: 88.785046729vw;
  }
}
@media only screen and (max-width: 767px) {
  .topFvSlide a img {
    height: 87.1495327103vw;
  }
}
@media print, screen and (min-width: 768px) {
  .topFvSlide .slick-arrow {
    top: 175px;
  }
}

.topFvPoint {
  margin-top: 16px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topFvPoint {
    margin-top: 3vw;
  }
}
@media only screen and (max-width: 767px) {
  .topFvPoint {
    margin-bottom: 7.476635514vw;
  }
}

.topFvPointInner {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .topFvPointInner {
    text-align: center;
  }
}

.topFvPointTitle {
  background-color: var(--mainColor);
  border-radius: 100px;
  margin: auto;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .topFvPointTitle {
    margin-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .topFvPointTitle {
    display: inline-block;
    line-height: 1.5;
    padding: 0.7009345794vw 3.9719626168vw 0.9345794393vw;
  }
}
@media print, screen and (min-width: 768px) {
  .topFvPointTitle {
    line-height: 1.8;
    width: 232px;
  }
}

.topFvSmallText {
  font-size: 14px;
  letter-spacing: 0.48px;
}
@media only screen and (max-width: 767px) {
  .topFvSmallText {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .topFvSmallText {
    letter-spacing: 0.1121495327vw;
  }
}

/*TOP News 新着情報 --------------------------------------*/
.newsSectionBase {
  padding-top: 12px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .newsSectionBase {
    padding-top: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsSectionBase {
    padding-bottom: 5.6074766355vw;
  }
}

.newsUlCard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .newsUlCard {
    gap: 3.738317757vw;
  }
}
@media (hover: hover) {
  .newsUlCard:hover {
    opacity: 0.5;
  }
  .newsUl .newsUlCard:hover {
    transition: 0.3s;
    opacity: 0.7 !important;
  }
}

.newsUlCardImgBox {
  width: 88px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(204,204,204,0.5);
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .newsUlCardImgBox {
    width: 20.5607476636vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsUlCardImgBox {
    border-radius: 1.8691588785vw;
  }
}

.newsUlCardTextBox {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media print, screen and (min-width: 768px) {
  .newsUl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .newsUl > li:nth-child(-n+2) a {
    padding-bottom: 12px;
  }
  .newsUl > li:nth-child(n+3) a {
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 1px solid #d9d9d9;
  }
}
@media only screen and (max-width: 767px) {
  .newsUl li:not(:first-child) a {
    padding-top: 3.738317757vw;
  }
}

.topNewsUl .newsLi {
  display: none; /* 初期状態で非表示 */
}
.topNewsUl .newsLi.visible {
  display: block; /* 表示する状態 */
}
.topNewsUl .newsLi.slideUpDone {
  display: none; /* slideUp アニメーション完了後の状態 */
}

.newsDay {
  color: #666;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: inline-block;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 767px) {
  .newsDay {
    font-size: 2.3364485981vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsDay {
    margin-bottom: 1.8691588785vw;
  }
}

.newsTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.4;
  letter-spacing: 0.11em;
  font-size: 14px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .newsTitle {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsTitle {
    margin-bottom: 1.1682242991vw;
  }
}

.newsMoreBtnWrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
}
@media only screen and (max-width: 767px) {
  .newsMoreBtnWrap {
    bottom: -3.9719626168vw;
  }
}

.newsMoreBtn {
  width: 87px;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: var(--mainColor);
  border: 1px solid currentColor;
  padding: 8px;
  font-size: 13px;
  padding-left: 13px;
  padding-right: 24px;
  border-radius: 100px;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn {
    width: 20.3271028037vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn {
    padding: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn {
    font-size: 3.0373831776vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn {
    padding-left: 3.0373831776vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn {
    padding-right: 5.6074766355vw;
  }
}
.newsMoreBtn.fade {
  opacity: 0;
  visibility: hidden;
}
.newsMoreBtn.close span:after {
  top: 0;
  rotate: x -185deg;
}
.newsMoreBtn span {
  position: relative;
}
.newsMoreBtn span:after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 4px);
  mask: url("/assets/img/icn_arrow.svg") no-repeat center center/contain;
  -webkit-mask: url("/assets/img/icn_arrow.svg") no-repeat center center/contain;
  background-color: #0088d4;
  width: 12px;
  height: 8px;
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn span:after {
    width: 2.8037383178vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn span:after {
    height: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .newsMoreBtn span:after {
    left: calc(100% + 0.9345794393vw);
  }
}

.newsStoreDay {
  color: #666;
  font-size: 12px;
  letter-spacing: 0.15em;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .newsStoreDay {
    font-size: 2.3364485981vw;
  }
}

.newsStoreTitle {
  line-height: 1.4;
  letter-spacing: 0.11em;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .newsStoreTitle {
    font-size: 3.2710280374vw;
  }
}

.newsStoreLi a {
  display: flex;
  column-gap: 16px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .newsStoreLi a {
    column-gap: 1.8691588785vw;
  }
}

.newsStore {
  background-color: #f0f0f0;
  padding-top: 56px;
}
@media only screen and (max-width: 767px) {
  .newsStore {
    padding-top: 14.953271028vw;
  }
}
.newsStore iframe {
  width: 100%;
  border: none;
}

.newsStoreUl a {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .newsStoreUl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    padding-right: 24px;
    padding-left: 24px;
  }
  .newsStoreUl li a {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media print and (hover: hover), screen and (min-width: 768px) and (hover: hover) {
  .newsStoreUl li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
@media print, screen and (min-width: 768px) {
  .newsStoreUl li:nth-child(n+3) a {
    border-top: 1px solid #d9d9d9;
  }
}
@media only screen and (max-width: 767px) {
  .newsStoreUl li:not(:last-child) a {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 3.2710280374vw;
  }
  .newsStoreUl li:not(:first-child) a {
    padding-top: 3.2710280374vw;
  }
}

.topService {
  margin-top: 64px;
}

/*TOP bottomContents --------------------------------------*/
@media only screen and (max-width: 767px) {
  .topBottomContents .commonSectionBase {
    padding-right: 0;
    padding-left: 0;
  }
}

.topBottomContentsSlideWrap {
  position: relative;
}
.topBottomContentsSlideWrap .slick-dots {
  bottom: -30px;
}
.topBottomContentsSlideWrap .slick-dots li {
  width: 13px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap {
    padding-bottom: 16px;
  }
  .topBottomContentsSlideWrap .slick-dots li {
    width: 3.0373831776vw;
  }
}
.topBottomContentsSlideWrap .slick-dots li.slick-active button:before {
  color: var(--mainColor);
}
.topBottomContentsSlideWrap .slick-dots li button {
  padding: unset;
  width: auto;
  height: auto;
}
.topBottomContentsSlideWrap .slick-dots li button:before {
  font-size: 10px;
  line-height: normal;
  width: auto;
  height: auto;
  opacity: 1;
  color: #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap .slick-dots li button:before {
    font-size: 2.3364485981vw;
  }
}
.topBottomContentsSlideWrap .slick-prev {
  left: -16px;
  background-image: url(/assets/img/icn_slick_arrow_prev.svg);
}
.topBottomContentsSlideWrap .slick-next {
  right: -16px;
  background-image: url(/assets/img/icn_slick_arrow_next.svg);
}
.topBottomContentsSlideWrap .slick-arrow {
  z-index: 120;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap .slick-arrow {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
.topBottomContentsSlideWrap .slick-arrow:before {
  content: "";
}
@media (hover: hover) {
  .topBottomContentsSlideWrap .slick-arrow:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.slick-arrow.slick-disabled {
  display: none !important;
}
.topBottomContentsSlideWrap:not(:first-child) {
  padding-top: 40px;
  margin-top: 24px;
  border-top: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap:not(:first-child) {
    padding-top: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap:not(:first-child) {
    margin-top: 5.6074766355vw;
  }
}
.topBottomContentsSlideWrap:not(:last-child) {
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap:not(:last-child) {
    margin-bottom: 8.953271028vw;
  }
}
.topBottomContentsSlideWrap .slick-dots li {
  width: 5px;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap .slick-dots li {
    width: 1.1682242991vw;
  }
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap .commonSlideCard {
    margin-right: 0;
  }
  .topBottomContentsSlideWrap .slick-list {
    margin-right: 16px;
  }
}
@media print, screen and (min-width: 768px) {
  .topBottomContentsSlideWrap .commonSlideCard {
    margin-right: 12px;
    margin-left: 12px;
  }
}
.topBottomContentsSlideWrap .commonSlideCardImgBox {
  box-shadow: unset;
}
.topBottomContentsSlideWrap .commonSlideCardText {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideWrap {
    overflow: scroll;
    display: flex;
    width: 100vw;
    margin: auto calc(50% - 50vw);
    column-gap: 3.738317757vw;
    padding-right: 5.6074766355vw;
    padding-left: 5.6074766355vw;
    padding-bottom: 16px;
  }
}

.topBottomContentsLogoLink {
  margin-top: 16px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsLogoLink {
    margin-top: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .topBottomContentsLogoLink {
    margin-bottom: 3.738317757vw;
  }
}
@media (hover: hover) {
  .topBottomContentsLogoLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.topBottomContentsLogoLink img {
  width: 253px;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsLogoLink img {
    width: 56.0747663551vw;
  }
}

.topBottomContentsSlideText {
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topBottomContentsSlideText {
    font-size: 3.2710280374vw;
  }
}

/*==================================================
 * Search 検索結果
 *================================================*/
input[type=text].pageSearchSearchBox {
  border-radius: 100px;
  padding: 14px 0 14px 61px;
  width: 380px;
}
@media only screen and (max-width: 767px) {
  input[type=text].pageSearchSearchBox {
    width: 88.785046729vw;
  }
}
input[type=text].pageSearchSearchBox::placeholder {
  line-height: 1;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  input[type=text].pageSearchSearchBox::placeholder {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  input[type=text].pageSearchSearchBox {
    padding: 3.2710280374vw 0 3.2710280374vw 14.2523364486vw;
  }
}

.pageSearchSearchButton {
  height: 100%;
  color: #fff;
  position: absolute;
  top: 0;
  left: 17px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .pageSearchSearchButton {
    left: 3.9719626168vw;
  }
}
@media only screen and (max-width: 767px) {
  .pageSearchSearchButton {
    font-size: 3.0373831776vw;
  }
}
.pageSearchSearchButton img {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .pageSearchSearchButton img {
    width: 5.6074766355vw;
    height: 5.6074766355vw;
  }
}

.searchResultTitle {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--mainColor);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .searchResultTitle {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .searchResultTitle {
    margin-bottom: 1.8691588785vw;
  }
}

.searchResultStoreText {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreText {
    font-size: 3.2710280374vw;
  }
}
.searchResultStoreText .bold {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreText .bold {
    font-size: 3.738317757vw;
  }
}

.searchResultStoreUlCard {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreUlCard {
    gap: 3.738317757vw;
  }
}

.searchResultStoreUlCardImgBox {
  width: 88px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreUlCardImgBox {
    width: 20.5607476636vw;
  }
}
.searchResultStoreUlCardImgBox img {
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreUlCardImgBox img {
    border-radius: 1.8691588785vw;
  }
}

.searchResultStoreUlCardTextBox {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.searchResultStoreMoreBtn {
  opacity: 1;
  transition: 0.3s;
}
.searchResultStoreMoreBtn.fade {
  opacity: 0;
  visibility: hidden;
}

.searchResultCommonUl > li {
  border-bottom: 1px solid #d9d9d9;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media print, screen and (min-width: 768px) {
  .searchResultCommonUl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

.searchResultStoreUl {
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreUl {
    margin-bottom: 5.6074766355vw;
  }
}
.searchResultStoreUl li:nth-child(n+7) {
  display: none;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreUl > li:first-child {
    padding-top: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .searchResultSiteUl li {
    border-bottom: 0;
  }
  .searchResultSiteUl li:nth-child(-n+2) {
    padding-top: 0;
  }
  .searchResultSiteUl li:nth-child(n+3) {
    border-top: 1px solid #d9d9d9;
  }
}
@media only screen and (max-width: 767px) {
  .searchResultSiteUl li:first-child {
    padding-top: 0;
  }
  .searchResultSiteUl li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.searchResultCommonText {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .searchResultCommonText {
    font-size: 3.2710280374vw;
  }
}

.searchResultStoreAddTelWrap {
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .searchResultStoreAddTelWrap {
    margin-bottom: 1.8691588785vw;
  }
}

.searchResultHitText {
  font-weight: bold;
  color: var(--mainColor);
}

.searchResultSiteUlCardTextBox .commonTitleJp--s {
  line-height: 1;
}

/*==================================================
 * News 新着情報
 *================================================*/
@media only screen and (max-width: 767px) {
  .pageNewsUl li:not(:last-child) a {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 3.738317757vw;
  }
}

/*==================================================
 * Detail 詳細ページ
 *================================================*/
@media only screen and (max-width: 767px) {
  .pageDetail .breadcrumbsNav {
    margin-bottom: 3.738317757vw;
  }
}

.eventTextBox {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px;
}
@media only screen and (max-width: 767px) {
  .eventTextBox {
    gap: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .eventTextBox {
    padding: 0.9345794393vw;
  }
}
.eventTextBox .title {
  font-size: 12px;
  font-weight: bold;
  color: var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .eventTextBox .title {
    font-size: 2.8037383178vw;
  }
}
.eventTextBox .day {
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .eventTextBox .day {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .eventTextBox {
    width: 100vw;
    margin: auto calc(50% - 50vw);
  }
}

@media only screen and (max-width: 767px) {
  .detailThumbBox {
    width: 100vw;
    margin: auto calc(50% - 50vw);
  }
}

.detailTitle {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 767px) {
  .detailTitle {
    font-size: 4.6728971963vw;
  }
}

.detailTitle {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .detailTitle {
    margin-top: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailTitle {
    margin-bottom: 5.6074766355vw;
  }
}

.detailSectionBase {
  padding: 42px;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .detailSectionBase {
    padding: 6.0747663551vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailSectionBase {
    padding-left: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailSectionBase {
    padding-right: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailSectionBase {
    margin-bottom: 5.6074766355vw;
  }
}

.detailTagDateWrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .detailTagDateWrap {
    gap: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailTagDateWrap {
    margin-bottom: 5.6074766355vw;
  }
}

.detailDate {
  font-weight: bold;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
@media only screen and (max-width: 767px) {
  .detailDate {
    font-size: 3.2710280374vw;
  }
}

.detailHeading {
  margin-bottom: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .detailHeading {
    margin-bottom: 5.6074766355vw;
  }
}

.detailHeading--2 {
  color: var(--mainColor);
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .detailHeading--2 {
    font-size: 5.6074766355vw;
  }
}

.detailHeading--3 {
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .detailHeading--3 {
    font-size: 4.2056074766vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailHeading--3 {
    padding-bottom: 1.8691588785vw;
  }
}

.detailHeading--4 {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .detailHeading--4 {
    font-size: 3.738317757vw;
  }
}

.detailImg {
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .detailImg {
    margin-bottom: 1.8691588785vw;
  }
}

.detailImgCaption {
  font-size: 14px;
  color: #666;
}
@media only screen and (max-width: 767px) {
  .detailImgCaption {
    font-size: 3.2710280374vw;
  }
}

.detailImgBox {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .detailImgBox {
    margin-bottom: 5.6074766355vw;
  }
}

.detailTextBox {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .detailTextBox {
    margin-bottom: 5.6074766355vw;
  }
}

.detailBtnWrap {
  margin-bottom: 48px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .detailBtnWrap {
    margin-bottom: 5.6074766355vw;
  }
}

.detailUlDisc {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .detailUlDisc {
    margin-bottom: 9.3457943925vw;
  }
}

.detailTable {
  margin-bottom: 40px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .detailTable {
    margin-bottom: 9.3457943925vw;
  }
}
.detailTable tr {
  border-bottom: 1px solid #d9d9d9;
}
.detailTable td {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .detailTable td {
    padding-top: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailTable td {
    padding-bottom: 1.8691588785vw;
  }
}
.detailTable th {
  font-size: 12px;
  padding-bottom: 8px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .detailTable th {
    font-size: 2.8037383178vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailTable th {
    padding-bottom: 1.8691588785vw;
  }
}
.detailTable.colTable th {
  border-bottom: 2px solid var(--mainColor);
}
.detailTable.rowTable {
  border-top: 2px solid var(--mainColor);
}
.detailTable.rowTable th {
  width: 152px;
}
@media only screen and (max-width: 767px) {
  .detailTable.rowTable th {
    width: 23.1308411215vw;
  }
}

.detailFillBase {
  margin-bottom: 40px;
  background-color: #e7f6ff;
  padding: 24px;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .detailFillBase {
    margin-bottom: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailFillBase {
    padding: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailFillBase {
    border-radius: 1.8691588785vw;
  }
}
.detailFillBase .col4Pc .detailFillCardTextBox p {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .detailFillBase .col4Pc .detailFillCardTextBox p {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .detailFillBase.detailFillBaseOver {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .detailFillBase .colBox {
    --rowGap: 5.6074766355vw;
  }
}

@media only screen and (max-width: 767px) {
  .detailFillCard:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: 1px solid #d9d9d9;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .detailFillCard:not(:last-child) {
    padding-bottom: 5.6074766355vw;
  }
}

.detailFillCardTextBox {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .detailFillCardTextBox {
    margin-bottom: 5.6074766355vw;
  }
}
.detailFillCardTextBox p {
  font-size: 16px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  .detailFillCardTextBox p {
    font-size: 3.2710280374vw;
  }
}

.detailFillCardImgBox {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .detailFillCardImgBox {
    margin-bottom: 5.6074766355vw;
  }
}

.detailAnnotationWrap:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .detailAnnotationWrap:not(:last-child) {
    margin-bottom: 5.6074766355vw;
  }
}

.cautionTitle {
  color: #dc4517;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .cautionTitle {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .cautionTitle {
    margin-bottom: 1.8691588785vw;
  }
}

.detailTextLink {
  padding-left: 40px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .detailTextLink {
    padding-left: 9.3457943925vw;
  }
}
.detailTextLink:before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  left: 0;
  background-image: url(/assets/img/icn_pdf.svg);
}
@media only screen and (max-width: 767px) {
  .detailTextLink:before {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
.detailTextLink span {
  position: relative;
}
.detailTextLink span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
@media (hover: hover) {
  .detailTextLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}

.detailYoutubeWrap {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .detailYoutubeWrap {
    margin-bottom: 9.3457943925vw;
  }
}
.detailYoutubeWrap iframe {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 767px) {
  .detailYoutubeWrap iframe {
    border-radius: 1.8691588785vw;
  }
}

.detailMovieWrap {
  position: relative;
  margin-bottom: 40px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .detailMovieWrap {
    margin-bottom: 9.3457943925vw;
  }
}
.detailMovieWrap:before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 64px;
  height: 64px;
  background-image: url(/assets/img/icn_play.svg);
}
@media only screen and (max-width: 767px) {
  .detailMovieWrap:before {
    width: 14.953271028vw;
    height: 14.953271028vw;
  }
}
.detailMovieWrap.playing:before {
  display: none;
}
.detailMovieWrap video {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 767px) {
  .detailMovieWrap video {
    border-radius: 1.8691588785vw;
  }
}

/*==================================================
 * Modal モーダル
 *================================================*/
.popUpModalSection {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1100;
  transition: 0.3s;
}
.popUpModalSection::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.popUpModalSection.hidden {
  opacity: 0;
  visibility: hidden;
}

.popUpModal {
  z-index: 1000;
}
@media print, screen and (min-width: 768px) {
  .popUpModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 428px;
  }
}
@media only screen and (max-width: 767px) {
  .popUpModal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 52.8037383178vw;
    width: 100%;
    animation: slideInUp 0.7s ease-in; /* アニメーションを適用 */
  }
}

@keyframes slideInUp {
  from {
    top: 70%;
    opacity: 0;
  }
  to {
    top: 52.8037383178vw;
    opacity: 1;
  }
}
.popUpModalInner {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .popUpModalInner {
    border-radius: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .popUpModalInner {
    padding: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .popUpModalInner {
    position: relative;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .popUpModalInner:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    left: 0;
    top: calc(100% - 0.4672897196vw);
    z-index: -1;
  }
}

.popUpModalImgBox {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .popUpModalImgBox {
    margin-bottom: 5.6074766355vw;
  }
}

.popUpModalTitle {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-all;
}
@media only screen and (max-width: 767px) {
  .popUpModalTitle {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .popUpModalTitle {
    margin-bottom: 3.738317757vw;
  }
}

.popUpModalText {
  font-size: 14px;
  color: #666;
  word-break: break-all;
}
@media only screen and (max-width: 767px) {
  .popUpModalText {
    font-size: 3.2710280374vw;
  }
}

.modalCloseBtn {
  display: block;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%; /* 丸みの度合い */
  background: #fff; /* ボタンの背景色 */
  border: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .modalCloseBtn {
    width: 11.214953271vw;
    height: 11.214953271vw;
  }
}
.modalCloseBtn::before, .modalCloseBtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 23px;
  border-radius: 10px;
  background: #666; /* バツ印の色 */
}
@media only screen and (max-width: 767px) {
  .modalCloseBtn::before, .modalCloseBtn::after {
    width: 0.4672897196vw;
  }
}
@media only screen and (max-width: 767px) {
  .modalCloseBtn::before, .modalCloseBtn::after {
    height: 5.3738317757vw;
  }
}
.modalCloseBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modalCloseBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modalCloseBtnWrap {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 0;
}
@media only screen and (max-width: 767px) {
  .modalCloseBtnWrap {
    right: 3.738317757vw;
  }
}

/*==================================================
 * COMPANY PROFILE 会社概要
 *================================================*/
.officerDl {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.officerDl:first-of-type dt,
.officerDl:first-of-type dd {
  padding-top: 0;
}
.officerDl:last-of-type dt:last-of-type,
.officerDl:last-of-type dd:last-of-type {
  padding-bottom: 0;
}
.officerDl:not(:first-of-type) dt:first-of-type,
.officerDl:not(:first-of-type) dd:first-of-type {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .officerDl:not(:first-of-type) dt:first-of-type,
  .officerDl:not(:first-of-type) dd:first-of-type {
    padding-top: 3.738317757vw;
  }
}
.officerDl:not(:first-of-type) dt:not(:first-of-type),
.officerDl:not(:first-of-type) dd:not(:first-of-type) {
  padding-top: 8px;
}
@media only screen and (max-width: 767px) {
  .officerDl:not(:first-of-type) dt:not(:first-of-type),
  .officerDl:not(:first-of-type) dd:not(:first-of-type) {
    padding-top: 1.8691588785vw;
  }
}
.officerDl:not(:last-of-type) {
  border-bottom: 1px solid #d9d9d9;
}
.officerDl dt,
.officerDl dd {
  font-size: 15px;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .officerDl dt,
  .officerDl dd {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .officerDl dt,
  .officerDl dd {
    padding-bottom: 1.8691588785vw;
  }
}
.officerDl dt:last-of-type,
.officerDl dd:last-of-type {
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .officerDl dt:last-of-type,
  .officerDl dd:last-of-type {
    padding-bottom: 3.738317757vw;
  }
}
.officerDl dt {
  font-weight: bold;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .officerDl dt {
    font-size: 2.8037383178vw;
  }
}
.officerDl dd {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .officerDl dd {
    font-size: 3.2710280374vw;
  }
}
.officerDl dd span {
  font-size: 14px;
  color: #666;
}
@media only screen and (max-width: 767px) {
  .officerDl dd span {
    font-size: 3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .officerDl {
    grid-template-columns: 29.9065420561vw 1fr;
  }
}

/*==================================================
 * HISTORY 沿革
 *================================================*/
@media print, screen and (min-width: 768px) {
  .historySectionBase .commonDl {
    grid-template-columns: 130px 1fr;
  }
}

/*==================================================
 * ACCESS アクセス
 *================================================*/
.mapBox iframe {
  height: 100%;
  width: 100%;
  display: block;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .mapBox iframe {
    border-top-left-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .mapBox iframe {
    border-top-right-radius: 1.8691588785vw;
  }
}
@media print, screen and (min-width: 768px) {
  .mapBox {
    aspect-ratio: 4/3;
  }
}
@media only screen and (max-width: 767px) {
  .mapBox iframe {
    height: 66.8224299065vw;
  }
}

.mapCardTextBox {
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .mapCardTextBox {
    padding-top: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .mapCardTextBox {
    padding-bottom: 5.6074766355vw;
  }
}
.mapCardTextBox .commonDl {
  grid-template-columns: 140px 1fr;
}
@media only screen and (max-width: 767px) {
  .mapCardTextBox .commonDl {
    grid-template-columns: 23.3644859813vw 1fr;
  }
}

/*==================================================
 * ELECTORIC PUBLIC NOTICE 電子公告
 *================================================*/
.pdfLink {
  position: relative;
  padding-left: 40px;
  display: flex;
  align-items: center;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  .pdfLink {
    padding-left: 9.3457943925vw;
  }
}
@media only screen and (max-width: 767px) {
  .pdfLink {
    line-height: 7.476635514vw;
  }
}
.pdfLink:before {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  background-image: url(/assets/img/icn_pdf.svg);
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .pdfLink:before {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
@media (hover: hover) {
  .pdfLink:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5 !important;
    opacity: 0.5;
  }
}

/*==================================================
 * Cookie Cookie同意
 *================================================*/
.cookieConsentSection {
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #f0f0f0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
  display: none; /* 初期状態では非表示 */
}
@media only screen and (max-width: 767px) {
  .cookieConsentSection {
    padding-top: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .cookieConsentSection {
    padding-bottom: 3.738317757vw;
  }
}
.cookieConsentSection p {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .cookieConsentSection p {
    font-size: 3.2710280374vw;
  }
}

/*==================================================
 * inquireForm お問い合わせフォーム
 *================================================*/
.inquireFormWrap {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .inquireFormWrap {
    padding-top: 9.3457943925vw;
  }
}

.inquireFormLabelWrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.inquireFormLabelWrap label {
  font-size: 14px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .inquireFormLabelWrap label {
    font-size: 2.8037383178vw;
  }
}
@media only screen and (max-width: 767px) {
  .inquireFormLabelWrap {
    margin-bottom: 1.8691588785vw;
  }
}

.inquireFormItem {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .inquireFormItem {
    padding-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .inquireFormItem {
    margin-bottom: 3.738317757vw;
  }
}

.required {
  color: #fe2c55;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .required {
    font-size: 2.8037383178vw;
  }
}

.errorMessage {
  color: #fe2c55;
  font-size: 14px;
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  .errorMessage {
    font-size: 2.8037383178vw;
  }
}
@media only screen and (max-width: 767px) {
  .errorMessage {
    margin-top: 1.8691588785vw;
  }
}

.recaptchaBox img {
  width: 320px;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .recaptchaBox img {
    width: 74.7663551402vw;
  }
}

/*==================================================
 * お問い合わせ
 *================================================*/
.commonUlUnderLine--inquire li:not(:last-child) {
  padding-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .commonUlUnderLine--inquire li:not(:last-child) {
    padding-bottom: 5.6074766355vw;
  }
}
.commonUlUnderLine--inquire li:not(:first-child) {
  padding-top: 24px;
}
@media only screen and (max-width: 767px) {
  .commonUlUnderLine--inquire li:not(:first-child) {
    padding-top: 5.6074766355vw;
  }
}

.inquireAgreeLinkBtnWrap {
  visibility: visible;
  transition: 0.3s;
  opacity: 0.3;
}
.inquireAgreeLinkBtnWrap .commonBtn {
  pointer-events: none;
}
.inquireAgreeLinkBtnWrap.visible {
  opacity: 1;
  visibility: visible;
}
.inquireAgreeLinkBtnWrap.visible .commonBtn {
  pointer-events: initial;
}

.inquireAgreeUl > li:not(:last-child) {
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .inquireAgreeUl > li:not(:last-child) {
    margin-bottom: 7.476635514vw;
  }
}
.inquireAgreeUl > li .commonUlNum > li {
  margin-bottom: 0;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .inquireAgreeUl > li .commonUlNum > li {
    font-size: 3.2710280374vw;
  }
}

.inquireAgreeScrollBox {
  height: 320px;
  padding-right: 16px;
}
@media only screen and (max-width: 767px) {
  .inquireAgreeScrollBox {
    height: 74.7663551402vw;
  }
}
@media only screen and (max-width: 767px) {
  .inquireAgreeScrollBox {
    padding-right: 3.738317757vw;
  }
}

.inquireAgreeScrollBoxInner {
  padding-right: 20px;
  overflow-y: scroll;
  height: 272px;
}
@media only screen and (max-width: 767px) {
  .inquireAgreeScrollBoxInner {
    padding-right: 4.6728971963vw;
  }
}
@media only screen and (max-width: 767px) {
  .inquireAgreeScrollBoxInner {
    height: 63.5514018692vw;
  }
}

.inquireFormConfirmDl dt {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .inquireFormConfirmDl dt {
    font-size: 2.8037383178vw;
  }
}
@media only screen and (max-width: 767px) {
  .inquireFormConfirmDl dt {
    margin-bottom: 1.8691588785vw;
  }
}
.inquireFormConfirmDl dt:not(:first-child) {
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .inquireFormConfirmDl dt:not(:first-child) {
    padding-top: 3.738317757vw;
  }
}
.inquireFormConfirmDl dd {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .inquireFormConfirmDl dd {
    font-size: 3.738317757vw;
  }
}
.inquireFormConfirmDl dd:not(:last-of-type) {
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
@media only screen and (max-width: 767px) {
  .inquireFormConfirmDl dd:not(:last-of-type) {
    padding-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .inquireFormConfirmDl {
    display: flex;
    flex-direction: column;
  }
}

/*==================================================
 * 店舗物件紹介
 *================================================*/
.storeIntroductionTitle {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--mainColor);
}
@media only screen and (max-width: 767px) {
  .storeIntroductionTitle {
    font-size: 4.2056074766vw;
  }
}
@media only screen and (max-width: 767px) {
  .storeIntroductionTitle {
    padding-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .storeIntroductionTitle {
    margin-bottom: 1.8691588785vw;
  }
}

.storeIntroductionUl {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .storeIntroductionUl {
    margin-bottom: 9.3457943925vw;
  }
}
.storeIntroductionUl li:not(:last-child) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .storeIntroductionUl li:not(:last-child) {
    margin-bottom: 9.3457943925vw;
  }
}

/*==================================================
 * よくある質問
 *================================================*/
.faqSearchWrap {
  position: relative;
}

.faqSearchButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .faqSearchButton {
    left: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .faqSearchButton {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}

.faqSearchButtonIcon {
  padding: 6px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .faqSearchButtonIcon {
    padding: 1.4018691589vw;
  }
}

input[type=text].faqInput {
  padding-left: 48px;
}
@media only screen and (max-width: 767px) {
  input[type=text].faqInput {
    padding-left: 11.214953271vw;
  }
}

.faqWrap.nothing {
  margin-bottom: 0;
}
.faqWrap.nothing > * {
  margin: 0;
  padding: 0;
}

.faqItem {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .faqItem {
    border-radius: 0.9345794393vw;
  }
}
.faqItem:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .faqItem:not(:last-child) {
    margin-bottom: 3.738317757vw;
  }
}
.faqItem.hidden {
  display: none;
}

.faqTitle.hidden {
  display: none;
}

.faqQuestion {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .faqQuestion {
    padding: 2.8037383178vw;
  }
}
.faqQuestion span {
  font-weight: bold;
}
.faqQuestion::before, .faqQuestion::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #666;
  border-radius: 10px;
  transition: transform 0.3s ease;
  top: 50%;
  width: 16px;
  transform: translateY(-50%);
  height: 2px;
  right: 9px;
}
@media only screen and (max-width: 767px) {
  .faqQuestion::before, .faqQuestion::after {
    width: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .faqQuestion::before, .faqQuestion::after {
    right: 2.1028037383vw;
  }
}
.faqQuestion::before {
  transform: translateY(-50%) rotate(90deg);
}
.faqItem.open .faqQuestion::before {
  transform: translateY(-50%) rotate(180deg);
}

.faqAnswer {
  display: none;
  padding: 12px;
}
@media only screen and (max-width: 767px) {
  .faqAnswer {
    padding: 2.8037383178vw;
  }
}

/*==================================================
 * サイトマップ
 *================================================*/
.sitemapNavUl > li {
  border-bottom: 1px solid #d9d9d9;
}
.sitemapNavUl > li:first-child a {
  padding-top: 0;
}
.sitemapNavUl > li > a {
  padding-top: 16px;
  padding-bottom: 16px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUl > li > a {
    padding-top: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .sitemapNavUl > li > a {
    padding-bottom: 3.738317757vw;
  }
}
@media (hover: hover) {
  .sitemapNavUl > li > a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.sitemapNavUl > li > a p {
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUl > li > a p {
    font-size: 3.738317757vw;
  }
}
.sitemapNavUl > li > a img {
  width: 32px;
  height: 32px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUl > li > a img {
    width: 7.476635514vw;
    height: 7.476635514vw;
  }
}
.sitemapNavUl .commonSectionBaseInnerBg {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.sitemapNavUlTextWrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUlTextWrap {
    gap: 1.8691588785vw;
  }
}

.sitemapNavUl--child li:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUl--child li:not(:last-child) {
    margin-bottom: 3.738317757vw;
  }
}
.sitemapNavUl--child li a {
  font-weight: bold;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUl--child li a {
    font-size: 3.2710280374vw;
  }
}
@media (hover: hover) {
  .sitemapNavUl--child li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}

.sitemapNavUlSub li:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUlSub li:not(:last-child) {
    margin-bottom: 5.6074766355vw;
  }
}
.sitemapNavUlSub li a {
  font-weight: bold;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .sitemapNavUlSub li a {
    font-size: 3.738317757vw;
  }
}
@media (hover: hover) {
  .sitemapNavUlSub li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}

/*==================================================
 * 地域貢献活動レポート
 *================================================*/
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-buttons {
  row-gap: 16px;
}
@media only screen and (max-width: 767px) {
  .tab-buttons {
    row-gap: 3.738317757vw;
  }
}

.tab-link {
  cursor: pointer;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  background-color: #fff;
  padding: 4px 8px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .tab-link {
    border-radius: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  .tab-link {
    padding: 1.8691588785vw;
  }
}
.tab-link.active {
  background-color: var(--mainColor);
}
.tab-link.active span {
  color: #fff;
}
.tab-link span {
  color: var(--mainColor);
}
.tab-link .yearNum {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .tab-link .yearNum {
    font-size: 4.6728971963vw;
  }
}
.tab-link .nen {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .tab-link .nen {
    font-size: 3.2710280374vw;
  }
}

.csr-buttons {
  row-gap: 16px;
}
@media only screen and (max-width: 767px) {
  .csr-buttons {
    row-gap: 3.738317757vw;
  }
}

.csr-link {
  cursor: pointer;
  border: 1px solid var(--mainColor);
  border-radius: 4px;
  background-color: #fff;
  padding: 4px 8px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .csr-link {
    border-radius: 0.9345794393vw;
  }
}
@media only screen and (max-width: 767px) {
  .csr-link {
    padding: 1.8691588785vw;
  }
}
.csr-link.active {
  background-color: var(--mainColor);
}
.csr-link.active span {
  color: #fff;
}
.csr-link span {
  color: var(--mainColor);
}
.csr-link .yearNum {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .csr-link .yearNum {
    font-size: 4.6728971963vw;
  }
}
.csr-link .nen {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .csr-link .nen {
    font-size: 3.2710280374vw;
  }
}

.csrContent:not(:last-of-type) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .csrContent:not(:last-of-type) {
    margin-bottom: 5.6074766355vw;
  }
}

.csrTile {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .csrTile {
    font-size: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .csrTile {
    margin-bottom: 5.6074766355vw;
  }
}

.csrText p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .csrText p {
    font-size: 3.2710280374vw;
  }
}
.csrText p:not(:last-child) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .csrText p:not(:last-child) {
    margin-bottom: 3.738317757vw;
  }
}

.csrPicture {
  display: block;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .csrPicture {
    margin-bottom: 5.6074766355vw;
  }
}
.csrPicture img {
  width: 100%;
}

.csrBtnWrap {
  text-align: center;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .csrBtnWrap {
    margin-top: 5.6074766355vw;
  }
}

/*==================================================
 * 企業ごとTOPページ
 *================================================*/
.kokumin-drug .headerLogo {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  .kokumin-drug .headerLogo {
    width: 43.691588785vw;
  }
}
.welcia_dax .headerLogo {
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .welcia_dax .headerLogo {
    width: 33.6448598131vw;
  }
}
.marue-drug .headerLogo {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  .marue-drug .headerLogo {
    width: 48.8317757009vw;
  }
}
.yodoya-drug .headerLogo {
  width: 260px;
}
@media only screen and (max-width: 767px) {
  .yodoya-drug .headerLogo {
    width: 53.738317757vw;
  }
}
.welcia_huku .headerLogo {
  width: 220px;
}
@media only screen and (max-width: 767px) {
  .welcia_huku .headerLogo {
    width: 42.0560747664vw;
  }
}
.welcia_himawari .headerLogo {
  width: 240px;
}
@media only screen and (max-width: 767px) {
  .welcia_himawari .headerLogo {
    width: 44.8598130841vw;
  }
}
.happy-drug .headerLogo {
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .happy-drug .headerLogo {
    width: 52.3364485981vw;
  }
}

.kokumin-drug .newsMoreBtn span::after {
  background-color: #962042;
}
.welcia_dax .newsMoreBtn span::after {
  background-color: #d41468;
}
.marue-drug .newsMoreBtn span::after {
  background-color: #003894;
}
.yodoya-drug .newsMoreBtn span::after {
  background-color: #008d8c;
}
.welcia_huku .newsMoreBtn span::after {
  background-color: #e60013;
}
.welcia_himawari .newsMoreBtn span::after {
  background-color: #f08300;
}
.happy-drug .newsMoreBtn span::after {
  background-color: #e95283;
}
.welcia_welpark .newsMoreBtn span::after {
  background-color: #552F8E;
}

.brandFootBannerUlWrap {
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (max-width: 767px) {
  .brandFootBannerUlWrap {
    padding-left: 5.6074766355vw;
  }
}
@media only screen and (max-width: 767px) {
  .brandFootBannerUlWrap {
    padding-right: 5.6074766355vw;
  }
}

.brandFootBannerUl li {
  width: calc((100% - 48px) / 3);
}
@media (hover: hover) {
  .brandFootBannerUl li a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.brandFootBannerUl li a .dummyImg {
  background-color: #d9d9d9;
  width: 100%;
  height: 110px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .brandFootBannerUl li a .dummyImg {
    height: 25.7009345794vw;
  }
}
.brandFootBannerUl li a .dummyImg:after {
  content: "DUMMY";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .brandFootBannerUl li {
    width: 100%;
  }
  .brandFootBannerUl li:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .brandFootBannerUl li:not(:last-child) {
    margin-bottom: 5.6074766355vw;
  }
}
@media print, screen and (min-width: 768px) {
  .brandFootBannerUl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
}

/*==================================================
 * アプリ
 *================================================*/
.appMvImgWrap img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .appMvImgWrap img {
    border-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .appMvImgWrap {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

@media (hover: hover) {
  .appMvBtnWrap a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}
.appMvSection .appMvBtnWrap {
  margin-top: -20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .appMvSection .appMvBtnWrap {
    margin-top: -3.2710280374vw;
  }
}
@media only screen and (max-width: 767px) {
  .appMvSection .appMvBtnWrap {
    margin-bottom: 9.3457943925vw;
  }
}

.appMvBtnWrapTitle {
  margin: auto;
  display: inline-flex;
  justify-content: center;
  min-width: 182px;
  border-radius: 100px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  background-color: #fff;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
}
@media print, screen and (min-width: 768px) {
  .appMvBtnWrapTitle {
    font-size: 18px;
    padding: 8px;
    width: 744px;
  }
}
@media only screen and (max-width: 767px) {
  .appMvBtnWrapTitle {
    width: 100%;
    padding: 2vw;
    font-size: 4vw;
  }
}

.appDownloadWrap {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .appDownloadWrap {
    gap: 3.738317757vw;
  }
}

.appMainSection .commonSectionBase {
  padding-top: 0;
}

.appMainImgItem:first-child img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media only screen and (max-width: 767px) {
  .appMainImgItem:first-child img {
    border-top-left-radius: 1.8691588785vw;
  }
}
@media only screen and (max-width: 767px) {
  .appMainImgItem:first-child img {
    border-top-right-radius: 1.8691588785vw;
  }
}
.appMainImgItem img {
  width: 100%;
}

.supportTitle {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 16px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .supportTitle {
    margin-bottom: 3.738317757vw;
  }
}
@media only screen and (max-width: 767px) {
  .supportTitle {
    font-size: 3.2710280374vw;
  }
}
.supportTitle.supportTitle_waonPoint {
  color: #b80581;
}
.supportTitle.supportTitle_VPoint {
  color: #044092;
}

@media only screen and (max-width: 767px) {
  .appMainSection .appMainImgWrap {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

@media (hover: hover) {
  .appMainImgItem a:hover {
    transition: ease 0.3s;
    opacity: 0.7;
    opacity: 0.5;
  }
}

.loading__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 1200;
}
.loading__wrapper .anime__wrapper {
  background-color: rgb(255, 255, 255);
  width: 640px !important;
  height: auto;
  max-width: 100%;
  display: none;
}
.loading__wrapper .anime {
  width: 100% !important;
  height: auto !important;
  position: relative !important;
}

sup {
  font-size: 70%;
  vertical-align: super;
}
.lowerPageCommonCardFlex {
  display: flex;
  gap: 40px;
  margin: 24px 0;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardFlex {
    gap: 16px;
  }
}
.lowerPageCommonCardFlexItem {
  flex: 1;
}
.lowerPageCommonCardFlexItem p {
  font-size: 14px;
  margin-top: 1em;
}
@media only screen and (max-width: 767px) {
  .lowerPageCommonCardFlexItem p {
    font-size: 3.4vw;
  }
}
.lowerPageCommonCardFlexImg {
  border: 1px solid #ddd;
}
.aboutImportantTitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 767px) {
  .simplebar-content {
    display: flex;
    margin-left: -6px;
  }
}