@charset "UTF-8";
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .05rem;
    color: #333;
    box-sizing: border-box;
    word-break: normal;
    line-break: strict; 
}
*, *::before, *::after {
    box-sizing: border-box;
}
main {
    overflow: hidden;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:hover {
    opacity: .7;
}
img {
    display: block;
}
li {
    list-style: none;
}

/* * {
    outline:1px solid #0000FF;
} */

/*--------共通パーツ--------*/
.section-title {
    color: #01386b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.message-btn-container {
    text-align: center;
}
.btn {
    position: relative;
    display: inline-block;
    align-items: center;
    background-color: #01386b;
    line-height: 1.5;
    border-radius: 4px;
    border: solid 1px #01386b;
    padding: 1rem 3.2rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
}
.btn-hex {
    position: absolute;
    background-color: #fff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    top: 50%;
    right: 4%;
    transform: rotate(0deg) translate(-50%, -50%);
    transform-origin: center;
    width: 2rem;
    opacity: 1;
    z-index: 1;
}
.btn-hex:hover{
    background-color: #01386b;
    color: #fff;
}
.btn-hex::before {
    position: absolute;
    content: "→";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #01386b;
    width: 1rem;
}
.btn:hover {
    background-color: #fff;
    color: #01386b;
    opacity: 1;
}
.btn:hover::before {
    background-color: #01386b;
    color: #fff;
}
.btn .read-more {
    display: inline-block;
    transform: translateX(-20px);
}
/*--------六角形ボタンの共通設定--------*/
.btn-link {
    position: absolute;
    height: auto;
    aspect-ratio: 200 / 173;
}
.btn-link::before, .btn-link::after {
    position: absolute;
    content: "";
	top: 0;
	bottom: 0;
	left: 0;
    z-index: 2;
    vertical-align: middle;
	margin: auto;
}
.btn-link::before {
    top: 0%;
    left: 34%;
	width: 16px;
	height: 1px;
	background: #fff;
}
.btn-link::after {
	left: 47%;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.btn-link:hover::before {
    background: #01386B;
}
.btn-link:hover::after {
    border-top: 1px solid #01386B;
	border-right: 1px solid #01386B;
}
.btn-hex-bl-bg {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-color: #01386B;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: .3s;
}
.btn-hex-bl-border {
    position: absolute;
    z-index: 0;
    inset: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: .3s;
}
.btn-link:hover .btn-hex-bl-border {
    position: absolute;
    inset: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: .3s;
}
.btn-link:hover {
    opacity: 1;
}
.btn-link:hover .btn-hex-bl-bg {
    background-color: #fff;
    transform: rotate(90deg);
}
.btn-link:hover .btn-hex-bl-border {
    background-color: #01386B;
    transform: scale(1.02) rotate(90deg);
}
/*--------ヘッダー--------*/
.header {
    position: fixed;
    top: -1rem;
    right: 8px;
    z-index: 30;
    background-color: #ff9233;
    width: 120px;
    height: auto;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    cursor: pointer
}
.header-nav {
    width: 100%;
    height: 100%;
}
.header-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
}
.dots span {
    display: inline-block;
    border-radius: 50%;
    margin-left: 4px;
    background-color: #fff;
    width: 12px;
    height: auto;
    transform: rotate(90deg);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
}
.dots span:first-child {
    margin-left: 0;
}
.header-nav .header-list {
    display: none;
}
.header-nav.open .header-list {
    display: block;
}
/*--------ハンバーガーメニューの設定--------*/
#nav_toggle_text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}
#close_toggle {
    display: block;
    padding: 1em;
    text-align: right
}
#gnav_overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 100vw;
    height: 100vh;
    background-color: #F3F2F2;
    background-image: url(../img/line-back.webp);
    transform: translateY(-100%);
    transform-origin: top center;
    transition: 0.6s ease;
    overflow: hidden;
}
#gnav_overlay.active {
    transform: translateY(0);
}
.header-nav.open {
    overflow: hidden;
}
.header-nav.open #gnav_overlay {
    display: block;
}
/*-----展開後のヘッダー--------*/
.header-list {
    position: fixed;
    top: 50%;
    left: 68%;
    z-index: 10;
    width: 30%;
    height: 100%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .7s;
    pointer-events: none;
}
#gnav_overlay.active .header-list {
    opacity: 1;
    pointer-events: initial;
}
.header-nav.open .header-list {
    opacity: 1;
    pointer-events: auto;
}
.header-item {
    position: absolute;
    background-color: #bfcdda;
    width: auto;
    height: calc((100% / 4) - 3.4rem);
    transform: translate(-50%, -50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    transition: .3s;
}
.header-item-icon {
    width: 24%;
    min-width: 32px;
    height: 24%;
    min-height: 32px;
    margin-bottom: 8px;
}
.header-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-item:first-child {
    top: 18%;
    left: 10%;
}
.header-item:nth-child(2) {
    top: 33%;
    left: 40%;
}
.header-item:nth-child(3) {
    top: 50%;
    left: 10%;
}
.header-item:nth-child(4) {
    top: 67%;
    left: 40%;
}
.header-item:nth-child(5) {
    top: 82%;
    left: 10%;
}
.header-item:nth-child(2n) {
    background-color: #ffc796;
}
.header-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.header-read-more {
    color: #333;
    font-size: 0.9vw;
    font-weight: 700;
    transition: .3s;
}
.header-item:hover {
    background-color: #E6E4E3;
}
.header-link:hover {
    color: #333;
}
.overlay-info {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 16%;
    top: 50%;
    background-color: #01386b;
    width: 84%;
    height: auto;
    transform: translate(-50%, -50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
}
.overlay-wrapper {
    position: absolute;
    top: 50%;
    left: 64%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translate(-50%, -50%);
    color: #fff;
}
.overlay-logo {
    margin-bottom: 12px;
    width: 52%;
}
.overlay-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.overlay-address {
    text-align: left;
}
.overlay-tel-fax {
    text-align: left;
}
/*--------メインビジュアル--------*/
.main-visual {
    position: relative;
    display: flex;
    justify-content: space-between;
    background-image: url(../img/line-back.webp);
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 856px;
}
.main-visual::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: #FFFFFF;
    background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(237, 237, 237, 1) 13%);
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}
.header-logo {
    position: absolute;
    display: flex;
    align-items: center;
    top: -1.6%;
    left: 4%;
    background-color: #01386b;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    padding: 1rem 2rem;
    width: 10%;
    z-index: 5;
}
.header-logo:hover {
    opacity: 1;
}
.header-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-left {
    width: 50%;
}
.main-town {
    position: relative;
    opacity: 0.5;
    width: 100%;
}
.main-town img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-town::before {
    position: absolute;
    content: "";
    background-color: #cecdcc;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    top: 28%;
    right: -4%;
    z-index: -1;
    width: 6%;
}
/*--------キャッチコピー--------*/
.main-copy {
    position: relative;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke;
    padding-top: 2rem;
    margin-left: 8%;
}
.main-copy::before {
    position: absolute;
    content: "";
    background-color: #cecdcc;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    top: 14%;
    left: -6%;
    transform: rotate(90deg);
    z-index: -1;
    width: 10%;
}
.blue-copy, .orange-copy {
    font-size: 2.8rem;
}
.blue-copy {
    color: #01386b;
}
.orange-copy {
    color: #ff9233;
}
.copy-kana {
    font-size: 2rem;
}
.strong-copy {
    position: relative;
    font-size: 3rem;
}
.strong-copy::before {
    position: absolute;
    content: "";
    background-color: #999999;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 24px;
    overflow: hidden;
}
/*--------六角形画像--------*/
.main-hexagon {
    position: relative;
    width: 50%;
}
.hexagon-orange1 {
    position: absolute;
    background-color: #ff9233;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    top: -2%;
    left: 0;
    right: 0;
    transform: rotate(90deg) translateY(-50%);
    width: 50%;
    opacity: 0.25;
    z-index: 1;
}
.hexagon-orange2 {
    position: absolute;
    background-color: #ff9233;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    top: 0.5%;
    left: 10%;
    transform: rotate(90deg) translateX(0) translateY(-50%);
    width: 16%;
    height: auto;
    opacity: 0.25;
    z-index: 2;
}
.hexagon-orange3 {
    position: absolute;
    background-color: #ff9233;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    top: 24%;
    right: 16%;
    transform: translateX(-50%);
    width: 16%;
    height: auto;
    opacity: 0.25;
    z-index: 2;
}
.hexagon-img {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    transform: translate(-50%, 0);
    z-index: 2;
    overflow: hidden;
}
.hexagon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-img1 {
    top: -8%;
    left: 0;
    z-index: 2;
    width: 24%;
}
.main-img1-shadow {
    top: 1%;
    left: 3%;
    z-index: 1;
    background-color: #bfcdda;
    width: 16%;
}
.main-img2 {
    bottom: 8%;
    right: 18%;
    z-index: 2;
    width: 28%;
}
.main-img2-shadow {
    bottom: 17%;
    right: 22%;
    z-index: 1;
    background-color: #bfcdda;
    width: 20%;
}
.main-img3 {
    top: -4%;
    right: -2%;
    z-index: 2;
    width: 28%;
}
.main-img4 {
    top: 29%;
    right: -12%;
    z-index: 2;
    width: 36%;
}
.main-img5 {
    top: 26%;
    left: 23%;
    z-index: 2;
    width: 48%;
}
.main-img5 img {
    object-position: left;
}
.main-img5-shadow {
    top: 28%;
    left: 20%;
    z-index: 1;
    background-color: #cecdcc;
    width: 48%;
    opacity: 1;
}
/*--------メインビジュアルアニメーション--------*/
.main-town::before {
    transform-origin: center;
    -webkit-animation: hex_rotate_reverse 4s infinite;
    animation: hex_rotate_reverse 4s infinite;
}
@-webkit-keyframes hex_rotate_reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
@keyframes hex_rotate_reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}
.main-copy::before {
    transform-origin: center;
    -webkit-animation: hex_rotate 6s infinite;
    animation: hex_rotate 8s infinite;
}
@-webkit-keyframes hex_rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@keyframes hex_rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.strong-copy::before {
    transform-origin: left center;
    -webkit-animation: line_slide 6s infinite;
    animation: line_slide 6s infinite;
}
@-webkit-keyframes line_slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
@keyframes line_slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}
.hexagon-orange1{
    transform-origin: center;
    -webkit-animation: hexagon-orange1 5s infinite;
    animation: hexagon-orange1 5s infinite;
}
@-webkit-keyframes hexagon-orange1 {
    0% {
        transform: rotate(90deg) translateY(-50%) scale(1);
    }
    50% {
        transform: rotate(90deg) translateY(-50%) scale(0.8);
    }
    100% {
        transform: rotate(90deg) translateY(-50%) scale(1);
    }
}
@keyframes hexagon-orange1 {
    0% {
        transform: rotate(90deg) translateY(-50%) scale(1);
    }
    50% {
        transform: rotate(90deg) translateY(-50%) scale(0.8);
    }
    100% {
        transform: rotate(90deg) translateY(-50%) scale(1);
    }
}
.hexagon-orange2 {
    transform-origin: center;
    -webkit-animation: hexagon-orange2 5s infinite;
    animation: hexagon-orange2 5s infinite;
}
@-webkit-keyframes hexagon-orange2 {
    0% {
        transform: rotate(90deg) translateX(0) translateY(-50%);
    }
    40% {
        transform: rotate(90deg) translateX(150%) translateY(-50%);
    }
    50% {
        transform: rotate(90deg) translateX(150%) translateY(-50%);
    }
    90% {
        transform: rotate(90deg) translateX(0) translateY(-50%);
    }
    100% {
        transform: rotate(90deg) translateX(0) translateY(-50%);
    }
}
@keyframes hexagon-orange2 {
    0% {
        transform: rotate(90deg) translateX(0) translateY(-50%);
    }
    40% {
        transform: rotate(90deg) translateX(150%) translateY(-50%);
    }
    50% {
        transform: rotate(90deg) translateX(150%) translateY(-50%);
    }
    90% {
        transform: rotate(90deg) translateX(0) translateY(-50%);
    }
    100% {
        transform: rotate(90deg) translateX(0) translateY(-50%);
    }
}
.hexagon-orange3 {
    transform-origin: center;
    -webkit-animation: hexagon-orange3 5s infinite;
    animation: hexagon-orange3 5s infinite;
}
@-webkit-keyframes hexagon-orange3 {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-150%);
    }
    50% {
        transform: translateX(-50%) translateY(-150%);
    }
    90% {
        transform: translateX(-50%) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes hexagon-orange3 {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-150%);
    }
    50% {
        transform: translateX(-50%) translateY(-150%);
    }
    90% {
        transform: translateX(-50%) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
.main-img1-shadow {
    transform-origin: center;
    -webkit-animation: img1-shadow 6s infinite;
    animation: img1-shadow 6s infinite;
}
@-webkit-keyframes img1-shadow {
    0% {
        top: 1%;
        left: 3%;
    }
    25% {
        top: -2%;
        left: 2%;
    }
    40% {
        top: -2%;
        left: 2%;
    }
    75% {
        top: 1%;
        left: 3%;
    }
    100% {
        top: 1%;
        left: 3%;
    }
}
@keyframes img1-shadow {
    0% {
        top: 1%;
        left: 3%;
    }
    25% {
        top: -2%;
        left: 2%;
    }
    40% {
        top: -2%;
        left: 2%;
    }
    75% {
        top: 1%;
        left: 3%;
    }
    100% {
        top: 1%;
        left: 3%;
    }
}
.main-img2-shadow {
    transform-origin: center;
    -webkit-animation: img2-shadow 6s infinite;
    animation: img2-shadow 6s infinite;
}
@-webkit-keyframes img2-shadow {
    0% {
        bottom: 17%;
        right: 22%;
    }
    25% {
        bottom: 14%;
        right: 24%;
    }
    40% {
        bottom: 14%;
        right: 24%;
    }
    75% {
        bottom: 17%;
        right: 22%;
    }
    100% {
        bottom: 17%;
        right: 22%;
    }
}
@keyframes img2-shadow {
    0% {
        bottom: 17%;
        right: 22%;
    }
    25% {
        bottom: 14%;
        right: 24%;
    }
    40% {
        bottom: 14%;
        right: 24%;
    }
    75% {
        bottom: 17%;
        right: 22%;
    }
    100% {
        bottom: 17%;
        right: 22%;
    }
}
.main-img5-shadow {
    transform-origin: center;
    -webkit-animation: img5-shadow 10s infinite;
    animation: img5-shadow 10s infinite;
}
@-webkit-keyframes img5-shadow {
    0% {
        top: 26%;
        left: 20%;
    }
    50% {
        top: 31%;
        left: 26.4%;
    }
    100% {
        top: 26%;
        left: 20%;
    }
}
@keyframes img5-shadow {
    0% {
        top: 26%;
        left: 20%;
    }
    50% {
        top: 31%;
        left: 26.4%;
    }
    100% {
        top: 26%;
        left: 20%;
    }
}
/*--------メッセージ--------*/
#message {
    position: relative;
    z-index: 0;
    background-image: url(../img/message/message-back.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    margin: 0 auto;
    text-align: center;
}
#message::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}
.message-text {
    margin: 0 auto 2rem;
    width: 80%;
    font-weight: 700;
}
.message-btn-hex-blue {
    top: 32%;
    z-index: 1;
    width: 1.5rem;
}
.message-btn-hex-blue::before {
    left: 26%;
    width: 12px;
    height: 0.5px;
    background-color: #01386b;
}
.message-btn-hex-blue::after {
    left: 44%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #01386b;
    border-right: 1px solid #01386b;
}
.message-btn:hover .message-btn-hex-blue::before {
    background-color: #fff;
}
.message-btn:hover .message-btn-hex-blue::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.message-btn-hex-blue .btn-hex-bl-bg {
    background-color: #fff;
}
.message-btn:hover .btn-hex-bl-bg {
    background-color: #01386b;
    transform: rotate(90deg);
}
.message-btn:hover .btn-hex-bl-border {
    background-color: #fff;
    transform: scale(1.02) rotate(90deg);
}
/*--------お知らせ--------*/
#news {
    position: relative;
    z-index: 0;
    padding: 0 4rem;
}
#news::before {
    position: absolute;
    content: "";
    top: 16%;
    left: 0;
    background-color: #cecdcc;
    width: 100%;
    height: calc(221px + 16%);
    opacity: 0.25;
}
#news::after {
    position: absolute;
    content: "";
    top: 1rem;
    right: -24px;
    z-index: 1;
    background-color: #e6e4e3;
    transform: skew(30deg, 0deg);
    width: 156px;
    height: calc(510px + 1rem);
}
.news-container {
    position: relative;
    z-index: 4;
    padding-top: 8rem;
    margin: 0 auto;
    width: 50%;
}
.news-item {
    display: flex;
    justify-content: flex-end;
    margin-left: 2rem;
    margin-right: -2rem;
}
.news-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    box-shadow: 2px 2px 7px #aaa;
    margin-bottom: 2rem;
    margin-left: 0;
    background-color: #fff;
    width: 100%;
}
.news-box:hover {
    opacity: 0.7;
}
.news-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-tag {
    padding: 0 8px;
    margin-right: 12px;
    background-color: #ff9233;
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}
.news-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news-data {
    padding-left: 4px;
    color: #333;
    font-size: 0.9rem;
}
.news-title {
    padding-left: 4px;
    color: #333;
}
.btn-hex-blue {
    position: relative;
    background-color: #01386b;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    transform-origin: center;
    width: 2rem;
    min-width: 1.6rem;
    opacity: 1;
    z-index: 1;
}
.news-btn-hex-blue {
    position: relative;
    z-index: 1;
    width: 2rem;
    min-width: 1.6rem;
}
.news-btn-hex-blue::before {
    left: 32%;
    width: 12px;
    height: 0.5px;
}
.news-btn-hex-blue::after {
    left: 54%;
    width: 6px;
    height: 6px;
}
.btn-hex-blue::before {
    position: absolute;
    content: "→";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    width: 1rem;
}
.news-box:hover .btn-hex-bl-bg {
    background-color: #fff;
    transform: rotate(90deg);
}
.news-box:hover .btn-hex-bl-border {
    background-color: #01386B;
    transform: scale(1.02) rotate(90deg);
}
.news-box:hover .btn-link::before {
    background: #01386B;
}
.news-box:hover .btn-link::after {
    border-top: 1px solid #01386B;
	border-right: 1px solid #01386B;
}
/*--------六角形飾り--------*/
.news-title-hex {
    position: absolute;
    top: 0;
    left: -3%;
    z-index: 3;
    width: 35%;
    height: calc(100% - 4rem);
}
.title-hex {
    position: absolute;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
    width: 280px;
    height: 242px;
    min-width: 1.6rem;
    opacity: 1;
    z-index: 1;
}
.title-hex1 {
    top: 1rem;
    left: -120px;
    background-color: #01386b;
}
.title-hex2 {
    top: 136px;
    left: 90px;
}
.title-hex2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.title-hex3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 257px;
    left: 300px;
    background-color: #01386b;
}
.title-hex3 .btn {
    padding: 8px 2.2rem;
    background-color: #fff;
    color: #01386b;
}
.title-hex3 .btn:hover {
    background-color: #01386b;
    color: #fff;
    border: solid 1px #fff;
}
.left-btn-hex-blue {
    display: block;
    top: 50%;
    right: 1rem;
    width: 2rem;
    height: auto;
    transform: translateY(-50%);
}
.left-btn-hex-blue::before {
    left: 34%;
    width: 12px;
}
.left-btn-hex-blue::after {
    left: 43%;
    width: 8px;
    height: 8px;
}
.left-news-btn-container:hover .btn-hex-bl-bg {
    background-color: #fff;
    transform: rotate(90deg);
}
.left-news-btn-container:hover .btn-hex-bl-border {
    background-color: #01386B;
    transform: scale(1.02) rotate(90deg);
}
.left-news-btn-container:hover .btn-link::before {
    background: #01386B;
}
.left-news-btn-container:hover .btn-link::after {
    border-top: 1px solid #01386B;
	border-right: 1px solid #01386B;
}
.title-hex3 .section-title {
    color: #fff;
    margin-bottom: 1rem;
}
.title-hex4 {
    top: 257px;
    left: -120px;
    border-bottom: solid 1px #333;
}
.title-hex4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.title-hex5 {
    top: 378px;
    left: 90px;
    background-color: #ffc796;
    clip-path: polygon(25% 0%, 50% 50%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
/*--------左側は画面幅に応じて縮小--------*/
@media (max-width: 1700px) {
    .news-title-hex {
        left: -1.4%;
        transform: scale(0.9);
    }
}
@media (max-width: 1600px) {
    .news-title-hex {
        left: -6%;
        transform: scale(0.9);
    }
}
@media (max-width: 1400px) {
    .news-title-hex {
        left: -6%;
        transform: scale(0.85);
    }
}
@media (max-width: 1300px) {
    .news-title-hex {
        left: -8%;
        transform: scale(0.80);
    }
}
@media (max-width: 1200px) {
    .news-title-hex {
        left: -9%;
        transform: scale(0.75);
    }
}
@media (max-width: 1100px) {
    .news-title-hex {
        left: -10%;
        transform: scale(0.70);
    }
}
.news-border-hex {
    position: absolute;
    top: 0;
    right: -40px;
    z-index: 3;
    width: 25%;
    height: calc(100% - 4rem);
}
.news-hex {
    position: absolute;
    width: 312px;
    height: auto;
}
.news-hex1 {
    top: 1rem;
    right: 88px;
}
.news-hex2 {
    top: 151px;
    right: -145px;
}
.news-hex3 {
    top: calc(1rem + 269px);
    right: 88px;
}
.news-hex3::before {
    position: absolute;
    content: "";
    top: 1px;
    left: 1px;
    background-color: #fff;
    width: 50%;
    height: 50%;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.news-hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------事業紹介--------*/
#service {
    position: relative;
    padding: 4rem 0 8rem;
}
#service::before {
    position: absolute;
    content: "";
    top: 7rem;
    left: 16%;
    background-image: url(../img/service/conclete-back.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 60%;
}
.service-copy {
    color: #7a7a79;
    font-size: 1.3vw;
    font-weight: 600;
    letter-spacing: 0.01rem;
    text-align: right;
    padding-top: 12px;
}
.service-title-box {
    position: absolute;
    top: 4rem;
    left: 0;
    padding: 1rem 8rem 1rem 5%;
    box-shadow: 2px 2px 7px #aaa;
    background-color: #fff;
    height: 90px;
}
.service-title-box::before {
    position: absolute;
    content: "";
    top: 0;
    right: -1.6rem;
    background-color: #efefef;
    height: 91px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 50% 50%, 0% 50%);
    aspect-ratio: 200/173;
}
.service-title-box .section-title {
    padding-bottom: 8px;
    border-bottom: solid 2px #01386b;
    margin-bottom: 0;
}
.service-title-box .title-ja {
    
}
.service-title-box .title-en {
    font-size: 1rem;
}
.service-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 auto;
    margin-top: 10rem;
    width: 90%;
}
.service-container {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 2px 2px 7px #aaa;
    width: calc(25% - 1rem);
}
.service-img {
    margin-bottom: 1rem;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-text-box {
    position: relative;
    padding: 1rem 1.4rem;
    overflow: hidden;
}
.service-text-box::before {
    position: absolute;
    content: "";
    left: -0.6rem;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background-color: #01386b;
    transform: skew(-24deg, 0deg);
}
.service-title {
    color: #01386b;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: 1rem;
    margin-bottom: 1.2rem;
}
.strong-point {
    background: linear-gradient(transparent 60%,rgba(255, 146, 51, 0.3) 60%);
    display: inline;
    padding: 0 0.1em;
}
.service-btn-hex-blue {
    bottom: -1.6rem;
    right: 0;
    width: 3.2rem;
}
/*--------飲食事業--------*/
#food {
    position: relative;
    z-index: 1;
    background-color: #fff5ed;
    padding: 8rem 0 4rem;
}
#food::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../img/food/paper_back.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 25%;
}
.food-wrapper {
    margin: 0 auto;
    width: 80%;
}
.food-title-box {
    position: absolute;
    display: flex;
    top: -2rem;
    left: 0;
    padding: 1rem 2rem 1rem 5%;
    background-image: url(../img/food/food-title-back.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 0 24px 0;
    height: 90px;
}
.food-title-box::before {
    position: absolute;
    content: "";
    top: 1px;
    left: 0;
    z-index: -1;
    background-color: #ff9233;
    border-radius: 0 4px 24px 0;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
}
.food-title-box .section-title {
    color: #333;
}
.food-title-box .title-en {
    font-size: 1rem;
}
.food-icon {
    margin-left: 2rem;
    width: 48px;
    height: 48px;
}
.food-icon img {
    width: 100%;
    height: auto;
    object-fit:  cover;
}
.food-title {
    color: #ff9233;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.food-text {
    margin-bottom: 2rem;
}
.food-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.shop-logo {
    display: inline-block;
    margin-left: auto;
    margin-bottom: 8px;
    height: 60px;
}
.shop-logo img {
    width: 66%;
    height: 100%;
    object-fit: contain;
}
.handaya-container {
    position: relative;
    padding: 1rem 1rem 1rem 2rem;
    box-shadow: 2px 2px 7px #aaa;
    border-radius: 12px;
    background-color: #fff;
    width: calc(68% - 1rem);
}
.handaya-container::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-radius: 12px 0 0 12px;
    background-color: #ab4d4f;
    width: 1rem;
    height: 100%;
}
.handaya-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.handaya-address-flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.kanegasaki-address, .takizawa-address {
    display: flex;
    flex-direction: column;
}
.takizawa-address {
    margin-left: 2rem;
}
.handaya-address {
    position: relative;
    margin-left: 1.2rem;
    margin-bottom: 1rem;
}
.handaya-address::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -1.2rem;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #ff9233;
}
.shop-name {
    font-weight: 800;
    margin-bottom: 8px;
}
.handaya-img-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 1rem;
}
.handaya-img {
    width: calc(20% - 8px);
}
.handaya-img img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sakura-container {
    position: relative;
    padding: 1rem;
    box-shadow: 2px 2px 7px #aaa;
    border-radius: 12px;
    background-color: #fff;
    width: calc(32% - 1rem);
}
.sakura-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.insta-icon {
    width: auto;
    height: auto;
    max-width: 40px;
    max-height: 40px;
}
.insta-icon img {
    width: 100%;
    height: 100%;
}
.sakura-img-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.sakura-img {
    margin-bottom: 1rem;
    width: calc(50% - 8px);
    height: auto;
    aspect-ratio: 1/1;
}
.sakura-img:nth-child(n+3) {
    margin-bottom: 0;
}
.sakura-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.btn-orange {
    position: absolute;
    bottom: -1rem;
    right: 0;
    transform: scale(1) rotate(45deg);
    background-color: #ff9233;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: .3s;
}
.btn-orange:hover {
    transform: scale(1.2) rotate(45deg);
    opacity: 1;
}
.btn-orange::before, .btn-orange::after {
    position: absolute;
    content: "";
	top: 0;
	bottom: 0;
	left: 0;
    vertical-align: middle;
	margin: auto;
}
.btn-orange::before {
    top: 0%;
    left: 21%;
	width: 24px;
	height: 1px;
	background: #fff;
}
.btn-orange::after {
	left: 47%;
	width: 12px;
	height: 12px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/*--------店舗情報タグ--------*/
.shop-info {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    justify-content: flex-start;
    margin-bottom: 1rem;
    width: 88%;
}
.shop-info-tag {
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 24px;
}
.shop-info-tag:nth-child(3n+1) {
    margin-left: 0;
}
.sakura-container .shop-info-tag {
    background-color: #ff9233;
}
.handaya-container .shop-info-tag {
    background-color: #AB4D4F;
}
/*--------採用情報--------*/
#recruit {
    position: relative;
    padding: 4rem 0;
    background-image: url(../img/recruit/recruit-back.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
#recruit::before {
    position: absolute;
    content: "";
    bottom: 0%;
    left: 0;
    z-index: -1;
    background-color: #e6e4e3;
    width: 100%;
    height: 20%;
}
.recruit-container {
    position: relative;
    border-radius: 8px;
    padding: 2rem;
    margin: 0 auto;
    box-shadow: 2px 2px 7px #aaa;
    background-color: #fff;
    width: 60%;
    text-align: center;
}
.recruit-container::before {
    position: absolute;
    content: "";
    top: 32%;
    left: 2rem;
    background-color: #bfcdda;
    width: 4vw;
    height: 4vw;
}
.recruit-container::after {
    position: absolute;
    content: "";
    top: 12%;
    right: 2rem;
    background-color: #ffe3cc;
    width: 4vw;
    height: 4vw;
}
#recruit .title-ja {
    display: block;
    font-size: 1.6vw;
    letter-spacing: .01rem;
}
#recruit .title-en {
    display: block;
    font-size: 1rem;
}
.recruit-text {
    margin: 0 auto 4rem;
    width: 80%;
}
.recruit-img-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.recruit-img {
    position: relative;
    width: calc(50% - 1rem);
    overflow: hidden;
}
.recruit-img:hover {
    opacity: 1;
}
.recruit-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background-color: #333;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.5;
    transition: .3s;
}
.recruit-img:hover::before {
    transform: translateX(100%);
}
.recruit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.recruit-title {
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: 1;
    color: #fff;
    font-size: 1.4rem;
    padding: 0 4px 4px 1rem;
}
.recruit-img:hover .recruit-title {
    color: #333;
}
.recruit-title::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    border-radius: 0 4px 4px 0;
    width: calc(100% + 1rem);
    height: calc(100% + 8px);
    transform: translateX(-100%);
    transition: 0.3s;
}
.recruit-title::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
    width: calc(100% + 4px);
    height: 0.5px;
    transition: 0.3s;
}
.recruit-img:hover .recruit-title::before {
    transform: translateX(0);
} 
.recruit-img:hover .recruit-title::after {
    background-color: #333;
} 
.btn-hex-wh {
    position: absolute;
    bottom: 1.6rem;
    right: 1.6rem;
    width: 42px;
    height: auto;
    aspect-ratio: 200 / 173;
}
.btn-hex-wh-bg {
    position: absolute;
    inset: 0;
    background-color: #fff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: .3s;
}
.btn-hex-wh-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
}
.btn-hex-dots {
    display: block;
    background-color: #cecdcc;
    width: 8px;
    height: auto;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    aspect-ratio: 200 / 173;
}
.recruit-img:hover .btn-hex-wh-bg {
    background-color: #cecdcc;
    transform: scale(1.2) rotate(90deg);
}
.recruit-img:hover .btn-hex-dots {
    background-color: #fff;
}
/*--------フッター--------*/
#footer {
    background-color: #01386b;
    padding-top: 2rem;
}
.footer-wrapper {
    margin: 0 auto;
    width: 80%;
    max-width: 1200px;
}
.footer-nav {
    margin-left: auto;
    margin-right: 0;
    width: 60%;
}
.footer-nav-list {
    display: flex;
    justify-content: space-between;
}
.footer-item {
    margin-left: 2rem;
}
.footer-item:first-child {
    margin-left: 0;
}
.footer-link {
    color: #fff;
    font-weight: 600;
}
.footer-info {
    margin-bottom: 2rem;
    color: #fff;
    width: 40%;
}
.footer-logo {
    width: 240px;
    margin-bottom: 1rem;
}
.footer-tel-fax {
    margin-bottom: 3rem;
}
.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 1rem;
    border: solid 1px #fff;
    border-radius: 12px;
    width: 184px;
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
}
.footer-contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-contact p {
    color: #fff;
}
.copy-right {
    color: #fff;
    font-size: .7rem;
    text-align: center;
    padding: 2rem;
}
/*--------slickの設定--------*/
.slick-list {
    width: 100%;
    height: 100%;
}
.slick-track {
    width: 100%;
    height: 100%;
}
.slick-slide, .slick-track, .slick-list {
    overflow: visible !important;
}
.slick-list {
    margin-bottom: 2rem;
}

/*--------タブレット・SPとの切り替え設定--------*/
.footer-pc {
    display: block;
}
.footer-sp {
    display: none;
}
.copy-right br {
    display: none;
}
/*--------タブレットの設定--------*/
@media screen and (max-width: 1000px) {
    
}

/*--------SPの設定--------*/
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
        letter-spacing: .1rem;
    }
    /*--フッター_SP--*/
    .copy-right br {
        display: block;
    }
}
/*-------------アニメーション------------------*/
.animation {
    opacity: 0
}
.fadeup {
    transform-origin: center top;
    -webkit-animation: fadeup 1s both;
    animation: fadeup 1s both
}
.fadeup_main {
    transform-origin: center top;
    -webkit-animation: fadeup_main 1s both;
    animation: fadeup_main 1s both
}

.slidein_left {
    transform-origin: right center;
    -webkit-animation: slidein_left 1s both;
    animation: slidein_left 1s both
}
.slidein_left_town {
    transform-origin: right center;
    -webkit-animation: slidein_left_town 1s both;
    animation: slidein_left_town 1s both
}
.slidein_right {
    transform-origin: right center;
    -webkit-animation: slidein_right 1s both;
    animation: slidein_right 1s both
}
.slidein_right_main {
    transform-origin: right center;
    -webkit-animation: slidein_right_main 1s both;
    animation: slidein_right_main 1s both
}
.title-hex1_animation {
    transform-origin: right center;
    -webkit-animation: title-hex1_animation 1s both;
    animation: title-hex1_animation 1s both
}
.title-hex2_animation {
    transform-origin: right center;
    -webkit-animation: title-hex2_animation 1s both;
    animation: title-hex2_animation 1s both
}
.title-hex3_animation {
    transform-origin: right center;
    -webkit-animation: title-hex3_animation 1s both;
    animation: title-hex3_animation 1s both
}
.title-hex4_animation {
    transform-origin: right center;
    -webkit-animation: title-hex4_animation 1s both;
    animation: title-hex4_animation 1s both
}
.title-hex5_animation {
    transform-origin: right center;
    -webkit-animation: title-hex5_animation 1s both;
    animation: title-hex5_animation 1s both
}

.d1 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}
.d2 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}
.d3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}
.d4 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}
.d5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}
.d6 {
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}
.d7 {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

.d10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}
.d12 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s
}
.d14 {
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s
}

.d15 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.d20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.d25 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.d30 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.d35 {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s
}

.d40 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.d45 {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s
}

.d50 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.d55 {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s
}

.d60 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

@-webkit-keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes fadeup_main {
    0% {
        transform: translate(-50%, 2em);
        opacity: 0
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1
    }
}

@keyframes fadeup_main {
    0% {
        transform: translate(-50%, 2em);
        opacity: 0
    }

    100% {
        transform: translate(-50%, 0);
        opacity: 1
    }
}
@-webkit-keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes slidein_left_town {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 0.5
    }
}

@keyframes slidein_left_town {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 0.5
    }
}

@-webkit-keyframes slidein_right {
    0% {
        transform: translate(2em, 0, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0, 0);
        opacity: 1
    }
}

@keyframes slidein_right {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes title-hex1_animation {
    0% {
        transform: translate(-2em, -2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@keyframes title-hex1_animation {
    0% {
        transform: translate(-2em, -2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes title-hex2_animation {
    0% {
        transform: translate(0, -2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@keyframes title-hex2_animation {
    0% {
        transform: translate(0, -2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes title-hex3_animation {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@keyframes title-hex3_animation {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes title-hex4_animation {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@keyframes title-hex4_animation {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes title-hex5_animation {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@keyframes title-hex5_animation {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
