/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

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

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

body {
	background: #fff;
	color: #000000;
	font-family: "Helvetica", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	width: 95%;
}

.c-widget--title {
	background: url(../img/heading-line.png) repeat-x bottom center/340px auto;
	color: #000;
}

.button .btn {
	border-radius: 20px;
	display: inline-flex;
	padding: 8px 50px;
	transition: all 0.3s;
}

.button .btn:hover {
	opacity: 0.7;
	transform: translateY(6px);
}

.c_o_1 {
	background: linear-gradient(to right, #fcc051, #f8821b);
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* オレンジに合うシャドー */
	color: #fff;
}

.c_o_2 {
	background: linear-gradient(to right, #f7b360, #fc9731);
	box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4); /* オレンジに合うシャドー */
	color: #fff;
}

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

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

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

.w-button {
	border: 2px solid #000;
	border-radius: 5px;
	color: #000;
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-top: 20px;
	transition: all 0.5s;
}

.w-button:hover {
	background: #fff;
	border: none;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.w-button .w-btn {
	display: inline-flex;
	padding: 10px 30px;
}

.w-button-all {
	border: 2px solid #000;
	border-radius: 5px;
	color: #000;
	font-weight: 700;
	letter-spacing: 5px;
	margin: 100px auto 0;
	max-width: 280px;
	padding: 15px 0;
	text-align: center;
	transition: all 0.5s;
}

.w-button-all:hover {
	background: #fff;
	border: none;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.header {
	width: 100%;
}

.header .header__inner {
	align-items: center;
	display: flex;
	justify-content: right;
	margin: auto;
	max-width: 1950px;
	padding: 40px 15px;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1006;
}

.header .header__inner.active {
	background: rgba(251, 251, 251, 0.2);
	transition: all 0.3s ease-in;
}

.header .header__inner .p-header__logo {
	left: 50px;
	position: fixed;
	top: 7px;
	z-index: 1004;
}

.header .header__inner .p-header__logo a img {
	display: block;
	width: 150px;
	margin-top: 10px;
}

.header .header__inner .header__nav .header__link {
	color: #fff;
	font-weight: 700;
	letter-spacing: 3px;
	position: relative;
	transition: color 0.3s ease;
}

.header .header__inner .header__nav .header__link::after { /*アニメーションの速度設定*/
	-webkit-transition: all 0.5s;
	background: linear-gradient(to right, #fcc051, #f8821b);
	bottom: -5px;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute; /*幅を0に設定*/
	width: 0;
}

.header .header__inner .header__nav .header__link:hover::after {
	width: 100%;
}

.header .header__inner .header__nav .header__link:active::after {
	width: 100%;
}

.header .header__inner .header__nav .header__button {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 60px;
	color: #fff;
	display: inline-block;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 0.48px;
	overflow: hidden;
	padding: 7px 30px;
	position: relative;
	transition: ease 0.2s;
}

.header .header__inner .header__nav .header__button:hover {
	opacity: 0.7;
}

.header .header__inner .drawer-icon {
	background: transparent;
	height: 21px;
	position: relative;
	width: 36px;
	z-index: 1003;
}

.header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
	background: #000;
	top: 10px;
	transform: rotate(40deg);
}

.header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
	background: #000;
	top: 10px;
	transform: rotate(-40deg);
}

.header .header__inner .drawer-icon .drawer-icon__bar {
	background: #000;
	border-radius: 6px;
	height: 2px;
	position: absolute;
	right: 7px;
	top: 50%;
	transform: translateY(50%);
	transition: transform 0.3s linear, top 0.3s linear;
	width: 40px;
	z-index: 1008;
}

.header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(2) {
	top: 27px;
}

#js-header.scrolled .header__link {
	color: #333;
}

.drawer-content {
	background: linear-gradient(to right, #fcc051, #f8821b);
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s linear;
	z-index: 1001;
}

.drawer-content .drawer-content__menu {
	color: #fff;
}

.drawer-content .drawer-content__menu .drawer-content__link {
	border-bottom: 1px solid #292929;
	display: block;
	font-weight: 700;
	letter-spacing: 0.48px;
	padding: 20px 0 14px 10px;
	text-align: left;
}

.drawer-content .drawer-content__menu .drawer-content__link:first-child {
	border-top: 1px solid #292929;
}

.drawer-content .drawer-content__menu .drawer-content__button {
	margin-top: 14px;
	text-align: left;
}

.drawer-content .drawer-content__menu .p-drawer__content-sns ul {
	display: flex;
	gap: 10px;
	margin-top: 50px;
}

.drawer-content .drawer-content__menu .p-drawer__content-sns ul li img {
	height: 30px;
	width: 30px;
}

.overlay {
	align-items: center;
	background: #FFB74D;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1005;
}

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

.images {
	height: 550px;
	position: relative;
}

.img-holder {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	height: 100%;
	margin: 0 auto;
	position: relative;
	width: 100%;
	z-index: 2;
}

.img-holder img {
	left: -110%;
	position: absolute;
	top: 0;
}

.text {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	align-items: center;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	display: flex;
	flex-direction: column;
	height: 400%;
	justify-content: center;
	margin: 1em 0;
	position: relative;
	text-align: center;
}

.counter {
	position: relative;
	top: -50%;
}

.counter p {
	font-size: 14rem;
}

.counter p span,
.logo p span {
	color: #000000;
	position: relative;
}

.logo {
	left: 50%;
	position: absolute;
	top: 70%;
	transform: translate(-50%, -50%);
}

.logo p {
	font-size: 10rem;
}

.logo p span {
	position: relative;
	top: 200px;
}

nav a,
nav p {
	color: #000;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
}

.menu {
	display: flex;
	justify-content: center;
}

.shop {
	display: flex;
	gap: 2em;
	justify-content: flex-end;
}

.hero {
	height: 100vh;
	overflow: hidden;
	width: 100vw;
}

.hero img {
	transform: scale(2);
}

.hero-copy {
	left: 20%;
	position: absolute;
	text-transform: uppercase;
	top: 50%;
}

.hero-copy h1 {
	color: var(--color-accent);
	font-size: 5vw;
	font-weight: 700;
	line-height: 100%;
}

.fv {
	height: 100vh; /* ビューポートの高さを使用 */
	overflow: hidden; /* ビデオがはみ出さないようにする */
	position: relative;
	width: 100%;
}

.fv .fv-content {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.fv .fv-content .fv-content video {
	-o-object-fit: cover;
	color: #fff;
	height: 100%;
	object-fit: cover; /* ビデオをアスペクト比を保ちながら全体に拡大 */
	width: 100%;
}

.p-gallery {
	background: linear-gradient(to right, #fcc051, #f8821b);
	padding: 150px 0;
}

.p-gallery .p-gallery__inner .p-gallery__slider {
	margin-top: 30px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content {
	align-items: center;
	display: flex;
	gap: 40px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 0 0 0 5%;
	width: 100%;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message .p-tv__content-message-title {
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin: 30px 0 40px;
	max-width: 600px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message .p-tv__content-message-title .p-tv__content-message-titleSub {
	font-size: 1rem;
	letter-spacing: 3px;
	padding-bottom: 35px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message .p-tv__content-message-desc {
	font-size: 1rem;
	letter-spacing: 3px;
	margin: 40px 0 30px;
	max-width: 500px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-img {
	width: 50%;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-img img {
	width: 100%;
}

.gallery__swiper {
	padding-bottom: 80px;
}

.gallery__pagination {
	bottom: 0 !important;
	display: flex;
	gap: 12px;
	justify-content: center;
}

.gallery__pagination .swiper-pagination-bullet {
	background: #bcbcbc;
	height: 10px;
	margin-left: 0 !important;
	margin-right: 0 !important;
	opacity: 1;
	width: 10px;
}

.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
}

.gallery__prev,
.gallery__next {
	height: 40px;
	margin-top: -40px;
	width: 40px;
}

.gallery__prev::after,
.gallery__next::after {
	display: none;
}

.gallery__prev {
	background: url(../img/ic_l.png) no-repeat center center/contain;
}

.gallery__next {
	background: url(../img/ic_r.png) no-repeat center center/contain;
}

.fv-shopify .fv-shopify__content {
	position: relative;
}

.fv-shopify .fv-shopify__content img {
	width: 100%;
}

.fv-shopify .fv-shopify__content .fv-shopify__content--text {
	color: #fff;
	font-size: 6rem;
	font-weight: 700;
	left: 7%;
	letter-spacing: 5px;
	line-height: 1.3;
	padding: 20px 50px;
	position: absolute;
	text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
	top: 27%;
}

.fv-shopify .fv-shopify__content .fv-shopify__content--text img {
	margin-bottom: 30px;
	width: 70%;
}

.voice {
	margin-top: 150px;
}

.voice .voice-shopify__content .voice-shopify__content--title {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #fcc051, #f8821b);
	background-clip: text;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	text-align: center;
}

.voice .voice-shopify__content .voice-shopify__content--title::after {
	background: #feaa3e;
	bottom: -15px;
	content: "";
	height: 4px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3em;
	z-index: 1;
}

.voice .voice-shopify__content .voice-shopify__content--title span {
	color: #939393;
	font-size: 1.5rem;
}

.voice .voice-shopify__content .voice-shopify__content--voice {
	display: flex;
	justify-content: space-between;
	margin: 100px auto 0;
	max-width: 1200px;
	width: 100%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-img {
	width: 45%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-img a img {
	width: 100%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-text {
	letter-spacing: 3px;
	width: 45%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-text .voice-shopify__content--voice-text-title {
	border-bottom: 3px solid #feaa3e;
	font-size: 2rem;
	font-weight: 700;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-text .voice-shopify__content--voice-text-message {
	font-size: 1.2rem;
	margin-top: 20px;
}

.flow-shopify {
	margin-top: 150px;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--title {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #fcc051, #f8821b);
	background-clip: text;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	text-align: center;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--title::after {
	background-color: #feaa3e;
	bottom: -15px;
	content: "";
	height: 4px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3em;
	z-index: 1;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--title span {
	color: #939393;
	font-size: 1.5rem;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow {
	margin-top: 70px;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li {
	margin-top: 20px;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li dl {
	align-items: center;
	border: 3px solid #feaa3e;
	display: flex;
	letter-spacing: 3px;
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li dl dt {
	background: #feaa3e;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 20px 0;
	text-align: center;
	width: 25%;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li dl dd {
	font-size: 1.1rem;
	padding-left: 30px;
	width: 75%;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li .arrow-down-content {
	align-items: center;
	display: flex;
	justify-content: center;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li .arrow-down-content .arrow-down {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 50%;
	height: 40px;
	position: relative;
	width: 40px;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li .arrow-down-content .arrow-down::after {
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid white;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0;
}

.advantages .advantages-content {
	margin-top: 150px;
}

.advantages .advantages-content .advantages-shopify__content--title {
	color: #feaa3e;
	font-size: 2.5rem;
	font-weight: 760;
	position: relative;
	text-align: center;
}

.advantages .advantages-content .advantages-shopify__content--title::after {
	background: #feaa3e;
	bottom: -15px;
	content: "";
	height: 4px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3em;
	z-index: 1;
}

.advantages .advantages-content .advantages-content-items {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1200px;
}

.advantages .advantages-content .advantages-content-items:not(:first-child) {
	margin-top: 70px;
}

.advantages .advantages-content .advantages-content-items .advantages-content__img {
	width: 45%;
}

.advantages .advantages-content .advantages-content-items .advantages-content__message {
	letter-spacing: 5px;
	text-align: center;
	width: 45%;
}

.advantages .advantages-content .advantages-content-items .advantages-content__message .advantages-content__message-title {
	font-size: 1.7rem;
	font-weight: 700;
}

.advantages .advantages-content .advantages-content-items .advantages-content__message .advantages-content__message-dcr {
	margin-top: 15px;
}

.plan-shopify {
	margin-top: 150px;
}

.plan-shopify .plan-shopify__content .plan-shopify__content--title {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(to right, #fcc051, #f8821b);
	background-clip: text;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	text-align: center;
}

.plan-shopify .plan-shopify__content .plan-shopify__content--title::after {
	background: #feaa3e;
	bottom: -15px;
	content: "";
	height: 4px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3em;
	z-index: 1;
}

.plan-shopify .plan-shopify__content .plan-shopify__content--title span {
	color: #939393;
	font-size: 1.5rem;
}

.plan-shopify .plan-shopify__content--plan-wrapper {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 70px;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan {
	border: 1px solid #c2c2c2;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.2);
	padding-top: 30px;
	text-align: center;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-title {
	font-size: 1.5rem;
	font-weight: 700;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-title {
	font-size: 1.2rem;
	letter-spacing: 3px;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-title .en {
	color: #feaa3e;
	font-size: 2rem;
	font-weight: 700;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-title .etc {
	color: #000;
	font-size: 0.7rem;
	padding: 0 20px;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-button {
	margin-top: 30px;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-button a {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 20px;
	color: #fff;
	padding: 13px 30px;
	transition: all 0.3s;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-button a:hover {
	opacity: 0.7;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-etc {
	align-items: center;
	display: flex;
	margin-top: 30px;
	text-align: left;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-etc table {
	width: 100%;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-etc table tr td {
	border-top: 2px solid #c2c2c2;
	font-size: 0.9rem;
	padding: 10px 40px;
	position: relative;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-etc table tr td::before {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 50%;
	content: "";
	height: 10px;
	left: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan .plan-shopify__content--voice-text .plan-shopify__content--voice-text-etc table tr:last-child td {
	border-bottom: 2px solid #c2c2c2;
}

.qa-shopify {
	margin: 180px auto 0;
	max-width: 1100px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content--title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items {
	margin-top: 70px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dt {
	align-items: center;
	color: #feaa3e;
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dt span {
	line-height: 140%;
	margin-right: 20px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dt span svg {
	height: 40px;
	width: 40px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dd {
	align-items: center;
	border-bottom: 1px solid #ccc;
	display: flex;
	font-size: 1.3rem;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dd span {
	margin-right: 20px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dd span svg {
	height: 40px;
	width: 40px;
}

.fv-ig .fv-ig__content {
	position: relative;
}

.fv-ig .fv-ig__content .fv-ig__content-img {
	height: 100vh;
	overflow: hidden;
	width: 100%;
}

.fv-ig .fv-ig__content .fv-ig__content-img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fv-ig .fv-ig__content .fv-ig__content--text {
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.fv-ig .fv-ig__content .fv-ig__content--text img {
	box-shadow: 10px 10px 5px #b3b3b3;
	width: 30%;
}

.fv-ig .fv-ig__content .fv-ig__content--text .fv-ig__content--text-message .fv-ig-1 {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: 10px;
	margin-top: 60px;
}

.fv-ig .fv-ig__content .fv-ig__content--text .fv-ig__content--text-message .fv-ig-2 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 5px;
	margin-top: 50px;
}

.service-ig .service-ig__content {
	margin: 150px auto 0;
	max-width: 1100px;
	text-align: center;
}

.service-ig .service-ig__content .service-ig__content--title {
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: 5px;
}

.service-ig .service-ig__content .service-ig__content--service {
	margin-top: 80px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-1 {
	display: flex;
	justify-content: space-between;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-1 .service-ig__content--service-img-1-1 img {
	width: 270px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-1 .service-ig__content--service-img-1-1 p {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 5px;
	margin-top: 20px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-2 {
	margin-top: 120px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-2 img {
	width: 60%;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-2 p {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 5px;
	margin-top: 20px;
}

.strong-ig {
	margin-top: 150px;
	padding: 130px 0;
	position: relative;
}

.strong-ig::before {
	background: url(../img//ig/ig_bg.png) no-repeat center center/cover;
	background-size: auto;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

.strong-ig .strong-ig__content {
	color: #fff;
	text-align: center;
	z-index: 2;
}

.strong-ig .strong-ig__content .strong-ig__content--title {
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: 10px;
}

.strong-ig .strong-ig__content .strong-ig__content--service-img-2 p {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 5px;
	margin-top: 70px;
}

.strong-ig .strong-ig__content .strong-ig__content--service {
	margin: 70px auto 0;
	max-width: 1100px;
}

.strong-ig .strong-ig__content .strong-ig__content--service .strong-ig__content--service-img-1 {
	display: flex;
	gap: 90px;
	justify-content: space-between;
}

.voice-ig {
	margin-top: 150px;
}

.voice-ig .voice-ig__content {
	text-align: center;
}

.voice-ig .voice-ig__content .voice-ig__content--title {
	align-items: center;
	display: flex;
	justify-content: center;
}

.voice-ig .voice-ig__content .voice-ig__content--title p {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 10px;
	margin-left: 30px;
}

.voice-ig .voice-ig__content .voice-ig__content--service {
	margin-top: 100px;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 800px;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-1 {
	width: 45%;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-1 img {
	width: 100%;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-2 {
	text-align: left;
	width: 45%;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-2 .voice-ig-1 {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 5px;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-2 .voice-ig-2 {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 5px;
	margin-top: 30px;
}

.plan-ig {
	margin-top: 150px;
	padding: 150px 0;
	position: relative;
}

.plan-ig::before {
	background: url(../img//ig/ig_bg_p.png) no-repeat center center/cover;
	background-size: auto;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

.plan-ig .plan-ig__content .plan-ig__content--title {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 5px;
	position: relative;
	text-align: center;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper {
	display: flex;
	gap: 80px;
	justify-content: center;
	margin-top: 70px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan {
	background: #fff;
	border: 1px solid #c2c2c2;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.2);
	padding: 50px 0 30px;
	text-align: center;
	width: 340px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-title {
	font-size: 1.5rem;
	font-weight: 700;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-title {
	font-size: 1.2rem;
	letter-spacing: 3px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-title .en {
	color: #feaa3e;
	font-size: 2rem;
	font-weight: 700;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-title .en-p {
	color: #feaa3e;
	font-size: 2rem;
	font-weight: 700;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-title .etc {
	color: #000;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0 20px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-button {
	margin-top: 30px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-button a {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 20px;
	color: #fff;
	padding: 13px 30px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-button a:hover {
	opacity: 0.7;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-etc {
	align-items: center;
	display: flex;
	margin-top: 30px;
	text-align: left;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-etc table {
	width: 100%;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-etc table tr td {
	border-top: 2px solid #c2c2c2;
	font-size: 0.9rem;
	padding: 10px 50px;
	position: relative;
	white-space: nowrap;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-etc table tr td::before {
	border-bottom: 5px solid #feaa3e;
	border-left: 5px solid #feaa3e;
	content: "";
	height: 10px;
	left: 22px;
	position: absolute;
	top: 48%;
	transform: rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 17px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan .plan-ig__content--voice-text .plan-ig__content--voice-text-etc table tr:last-child td {
	border-bottom: 2px solid #c2c2c2;
}

.qa-ig {
	margin: 180px auto 170px;
	max-width: 1100px;
}

.qa-ig .qa-ig__content .qa-ig__content--title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
}

.qa-ig .qa-ig__content .qa-ig__content-items {
	margin-top: 70px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dt {
	align-items: center;
	color: #feaa3e;
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dt span {
	line-height: 140%;
	margin-right: 20px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dt span svg {
	height: 40px;
	width: 40px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dd {
	align-items: center;
	border-bottom: 1px solid #ccc;
	display: flex;
	font-size: 1.3rem;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dd span {
	margin-right: 20px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dd span svg {
	height: 40px;
	width: 40px;
}

.fv-mv .fv-mv__content .fv-mv__content-img {
	height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100vw;
}

.fv-mv .fv-mv__content .fv-mv__content-img video {
	-o-object-fit: cover;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.fv-mv .fv-mv__content .fv-mv__content-img::before {
	background: rgba(0, 0, 0, 0.6);
	content: "";
	height: 100%;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}

.fv-mv .fv-mv__content .fv-mv__content--text .fv-mv__content--text-message {
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
	z-index: 2;
}

.fv-mv .fv-mv__content .fv-mv__content--text .fv-mv__content--text-message .fv-mv-1 {
	color: #fff;
	font-size: 3.5rem;
	font-weight: 700;
	letter-spacing: 8px;
}

.fv-mv .fv-mv__content .fv-mv__content--text .fv-mv__content--text-message .fv-mv-2 {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 10px;
	margin-top: 70px;
}

.service-mv {
	background: #333;
}

.service-mv .service-mv__content {
	padding: 150px 0;
}

.service-mv .service-mv__content .service-mv__content--title {
	color: #fff;
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: 5px;
	text-align: center;
}

.service-mv .service-mv__content .service-mv__content--dsc {
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 5px;
	margin-top: 40px;
	text-align: center;
}

.service-mv .service-mv__content .service-mv__content--service {
	margin-top: 100px;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
	padding: 0 20px;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 {
	cursor: pointer;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 img {
	display: block;
	overflow: hidden;
	transition: all 0.3s;
	width: 100%;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 img:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 img:hover:not(:hover) {
	transform: scale(1);
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 video {
	display: none;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 p {
	color: #fff;
	letter-spacing: 5px;
	margin-top: 20px;
	text-align: center;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-2 {
	padding: 0 20px;
	text-align: center;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-2 p {
	color: #fff;
	letter-spacing: 5px;
	margin-top: 20px;
}

.fullscreen-video {
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 9999;
}

.fullscreen-video video {
	controls: false;
	height: auto;
	max-height: 100%;
	max-width: 100%;
	width: 70%;
}

.strong-mv .strong-mv__content .strong-mv__content--title {
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: 5px;
	margin: 150px 0 100px;
	text-align: center;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 {
	display: flex;
	gap: 40px;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 {
	letter-spacing: 5px;
	width: 30%;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 img {
	width: 100%;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 .strong-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 25px;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 .strong-message {
	margin-top: 25px;
}

.flow-mv {
	background: #333;
	margin-top: 150px;
	padding: 150px 0;
}

.flow-mv .flow-mv__content .flow-mv__content--title {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.2;
	text-align: center;
}

.flow-mv .flow-mv__content .flow-mv__content--title span {
	color: #939393;
	font-size: 1.5rem;
}

.flow-mv .flow-mv__content .flow-mv__content--flow {
	margin-top: 70px;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li {
	margin-top: 20px;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li dl {
	align-items: center;
	border: 3px solid #feaa3e;
	display: flex;
	letter-spacing: 3px;
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li dl dt {
	background: #feaa3e;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 20px 0;
	text-align: center;
	width: 25%;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li dl dd {
	color: #fff;
	font-size: 1.1rem;
	padding-left: 30px;
	width: 75%;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li .arrow-down-content {
	align-items: center;
	display: flex;
	justify-content: center;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li .arrow-down-content .arrow-down {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 50%;
	height: 40px;
	position: relative;
	width: 40px;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li .arrow-down-content .arrow-down::after {
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid white;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0;
}

.plan-mv {
	margin-top: 150px;
	padding: 150px 0;
	position: relative;
}

.plan-mv::before {
	background: url(../img//mv/mv_8.png) no-repeat center center/cover;
	background-size: auto;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: -1;
}

.plan-mv .plan-mv__content .plan-mv__content--title {
	color: #fff;
	font-size: 2.5rem;
	letter-spacing: 5px;
	position: relative;
	text-align: center;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper {
	display: flex;
	gap: 80px;
	justify-content: center;
	margin-top: 70px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan {
	background: #fff;
	border: 1px solid #c2c2c2;
	box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.2);
	padding: 50px 0 30px;
	text-align: center;
	width: 340px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-title {
	font-size: 1.5rem;
	font-weight: 700;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-title {
	font-size: 1.2rem;
	letter-spacing: 3px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-title .en {
	color: #feaa3e;
	font-size: 2rem;
	font-weight: 700;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-title .en-p {
	color: #feaa3e;
	font-size: 2rem;
	font-weight: 700;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-title .etc {
	color: #000;
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0 20px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-button {
	margin-top: 30px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-button a {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 20px;
	color: #fff;
	padding: 13px 30px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-etc {
	align-items: center;
	display: flex;
	margin-top: 30px;
	text-align: left;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-etc table {
	width: 100%;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-etc table tr td {
	border-top: 2px solid #c2c2c2;
	font-size: 0.9rem;
	padding: 10px 50px;
	position: relative;
	white-space: nowrap;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-etc table tr td::before {
	border-bottom: 5px solid #feaa3e;
	border-left: 5px solid #feaa3e;
	content: "";
	height: 10px;
	left: 22px;
	position: absolute;
	top: 48%;
	transform: rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width: 17px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan .plan-mv__content--voice-text .plan-mv__content--voice-text-etc table tr:last-child td {
	border-bottom: 2px solid #c2c2c2;
}

.qa-mv {
	margin: 180px auto 0;
	max-width: 1100px;
}

.qa-mv .qa-mv__content .qa-mv__content--title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
}

.qa-mv .qa-mv__content .qa-mv__content-items {
	margin-top: 70px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dt {
	align-items: center;
	color: #feaa3e;
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dt span {
	line-height: 140%;
	margin-right: 20px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dt span svg {
	height: 40px;
	width: 40px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dd {
	align-items: center;
	border-bottom: 1px solid #ccc;
	display: flex;
	font-size: 1.3rem;
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dd span {
	margin-right: 20px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dd span svg {
	height: 40px;
	width: 40px;
}

.fv-web {
	background: #feaa3e;
}

.fv-web .fv-web__content {
	align-items: center;
	display: flex;
	overflow: hidden;
	width: 100%;
}

.fv-web .fv-web__content .fv-web__content-message {
	color: #333;
	padding-left: 10%;
	width: 50%;
}

.fv-web .fv-web__content .fv-web__content-message .fv-web__content-message-sub {
	font-weight: 700;
}

.fv-web .fv-web__content .fv-web__content-message .fv-web__content-message-title {
	font-size: 6vw;
	font-weight: 700;
	letter-spacing: 6px;
	line-height: 1.2;
	padding: 5px 0 30px;
}

.fv-web .fv-web__content .fv-web__content-message .fv-web__content-message-desc {
	font-size: 1.3rem;
	font-weight: 700;
}

.fv-web .fv-web__content .fv-web__content-img {
	width: 50%;
}

.web-visual .web-visual__content {
	padding: 100px 10% 120px;
}

.web-visual .web-visual__content .web-visual__content-title {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-align: center;
}

.web-visual .web-visual__content .web-visual__content-items {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: center;
	margin-top: 60px;
}

.web-visual .web-visual__content .web-visual__content-items .web-visual__content-items-item {
	text-align: center;
	width: 30%;
}

.web-visual .web-visual__content .web-visual__content-items .web-visual__content-items-item img {
	margin-bottom: 12px;
}

.web-visual .web-visual__content .web-visual__content-items .web-visual__content-items-item p {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2px;
}

.web-works .web-works__content {
	background: #FEAA3E;
	padding: 140px 5%;
}

.web-works .web-works__content .web-works__content-img {
	margin: 0 auto;
	width: 100%;
}

.web-works .web-works__content .web-works__content-items {
	display: flex;
	margin-top: 90px;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-1 {
	font-size: 1rem;
	letter-spacing: 3px;
	padding-left: 5%;
	width: 50%;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-1 .web-works__content-title {
	font-size: 2.1rem;
	font-weight: 700;
	letter-spacing: 3px;
	margin-top: 40px;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 {
	margin-top: 20px;
	padding-right: 5%;
	width: 50%;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 .web-works__content-text {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 3px;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 .web-works__content-text-sub {
	letter-spacing: 3px;
	line-height: 2;
	margin-top: 50px;
	max-width: 600px;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 .button {
	margin-top: 30px;
}

.web-another .web-another__content {
	display: flex;
}

.web-another .web-another__content .web-another__content-img {
	overflow: hidden;
	position: relative;
}

.web-another .web-another__content .web-another__content-img img {
	transition: transform 0.5s ease;
	width: 50vw;
}

.web-another .web-another__content .web-another__content-img img:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.web-another .web-another__content .web-another__content-img img:hover:not(:hover) {
	transform: scale(1);
}

.web-another .web-another__content .web-another__content-img p {
	color: #fff;
	font-size: 2vw;
	font-weight: 400;
	left: 50%;
	letter-spacing: 4px;
	line-height: 1.3;
	position: absolute;
	text-align: center;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-about-message {
	margin: 150px auto;
	max-width: 900px;
}

.p-about-message .p-about-message__title h2 {
	font-family: "Roboto", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 30px;
}

.p-about-message .p-about-message__text {
	font-size: 1.1rem;
	letter-spacing: 10px;
	margin-top: 40px;
	max-width: 900px;
}

.about {
	margin-top: 150px;
}

.about .p-about__title {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 3px;
	padding: 0 10%;
	text-align: left;
}

.about .p-about-member {
	display: flex;
	gap: 80px;
	justify-content: center;
	margin-top: 80px;
}

.about .p-about-member .p-about-member__content {
	letter-spacing: 2px;
	text-align: center;
	width: 30%;
}

.about .p-about-member .p-about-member__content img {
	height: auto;
	width: 300px;
}

.about .p-about-member .p-about-member__content .p-about-member__content-name {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.about .p-about-member .p-about-member__content .p-about-member__content-name .p-about-member__content-name-sns {
	font-size: 1.2rem;
	font-weight: 700;
	margin-right: 10px;
}

.about .p-about-member .p-about-member__content .p-about-member__content-name img {
	filter: invert(100%);
	width: 30px;
}

.about .p-about-member .p-about-member__content .p-about-member__content-position {
	font-size: 1.1rem;
	margin-top: 10px;
    font-weight: 700;
}

.about .p-about-member .p-about-member__content .p-about-member__content-discription {
	margin-top: 18px;
	font-size: .9rem;
}

.p-service-content {
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	width: 100%;
}

.p-service-content .p-service-content-1 {
	grid-area: 1/1/3/2;
	position: relative;
}

.p-service-content .p-service-content-1 .p-service__text-1 {
	color: #fff;
	font-size: 6rem;
	font-weight: 700;
	left: 50%;
	letter-spacing: 4px;
	line-height: 1;
	position: absolute;
	text-align: center;
	text-shadow: 2px 2px 4px rgb(0, 0, 0);
	top: 42%;
	transform: translate(-50%, -50%);
}

.p-service-content .p-service-content-1 .p-service__text-2 {
	background: linear-gradient(to right, #fcc051, #f8821b);
	border-radius: 5px;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	left: 50%;
	letter-spacing: 5px;
	padding: 27px;
	position: absolute;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	top: 60%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.p-service-content .p-service-content-1 img {
	width: 50vw;
}

.p-service-content .p-service-content-2,
.p-service-content .p-service-content-3,
.p-service-content .p-service-content-4,
.p-service-content .p-service-content-5,
.p-service-content .p-service-content-6,
.p-service-content .p-service-content-7,
.p-service-content .p-service-content-8 {
	display: inline-block;
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.p-service-content .p-service-content-2 .p-service__text-3,
.p-service-content .p-service-content-3 .p-service__text-3,
.p-service-content .p-service-content-4 .p-service__text-3,
.p-service-content .p-service-content-5 .p-service__text-3,
.p-service-content .p-service-content-6 .p-service__text-3,
.p-service-content .p-service-content-7 .p-service__text-3,
.p-service-content .p-service-content-8 .p-service__text-3 {
	border-bottom: 2px solid #fff;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	left: 50%;
	letter-spacing: 4px;
	line-height: 1.3;
	padding-bottom: 3px;
	position: absolute;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	top: 50%;
	transform: translate(-50%, -50%);
}

.p-service-content .p-service-content-2 img,
.p-service-content .p-service-content-3 img,
.p-service-content .p-service-content-4 img,
.p-service-content .p-service-content-5 img,
.p-service-content .p-service-content-6 img,
.p-service-content .p-service-content-7 img,
.p-service-content .p-service-content-8 img {
	grid-area: 1/1/3/2;
	transition: transform 0.5s ease;
	width: 50vw;
}

.p-service-content .p-service-content-2 img:hover,
.p-service-content .p-service-content-3 img:hover,
.p-service-content .p-service-content-4 img:hover,
.p-service-content .p-service-content-5 img:hover,
.p-service-content .p-service-content-6 img:hover,
.p-service-content .p-service-content-7 img:hover,
.p-service-content .p-service-content-8 img:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.p-service-content .p-service-content-2 img:hover:not(:hover),
.p-service-content .p-service-content-3 img:hover:not(:hover),
.p-service-content .p-service-content-4 img:hover:not(:hover),
.p-service-content .p-service-content-5 img:hover:not(:hover),
.p-service-content .p-service-content-6 img:hover:not(:hover),
.p-service-content .p-service-content-7 img:hover:not(:hover),
.p-service-content .p-service-content-8 img:hover:not(:hover) {
	transform: scale(1);
}

.creative {
	background: linear-gradient(to right, #fcc051, #f8821b);
	padding: 140px 0;
}

.creative .creative__title {
	align-items: center;
	display: flex;
	font-size: 1.5rem;
	font-weight: 900;
	justify-content: space-between;
	letter-spacing: 3px;
	padding: 0 10%;
	text-align: left;
}

.creative .creative__title a {
	font-size: 1.1rem;
}

.creative .p-creative-web {
	margin-top: 70px;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item {
	align-items: center;
	display: flex;
	width: 100%;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-img {
	-o-object-fit: fill;
	object-fit: fill;
	overflow: hidden;
	position: relative;
	width: 65%;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-img img {
	display: block;
	height: 100%;
	transition: transform 0.3s ease;
	width: 100%;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-img img:hover {
	transform: scale(1.1);
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text {
	letter-spacing: 3px;
	line-height: 1.3;
	margin-left: 70px;
	padding-right: 100px;
	width: 35%;
	word-break: break-all;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text .p-t_1 {
	font-size: 1.3rem;
	font-weight: 700;
	transition: 0.4s;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text .p-t_2 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 20px;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text .p-t_3 {
	font-size: 1rem;
	line-height: 1.5;
	margin-top: 20px;
}

.p-creative-work .p-creative-work__title {
	background: #feaa3e;
	padding: 130px 0 80px 120px;
}

.p-creative-work .p-creative-work__title p {
	font-size: 2.3rem;
	font-weight: 700;
	letter-spacing: 3px;
}

.p-creative-work .p-creative-work__content {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 30px;
	margin: 100px auto 120px;
	max-width: 1126px;
	overflow: hidden;
	padding: 0 30px;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item {
	width: 31%;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-img {
	-o-object-fit: fill;
	object-fit: fill;
	overflow: hidden;
	width: 100%;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-img a img {
	transition: transform 0.3s ease;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-img a img:hover {
	opacity: 0.8;
	transform: scale(1.1);
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-img a img:hover:not(:hover) {
	transform: scale(1);
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-text .p-t_2 {
	font-size: 0.7rem;
	letter-spacing: 2px;
	margin-top: 15px;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-text .p-t_2 span {
	border-bottom: 1px solid #333;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-text .p-t_1 {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: 5px;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item .p-creative-work__content-item-text .p-t_3 {
	font-size: 0.8rem;
	letter-spacing: 2px;
	margin-top: 13px;
}

.web-single-content {
	margin-bottom: 150px;
}

.web-single-content .web-single-items {
	align-items: center;
	display: flex;
}

.web-single-content .web-single-items .web-single-item-1 {
	background: #F8F8F8;
	display: flex;
	flex-flow: column;
	height: 100vh;
	justify-content: center;
	padding-left: 50px;
	width: 40%;
}

.web-single-content .web-single-items .web-single-item-1 .web-single-title {
	font-size: 1.9rem;
	letter-spacing: 3px;
}

.web-single-content .web-single-items .web-single-item-1 table {
	margin-top: 25px;
}

.web-single-content .web-single-items .web-single-item-1 table tr td {
	font-size: 1rem;
	letter-spacing: 3px;
	overflow-wrap: break-word;
	padding-right: 40px;
	padding-top: 30px;
}

.web-single-content .web-single-items .web-single-item-1 table tr td {
	overflow-wrap: break-word;
}

.web-single-content .web-single-items .web-single-item-1 table tr td {
	overflow-wrap: break-word;
}

.web-single-content .web-single-items .web-single-item-2 {
	margin: auto;
	padding: 40px;
	text-align: center;
	width: 60%;
}

.web-single-content .web-single-items .web-single-item-2 .web-single-fv {
	width: 90%;
}

.news {
	background: #feaa3e;
	margin-top: 110px;
	padding: 70px 100px;
}

.news .p-utility-title {
	font-size: 1.5rem;
}

.news .p-news-content {
	margin-bottom: 60px;
	margin-top: 50px;
}

.news .p-news-content .p-news-content__item {
	display: flex;
	margin-top: 40px;
	position: relative;
}

.news .p-news-content .p-news-content__item:hover {
	opacity: 0.7;
}

.news .p-news-content .p-news-content__item::before {
	background: url(../img/a_r.png) no-repeat center center/contain;
	content: "";
	height: 24px;
	position: absolute;
	right: 20px;
	top: -10px;
	width: 24px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-date {
	color: #3d3d3d;
	font-size: 0.8125rem;
	margin-right: 40px;
	padding-top: 5px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc {
	width: 100%;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-title {
	border-bottom: 1px solid #000;
	color: #000000;
	font-size: 1.125rem;
	padding-bottom: 8px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-text {
	margin-top: 8px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-text a {
	background: #fff;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 3px 15px;
	pointer-events: none;
}

.news-archive {
	margin: 200px auto 220px;
	max-width: 1100px;
}

.news-archive .c-utility-title {
	font-size: 2.5rem;
	line-height: 1;
}

.news-archive .c-utility-title span {
	font-size: 1.1rem;
}

.news-archive .p-news-content-archive {
	margin-top: 100px;
}

.news-archive .p-news-content-archive .p-news-content__item-archive {
	align-items: center;
	display: flex;
	margin-bottom: 50px;
}

.news-archive .p-news-content-archive .p-news-content__item-archive .p-news-content__item-date-archive {
	font-size: 0.9rem;
	margin-right: 30px;
}

.news-archive .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive {
	border-bottom: 1px solid #000;
	width: 100%;
}

.news-archive .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive a {
	font-size: 1.3rem;
}

.news-single-content {
	background: #feaa3e;
	height: 100vh;
	position: relative;
}

.news-single-content .news-single-message {
	left: 10%;
	letter-spacing: 5px;
	padding: 0 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.news-single-content .news-single-message .news-single-data {
	font: 400 1.5rem/1 "Barlow Condensed";
	font-weight: 600;
}

.news-single-content .news-single-message .news-single-category {
	font: 400 1.5rem/1 "Barlow Condensed";
	font-weight: 600;
	margin-top: 30px;
}

.news-single-content .news-single-message .news-single-title {
	font: 400 3.5rem/1 "Barlow Condensed";
	font-weight: 600;
	margin-top: 30px;
}

.news-single-content-message {
	word-wrap: break-word;
	font-size: 1.2rem;
	margin: 120px auto 0;
	max-width: 900px;
	overflow: hidden;
	padding: 0 5.8565%;
	position: relative;
}

.contact-content {
	margin-bottom: 200px;
	margin-top: 200px;
	text-align: center;
	width: 100%;
}

.contact-content .contact-content__item {
	margin-top: 100px;
}

.contact-content .contact-content__item a img {
	transition: translate 0.5s ease;
	width: 500px;
}

.contact-content .contact-content__item a img:hover {
	opacity: 0.7;
}

.contact {
	padding: 70px 8% 0;
}

.contact .p-utility-title {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 3px;
	text-align: left;
}

.contact .contact-items {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	margin-top: 60px;
}

.contact .contact-items .contact-items-item {
	-o-object-fit: fill;
	object-fit: fill;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.contact .contact-items .contact-items-item img {
	display: block;
	height: auto;
	transition: transform 0.3s, opacity 0.3s;
	width: 100%;
}

.contact .contact-items .contact-items-item:hover img {
	opacity: 0.7;
	transform: scale(1.1);
}

.contact .contact-items .contact-items-item p {
	padding-top: 20px;
}

.contact .contact-items .contact-items-item p::after {
	background-color: black;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: bottom left;
	transition: transform 0.3s;
	width: 100%;
}

.contact .contact-items .contact-items-item:hover p {
	opacity: 1;
}

.contact .contact-items .contact-items-item:active p {
	opacity: 1;
}

.contact .contact-items .contact-items-item:hover p::after {
	transform: scaleX(1);
	transform-origin: bottom right;
}

.contact .contact-items .contact-items-item:active p::after {
	transform: scaleX(1);
	transform-origin: bottom right;
}

.contact-form .contact-form-content {
	margin: 200px auto 0;
	max-width: 950px;
}

.contact-form .contact-form-content .contact-form-content-title {
	color: #fff;
}

.contact-form .contact-form-content .contact-form-content-message {
	color: #fff;
}

.contact-form .contact-form-content .contact-form-content-all .contact_item {
	background: #fff;
	line-height: 1;
	margin-bottom: 20px;
}

.contact-form .contact-form-content .contact-form-content-all .contact_item p {
	padding: 20px;
}

.contact-form .contact-form-content .contact-form-content-all .contact_item .wpcf7-form-control-wrap {
	display: block;
}

.contact-form .contact-form-content .contact-form-content-all .contact_item .wpcf7-form-control-wrap input {
	padding: 9px;
}

input[type=checkbox] {
	border-radius: 50%;
}

.wpcf7-form-control {
	width: 100%;
}

.wpcf7-form-control .wpcf7-submit .has-spinner {
	padding: 20px;
}

textarea {
	padding: 10px;
	resize: none;
}

.btnarea {
	padding: 0 20px;
	text-align: center;
}

.btnarea input[type=submit] {
	background: #676767;
	border: none;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 5px;
	padding: 15px 0;
	text-align: center;
	transition: all 0.3s;
	width: 100%;
}

.btnarea input[type=submit]:hover {
	background: #000;
}

.thanks-content {
	margin: 200px auto 150px;
	max-width: 1000px;
	text-align: center;
}

.thanks-content .thanks-content-items .thanks-content-title {
	color: #000;
	font: 700 3.5rem/1 "Times New Roman", Times, serif;
	margin-bottom: 70px;
}

.thanks-content .thanks-content-items .thanks-content-text {
	font: 300 1.2rem/1 "Times New Roman", Times, serif;
	line-height: 1.5;
}

.footer {
	margin-top: 200px;
	overflow: hidden;
	padding: 50px 20px 20px;
	position: relative;
}

.footer::after {
	background: url(../img/f_bg.jpg) no-repeat center center/contain;
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

.footer::before {
	background: rgba(0, 0, 0, 0.5); /* 黒の半透明オーバーレイ */
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1; /* `::before` が `::after` よりも上に表示されるようにします */
}

.footer .p-footer__content {
	color: #fff;
	display: flex;
	margin: auto;
	max-width: 769px;
	padding: 50px 0 100px;
}

.footer .p-footer__content .p-footer__content-logo img {
	height: auto;
	width: 100px;
}

.footer .p-footer__content .p-footer__content-nav {
	margin-top: 50px;
}

.footer .p-footer__content .p-footer__content-nav ul {
	grid-gap: 30px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 25%;
}

.footer .p-footer__content .p-footer__content-nav ul li {
	color: #fff;
	font-size: 1.2rem;
	margin-right: 30px;
	white-space: nowrap;
}

.footer .p-footer__content .p-footer__content-nav ul li a {
	position: relative;
}

.footer .p-footer__content .p-footer__content-nav ul li a::after { /*アニメーションの速度設定*/
	-webkit-transition: all 0.5s;
	background: linear-gradient(to right, #fcc051, #f8821b);
	bottom: -5px;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute; /*幅を0に設定*/
	width: 0;
}

.footer .p-footer__content .p-footer__content-nav ul li a:hover::after {
	width: 100%;
}

.footer .p-footer__content .p-footer__content-nav ul li a:active::after {
	width: 100%;
}

.footer .p-footer__content .p-footer__content-sns {
	margin-left: auto;
	margin-top: 50px;
}

.footer .p-footer__content .p-footer__content-sns ul {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-around;
}

.footer .p-footer__content .p-footer__content-sns ul li {
	margin-right: 10px;
}

.footer .p-footer__content .p-footer__content-sns ul li img {
	filter: invert(1);
	height: auto;
	width: 30px;
}

.footer .p-footer__content .p-footer__content-sns ul li img:hover {
	opacity: 0.7;
}

.footer .p-footer__content .p-footer__content-sns ul li img:active {
	opacity: 0.7;
}

.footer .footer-copy-right {
	color: #fff;
	font-size: 0.9rem;
	margin: 70px 0 0;
	text-align: center;
}

.disabled-link {
	cursor: default; /* マウスカーソルをデフォルトにする（オプション） */
	pointer-events: none; /* マウスイベントを無効化する */
}

.fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-down {
	opacity: 0;
	transform: translateY(-24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-down.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-slide-l {
	opacity: 0;
	transform: translateX(-300px);
	transition: opacity 1s, transform 2s;
}

.fade-in-slide-l.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-slide-r {
	opacity: 0;
	transform: translateX(100px);
	transition: opacity 1s, transform 2s;
}

.fade-in-slide-r.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

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

.header .header__inner .header__nav {
	align-items: center;
	display: flex;
	gap: 40px;
	margin-right: auto;
	position: fixed;
	right: 50px;
}

.header .header__inner .header__open {
	display: none;
}

.p-gallery .p-gallery__inner {
	margin: auto;
	width: 100%;
}

.gallery__prev,
.gallery__next {
	height: 50px;
	width: 50px;
}

.u-is-pc {
	display: none;
}

}

@media (max-width: 900px) {

.overlay-content {
	width: 75%;
}

.counter,
.logo p {
	font-size: 100px;
}

}

@media screen and (max-width: 767px) {

.w-button {
	margin: 30px 0 60px;
	padding: 0 20px;
	text-align: center;
}

.w-button .w-btn {
	font-size: 0.9rem;
	padding: 10px 9px;
}

.w-button-all {
	margin: 25px auto 0;
	padding: 15px 0;
	width: 80%;
}

.header .header__inner {
	padding: 25px 20px;
	z-index: 1004;
}

.header .header__inner .p-header__logo {
	left: 10px;
	top: 10px;
}

.header .header__inner .p-header__logo a img {
	height: auto;
	width: 110px;
	margin-top: 11px;
}

.header .header__inner .header__nav {
	display: none;
}

.header .header__inner .drawer-icon {
	z-index: 1009;
}

.header .header__inner .drawer-icon .drawer-icon__bar {
	z-index: 1008;
}

.header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(1) {
	top: 3px;
}

.header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(2) {
	top: 21px;
}

.drawer-content {
	padding: 90px 20px 40px;
	width: 100%;
}

.drawer-content.is-checked {
	transform: translateX(0);
}

.overlay {
	overflow: hidden;
}

.overlay-content {
	width: 90%;
}

.images {
	height: auto;
	overflow: hidden;
	width: 100%;
}

.img-holder img {
	height: auto;
	left: 0;
	position: relative;
	top: 0;
	transform: none;
	width: 100%;
}

.text {
	height: 180px;
}

.counter {
	top: -30%;
}

.counter p {
	font-size: 1rem;
}

.logo {
	left: 50%;
	top: 30%;
	transform: translate(-50%, -50%);
}

.logo p {
	font-size: 1rem;
}

.hero-copy {
	left: 50%;
	text-align: center;
	transform: translateX(-50%);
}

.hero-copy h1 {
	font-size: 10vw;
}

.p-gallery {
	padding: 80px 0;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content {
	flex-direction: column-reverse;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message {
	flex-direction: column-reverse;
	padding: 0 20px;
	width: 100%;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message .p-tv__content-message-title {
	font-size: 1.3rem;
	margin: 20px 0 0;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message .p-tv__content-message-title .p-tv__content-message-titleSub {
	display: none;
	padding-bottom: 30px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-message .p-tv__content-message-desc {
	font-size: 0.9rem;
	margin: 30px 0 10px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide .p-gallery-card .p-gallery-card__image .p-tv__content .p-tv__content-img {
	width: 100%;
}

.gallery__swiper {
	padding-bottom: 0;
}

.fv-shopify .fv-shopify__content .fv-shopify__content--text {
	font-size: 2rem;
	left: 8%;
	padding: 0;
	top: 40%;
}

.fv-shopify .fv-shopify__content .fv-shopify__content--text img {
	width: 90%;
}

.voice {
	margin-top: 70px;
}

.voice .voice-shopify__content .voice-shopify__content--title {
	font-size: 1.8rem;
}

.voice .voice-shopify__content .voice-shopify__content--voice {
	display: block;
	margin: 60px auto 0;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-img {
	text-align: center;
	width: 100%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-img a img {
	width: 70%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-text {
	width: 100%;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-text .voice-shopify__content--voice-text-title {
	font-size: 1.8rem;
	margin-top: 50px;
}

.voice .voice-shopify__content .voice-shopify__content--voice .voice-shopify__content--voice-text .voice-shopify__content--voice-text-message {
	font-size: 0.9rem;
}

.flow-shopify {
	margin-top: 70px;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--title {
	font-size: 1.8rem;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li dl {
	display: block;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li dl dt {
	width: 100%;
}

.flow-shopify .flow-shopify__content .flow-shopify__content--flow ul li dl dd {
	font-size: 0.9rem;
	padding: 10px 20px;
	width: 100%;
}

.advantages .advantages-content {
	margin-top: 100px;
}

.advantages .advantages-content .advantages-shopify__content--title {
	font-size: 1.8rem;
}

.advantages .advantages-content .advantages-content-items {
	display: flex;
	flex-direction: column;
}

.advantages .advantages-content .advantages-content-items:nth-child(3) {
	flex-direction: column-reverse;
}

.advantages .advantages-content .advantages-content-items .advantages-content__img {
	width: 100%;
}

.advantages .advantages-content .advantages-content-items .advantages-content__message {
	width: 100%;
}

.advantages .advantages-content .advantages-content-items .advantages-content__message .advantages-content__message-title {
	font-size: 1.3rem;
	margin-top: 10px;
}

.advantages .advantages-content .advantages-content-items .advantages-content__message .advantages-content__message-dcr {
	font-size: 0.9rem;
}

.plan-shopify {
	margin-top: 70px;
}

.plan-shopify .plan-shopify__content .plan-shopify__content--title {
	font-size: 1.8rem;
}

.plan-shopify .plan-shopify__content--plan-wrapper {
	display: block;
	padding: 0 20px;
}

.plan-shopify .plan-shopify__content--plan-wrapper .plan-shopify__content--plan {
	margin-top: 60px;
}

.qa-shopify {
	margin: 120px auto 0;
}

.qa-shopify .qa-shopify__content {
	padding: 0 20px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content--title {
	font-size: 1.8rem;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items {
	margin-top: 40px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dt {
	font-size: 1.1rem;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dt span svg {
	height: 30px;
	width: 30px;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dd {
	font-size: 0.9rem;
}

.qa-shopify .qa-shopify__content .qa-shopify__content-items dl dd span svg {
	height: 30px;
	width: 30px;
}

.fv-ig .fv-ig__content .fv-ig__content--text img {
	width: 60%;
}

.fv-ig .fv-ig__content .fv-ig__content--text .fv-ig__content--text-message .fv-ig-1 {
	font-size: 1.4rem;
	margin-top: 30px;
}

.fv-ig .fv-ig__content .fv-ig__content--text .fv-ig__content--text-message .fv-ig-2 {
	font-size: 0.8rem;
	margin-top: 40px;
	padding: 0 20px;
}

.service-ig .service-ig__content {
	margin-top: 100px;
}

.service-ig .service-ig__content .service-ig__content--title {
	font-size: 1.3rem;
}

.service-ig .service-ig__content .service-ig__content--service {
	margin: 40px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-1 {
	display: block;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-1 .service-ig__content--service-img-1-1 img {
	width: 230px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-1 .service-ig__content--service-img-1-1 p {
	font-size: 1rem;
	margin-bottom: 40px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-2 {
	margin-top: 60px;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-2 img {
	width: 80%;
}

.service-ig .service-ig__content .service-ig__content--service .service-ig__content--service-img-2 p {
	font-size: 1rem;
}

.strong-ig {
	margin-top: 80px;
	padding: 100px 0 50px;
}

.strong-ig::before {
	background-size: cover;
}

.strong-ig .strong-ig__content .strong-ig__content--title {
	font-size: 1.3rem;
}

.strong-ig .strong-ig__content .strong-ig__content--service-img-2 p {
	font-size: 0.9rem;
	margin-top: 40px;
	padding: 0 40px;
}

.strong-ig .strong-ig__content .strong-ig__content--service .strong-ig__content--service-img-1 {
	display: block;
	gap: 0;
}

.strong-ig .strong-ig__content .strong-ig__content--service .strong-ig__content--service-img-1 .strong-ig__content--service-img-1-1 {
	margin: 0 auto 50px;
	width: 50%;
}

.voice-ig {
	margin-top: 100px;
}

.voice-ig .voice-ig__content .voice-ig__content--title {
	display: block;
}

.voice-ig .voice-ig__content .voice-ig__content--title p {
	font-size: 1rem;
	margin-left: 0;
	margin-top: 20px;
}

.voice-ig .voice-ig__content .voice-ig__content--service {
	margin-top: 60px;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 {
	display: block;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-1 {
	margin: 0 auto;
	width: 70%;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-2 {
	text-align: center;
	width: 100%;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-2 .voice-ig-1 {
	font-size: 1.3rem;
	margin-top: 30px;
}

.voice-ig .voice-ig__content .voice-ig__content--service .voice-ig__content--service-img-1 .voice-ig__content--service-img-1-2 .voice-ig-2 {
	font-size: 0.9rem;
	margin-top: 20px;
	padding: 0 20px;
}

.plan-ig::before {
	background-size: cover;
}

.plan-ig {
	margin-top: 70px;
}

.plan-ig .plan-ig__content .plan-ig__content--title {
	font-size: 1.8rem;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper {
	display: block;
	padding: 0 20px;
}

.plan-ig .plan-ig__content .plan-ig__content--plan-wrapper .plan-ig__content--plan {
	margin-top: 60px;
	width: 100%;
}

.qa-ig {
	margin: 120px auto 0;
}

.qa-ig .qa-ig__content {
	padding: 0 20px;
}

.qa-ig .qa-ig__content .qa-ig__content--title {
	font-size: 1.4rem;
}

.qa-ig .qa-ig__content .qa-ig__content-items {
	margin-top: 40px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dt {
	font-size: 1.1rem;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dt span svg {
	height: 30px;
	width: 30px;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dd {
	font-size: 0.9rem;
}

.qa-ig .qa-ig__content .qa-ig__content-items dl dd span svg {
	height: 30px;
	width: 30px;
}

.fv-mv .fv-mv__content .fv-mv__content--text .fv-mv__content--text-message .fv-mv-1 {
	font-size: 1.3rem;
}

.fv-mv .fv-mv__content .fv-mv__content--text .fv-mv__content--text-message .fv-mv-2 {
	font-size: 0.8rem;
}

.service-mv .service-mv__content {
	padding: 100px 0;
}

.service-mv .service-mv__content .service-mv__content--title {
	font-size: 1.3rem;
}

.service-mv .service-mv__content .service-mv__content--dsc {
	font-size: 0.9rem;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 {
	display: block;
	margin-bottom: 50px;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 {
	margin-bottom: 40px;
}

.service-mv .service-mv__content .service-mv__content--service .service-mv__content--service-img-1 .service-mv__content--service-img-1-1 p {
	margin-top: 10px;
}

.strong-mv .strong-mv__content .strong-mv__content--title {
	font-size: 1.3rem;
	margin: 100px 0 50px;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 {
	display: block;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 {
	margin-bottom: 50px;
	width: 100%;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 .strong-title {
	font-size: 1.1rem;
}

.strong-mv .strong-mv__content .strong-mv__content--service .strong-mv__content--service-img-1 .strong-mv__content--service-img-1-1 .strong-message {
	font-size: 0.9rem;
}

.flow-mv {
	padding: 80px 0;
}

.flow-mv .flow-mv__content .flow-mv__content--title {
	font-size: 1.3rem;
}

.flow-mv .flow-mv__content .flow-mv__content--flow {
	margin-top: 40px;
	padding: 0 20px;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li dl {
	display: block;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li dl dt {
	width: 100%;
}

.flow-mv .flow-mv__content .flow-mv__content--flow ul li dl dd {
	font-size: 0.9rem;
	padding: 10px 20px;
	width: 100%;
}

.plan-mv::before {
	background-size: cover;
}

.plan-mv {
	margin-top: 70px;
}

.plan-mv .plan-mv__content .plan-mv__content--title {
	font-size: 1.8rem;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper {
	display: block;
	padding: 0 20px;
}

.plan-mv .plan-mv__content .plan-mv__content--plan-wrapper .plan-mv__content--plan {
	margin-top: 60px;
	width: 100%;
}

.qa-mv {
	margin: 120px auto 0;
}

.qa-mv .qa-mv__content {
	padding: 0 20px;
}

.qa-mv .qa-mv__content .qa-mv__content--title {
	font-size: 1.4rem;
}

.qa-mv .qa-mv__content .qa-mv__content-items {
	margin-top: 40px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dt {
	font-size: 1.1rem;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dt span svg {
	height: 30px;
	width: 30px;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dd {
	font-size: 0.9rem;
}

.qa-mv .qa-mv__content .qa-mv__content-items dl dd span svg {
	height: 30px;
	width: 30px;
}

.fv-web .fv-web__content {
	display: block;
	padding-top: 100px;
}

.fv-web .fv-web__content .fv-web__content-message {
	padding-left: 20px;
	width: 100%;
}

.fv-web .fv-web__content .fv-web__content-message .fv-web__content-message-sub {
	font-size: 0.8rem;
}

.fv-web .fv-web__content .fv-web__content-message .fv-web__content-message-title {
	font-size: 2.4rem;
	padding: 5px 0 20px;
}

.fv-web .fv-web__content .fv-web__content-message .fv-web__content-message-desc {
	font-size: 1.1rem;
}

.fv-web .fv-web__content .fv-web__content-img {
	margin-top: 40px;
	width: 100%;
}

.web-visual .web-visual__content {
	padding: 60px 10% 80px;
}

.web-visual .web-visual__content .web-visual__content-title {
	font-size: 1rem;
}

.web-visual .web-visual__content .web-visual__content-items {
	display: block;
	margin-top: 35px;
}

.web-visual .web-visual__content .web-visual__content-items .web-visual__content-items-item {
	margin-top: 35px;
	width: 100%;
}

.web-works .web-works__content {
	padding: 70px 20px 30px;
}

.web-works .web-works__content .web-works__content-items {
	display: block;
	margin-top: 30px;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-1 {
	padding-left: 0;
	width: 100%;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-1 {
	font-size: 0.7rem;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-1 .web-works__content-title {
	font-size: 1.8rem;
	margin-top: 10px;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 {
	margin-top: 40px;
	width: 100%;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 .web-works__content-text {
	font-size: 1.1rem;
}

.web-works .web-works__content .web-works__content-items .web-works__content-items-item-2 .web-works__content-text-sub {
	font-size: 0.8rem;
	margin-top: 20px;
}

.web-another .web-another__content {
	display: block;
}

.web-another .web-another__content .web-another__content-img img {
	width: 100%;
}

.web-another .web-another__content .web-another__content-img p {
	font-size: 1.1rem;
	width: 100%;
}

.p-about-message {
	margin: 100px auto;
	padding: 0 20px;
}

.p-about-message .p-about-message__title h2 {
	font-size: 1.1rem;
	letter-spacing: 8px;
	padding: 0 10px;
}

.p-about-message .p-about-message__text {
	font-size: 0.8rem;
	padding: 0 10px;
}

.about {
	margin-top: 90px;
}

.about .p-about__title {
	font-size: 1.1rem;
}

.about .p-about-member {
	display: block;
	margin-top: 40px;
}

.about .p-about-member .p-about-member__content {
	margin-top: 70px;
	width: 100%;
}

.about .p-about-member .p-about-member__content img {
	width: 150px;
}

.about .p-about-member .p-about-member__content .p-about-member__content-name .p-about-member__content-name-sns {
	font-size: 1.1rem;
}

.about .p-about-member .p-about-member__content .p-about-member__content-position {
	font-size: 0.9rem;
}

.about .p-about-member .p-about-member__content .p-about-member__content-discription {
	font-size: 0.8rem;
}

.p-service-content {
	display: block;
}

.p-service-content .p-service-content-1 .p-service__text-1 {
	font-size: 1.3rem;
}

.p-service-content .p-service-content-1 .p-service__text-2 {
	font-size: 1.1rem;
}

.p-service-content .p-service-content-1 img {
	width: 100%;
}

.p-service-content .p-service-content-2,
.p-service-content .p-service-content-3,
.p-service-content .p-service-content-4,
.p-service-content .p-service-content-5,
.p-service-content .p-service-content-6,
.p-service-content .p-service-content-7,
.p-service-content .p-service-content-8 {
	display: block;
}

.p-service-content .p-service-content-2 .p-service__text-3,
.p-service-content .p-service-content-3 .p-service__text-3,
.p-service-content .p-service-content-4 .p-service__text-3,
.p-service-content .p-service-content-5 .p-service__text-3,
.p-service-content .p-service-content-6 .p-service__text-3,
.p-service-content .p-service-content-7 .p-service__text-3,
.p-service-content .p-service-content-8 .p-service__text-3 {
	font-size: 1.1rem;
}

.p-service-content .p-service-content-2 img,
.p-service-content .p-service-content-3 img,
.p-service-content .p-service-content-4 img,
.p-service-content .p-service-content-5 img,
.p-service-content .p-service-content-6 img,
.p-service-content .p-service-content-7 img,
.p-service-content .p-service-content-8 img {
	width: 100%;
}

.creative {
	padding: 45px 0;
}

.creative .creative__title {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 40px;
	margin-top: 50px;
}

.creative .p-creative-web {
	margin-top: 40px;
}

.creative .p-creative-web .p-creative-content {
	display: block;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item {
	display: block;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-img {
	width: 100%;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text {
	margin-left: 0;
	padding: 0 20px;
	width: 100%;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text .p-t_1 {
	font-size: 1.1rem;
	margin-top: 15px;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text .p-t_2 {
	font-size: 1.2rem;
	margin-top: 10px;
}

.creative .p-creative-web .p-creative-content .p-creative-content__item .p-creative-content__item-text .p-t_3 {
	font-size: 0.9rem;
}

.p-creative-work .p-creative-work__title {
	padding: 100px 0 50px;
	text-align: center;
}

.p-creative-work .p-creative-work__title p {
	font-size: 1.5rem;
}

.p-creative-work .p-creative-work__content {
	display: block;
	margin: 50px auto 70px;
}

.p-creative-work .p-creative-work__content .p-creative-work__content-item {
	margin-top: 40px;
	width: 100%;
}

.web-single-content {
	margin-bottom: 80px;
}

.web-single-content .web-single-items {
	flex-direction: column-reverse;
}

.web-single-content .web-single-items .web-single-item-1 {
	display: block;
	height: 90vh;
	padding-left: 20px;
	padding-top: 80px;
	width: 100%;
}

.web-single-content .web-single-items .web-single-item-1 .web-single-title {
	font-size: 1.6rem;
	font-size: 700;
}

.web-single-content .web-single-items .web-single-item-1 table {
	margin-top: 10px;
}

.web-single-content .web-single-items .web-single-item-1 table tr {
	display: block;
	padding-top: 30px;
}

.web-single-content .web-single-items .web-single-item-1 table tr td {
	display: flex;
	font-size: 0.8rem;
	padding-top: 10px;
}

.web-single-content .web-single-items .web-single-item-1 table tr .web-single-message-1 {
	font-size: 1.4rem;
	font-weight: 700;
}

.web-single-content .web-single-items .web-single-item-1 table tr .web-single-message-2 {
	font-size: 1.4rem;
	font-weight: 700;
}

.web-single-content .web-single-items .web-single-item-1 table tr .web-single-message-3 {
	font-size: 1.4rem;
	font-weight: 700;
}

.web-single-content .web-single-items .web-single-item-2 {
	margin-top: 80px;
	padding: 40px 10px 50px;
	width: 100%;
}

.web-single-content .web-single-items .web-single-item-2 .web-single-fv {
	width: 100%;
}

.news {
	margin-top: 60px;
	padding: 60px 20px;
}

.news .p-utility-title {
	font-size: 1.1rem;
}

.news .p-news-content {
	margin-top: 40px;
}

.news .p-news-content .p-news-content__item {
	display: block;
}

.news .p-news-content .p-news-content__item::before {
	height: 20px;
	right: 0;
	top: 30px;
	width: 20px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-title {
	font-size: 1rem;
}

.news-archive {
	margin: 100px auto 90px;
	padding: 0 20px;
}

.news-archive .c-utility-title {
	font-size: 1.8rem;
}

.news-archive .c-utility-title span {
	font-size: 0.9rem;
}

.news-archive .p-news-content-archive {
	margin-top: 70px;
}

.news-archive .p-news-content-archive .p-news-content__item-archive {
	display: block;
}

.news-archive .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive a {
	font-size: 1rem;
}

.news-single-content {
	height: 70vh;
}

.news-single-content .news-single-message {
	left: 0;
}

.news-single-content .news-single-message .news-single-data {
	font: 600 1rem/1 "Barlow Condensed";
}

.news-single-content .news-single-message .news-single-category {
	font: 600 1rem/1 "Barlow Condensed";
	margin-top: 10px;
}

.news-single-content .news-single-message .news-single-title {
	font: 600 1.4rem/1 sans-serif;
	line-height: 1.5;
}

.news-single-content-message {
	font-size: 0.9rem;
	margin: 90px auto 0;
}

.contact-content {
	margin-bottom: 120px;
	margin-top: 120px;
}

.contact-content .contact-content__item {
	margin-top: 60px;
}

.contact-content .contact-content__item a img {
	width: 250px;
}

.contact {
	margin-top: 10px;
}

.contact .p-utility-title {
	font-size: 1.1rem;
}

.contact .contact-items {
	display: block;
	margin-top: 30px;
}

.contact .contact-items .contact-items-item {
	margin-top: 40px;
}

.contact .contact-items .contact-items-item p {
	padding-top: 10px;
}

.contact .contact-items .contact-items-item {
	font-size: 1rem;
}

.contact-form .contact-form-content {
	margin: 100px auto 0;
	padding: 0 20px;
}

.thanks-content {
	margin: 150px auto 100px;
	padding: 0 20px;
}

.thanks-content .thanks-content-items .thanks-content-title {
	font: 700 2.8rem/1 "Times New Roman", Times, serif;
	margin-bottom: 80px;
}

.thanks-content .thanks-content-items .thanks-content-text {
	font: 300 1rem/1 "Times New Roman", Times, serif;
	line-height: 1.5;
}

.footer {
	margin-top: 50px;
}

.footer .p-footer__content {
	align-items: center;
	padding: 0;
}

.footer .p-footer__content .p-footer__content-logo img {
	width: 90px;
}

.footer .p-footer__content .p-footer__content-nav {
	margin-top: 40px;
}

.footer .p-footer__content .p-footer__content-nav ul {
	grid-gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	width: 50%;
}

.footer .p-footer__content .p-footer__content-nav ul li {
	font-size: 0.85rem;
}

.footer .p-footer__content .p-footer__content-sns {
	margin-top: 20px;
}

.footer .p-footer__content .p-footer__content-sns ul li img {
	width: 30px;
}

.footer .footer-copy-right {
	font-size: 0.7rem;
}

.u-is-sp {
	display: none;
}

}

@media screen and (max-width: 767px) and (max-width: 767px) {

.strong-ig .strong-ig__content .strong-ig__content--service .strong-ig__content--service-img-1 .strong-ig__content--service-img-1-1 {
	width: 90%;
}

}

