@charset "utf-8";
@font-face {
    font-family: 'YuGothic-R';
    src: url("../fonts/YuGothic-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YuGothic-M';
    src: url("../fonts/YuGothic-Medium.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YuGothic-B';
    src: url("../fonts/YuGothic-Bold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YuMincho-B';
    src: url("../fonts/YUMINDB.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'YuGothic-M';
    color: #333;
    font-size: 1.125rem;
    letter-spacing: .1em;
    line-height: 1.55;
}

.bold {
    font-family: 'YuGothic-B' !important;
    font-weight: bold;
}

.medium {
    font-family: 'YuGothic-M' !important;
}

.regular {
    font-family: 'YuGothic-R' !important;
}

.body-wrapper {
    overflow-x: hidden;
}

figure {
    line-height: 0;
}

p {
    letter-spacing: 1.5px;
}

.sp,
.tb,
.sp-menu {
    display: none;
}

@media (max-width: 768px) {
    .tb {
        display: block;
    }
    .pc {
        display: none;
    }
}

@media (max-width: 600px) {
    .sp {
        display: block;
    }
    .sp-hide {
        display: none;
    }
}


/* section {
    margin-top: 120px;
} */

.inner {
    width: 100%;
    max-width: 1130px;
    padding: 0 15px;
    margin: 0 auto;
}

.flex-1 {
    flex: 1;
}

.f-36 {
    font-size: 2.25rem;
}

.f-30 {
    font-size: 1.875rem;
}

.f-24 {
    font-size: 1.5rem;
}

.f-20 {
    font-size: 1.25rem;
}

.f-16 {
    font-size: 1rem;
}

.f-15 {
    font-size: .9375rem;
}

.letter0 {
    letter-spacing: 0 !important;
}

.col-red {
    color: #cc0033 !important;
}

.col-light-red {
    color: #e55c73 !important;
}

.col-light-blue {
    color: #333 !important;
    /* color: #00b8d9 !important; */
}

.col-green {
    color: #1aa95b !important;
}

.col-green2 {
    color: #6cbb5a !important;
}

.col-light-green {
    color: #77b200 !important;
}

.col-orange {
    color: #e98000 !important;
}

.col-blue {
    color: #2b82d9 !important;
}

.col-red {
    color: #e63d2e !important;
}

.col-grey {
    color: #999 !important;
}

.bg-white {
    background: #fff !important;
}

.bg-orange {
    background: #fff6eb !important;
}

.bg-light-green {
    background: #eeffeb !important;
}

.column-shadow {
    box-shadow: 0 3px 9px #d9d9d9;
}

.common-btn a {
    display: inline-block;
    text-align: center;
    font-size: 1.125rem;
    font-family: 'YuGothic-B';
    line-height: 58px;
    border-radius: 60px;
    width: 100%;
    max-width: 360px;
    border: 1px solid;
    position: relative;
    box-shadow: 0 3px 9px #d9d9d9;
    background: #fff;
}

.common-btn a::after {
    content: '\f054';
    position: absolute;
    right: 20px;
    top: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.common-btn a:hover {
    color: #fff;
    box-shadow: none;
}

.common-btn.blue-btn a {
    border-color: #00b8d9;
}

.common-btn.blue-btn a:hover {
    background: #00b8d9;
}

.common-btn.orange-btn a {
    border-color: #e98000;
    font-weight: bold;
}

.common-btn.orange-btn a:hover {
    background: #e98000;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots li button:before {
    opacity: 1;
    color: #333;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #00b8d9;
}


/***** SP Toggle Menu Btn  *****/

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}

.menu-trigger {
    /* position: absolute;
    top: 30px;
    right: 10px; */
    width: 50px;
    height: 51px;
    z-index: 50;
    background: #fff;
    border: 1px solid #000;
    display: none;
}

.menu-trigger span {
    position: absolute;
    left: 9px;
    width: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 3px;
}

.menu-trigger span:nth-of-type(1) {
    top: 14px;
}

.menu-trigger span:nth-of-type(2) {
    top: 23px;
}

.menu-trigger span:nth-of-type(3) {
    top: 33px;
}

.menu-trigger span:nth-of-type(1) {
    -webkit-animation: menu-bar01 .75s forwards;
    animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
    0% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar01 {
    0% {
        transform: translateY(10px) rotate(45deg);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger span:nth-of-type(2) {
    transition: all .25s .25s;
    opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
    -webkit-animation: menu-bar02 .75s forwards;
    animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
    0% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(0) rotate(0);
    }
}

@keyframes menu-bar02 {
    0% {
        transform: translateY(-10px) rotate(-45deg);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}

.menu-trigger.active span:nth-of-type(1) {
    -webkit-animation: active-menu-bar01 .75s forwards;
    animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(10px) rotate(45deg);
    }
}

@keyframes active-menu-bar01 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(10px) rotate(0);
    }
    100% {
        transform: translateY(10px) rotate(45deg);
    }
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    -webkit-animation: active-menu-bar03 .75s forwards;
    animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
    0% {
        -webkit-transform: translateY(0) rotate(0);
    }
    50% {
        -webkit-transform: translateY(-10px) rotate(0);
    }
    100% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes active-menu-bar03 {
    0% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-10px) rotate(0);
    }
    100% {
        transform: translateY(-10px) rotate(-45deg);
    }
}


/********************************************************
************************ Header *************************
********************************************************/

.header-wrapper {
    /* margin: 20px 0; */
}

.header-info {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .75rem;
    letter-spacing: .02em;
    margin-right: 0;
    height: 60px;
}

.header-info select {
    border: 1px solid #999;
    height: 60px;
    width: 60px;
}

.header-info select,
.header-info select option {
    width: 60px;
    height: 60px;
    font-family: 'Noto Sans JP', sans-serif;
}

.header-info p {
    font-weight: 500;
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 5px;
    margin-top: 10px;
}

.header-info p i {
    margin: 0 5px;
}


/* #gtranslate_selector {
  width: 60px;
  height: 60px;
} */

.contact-btn {
    background: #ff6633;
    width: 60px;
    height: 60px;
    padding: 5px;
}

.contact-btn a {
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    color: #fff;
    font-size: 9px;
    font-family: 'YuGothic-B';
    text-align: center;
    line-height: 1.2;
    position: relative;
    padding-left: 0;
    padding-top: 27px;
    /* border: 4px solid #ff6633; */
    border: none;
}

.contact-btn a:hover {
    background: #fff;
    color: #ff6633;
    opacity: 1;
}

.contact-btn a::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    /* border-radius: 50%; */
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: url(../img/sp_mail.png) no-repeat center;
    background-size: contain;
}

.contact-btn a::after {
    display: none;
}

header nav ul li {
    font-size: .9375rem;
    letter-spacing: -.04em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #e52600;
    position: relative;
}

header nav ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

header nav ul li.current-menu-item::after,
header nav ul li:hover::after {
    display: block;
}

header nav.pc-menu ul li {
    border-left: 1px solid #ddd;
    padding: 15px 0;
    text-align: center;
    width: calc(100% / 7 - 10px);
}

header nav.pc-menu ul li::after {
    width: 100%;
    height: 4px;
}

header nav.pc-menu ul li figure {
    margin-bottom: 7px;
}

header nav.sp-menu {
    margin-top: 15px;
}

header nav.sp-menu ul li {
    align-items: center;
    border-top: 1px solid #ddd;
    padding: 15px;
    width: 100%;
}

header nav.sp-menu ul li:last-of-type {
    border-top: none;
}

header nav.sp-menu ul li::after {
    width: 4px;
    height: 100%;
}

header nav.sp-menu ul li>a {
    display: flex;
}

header nav.sp-menu ul li figure {
    margin-right: 20px;
}

header nav.sp-menu ul li .contact-btn {
    width: 100%;
    height: auto;
    background: #fff
}

header nav.sp-menu ul li .contact-btn a {
    display: inline-block;
    width: 240px;
    margin: 0 auto;
    background: #ff6633;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    border-radius: 32px;
    padding: 24px 0 24px 21px;
}

header nav.sp-menu ul li .contact-btn a::before {
    width: 43px;
    height: 43px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

header nav.sp-menu ul li .contact-btn a::after {
    position: absolute;
    content: '';
    display: block;
    background: url(../img/common/arrow.png) no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

header nav ul li.new::after{
	background: #333;
}

header nav ul li.new {
	color: #333;
}

header nav ul li.event::after {
    background: #e52600;
}

header nav ul li.plan {
    color: #1aa95b;
}

header nav ul li.plan::after {
    background: #1aa95b;
}

header nav ul li.service {
    color: #00b8d9;
}

header nav ul li.service::after {
    background: #00b8d9;
}

header nav ul li.guide {
    color: #e98000;
}

header nav ul li.guide::after {
    background: #e98000;
}

header nav ul li.about {
    color: #2b82d9;
}

header nav ul li.about::after {
    background: #2b82d9;
}

header nav ul li.blog {
    color: #e55c73;
}

header nav ul li.blog::after {
    background: #e55c73;
}

header nav ul li.access {
    color: #77b200;
}

header nav ul li.access::after {
    background: #77b200;
}

header nav.pc-menu ul li:last-child {
    width: 70px;
    padding: 7px 0 0;
}

header nav ul li:last-child {
    text-align: center;
    border-bottom: none;
}

header nav ul li:last-child::after {
    display: none;
}

#header #nav-menu-container ul li a {
    display: inline-block;
    width: 100%;
}

#header #nav-menu-container ul li:first-of-type a,
#header #nav-menu-container ul li:first-of-type:hover a {
    color: #e63d2e;
}

#header #nav-menu-container ul li:nth-of-type(2) a,
#header #nav-menu-container ul li:nth-of-type(2):hover a {
    color: #1aa95b;
}

#header #nav-menu-container ul li:nth-of-type(3) a,
#header #nav-menu-container ul li:nth-of-type(3):hover a {
    color: #00b8d9;
}

#header #nav-menu-container ul li:nth-of-type(4) a,
#header #nav-menu-container ul li:nth-of-type(4):hover a {
    color: #e98000;
}

#header #nav-menu-container ul li:nth-of-type(5) a,
#header #nav-menu-container ul li:nth-of-type(5):hover a {
    color: #2b82d9;
}

#header #nav-menu-container ul li:nth-of-type(6) a,
#header #nav-menu-container ul li:nth-of-type(6):hover a {
    color: #e65c73;
}

#header #nav-menu-container ul li:nth-of-type(7) a,
#header #nav-menu-container ul li:nth-of-type(7):hover a {
    color: #77b300;
}


/********************************************************
************************ Footer *************************
********************************************************/

footer {
    font-size: .75rem;
    margin-top: 120px;
    padding: 100px 0 20px;
    border-top: 1px solid #ccc;
}

#top footer {
    margin-top: 0;
}

footer .contact-btn a {
    width: 100%;
    max-width: 360px;
}

footer ul li {
    padding: 0 15px;
    margin: 5px 0;
}

footer ul li+li {
    border-left: 1px solid;
}

footer ul li:hover a {
    text-decoration: underline;
}

footer .footer-sns a {
    margin: 0 10px;
    line-height: 0;
}

.cd-top {
    display: inline-block;
    height: 50px;
    width: 50px !important;
    position: fixed;
    right: 20px;
    bottom: 40px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #646464 url(../img/icon-top.png) no-repeat;
    background-size: contain;
    background-position: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s .3s, background-color .3s 0s;
    z-index: 75;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
    transition: opacity .3s 0s, visibility 0s 0s, background-color .3s 0s;
}

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

@media (max-width: 1024px) {
    .pc-menu,
    .pc-contact {
        display: none;
    }
    .header-left {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-right {
        padding-right: 0;
    }
    .menu-trigger {
        display: block;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
        padding-top: 60px;
    }
    .header-info p {
        display: none;
    }
}

@media (max-width: 600px) {
    .f-36 {
        font-size: 1.75rem;
    }
    .f-30 {
        font-size: 1.375rem;
    }
    .f-24 {
        font-size: 1.25rem;
    }
    .f-20 {
        font-size: 1.125rem;
    }
    section {
        margin-top: 60px;
    }
    .header-logo {
        /* width: 200px; */
        width: 120px;
        margin-left: 10px;
    }
    .header-logo a {
        display: inline-block;
        width: 100%;
    }
    .menu-trigger {
        /* top: 24px; */
        position: relative;
        width: 60px;
        height: 60px;
    }
    .menu-trigger span {
        left: 14px;
        width: 30px;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 18px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 28px;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 38px;
    }
    .header-info select {
        height: 41px;
        width: 50px;
    }
    .header-info select option:first-child {
        display: none;
    }
    .header-right {
        padding-right: 0;
    }
    footer {
        padding-top: 60px;
    }
}

.post_thumbnail {
	display: flex;
	align-items: center;
	overflow: hidden;
}

.post_thumbnail img {
	width: 100%;
	height: auto;
}