@charset "UTF-8";

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

html {
    font-size: 0.833vw;
    /* 10px / 1200px * 100 */
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.302vw;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 2.083vw;
    }
}

:root {
    --main-color: #338dc2;
    --sub-color: #2db8e1;
    --bg-color: #ebf4f9;
}

body {
    color: #333;
    /* カラー */
    font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', "メイリオ", "Meiryo", sans-serif;
    /*
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", 'Noto Serif JP', "ＭＳ Ｐ明朝", "MS PMincho", serif;
	*/
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 2.0;
}


/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    width: 16rem;
}

@media screen and (max-width: 767px) {
    header {
        padding: 0;
        justify-content: center;
        height: 6rem;
    }

    header h1 {
        width: 15rem;
    }
}

/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
    background: var(--bg-color);
    padding: 6rem 5%;
}

footer > .footer-wrap:first-of-type {
    margin-bottom: 3rem;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .logo {
    width: 16rem;
}

footer .sns {
    display: flex;
}

footer .sns li {
    width: 3rem;
}

footer .sns li:not(:last-child) {
    margin-right: 1.5rem;
}

footer small {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-align: right;
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
    footer {
        background: var(--bg-color);
        padding: 6rem 2rem;
    }

    footer > .footer-wrap:first-of-type {
        margin-bottom: 3rem;
    }

    .footer-wrap {
        display: block;
    }

    footer .logo {
        width: 24rem;
        margin: 0 auto;
    }

    footer .sns {
        justify-content: center;
        margin-bottom: 6rem;
    }

    footer .sns li {
        width: 4rem;
    }

    footer small {
        text-align: center;
    }
}


/*  ----------------------------------------------------------

gnav

----------------------------------------------------------  */
ul.gnav {
    display: flex;
}

ul.gnav li {
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

ul.gnav li:not(:first-child) {
    margin-left: 6rem;
}

ul.gnav li span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--main-color);
    margin-top: 0.7rem;
    font-weight: 400;
}

ul.gnav a {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

ul.gnav a::after {
    position: absolute;
    background: var(--main-color);
    bottom: -1.2rem;
    content: '';
    height: 2px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
    width: 100%;
}

ul.gnav a:hover::after {
    transform: scale(1, 1);
}

ul.gnav a:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}


/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
    background: url(../img/page-ttl-bg.jpg) no-repeat center;
    background-size: cover;
}

.page-ttl div {
    background: rgba(0, 0, 0, 0.4);
}

.page-ttl h2 {
    color: #fff;
    font-size: 4.0rem;
    line-height: 1;
    text-align: center;
    padding: 11.5rem 0 10rem 0;
}

.page-ttl h2 span {
    font-family: 'Oswald', sans-serif;
    display: block;
    margin-top: 1.5rem;
    font-size: 1.6rem;
    color: var(--sub-color);
}


/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
.heading-1 {
    text-align: center;
    line-height: 1;
    margin-bottom: 4rem;
}

.heading-1 span {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    color: var(--main-color);
    font-size: 4rem;
}

.heading-2 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.more {
    text-align: center;
    line-height: 1;
    display: block;
    color: var(--main-color);
    border: solid 2px var(--main-color);
    width: 24rem;
    padding: 2rem 0;
    transition: all .3s;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    margin: 0 auto;
    background-color: #fff;
}

.more:hover {
    opacity: 1;
    background: var(--main-color);
    color: #fff;
}

.more-wh {
    text-align: center;
    line-height: 1;
    display: block;
    color: #fff;
    border: solid 2px #fff;
    width: 24rem;
    padding: 2rem 0;
    transition: all .3s;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    margin: 0 auto;
}

.more-wh:hover {
    opacity: 1;
    background: #fff;
    color: var(--main-color);
}

.ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    /* 細 */
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 3rem;
    padding: 1rem 0 1.4rem 0;
    position: relative;
}

.ttl:after {
    border-bottom: solid 3px var(--main-color);
    /* 太 */
    bottom: -3px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

@media screen and (max-width: 767px) {
    .ttl:after {
        width: 40%;
    }
}

dl.detail {
    display: flex;
    flex-wrap: wrap;
}

dl.detail dt {
    font-weight: bold;
    padding: 1.5rem;
    width: 25%;
}

dl.detail dd {
    padding: 1.5rem;
    width: 75%;
}

dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
    border-bottom: none;
}

dl.bk dt,
dl.bk dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

dl.wh dt,
dl.wh dd {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 767px) {
    dl.detail {
        display: block;
    }

    dl.detail dt {
        font-weight: bold;
        padding: 1.2rem 1.2rem 0 1.2rem;
        width: 100%;
    }

    dl.detail dd {
        padding: 0 1.2rem 1.2rem 1.2rem;
        width: 100%;
    }

    dl.bk dt {
        border-bottom: none;
    }

    dl.wh dt {
        border-bottom: none;
    }
}


/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
nav.gnav-sp {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: -1;
    opacity: 0;
}

.open nav.gnav-sp {
    top: 0;
    opacity: 1;
    z-index: 99999;
}

nav.gnav-sp .inner {
    padding: 6rem 2.5rem 3rem 2.5rem;
}

nav.gnav-sp .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.gnav-sp .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #ddd;
    font-size: 1.8rem;
    font-weight: bold;
}

nav.gnav-sp .inner ul li span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-left: 1.5rem;
    color: var(--main-color);
    vertical-align: 0.1rem;
}

nav.gnav-sp .inner ul li a {
    display: block;
    padding: 2.5rem 1.5rem;
    text-decoration: none;
    transition-duration: 0.2s;
    position: relative;
}

@media screen and (max-width: 767px) {
    /*nav {
		left: -220px;
		width: 220px;
	}*/
}

/* toggle_btn */
.toggle_btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 6rem;
    height: 6rem;
    transition: all .5s;
    cursor: pointer;
    z-index: 100000;
    background: var(--main-color);
}

.toggle_btn span {
    display: block;
    position: absolute;
    left: 1.5rem;
    width: 3rem;
    height: 2px;
    background-color: #fff;
    transition: all .5s;
}

.toggle_btn span:nth-child(1) {
    top: 1.9rem;
}

.toggle_btn span:nth-child(2) {
    top: 2.9rem;
}

.toggle_btn span:nth-child(3) {
    top: 3.9rem;
}

.open .toggle_btn span {
    background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(1rem) rotate(-45deg);
    transform: translateY(1rem) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-1rem) rotate(45deg);
    transform: translateY(-1rem) rotate(45deg);
}

/* mask */
#mask {
    display: none;
    transition: all .5s;
}

.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    opacity: .8;
    z-index: 2;
    cursor: pointer;
}


/*  ----------------------------------------------------------

gallery

----------------------------------------------------------  */
.gallery-list {
    display: flex;
    flex-wrap: wrap;
}

.gallery-list li {
    width: 23%;
    margin-right: calc(8% / 3);
    margin-bottom: calc(8% / 3);
    font-size: 1rem;
    text-align: center;
}

.gallery-list li:nth-child(4n) {
    margin-right: 0;
}

.gallery-list img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.gallery-list span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 1rem 0 0 0;
    text-align: center;
}

.object-fit-img {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}

@media screen and (max-width: 767px) {
    .gallery-list {
        justify-content: space-between;
    }

    .gallery-list li {
        width: 48%;
        margin-right: 0;
        margin-bottom: 4%;
    }
}


/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
    padding: 10rem 10%;
}

.container .inner {
    display: flex;
    justify-content: space-between;
}

.container .inner > div:first-of-type {
    width: 40%;
}

.container .inner > div:last-of-type {
    width: 55%;
}

.flex-reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
    .container {
        padding: 8rem 2rem;
    }

    .container .inner {
        display: block;
    }

    .container .inner > div:first-of-type {
        width: 100%;
        margin-bottom: 2.5rem;
    }

    .container .inner > div:last-of-type {
        width: 100%;
    }
}


/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 768px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }
}


/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    line-height: 1;
    position: fixed;
    z-index: 999;
}

#page-top a {
    color: var(--sub-color);
    /* カラー */
}

@media screen and (min-width: 768px) {
    #page-top {
        bottom: 1.5rem;
        right: 1rem;
    }

    #page-top i {
        font-size: 5.6rem !important;
    }
}

@media screen and (max-width: 767px) {
    #page-top {
        bottom: 1.5rem;
        right: 1rem;
    }

    #page-top i {
        font-size: 4rem !important;
    }
}


/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

a {
    color: #333;
}

a:hover {
    opacity: 0.4;
    filter: alpha(opacity=60);
}

a[href^="mailto:"] {
    text-decoration: underline;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

@media screen and (max-width: 767px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}


/*  ----------------------------------------------------------

Google翻訳

----------------------------------------------------------  */
#google_translate {
    position: absolute;
    z-index: 9999;
}

#google_translate img {
    width: auto;
    height: auto;
}

@media screen and (min-width: 768px) {
    #google_translate {
        right: 0;
        top: 0;
    }
}

@media screen and (max-width: 767px) {
    #google_translate {
        position: fixed;
        left: 0;
        bottom: 0;
    }
}


/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay5 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}


/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
.mb10 {
    margin-bottom: 1rem !important;
}

.mb15 {
    margin-bottom: 1.5rem !important;
}

.mb20 {
    margin-bottom: 2.0rem !important;
}

.mb25 {
    margin-bottom: 2.5rem !important;
}

.mb30 {
    margin-bottom: 3.0rem !important;
}

.mb35 {
    margin-bottom: 3.5rem !important;
}

.mb40 {
    margin-bottom: 4.0rem !important;
}

.mb45 {
    margin-bottom: 4.5rem !important;
}

.mb50 {
    margin-bottom: 5.0rem !important;
}

.mb55 {
    margin-bottom: 5.5rem !important;
}

.mb60 {
    margin-bottom: 6.0rem !important;
}

.mb70 {
    margin-bottom: 7.0rem !important;
}

.mb80 {
    margin-bottom: 8.0rem !important;
}

.mb90 {
    margin-bottom: 9.0rem !important;
}

.mb100 {
    margin-bottom: 10.0rem !important;
}
