*,
*::before,
*::after {
	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;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

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

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

img {
	border: none;
	vertical-align: bottom;
}

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

button {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
	outline: none;
	padding: 0;
	text-decoration: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

:root {
	--main-color: #FAFAFA;
	--accent-color: ##045A83;
	--accent-color-active: #aaa;
	--text-color: #27323B;
	--link-color: #045A83;
	--ff-base: "Noto Sans JP",
      sans-serif;
	--ff-en: "Roboto",
      sans-serif;
	--font-base: calc(16 / 16 * 1rem);
	--fw-base: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--lh-base: 1.7;
	--inner-width: 1140px;
	--sp-width: 768px;
}

.fade-in {
	opacity: 0;
	transition: opacity 1s;
}

.fade-in.is-in-view {
	opacity: 1;
}

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

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

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

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

body {
	background-color: var(--main-color);
	color: var(--text-color);
	font-family: var(--ff-base);
	font-feature-settings: "palt";
	font-size: var(--fz-base);
	font-weight: var(--fw-base);
	line-height: var(--lh-base);
}

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

a {
	color: inherit;
}

.inner {
	padding-left: 16px;
	padding-right: 16px;
}

.header {
	background: #fff;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 101;
}

.header__inner {
	align-items: center;
	display: flex;
	height: 70px;
	padding: 0 30px;
}

.header__logo a img {
	display: block;
	width: 110px;
}

.header__logo-link {
	font-weight: var(--fw-bold);
	transition: all 0.3s ease 0s;
}

.header__logo-link:hover {
	opacity: 0.6;
}

.hnav {
	display: none;
}

.hnav__lists {
	align-items: center;
	display: flex;
	gap: 0 40px;
}

.hnav__link {
	font-family: var(--ff-en);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.48px;
	transition: color 0.3s;
}

.hnav__link:hover {
	opacity: 0.7;
}

.drawer-icon {
	background-color: transparent;
	height: 21px;
	position: fixed;
	right: 15px;
	top: 22px;
	width: 36px;
	z-index: 102;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
	top: 10px;
	transform: rotate(30deg);
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
	display: none;
}

.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
	top: 10px;
	transform: rotate(-30deg);
}

.drawer-icon__bar {
	background: #111;
	border-radius: 6px;
	height: 3px;
	position: absolute;
	right: 0;
	transition: all 0.3s linear;
	width: 36px;
}

.drawer-icon__bar:nth-of-type(1) {
	top: 0;
}

.drawer-icon__bar:nth-of-type(2) {
	top: 9px;
}

.drawer-icon__bar:nth-of-type(3) {
	top: 18px;
}

.drawer-content {
	background: rgb(245, 245, 245);
	height: 100%;
	padding-top: 100px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateY(100%);
	transition: transform 0.3s linear;
	width: 100%;
	z-index: 101;
}

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

.drawer-background {
	background: #292e33;
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
}

.drawer-background.is-checked {
	display: block;
}

.drawer-content__link {
	display: block;
	font-size: 18px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.48px;
	padding: 14px 0;
	text-align: center;
}

.drawer-content___btn {
	margin-top: 14px;
	text-align: center;
}

.mv {
	margin-top: 70px;
	min-height: 520px;
	position: relative;
}

.mv__img {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.mv__img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center center;
	object-position: center center;
}

.breadcrumb {
	font-size: 10px;
	margin-bottom: 60px;
	margin-top: 90px;
}

.breadcrumb-list {
	align-items: center;
	display: flex;
	gap: 24px;
}

.breadcrumb-item {
	position: relative;
}

.breadcrumb-item:not(:last-child) ::after {
	background: #aaa;
	bottom: 0;
	content: "";
	display: block;
	height: 12px;
	margin: auto 0;
	position: absolute;
	right: -0.8rem;
	top: 0;
	transform: rotate(30deg);
	width: 1px;
}

.breadcrumb-item a {
	color: #aaa;
	transition: color 0.3s;
}

.breadcrumb-item a:hover {
	color: var(--text-color);
}

.breadcrumb-item svg {
	transition: fill 0.3s;
}

.breadcrumb-item svg:hover {
	fill: #111;
}

.current {
	color: var(--text-color);
}

.btn {
	background: #FFF;
	border: 2px solid #333;
	border-radius: 60px;
	display: inline-block;
	font-weight: var(--fw-medium);
	letter-spacing: 0.48px;
	line-height: 1;
	min-width: 150px;
	padding: 15px 28px;
	text-align: center;
	transition: background 0.3s, color 0.3s;
}

.btn:hover {
	background: #151416;
	color: #fff;
}

.sec__title {
	font-family: var(--ff-en);
	font-size: 26px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.8px;
	line-height: 1;
	text-align: center;
}

.more__btn {
	margin-top: 22px;
	text-align: right;
}

.more__btn__link {
	border-bottom: 2px solid currentColor;
	font-weight: var(--fw-bold);
	line-height: 1;
	padding-bottom: 10px;
	transition: color 0.3s;
}

.more__btn__link:hover {
	color: #FABE00;
}

.mv__btn {
	color: #FFF;
	margin-top: 20px;
	text-align: center;
	transition: color 0.3s;
}

.button--type2 {
	background: #111;
}

.button--type2:hover {
	background: #FFF;
	color: var(--text-color);
}

.news__title {
	text-align: left;
}

.news {
	padding: 60px 0;
}

.news__card {
	background: #FFF;
	box-shadow: 0px 9px 30px 0px #F4F4F4;
	padding: 40px clamp(40px, 9.2105263158vw, 40px);
}

.news__lists {
	margin-top: 16px;
}

.news__list + .news__list {
	border-top: 1px solid #E3E3E3;
}

.news-link {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 0;
	transition: background 0.3s;
}

.news-link__meta {
	align-items: center;
	display: flex;
	gap: 0 12px;
}

.news-link__date {
	color: #343436;
	font-size: 14px;
	white-space: nowrap;
}

.news-link__title {
	color: #333;
	font-size: 14px;
	font-weight: var(--fw-medium);
}

.news-link__label {
	border: 1px solid currentColor;
	border-radius: 2px;
	display: inline-block;
	font-size: 11px;
	font-weight: var(--fw-bold);
	min-width: 63px;
	padding: 2px 10px;
	text-align: center;
}

.about {
	overflow: hidden;
	padding: 60px 0;
}

.about__inner {
	margin: 0 auto;
	max-width: calc(100% - 32px);
}

.about__title {
	text-align: center;
}

.about__title img {
	width: 180px;
}

.about__content {
	position: relative;
}

.about__img {
	margin: 160px calc(50% - 50vw) 0;
}

.about__img img {
	width: clamp(300px, 49.765625vw, 637px);
}

.about__img2 {
	margin-top: clamp(60px, 2vw, -400px);
	margin-top: 32px;
	text-align: right;
}

.about__img2 img {
	width: clamp(145px, 29.21875vw, 374px);
}

.about__img3 {
	margin-left: 0;
	margin-top: -100px;
	text-align: left;
}

.about__img3 img {
	width: clamp(130px, 22.109375vw, 283px);
	width: clamp(145px, 29.21875vw, 374px);
}

.about__text {
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.12em;
	line-height: 2.2;
	text-align: center;
}

.about__btn {
	margin-top: 30px;
	text-align: center;
}

.about__btn__link {
	background: #FFF;
	border: 2px solid #333;
	border-radius: 60px;
	display: inline-block;
	font-weight: var(--fw-medium);
	letter-spacing: 0.48px;
	line-height: 1;
	min-width: 150px;
	padding: 15px 28px;
	position: relative;
	text-align: center;
	transition: background 0.3s, color 0.3s;
}

.about__btn__link::before {
	background: #333;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	transition: transform ease 0.2s;
	width: 100%;
	z-index: -1;
}

.about__btn__link:hover {
	background: #151416;
	color: #fff;
}

.movie {
	background: url(../../../../public/assets/img/section-bg.png) repeat top left/529px auto;
	padding: 60px 0;
}

.movie__inner {
	margin: 0 auto;
	padding: 0 15px;
}

.movie__iframe {
	margin-top: 32px;
	text-align: center;
}

.movie__iframe iframe {
	aspect-ratio: 345/194;
	height: auto;
	max-width: 100%;
	vertical-align: top;
	width: 345px;
}

.sec__subtitle {
	font-size: 12px;
	letter-spacing: 1.12px;
	line-height: 1;
	margin-top: 8px;
	text-align: center;
}

.company {
	background: #fff;
	margin-top: 90px;
	padding: 60px 0;
}

.company__inner {
	padding-left: 15px;
	padding-right: 15px;
}

.company__title {
	font-size: 21px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}

.company__content {
	margin-top: 42px;
	padding-bottom: 38px;
}

.company__table {
	border-collapse: collapse;
	margin: 0 auto;
	table-layout: fixed;
	width: 100%;
}

.company__table tr {
	border-bottom: 1.5px solid #CFCFCF;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.company__table th,
.company__table td {
	color: #3F3F3F;
	font-size: 14px;
	text-align: left;
	vertical-align: middle;
}

.company__table th {
	letter-spacing: 0.48px;
	padding: 20px 0 10px;
}

.company__table td {
	font-size: 14px;
	letter-spacing: 0.42px;
	padding-bottom: 20px;
}

.company__map {
	padding-bottom: 5px;
	position: relative;
}

.company__map::after {
	background: #3E3E3E;
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	transform: scale(1, 1);
	transition: all 0.2s ease;
	width: 100%;
}

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

.map__iframe {
	margin-top: 32px;
	text-align: center;
}

.map__iframe iframe {
	aspect-ratio: 343/193;
	height: auto;
	max-width: 100%;
	vertical-align: top;
}

.map__text {
	font-size: 14px;
	margin-top: 16px;
}

.gallery {
	background: #fff;
	padding-bottom: 60px;
	padding-top: 60px;
}

.gallery__inner {
	padding-left: 15px;
	padding-right: 15px;
}

.work__title {
	text-align: left;
}

.work__subtitle {
	font-size: 12px;
	letter-spacing: 1.28px;
	text-align: left;
}

.gallery__list {
	margin-bottom: 26px;
	position: relative;
}

.gallery__slide {
	margin-top: 30px;
}

.gallery-item__image {
	aspect-ratio: 480/320;
}

.gallery-item__image img {
	height: auto;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.gallery-item__text {
	font-size: 14px;
	margin-top: 11px;
	text-align: left;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin-left: 0;
	margin-right: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: -56px;
}

.swiper-pagination-bullet {
	background: #BCBCBC;
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #045A83;
}

.gallery__pagination {
	display: flex;
	gap: 0;
	justify-content: left;
}

.gallery__pagination span {
	border-radius: 0;
	height: 2px;
	width: 170px;
}

.gallery__button-prev,
.gallery__button-next {
	height: 40px;
	position: absolute;
	width: 40px;
}

.gallery__button-prev::after,
.gallery__button-next::after {
	display: none;
}

.gallery__button-prev {
	background: url(../../../../public/assets/img/prev-icon2.png) no-repeat center center/contain;
	left: 0;
}

.gallery__button-next {
	background: url(../../../../public/assets/img/next-icon2.png) no-repeat center center/contain;
	right: 0;
}

.blog-ttl {
	color: #F2F2F2;
	font-family: var(--ff-en);
	font-size: 100px;
	line-height: 1;
}

.works-ttl {
	color: var(--text-color);
	font-family: var(--ff-en);
	font-size: 40px;
	font-weight: var(--fw-medium);
	line-height: 1;
}

.works-subttl {
	color: #4a4a4a;
	font-size: 14px;
	font-weight: var(--fw-medium);
	letter-spacing: 0.072em;
	line-height: 1;
	margin-top: 16px;
}

.works-page {
	background: #F7F7F8;
	padding: 60px 0 160px;
}

.works-page__inner {
	padding-left: 24px;
	padding-right: 24px;
}

.works-page__link {
	display: block;
	overflow: hidden;
	position: relative;
}

.works-page__link img {
	display: block;
	height: auto;
	transition: transform 0.4s ease, filter 0.4s ease;
	width: 100%;
}

.works-page__link:hover img {
	filter: brightness(0.75);
	transform: scale(1.05);
}

.works-page__list {
	display: grid;
	gap: 40px 40px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	list-style: none;
	margin-top: 80px;
}

.works-page__item {
	background: #fff;
	color: inherit;
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.works-card img {
	display: block;
	height: auto;
	width: 100%;
}

.works-page__content {
	color: var(--text-color);
	display: flex;
	flex-direction: column;
	gap: 4px;
	letter-spacing: 0.072em;
	padding: 32px;
}

.works-page__content .location {
	font-size: 13px;
}

.works-page__content .title {
	font-size: 16px;
	font-weight: bold;
}

.works-page__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.tag {
	background-color: #fff;
	border: 1px solid var(--text-color);
	border-radius: 100px;
	font-size: 10px;
	font-weight: var(--fw-medium);
	line-height: 1;
	padding: 4px 16px;
}

/* ===============================================
# 施工事例各ページ
=============================================== */

.works-detail {
	background: #FFF;
	padding-bottom: 120px;
	padding-top: 60px;
}

.works-detail__inner {
	padding-left: 15px;
	padding-right: 15px;
}

.works__title {
	font-size: 21px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
}

.works-detail__ttl {
	font-size: 17px;
	margin-top: 60px;
	text-align: center;
}

.works-detail__content {
	margin-top: 42px;
	padding-bottom: 38px;
}

.works-detail__main {
	margin: 0 auto;
}

.works-detail__text {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	max-width: 750px;
}

/*横写真*/

.works-detail__photo {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	max-width: 800px;
}

/*縦写真*/

.photo-row {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
}

.photo-row img {
	width: 100%;
}

.work-date-table {
	background-color: #fff;
	border: 1px solid var(--text-color);
	font-size: 12px;
	letter-spacing: 0.1em;
	line-height: 2;
	margin: 80px auto 0;
	padding: 20px;
	width: 100%;
}

.work-date-table-row {
	display: grid;
	grid-template-columns: 130px 1fr;
}

.work-date-ttitle {
	text-align: left;
}

.works-detail__btn {
	margin-top: 100px;
	text-align: center;
}

.works-detail__link {
	color: var(--text-color);
	padding-bottom: 8px;
	position: relative;
}

.works-detail__link::after {
	background: var(--text-color);
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.3s ease;
	width: 100%;
}

.works-detail__link:hover {
	opacity: 0.6;
}

.works-detail__link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

/* ===============================================
# ブログ各ページ
=============================================== */

.blog-detail {
	background: #FFF;
	padding-bottom: 100px;
	padding-top: 60px;
}

.blog-ttl {
	color: #F2F2F2;
	font-family: var(--ff-en);
	font-size: 100px;
}

.blog-subttl {
	font-family: var(--ff-en);
	font-size: 28px;
}

.article-wrapper {
	margin-top: 60px;
}

.article-contents {
	width: 100%;
}

.article-body img {
	margin-top: 32px;
	width: 214px;
}

.article-body p {
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 2.4;
	margin-top: 32px;
}

.article-ttl {
	font-size: 18px;
	letter-spacing: 0.078em;
	margin-top: 16px;
	padding-bottom: 20px;
	padding-top: 20px;
	position: relative;
}

.article-ttl::before {
	background-color: #CFCFCF;
	content: "";
	display: block;
	height: 1px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0;
	width: 100%;
}

.article-ttl::after {
	background-color: #CFCFCF;
	bottom: 0;
	content: "";
	display: block;
	height: 1px;
	left: 0px;
	position: absolute;
	right: 0px;
	width: 100%;
}

.article-date {
	display: flex;
	font-size: 14px;
	gap: 20px;
}

.article-date time {
	color: #AAA;
}

.article-cat {
	padding-left: 20px;
	position: relative;
}

.article-cat::before {
	background: #CFCFCF;
	content: "";
	display: inline-block;
	height: 15px;
	left: 0;
	position: absolute;
	top: 0;
	width: 1px;
}

.article-side {
	background: #F2F2F2;
	margin-top: 60px;
	padding: 32px 24px;
	width: 100%;
}

.cat-ttl {
	color: #AAA;
	font-size: 12px;
	letter-spacing: 0.1em;
}

.cat-list {
	margin-top: 16px;
}

.cat-item {
	margin-top: 16px;
}

.cat-item__link {
	font-size: 14px;
	letter-spacing: 0.1em;
}

.pager-btn {
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 100px;
}

.pager-btn .-all::after {
	background: var(--text-color);
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: all 0.3s;
	width: 100%;
}

.pager-btn .-all:hover::after {
	width: 0;
}

.pager-btn .-nolink {
	pointer-events: none;
}

.pager-btn__link {
	color: var(--text-color);
	display: inline;
	font-size: 14px;
	padding-bottom: 10px;
	position: relative;
	text-align: center;
}

.pager-btn__link.-before {
	padding-left: 24px;
	position: relative;
}

.pager-btn__link.-before::before {
	background: url(https://rad-works.com/assets/img/blog/icon-before.svg);
	content: "";
	display: block;
	height: 24px;
	left: -4px;
	position: absolute;
	top: calc(50% - 4px);
	transform: translateY(-50%);
	transition: all 0.3s;
	width: 24px;
}

.pager-btn__link.-before:hover::before {
	left: -8px;
}

.pager-btn__link.-next {
	padding-right: 24px;
	position: relative;
}

.pager-btn__link.-next::after {
	background: url(https://rad-works.com/assets/img/blog/icon-next.svg);
	content: "";
	display: block;
	height: 24px;
	position: absolute;
	right: 4px;
	top: calc(50% - 4px);
	transform: translateY(-50%);
	transition: all 0.3s;
	width: 24px;
}

.pager-btn__link.-next:hover::after {
	right: 0;
}

.inverse {
	background-color: #AAA;
	box-shadow: 0 0 0 100vmax #AAA;
	color: #FFF;
	-webkit-clip-path: inset(0 -100vmax);
	clip-path: inset(0 -100vmax);
}

/* ===============================================
# ブログ一覧
=============================================== */

.blog {
	background: #fff;
	padding: 60px 0;
}

.blog-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.blog-item {
	border: 1px dotted #ebebeb;
	border: 1px dotted #cfcfcf;
	padding: 20px;
}

.blog-link img {
	width: 100%;
}

.blog-contents {
	width: 100%;
}

.blog-body {
	margin-top: 16px;
}

.blog-meta {
	font-size: 12px;
}

.blog-meta .date {
	color: var(--sub-color);
}

.blog-meta .label {
	color: var(--sub-color);
	margin-left: 6px;
}

.blog-body__ttl {
	font-size: 15px;
	margin-top: 16px;
}

.pager-list {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 100px;
}

.pager-item {
	font-size: 14px;
}

.pager-item__link {
	align-items: center;
	background: #fff;
	display: flex;
	height: 100%;
	justify-content: center;
	padding: 8px;
	width: 100%;
}

.pager-item__link.current {
	background: #cfcfcf;
	color: #fff;
}

.contact {
	padding: 60px 0;
}

.contact__box {
	background: #FFF;
	padding: 60px 20px;
}

::-moz-placeholder {
	font-size: 14px;
}

::placeholder {
	font-size: 14px;
}

.form-text__input,
.form-textarea,
.form-select {
	background: #FFF;
	border: 2px solid #111;
	border-radius: 5px;
	font-size: var(--font-base);
	transition: border-color 0.3s;
	width: 100%;
}

.form-text__input:hover,
.form-text__input:focus,
.form-textarea:hover,
.form-textarea:focus,
.form-select:hover,
.form-select:focus {
	border-color: #92a9bd;
	outline: none;
}

.form-text__input,
.form-select {
	height: 56px;
	padding: 12px 13px 11px;
}

.form-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../../../../public/assets/img/select-allow.png) no-repeat center right 18px/9.451px 6.969px;
	border: 2px solid;
	color: var(--text-color); /*font size変更のため*/
	font-size: 14px;
	padding: 15px 46px 14px 16px;
}

.form-textarea {
	min-height: 180px;
	padding: 13px;
	resize: vertical;
}

.contact__form {
	margin-top: 30px;
}

.contact-item {
	font-size: 14px;
	gap: 24px;
}

.contact__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item__title {
	align-items: center;
	display: flex;
	font-weight: var(--fw-medium);
	gap: 0 10px;
	line-height: 1.4375;
}

.contact-item__title-tag {
	background: #1c1f22;
	border-radius: 2px;
	color: #FFF;
	display: inline-block;
	font-size: 10px;
	font-weight: var(--fw-bold);
	letter-spacing: 1.98px;
	line-height: 1;
	padding: 6px;
	text-align: center;
}

.contact-item__title-tag.is-option {
	background: #aaa;
}

.contact-item__input {
	margin-top: 14px;
}

.contact-item__input:focus {
	outline: var(--accent-color-active);
}

.cf__submit {
	margin-top: 30px;
	text-align: center;
}

.-submit:disabled {
	background: #fff;
}

.-submit.-active {
	background: #1c1f22;
	border: 2px solid currentColor;
	color: #FFF;
}

.contact__message {
	display: none;
	margin-top: 60px;
	text-align: center;
}

.contact__message.-error {
	color: #f00;
}

.contact__message__test {
	font-size: 14px;
}

.footer {
	border-top: 1px solid #CFCFCF;
	padding: 30px 0;
	position: relative;
}

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

.footer-insta__icon img {
	width: 23px;
}

.insta-icon__link:hover {
	animation: bounce 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.footer__copyright {
	color: #ababab;
	font-family: var(--ff-en);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.96px;
	line-height: 100%;
	margin-top: 24px;
	text-align: center;
}

.page-top {
	bottom: 10px;
	opacity: 0;
	position: fixed;
	right: 10px;
	transition: opacity 0.3s, visible 0.3s;
	visibility: hidden;
	width: min(13.3333333333%, 50px);
}

.page-top.is-show {
	opacity: 1;
	visibility: visible;
}

.hidden-pc {
	display: none;
}

.inline-block {
	display: inline-block;
}

@media (hover: hover) {

.btn:hover {
	background: #151416;
	color: #fff;
}

}

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

.inner {
	margin: 0 auto;
	max-width: 960px;
	padding-left: 30px;
	padding-right: 30px;
}

.header__inner {
	height: 90px;
	margin: 0 auto;
	max-width: 1280px;
	width: 100%;
}

.header__logo a img {
	width: 135px;
}

.header__logo {
	width: 135px;
}

.hnav {
	align-items: center;
	display: flex;
	gap: 0 40px;
	justify-content: space-between;
	margin-left: auto;
}

.header__open {
	display: none;
}

.drawer-content {
	display: none;
}

.drawer-content__link {
	font-size: var(--font-base);
}

.mv {
	height: calc(90vh - 90px);
	margin-top: 90px;
}

.sec__title {
	font-size: 32px;
	letter-spacing: 1px;
}

.mv__btn {
	margin-top: 30px;
	text-align: left;
}

.news__lists {
	margin-top: 12px;
}

.news-link {
	flex-direction: row;
	gap: 0px;
}

.news-link__meta {
	flex: 0 0 247px;
	gap: 0 14px;
}

.news-link__date {
	flex: 0 0 119px;
}

.about {
	padding: 120px 0 60px;
}

.about__inner {
	max-width: 1160px;
	padding-left: 40px;
	padding-right: 80px;
}

.about__title img {
	width: 230px;
}

.about__img2 {
	margin-top: -100px;
}

.about__text {
	font-size: 16px;
}

.about__btn {
	margin-top: 30px;
}

.movie {
	padding: 100px 0;
}

.movie__subtitle {
	font-size: 16px;
	letter-spacing: 1.28px;
}

.movie__iframe {
	margin-top: 56px;
}

.movie__iframe iframe {
	aspect-ratio: 640/360;
	height: auto;
	width: 640px;
}

.sec__subtitle {
	font-size: 16px;
	letter-spacing: 1.28px;
}

.company {
	padding: 100px 0;
}

.company__inner {
	margin: 0 auto;
	max-width: 960px;
	padding-left: 30px;
	padding-right: 30px;
}

.company__title {
	font-size: 30px;
}

.company__content {
	margin-top: 60px;
	padding-bottom: 0;
}

.company__table tr {
	align-items: center;
	flex-direction: row;
}

.company__table th {
	letter-spacing: 0.6px;
	padding: 34px 0;
	width: 280px;
}

.company__table td {
	flex-grow: 1;
	padding: 34px 0;
}

.company__map {
	margin-left: 7px;
}

.map__iframe {
	margin-top: 80px;
}

.map__iframe iframe {
	aspect-ratio: 960/540;
	height: auto;
	width: 960px;
}

.gallery {
	padding-bottom: 100px;
	padding-top: 100px;
}

.gallery__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1280px;
	padding-left: 30px;
	padding-right: 30px;
}

.work__subtitle {
	font-size: 16px;
}

.gallery__slide {
	margin-top: 60px;
}

.gallery-item__text {
	font-size: 14px;
	margin-top: 20px;
}

.gallery__button-prev,
.gallery__button-next {
	height: 50px;
	width: 50px;
}

.gallery__button-prev {
	left: 0;
}

.gallery__button-next {
	right: 0;
}

.works-ttl {
	font-size: 48px;
}

.works-page__inner {
	margin: 0 auto;
	max-width: 1024px;
	padding-left: 30px;
	padding-right: 30px;
}

.works-detail__inner {
	margin: 0 auto;
	max-width: 860px;
	padding-left: 30px;
	padding-right: 30px;
}

.works__title {
	font-size: 30px;
}

.works-detail__ttl {
	font-size: 18px;
}

.works-detail__content {
	margin-top: 100px;
	padding-bottom: 0;
}

.photo-row {
	grid-template-columns: repeat(2, 1fr);
}

.work-date-table {
	width: 80%;
}

.work-date-table-row {
	grid-template-columns: 180px 1fr;
}

.works-detail__btn {
	margin-top: 120px;
}

.article-wrapper {
	display: flex;
	gap: 100px;
	justify-content: space-between;
}

.article-contents {
	width: 800px;
}

.article-side {
	background: #FFF;
	margin-top: 0;
	padding: 0;
	width: 160px;
}

.blog__inner {
	margin: 0 auto;
	max-width: 1020px;
	padding-left: 30px;
	padding-right: 30px;
}

.blog-link {
	display: flex;
	gap: 32px;
}

.blog-link img {
	width: 160px;
}

.blog-contents {
	width: calc(100% - 160px);
}

.contact {
	padding: 100px 0;
}

::-moz-placeholder {
	font-size: 16px;
}

::placeholder {
	font-size: 16px;
}

.form-select {
	font-size: 16px;
}

.contact__form {
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	max-width: 612px;
}

.contact-item {
	align-items: center;
	display: flex;
	font-size: 16px;
	gap: 32px;
}

.contact-item__title {
	flex-shrink: 0;
	justify-content: flex-end;
	width: 180px;
}

.contact-item__title-tag {
	font-size: 11px;
	padding: 6px 8px;
}

.contact-item__input {
	flex-grow: 1;
	margin-top: 0;
}

.cf__submit {
	margin-top: 38px;
}

.contact__message__test {
	font-size: 16px;
}

.page-top {
	bottom: 30px;
	right: 16px;
	width: 76px;
}

.hidden-pc {
	display: inline;
}

}

