/*===============================
 
	基本設定
 
================================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #403f3f;
}

ul {
  list-style-type: none;
}

p {
  font-size: 1.6rem;
  line-height: 1.4; 
  color: #403f3f;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

a.hover_none:hover {
 opacity: 1;
}

.panel {
  display: inline-block;
}

.clearfix {
  overflow: hidden;
}

.f_left{
  float: left;
}

.f_right {
  float: right;
}

.center {
  text-align: center;
}

.indent {  
  padding-left: 1em;
  text-indent: -1em;
}

.bold {
  font-weight: bold;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.pc_none {
  display: none;
}

.flexbox {
    display: flex;
}

/*===============================
 
	headerメニュー
 
================================*/
#global-navi {
    background:#fff;
    position: fixed;
    top: 0;
    right: 0px;
    width: 100%;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    z-index: 500;
}

#wrapper nav ul {
  width: 100%;
}

#wrapper nav ul li{
    display:inline-block;
    font-size: 16px;
    width: calc(20% - 5px);
    box-sizing: border-box;
    text-align: center;
}

#wrapper nav ul li:first-of-type{
    display:inline-block;
    font-size: 16px;
}

#wrapper nav ul li img {
    vertical-align: middle;
}

#wrapper nav ul li a{
    color: #333;
    display: block;
    width: 100%;
    padding: 20px 0;
}

/*スマホ画面でハンバーガーメニューの形にする*/
@media screen and (max-width: 600px) {
    .container {
        padding: 0 10px;
    }
    .sp_logo div {
        position: relative;
        height: 10vh;
    }
    .sp_logo img {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #fff;
    }
    #wrapper nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        padding-top: 50px;
        background:#333;
        font-size: 16px;
        box-sizing: border-box;
        z-index: 2
    }
    #wrapper nav ul li {
        display:block;
        border-bottom: 1px solid #fff;
        width: 100%;
    }

     #wrapper nav ul li:first-of-type {
         display: none;
        background: #fff;
         padding: 10px 28px 7px;
    }

    #wrapper nav ul li a {
        text-decoration: none;
        color: #ddd;
        padding: 20px 0;
    }

    #wrapper .btn-gnavi {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 24px;
        z-index: 3;
        box-sizing: border-box;
        cursor: pointer;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

    #wrapper .btn-gnavi span {
        position: absolute;
        width: 30px;
        height: 4px;
        background: #666;
        border-radius: 10px;
        -webkit-transition: all 400ms;
        transition: all 400ms
    }

    #wrapper .btn-gnavi span:nth-child(1) {
        top: 0
    }

    #wrapper .btn-gnavi span:nth-child(2) {
        top: 10px
    }

    #wrapper .btn-gnavi span:nth-child(3) {
        top: 20px
    }

    #wrapper .btn-gnavi.open {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    #wrapper .btn-gnavi.open span {
        background: #fff;
    }

    #wrapper .btn-gnavi.open span {
        width: 24px;
    }
    #wrapper .contents section p {
        position: absolute;
        top: 50%;
        width: 30%;
        line-height: 1.4;
        font-size: 20px;
        color: #fff;
        text-shadow: 0 0 6px #666
    }

    #wrapper .contents section:nth-child(odd) p {
        left: 10%
    }

    #wrapper .contents section:nth-child(even) p {
        right: 10%
    }
}

/*===============================
 
	サイト全体の共通設定
 
================================*/

/* 余白も含めた全体の背景 */
.wrapper {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 60px;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
}

.bg_stripe:nth-of-type(even) {
    background: #f3f4f9;
    color: #1d2753;
}

.bg_stripe:nth-of-type(even) .title {
    color: #333;
}

.title {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    font-family: 'Sawarabi Gothic', sans-serif;
/*    font-family: 'Kaisei Decol', serif;*/
    color: #000e4b;
    letter-spacing: 0.1em;
    position: relative;
    margin: 0 0 60px;
}

.title::after {
    font-size: 16px;
    position: absolute;
    top: 40px;
    left: calc(50% - 50px);
}

.title_h3 {
    font-size: 24px;
/*    font-family: 'Sawarabi Gothic', sans-serif;*/
    color: #000e4b;
    font-family: 'Sawarabi Gothic', sans-serif;
    position: relative;
    padding: 10px 0 10px 15px;
    border-left: 5px solid #000e4b;
    background: #eee;
}

#about.title::after {
    content: "-ABOUT US-";
    left: calc(50% - 65px);
}

#service.title::after {
    content: "-SERVICE-";
    left: calc(50% - 55px);
}

#access.title::after {
    content: "-ACCESS-";
    left: calc(50% - 52px);
}

#contact.title::after {
    content: "-CONTACT-";
    left: calc(50% - 61px);
}

/*===============================
 
  TOPへ戻るボタン
 
================================*/
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  text-align: right;
}

.pagetop img {
  width: 20%;
}

/*===============================
 
  fadeIn
 
================================*/
.delay-time02{
animation-delay: 0.2s;
}

.delay-time04{
animation-delay: 0.4s;
}

.item{
	opacity: 0;
}

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}