@charset "UTF-8";
/************************************************************
*  「診療メニュー」のcss
*************************************************************/
/************************************************************
*  プラグイン名：slick
*  概要：スライダーを生成するライブラリ
*  公式：https://kenwheeler.github.io/slick/
*  ver：1.8.1
*************************************************************/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/************************************************************
*  Global
*  汎用的な関数や変数を格納する
*************************************************************/
/************************************************************
*  Global
*  Mixinを定義
*************************************************************/
/*
#overview
カラーパレット

本サイトで使用するカラーコード一覧です。
*/
/*
#colors

@$mainWhiteBlue #f5f6fc
@$mainLightBlue #d5dffe
@$mainBlue #859be3
@$mainDarkBlue #5268b1

@$accentRed #ff4b4b

@$txtBlack #000
@$txtBlack2 #333333

@$borderGray #cccccc
*/
/************************************************************
*  Global
*  Mixinを定義
*************************************************************/
/************************************************************
*  Global
*  関数を定義
*************************************************************/
/************************************************************
*  Global
*  Mixinを定義
*************************************************************/
/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.5;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dots {
  position: relative;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 100%;
  width: 100%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  background-color: #ccc;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  background-color: #4A6E9D;
  opacity: 0.5;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  background-color: #BBC6D7;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slick-dots li.slick-active button:before {
  background-color: #4A6E9D;
  opacity: 1;
}

/************************************************************
*  プラグイン名：Featherlight
*  概要：モーダルを生成するライブラリ
*  公式：http://noelboss.github.io/featherlight/
*  ver：1.7.14
*************************************************************/
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden;
}

.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647; /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0);
}

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, .8);
}

.featherlight:before {
  /* position: trick to center content vertically */
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal;
}

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block;
}

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none;
}

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff; /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, .3);
  color: #000;
  border: none;
  padding: 0;
}

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.featherlight .featherlight-image {
  /* styling */
  width: 100%;
}

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

.featherlight iframe {
  /* styling */
  border: none;
}

.featherlight * {
  /* See https://github.com/noelboss/featherlight/issues/42 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* handling phones and small screens */
/* hide non featherlight items when printing */
/************************************************************
*  ここからカスタマイズ
*************************************************************/
.featherlight .featherlight-content {
  overflow: visible;
  overflow: initial;
  overflow-y: scroll;
}

.featherlight .featherlight-close-icon {
  top: -35px;
  right: 0;
  line-height: 35px;
  width: 35px;
  font-size: 30px;
  color: #fff;
  background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
  background: initial;
}

/*
*	モーダルの調整
*/
div.featherlight .featherlight-content {
  padding: 40px 0 0;
  border-bottom: 0;
  overflow: hidden;
  background: none;
  max-width: 600px;
}

div.featherlight .featherlight-close-icon {
  top: 6px;
}

div.featherlight .featherlight-content:has(.p-opinfo__menuModal) img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 1/1;
}

div.featherlight .featherlight-content .p-opinfo__menuModal.--half img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  aspect-ratio: 2/1;
}

/************************************************************
*  「サンプルサイトについて」のcss
*************************************************************/
.p-opinfo__headBox {
  margin-top: clamp(23px, 6.5vw, 95px);
  margin-bottom: clamp(25px, 5.5vw, 55px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
  background: #ebf3fe;
  position: relative;
}

.p-opinfo__headBox__txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: bold;
  color: #4a6e9d;
  font-size: 28px;
  margin-left: 25px;
}

.p-opinfo__headBox__txt.--big {
  font-size: 56px;
}

.p-opinfo__headBox__img {
  width: clamp(180px, 40vw, 400px);
  text-align: right;
}

.p-opinfo__headBox__img img {
  width: 100%;
}

.p-opinfo__blockWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 67px 60px;
}

.p-opinfo__block {
  width: calc(50% - 30px);
}

.p-opinfo__block__conts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px 20px;
  color: #333;
}

.p-opinfo__imgWrap {
  width: min(260px, 25.390625vw);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}

.p-opinfo__imgWrap img {
  width: 100%;
  border-radius: 15px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-opinfo__imgWrap:hover img {
  opacity: 0.8;
}

.p-opinfo__list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-opinfo__list__item {
  margin-left: 5px;
  padding-left: 5%;
  font-size: 13px;
  position: relative;
}

.p-opinfo__list__item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #ccd8e5;
  top: 6.5px;
  right: 97%;
  border-radius: 100px;
}

.p-opinfo__list__item + .p-opinfo__list__item {
  margin-top: 12px;
}

.p-opinfo__slider {
  padding-block: clamp(42px, 7vw, 90px) clamp(50px, 13vw, 130px);
  background-color: #f2f6fb;
}

.p-opinfo__sliderWrap {
  padding-inline: min(100px, 7.8125vw);
}

.p-opinfo__sliderWrap .l-inner {
  width: min(1140px, 100%);
}

.p-opinfo__cates {
  width: min(800px, 100%);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f2f6fb;
  border-radius: 10px;
}

.p-opinfo__cate {
  color: #4a6e9d;
  font-size: clamp(12px, 1.5vw, 15px);
  min-height: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-opinfo__cate:hover {
  opacity: 0.7;
}

.p-opinfo__cate::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #4a6e9d;
  border-right: 1px solid #4a6e9d;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-opinfo__cate::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #ccd8e5;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-opinfo__cate:last-of-type::after {
  display: none;
}

.p-opinfo__rank {
  margin-top: clamp(30px, 5vw, 50px);
  padding-block: clamp(25px, 4.5vw, 45px) clamp(30px, 6vw, 60px);
  background-color: #f5f7fa;
}

.p-opinfo__rankList {
  margin-top: 15px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: clamp(15px, 2.7vw, 27px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.p-opinfo__rankList .slick-slide {
  margin: 0 20px;
}

.p-opinfo__rankList .slick-list {
  margin: 0 -20px;
}

.p-opinfo__rankList .slick-dots {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.p-opinfo__rankList .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 clamp(4px, 1vw, 10px);
}

.p-opinfo__rankList .slick-prev,
.p-opinfo__rankList .slick-next {
  position: static;
  -webkit-transform: unset;
  transform: unset;
  width: clamp(40px, 6vw, 60px);
  height: clamp(40px, 6vw, 60px);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1;
}

.p-opinfo__rankList .slick-prev::before,
.p-opinfo__rankList .slick-next::before {
  content: "";
}

.p-opinfo__rankList .slick-prev:hover,
.p-opinfo__rankList .slick-next:hover {
  opacity: 0.8;
}

.p-opinfo__rankList .slick-prev {
  background: url(../images/common/icon_arrow_slider_left.webp) no-repeat center center/cover !important;
  left: clamp(-70px, -6vw, -60px);
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.p-opinfo__rankList .slick-next {
  background: url(../images/common/icon_arrow_slider_right.webp) no-repeat center center/cover !important;
  right: clamp(-70px, -6vw, -60px);
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.p-opinfo__rankItemWrap {
  position: relative;
  padding-top: 20px;
}

.p-opinfo__rankItem {
  border: 1px solid #88a2be;
  border-radius: 9px 10px;
}

.p-opinfo__rankTitle {
  font-size: clamp(18px, 2vw, 20px);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 700;
  color: #fff;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  border-radius: 9px 9px 0 0;
  background-color: #4a6e9d;
}

.p-opinfo__rankImg img {
  width: 100%;
}

.p-opinfo__rankNum {
  position: absolute;
  top: 0;
  left: 0;
}

.p-opinfo__rankPrice {
  color: #4a6e9d;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: 24px;
  text-align: center;
  background-color: #ebf3fe;
}

.p-opinfo__rankPrice span {
  font-size: 18px;
}

.p-opinfo__rankDetails {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 10px;
}

.p-opinfo__rankDetail {
  color: #4a6e9d;
  font-weight: 700;
  font-size: 13px;
  padding: 5px 10px;
  text-align: center;
  background-color: #f2f6fb;
  border-radius: 20px;
}

.p-opinfo__rankDetail + .p-opinfo__rankDetail {
  margin-top: 5px;
}

.p-opinfo__menu {
  padding-block: clamp(30px, 9.5vw, 95px) clamp(60px, 10vw, 100px);
}

.p-opinfo__menuList {
  margin-top: clamp(40px, 5.5vw, 55px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px clamp(20px, 3vw, 40px);
}

.p-opinfo__menuList .p-opinfo__menuFlex {
  grid-template-columns: repeat(1, 1fr);
}

.p-opinfo__menuCont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-opinfo__menuInner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-block: clamp(10px, 1.7vw, 17px) clamp(10px, 2vw, 18px);
  padding-inline: clamp(10px, 2vw, 17px);
  border: 1px solid #ccd8e5;
  border-top: none;
}

.p-opinfo__menuTitle {
  color: #fff;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  padding-left: clamp(90px, 10vw, 100px);
  padding-right: 10px;
  background: #4a6e9d;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  line-height: 1.3;
  position: relative;
}

.p-opinfo__menuTitle-img {
  width: clamp(60px, 7vw, 70px);
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .16);
}

.p-opinfo__menuFlex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.p-opinfo__menuFlex {
  font-size: 13px;
}

.p-opinfo__menuDesc {
  line-height: 2;
}

.p-opinfo__menuPrice-title {
  color: #fff;
  font-size: 16px;
  background: #88a2be;
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-opinfo__menuPrice-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-opinfo__menuPrice-text {
  font-size: 15px;
  padding: 5px 8px;
  background: #e3ecf6;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.p-opinfo__menuPrice-num {
  font-size: clamp(30px, 3.6vw, 36px);
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  padding: 5px 8px;
  background: #f2f6fb;
  color: #4a6e9d;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.p-opinfo__menuPrice-num.--height90 {
  height: 90px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-opinfo__menuPrice-num span {
  font-size: clamp(20px, 2.6vw, 26px);
}

.p-opinfo__menuPrice-caption {
  font-size: clamp(8.5px, 1.2vw, 12px);
  text-align: right;
  color: #88a2be;
  display: block;
  margin-top: 5px;
}

.p-opinfo__menuBtns {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.p-opinfo__menuBtns .c-btn {
  width: min(235px, 100%);
  min-height: 45px;
  font-size: 15px;
}

.p-opinfo__menuPics {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px clamp(15px, 2vw, 20px);
}

.p-opinfo__menuPics.--txt {
  margin-top: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.p-opinfo__menuPic {
  display: block;
  position: relative;
  max-width: 48%;
}

.p-opinfo__menuPic:not(.--illustration):hover {
  opacity: 0.8;
}

.p-opinfo__menuPic:not(.--illustration):before {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #000;
  opacity: 0.5;
}

.p-opinfo__menuPic:not(.--illustration):after {
  content: "";
  background: url(../images/common/icon_search.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  width: 25px;
  height: 25px;
  display: block;
}

.p-opinfo__menuPic:not(.--illustration) img {
  width: 768px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.p-opinfo__menuPic.--half img {
  width: auto;
  width: initial;
  height: auto;
  height: initial;
  aspect-ratio: initial;
  aspect-ratio: 2/1;
}

.p-opinfo__menuPic-wrap .p-opinfo__menuPic {
  max-width: unset;
}

.p-opinfo__menuModal {
  display: none;
}

.p-opinfo__menuDetail {
  color: #707070;
  font-size: 12px;
  margin-top: 20px;
  padding: 15px;
  background: #f5f7fa;
  border-radius: 5px;
}

.p-opinfo__menuDetail--bgWhite {
  background-color: #fff;
}

.p-opinfo__menuDetail-cont + .p-opinfo__menuDetail-cont {
  margin-top: 5px;
}

.p-opinfo__toPrice {
  padding-block: clamp(70px, 10vw, 100px);
}

.p-opinfo__toPrice-box {
  padding-block: clamp(30px, 4vw, 40px) clamp(40px, 4vw, 45px);
  padding-inline: clamp(15px, 2vw, 20px);
  border: 1px solid #4a6e9d;
  background: #f5f7fa;
}

.p-opinfo__toPrice-box .c-btn {
  width: min(320px, 100%);
  min-height: clamp(55px, 6vw, 60px);
  margin-inline: auto;
  font-size: 15px;
}

.p-opinfo__toPrice-txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.p-opinfo .u-list_dot--check li + li {
  margin-top: 10px;
}

.p-opinfo__casePhotos {
  background-color: #f5f7fa;
  padding-block: clamp(30px, 8.6vw, 86px) clamp(30px, 10.5vw, 105px);
}

.p-opinfo__smalltxt {
  font-size: 10px;
  line-height: 15px;
  text-align: left;
  color: #707070;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
  }
}
@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 20px 10px 10px 10px;
  z-index: 200;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #fff;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
  animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
  box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/**
 * タブ切り替え専用スタイル
 */
.js--tabWrap .js--tab-trigger {
  cursor: pointer;
}

.js--tabWrap .js--panel-trigger[hidden] {
  display: none;
}

.js--tab-0 .js--tab-btn,
.js--tab-1 .js--tab-btn,
.js--tab-2 .js--tab-btn,
.js--tab-3 .js--tab-btn,
.js--tab-4 .js--tab-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 4px;
  background: #eee;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  border: 1px solid #ccc;
  border-bottom: none;
  font-weight: bold;
}

.js--tab-0 .js--tab-btn.is-active,
.js--tab-1 .js--tab-btn.is-active,
.js--tab-2 .js--tab-btn.is-active,
.js--tab-3 .js--tab-btn.is-active,
.js--tab-4 .js--tab-btn.is-active {
  background: #fff;
  color: #333;
  border-bottom: 1px solid #fff;
}

.js--tab-0 .js--tab-cont,
.js--tab-1 .js--tab-cont,
.js--tab-2 .js--tab-cont,
.js--tab-3 .js--tab-cont,
.js--tab-4 .js--tab-cont {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  background: #fff;
}

.js--tab-0 .js--tab-cont.is-active,
.js--tab-1 .js--tab-cont.is-active,
.js--tab-2 .js--tab-cont.is-active,
.js--tab-3 .js--tab-cont.is-active,
.js--tab-4 .js--tab-cont.is-active {
  display: block;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-opinfo__eyes__table .eyes table.cmn-simple-table {
  margin: 0 auto;
}

.p-opinfo__eyes__table .eyes table.cmn-simple-table tbody th {
  background-color: #eef1f4;
  color: #002d50;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  padding-left: 18px;
}

.p-opinfo__eyes__table .eyes table.cmn-simple-table td {
  padding: 10px 20px 10px;
  line-height: 4em;
}

.p-opinfo__eyes__table .eyes td,
.p-opinfo__eyes__table .eyes th {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table {
  table-layout: auto;
  width: 100%;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table td,
.p-opinfo__eyes__table .cmn-simple-table.eye-double-table th {
  line-height: 1.4;
  font-size: 16px;
  padding: 13px 0;
}

.p-opinfo__eyes__table .eyes .cmn-simple-table.eye-double-table td {
  line-height: 1.4;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table th {
  width: 50px;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table tbody td,
.p-opinfo__eyes__table .cmn-simple-table.eye-double-table tbody th {
  padding-left: 20px;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table th.tcb-eye {
  background-color: #7495a7;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table th.natural {
  background-color: #74a796;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table th.eternity {
  background-color: #a2a774;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table th.premium {
  background-color: #a78c74;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table td.tcb-eye {
  background-color: #f3fbff;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table td.natural {
  background-color: #f3fff7;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table td.eternity {
  background-color: #fffff3;
}

.p-opinfo__eyes__table .cmn-simple-table.eye-double-table td.premium {
  background-color: #fff9f3;
}

.p-opinfo__eyes__table .js--scroll-hint {
  width: 100%;
}

.p-opinfo__eyes__table .eyes {
  position: relative;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th {
  text-align: left;
  color: #002d50;
  font-size: min(13px, 1.1818181818vw);
  padding-left: 20px;
  background: #eef1f4;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.aoharu,
.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.eternity,
.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.ex,
.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.natural,
.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.premium,
.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.tcb-eye {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: min(12px, 1.0909090909vw);
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.tcb-eye {
  background-color: #7495a7;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.aoharu {
  background-color: #5c7cb5;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.natural {
  background-color: #74a796;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.eternity {
  background-color: #a2a774;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.premium {
  background-color: #a78c74;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.ex {
  background-color: #eeae6f;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th {
  width: 80px;
  padding: 10px 0 10px 20px;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table td {
  padding: 10px 0 10px 20px;
  vertical-align: inherit;
  font-size: min(13px, 1.1818181818vw);
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table td.eye-double-table__rate-outer {
  padding-left: 0;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table td.aoharu {
  background-color: #e8f0ff;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table td.ex {
  background-color: #fff6ec;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table tr:nth-of-type(1) th {
  background-color: #537691;
}

.p-opinfo__eyes__table .eye-double-table__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-opinfo__eyes__table .eye-double-table__rate-num {
  color: #2a2b2c;
  font-size: min(16px, 1.4545454545vw);
  width: 100%;
  max-width: 25px;
  display: block;
  text-align: center;
}

.p-opinfo__eyes__table .eye-double-table__rate-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-right: 5px;
}

.p-opinfo__eyes__table .eye-double-table__rate-star img {
  width: 20%;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: -webkit-scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: -webkit-scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: -webkit-scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: -webkit-scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes move {
  0% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  60% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  100% {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
    right: 0;
  }
}
@keyframes move {
  0% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  60% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  100% {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
    right: 0;
  }
}
@-webkit-keyframes blog_on {
  0% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  80% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  100% {
    opacity: 1;
    visibility: visible;
    bottom: inherit;
  }
}
@keyframes blog_on {
  0% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  80% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  100% {
    opacity: 1;
    visibility: visible;
    bottom: inherit;
  }
}
.p-opinfo__eyes__table img {
  height: auto;
}

.p-opinfo__eyes__table [id^=menu-cat0] {
  padding-top: 100px;
  margin-top: -100px;
}

.p-opinfo__eyes__table td,
.p-opinfo__eyes__table th {
  line-height: 2.2em;
  font-family: NotoSansCJKjp-Light, sans-serif;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 15px;
  color: #0e0e0e;
  letter-spacing: 0.05em;
  outline: 0;
}

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

.p-opinfo__eyes__table table td {
  font-family: NotoSansCJKjp-Light, sans-serif;
}

.p-opinfo__eyes__table table th {
  font-family: NotoSansCJKjp-Regular, sans-serif;
}

@-webkit-keyframes infinity-loop {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes infinity-loop {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.p-opinfo__eyes__table table th {
  position: relative;
  background: #5d5d5d;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 10px 15px;
}

.p-opinfo__eyes__table table th span {
  display: block;
  padding: 13px 0 12px;
}

.p-opinfo__eyes__table table td {
  padding: 20px 15px;
  position: relative;
  letter-spacing: 0;
}

.p-opinfo__eyes__table table tr:nth-child(even) {
  background: #f7f7f7;
}

.p-opinfo__eyes__table table.cmn-simple-table {
  table-layout: fixed;
  border-collapse: collapse;
}

.p-opinfo__eyes__table table.cmn-simple-table tr:nth-child(even) {
  background-color: transparent;
}

.p-opinfo__eyes__table table.cmn-simple-table th {
  line-height: 1.7;
  padding: 16px 10px;
  text-align: center;
  background-color: #f7f7f7;
  color: #333;
}

.p-opinfo__eyes__table table.cmn-simple-table th span {
  padding: 0;
}

.p-opinfo__eyes__table table.cmn-simple-table td {
  line-height: 1.7;
  padding: 17px 30px;
  vertical-align: baseline;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: -webkit-scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: -webkit-scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: -webkit-scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: -webkit-scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes move {
  0% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  60% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  100% {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
    right: 0;
  }
}
@keyframes move {
  0% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  60% {
    opacity: 0;
    margin-right: 0;
    visibility: hidden;
    right: -15px;
  }
  100% {
    opacity: 1;
    margin-right: 0;
    visibility: visible;
    right: 0;
  }
}
@-webkit-keyframes blog_on {
  0% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  80% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  100% {
    opacity: 1;
    visibility: visible;
    bottom: inherit;
  }
}
@keyframes blog_on {
  0% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  80% {
    opacity: 0;
    visibility: hidden;
    bottom: inherit;
  }
  100% {
    opacity: 1;
    visibility: visible;
    bottom: inherit;
  }
}
.p-opinfo__eyes__table img {
  height: auto;
}

.p-opinfo__eyes__table [id^=menu-cat0] {
  padding-top: 100px;
  margin-top: -100px;
}

.p-opinfo__eyes__table td,
.p-opinfo__eyes__table th {
  line-height: 2.2em;
  font-family: NotoSansCJKjp-Light, sans-serif;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 15px;
  color: #0e0e0e;
  letter-spacing: 0.05em;
  outline: 0;
}

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

.p-opinfo__eyes__table table td {
  font-family: NotoSansCJKjp-Light, sans-serif;
}

.p-opinfo__eyes__table table th {
  font-family: NotoSansCJKjp-Regular, sans-serif;
}

@keyframes infinity-loop {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.p-opinfo__eyes__table table th {
  position: relative;
  background: #5d5d5d;
  color: #fff;
  font-size: 14px;
  text-align: left;
  padding: 10px 15px;
}

.p-opinfo__eyes__table table th span {
  display: block;
  padding: 13px 0 12px;
}

.p-opinfo__eyes__table table td {
  padding: 20px 15px;
  position: relative;
  letter-spacing: 0;
}

.p-opinfo__eyes__table table tr:nth-child(even) {
  background: #f7f7f7;
}

.p-opinfo__eyes__table table.cmn-simple-table {
  table-layout: fixed;
  border-collapse: collapse;
}

.p-opinfo__eyes__table table.cmn-simple-table tr:nth-child(even) {
  background-color: transparent;
}

.p-opinfo__eyes__table table.cmn-simple-table th {
  line-height: 1.7;
  padding: 16px 10px;
  text-align: center;
  background-color: #f7f7f7;
  color: #333;
}

.p-opinfo__eyes__table table.cmn-simple-table th span {
  padding: 0;
}

.p-opinfo__eyes__table table.cmn-simple-table td {
  line-height: 1.7;
  padding: 17px 30px;
  vertical-align: baseline;
}

.p-opinfo__eyes__table .cmn-simple-table__icon {
  font-size: 60px;
  vertical-align: middle !important;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

.p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th {
  vertical-align: middle;
}

.p-opinfo__eyes__table table {
  border-collapse: collapse;
  width: 100%;
}

.p-opinfo__eyes__table th,
.p-opinfo__eyes__table td {
  border: 1px solid #537691;
}

@media screen and (max-width: 1024px) {
  div.featherlight .featherlight-content {
    width: 90%;
  }
  .p-opinfo__blockWrap {
    gap: 42px;
  }
  .p-opinfo__block {
    width: calc(50% - 15px);
  }
  .p-opinfo__rankList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent;
  }
}

@media screen and (max-width: 767px) {
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th {
    font-size: 13px;
  }
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.aoharu,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.eternity,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.ex,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.natural,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.premium,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.tcb-eye {
    font-size: 12px;
  }
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table td {
    font-size: 13px;
  }
  .p-opinfo__eyes__table .eye-double-table__rate-num {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .featherlight .featherlight-close-icon {
    top: -23px;
    line-height: 20px;
    width: 20px;
    font-size: 20px;
  }
  div.featherlight .featherlight-content {
    padding: 30px 0 0;
  }
  .p-opinfo__headBox__txt {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    font-size: 18px;
    margin-left: 10px;
  }
  .p-opinfo__headBox__txt.--big {
    font-size: 28px;
  }
  .p-opinfo__block {
    width: 100%;
  }
  .p-opinfo__block__conts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-opinfo__imgWrap {
    width: 100%;
  }
  .p-opinfo__sliderWrap {
    padding-inline: 0;
  }
  .p-opinfo__cates {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .p-opinfo__cate {
    width: 33.3333333333%;
    min-height: 52px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .p-opinfo__cate:nth-child(3n)::after {
    display: none;
  }
  .p-opinfo__cate::before {
    bottom: 15px;
  }
  .p-opinfo__cate::after {
    height: 33px;
  }
  .p-opinfo__cate:last-of-type::after {
    display: block;
  }
  .p-opinfo__menuList {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-opinfo__menuTitle {
    min-height: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .p-opinfo__menuFlex {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-opinfo__menuPrice-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-opinfo__menuBtns {
    margin-bottom: 10px;
  }
  .p-opinfo__menuPics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .p-opinfo__menuPics.--illustration {
    display: block;
  }
  .p-opinfo__menuPic {
    max-width: 100%;
  }
  .p-opinfo__menuDetail {
    min-height: auto;
  }
  .p-opinfo .u-list_dot--check li + li {
    margin-top: 5px;
  }
  .p-opinfo__eyes__table .eyes table.cmn-simple-table td {
    padding: 15px 7px;
    line-height: 1.6;
  }
  .p-opinfo__eyes__table .eyes td,
  .p-opinfo__eyes__table .eyes th {
    line-height: 1.8;
    font-size: 15px;
  }
  .p-opinfo__eyes__table .cmn-simple-table.eye-double-table {
    table-layout: fixed;
    width: 100%;
  }
  .p-opinfo__eyes__table .cmn-simple-table.eye-double-table th {
    width: 130px !important;
  }
  .p-opinfo__eyes__table .cmn-simple-table.eye-double-table th:not(:first-child) {
    width: 200px !important;
  }
  .p-opinfo__eyes__table .js--scroll-hint {
    overflow-x: scroll !important;
    width: 100%;
  }
  .p-opinfo__eyes__table .eyes {
    padding-top: 0;
  }
  .p-opinfo__eyes__table .cmn-simple-table.eye-double-table-v2 th {
    width: 105px !important;
  }
  .p-opinfo__eyes__table .cmn-simple-table.eye-double-table-v2 th:not(:first-child) {
    width: 160px !important;
  }
  .p-opinfo__eyes__table .eye-double-table__rate {
    padding: 0 20px 0 5px;
  }
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.aoharu,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.eternity,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.ex,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.natural,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.premium,
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table th.tcb-eye {
    padding: 7px 0;
  }
  .p-opinfo__eyes__table .eye-double-table-v2.cmn-simple-table.eye-double-table td {
    padding: 7px 0 7px 20px;
  }
  .p-opinfo__eyes__table td,
  .p-opinfo__eyes__table th {
    font-size: 14px;
  }
  .p-opinfo__eyes__table table.cmn-simple-table td {
    padding: 17px 10px;
    letter-spacing: -0.05em;
  }
  .p-opinfo__eyes__table td,
  .p-opinfo__eyes__table th {
    font-size: 14px;
  }
  .p-opinfo__eyes__table table.cmn-simple-table td {
    padding: 17px 10px;
    letter-spacing: -0.05em;
  }
  .p-opinfo__eyes__table .cmn-simple-table__icon {
    font-size: 24px;
  }
}

@media screen and (max-width: 375px) {
  .p-opinfo__rankList {
    display: inline;
    display: initial;
  }
}

@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none;
  }
}
/*# sourceMappingURL=maps/opinfo.min.css.map */
