body {
	background-color: #fff;
	color: #0D2936;
	font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.l-about { /* ピクパ対応5px加算 */
	margin-top: 5rem;
}

/* あしらい */

.about__body {
	margin-top: 1.625rem;
}

/* イメージ写真群 */

.about__images {
	aspect-ratio: 345/212; /* 幅345、高さ212。gridでだとうまく効かず削除 */ /* gridへ変更 */
	display: grid; /* 横方向に何個並べるか。(repeat(繰返し回数,繰返す値） */ /* （繰返し2回、18.55%の幅で）と、（繰返し数3回、残りで）？？？*/ /* 最初の縦分轄 全体の幅345、ズレ64/345=18.5507246% */ /* 次の縦分割も、ズレ200なので、上記と同じ＝繰返し、となる*/ /* repeat(3, 1fr)に意味はあるのか？？ */
	grid-template-columns: repeat(2, 18.55%) repeat(3, 1fr); /* 縦方向の分割 */ /* 最初の横分割 全体の高さ２１２、ズレ26/212=12.2641509% */ /* 最後の横分割 18/212=8.49056603% */ /* 間の分割横は、3つに区切るって意味ある？？ */
	grid-template-rows: 12.26% repeat(3, 1fr) 8.49%;
	height: 100%; /* gridへ変更で削除 */
	width: 100%;
}

/* これがないと、比率管理できない！！！ */

.about__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* 左 */

.about__image:first-child { /* gridに変更 */
	grid-area: 1/1/5/3; /* 128/345=37.101449275%→gridに伴ってこれも不要 */ /* 高さは、p-card__img--aboutでpadding-top指定 */ /* grid変更で削除 */
	z-index: 1;
}

/* 右 */

.about__image:last-child { /* 281/345=81.449275362%→gridに伴ってこれも不要 */ /* gridで削除 */ /* gridで追加 */
	grid-area: 2/2/6/6;
	z-index: 0;
}

.about__contents {
	width: 100%;
}

.about__lead {
	color: #408F95;
	font-family: "Gotu", sans-serif;
	font-size: 2.5rem;
	line-height: 1;
	margin-top: 2.5rem;
}

.about__text { /* ピクパ優先16→18 */
	margin-top: 1.125rem;
}

.about__button {
	margin-top: 3rem;
	text-align: center;
}

.archive {
	margin-top: 1.5rem;
}

.archive__years {
	color: #408F95;
	font-size: 1.5rem;
}

.archive__year {
	margin-top: 0.25rem;
}

.archive__link { /* アイコン用 */
	color: #408F95;
	display: block;
	transition: all 0.5s 0s ease;
}

.archive__link:hover {
	opacity: 0.4;
}

/* 開閉するトグルマーク */

.archive__toggle {
	padding-left: 1.875rem;
	position: relative;
}

.archive__toggle::before {
	background: url(../images/common/icon-triangle-right.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.5rem;
	left: 0rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
}

/* 開閉するトグルマークに「is-open」付与時 */

.archive__link.is-open .archive__toggle::before {
	background: url(../images/common/icon-triangle-down.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* 月部分、通常は非表示 */

.archive__months {
	display: none;
}

/* 月部分を開く */

/* 「archive-link」に「is-open」、
「archive__months」に「is-open」 */

.archive__months.is-open {
	display: block;
}

.archive__month {
	margin-left: 1.5rem;
	margin-top: 0.25rem;
}

.blog-card {
	background-color: #fff;
	box-shadow: 0px 0px 15px -5px #777777;
	display: inline-block;
	padding: 1rem 1rem 1.3125rem;
}

.blog-card:hover {
	opacity: 0.7;
}

.blog-card__img {
	padding-top: 66.777408%;
	position: relative;
}

.blog-card__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.blog-card__body {
	margin-top: 1.25rem;
}

.blog-card__body time {
	color: #0D2936;
	font-size: 0.75rem;
	line-height: 1.5;
}

.blog-card__title {
	border-bottom: solid 1px #408F95;
	color: #0D2936;
	line-height: 1.5;
	padding-bottom: 0.0625rem;
}

.blog-card__content {
	color: #000;
	margin-top: 1.125rem;
}

.blog-cards {
	display: grid;
}

.blog {
	padding-top: 5rem;
}

/* 背景画像 */

/* あしらい用 */

.blog__background-fishes {
	position: relative;
}

.blog__title { /* これがないと、背景画像がabsoluteなので下にいってしまう */
	position: relative;
}

.blog__inner { /* paddingを21にするため、.innerを外しているので。 */
	padding-left: 1.3125rem;
	padding-right: 1.3125rem;
}

.blog__items {
	gap: 2.5rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1.6875rem;
}

.blog__button {
	margin-top: 2.5rem;
	text-align: center;
}

.br-sp {
	display: block;
}

.breadcrumb {
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.breadclumb__inner {
	display: flex;
}

.breadclumb__piece {
	position: relative;
}

.breadclumb__piece:not(:first-of-type)::before {
	content: "＞";
	display: inline-block;
	height: 0.5rem;
	left: 0;
	position: absolute;
	width: 0.25rem;
}

.breadclumb__piece:not(:first-of-type) {
	margin-left: 0.5rem;
	padding-left: 1.25rem;
}

.breadclumb__piece:nth-of-type(2).breadclumb__piece:not(:last-of-type) {
	display: none;
}

/* 不要では？？？ */

/* ボタン（moreボタン、アニメーション） */

/* ============
作成中 sec6 コロスケさん参照、矢印は画像で
==============*/

/* ボタン（前へ後へ） */

.button-circle {
	border: solid 0.0625rem #408F95;
	border-radius: 50%;
	cursor: pointer;
	display: inline-block;
	height: 3rem;
	position: relative;
	width: 3rem;
}

.button-circle:hover {
	opacity: 0.4;
}

/* 左 */

.button-circle__previous::after {
	background-image: url(../images/common/arrowLeft-green.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.375rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%); /* 83×15→40とpadding-top15/83=18.0722891% */
	width: 2.5rem;
}

/* 右 */

.button-circle__next::after {
	background-image: url(../images/common/arrowRight-green.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.375rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 2.5rem;
}

/* 上 */

.button-circle__top::after {
	background-image: url(../images/common/arrowTop-green.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.75rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.375rem;
}

/* ボタン（moreボタン、アニメーション）緑白反転 */

.button-turning {
	align-items: center;
	background-color: #fff;
	border: 0.0625rem solid #fff;
	color: #408F95;
	cursor: pointer;
	display: inline-flex;
	font-family: "Gotu", sans-serif;
	font-size: 0.875rem;
	max-width: 12.625rem;
	padding: 1rem 2.5rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

/* 背景の箱 */

.button-turning::before {
	border: 0.0625rem solid #fff;
	content: "";
	height: 100%;
	left: 0.3125rem;
	position: absolute;
	top: 0.3125rem;
	width: 100%;
	z-index: -2;
}

/* 矢印 */

.button-turning span {
	display: inline-block;
	padding-bottom: 0.3125rem;
}

.button-turning span::before {
	background-image: url(../images/common/arrowRight-green.png);
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 0.4375rem;
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
}

.button-turning:hover span::before {
	background-image: url(../images/common/arrowRight-white.png);
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 0.4375rem;
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
}

/* スライドアニメーション*/

.button-turning:hover::after {
	transform: scale(1, 1);
}

.button-turning::after {
	background-color: #408F95;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.button-turning:hover,
.button-turning:hover span::after {
	color: #fff;
}

/* ボタン（moreボタン、アニメーション） */

/* ------------
親
------------ */

/* ==================
リンクボタン（スライドアニメーション）
=================== */

/* ボタン基本コード */

/* ============
コロスケさん参照、矢印は画像で
==============*/

.button-wrap {
	padding-bottom: 0.25rem;
}

.button {
	align-items: center;
	background-color: #408F95;
	border: 0.0625rem solid #408F95;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: "Gotu", sans-serif;
	font-size: 0.875rem;
	max-width: 12.625rem;
	padding: 1rem 2.5rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

/* 背景の箱 */

.button::before {
	border: 0.0625rem solid #408F95;
	content: "";
	height: 100%;
	left: 0.3125rem;
	position: absolute;
	top: 0.3125rem;
	width: 100%;
	z-index: -2;
}

/* 矢印 */

.button span {
	display: inline-block;
	padding-bottom: 0.3125rem;
}

.button span::before {
	background-image: url(../images/common/arrowRight-white.png);
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 0.4375rem;
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
}

.button:hover span::before {
	background-image: url(../images/common/arrowRight-green.png);
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 0.4375rem;
	position: absolute;
	right: 2.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
}

/* スライドアニメーション*/

.button:hover::after {
	transform: scale(1, 1);
}

.button::after {
	background-color: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.button:hover,
.button:hover span::after {
	color: #408F95;
}

/* テキストフィードバック：jsを接頭辞に付与するのは、js使用に限定する */

.campaign__card-swiper { /* ぼかしの見切れ防止 */
	padding-bottom: 0.3125rem; /* 右側だけはみ出す場合の幅を計算（スライダーのはみ出している部分） */ /* by https: //wp-thema-nishiki.pro/how-to-create-a-slider-with-margins-in-swiper/ */
	width: calc(100% + (100vw - 100%) / 2);
	z-index: 2;
}

.campaign__card-swiper .swiper-slide { /* テキストフィードバック */
	height: auto; /* 「slidesPerView:2」とかではなく、
  widthとheight、jsの「slidesPerView: "auto"」で表示枚数を決定 */
	width: 17.5rem;
}

/* 検証ツールでページネーション部分を選択状態にして、出てきたクラス名をコピペ */

/* 検証ツールで、色を修正するクラスを選択、コピー */

.campaign-s {
	margin-top: 1.5rem;
}

.campaign-s__card:not(:first-of-type) {
	margin-top: 2.5rem;
}

.campaign-s .introduction-card__body {
	padding-top: 1rem;
}

.campaign-s .introduction-card__name {
	text-align: center;
}

.campaign-s .introduction-card__footer {
	padding-bottom: 1.5rem;
}

.campaign-s__button {
	margin-top: 2.5rem;
	text-align: center;
}

/* 比率管理した画像 */

.campaign-s .introduction-card__img {
	padding-top: 63.9455782313%;
}

.l-campaign {
	margin-top: 2.5rem;
}

.campaign { /* テキストフィードバック */ /* スワイパー部分の右はみ出しによって横スクロールするのを回避 */
	overflow: hidden;
}

.campaign__wrap {
	position: relative;
}

.campaign__title .section-title__japanese {
	margin-top: 0.375rem;
}

.campaign__circle-buttons {
	display: none;
}

/* 位置調整のために、検証ツール確認しながらswiperのデフォルトcss打ち消した */

.campaign__circle-button {
	left: 0;
	margin-top: 0;
	top: 0;
}

.campaign__card {
	margin-top: 1.625rem; /* flexは不要。カード間の左右余白はjsの「spaceBetween」で */ /* padding設定を無視？して右だけ幅を画面いっぱいにしたい */
}

.campaign__card-link {
	height: 100%;
	width: 17.5rem;
}

.campaign__button {
	margin-top: 2.25rem;
	text-align: center;
}

/* このファイルは不要！！！p-card__img（grid使用する）では、カードパックは使わない！ */

/* p-カードパック */

/* 画像の比率管理① まずはrelative */

.card__img--about {
	position: relative;
}

/* 画像の比率管理② 擬似要素を作る */

.card__img--about:first-child::before { /* 幅128、高さ194、194÷128 */ /* gridでpadding-topからaspect-ratioに変更 */
	aspect-ratio: 128/194;
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block;
}

.card__img--about:last-child::before { /* 幅281、高さ186、186÷281 */
	aspect-ratio: 281/186;
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.card__img--about img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* p-カードパック・コンタクト */

/* 画像の比率管理① まずはrelative */

.card__img--contact {
	position: relative;
}

/* 画像の比率管理② 擬似要素を作る */

.card__img--contact::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* 幅295、高さ160、160÷295 */
	padding-top: 54.237288%; /* 中身のimgないので、こっちにabsolute? */
	position: absolute;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.card__img--contact iframe {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* p-カードパック */

/* p-カードパック */

/* 画像の比率管理① まずはrelative */

.card__img--information {
	position: relative;
}

/* 画像の比率管理② 擬似要素を作る */

.card__img--information::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* 幅345、高さ227、227÷345 */
	padding-top: 65.797101%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.card__img--information img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.card__img--price {
	position: relative;
}

.card__img--price::before {
	content: "";
	display: block;
	padding-top: 65.797101449%;
}

.card__img--price img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* p-カードパック */

/* 画像の比率管理① まずはrelative */

.card__img {
	position: relative;
}

/* 画像の比率管理② 擬似要素を作る */

.card__img::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* 幅335、高さ210、210÷335 */
	padding-top: 62.686567%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.card__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.colorbox {
	position: relative;
}

.colorbox .color {
	background-color: #408F95;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.colorbox img {
	display: block;
	width: 100%;
}

.d-contact__error {
	margin-bottom: 2.5rem;
	margin-top: 3.25rem;
	text-align: center;
}

.d-contact__error-inner {
	margin-left: auto;
	margin-right: auto;
}

.error {
	-moz-text-align-last: left;
	color: #C94800;
	display: inline-block;
	font-size: 0.875rem;
	padding-left: 0.875rem;
	position: relative;
	text-align-last: left;
}

.error::before {
	content: "※";
	left: 0;
	position: absolute;
	top: 0;
	width: 0.875rem;
}

.l-contact {
	margin-top: 5rem; /* ピクパ100→+4、footerのmargin-topにつける */
}

.contact {
	text-align: center;
}

.contact__inner {
	display: flex;
	flex-direction: column;
	position: relative; /* 295/375 */
	width: 100%;
}

/* あしらい */

.contact__inner::before {
	background-image: url(../images/common/illustration5.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.125rem;
	position: absolute;
	right: 0rem;
	top: -1.625rem; /* 幅109、高さ50 */
	width: 6.8125rem;
}

/* PCの右側 */

.contact__pop {
	margin-top: 2.5rem;
}

.contact__title .section-title__english {
	font-size: 5rem;
	line-height: 1;
}

.contact__title .section-title__japanese { /* ピクパ優先 */
	margin-top: -0.3125rem;
}

.contact__lead {
	color: #408F95;
	font-size: 0.875rem; /* 18/14= */
	line-height: 1.28571429;
	margin-top: 0.5rem;
}

.contact__button { /* ピクパ優先（40→38） */
	margin-top: 2.375rem;
	text-align: center;
}

/* 縦棒 */

/* PCの左側 */

.contact__contents {
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
	width: 100%;
}

/* ロゴ */

.contact__logo {
	border-bottom: solid 1px #408F95;
	padding-bottom: 0.3125rem;
	position: relative;
	width: 100%;
}

.contact__logoLink {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 10.875rem;
}

.contact__access {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.contact__information {
	font-family: "Noto sansJP";
	letter-spacing: 0;
	margin-top: 1rem;
}

.contact__items {
	font-family: "Noto sans JP";
}

.contact__item:not(:first-child) {
	margin-top: 0.25rem;
}

.contact__14 {
	font-size: 0.875rem;
}

/* 地図 */

.contact__image {
	margin-top: 1rem;
	width: 100%;
}

/* イメージ画像 */

.contact__image-wrap { /* 295×160 */
	padding-top: 54.237288%; /* 746/492 */ /* テキストフィードバック */
	width: 100%;
}

.l-d-about-gallery { /* ピクパ優先 */
	margin-top: 4.375rem;
}

.d-about-gallery { /* ピクパ優先80→84 */
	padding-bottom: 5.25rem;
	padding-top: 5rem;
}

/* あしらい */

.l-d-about { /* ピクパ対応5px加算 */
	margin-top: 5rem;
}

/* あしらい用（前） */

.d-about__background-fishes {
	position: relative;
}

.d-about__body {
	margin-top: 1.625rem;
}

/* イメージ写真群 */

.d-about__images {
	aspect-ratio: 345/212; /* 幅345、高さ212。gridでだとうまく効かず削除 */ /* gridへ変更 */
	display: grid; /* 横方向に何個並べるか。(repeat(繰返し回数,繰返す値） */ /* （繰返し2回、18.55%の幅で）と、（繰返し数3回、残りで）？？？*/ /* 最初の縦分轄 全体の幅345、ズレ64/345=18.5507246% */ /* 次の縦分割も、ズレ200なので、上記と同じ＝繰返し、となる*/ /* repeat(3, 1fr)に意味はあるのか？？ */
	grid-template-columns: repeat(2, 18.55%) repeat(3, 1fr); /* 縦方向の分割 */ /* 最初の横分割 全体の高さ２１２、ズレ26/212=12.2641509% */ /* 最後の横分割 18/212=8.49056603% */ /* 間の分割横は、3つに区切るって意味ある？？ */
	grid-template-rows: 12.26% repeat(3, 1fr) 8.49%;
	height: 100%; /* gridへ変更で削除 */
	width: 100%;
}

/* 左 */

.d-about__image:first-child { /* gridに変更 */
	grid-area: 1/1/5/3; /* 128/345=37.101449275%→gridに伴ってこれも不要 */ /* 高さは、p-card__img--aboutでpadding-top指定 */ /* grid変更で削除 */
	z-index: 1;
}

/* 右 */

.d-about__image:last-child { /* 281/345=81.449275362%→gridに伴ってこれも不要 */ /* gridで削除 */ /* gridで追加 */
	grid-area: 2/2/6/6;
	z-index: 0;
}

.d-about__contents {
	width: 100%;
}

.d-about__lead {
	color: #408F95;
	font-family: "Gotu", sans-serif;
	font-size: 2.5rem;
	line-height: 1;
	margin-top: 2.5rem;
}

.d-about__text { /* ピクパ優先16→18 */
	margin-top: 1.125rem;
}

/* モーダル */

/* 実際に開く部分 */

.modal {
	display: none;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

/* 薄暗い背景 */

.modal__overlay {
	background: rgba(0, 0, 0, 0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}

/* 画像と「閉じる」を囲む。白い */

.modal__content {
	height: 76.3020833333%;
	left: 50%;
	margin-top: 2.8125rem;
	max-width: 57.5rem;
	position: absolute;
	text-align: right;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* 画像 */

.modal__content img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

/* 「閉じるボタン」 */

.modal__content p {
	background-color: #eee;
	display: inline-block;
	font-size: 16px;
}

/* 閉じるボタン「.modal__content p」の中の「a」*/

.modal__content a {
	color: #000;
	padding: 5px 10px;
	text-align: right;
}

/* 背景を固定させる。
モーダルウィンドウを開いた時にjsでbodyに付与*/

.fixed {
	height: 100%;
	position: fixed;
	width: 100%;
}

.d-blog-page {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-blog-page__background-fishes {
	position: relative;
}

.d-blog__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-blog-page__inner {
	margin-top: 3.25rem;
}

/* 左サイド */

/* 右サイド */

.d-blog-page__side {
	margin-top: 5rem;
	width: 100%;
}

/* ページナビ */

.d-blog-page__page {
	margin-top: 2.5rem;
}

.d-blog-page-nav {
	width: 9.875rem;
}

/* =======
ブログ記事
======= */

.d-blog-page__date {
	font-family: "Gotu", sans-serif;
	font-size: 0.875rem;
	line-height: 1.5;
}

.d-blog-page__title {
	border-bottom: solid 0.0625rem #408F95;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.4583333333;
	margin-top: 0.5rem;
}

.d-blog-page__body {
	margin-top: 1.5rem;
}

.d-blog-page__block:not(:first-of-type) {
	margin-top: 1.5rem;
}

.d-blog-page__img {
	position: relative;
}

.d-blog-page__img::before { /* 幅335、高さ210、210÷335 */
	aspect-ratio: 700/468;
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block;
}

.d-blog-page__img img {
	-o-object-fit: contain;
	height: 100%;
	left: 50%;
	object-fit: contain;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.d-blog-page__item {
	line-height: 1.5;
	margin-top: 0.25rem;
	padding-left: 1.6875rem;
	position: relative;
}

.d-blog-page__item::before {
	background-image: url(../images/common/icon-star-green.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1.125rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.125rem;
}

.d-blog-page__contact {
	margin-top: 6.75rem;
}

.d-blog {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-blog__background-fishes {
	position: relative;
}

.d-blog__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-blog__inner {
	margin-top: 3.25rem;
}

/* 左サイド */

/* 右サイド */

.d-blog__side {
	margin-top: 5rem;
	width: 100%;
}

/* カードの集まり */

.d-blog__items {
	gap: 2.5rem;
	grid-template-columns: repeat(1, 1fr);
	margin-top: 1.6875rem;
}

/* 1枚のカード */

.d-blog__item {
	height: 100%;
	width: 100%;
}

/* ページナビ */

.d-blog__page {
	margin-top: 5rem;
}

.d-campaign {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-campaign__background-fishes {
	position: relative;
}

/* ページナビ */

.d-campaign__page {
	margin-top: 5rem;
}

/* カードの集まり */

.d-campaign__cards {
	margin-top: 2.5rem;
}

.d-campaign__cards-inner {
	padding: 0 9.2753623188%;
}

/* 1枚のカード */

.d-campaign__card {
	height: 100%;
	width: 100%;
}

.d-campaign__card:not(:first-of-type) {
	margin-top: 2.5rem;
}

.d-campaign__cards .introduction-card__name {
	margin-top: 0.25rem;
}

.d-contact-thanks {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-contact-thanks__background-fishes {
	position: relative;
}

.d-contact-thanks__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-contact {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-contact__background-fishes {
	position: relative;
}

.d-contact__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-contact__inner {
	margin-left: auto;
	margin-right: auto; /* テキストフィードバック（767px以下の中途半端なサイズ用に） */
	max-width: 37.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 43.75rem;
	width: 100%;
}

/* 基本の質問項目と回答 */

.d-contact dl {
	border-bottom: dashed 0.0625rem #408F95;
}

.d-contact dl:first-of-type {
	padding-bottom: 1.5rem;
}

.d-contact dl:not(:first-of-type) {
	padding: 1.5rem 0;
}

.d-contact dt {
	display: inline-block;
	font-weight: bold;
	line-height: 1.3125;
	position: relative;
	width: 100%;
}

/* 必須 */

.d-contact dt::after {
	background-color: #C94800;
	color: #fff;
	content: "必須";
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.4em;
	line-height: 1.3333333333;
	margin-left: 0.5rem;
	padding: 0.15625rem 0.625rem 0.15625rem 1rem;
	position: absolute;
}

.d-contact dd {
	margin-top: 1rem;
	width: 100%;
}

.d-faq {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-faq__background-fishes {
	position: relative;
}

.d-faq__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-faq__inner {
	margin-left: auto;
	margin-right: auto; /* テキストフィードバック（767px以下の中途半端なサイズ用に） */
	max-width: 37.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	width: 100%;
}

.d-faq__contact {
	margin-top: 5rem;
}

.d-information {
	margin-top: 7.5625rem;
}

/* あしらい用（前） */

.d-information__background-fishes {
	position: relative;
}

/* カードの集まり */

.d-information__cards {
	margin-top: 1rem;
}

.d-information__contact {
	margin-top: 6.625rem;
}

.d-page404 {
	background-color: #408F95;
	color: white;
	padding-top: 5rem;
}

.d-page404__inner {
	position: relative;
}

.d-page404__inner::before {
	aspect-ratio: 1/1;
	background-image: url(../images/common/icon-fish-404page.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	position: absolute;
	width: 21.5625rem;
}

.d-page404__block {
	margin-top: 3.25rem;
}

.d-page404__footer {
	padding-bottom: 3.5rem;
	padding-top: 5.5rem;
}

.d-price {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-price__background-fishes {
	position: relative;
}

.d-price__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-price__inner {
	margin-left: auto;
	margin-right: auto; /* テキストフィードバック（767px以下の中途半端なサイズ用に） */
	max-width: 37.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	width: 100%;
}

.d-price__body {
	width: 100%;
}

.d-price__body:not(:first-of-type) {
	margin-top: 2.5rem;
}

.d-price__table {
	width: 100%;
}

.d-price__contact {
	margin-top: 6.625rem;
}

.d-privacy {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-privacy__background-fishes {
	position: relative;
}

.d-privacy__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-privacy__inner {
	margin-left: auto;
	margin-right: auto; /* テキストフィードバック（767px以下の中途半端なサイズ用に） */
	max-width: 37.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

.d-privacy__contact {
	margin-top: 5rem;
}

/* あしらい用（前） */

.d-site__background-fishes {
	position: relative;
}

.d-site__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-site__nav { /* 52-12 */
	margin-top: 2.5rem;
}

.d-site__nav .nav-footer__item a {
	color: #0D2936;
}

.d-site__nav .nav-footer__item-a::before { /* 幅18+余白4 */
	background-image: url(../images/common/icon-star-green.png);
}

.d-terms {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-terms__background-fishes {
	position: relative;
}

.d-terms__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 3.4375rem;
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -1.5rem;
	width: 7.5rem;
}

.d-terms__inner {
	margin-left: auto;
	margin-right: auto; /* テキストフィードバック（767px以下の中途半端なサイズ用に） */
	max-width: 37.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

.d-terms__contact {
	margin-top: 5rem;
}

.rule__body p:not(:first-of-type) {
	margin-top: 1.5rem;
}

.d-voice {
	margin-top: 3.25rem;
}

/* あしらい用（前） */

.d-voice__background-fishes {
	position: relative;
}

/* ページナビ */

.d-voice__page {
	margin-top: 5rem;
}

/* カード群 */

.d-voice__items {
	margin-top: 2.6875rem;
}

/* 1枚のカード全体 */

.faq-piece__q {
	align-items: center;
	background-color: #408F95;
	color: #fff;
	display: flex;
	font-size: 1rem;
	line-height: 1.75;
	padding: 0.84375rem 1rem;
}

.faq-piece__q span {
	display: block;
	height: 1.75rem;
	margin-left: auto;
	position: relative;
	width: 1.75rem;
}

.faq-piece__q span::before,
.faq-piece__q span::after {
	background-color: #fff;
	content: "";
	position: absolute;
	top: 50%;
}

/* 横棒 */

.faq-piece__q span::before {
	height: 0.0625rem;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1.75rem;
}

/* 縦棒 */

.faq-piece__q span::after {
	height: 1.75rem;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease 0s;
	width: 0.0625rem;
}

/* 「.js-accordion-btn」に「.open」付与された時の、「.faq-piece__q span::after」 */

.js-accordion-btn.open span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

/* jsでコントロールされる要素ではなくその子要素にcss当てないと崩れる */

.faq-piece__a p {
	border: solid 0.0625rem #408F95;
	color: #0D2936;
	line-height: 1.4375;
	padding: 1.5rem 1rem;
}

.faq-sets__piece:not(:first-of-type) {
	margin-top: 2.5rem;
}

.l-footer {
	margin-top: 6.25rem;
	padding-bottom: 3.5rem; /* 動画FB修正。上下paddingは、innerではなく「p-footer」で。 */
	padding-top: 3rem;
}

.footer {
	background-color: #408F95;
	width: 100%;
}

.footer__inner {
	margin-left: auto;
	margin-right: auto; /* 左右余白を15として（copyrightは別）375-15*2=345だけど、paddingは別計算なので375 */
	max-width: 23.4375rem;
	padding-left: 0.9375rem; /* 擬似要素ヒトデ分の右余白は「」で */
	padding-right: 0.9375rem;
	width: 100%;
}

.footer__logo {
	height: 2.8125rem;
	width: 7.5rem;
}

.footer__logo a:hover {
	opacity: 0.4;
}

.footer__logoLink {
	display: block;
	position: relative;
	width: 100%;
}

.footer__logoLink::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* PCもSPも比率は同じ。幅200、高さ75、75÷200 */
	padding-top: 37.5%;
}

.footer__logoLink img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* SNS */

.footer__sns-items {
	display: flex; /* ピクパ16→14 */
	gap: 0.875rem;
	margin-top: 1rem;
}

.footer__sns-item {
	cursor: pointer;
	display: block;
	height: 1.625rem;
	width: 1.625rem;
}

.footer__sns-item:hover {
	opacity: 0.4;
}

.footer__sns-item img {
	height: 100%;
	width: 100%;
}

.footer__nav { /* 40-「.nav-footer__item a」の12=28 */
	margin-top: 1.75rem;
}

/* コピーライト */

.footer__copyright {
	color: #fff;
	font-weight: 400; /* 上余白40-最後の「.nav-footer__item-a」padding12=28
  ピクパ優先28→21 */
	margin-top: 1.3125rem;
	text-align: center;
}

.footer__copyright small {
	font-size: 0.75rem;
	line-height: 1.5;
}

/* 出典：ヒロキさんの「formコーディングのパッケージ」 */

/* https: //upsdelight.notion.site/Form-a628397c5cba46e8b0a9f99ad1e3962a */

/* ------------
デフォルト色の指定
-------------*/

/* ------------
エラー色の指定
-------------*/

/* ------------
サイズ等の指定
------------- */

/* ------------
ボタン系の指定
-------------*/

/* ------------
チェックボックスの指定
-------------*/

/* ------------
テキストエリアの指定
------------- */

/* ------------
各種要素
------------- */

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
textarea {
	background: #fff;
	background-image: none; /*↓リセットCSS */
	border: none;
	border: 1px solid #408F95;
	border-radius: 0;
	border-radius: 0rem;
	font-family: inherit; /*↓カスタム */
	font-size: 1rem;
	padding: 0.4375rem 0.5rem;
	width: 100%; /*↓↓↓↓不要ならコメントアウト or 削除 */ /*↓↓選択されているときの色*/
}

[type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=password]:focus,
[type=date]:focus,
textarea:focus {
	border: 1px solid #391E88;
}

/*  ------------
tel
------------- */

[type=tel] {
	width: 100%;
}

/* ------------
ボタン
------------- */

button,
[type=button],
[type=submit] {
	-webkit-text-decoration: none;
	background: #408F95;
	background-image: none;
	border: none;
	border-radius: 0;
	border-radius: 0rem;
	color: white;
	cursor: pointer;
	display: inline-block;
	font-size: 0.875rem;
	line-height: 1; /*↓リセットCSS */
	margin: 0; /*↓カスタム */
	padding: 1rem 3.5rem;
	text-decoration: none;
	transition: 0.3s ease;
	width: auto;
}

/* ------------
チェックボックス
------------- */

[type=checkbox] {
	display: none;
}

[type=checkbox] + span {
	cursor: pointer;
	display: block;
	font-size: 1rem;
	line-height: 1.4375;
	margin: 0.25rem 1.25rem 0 0;
	padding: 0 0 0 1.375rem;
	position: relative;
	transition: 0.3s ease;
}

[type=checkbox] + span::before {
	background: #fff;
	border: 1px solid #408F95;
	content: "";
	display: block;
	height: 0.875rem;
	left: 0;
	position: absolute;
	top: 0.3125rem;
	width: 0.875rem;
}

[type=checkbox] + span::after {
	opacity: 0;
	transition: 0.3s ease;
}

[type=checkbox]:checked + span::after {
	border-bottom: 1px solid #f00;
	border-left: 1px solid #f00;
	content: "";
	display: block;
	height: 0.4375rem;
	left: 0;
	margin-left: 0.1em;
	margin-top: -0.1em;
	opacity: 1;
	position: absolute;
	top: 50%; /*チェックマークじゃない場合は以下を変更する*/
	transform: translateY(-50%) rotate(-45deg);
	width: 0.7875rem;
}

/* ------------
セレクト
------------- */

select { /*↓デフォルトのアイコンを消す場合はコメントアウト（noneにする）*/ /* 画像を入れる */ /* デフォルトの矢印を無効 */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(../images/common/icon-form-arrow.png);
	background-position: right 0.5625rem center;
	background-repeat: no-repeat;
	background-size: 12px 12px;
	border: none;
	border: 1px solid #408F95; /*↓リセットCSS */
	border-radius: 0;
	border-radius: 0rem;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.75rem;
	line-height: 1; /*↓カスタム */
	margin-top: 0rem;
	padding: 0.8125rem 0.5rem;
	width: 100%;
}

select:focus {
	border: 1px solid #391E88;
}

/* ------------
テキストエリア
------------- */

textarea {
	height: 12.5rem;
	max-width: 37.5rem;
	width: 100%;
}

.form__concent {
	margin-top: 2.5rem;
}

.form__concent [type=checkbox] + span {
	font-size: 0.875rem;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0 0 1.875rem;
	width: 17.625rem;
}

/* ------------
チェックボックスの箱
------------- */

.form__concent [type=checkbox] + span::before {
	height: 1.375rem;
	top: 0;
	width: 1.375rem;
}

.form__concent [type=checkbox]:checked + span:after {
	height: 0.6875rem;
	margin-top: -0.8em;
	width: 1.2375rem;
}

/* ボタン */

.form__button {
	margin-top: 2.5rem;
	text-align: center;
}

.contact-error [type=text],
.contact-error [type=search],
.contact-error [type=tel],
.contact-error [type=url],
.contact-error [type=email],
.contact-error [type=password],
.contact-error [type=date],
.contact-error textarea {
	background: rgba(201, 72, 0, 0.2);
	border: 1px solid #C94800;
}

/* イメージ写真群 */

.gallery__body {
	grid-gap: 0.5rem;
	display: grid;
	gap: 0.5rem; /* 列は１列 */
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
	width: 100%;
}

.card__img--d-about img {
	height: 100%;
}

/* ======
ジャンルのナビ
====== */

.genre-information__items {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.genre-information__item { /* やりたい計算＝(100% - 20px × 2) ÷ 3 */
	width: calc(33.3333333333% - 0.833333125rem);
}

.genre-information__link {
	background-color: #DDF0F1;
	box-shadow: 0px 0px 15px -5px #777777;
	color: #408F95;
	display: block; /* アイコン用 */
	font-size: 0.875rem;
	line-height: 1.4285714286;
	padding: 0.625rem;
	text-align: center;
	transition: all 0.5s 0s ease;
}

.genre-information__link-image {
	display: none;
}

.genre-information__link-image {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* 最初のliの中にあるイメージ（通常） */

.genre-information__item:first-of-type .genre-information__link-image {
	background-image: url(../images/common/icon-fish-green-1.png);
}

/* 〃（liにホバー、aがactiveな時） */

.genre-information__item:first-of-type:hover .genre-information__link-image,
.genre-information__item:first-of-type .is-active .genre-information__link-image {
	background-image: url(../images/common/icon-fish-white-1.png);
}

/* 2つ目のliの中にあるイメージ（通常） */

.genre-information__item:nth-of-type(2) .genre-information__link-image {
	background-image: url(../images/common/icon-fish-green-2.png);
}

/* 〃（liにホバー、aがactiveな時） */

.genre-information__item:nth-of-type(2):hover .genre-information__link-image,
.genre-information__item:nth-of-type(2) .is-active .genre-information__link-image {
	background-image: url(../images/common/icon-fish-white-2.png);
}

/* 3枚目のliの中にあるイメージ（通常） */

.genre-information__item:last-of-type .genre-information__link-image {
	background-image: url(../images/common/icon-fish-green-3.png);
}

/* 〃（liにホバー、aがactiveな時） 3枚目*/

.genre-information__item:last-of-type:hover .genre-information__link-image,
.genre-information__item:last-of-type .is-active .genre-information__link-image {
	background-image: url(../images/common/icon-fish-white-3.png);
}

/* ホバー時の挙動 */

.genre-information__item a:hover,
.genre-information__item a.is-active {
	background-color: #408F95;
	color: #fff; /*アニメーションの指定*/
	transition: all 0.3s;
}

/* ======
ジャンルのナビ
====== */

.genre__items {
	display: flex;
	flex-wrap: wrap;
}

.genre__item {
	width: calc(50% - 0.65625rem);
}

.genre__item:nth-of-type(2),
.genre__item:nth-of-type(4) {
	margin-left: 1.3125rem;
}

.genre__item:nth-of-type(3),
.genre__item:nth-of-type(4) {
	margin-top: 1rem;
}

.genre__item a {
	border: solid 0.0625rem #408F95;
	color: #408F95;
	display: block;
	font-size: 0.875rem;
	line-height: 1;
	padding: 0.5625rem;
	text-align: center;
}

.genre__item a:hover,
.genre__item a.is-active {
	background-color: #408F95;
	color: #fff; /*アニメーションの指定*/
	transition: all 0.3s;
}

.hamburger {
	cursor: pointer;
	height: 1.875rem;
	position: relative;
	width: 1.875rem; /* ドロワーメニューの上に乗っかる。
    headerはz-index:1000に。 */
	z-index: 100;
}

.hamburger span {
	background-color: #fff;
	height: 0.125rem;
	position: absolute;
	transition: 0.3s;
	width: inherit;
}

/* 通常 */

.hamburger span:nth-child(1) {
	top: 15%;
}

.hamburger span:nth-child(2) {
	opacity: 1;
	top: 51%;
}

.hamburger span:nth-child(3) {
	top: 85%;
}

/* クリック時 */

.hamburger.is-active span:nth-child(1) {
	top: 60%;
	transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
	top: 51%;
}

.hamburger.is-active span:nth-child(3) {
	top: 60%;
	transform: rotate(-45deg);
}

/* ハンバーガーメニュー表示時にはスクロール不可
CSSとJSで実現 */

body.noscroll {
	overflow: hidden;
}

.header { /* 透過しているヘッダーはrgbaで指定する */
	background-color: rgba(13, 41, 54, 0.68);
	height: 5rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.header__inner {
	align-items: center; /* 縦中央 */
	display: flex;
	height: inherit;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	padding: 0 0.9375rem; /* フィードバック対応。左右にくっつける */
	width: 100%;
}

.header__logo {
	height: 2.375rem;
	position: relative;
	width: 6.375rem;
	z-index: 1000;
}

.header__logoLink {
	display: block;
	width: 100%;
}

/* PC時はハンバーガーボタン非表示 */

/* PC用ナビ */

.header__pc-nav {
	display: none;
	height: inherit;
}

.information-card {
	border: solid 0.0625rem #408F95;
}

.information-card__inner {
	display: flex;
	flex-direction: column;
	padding: 1.5rem;
}

.information-card__contents-name {
	border-bottom: solid 1px #408F95;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 0.5rem;
}

.information-card__contents-text {
	line-height: 1.5;
	padding-top: 0.5rem;
}

/* ===================
画像の縦横比維持するカード
=================== */

/* 画像の比率管理① まずはrelative */

.information-card__image {
	margin-top: 0.5rem;
	position: relative;
	width: 100%;
}

/* 画像の比率管理② 擬似要素を作る */

.information-card__image::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* 幅297、高さ189、189÷297 */
	padding-top: 63.636363%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.information-card__image img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.l-information { /* ピクパ優先 */
	margin-top: 4.375rem;
}

.information {
	background-color: #DDF0F1; /* ピクパ優先80→84 */
	padding-bottom: 5.25rem;
	padding-top: 5rem;
}

.information__body { /* ピクパ優先24→26 */
	margin-top: 1.625rem;
}

.information__wrap { /* ピクパ優先 */
	margin-top: 1.875rem;
	width: 100%;
}

.information__lead {
	border-bottom: solid 1px #408F95;
	font-size: 1.25rem;
	font-weight: 700; /* 24/20=1.2 */ /* ピクパ優先 */
	line-height: 1; /* ピクパ優先4→2 */
	padding-bottom: 0.125rem;
}

.information__text {
	font-family: "Noto Sans JP";
	margin-top: 0.5rem;
}

.information__button {
	-moz-text-align-last: center;
	margin-top: 2.25rem;
	text-align-last: center;
}

.inner {
	margin-left: auto;
	margin-right: auto; /* テキストフィードバック（767px以下の中途半端なサイズ用に） */
	max-width: 37.5rem;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
}

/* カード（flex使用） */

/* 3枚横並びのブロック */

/* 25pxの余白で、3枚横並び */

/* ---------
１枚のカード（.blog-card）
--------- */

.introduction-card {
	background-color: #fff; /* 要素がインラインなのでblock要素に。 */ /* フッター（カテゴリ＆日付）を底辺固定のためblockではなくflexに
  これで、margin-topが有効となる。理由は不明 */ /* ぼかし */ /* https: //hiroyuki-n.github.io/boxShadow_generator/ */
	box-shadow: 0px 0px 15px -5px #777777; /* flexで自動縮小をさせない */ /* テキストフィードバック（テキスト部分が伸縮してもフッター（プライス）位置を一定に */
	display: flex;
	flex-direction: column;
}

/* トップページのcampaignのみホバー */

.campaign .introduction-card:hover {
	opacity: 0.4;
}

.campaign-s__card a:hover {
	opacity: 0.4;
}

/* 比率管理した画像 */

.introduction-card__img { /* 188/280=67.1428571428% */
	padding-top: 67.1428571428%;
	position: relative;
}

/* ブロック① */

.introduction-card__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* ブロック② */

/* ブロック② */

.introduction-card__body {
	padding: 1rem 1rem 0rem; /* 1rem のぼかしで 3rem の広がりの赤っぽい影 */ /* https: //www.bad-company.jp/drop-shadow */
}

.introduction-card__inner--d {
	padding: 0;
}

.introduction-card__genre {
	border: solid 1px #408F95;
	color: #408F95;
	display: inline-block;
	font-size: 0.75rem; /* 22/12=1.833333 */
	line-height: 1; /* 箱の高さ30、文字12pxなので、余白は9×2。
  line-heightは1にして全てpaddingへ */
	padding: 0.625rem 0.6875rem 0.375rem;
}

.introduction-card__name {
	border-bottom: solid 0.0625rem #408F95;
	font-weight: 400; /* 24/16=1.5 */
	line-height: 1.5; /* ピクパ優先 */
	margin-top: 0.4375rem;
	padding-bottom: 0.5rem;
}

/* ブロック③フッター部分（プライス） */

.introduction-card__footer { /* 下寄せ */
	margin-top: auto;
	padding: 0rem 1rem 1.5rem;
}

.introduction-card__text {
	font-size: 0.875rem; /* 24/16=1.5 */
	line-height: 1.5; /* 24/14 */
	line-height: 1.7142857; /* ピクパ8→6 */
	padding-top: 0.5rem;
	text-align: center;
}

.introduction-card__price {
	align-items: flex-end;
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 0.375rem;
}

.introduction-card__price-before,
.introduction-card__price-after {
	font-family: "Lato";
	line-height: 1;
}

.introduction-card__price-before {
	font-size: 1.25rem;
	position: relative;
}

.introduction-card__price-before::after {
	background-color: #C94800;
	content: "";
	height: 0.1875rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 5.6875rem;
}

.introduction-card__price-after {
	color: #408F95;
	font-size: 2rem;
}

/* ========
下層のみで使用
======== */

.introduction-card__detail {
	display: none;
}

.introduction-card__detail-release {
	color: #408F95;
	margin-top: 2rem;
	text-align: center;
}

.introduction-card__detail-lead {
	color: #408F95;
	font-size: 0.875rem;
	margin-top: 0.4375rem;
	text-align: center;
}

.introduction-card__detail-button {
	margin-top: 1rem;
	text-align: center;
}

/* 検証ツールでページネーション部分を選択状態にして、出てきたクラス名をコピペ */

/* 検証ツールで、色を修正するクラスを選択、コピー */

/* swiperを囲む */

.mv__swiper {
	position: relative;
}

.mv-down__inner {
	position: relative;
}

/* p-カードパック */

/* 画像の比率管理① まずはrelative */

.mv-down__img {
	position: relative;
}

/* 画像の比率管理② 擬似要素を作る */

.mv-down__img::before {
	aspect-ratio: 375/460;
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block;
	width: 100%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.mv-down__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* 文字 */

.mv-down__title {
	color: #fff;
	font-family: Lato;
	font-size: 2.5rem; /* GoogleサイトによるとRegular=400 */
	font-weight: 400;
	left: 50%; /* 48/40=1.2 */
	line-height: 1.2;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%); /* 改行させない */
	white-space: nowrap;
	z-index: 2;
}

/* 最後の文字の後ろのletter-spacingをネガティブマージンで消す */

.mv__inner {
	position: relative;
}

/* p-カードパック */

/* 画像の比率管理① まずはrelative */

.mv__img {
	position: relative;
}

/* 画像の比率管理② 擬似要素を作る */

.mv__img::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block;
	min-height: 100vh; /* 幅335、高さ210、210÷335 */
	width: 100%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.mv__img img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/* 文字 */

.mv__header {
	color: #fff;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.mv__title {
	font-family: Lato;
	font-size: 2.5rem; /* GoogleサイトによるとRegular=400 */
	font-weight: 400;
	letter-spacing: 0.54em; /* 48/40=1.2 */
	line-height: 1.2;
	margin-left: auto;
	margin-right: auto;
}

/* 最後の文字の後ろのletter-spacingをネガティブマージンで消す */

.mv__title::after {
	content: "";
	margin-left: -0.54em;
}

.mv__subtitle {
	font-size: 1.25rem; /* 33/20=1.65 */
	line-height: 1.65;
}

/* ナビのfooter版 */

/* 通常 */

.nav-footer {
	width: 100%;
}

.nav-footer__inner {
	display: flex; /* 上から80+24 */
	justify-content: space-between; /* 擬似要素ヒトデ（width18）分+右余白4=22 */
	padding-left: 1.375rem;
}

.nav-footer__inner--right { /* ピクパ優先 */
	width: 8.75rem;
}

.nav-footer__items { /* 縦方向のセンタリング */
}

/* ピクパ */

.nav-footer__inner--left .nav-footer__items:nth-child(2) {
	margin-top: 1rem;
}

/* ピクパ */

.nav-footer__inner--right .nav-footer__items:nth-child(2) {
	margin-top: 1rem;
}

.nav-footer__item {
	position: relative;
	width: 100%;
}

.nav-footer__item:not(:first-child) { /* 間隔を40欲しいが、padding12取ったので12*2差し引く */
	margin-top: 1rem;
}

.nav-footer__item a {
	color: #fff; /* text-align:centerでは、インライン要素なのでセンターにならない。
    ブロック要素にすることで、幅いっぱいになってセンターに。 */
	display: block;
	font-size: 1rem;
	font-weight: 700; /* 18/16=1.125 */
	line-height: 1.125; /* クリック領域を広げる */
	padding: 0.75rem 0;
}

.nav-footer__item a:hover {
	opacity: 0.4;
}

/* ヒトデ */

.nav-footer__item-a::before {
	background-image: url(../images/common/icon-star.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.125rem; /* 幅18+余白4 */
	left: -1.375rem;
	position: absolute;
	top: 0.75rem;
	width: 1.125rem;
}

.nav-footer__item-list a {
	font-size: 1rem;
	font-weight: 400; /* クリック領域を広げる */
	padding: 0.75rem 0;
}

.normal-text {
	font-size: 1rem; /* 24/16 */
	line-height: 1.5;
}

/* ======
ページのナビ
====== */

.page-nav {
	display: flex;
	justify-content: space-between;
}

.page-nav__items {
	display: flex;
	flex-wrap: nowrap;
}

.page-nav__arrow,
.page-nav__item {
	width: 2.375rem;
}

/* ======
矢印
======= */

.page-nav__arrow a {
	position: relative;
}

.page-nav__arrow a::after {
	border-bottom: solid 0.0625rem #408F95;
	border-left: solid 0.0625rem #408F95;
	content: "";
	display: block;
	height: 0.625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 0.625rem;
}

/* 数字の「前（before）」にある矢印 */

.page-nav__arrow.before a::after { /* https: //web-camp.io/magazine/archives/87247 */
	transform: translate(-25%, -50%) rotate(45deg);
}

/* 数字の「後（after）」にある矢印 */

.page-nav__arrow.after a::after { /* https: //web-camp.io/magazine/archives/87247 */
	transform: translate(-75%, -50%) rotate(225deg);
}

.page-nav__arrow a {
	border: solid 0.0625rem #408F95;
	display: block;
	height: 2.375rem;
	width: 2.375rem;
}

/* ======
数字
======= */

.page-nav__item:not(:first-of-type) {
	margin-left: 0.75rem;
}

.page-nav__item:nth-of-type(5),
.page-nav__item:nth-of-type(6) {
	display: none;
}

.page-nav__item a {
	border: solid 0.0625rem #408F95;
	color: #408F95;
	display: block;
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	line-height: 1;
	padding: 0.625rem;
	text-align: center;
}

/* hover、is-active時の動き */

.page-nav__arrow a:hover,
.page-nav__item a:hover,
.page-nav__item a.is-active {
	background-color: #408F95;
	color: #fff; /*アニメーションの指定*/
	transition: all 0.3s;
}

/* https: //yoncoichi.com/pseudo-hover/ */

/* 擬似要素にhover */

.page-nav__arrow a:hover::after {
	border-bottom: solid 0.0625rem white;
	border-left: solid 0.0625rem white;
}

.page404__block {
	background-color: #408F95;
}

.page404__inner {
	text-align: center;
}

.page404__contents {
	font-family: "Lato";
	font-size: 5rem;
	letter-spacing: 0.5em;
	line-height: 1.2;
}

.page404__text {
	line-height: 1.5;
}

.page404__btn {
	margin-top: 2.5rem;
}

.pc-nav__items {
	display: flex;
	gap: 2.5rem; /*スマホ表示折り返し用なのでPCのみなら不要*/ /* テキストフィードバック。aをいっぱいに。（aにもflex）*/
	height: 100%;
}

.pc-nav__item a {
	-webkit-text-decoration: none;
	color: #fff;
	display: flex;
	flex-direction: column; /* テキストフィードバック（aをいっぱいに）。ulにもheight100付与 */
	height: 100%;
	justify-content: center; /* 中心から外に線が伸びる（下部） */ /*線の基点とするためrelativeを指定*/
	position: relative;
	text-decoration: none;
}

.pc-nav__item a::after {
	background: #fff;
	bottom: 1.25rem;
	content: "";
	height: 1px;
	left: 10%; /*絶対配置で線の位置を決める*/
	position: absolute;
	transform: scale(0, 1); /*X方向0、Y方向1*/
	transform-origin: center top; /*アニメーションの指定*/
	transition: all 0.3s; /*線の形状*/
	width: 80%; /*上部中央基点*/
}

/*現在地とhoverの設定*/

.pc-nav__item.current a::after,
.pc-nav__item a:hover::after {
	transform: scale(1, 1); /*X方向にスケール拡大*/
}

.pc-nav__item {
	color: #fff;
	text-align: center;
}

.pc-nav__item-english {
	font-family: "Gotu";
	font-size: 1.125rem;
	line-height: 1;
}

.pc-nav__item-japanese {
	font-size: 0.625rem;
	line-height: 1.5;
	margin-top: 0.25rem;
}

.popular {
	margin-top: 1.5rem;
}

.popular__card {
	box-shadow: 0px 0px 15px -5px #777777;
	margin-top: 1.5rem;
	width: 100%;
}

.popular__card:hover {
	opacity: 0.4;
}

.popular__inner {
	display: flex;
	padding: 1rem;
}

/* ===================
画像の縦横比維持するカード
=================== */

.popular__image { /* 画像の比率管理① まずはrelative */
	position: relative;
	width: 46.1832061069%;
}

/* 画像の比率管理② 擬似要素を作る */

.popular__image::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* 幅121、高さ90 */
	padding-top: 74.3801652893%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.popular__image img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.popular__article {
	margin-left: 6.106870229%;
	width: 47.7099236641%;
}

.popular__article-date {
	font-size: 0.75rem;
}

.popular__article-title {
	margin-top: 0.25rem;
}

.preview {
	margin-top: 1.5rem;
}

.preview__card {
	width: 100%;
}

/* ===================
画像の縦横比維持するカード
=================== */

.preview__image { /* 画像の比率管理① まずはrelative */
	position: relative;
	width: 100%;
}

/* 画像の比率管理② 擬似要素を作る */

.preview__image::before {
	content: ""; /* 擬似要素のinline要素のままだと高さ取れない */
	display: block; /* 幅294、高さ218 */
	padding-top: 74.1496598639%;
}

/* 画像の比率管理③ ②で作った箱に画像を入れる
画像の比率が違う時にもはみ出さない */

.preview__image img {
	-o-object-fit: cover;
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.preview__article {
	margin-top: 1rem;
}

.preview__article-attribute {
	font-size: 0.75rem;
	line-height: 1.5;
}

.preview__article-title {
	font-size: 1.5rem;
	left: 1.4583333333;
	margin-top: 0.5rem;
}

.price-table {
	border-collapse: collapse;
	max-width: 100%;
	table-layout: fixed; /* widthだけでは幅指定不能なので力技？ */
	width: 35.625rem;
}

.price-table thead {
	align-items: center;
	background-color: #408F95;
	display: flex; /* つけてみたところ（PC版では戻す処理） */
	display: table-caption;
	justify-content: center;
	text-align: -webkit-center;
}

.price-table__title-th {
	color: #fff;
	font-weight: 700;
	height: 2.5rem;
	width: 100%;
}

.price-table tbody tr {
	width: 100%;
}

.price-table td {
	border: solid 1px #408F95;
}

.price-table__course {
	padding: 0.4375rem 1.5rem;
	text-align: center;
	width: 69.5652173913%;
}

.price-table__price {
	padding: 1.1875rem 1rem 1.1875rem 1.25rem;
	text-align: right;
	width: 30.4347826087%;
}

/* アイコン付き */

.price-table__title-th {
	align-items: center;
	display: flex;
}

.price-table__title-th-img {
	display: block;
	height: 1.5rem;
	width: 1.5rem;
}

.price-table__title-th-text {
	display: block;
	margin-left: 0.5rem;
	width: 100%;
}

.l-price {
	margin-top: 5rem;
}

.price {
	background-color: #DDF0F1;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.price__title .section-title__japanese {
	margin-top: 0.4375rem;
}

.price__wrapper {
	display: flex;
	flex-direction: column;
	margin-top: 1.5rem;
	width: 100%;
}

.price__image-wrap {
	width: 100%;
}

.price__image {
	display: block;
	height: 100%;
	width: 100%;
}

.price__table {
	width: 100%;
}

.price__button {
	margin-top: 2.375rem;
	text-align: center;
}

.price__background-fishes {
	position: relative;
}

.rule {
	line-height: 2;
}

.rule__title {
	font-size: 1.5rem;
}

.rule__body {
	margin-top: 2.5rem;
}

.rule__block {
	margin-top: 1.5rem;
}

.rule__block:nth-of-type(2) p {
	margin-top: 1.5rem;
}

.rule__ol {
	margin-top: 1.5rem;
}

.rule__block:nth-of-type(2) p {
	margin-top: 1.5rem;
}

.rule__ol > li {
	list-style: decimal;
	margin-left: 1.5em;
}

.rule__ul > li {
	margin-top: 1.5rem;
}

.rule__ul > li::marker {
	content: "・";
}

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

.section-title__english {
	font-family: "Gotu", sans-serif;
	font-size: 2rem;
	font-weight: 300; /* 40/32=1.25 */
	line-height: 1.25;
}

.section-title__english--normal::first-letter {
	color: #408F95;
}

.section-title__japanese {
	color: #408F95;
	font-size: 0.75rem;
	line-height: 1.5; /* ピクパ優先 */
	margin-top: 0.3125rem;
}

/* priceの中の料金一覧部分 */

.service__item {
	margin-top: 2.5625rem;
}

.service__item h3 {
	border-bottom: solid 1px #408F95;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 0.125rem;
}

.service__item dl {
	display: flex;
	font-size: 0.875rem; /* 24/14 */
	line-height: 1.7142857143;
	margin-top: 0.5rem;
}

.service__item dt { /* 253/345 */
	width: 73.33333333%;
}

.service__item dd { /* 指定しないと、数字なので？、Gotuになる */
	font-family: "Noto Sans JP";
	text-align: right;
	width: 26.6666666%;
}

/* サイドメニューのタイトル */

.side-title {
	border-left: solid #408F95 0.5rem;
	font-size: 1.5rem;
	height: 3.125rem;
	line-height: 2.0833333333;
	padding-left: 4.625rem;
	position: relative;
	width: 100%;
}

.side-title::after {
	background-image: url(../images/common/icon-fish-black.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 3.125rem;
	left: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3.125rem;
}

.side__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 18.375rem;
	width: 100%;
}

.side__contents:not(:first-of-type) {
	margin-top: 5rem;
}

.side__preview-button {
	margin-top: 2.5rem;
	text-align: center;
}

.side .introduction-card__text {
	font-size: 0.875rem;
}

.side .introduction-card__name {
	margin-top: 0;
}

.side .introduction-card__price-after {
	font-size: 2rem;
}

.side .introduction-card__price-before {
	font-size: 1.25rem;
}

/* SPナビ */

/* 通常 */

.sp-nav {
	background-color: #408F95;
	display: none;
	height: 100vh; /* left:0、right:0で要素が浮く */
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%; /* １でも表示はされそう！？ */
}

/* 「is-active」付与時 */

.sp-nav.is-active {
	display: block;
	opacity: 1;
}

/* ヘッダー部分（ロゴが載るところ）を一番上にしたいので要素を追加 */

.sp-nav__header {
	background-color: #408F95;
	height: 5rem;
	width: 100%;
}

.sp-nav__inner {
	display: flex; /* ヒトデ部分が無視されるるので「7+18+ヒトデ左余白4」=29 */
	gap: 1.8125rem; /* （動画FBで追加）ドロワーメニューの高さ不足の場合にスクロールさせる */ /* https: //web-note.org/programming/css/drawer-bg-scroll/ */
	height: 100vh;
	justify-content: center;
	overflow: scroll; /* （仮）高さ不足時のため */
	padding-bottom: 2.125rem;
	padding-left: 2.3125rem;
	padding-right: 2.3125rem; /* 上から80+24 */ /* 動画FBで高さ不足時対策用に修正中（topは */
	padding-top: 0.875rem;
}

.sp-nav__items {
	min-height: 40.625rem;
}

.sp-nav__items--left {
	width: 9rem;
}

.sp-nav__items--right {
	width: 8rem;
}

.sp-nav__item {
	position: relative;
	width: 100%;
}

.sp-nav__item:not(:last-of-type) { /* 間隔を40欲しいが、padding12取ったので差し引く */
	margin-bottom: 1rem;
}

/* ピクパ */

.sp-nav__item a {
	color: #fff; /* text-align:centerでは、インライン要素なのでセンターにならない。
    ブロック要素にすることで、幅いっぱいになってセンターに。 */
	display: block;
	font-size: 1rem;
	font-weight: 700; /* 18/16=1.125 */
	line-height: 1.125; /* クリック領域を広げる */
	padding: 0.75rem 0;
}

/* ヒトデ */

.sp-nav__item-a::before {
	background-image: url(../images/common/icon-star.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.125rem; /* 幅18+余白4 */
	left: -1.375rem;
	position: absolute;
	top: 0.75rem;
	width: 1.125rem;
}

.sp-nav__item-list a {
	font-size: 1rem;
	font-weight: 400; /* クリック領域を広げる */
	padding: 0.75rem 0;
}

.thanks {
	text-align: center;
}

.thanks__content p:first-of-type {
	line-height: 1.125;
}

.thanks__content p {
	line-height: 1.4375;
}

.thanks__content p:nth-of-type(2) {
	margin-top: 2.5rem;
}

/* ピクパで追加 */

.to-top {
	height: 3rem; /* テキストフィードバック（campaignで隠れる） */
	z-index: 3;
}

/* 追加 */

#js-pagetop { /* ピクパ20→16 */
	bottom: 1rem;
	cursor: pointer;
	position: fixed; /* ピクパ20→15 */
	right: 0.9375rem;
}

/* ボタンの親要素に指定！ */

body {
	position: relative;
}

/* カード（ボイス） */

.voice-card { /* ぼかし */
	box-shadow: 0px 0px 15px -5px #777777; /* ピクパ優先top15→17 bottom24→21 */
	padding: 1.0625rem 1rem 1.3125rem;
}

.voice-card__head {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.voice-card__information {
	display: flex;
	flex-direction: column; /* テキストフィードバック（SP大きい幅時のレイアウト崩れ対応。画像の下端と揃える） */
	justify-content: space-between; /* 13/313=4.153355% */
	margin-right: 4.153355%; /* 149/313=47.604844% */
	width: 47.604844%;
}

.voice-card__category {
	display: flex;
	flex-direction: column;
}

.voice-card__generation {
	font-family: "Noto Sans JP";
	font-size: 0.75rem;
	line-height: 1;
	margin-bottom: 0.1875rem;
	padding-bottom: 0rem; /* ピクパ優先 */
	padding-top: 0.1875rem;
}

.voice-card__thema span {
	border: solid 0.0625rem #408F95;
	color: #408F95;
	display: inline-block;
	font-family: "Noto Sans JP";
	font-size: 0.75rem; /* 22/12=1.83333 */
	line-height: 1;
	margin-top: 0rem; /* ピクパ優先、左右余白は11 */
	padding: 0.5rem 0.6875rem;
}

.voice-card__title {
	border-bottom: solid 0.0625rem #408F95;
	font-size: 1rem; /* 69/48=1.4375 */
	line-height: 1.4375; /* ピクパ優先 */
	margin-top: 0.375rem;
	padding-bottom: 0.0625rem;
}

/* 比率管理した画像 */

/* figureを囲むdiv（幅、高指定） */

.voice-card__image { /* max-width付与しては？との指摘なので、PC版カンプ値*/
	max-width: 11.25rem; /* ピクパ9→7 */
	padding-top: 0.4375rem; /* 151/313=48.242812% */
	width: 48.242812%;
}

/* imgを囲むfigure */

.voice-card__img {
	bottom: 0; /* 117/151 */
	padding-top: 77.483443708%;
	position: relative;
}

.voice-card__img img {
	-o-object-fit: cover; /* 100%だと、親要素を無視して、左要素に合わせて高くなってしまう
  →フィードバック対応：大丈夫だった。ないと、画像差し替え時に対応不可 */
	height: 100%;
	left: 50%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.voice-card__contents {
	margin-top: 1.0625rem;
}

/* ファイルを作る「voice-cards」 */

.voice-cards {
	grid-gap: 2.5625rem;
	display: grid;
	gap: 2.5625rem;
	grid-template-columns: repeat(1, 1fr);
}

.l-voice { /* ピクパ優先80→84 */
	margin-top: 5rem;
}

/* あしらい用（前） */

.voice__background-fishes {
	position: relative;
}

/* カード群 */

.voice__items {
	margin-top: 2.6875rem;
}

.voice__button {
	margin-top: 2.5rem;
	text-align: center;
}

/* あしらい用（後） */

.voice__background-fishes-last {
	position: relative;
}

@media screen {

.card__img--about:last-child::before { /* 幅880、高さ581、581÷880 */
	aspect-ratio: 880/581;
}

}

@media screen and (min-width: 768px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.4814814815vw;
}

.l-about { /* ボタンの影（4px下）分を加算 */
	margin-top: 8.75rem;
}

.about__inner { /* gridに変更するので不要と思いきや、あしらいで必要だった */
	position: relative; /* gridに変更。背景画像とテキストの重なりのgrid */
}

.about__inner::after {
	background-image: url(../images/common/illustration1.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	bottom: -5.625rem;
	content: "";
	display: inline-block;
	height: 11.3125rem;
	position: absolute; /* ピクパに合わせて650→635へ */
	right: calc(50% - min(48vw, 39.6875rem));
	width: 12.125rem;
}

.about__body { /* align-itemsとjustify-itemsの一括指定*/
	align-items: center; /* gridに変更。背景画像とテキストの重なりのgrid */
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	justify-items: center;
	margin-top: 2.5rem;
	place-items: center; /* gridに変更するので不要と思いきや、あしらいで必要だった */
	position: relative;
}

.about__images {
	aspect-ratio: 1080/661; /* 「.container（全体配置）」に対する指定 */
	grid-area: 1/1/2/2;
}

.about__image:first-child { /* gridでは指定が不要？ */
}

.about__image:last-child { /* gridでは指定が不要？ */
}

.about__contents {
	color: #fff;
	display: flex; /* grid修正で削除 */ /* grid修正で追加。「.container（全体配置）」に対する指定 */
	grid-area: 1/1/2/2; /* テキストフィードバック後のピクパで0→-10 */
	justify-content: space-between;
	margin-left: auto; /* grid修正で追加 */
	margin-right: 2.5rem;
	max-width: 52.5rem; /* 位置調整 */
	padding-bottom: 1.1875rem;
	z-index: 2;
}

.about__lead {
	color: #fff;
	font-size: 5rem; /* 100/80=1.25 */
	line-height: 1.25;
	margin-right: 2.5rem; /* テキストフィードバック後のピクパで0→-10 */
	margin-top: 0;
}

.about__wrap {
	max-width: 25rem;
}

.about__text {
	margin-top: 0;
}

.about__button {
	margin-top: 2.5rem;
}

.blog-card__body {
	margin-top: 1.25rem;
}

.blog-card__title {
	padding-bottom: 0;
}

.blog {
	padding-top: 6.25rem; /* 背景つけるのに、p-voiceに背景つけるとサイズ指定ができないので、
    別要素につける。その時の位置指定のためにrelative */
	position: relative;
}

.blog__background {
	background-image: url(../images/common/sec4-blog-background-pc.jpg);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block; /* 幅1440、高さ500 */
	height: 31.25rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.blog__background-fishes::before {
	background-image: url(../images/common/illustration2.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 12.5625rem; /* ピクパ参考に80→54に調整 */ /* ---
    テキストフィードバック
    キャンバス幅1440の半分＝720
    キャンバス左端から100なので、720-100=620、かな？
    ----*/
	left: calc(50% - min(48vw, 38.75rem));
	overflow: hidden;
	position: absolute;
	top: 1.5rem; /* 幅437、高さ201 */
	width: 27.3125rem;
}

.blog__title {
	color: #fff;
}

.blog__title .section-title__japanese {
	color: #fff;
}

.blog__inner { /* これがないと、背景画像がabsoluteなので下にいってしまう */
	position: relative;
}

.blog__items {
	grid-template-columns: repeat(3, 1fr);
	margin-top: 5rem;
}

.blog__button {
	margin-top: 5rem;
}

.br-sp {
	display: none;
}

.breadclumb__piece:nth-of-type(2).breadclumb__piece:not(:last-of-type) {
	display: block;
}

.button-circle {
	height: 5rem;
	width: 5rem;
}

.button-circle__top::after {
	height: 2.5rem;
}

.campaign__card-swiper .swiper-slide {
	width: 20.875rem;
}

.l-campaign {
	margin-top: 7.5rem;
}

.campaign__circle-buttons {
	display: flex;
	gap: 5rem;
	height: 5rem;
	position: absolute; /* 円は擬似要素だから、矢印以外飛び出してしまう？？ */
	right: 1.5rem;
	top: 0;
	width: 15rem;
}

.campaign__card {
	margin-top: 2.5rem;
}

.campaign__card-link {
	width: 20.8125rem;
}

.campaign__button {
	margin-top: 4.6875rem;
}

.card__img--about:first-child::before { /* 幅400？、高さ606？、606÷400 */ /* gridでpadding-topから変更 */
	aspect-ratio: 400/606;
}

.card__img--contact::before { /* 幅273、高さ148、148÷273=54.212454 */
}

.card__img--information::before { /* 540、356=65.925925925% */
}

.card__img--price::before {
	padding-top: 151.62601526%;
}

.l-contact {
	margin-top: 8.75rem;
}

.contact__inner { /* ぼかし */
	box-shadow: 0px 0px 15px -5px #777777;
	flex-direction: row;
	max-width: 67.5rem;
	padding-bottom: 5rem;
	padding-left: 3.125rem;
	padding-right: 7rem;
	padding-top: 5rem;
}

.contact__inner::before {
	height: 8.625rem;
	right: calc(50% - min(48vw, 670px));
	top: -2.1875rem; /* 幅301、高さ138 */
	width: 18.8125rem;
}

.contact__pop {
	align-items: center;
	display: flex; /* 81/918 */
	margin-left: 8.823529%;
	margin-top: 0; /* 315/918 */
	width: 34.313725%;
}

.contact__stripe {
	background-color: #408F95;
	height: 15.9375rem;
	width: 0.0625rem;
}

.contact__contents { /* 82/918 */
	margin-right: 8.932462%;
	padding-left: 0;
	padding-right: 0; /* 440/918 */
	width: 47.930283%;
}

.contact__logo { /* pefrect-pixelの調整 */
	padding-bottom: 0.125rem;
}

.contact__logoLink {
	height: 4.6875rem;
	width: 12.5rem;
}

.contact__access {
	flex-direction: row;
	margin-top: 1.5rem;
	max-width: 27.5rem;
}

.contact__information { /* 21/440 */
	margin-right: 4.772727272%;
	margin-top: 0; /* 146/幅440 */
	width: 33.181818%;
}

.contact__items {
	text-align: left;
}

.contact__image {
	margin-top: 0; /* margin93/1077=8.635097% */ /* (100%-margin)÷2=50%-4.317549% */ /* 幅492、高746 */ /* 273/440 */
	width: 62.0454545%;
}

.contact__image-wrap {
	height: 9.25rem;
	width: 17.0625rem;
}

.l-d-about-gallery {
	margin-top: 8.75rem;
}

.d-about-gallery {
	padding-bottom: 0rem;
	padding-top: 0rem;
}

.d-about-gallery__inner {
	position: relative;
}

.d-about-gallery__inner::before {
	background-image: url(./images/common/illustration5.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 8.625rem;
	position: absolute; /* ピクパに合わせて650→635へ */
	right: calc(50% - min(48vw, 39.6875rem));
	top: -5rem;
	width: 18.8125rem;
}

.l-d-about { /* ボタンの影（4px下）分を加算 */
	margin-top: 8.75rem;
}

.d-about__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-about__inner { /* gridに変更するので不要と思いきや、あしらいで必要だった */
	position: relative; /* gridに変更。背景画像とテキストの重なりのgrid */
}

.d-about__body { /* align-itemsとjustify-itemsの一括指定*/
	align-items: center; /* gridに変更。背景画像とテキストの重なりのgrid */
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
	justify-items: center;
	margin-top: 2.5rem;
	place-items: center; /* gridに変更するので不要と思いきや、あしらいで必要だった */
	position: relative;
}

.d-about__images {
	aspect-ratio: 1080/661; /* 「.container（全体配置）」に対する指定 */
	grid-area: 1/1/2/2;
}

.d-about__image:first-child { /* gridでは指定が不要？ */
}

.d-about__image:last-child { /* gridでは指定が不要？ */
}

.d-about__contents {
	align-items: center;
	color: #fff;
	display: flex; /* grid修正で削除 */ /* grid修正で追加。「.container（全体配置）」に対する指定 */
	grid-area: 1/1/2/2; /* テキストフィードバック後のピクパで0→-10 */
	justify-content: space-between;
	margin-left: auto; /* grid修正で追加 */
	margin-right: 2.5rem;
	max-width: 52.5rem; /* 位置調整 */
	padding-bottom: 1.1875rem;
	z-index: 2;
}

.d-about__lead {
	color: #fff;
	font-size: 5rem; /* 100/80=1.25 */
	line-height: 1.25;
	margin-right: 2.5rem; /* テキストフィードバック後のピクパで0→-10 */
	margin-top: 0;
}

.d-about__wrap {
	max-width: 25rem;
}

.d-about__text {
	margin-top: 0;
}

.d-blog-page {
	margin-top: 9.375rem;
}

.d-blog__background-fishes::before {
	height: 8.625rem;
	top: -4.375rem;
	width: 18.8125rem;
}

.d-blog-page__inner {
	display: flex;
	margin-top: 4.25rem;
}

.d-blog-page__main {
	max-width: 44.125rem;
	width: 65.3703703704%;
}

.d-blog-page__side {
	margin-left: 7.4074074074%;
	margin-top: 0;
	max-width: 18.375rem;
	width: 27.2222222222%;
}

.d-blog-page__page {
	margin-top: 5rem;
}

.d-blog-page-nav {
	width: 100%;
}

.d-blog-page__page .after {
	margin-left: 5rem;
}

.d-blog-page__title {
	font-size: 2rem;
	line-height: 1.4375;
}

.d-blog-page__body {
	margin-top: 2.5rem;
}

.d-blog-page__block:not(:first-of-type) {
	margin-top: 2.5rem;
}

.d-blog-page__contact {
	margin-top: 8.75rem;
}

.d-blog {
	margin-top: 9.375rem;
}

.d-blog__background-fishes::before {
	height: 8.625rem;
	top: -4.375rem;
	width: 18.8125rem;
}

.d-blog__inner {
	display: flex;
	margin-top: 4.25rem;
}

.d-blog__main {
	max-width: 44.125rem;
	width: 65.3703703704%;
}

.d-blog__side {
	margin-left: 7.4074074074%;
	margin-top: 0;
	max-width: 18.375rem;
	width: 27.2222222222%;
}

.d-blog__items {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 5rem;
	row-gap: 5rem;
}

.d-campaign {
	margin-top: 9.375rem;
}

.d-campaign__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-campaign__page {
	margin-top: 4.375rem;
}

.d-campaign__cards-inner {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
}

.d-campaign__card {
	max-width: 32.5rem;
	width: 48.1481481481%;
}

.d-campaign__card:nth-of-type(2),
.d-campaign__card:nth-of-type(4) {
	margin-left: 3.7037037037%;
}

.d-campaign__card:not(:first-of-type) {
	margin-top: 0;
}

.d-campaign__card:nth-of-type(3),
.d-campaign__card:nth-of-type(4) {
	margin-top: 5rem;
}

.d-campaign__cards .introduction-card__name {
	font-size: 1.5rem;
}

.d-campaign__cards .introduction-card__footer {
	padding-bottom: 0;
}

.d-campaign__cards .introduction-card__detail-content {
	padding-top: 1.5rem;
}

.d-campaign__cards .introduction-card__detail {
	padding: 0 1.5rem 2.5rem;
}

.d-contact-thanks {
	margin-top: 9.375rem;
}

.d-contact-thanks__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-contact {
	margin-top: 9.375rem;
}

.d-contact__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-contact__inner {
	max-width: 46.875rem;
	padding-left: 25px;
	padding-right: 25px;
}

.d-contact dl {
	display: flex;
}

.d-contact dl:first-of-type {
	padding-bottom: 2.5rem;
}

.d-contact dl:not(:first-of-type) {
	padding: 2.5rem 0;
}

.d-contact dt {
	width: 31.4285714286%;
}

.d-contact dd {
	margin-top: 0;
	width: 68.5714285714%;
}

.d-faq {
	margin-top: 9.375rem;
}

.d-faq__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-faq__inner {
	max-width: 46.875rem;
	padding-left: 25px;
	padding-right: 25px;
}

.d-faq__contact {
	margin-top: 8.75rem;
}

.d-information {
	margin-top: 9.375rem;
}

.d-information__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
	z-index: -1;
}

.d-information__cards {
	margin-top: 1.5rem;
}

.d-information__contact {
	margin-top: 8.75rem;
}

.d-page404 {
	padding-top: 5.625rem;
}

.d-page404__inner::before {
	width: 43.625rem;
}

.d-page404__block {
	margin-top: 7.5rem;
}

.d-page404__footer {
	padding-bottom: 5rem;
	padding-top: 14.25rem;
}

.d-price {
	margin-top: 9.375rem;
}

.d-price__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-price__inner {
	max-width: 46.875rem;
	padding-left: 25px;
	padding-right: 25px;
}

.d-price__body:not(:first-of-type) {
	margin-top: 5rem;
}

.d-price__contact {
	margin-top: 8.75rem;
}

.d-privacy {
	margin-top: 9.375rem;
}

.d-privacy__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-privacy__inner {
	max-width: 53.125rem;
	padding-left: 25px;
	padding-right: 25px;
}

.d-privacy__contact {
	margin-top: 8.75rem;
}

.d-site__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-site__nav { /* 150-12=138 */
	margin-top: 8.625rem;
}

.d-terms {
	margin-top: 9.375rem;
}

.d-terms__background-fishes::before {
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-terms__inner {
	max-width: 53.125rem;
	padding-left: 25px;
	padding-right: 25px;
}

.d-terms__contact {
	margin-top: 8.75rem;
}

.d-voice {
	margin-top: 9.375rem;
}

.d-voice__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -4.375rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.d-voice__page {
	margin-top: 4.375rem;
}

.faq-piece__q {
	font-size: 1.25rem;
	line-height: 1.6;
	padding: 1.5rem 2.5rem;
}

.faq-piece__q span {
	height: 2rem;
	width: 2rem;
}

.faq-piece__q span::before {
	width: 2rem;
}

.faq-piece__q span::after {
	height: 2rem;
}

.faq-piece__a-inner {
	padding-top: 1rem;
}

.faq-piece__a p {
	line-height: 1.4375;
	padding: 2.5rem 2.5rem;
}

.l-footer {
	margin-top: 10rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.footer__inner { /* 隙間（120）含めた総幅1008、
    レスポンシブ基準で仮決め左padding15*2を足して1008+15*2=1038 */
	max-width: 64.875rem; /* 1440の場合で隙間（120）含めた総幅1008、
    隙間なしだと648（ブレークポイントは768）なので、
    左右paddingは無視する？？ */ /* テキストフィードバック（他との共通padding）？？ */
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.footer__header {
	display: flex;
}

.footer__logo {
	height: 4.6875rem;
	margin-right: 2.5rem;
	width: 12.5rem;
}

.footer__sns-items {
	gap: 1rem;
}

.footer__nav { /* 24-12=12 */
	margin-top: 0.75rem;
}

.footer__copyright { /* 80-12（ナビのpadding分） */
	margin-top: 4.25rem;
}

.footer__copyright small {
	font-size: 0.875rem; /* 18/14=1.28571428571 */
	line-height: 1.2857142857;
}

[type=checkbox] + span::before {
	top: 50%;
	transform: translateY(-50%);
}

select {
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}

.form__concent {
	margin-top: 5rem;
	text-align: center;
}

.form__concent [type=checkbox] + span {
	display: inline;
	width: 100%;
}

.form__concent [type=checkbox] + span::before {
	top: 50%;
	transform: translateY(-50%);
}

.form__concent [type=checkbox]:checked + span:after {
	margin-top: -0.2em;
}

.gallery__body { /* 隙間を埋めながら配置 */ /* カラム数を設定 */ /* 縦方向の分割 */
	grid-template-columns: 492fr 88fr 492fr;
	grid-template-rows: repeat(4, 1fr);
	margin-top: 5rem; /* 横方向に何個並べるか。(repeat(繰返し回数,繰返す値） */ /* （繰返し2回、18.55%の幅で）と、（繰返し数3回、残りで）？？？*/ /* 最初の縦分轄 全体の幅345、ズレ64/345=18.5507246% */ /* 次の縦分割も、ズレ200なので、上記と同じ＝繰返し、となる*/ /* repeat(3, 1fr)に意味はあるのか？？ */
}

.card__img--d-about:first-of-type {
	grid-column: 1/2;
	grid-row: 1/3;
}

.card__img--d-about:nth-of-type(2) {
	grid-column: 2/4;
	grid-row: 1/2;
}

.card__img--d-about:nth-of-type(3) {
	grid-column: 2/4;
	grid-row: 2/3;
}

.card__img--d-about:nth-of-type(4) {
	grid-column: 1/3;
	grid-row: 3/4;
}

.card__img--d-about:nth-of-type(5) {
	grid-column: 1/3;
	grid-row: 4/5;
}

.card__img--d-about:nth-of-type(6) {
	grid-column: 3/4;
	grid-row: 3/5;
}

.genre-information__item { /*やりたい計算＝(100% - 90px × 2) ÷ 3 */
	width: calc(33.3333333333% - 3.75rem);
}

.genre-information__link {
	align-items: center;
	display: flex;
	font-size: 1.5rem;
	justify-content: center;
	line-height: 1; /* 高さ90、font24：(90-64)/2=13 */
	padding: 0.8125rem 0.3125rem;
}

.genre-information__link-image {
	display: block;
	height: 4rem;
	width: 4rem;
}

.genre-information__link span {
	margin-left: 0.5rem;
}

.genre__items {
	flex-wrap: no-wrap;
}

.genre__item {
	width: 10.125rem;
}

.genre__item:nth-of-type(2),
.genre__item:nth-of-type(4) {
	margin-left: 0;
}

.genre__item:not(:first-of-type) {
	margin-left: 2rem;
}

.genre__item:nth-of-type(3),
.genre__item:nth-of-type(4) {
	margin-top: 0;
}

.header {
	height: 5.625rem;
}

.header__inner {
	padding: 0 2.5rem;
}

.header__logo {
	height: 3.125rem;
	width: 8.3125rem;
}

.header__drawer {
	display: none;
}

.header__pc-nav {
	align-items: center;
	display: flex;
}

.information-card__inner {
	align-items: center;
	flex-direction: row;
}

.information-card__contents {
	width: 47.6744186047%;
}

.information-card__contents-text {
	padding-top: 1rem;
}

.information-card__image { /* 1080-24*2= */
	margin-left: 4.6511627907%;
	margin-top: 0;
	width: 47.6744186047%;
}

.information-card__image::before { /* 幅492、高さ313、313÷492 */
	padding-top: 63.617886%;
}

.l-information {
	margin-top: 8.75rem;
}

.information {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.information__body {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
}

.information__image { /* 540/1080 */
	width: 50%;
}

.information__wrap {
	margin-top: 0; /* 492/1080 */
	width: 45.555555%;
}

.information__lead {
	font-size: 1.5rem;
	line-height: 1;
	padding-bottom: 0.25rem;
}

.information__button {
	margin-top: 2.5rem;
}

.inner {
	max-width: 1130px;
	padding-left: 25px;
	padding-right: 25px;
}

.introduction-card__img { /* 223/333=66.966967% */
	padding-top: 66.966967%;
}

.introduction-card__body { /* ピクパtop24→25 */
	padding-top: 1.5rem;
}

.introduction-card__genre { /* ピクパ縦6→11 */
	padding: 0.6875rem 1rem;
}

.introduction-card__footer {
	padding: 0rem 1rem 2.5rem;
}

.introduction-card__text {
	font-size: 1rem; /* 24/16=1.5 */
	line-height: 1.5;
	padding-top: 1rem;
}

.introduction-card__price {
	gap: 1.5rem;
}

.introduction-card__price-before {
	font-size: 1.5rem;
}

.introduction-card__price-after {
	font-size: 2.5rem;
	width: 9.3125rem;
}

.introduction-card__detail {
	display: block;
}

.mv-down__img::before { /* 幅1440、高さ548 */
	aspect-ratio: 1440/548;
}

.mv-down__title {
	font-size: 5rem; /* 100/80=1.25 */
	line-height: 1.25;
	top: 60%;
}

.mv__title {
	font-size: 5rem; /* 100/80=1.25 */
	line-height: 1.25;
}

.nav-footer__inner { /* ？？？ */
	padding-left: 1.125rem;
}

.nav-footer__inner--left {
	display: flex; /* ヒトデ部分が無視されすので120+18+ヒトデ左余白4=142 */
	gap: 8.875rem;
}

.nav-footer__inner--right {
	display: flex;
	gap: 8.875rem;
	width: auto;
}

.nav-footer__inner--left .nav-footer__items:nth-child(2) {
	margin-top: 0;
}

.nav-footer__inner--right .nav-footer__items:nth-child(2) {
	margin-top: 0;
}

.page-nav {
	justify-content: center;
}

.page-nav__items {
	padding: 0 2.5rem;
}

.page-nav__item:nth-of-type(5),
.page-nav__item:nth-of-type(6) {
	display: block;
}

.page404__contents {
	font-size: 10rem;
}

.page404__text {
	margin-top: 1.5rem;
}

.page404__btn {
	margin-top: 5rem;
}

.price-table {
	display: flex;
	width: 43.75rem;
}

.price-table thead { /*つけてみたところ（table-caption戻してflexに） */
	display: flex;
	width: 28.5714285714%;
}

.price-table tbody {
	width: 71.4285714286%;
}

.price-table tbody tr {
	max-width: 100%;
	width: 500px;
}

.price-table__course {
	max-width: 68%;
	text-align: left;
	width: 21.25rem;
}

.price-table__price {
	max-width: 32%;
	width: 10rem;
}

.price-table__title {
	position: relative;
}

.price-table__title-th {
	flex-direction: column-reverse;
	height: 96px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
}

.price-table__title-th-img {
	height: 4rem;
	width: 4rem;
}

.price-table__title-th-text {
	margin-bottom: 0.5rem;
	margin-left: 0;
}

.l-price {
	margin-top: 8.75rem;
}

.price {
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
}

.price__wrapper {
	flex-direction: row-reverse;
	margin-top: 2.5rem;
	max-width: 67.3125rem;
}

.price__image-wrap {
	margin-left: 8.635097%;
	max-width: 30.75rem; /* (100%-margin)÷2=50%-4.317549% */
	width: 45.682451%;
}

.price__table {
	max-width: 30.75rem;
}

.price__button {
	margin-top: 5rem;
}

.price__background-fishes::after {
	background-image: url(../images/common/illustration5.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: -2.75rem;
	content: "";
	display: inline-block;
	height: 12.5625rem;
	left: -5.0625rem;
	left: calc(50% - min(50vw, 38.75rem));
	position: absolute;
	width: 27.3125rem;
}

.rule__title {
	font-size: 2rem;
}

.section-title__english {
	font-size: 2.5rem;
	line-height: 1;
}

.section-title__japanese {
	margin-top: 0.5rem;
}

.service__item:first-child {
	margin-top: 0;
}

.service__item dl {
	font-size: 1rem; /* 24/16 */
	line-height: 1.5;
}

.thanks__content p {
	line-height: 1.4375;
}

.to-top {
	height: 5rem;
}

#js-pagetop {
	bottom: 1.25rem;
	right: 1.25rem;
}

.voice-card {
	padding: 1.5rem;
}

.voice-card__information { /* 16/472 */
	margin-right: 3.389830508%;
	margin-top: 1.5rem; /* 276/472=58.47457627% */
	width: 58.47457627%;
}

.voice-card__category {
	align-items: flex-end;
	flex-direction: row;
	justify-content: space-between;
}

.voice-card__generation {
	margin-top: 0rem;
}

.voice-card__thema span {
	padding: 0.5625rem 1rem;
}

.voice-card__title {
	font-size: 1.5rem; /* 70/48=1.45833333 */
	line-height: 1.45833333;
	margin-top: 0.75rem;
	padding-bottom: 0.0625rem;
}

.voice-card__image {
	padding-top: 0; /* 180/472=38.13559322% */
	width: 38.13559322%;
}

.voice-card__img { /* 140/180 */
	padding-top: 77.777777%;
}

.voice-card__contents {
	margin-top: 2.5rem;
}

.voice-cards {
	grid-template-columns: repeat(2, 1fr); /* これがないと、背景画像がabsoluteなので下にいってしまう */
	position: relative;
	row-gap: 5rem;
}

.l-voice { /* ボタンの影の下4px分 */
	margin-top: 8.75rem;
}

.voice__background-fishes::before {
	background-image: url(../images/common/illustration3.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	content: "";
	display: inline-block;
	height: 8.625rem; /* テキストフィードバック */ /* ピクパ参考に80→50→56に */ /* キャンバス幅1440の半分720 - 左端から100 = 620 */
	left: calc(50% - min(48vw, 38.75rem));
	position: absolute;
	top: -7.5rem; /* 幅437、高さ201 */
	width: 18.8125rem;
}

.voice__items {
	margin-top: 1.875rem;
}

.voice__button {
	margin-top: 5rem;
}

.voice__background-fishes-last::after {
	background-image: url(../images/common/illustration4.png);
	background-position: center;
	background-repeat: no-repeat; /* coverは覆いつくす */
	background-size: cover;
	bottom: -4.1875rem;
	content: "";
	display: inline-block;
	height: 10.125rem;
	overflow: hidden;
	position: absolute;
	right: 1.5625rem; /* 幅71、高さ162 */
	width: 4.4375rem;
}

}

@media screen and (min-width: 768px) and (min-width: 768px) {

.card__img--information::before {
	padding-top: 65.925925925%;
}

}

@media (min-width: 1080px) {

html {
	font-size: 16px;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


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