@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,caption,canvas,center,cite,code,dd,del,details,dfn,dialog,div,dl,dt,em,embed,fieldset,figcaption,figure,form,footer,header,hgroup,h1,h2,h3,h4,h5,h6,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,main,span,strike,strong,sub,summary,sup,tt,table,tbody,tfoot,thead,time,tr,th,td,u,ul,var,video{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;white-space:normal;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:2;text-align:left}textarea{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.6;text-align:left}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,main{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}table{border-collapse:collapse;border-spacing:0}


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

 * 設定をしなおす

---------------------------------------------- */
body {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  line-height: 1.6em;
  -webkit-text-size-adjust: 100%;
  /*font-family: "futura-pt","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  font-family: futura-pt, a-otf-gothic-bbb-pr6n,"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  color: #024965;
}

.wf-hannari { 
  /*font-family: "Hannari","游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  font-family: dnp-shuei-mincho-pr6,"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: 500;
}
/* IE8〜11はメイリオ */
@media screen\0 {
  body {
    font-family: "futura-pt",'Segoe UI', /* Windowsの欧文 */
                 Meiryo,     /* メイリオ */
                 sans-serif;
  }
}
@media only screen and ( max-width : 767px ) {
  body {font-size: 13px;}
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}


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

 * アンカータグの設定

---------------------------------------------- */
a {
  outline:none;
  color: #024965;
}

a:hover {
  text-decoration: none;
}


a,a:hover,a:hover img {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}


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

 * 要素を左右中央寄せ

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

.taC {
  text-align: center !important;
}

.taR {
  text-align: right !important;
}

.taL {
  text-align: left !important;
}

.imgR {
  float: right;
  margin-left: 2em;
  margin-bottom: 2em;
}
.imgL {
  float: left;
  margin-right: 2em;
  margin-bottom: 2em;
}

.clr{zoom:1;display:inline-table}.clr:after{content:".";display:block;height:0;clear:both;visibility:hidden;font-size:0;line-height:0}* html .clr{height:1%;display:inline-table;display:block;height:1%}.clr{display:block}

input,textarea {
    border-radius:0;
    line-height: 1em;
    /*font-size: 100%;*/
}
@media only screen and ( max-width : 480px ) {
}
input[type="text"],textarea,input[type="tel"],input[type="email"]{
  padding:10px;
  border: none;
  margin:0;
  display: block;
  background: #fff;
  width: 100%;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
}
input[type="submit"] {
  -webkit-appearance: none;
}

textarea {
  height: 15em;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
/*  CHECKBOX */
.check label {
  position: relative;
  display: inline-block;
  word-break: break-all;
}
.check label input[type="checkbox"] + span,
.check label input[type="radio"] + span {
  position: relative;
  padding: 0 30px 0 35px;
}
.check label input[type="checkbox"] + span::before {
  border-color: #00acc1;
}
.check label span {
  display: inline-block;
}
.check label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.check label input[type="checkbox"] + span::before, .check label input[type="checkbox"] + span::after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}
.check label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 22px;
  height: 22px;
  border: 1px #999 solid;
}
.check label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 5px 8px;
  width: 6px;
  height: 9px;
}
.check label input[type="checkbox"]:checked + span::before {
  background-color: #616161;
}
.check label input[type="checkbox"]:checked + span::after {
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;*behavior:url(/scripts/boxsizing.htc)}.container{margin:0 auto}.clr:after,.col:after,.container:after,.group:after,.row:after{content:"";display:table;clear:both}.row{padding-bottom:0}.col{display:block;float:left;width:100%}@media (min-width:769px),print{.gutters .col{margin-left:2%}.gutters .col:first-child{margin-left:0}.gutters .colR:first-child{margin-right:0}.sp{display:none}}@media(max-width:768px){.sp_none{display:none !important;}}

@media print,screen and (min-width:769px){
  .span_1_full{width:8.33333333333%}
  .span_2_full{width:16.6666666667%}
  .span_3_full{width:25%}
  .span_4_full{width:33.3333333333%}
  .span_5_full{width:41.6666666667%}
  .span_6_full{width:50%}
  .span_7_full{width:58.3333333333%}
  .span_8_full{width:66.6666666667%}
  .span_9_full{width:75%}
  .span_10_full{width:83.3333333333%}
  .span_11_full{width:91.6666666667%}
  .span_12_full{width:100%}

  .span_1{width:6.5%;}
  .span_2{width:15%;}
  .span_3{width:23.5%;}
  .span_4{width:32%;}
  .span_5{width:40%;}
  .span_6{width:48%;}
  .span_7{width:57%;}
  .span_8{width:66%;}
  .span_9{width:74.5%;}
  .span_10{width:83%;}
  .span_11{width:91.5%;}
  .span_12{width:100%;}
}

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

　   FLEX

--------------------------------------------------------------------------------------------- */
.flexbox {
  -js-display : flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.no-wrap {
  -webkit-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.space-between {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-center {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-end {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.align-center {
  -webkit-box-align:center;
  -ms-flex-align:center;
  -webkit-align-items:center;
  align-items: center;
}
.align-start {
  -webkit-align-items:flex-start;
  align-items: flex-start;
}
.align-end {
  -webkit-align-items:flex-end;
  align-items: flex-end;
}
.align-stretch {
  -webkit-align-items:stretch;
  align-items: stretch;
 }
.flex-column{
  flex-flow: column;
}
.flex-direction-column {
  flex-direction: column; 
}
.flex_direction {
  flex-direction: row-reverse;
}

@media only screen and ( max-width : 767px ) {
  .flexbox_sp {
    -js-display : flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-center_sp {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .flex_direction_sp {
    flex-direction: row-reverse;
  }
  .flex_direction_column_sp {
    flex-direction: column-reverse;
  }
  .no-wrap_sp {
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
}

@media only screen and ( max-width : 480px ) {
}

@media print, screen and ( min-width : 768px ) {
  .flexbox_pc {
    -js-display : flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex_direction_pc {
    flex-direction: row-reverse;
  }
  .flex_direction_column_pc {
    flex-direction: column-reverse;
  }
  .no-wrap_pc {
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .align-end_pc {
    -webkit-align-items:flex-end;
    align-items: flex-end;
  }
}

/* -----------------------------------------------
 * base.css
----------------------------------------------- */

main {display: block;}
img {
    max-width: 100%;
    height: auto;
    width /***/:auto;　/*IE8のみ適用*/
}
img[src$=".svg"] {
    width: 100%;
}
.sr, .sr-seq { visibility: hidden; }

/*LOADING*/
#loader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 999;
}
.logo {
  width: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.st1 {
  stroke: transparent;
  fill: transparent;
}

.logo .st1 {
  fill: #024965;
  stroke: #024965;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: logo_colored 3s ease-in 0s;
  animation: logo_colored 3s ease-in 0s;
  animation-iteration-count: infinite;
}

@keyframes logo_colored {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #024965;
  }
}
@-webkit-keyframes logo_colored {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #024965;
  }
}

@media only screen and ( max-width : 767px ) {
  .box {
    margin-bottom: 30px;
  }
  .sbox {
    margin-bottom: 15px;
  }
  .container {
    padding: 0 30px;
  }
  .sp_box {
    margin-bottom: 40px;
  }
  .logo {
    width: 160px;
  }
}

@media only screen and ( max-width : 480px ) {
  /*.box {
    margin-bottom: 20px;
  }
  .sp_box {
    margin-bottom: 20px;
  }*/
}

@media print, screen and ( min-width : 768px ) {
  .box {
    margin-bottom: 60px;
  }
  .sbox {
    margin-bottom: 30px;
  }
  .container {
    max-width: 1200px;
    padding: 0 5%;
  }
}

section:last-child {
  margin-bottom: 0;
}

.box:last-child {
  margin-bottom: 0;
}

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

　   HEADER

--------------------------------------------------------------------------------------------- */
#side {
  transition: .3s;
}
@media only screen and ( max-width : 767px ) {
  #side {
    display: none;
  }
  #content {
    width: 100%;
  }
}

@media only screen and ( max-width : 480px ) {
}


@media print, screen and ( min-width : 768px ) {
  #side {
    width: 220px;
  }
  #side h1 {
    text-align: center;
    margin-bottom: 80px;
  }
  #side h1 img {
    max-width: 150px;
  }
  .side_inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 60px 0;
  }
  #content {
    /*width: 70%;*/
    flex: 1;
  }
  nav {
    height: 100%;
  }
  nav li {
    font-size: 20px;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 20px;
  }
  nav li:last-child {
    margin-bottom: 0;
  }
  nav li a {
    display: block;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
  }
  /*nav li a:after {
    content: "";
    height: 2px;
    background: #024965;
    width: 0;
    left: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }*/
  nav li a:hover {
    color: #7bb2dc;
  }
  /*nav li a:hover:after {
    width: 100%;
  }*/
  /*nav {
    position: fixed;
    right: 2%;
    top: 2%;
    z-index: 99;
  }
  nav li {
  }*/
}

@media print, screen and ( min-width : 1000px ) {
  #side {
    width: 300px;
  }
}

@media print, screen and ( min-width : 1800px ) {
  #side {
    width: 400px;
  }
}


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

　   FOOTER

--------------------------------------------------------------------------------------------- */
footer {
  /*background: #e0ecf7;*/
  background: rgba(255,255,255,.4);
}
.copy {
  text-align: center;
  background: #fff;
  padding: 20px 0;
  letter-spacing: 0.15em;
}
.foot-copy {
  text-align: center;
  letter-spacing: .4em;
}
/*.my_svg path {
  color: #fff;
  fill: currentColor;
}*/

@media only screen and ( max-width : 767px ) {
  footer {
    padding-top: 40px;
  }
  .foot-logo {
    width: 200px;
    margin: 0 auto 30px;
  }
  .foot-copy {
    margin-bottom: 40px;
    font-size: 12px;
  }
}

@media only screen and ( max-width : 480px ) {
  .foot-logo {
    width: 140px;
  }
}

@media print, screen and ( min-width : 768px ) {
  footer {
    padding-top: 80px;
  }
  .foot-logo {
    width: 200px;
    margin: 0 auto 40px;
  }
  .foot-copy {
    margin-bottom: 80px;
    font-size: 14px;
  }
}

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

　   PAGE TOP

--------------------------------------------------------------------------------------------- */
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}
#pageTop a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #f5f5f5;
  color: #024965;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
}
#pageTop a:hover {
}


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

　   BUTTON

--------------------------------------------------------------------------------------------- */
/* Mixins */
/* bg shortcodes */
.bg-gradient1 span,
.bg-gradient1:before {
  background: #52A0FD;
  background: -moz-linear-gradient(left, #52A0FD 0%, #00e2fa 80%, #00e2fa 100%);
  background: -webkit-linear-gradient(left, #52A0FD 0%, #00e2fa 80%, #00e2fa 100%);
  background: linear-gradient(to right, #52A0FD 0%, #00e2fa 80%, #00e2fa 100%);
}

.bg-gradient2 span,
.bg-gradient2:before {
  background: #44ea76;
  background: -moz-linear-gradient(left, #44ea76 0%, #39fad7 80%, #39fad7 100%);
  background: -webkit-linear-gradient(left, #44ea76 0%, #39fad7 80%, #39fad7 100%);
  background: linear-gradient(to right, #44ea76 0%, #39fad7 80%, #39fad7 100%);
}

.bg-gradient3 span,
.bg-gradient3:before {
  background: #fa6c9f;
  background: -moz-linear-gradient(left, #fa6c9f 0%, #ffe140 80%, #ffe140 100%);
  background: -webkit-linear-gradient(left, #fa6c9f 0%, #ffe140 80%, #ffe140 100%);
  background: linear-gradient(to right, #fa6c9f 0%, #ffe140 80%, #ffe140 100%);
}

/* General */


a {
  text-decoration: none;
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

/* fancy Button */
.fancy-button {
  display: inline-block;
  /*margin: 30px;*/
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}
.fancy-button:before {
  content: '';
  display: inline-block;
  height: 40px;
  position: absolute;
  bottom: -5px;
  left: 30px;
  right: 30px;
  z-index: -1;
  border-radius: 30em;
  filter: blur(20px) brightness(0.95);
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}
.fancy-button i {
  margin-top: -1px;
  margin-right: 20px;
  font-size: 1.265em;
  vertical-align: middle;
}
.fancy-button span {
  display: inline-block;
  padding: 18px 60px;
  border-radius: 50em;
  position: relative;
  z-index: 2;
  will-change: transform, filter;
  transform-style: preserve-3d;
  transition: all 0.3s ease-out;
}
.fancy-button:focus, .fancy-button:active {
  color: #ffffff;
}
.fancy-button:hover {
  color: #ffffff;
}
.fancy-button:hover span {
  filter: brightness(1.05) contrast(1.05);
  transform: scale(0.95);
}
.fancy-button:hover:before {
  bottom: 0;
  filter: blur(10px) brightness(0.95);
}
.fancy-button.pop-onhover:before {
  opacity: 0;
  bottom: 10px;
}
.fancy-button.pop-onhover:hover:before {
  bottom: -7px;
  opacity: 1;
  filter: blur(20px);
}
.fancy-button.pop-onhover:hover span {
  transform: scale(1.04);
}
.fancy-button.pop-onhover:hover:active span {
  filter: brightness(1) contrast(1);
  transform: scale(1);
  transition: all 0.15s ease-out;
}
.fancy-button.pop-onhover:hover:active:before {
  bottom: 0;
  filter: blur(10px) brightness(0.95);
  transition: all 0.2s ease-out;
}



@media only screen and ( max-width : 767px ) {
  .fancy-button {
    margin-top: 30px;
  }
}

@media only screen and ( max-width : 480px ) {
}

@media print, screen and ( min-width : 768px ) {
  .fancy-button {
    margin-top: 60px;
  }
}

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

　   STYLE

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

h2 {
  text-align: center;
}

h2,h3 {
  font-weight: 700;
  letter-spacing: .15em;
}
h2 .title span {
}

section {
  background: #fff;
  background: rgba(255,255,255,.4);
}

section:nth-child(2n) {
  background: #024965;
  /*background: rgba(0,45,80,1);*/
  color: #fff;
}

@media only screen and ( max-width : 767px ) {
  section {
    padding: 60px 0;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
  }
	
}

@media only screen and ( max-width : 480px ) {
  section {
    padding: 50px 0;
  }
	h2 {
    text-align: left;
  }
}

@media print, screen and ( min-width : 768px ) {
  h2 {
    font-size: 48px;
    margin-bottom: 40px;
  }
  h3 {
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 24px;
  }
  section {
    padding: 100px 0;
  }
}

section,footer {
  position: relative;
  z-index: 2;
}

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

　   mainImage

--------------------------------------------------------------------------------------------- */
.holder {
     height: 100vh;
     overflow: hidden;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1;
}
.holder,
    .first,
    .second,
    .third {
      width: 100%;
    }
    .first,
    .second,
    .third {
      position: fixed;
      height: 100%;
    }
    .second,
    .third {
      opacity: 0;
    }
    .holder {
      height: 100vh;
      position: relative;
      z-index: 1;
    }
    .first {
      animation: first 10s infinite;
      background: linear-gradient(#e9defa, #fbfcdb);
      z-index: 10;
    }
      @keyframes first {
        0% {opacity: 1.0;}
        10% {opacity: 0.8;}
        20% {opacity: 0.6;}
        30% {opacity: 0.4;}
        40% {opacity: 0.2;}
        50% {opacity: 0.1;}
        60% {opacity: 0.2;}
        70% {opacity: 0.4;}
        80% {opacity: 0.6;}
        90% {opacity: 0.8;}
        100% {opacity: 1.0;}
      }

    .second {
      animation: second 10s infinite; animation-delay: 2s;
      /*background: linear-gradient(#fdcbf1, #e6dee9);*/
      background: linear-gradient(#fff1eb, #ace0f9);
      z-index: 20;
    }
      @keyframes second {
        0% {opacity: 0;}
        10% {opacity: 0.2;}
        20% {opacity: 0.4;}
        30% {opacity: 0.6;}
        40% {opacity: 0.8;}
        50% {opacity: 1.0;}
        60% {opacity: 0.8;}
        70% {opacity: 0.6;}
        80% {opacity: 0.4;}
        90% {opacity: 0.2;}
        100% {opacity: 0;}
      }

    .third {
      animation: third 10s infinite;
      animation-delay: 8s;
      background: linear-gradient(#cfd9df, #e2ebf0);
      z-index: 30;
    }
      @keyframes third {
        0% {opacity: 0;}
        10% {opacity: 0.2;}
        20% {opacity: 0.4;}
        30% {opacity: 0.6;}
        40% {opacity: 0.8;}
        50% {opacity: 1.0;}
        60% {opacity: 0.8;}
        70% {opacity: 0.6;}
        80% {opacity: 0.4;}
        90% {opacity: 0.2;}
        100% {opacity: 0;}
      }

#mainImage li img {
	width: 100%;
}

/*.inviewblur {
    opacity: 0;
    transition: .2s;
}*/
.blur {
  -webkit-animation: FadeIn 1s forwards;
    -moz-animation: FadeIn 1s forwards;
    animation: FadeIn 1s forwards;
    overflow: hidden;
    color: hsla(0, 0%, 0%, 0);
    opacity: 1.0;
    animation-delay: 1s;
}
#siteTitle {
  top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}
@-webkit-keyframes FadeIn {
    0% {
        text-shadow: 0 0 50px #111;
        opacity: 0;
    }
    100% {
        text-shadow: 0 0 0px #111;
        opacity: 1;
        pointer-events: none;
    }
}
@keyframes FadeIn {
    0% {
        text-shadow: 0 0 50px #111;
        opacity: 0;
    }
    100% {
        text-shadow: 0 0 0px #111;
        opacity: 1;
        pointer-events: none;
    }
}

.scroll_btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 1000;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}
.scroll_btn span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #024965;
  border-bottom: 1px solid #024965;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@media only screen and ( max-width : 767px ) {
  .holder #siteTitle {
      position: absolute;
      width: 220px;
      /*top: 20%;
      left: -100%;
      right: -100%;
      margin: auto;*/
      text-align: center;
      z-index: 1000;
    }
    .holder h2 {
      font-size: 24px;
      position: absolute;
      bottom: 40%;
      left: 0%;
      z-index: 1000;
      text-align: center;
      width: 100%;
      letter-spacing: 10px;
    }
    .scroll_btn {
      bottom: 20%;
    }
}

@media only screen and ( max-width : 480px ) {
    .holder #siteTitle {
      width: 180px;
    }
    .holder h2 {
      font-size: 16px;
    }
}

@media print, screen and ( min-width : 768px ) {
  .holder {
    min-height: 700px;
  }
  .holder #siteTitle {
      position: absolute;
      width: 350px;
      /*top: 20%;
      right: -100%;
      left: -100%;
      margin: auto;*/
      z-index: 1000;
    }
    .holder h2 {
      font-size: 24px;
      position: absolute;
      bottom: 20%;
      left: 0%;
      z-index: 1000;
      text-align: center;
      width: 100%;
      letter-spacing: 10px;
    }

}
@media print, screen and ( min-width : 1300px ) {
}

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

　   ABOUT

--------------------------------------------------------------------------------------------- */
#about .catch_copy {
  letter-spacing: .3em;
}
#about .catch_copy span {
  display: block;
  font-weight: 300;
  text-align: center;
  letter-spacing: .4em;
}
#about p {
  text-align: center;
}
#about .readTx {
  letter-spacing: 0.25em;
}
#about .readTx span {
  display: inline-block;
  /*border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);*/
  text-align: center;
  position: relative;
}
#about .readTx span:before,#about .readTx span:after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.2);
  position: absolute;
}
#about .readTx span:before {
  left: 0;
  top: 0;
}
#about .readTx span:after {
  right: 0;
  bottom: 0;
}

@media only screen and ( max-width : 767px ) {
    #about p {
      margin-bottom: 35px;
    }
    #about .catch_copy {
      font-size: 21px;
    }
    #about .catch_copy span {
      font-size: 13px;
    }
    #about .readTx {
      font-size: 16px;
    }
    #about .readTx span {
      padding: 10px;
    }
}

@media only screen and ( max-width : 480px ) {
  #about p {
    text-align: left;
  }
  #about .readTx span,#about .catch_copy span {
    text-align: left;
  }
}

@media print, screen and ( min-width : 768px ) {
    #about p {
      margin-bottom: 45px;
    }
    #about .readTx {
      font-size: 20px;
    }
    #about .readTx span {
      padding: 20px;
    }
    #about .catch_copy {
      font-size: 30px;
    }
    #about .catch_copy span {
      font-size: 15px;
    }
}
#about p:last-child {
  margin-bottom: 0;
}

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

　   SERVICE

--------------------------------------------------------------------------------------------- */
#service p {
  text-align: center;
}
#service .serviceList p {
  text-align: left;
}
@media only screen and ( max-width : 767px ) {
}

@media only screen and ( max-width : 480px ) {
  #service p {
    text-align: left;
  }
}

@media print, screen and ( min-width : 768px ) {
}

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

　   WORKS

--------------------------------------------------------------------------------------------- */
#works .year,#works .history_works {
  /*padding: 20px;*/
}
#works .history_works p {
  text-align: left;
}
.history_works a {
  color: #cbeaff;
  text-decoration: underline;
}
#works .year {
  font-size: 180%;
  font-weight: 700;
}
#works .cat {
  display: inline-block;
  font-size: 80%;
  vertical-align: middle;
  color: #a3e8ff;
  margin-right: 5px;
}
#works .cat:last-child {
  margin-right: 0;
}
#works li {
  margin-bottom: 1em;
}
#works li:last-child {
  margin-bottom: 0;
}
#works p {
  text-align: center;
}

@media only screen and ( max-width : 767px ) {
  /*.history_box p {
    display: none;
  }*/
  .history_box {
    margin-bottom: 30px;
  }
  .history_box:last-child {
    margin-bottom: 0;
  }
}

@media only screen and ( max-width : 480px ) {
  /*#works th,#works td {
    padding: 10px;
    display: block;
  }
  #works th {
    padding-bottom: 0;
  }*/
  #works .catList {
    line-height: 1em;
  }
  #works p {
    text-align: left;
  }
}

@media print, screen and ( min-width : 768px ) {
  /*#works table {
    margin: 0 auto;
    width: auto;
  }*/
  .history_box {
    max-width: 700px;
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
  }
  .history_box:last-child {
    margin-bottom: 0;
  }
  #works .catList {
    display: inline-block;
    margin-left: 20px;
  }
  /*#works .year {
    width: 150px;
    border-right: 1px solid rgba(255,255,255,.2);
    margin-right: 40px;
    text-align: center;
  }
  #works .history_works {
    flex: 1;
  }*/
}


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

　   XXXX

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

@media only screen and ( max-width : 767px ) {
}

@media only screen and ( max-width : 480px ) {
}

@media print, screen and ( min-width : 768px ) {
}