@charset "utf-8";

:root {
    --color-primary: #0CC0DF;
    --color-secondary: #00B8AE;
    --color-tertiary: #C3F2FE;

    --color-white: #fff;
    --color-light: #EBF8FC;
    --color-gray: #999;
    --color-dark: #282828;

    --color-opacity-light4: rgba(255, 255, 255, 0.4);
    --color-opacity-light9: rgba(255, 255, 255, 0.9);
    --color-opacity-dark2: rgba(0, 0, 0, 0.2);
    --color-opacity-dark4: rgba(0, 0, 0, 0.4);

    --color-border-dark: #ccc;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Component ----------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* ------------------------------------- */
/* Customize --------------------------- */
/* ------------------------------------- */

/* ------------------------------------- */
/* Title ------------------------------- */
/* ------------------------------------- */
/* Section Title */
.c-title {
	margin-bottom: 40px;
}
.c-title span {
    display: block;
}

.c-title--description {
	margin-bottom: 32px;
}
.c-title--side {
	margin-bottom: 32px;
}

.c-title__english {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 1.2;
    color: var(--color-primary);
	font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
}

.c-title__japanese {
	font-size: 16px;
	line-height: 1.4;
	font-family: "Roboto", sans-serif;
    font-weight: 700;
}

@media screen and (min-width: 640px) {
	.c-title {
		margin-bottom: 48px;
	}

	.c-title--description {
		margin-bottom: 32px;
	}
	.c-title--side {
		margin-bottom: 32px;
	}

	.c-title__japanese {
		font-size: 20px;
	}

	.c-title--description~.c-description {
		margin-bottom: 56px;
	}
}

@media screen and (min-width: 960px) {
    .c-title {
		margin-bottom: 64px;
	}

    .c-title__english {
        font-size: 56px;
    }
}

@media screen and (min-width: 1200px) {
    .c-title__english {
        font-size: 70px;
    }
}

/* Small Title */
.c-title--small {
    margin-top: 2px;
    font-size: 16px;
	line-height: 1.5;
    font-weight: 700;
}

@media screen and (min-width: 960px) {
    .c-title--small {
        font-size: 18px;
    }
}

/* ------------------------------------- */
/* Text -------------------------------- */
/* ------------------------------------- */
/* Large Text */
.c-text--large {
    font-size: 24px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
}

@media screen and (min-width: 960px) {
    .c-text--large {
        font-size: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .c-text--large {
        font-size: 40px;
    }
}

/* Section Description */
@media screen and (min-width: 640px) {
    .c-description {
		margin-bottom: 40px;
		font-size: 18px;
	}
}

/* ------------------------------------- */
/* Label ------------------------------- */
/* ------------------------------------- */
.c-label {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: var(--color-primary);
}

/* ------------------------------------- */
/* Button ------------------------------ */
/* ------------------------------------- */
.u-button--top {
	margin-top: 56px;
}

/* Multiple Button */
.c-button--flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
}

@media screen and (min-width: 640px) {
    .c-button--flex {
        display: flex;
        justify-content: center;
        flex-direction: unset;
    }
}

@media screen and (min-width: 1200px) {
    .c-button--flex {
        flex-wrap: nowrap;
    }
}

/* Default Button */
.c-button > * {
	position: relative;
    display: inline-block;
	min-width: 100%;
    padding: 0 72px 0 24px;
	font-size: 14px;
    line-height: 54px;
	border: 1px solid var(--color-primary);
	border-radius: calc(56px / 2);
	transition: 0.3s ease-in-out;
	font-weight: 700;
	background: var(--color-light);
}
.c-button > *:before {
	position: absolute;
    content: '';
    top: 50%;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
    background: var(--color-primary);
}
.c-button > *:after {
	position: absolute;
    font-family: "Font Awesome 6 Free";
    content: "\f061";
    font-weight: 900;
    top: 0;
    right: 32px;
    bottom: 0;
    font-size: 14px;
    transition: 0.3s ease-in-out;
    color: var(--color-white);
}
.c-button > *:hover {
    color: var(--color-white);
    background: var(--color-primary);
}
.c-button > *:hover:before {
    background: var(--color-white);
}
.c-button > *:hover:after {
    color: var(--color-primary);
}

@media screen and (min-width: 640px) {
    .c-button > * {
		min-width: 280px;
		line-height: 62px;
		border-radius: calc(64px / 2);
	}
	.c-button > *:after {
		right: 34px;
		font-size: 14px;
	}
	.c-button > *:before {
		width: 40px;
		height: 40px;
	}
}

/* Small Button */
.c-button--small {
	height: 32px;
}
.c-button--small > * {
	position: relative;
	display: inline-block;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
	transition: 0.3s ease-in-out;
    background: var(--color-primary);
}
.c-button--small > *:before {
	position: absolute;
    font-family: "Font Awesome 6 Free";
    content: "\f061";
    font-size: 14px;
    font-weight: 900;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: 0.3s ease-in-out;
    color: var(--color-white);
}
.c-button--small > *:hover {
    background: var(--color-white);
}
.c-button--small > *:hover:before {
    color: var(--color-primary);
}

/* ------------------------------------- */
/* Wave -------------------------------- */
/* ------------------------------------- */
.c-wave img {
    width: 100vw;
    height: 28px;
    object-fit: unset;
}

.c-waveTop {
    position: absolute;
    top: -1px;
    z-index: 2;
    transform: rotate(180deg);
}

.c-waveBottom {
    position: absolute;
    bottom: -1px;
    z-index: 2;
}

.p-conseptSlider .c-waveTop {
	top: 7px;
}

@media screen and (min-width: 960px) {
    .c-wave img {
        height: 32px;
    }
}

@media screen and (min-width: 1530px) {
    .c-wave img {
        height: 64px;
    }
}

@media screen and (min-width: 1920px) {
    .c-wave img {
        height: 80px;
    }
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Common -------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
* {
    font-size: 14px;
    line-height: 1.67;
    color: var(--color-dark);
    box-sizing: border-box;
    text-transform: none !important;
    list-style: none;
    font-weight: 300;
}

@media screen and (min-width: 640px) {
    * {
        font-size: 16px;
    }
}

html {
    scroll-behavior: smooth;
    font-family: "Noto Sans JP", sans-serif;
}

img {
    width: 100%;
    object-fit: cover;
}

a,
a:hover {
    text-decoration: none;
}

/* ------------------------------------- */
/* Section ----------------------------- */
/* ------------------------------------- */
.l-section--large {
    padding-top: 80px;
    padding-bottom: 80px;
}
.l-section--large--top {
    padding-top: 80px;
}
.l-section--large--bottom {
    padding-bottom: 80px;
}

.l-section {
    padding-top: 56px;
    padding-bottom: 56px;
}
.l-section--top {
    padding-top: 56px;
}
.l-section--bottom {
    padding-bottom: 56px;
}

.l-section--small {
    padding-top: 40px;
    padding-bottom: 40px;
}
.l-section--small--top {
    padding-top: 40px;
}
.l-section--small--bottom {
    padding-bottom: 40px;
}

@media screen and (min-width: 960px) {
    .l-section--large {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .l-section--large--top {
        padding-top: 120px;
    }
    .l-section--large--bottom {
        padding-bottom: 120px;
    }

    .l-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .l-section--top {
        padding-top: 80px;
    }
    .l-section--bottom {
        padding-bottom: 80px;
    }

    .l-section--small--top--pc {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media screen and (min-width: 1920px) {
    .l-section--large {
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .l-section--large--top {
        padding-top: 160px;
    }
    .l-section--large--bottom {
        padding-bottom: 160px;
    }
}

/* ------------------------------------- */
/* Container --------------------------- */
/* ------------------------------------- */
.l-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.l-container--small {
    max-width: 960px;
    margin: 0 auto;
}

.l-container--xsmall {
    max-width: 640px;
    margin: 0 auto;
}

@media screen and (min-width: 640px) {
    .l-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* ------------------------------------- */
/* Margin ------------------------------ */
/* ------------------------------------- */
.mt0 {
    margin-top: 0 !important;
}

.u-margin--auto--wrap > * {
	margin-right: auto !important;
	margin-left: auto !important;
}

.u-marginTop--minus30--wrap > * {
	margin-top: -30px;
}
.u-marginTop--16 {
	margin-top: 16px;
}
.u-marginTop--24 {
	margin-top: 24px;
}
.u-marginTop--40 {
	margin-top: 40px;
}

.u-marginBottom--24 {
	margin-bottom: 24px;
}

/* ------------------------------------- */
/* Text -------------------------------- */
/* ------------------------------------- */
.u-text--regular {
    font-weight: 400;
}
.u-text--medium {
    font-weight: 500;
}
.u-text--bold {
    font-weight: 700;
}

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

/* ------------------------------------- */
/* Flex -------------------------------- */
/* ------------------------------------- */
.u-flex--center {
    align-items: center;
}

/* ------------------------------------- */
/* Order ------------------------------- */
/* ------------------------------------- */
.u-order2-1--pcTablet {
    order: 1;
}

.u-order2-2--pcTablet {
    order: 2;
}

@media screen and (min-width: 960px) {
    .u-order2-1--pcTablet {
        order: 2;
    }
    
    .u-order2-2--pcTablet {
        order: 1;
    }
}

/* ------------------------------------- */
/* Display ----------------------------- */
/* ------------------------------------- */
.u-display--xsmall {
    display: block !important;
}

.u-display--small {
    display: block !important;
}

.u-display {
    display: block !important;
}

@media screen and (min-width: 640px) {
    .u-display--xsmall {
        display: none !important;
    }
}

@media screen and (min-width: 960px) {
    .u-display--small {
        display: none !important;
    }
}

@media screen and (min-width: 1200px) {
    .u-display {
        display: none !important;
    }
}

/* ------------------------------------- */
/* Hidden ------------------------------ */
/* ------------------------------------- */
.u-hidden--xsmall {
    display: none !important;
}

.u-hidden--small {
    display: none !important;
}

.u-hidden {
    display: none !important;
}

@media screen and (min-width: 640px) {
    .u-hidden--xsmall {
        display: block !important;
    }
}

@media screen and (min-width: 960px) {
    .u-hidden--small {
        display: block !important;
    }
}

@media screen and (min-width: 1200px) {
    .u-hidden {
        display: block !important;
    }
}

/* ------------------------------------- */
/* Header ------------------------------ */
/* ------------------------------------- */
.l-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 12px;
    z-index: 10;
}

.l-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: auto;
}

.l-header__logo a {
    display: block;
    border-radius: 50%;
    transition: 0.2s ease-in-out;
}
.l-header__logo a:hover {
    opacity: 0.6;
}
.l-header__logo img {
    width: 80px;
    border-radius: 50%;
    box-shadow: 2px 2px 20px rgba(92, 147, 171, 0.4);
}

.l-hamburger-open {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 1;
    box-shadow: 2px 2px 20px rgba(92, 147, 171, 0.4);
    transition: 0.2s ease-in-out;
}
.l-hamburger-open:hover {
    opacity: 0.6;
}

.l-hamburger {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-primary);
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 1s ease-out;
    display: flex;
    justify-content: unset;
    align-items: center;
    flex-direction: column;
}
.l-hamburger.active {
    clip-path: circle(150% at 100% 0%);
}

.l-hamburger__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    width: 100vw;
    height: auto;
    padding: 56px 16px 32px;
    background: var(--color-white);
}

.l-hamburger__logo a {
    transition: 0.2s ease-in-out;
}
.l-hamburger__logo a:hover {
    opacity: 0.6;
}
.l-hamburger__logo img {
    width: 240px;
}

.l-hamburger__sns {
    display: flex;
    gap: 16px;
	padding-left: 0;
}

.l-hamburger__icon a {
    transition: 0.3s ease-in-out;
}
.l-hamburger__icon a:hover {
    opacity: 0.6;
}
.l-hamburger__icon i {
    font-size: 32px;
    color: var(--color-primary);
}

.l-hamburger__navi {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 16px;
    width: 100vw;
    padding: 32px 8px 24px;
}

.l-hamburger__navi ul {
	padding-left: 0;
}

.l-hamburger__item a {
    display: inline-block;
    padding: 8px;
    font-weight: 700;
    transition: 0.3s ease-in-out;
    color: var(--color-white) !important;
}
.l-hamburger__item a:hover {
    opacity: 0.6;
}

.l-hamburger-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: none;
    opacity: 0;
    transition: 0.2s ease-in-out;
}
.l-hamburger-close:hover {
    opacity: 0.6 !important;
}

@media screen and (min-width: 640px) {
    .l-header {
        padding-top: 16px;
    }

    .l-header__logo img {
        width: 120px;
    }

    .l-hamburger {
        justify-content: center;
        flex-direction: unset;
    }

    .l-hamburger__meta {
        width: 40vw;
        height: 100vh;
        padding: 0;
    }

    .l-hamburger__navi {
        gap: 40px;
        width: 60vw;
        padding: 16px;
    }

    .l-hamburger__item a {
        font-size: 16px;
    }

    .l-hamburger-open {
        width: 68px;
        height: 68px;
    }

    .l-hamburger-close {
        width: 68px;
        height: 68px;
    }
}

@media screen and (min-width: 960px) {
    .l-hamburger__navi {
        gap: 80px;
        padding: 0;
    }

    .l-hamburger__item a {
        font-size: 18px;
    }
}

/* ------------------------------------- */
/* Footer ------------------------------ */
/* ------------------------------------- */
.l-footer {
    position: relative;
    background: var(--color-white);
}

.l-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
}

.l-footer__meta {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.l-footer__logo {
    text-align: center;
}
.l-footer__logo img {
    width: 80%;
}

.l-footer__sns {
    display: flex;
    gap: 16px;
	padding-left: 0;
}

.l-footer__icon a {
    transition: 0.3s ease-in-out;
}
.l-footer__icon a:hover {
    opacity: 0.6;
}
.l-footer__icon i {
    font-size: 40px;
    color: var(--color-primary);
}

.l-footer__copyright small {
	font-size: 12px;
    color: var(--color-gray);
}

.l-footer__navi {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-right: -8px;
    margin-left: -8px;
}

.l-footer__navi ul {
	padding-left: 0;
}

.l-footer__item a {
    display: inline-block;
    padding: 8px;
    font-size: 14px;
    transition: 0.3s ease-in-out;
	color: var(--color-dark);
}
.l-footer__item a:hover {
    opacity: 0.6;
}

.l-footer__title {
    position: relative;
    margin-top: -12px;
    margin-bottom: 24px;
}
.l-footer__title:after {
    position: absolute;
    content: '';
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background: var(--color-border-dark);
}
.l-footer__title .c-title__english {
    margin-bottom: 6px;
    font-size: 40px;
}
.l-footer__title .c-title__japanese {
    font-size: 14px;
}

.l-footer__company {
    width: 100%;
    padding: 16px;
    border-radius: 20px;
    background: var(--color-light);
}

.l-footer__information {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.l-footer__name {
    font-size: 18px;
	font-weight: 700;
}

.l-footer__address {
    font-size: 13px;
}

.l-footer__origin {
    font-size: 13px;
    color: var(--color-primary);
}

.l-footer__pageTop {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 2px 2px 20px rgba(92, 147, 171, 0.4);
    cursor: pointer;
}
.l-footer__pageTop:hover {
    transition: 1s ease-in-out;
    transform: rotate(360deg);
}

.l-footer__logo img {
	margin: auto;
}

.l-footer__aside {
	display: grid;
	justify-content: center;
	gap: 24px;
	width: 100%;
}

.l-footer__asideList {
	display: flex;
	gap: 16px 24px;
	flex-wrap: wrap;
	padding-left: 0;
}

.l-footer__asideItem a {
	font-size: 12px;
	color: var(--color-dark);
	text-decoration: underline;
}

@media screen and (min-width: 640px) {
    .l-footer__container {
        align-items: flex-start;
        flex-direction: unset;
        gap: 48px;
    }

    .l-footer__meta {
        align-items: baseline;
    }

    .l-footer__logo {
        text-align: left;
    }
    .l-footer__logo img {
        width: 180px;
    }

    .l-footer__icon i {
        font-size: 28px;
    }

    .l-footer__navi {
        gap: 40px;
    }

    .l-footer__item a {
        padding: 4px;
    }

    .l-footer__company {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 40px;
        padding: 24px;
    }

    .l-footer__title {
        margin-bottom: 0;
    }

    .l-footer__name {
        font-size: 20px;
    }

    .l-footer__pageTop {
        position: absolute;
        right: 24px;
        bottom: 24px;
        width: 60px;
        height: 60px;
    }
	
	.l-footer__aside {
		display: flex;
		gap: 48px;
	}

	.l-footer__asideList {
		gap: 24px;
	}
}

@media screen and (min-width: 960px) {
    .l-footer__logo img {
        width: 240px;
    }

    .l-footer__navi {
        gap: 48px;
    }
}

@media screen and (min-width: 1200px) {
    /* .l-footer__container {
        justify-content: space-around;
    } */

    .l-footer__logo img {
        width: 180px;
    }

    .l-footer__navi {
        gap: 32px;
    }

    /* .l-footer__company {
        width: auto;
    } */
}

/* ------------------------------------- */
/* Flowing ----------------------------- */
/* ------------------------------------- */
.p-flowing {
    position: relative;
}

.p-flowing__ferry {
    position: absolute;
    bottom: 0;
    left: 15px;
}
.p-flowing__ferry img {
    height: 124px;
}

.p-flowing__image img {
    height: auto !important;
}

.p-flowing__wrapper {
    position: relative;
    z-index: -1;
}

@media screen and (min-width: 640px) {
    .p-flowing__ferry {
        left: 24px;
    }
}

@media screen and (min-width: 960px) {
    .p-flowing__ferry img {
        height: 110px;
    }
}

@media screen and (min-width: 1200px) {
    .p-flowing__ferry {
        left: 24px;
    }
}

@media screen and (min-width: 1530px) {
    .p-flowing__ferry {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (min-width: 1920px) {
    .p-flowing__ferry img {
        height: 220px;
    }
}

/* ------------------------------------- */
/* Memory ------------------------------ */
/* ------------------------------------- */
.p-memory {
    position: relative;
    background: var(--color-primary);
}

.p-memory__title {
    margin-bottom: 40px;
}
.p-memory__title span {
    color: var(--color-white);
}

.p-memory__textLarge {
    margin-bottom: 32px;
    color: var(--color-white);
}

.p-memory__buttonFlex {
    justify-content: unset;
}

/* ------------------------------------- */
/* Charm ------------------------------- */
/* ------------------------------------- */
.p-charm__content *:not(:last-child) {
    margin-bottom: 32px;
}

.p-charm__text {
    font-size: 16px;
}

@media screen and (min-width: 960px) {
    .p-charm__text {
        font-size: 18px;
    }
}

/* ------------------------------------- */
/* List1 ------------------------------- */
/* ------------------------------------- */
.p-list1__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.p-list1__item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}

.p-list1__image {
    margin-bottom: 20px;
}

.p-list1__information *:not(:last-child) {
    margin-bottom: 8px;
}

.p-list1__data {
    display: flex;
    justify-content: space-between;
}

.p-list1__button--small {
    margin-left: 8px;
}

@media screen and (min-width: 640px) {
    .p-list1__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-list1__item {
        display: block;
    }
}

@media screen and (min-width: 960px) {
    .p-list1__list {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ------------------------------------- */
/* Spot -------------------------------- */
/* ------------------------------------- */
.p-spot {
    position: relative;
    background: url(../images/bg-sightseeing.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.p-spot__item {
    padding: 16px;
    border-radius: 10px;
    box-shadow: 2px 2px 20px rgba(92, 147, 171, 0.16);
    background: var(--color-white);
}

.p-spot__image {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.p-spot__image img {
	height: 100%;
    border-radius: 0 20px 0 20px;
}

@media screen and (min-width: 960px) {
    .p-spot__container {
        position: relative;
    }
    .p-spot__container:after {
        position: absolute;
        content: '';
        top: 0;
        right: 0;
        width: 196px;
        height: 246px;
        background: url(../images/deco-spot01.gif);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

/* ------------------------------------- */
/* Slider2 ----------------------------- */
/* ------------------------------------- */
.p-slider2 {
    overflow: hidden;
}

.p-slider2__container {
    position: relative;
    margin-right: 15px;
    margin-left: 15px;
    padding-bottom: 48px;
}

.p-slider2__slide {
    transition: transform 1s ease;
    transform: translateY(0);
}

.p-slider2__slide.js-slider2-center {
    transform: translateY(48px);
}

.p-slider2__image img {
    border-radius: 20px;
}

.p-slider2__pagination {
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
}
.p-slider2__pagination .swiper-pagination-bullet {
    width: 40px;
}

@media screen and (min-width: 640px) {
    .p-slider2__slide.js-slider2-left {
        transform: translateY(48px);
    }
}

@media screen and (min-width: 960px) {
    .p-slider2__container {
        margin-right: -200px;
        margin-left: -200px;
        padding-bottom: 80px;
    }

    .p-slider2__slide.js-slider2-left {
        transform: translateY(0);
    }

    .p-slider2__slide.js-slider2-center {
        transform: translateY(80px);
    }
}
@media screen and (min-width: 1480px) {
    .p-slider2 {
        max-width: 1480px;
        margin: auto;
    }
}

/* ------------------------------------- */
/* Attention --------------------------- */
/* ------------------------------------- */
.p-attention__content:not(:last-child) {
    margin-bottom: 32px;
}

.p-attention-title--small {
    margin-bottom: 0;
    padding: 16px 40px 16px 16px;
    border-radius: 20px 20px 0 0;
    color: var(--color-text-light);
    background: var(--color-primary);
}

.p-attention__information {
    padding: 16px 12px;
    border-radius: 0 0 20px 20px;
    border: 1px solid var(--color-primary);
    border-top: none;
    background: var(--color-background-default);
}
.p-attention__information * {
    color: var(--color-text-default);
}
.p-attention__information *:not(:last-child) {
    margin-bottom: 12px;
}

.p-attention__item {
    position: relative;
    padding-left: 18px;
}
.p-attention__item:before {
    position: absolute;
    content: '';
    top: 14px;
    left: 0;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: var(--color-primary);
}

.p-attention__imageList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin-left: -18px;
}

.p-attention__image:not(:last-child) {
    margin-bottom: 0;
}
.p-attention__image img {
    border-radius: 20px;
}

.p-attention__annotation {
    font-size: 12px;
}

@media screen and (min-width: 640px) {
    .p-attention__imageList {
        grid-template-columns: 2fr 2fr 1fr;
        gap: 24px;
    }
}

@media screen and (min-width: 960px) {
    .p-attention-title--small {
        padding: 16px 32px;
    }

    .p-attention__information {
        padding: 24px 32px;
    }
}

/* ------------------------------------- */
/* FadeIn ------------------------------ */
/* ------------------------------------- */
.js-fadeIn {
    opacity: 0;
}

.js-fadeIn.active {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ------------------------------------- */
/* About ------------------------------- */
/* ------------------------------------- */
/* About2 */
.p-about2__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.p-about2__image img {
    border-radius: 20px;
}

.p-about2__text:not(:last-child) {
    margin-bottom: 24px;
}

.p-about2__button {
    margin-top: 48px;
}

@media screen and (min-width: 640px) {
    .p-about2__content {
        gap: 40px;
    }
}

@media screen and (min-width: 960px) {
    .p-about2__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ------------------------------------- */
/* Table Parts ------------------------- */
/* ------------------------------------- */
/* TableParts1 */
.p-tableParts1 {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    background: var(--color-background-default);
}

.p-tableParts1__list:not(:last-child) {
    border-bottom: 2px dotted var(--color-primary);
}

.p-tableParts1__data {
    padding: 6px 12px;
    font-size: 12px;
}

@media screen and (min-width: 640px) {
    .p-tableParts1 {
        width: 400px;
    }
}


/* TableParts2 */
.p-tableParts2 {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
}

.p-tableParts2__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.p-tableParts2__list:not(:last-child) {
    border-bottom: 2px dotted var(--color-primary);
}
.p-tableParts2__list:first-child .p-tableParts2__title {
    border-radius: 11px 0 0 0;
}
.p-tableParts2__list:last-child .p-tableParts2__title {
    border-radius: 0 0 0 11px;
}

.p-tableParts2__title {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 300;
    background: var(--color-background-default);
}

.p-tableParts2__data {
    padding: 6px 12px;
    font-size: 14px;
}

@media screen and (min-width: 640px) {
    .p-tableParts2 {
        width: 300px;
    }
}

/* Gallery1 */
.p-gallery1 {
    position: relative;
}

.p-gallery1__container {
    position: relative;
    overflow: hidden;
}

.p-gallery1__image a {
    transition: 0.3s ease-in-out;
}
.p-gallery1__image a:hover {
    opacity: 0.6;
}
.p-gallery1__image img {
    height: 140px;
}

.p-gallery1__prev,
.p-gallery1__next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 1;
    background: var(--color-white);
}
.p-gallery1__prev:after,
.p-gallery1__next:after {
    font-size: 20px;
    color: var(--color-primary);
}

.p-gallery1__prev {
    left: 15px;
}

.p-gallery1__next {
    right: 15px;
}

.p-gallery1__pagination .swiper-pagination-bullet-active {
    background: var(--color-text-default);
}

@media screen and (min-width: 640px) {
    .p-gallery1__image img {
        height: 160px;
    }
}

@media screen and (min-width: 960px) {
    .p-gallery1__prev {
        left: 24px;
    }
    
    .p-gallery1__next {
        right: 24px;
    }
}
/* /Gallery1 */

/* Gallery2 */
.p-gallery2__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.p-gallery2 .swiper-wrapper{
    transition-timing-function: linear;
}

@media screen and (min-width: 1530px) {
    .p-gallery2__image img {
        height: 320px;
    }
}

@media screen and (min-width: 1920px) {
    .p-gallery2__image img {
        height: 400px;
    }
}
/* /Gallery2 */

/* ------------------------------------- */
/* Wave Canvas ------------------------- */
/* ------------------------------------- */
.c-waveCanvas {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 0;
}

/* ------------------------------------- */
/* Tab --------------------------------- */
/* ------------------------------------- */
.p-tab {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 auto 32px;
    border-radius: calc(35px / 2);
}

.p-tab__switch {
    padding: 0 16px;
    line-height: 35px;
    font-weight: 700;
    border: 1px solid var(--color-primary);
    border-radius: calc(37px / 2);
    transition: 0.3s ease-in-out;
    background: var(--color-light);
    cursor: pointer;
}
.p-tab__switch:hover {
    color: var(--color-white);
    background: var(--color-primary);
}

.p-tab__switch.active {
    color: var(--color-white);
    background: var(--color-primary);
}

@media screen and (min-width: 640px) {
    .p-tab {
        width: calc(150px * 4);
    }

    .p-tab__switch {
        padding: 0 20px;
        font-size: 16px;
    }
}

/* Tab01 */
.p-tab01 {
    width: auto;
}

.p-tab01__content {
    margin-bottom: 56px;
}

.p-tab01__item {
    display: none;
}

.p-tab01__item.visible {
    display: block;
}

@media screen and (min-width: 640px) {
    .p-tab01 {
        width: calc(120px * 4);
    }
}

@media screen and (min-width: 960px) {
    .p-tab01 {
        width: calc(150px * 4);
    }
}

/* Tab02 */
.p-tab02 {
    width: auto;
}

.p-tab02__content .p-tab02__panel {
    display: none;
}

.p-tab02__content .p-tab02__panel.active {
    display: block;
}

@media screen and (min-width: 640px) {
    .p-tab02 {
        width: calc(120px * 3);
    }
}

@media screen and (min-width: 960px) {
    .p-tab02 {
        width: calc(150px * 3);
    }
}

/* ------------------------------------- */
/* Google Form ------------------------- */
/* ------------------------------------- */
.p-googleForm iframe {
    max-width: 1200px;
    width: 100%;

    height: 600px;
}