/* ====================================

    ▼ ブレイクポイントのルール ▼
    - スマホを基本設計にする -
    * - w600px：SP
    * w601px -：タブレット
    * w961px -：小型PC
    * w1281px -：大型PC

==================================== */


/* *****************************************************************************

    base

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

/* serif */
@font-face {
   font-family: 'work sans light';
   src: url('../font/WorkSans-Light.ttf') format("truetype");
}

/* serif */
@font-face {
   font-family: 'work sans regular';
   src: url('../font/WorkSans-Regular.ttf') format("truetype");
}

/* serif */
@font-face {
   font-family: 'work sans bold';
   src: url('../font/WorkSans-bold.ttf') format("truetype");
}

/* sans-serif */
@font-face {
   font-family: 'radley regular';
   src: url('../font/Radley-Regular.ttf') format("truetype");
}

body {
    width: 100%;
    height: auto;
}

section {
    overflow: hidden;
}

h1, h2 {
    color: #000;
    font-family: 'radley regular', serif;
    font-size: 11vw;
    letter-spacing: 15px;
}

h1 {
    display: flex;
    flex-direction: column;
}

h3 {
    color: #666;
}

p, li, a {
    color: #666;
    font-family: 'work sans light', sans-serif;
}

a {
    font-family: 'radley regular', serif;
}

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

/* .section */
.section {
    width: 100%;
    height: auto;
}

/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    h1, h2 {
        font-size: 5vw;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {

    h1, h2 {
        font-size: 3vw;
    }

}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1024px) {
}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}


/* *****************************************************************************

    header

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

/* モバイル以下表示しない */
.pc-active {
    display: none;
}

.nav-area {
    z-index: 9999;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    width: 90%;
    height: auto;
}

.mobile-nav .logo {
    width: 40%;
    margin: 0 0 0 5%;
}

/* -- ハンバーガーメニューのデザイン -- */

#toggle-menu {
    z-index: 9999;
    display: block;
    position: fixed;
    top: 28px;
    right: 17px;
    width: 45px;
    height: 45px;
    cursor: pointer;
}

#toggle-menu::before, #toggle-menu::after, #toggle-menu span {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 50%;
    height: 1px;
    margin: auto;
    background-color: #666;
    transform: rotate(0deg);
    transition: all 0.4s;
}

#toggle-menu::before {
    top: 40%;
}

#toggle-menu span {
    top: 50%;
    bottom: 50%;
}

#toggle-menu::after {
    bottom: 40%;
}

/* クリックした際のアニメーション */

#toggle-menu.open::before {
    top: 50%;
    background-color: #666;
    transform: rotate(225deg);
}

#toggle-menu.open span {
    top: 50%;
    bottom: 50%;
    right: -25%;
    opacity: 0;
}

#toggle-menu.open::after {
    bottom: 50%;
    background-color: #666;
    transform: rotate(-225deg);
}


/* メニュー内のデザイン */

.gnav {
    width: 100vw;
    height: 100vh;
    padding-top: 80px;
    display: none;
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    text-align: center;
    overflow: auto;
    top: 0;
    z-index: 99;
}

.gnav li {
    width: 80%;
    margin: 0 auto;
    padding: 15px;
    color: #000;
    border-bottom: solid 1px rgba(102, 102, 102, .5);
}

.gnav li a {
    width: 80%;
    margin: 0 auto;
    padding: 15px;
    color: #000;
}

/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    .mobile-nav .logo {
        width: 25%;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {

    .mobile-nav .logo {
        width: 20%;
    }

    #toggle-menu {
        right: 25px;
    }

}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {

    .nav-area {
        height: 65px;
        padding: 0 0 35px;
    }

    /* PC以上表示しない */
    .pc-none, .mobile-nav {
        display: none;
    }

    /* PC以上表示 */
    .pc-active {
        display: block;
        width: 100%;
    }

    .pc-nav {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 90%;
        max-width: 1000px;
        height: 100px;
        margin: 0 auto;
    }

    .pc-nav .logo {
        width: 15%;
        height: auto;
    }

    .pc-nav .g-nav {
        display: flex;
        justify-content: flex-end;
        width: 80%;
        height: auto;
    }

    .pc-nav .g-nav li + li {
        margin-left: 50px;
    }

    .g-nav li a {
        position: relative;
        display: inline-block;
        padding: 0 0 5px;
        transition: .3s;
    }
    .g-nav li a::after {
        position: absolute;
        bottom: 0;
        left: 50%;
        content: '';
        width: 0;
        height: 1px;
        background-color: #666;
        transition: .3s;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .g-nav li a:hover::after {
        width: 100%;
    }

}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}



/* *****************************************************************************

    top

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

.top {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url(../images/bg-top.jpg) center no-repeat;
    background-size: cover;
}

.top .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.top p {
    margin: 0;
    color: #fff;
    font-family: 'radley regular', serif;
    font-size: 40px;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 10px;
}

/* TOP用スクロールを促すアニメーション */
.top a {
  padding-top: 80px;
}

.top a span {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

.top a span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.top a span:nth-of-type(2) {
  bottom: 45px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

.top a span:nth-of-type(3) {
  bottom: 60px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {
}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {
}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {

    .top p {
        font-size: 60px;
    }

}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}



/* *****************************************************************************

    about

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 0 0 150px;
    background: linear-gradient(183deg, #333 84%, #fff 85%);
}

.about .inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 30px;
    box-sizing: border-box;
}

.about .inner h2 {
    letter-spacing: 2px;
    line-height: 1.5;
    color: #fff;
}

.about .inner p {
    margin: 20px 0;
    line-height: 1.8;
    color: #ccc;
}

.about .inner p:first-of-type {
    margin: 0;
}

/* フェードイン */
.fade-up {
  transition: opacity 0.7s;
  -moz-transition: opacity 0.7s;
  -webkit-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
  transition: transform 0.7s;
  -moz-transition: transform 0.7s;
  -webkit-transition: transform 0.7s;
  -o-transition: transform 0.7s;
}

.invisible {
	transition: opacity 0.5s ease;
	opacity: 0.0;
}

.visible {
	transition: opacity 0.5s ease;
	opacity: 1.0;
}

/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    .about .inner {
        padding: 30px 80px;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {

    .about {
        padding: 0 0 50px;
    }

    .about .inner {
        padding: 60px 90px;
    }

}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {

    .about {
        height: calc(100vh - 100px);
    }

    .about .inner {
        width: 100%;
        height: auto;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

    .about .inner h2 {
        letter-spacing: 2px;
        line-height: 1.5;
    }

    .about .inner p {
        margin: 20px 0;
        line-height: 1.8;
    }

}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}



/* *****************************************************************************

    news

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

.news {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(170deg, #fff 50%, #eee 51%);
}

.news .inner {
    width: 100%;
    height: auto;
    padding: 30px;
}

.news .inner h2 {
    letter-spacing: 2px;
}

.news .inner h3 {
    margin: 30px 0 20px;
    font-size: 20px;
    font-weight: bold;
}

.news .inner p {
    margin: 0 0 10px;
    line-height: 1.8;
}

.news .inner p:last-of-type {
    margin: 20px 0 0;
}

.news .inner a {
    padding: 0 0 4px;
    border-bottom: 1px dotted #666;
    color: #666;
    font-family: 'work sans light', sans-serif;
    font-weight: bold;
}

.news .inner a:hover {
    border: none;
    color: #000;
}

/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    .news .inner {
        padding: 30px 80px 50px;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {

    .news .inner {
        padding: 60px 90px;
    }

}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {

    .news {
        height: calc(100vh - 100px);
    }

    .news .inner {
        width: 100%;
        max-width: 1000px;
        height: auto;
        padding: 0;
    }


}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}



/* *****************************************************************************

    access

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

.access {
    background: linear-gradient(170deg, #eee 50%, #fff 51%);
}

.access .inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 80px 30px 10px;
    box-sizing: border-box;
}

.access .inner h2 {
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.access .inner p {
    margin: 0 0 10px;
    line-height: 1.8;
}

.access .inner p:first-of-type {
    font-family: 'work sans bold';
}

.access .access-map {
    width: 100%;
    height: 240px;
    margin: 0 0 50px;
}


/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    .access .inner {
        padding: 100px 80px 70px;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {

    .access .access-map {
        height: 300px;
    }

}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {

    .access {
        height: calc(100vh - 100px);
    }

    .access .inner {
        max-width: 1000px;
        padding: 80px 0 40px;
        box-sizing: border-box;
    }

    .access .access-map {
        height: 275px;
        margin: 0;
    }

}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}



/* *****************************************************************************

    contact

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .inner {
    width: 100%;
    height: auto;
    padding: 40px 20px;
}

.contact .inner h2 {
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.contact .inner dl + dl {
    margin: 30px 0 0;
}

.contact .inner dl dt {
    color: #666;
    font-size: 5vw;
    margin: 0 0 5px;
}

.contact .inner dl dt span {
    margin: 0 0 0 20px;
    font-size: 4vw;
}

.contact .inner dl dd input {
    width: 95%;
    height: 35px;
    margin: 0;
    padding: 0 2%;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact .inner dl dd textarea {
    width: 95%;
    height: 150px;
    padding: 2%;
    border: 1px solid #ccc;
    font-size: 15px;
}

/* 送信ボタンのアニメーション */

.contact-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    margin: 30px auto 0;
    background-color: #666;
    border: 2px solid #666;
    border-radius: 5px;
    color: #fff;
    font-family: 'work sans light', sans-serif;
    font-size: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .5s;
}
.contact-btn button:hover {
    background-color: transparent;
    border: 2px solid #666;
    color: #666;
    border-radius: 40px;
}


/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    .contact .inner h2 {
        margin: 0 0 50px;
    }

    .contact .inner dl dt {
        font-size: 3vw;
    }

    .contact .inner dl dt span {
        font-size: 2vw;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {
}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {

    .contact {
        height: calc(100vh - 100px);
    }

    .contact .inner {
        max-width: 1000px;
    }

    .contact .inner dl dt {
        font-size: 1.5vw;
    }

    .contact .inner dl dt span {
        font-size: 1vw;
    }

    .contact .inner dl dd input {
        padding: 0 1%;
    }

    .contact .inner dl dd textarea {
        padding: 1%;
    }


}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}



/* *****************************************************************************

    footer

***************************************************************************** */

/* ▼▼ 画面サイズ / SP ▼▼ */

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 50px 0;
}

/* SNSアイコンの設定 */
.sns-wrap {
    margin: 0 auto;
    padding: 10px 0 70px;
    color: #fff;
    text-align: center;
}

.sns-wrap li{
    list-style: none;
    float: left;
    margin: 0 10px;
    padding: 0 5px;
}

.sns-wrap a{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 33px;
    height: 33px;
    padding: 5px;
    border-radius: 50%;
    background: #666;
    transition: .3s;
}

.sns-wrap a:hover{
    background: #eee;
}

/* Webアイコンフォントの設定 */
.sns-wrap a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    font-family: 'typicons';
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    width: 30px;
    height: 24px;
    padding: 0;
    color: #fff;
    font-size: 25px;
    text-align: center;
    line-height: 1;
    float: left;
}

/* マウスオン時の動き */
.sns-wrap a span{
    position: absolute;
    opacity: 0;
    top: -50px;
    left: -20px;
    width: 60px;
    padding: 10px;
    border-radius: 2px;
    background: #eee;
    color: #666;
    font-size: 12px;
    line-height: 1;
    transition: .3s;
}

.sns-wrap a span:after{
    position: absolute;
    top: 100%;
    left: 34px;
    height: 0;
    width: 0;
    border: 6px solid transparent;
    border-top: 6px solid #eee;
    content: "";
}

.sns-wrap a:hover span{
    opacity: 1;
    top: -40px;
}

/* Webフォントアイコンの設定 */
.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sns-ico {
    margin: 0 0 0 2px;
    color: #fff;
    font-size: 25px;
}

.sns-wrap a:hover .sns-ico {
    color: #666;
}

/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {
}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {
}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {
}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {
}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}





/* ** サンクスページ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** */


/* *****************************************************************************

    thanks

***************************************************************************** */


/* ▼▼ 画面サイズ / SP ▼▼ */
.thanks .inner {
    margin: 100px 0 0;
    padding: 10px 0 0;
}

.thanks .inner h1 {
    width: 60%;
    margin: 40px auto 0;
    font-size: 0;
    text-align: center;
    line-height: 1.5;
}

.thanks .inner .thanks-lead {
    width: calc(95% - 60px);
    height: auto;
    margin: 20px auto 80px;
    padding: 30px 30px;
    background-color: #666;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.conductor-area {
    padding: 0 30px;
}

.conductor-news {
    margin: 0 0 100px;
}

.conductor-news p,
.conductor-access p {
    margin: 0 0 10px;
    line-height: 1.8;
}

.conductor-news h2,
.conductor-access h2 {
    font-size: 30px;
    margin: 0 0 20px;
    background-color: linear-gradient(#fff 70%, #eee 70%);
    letter-spacing: 2px;
}

.conductor-news p:last-of-type {
    margin: 20px 0 0;
}

.conductor-news p a {
    padding: 0 0 4px;
    border-bottom: 1px dotted #666;
    color: #666;
    font-family: 'work sans light', sans-serif;
    font-weight: bold;
}

.conductor-news p a:hover {
    border: none;
    color: #000;
}

.conductor-access .access-map {
    width: 100%;
    height: 300px;
}


/* ▼▼ 画面サイズ / 小型タブレット ▼▼ */
@media screen and (min-width: 601px) {

    .thanks .inner {
        margin: 100px 0 0;
        padding: 30px 80px;
    }

    .thanks .inner .lead {
        font-size: 20px;
    }

}

/* ▼▼ 画面サイズ / 大型タブレット ▼▼ */
@media screen and (min-width: 961px) {

    .thanks .inner h1 {
        width: 40%;
    }

    .thanks .inner {
        margin: 100px 0 0;
        padding: 60px 90px;
    }

}

/* ▼▼ 画面サイズ / 小型PC ▼▼ */
@media screen and (min-width: 1025px) {
}

/* ▼▼ 画面サイズ / 中型PC ▼▼ */
@media screen and (min-width: 1281px) {

    .thanks .inner h1 {
        width: 30%;
    }

    .thanks .inner {
        max-width: 1000px;
        margin: 100px auto 0;
        padding: 60px 90px;
    }

    .thanks .inner .thanks-lead {
        width: calc(50% - 60px);
    }

}

/* ▼▼ 画面サイズ / 大型PC ▼▼ */
@media screen and (min-width: 1501px) {
}
