@charset "UTF-8";

/*
Theme Name: Athlead Football Park
Author: FMC inc.
Version: 2018.03.19
*/

/* normalize, 変数(for Sass) */

/* border */

@-webkit-keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

@keyframes topanimation {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
  }
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  letter-spacing: 0.05em;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* mixin(for Sass) */

/* ベースの要素スタイル */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: border-box;
}

body {
  background: #ffffff;
  /* Fallback for when there is no custom background color defined. */
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
}

blockquote,
q {
  quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  display: inline-block;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  vertical-align: middle;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/*===================================
module flexbox
====================================*/

.flex-col-sp {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col-sp_2 > li {
  width: calc(50% - 5px);
}

.flex-col-sp_2_nmargin > li {
  width: 50%;
}

a {
  color: #3e3a39;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #3e3a39;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

a:hover {
  opacity: 0.6;
}

.link-arrow::after {
  content: "\f105";
  display: inline-block;
  font-family: FontAwesome;
  margin-left: 5px;
  font-size: 12px;
}

/* ========================
hoverで横線が出てくるやつ
==========================*/

.c-viewlinks {
  margin: 30px 0 0 0;
  text-align: center;
}

.viewlinks {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  font-size: 14px;
}

.viewlinks::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: linear-gradient(-90deg, #9ed9ed, #d592ff, #ff9993);
  position: absolute;
  left: -100%;
  bottom: 0;
  transition: all 0.2s ease;
}

.viewlinks::after {
  margin-left: 10px;
}

.viewlinks:hover::before {
  left: 0;
}

.link-caret {
  padding-right: 20px;
}

.link-caret:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: fontawesome;
  content: "\f144";
  font-size: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #aeaeae;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol > li {
  counter-increment: number;
  position: relative;
}

ol > li:before {
  content: counter(number) ".";
  display: inline-block;
  margin-left: -1em;
}

dl {
  margin: 0;
}

dl dd {
  margin: 0;
}

.list-ordered {
  padding-left: 1.5em;
  counter-reset: number;
}

.list-ordered > li {
  margin: 10px 0;
  position: relative;
}

.list-ordered > li:first-child {
  margin-top: 0;
}

.list-ordered > li:before {
  margin-right: 0;
  counter-increment: number;
  content: counter(number);
  border: 1px solid #aeaeae;
  border-radius: 50px;
  padding: 1px 3px;
  font-size: 10px;
  position: absolute;
  top: 5px;
  left: -22px;
  line-height: 1;
}

.list-ordered__tall > li {
  margin: 35px 0 0;
}

.list-ordered__tall > li:first-child {
  margin-top: 0;
}

table {
  margin: 0 0 1em;
  table-layout: fixed;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

th {
  font-weight: normal;
}

.c-table {
  line-height: 1.4;
}

.c-table dl {
  margin-top: 10px;
}

.c-table dl dt {
  padding: 10px;
  background-color: #196bad;
  color: #ffffff;
  font-weight: bold;
}

.c-table dl dd {
  padding: 10px;
}

.c-table dl dd p {
  margin-bottom: 20px;
}

.c-table dl dd p:last-child {
  margin-bottom: 0;
}

input[type=text] {
  border-radius: 0;
  -webkit-appearance: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: none;
  color: #0f0a4e;
  font-weight: bold;
  padding: 20px;
  width: 100%;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
  outline: none;
}

.form-submit {
  position: relative;
  width: 100%;
  line-height: 34px;
  padding: 15px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.input-submit {
  position: relative;
  width: 100%;
  margin-top: 25px;
}

.input-submit:after {
  content: "";
  display: block;
  top: 20px;
  font-family: fontawesome;
  content: "\f105";
  position: absolute;
  right: 10px;
  font-size: 14px;
  color: #0f0a4e;
}

.section-confirmation input[type="submit"],
.section-confirmation input[type="button"] {
  width: 100%;
  padding: 15px 0;
  font-weight: bold;
  font-size: 14px;
}

.section-confirmation input[type="submit"]:hover,
.section-confirmation input[type="button"]:hover {
  opacity: 0.7;
}

.section-confirmation .input-button {
  position: relative;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #3e3a39;
  border: none;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 5px 10px;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: border-box;
  background: url(./images/common/icon_select@2x.png) right 10px top 0px no-repeat, #fff;
  background-size: 20px;
}

textarea {
  width: 100%;
  resize: vertical;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
}

input.input-year {
  width: 30%;
  display: inline-block;
  margin-right: 10px;
}

input.input-month {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

input.input-day {
  width: 15%;
  display: inline-block;
  margin: 0 10px;
}

.radio-input {
  opacity: 0;
}

.radio-input + label {
  padding-left: 20px;
  position: relative;
  margin-right: 10px;
}

.radio-input + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}

.radio-input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #3e3a39;
  border-radius: 50%;
}

body,
button,
input,
select,
textarea {
  color: #3e3a39;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "HiraKakuProN-W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  margin: 0;
}

p {
  margin: 0;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/* ライブラリ */

/* -----------------------------------------------
Anchor 位置ずれ対応
----------------------------------------------- */

.js-anchor {
  margin-top: -52px;
  padding-top: 52px;
}

/* -----------------------------------------------
Slider
----------------------------------------------- */

html body .bx-viewport {
  overflow: visible !important;
}

#slider {
  width: 3000% !important;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.slider-wrapper-inner {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.box-slide-control {
  display: none;
  width: 100%;
  top: 50%;
  margin: 0 auto;
  position: absolute;
  margin-top: -23px;
}

.box-slide-control ul {
  position: relative;
}

.slide-prev-btn {
  position: absolute;
  top: 0;
  left: 5px;
  width: 22px;
}

.slide-next-btn {
  position: absolute;
  top: 0;
  right: 5px;
  width: 22px;
}

.slide-btn-opacity {
  opacity: 0;
}

.box-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.box-slider li {
  width: 1000px;
}

/* slide contents  */

#slider li {
  position: relative;
}

#slider li span {
  position: absolute;
  top: 0;
  right: -41px;
  width: 121px;
  height: auto;
}

/* ドット スライダーナビゲーション */

.slider-nav {
  margin-top: 15px;
  text-align: center;
}

.slider-nav li {
  display: inline-block;
  margin-left: 15px;
}

.slider-nav li:first-child {
  margin-left: 0;
}

.slider-nav span {
  background-image: url("./images/top/slide_pager.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10px;
  height: 10px;
  display: block;
}

.slider-nav .active span {
  background-image: url("./images/top/slide_pager_active.png");
  background-repeat: no-repeat;
}

#slider li .bx-caption {
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

#slider li .bx-caption span {
  position: relative;
  right: auto;
  width: auto;
}

.slide-flag {
  position: absolute;
  bottom: 39px;
  background-color: #fff100;
  border-radius: 0 5px 0 0;
  text-align: center;
  padding: 5px 10px;
}

.slide-flag img {
  width: 115px;
}

/* コンポーネント */

.c-pagetitle {
  height: 130px;
  position: relative;
  margin-bottom: 23px;
  padding-top: 5px;
  color: #ffffff;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.c-pagetitle .pagetitle {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 33px;
}

.c-pagetitle .pagetitle span {
  display: block;
  font-size: 12px;
}

.c-pagetitle .pagetitle .c-pagesubtitle {
  width: 100px;
  margin: 0 auto;
  text-align: center;
  background-color: #196bad;
  padding: 5px;
  color: #ffffff;
}

.bread {
  display: none;
}

.bread > li {
  display: inline-block;
  font-size: 12px;
}

.bread > li:last-child:after {
  display: none;
}

.bread > li:after {
  content: ">";
  display: inline-block;
  margin-left: 5px;
}

.bread > li a {
  color: #ffffff;
}

/* ====================
セクションタイトル
=======================*/

.sec-title {
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
  line-height: 1.2;
}

.sec-title::before {
  display: block;
  margin: 0 auto 12px;
  content: "";
  width: 78px;
  height: 38px;
  background-size: 100%;
}

.sec-title span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #3e3a39;
}

.sec-title__blue {
  color: #196bad;
}

.sec-title__blue::before {
  background-image: url(../images/icon/icon_bridge@2x.png);
}

.sec-title__white {
  color: #ffffff;
}

.sec-title__white::before {
  background-image: url(../images/icon/icon_bridge_wht@2x.png);
}

.sec-title__white span {
  color: #ffffff;
}

.page-header {
  width: 100%;
  height: 330px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 2px 0;
  text-align: center;
}

.page-header .page-header--inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(25, 107, 173, 0.3);
  padding: 38px 10px 45px;
}

.page-header .sec-title {
  margin-bottom: 15px;
}

.webshop_link {
  opacity: 0.5;
}

/*表*/

.block--contents--table dt {
  padding: 10px;
  font-family: 'VT323', monospace;
  font-size: 20px;
  letter-spacing: -1px;
  -webkit-transform: scale(1.6, 1);
  transform: scale(1.6, 1);
  display: inline-block;
  width: 85px;
  vertical-align: top;
  padding: 3px 25px;
}

.block--contents--table dd {
  position: relative;
  display: inline-block;
  padding: 3px 25px;
  border: none;
  width: calc(100% - 110px);
}

.block--contents--table dd input,
.block--contents--table dd textarea {
  border: solid 1px #000;
}

.block--contents--table dd input {
  max-width: 300px;
  width: 100%;
  padding: 1px 5px;
}

.block--contents--table dd textarea {
  max-width: 640px;
  width: 100%;
}

.block--contents--table--dot {
  padding-left: 1em;
  text-indent: -1em;
}

.block--contents--table--dot:before {
  content: "・";
}

/*表*/

/* 共通レイアウト(header, footer, etc.) */

/*=========================
common header
==========================*/

#header {
  position: relative;
  background-color: #fff;
  margin: auto;
  width: 100%;
  height: 37px;
  font-family: 'VT323', monospace;
  z-index: 10000;
}

#header .global_navi {
  text-align: center;
  margin: 0;
  padding: 0;
  padding-top: 2px;
}

#header .global_navi li {
  display: inline-block;
  font-size: 20px;
  -webkit-transform: scale(1.6, 1);
  transform: scale(1.6, 1);
  padding: 0px 87px;
  letter-spacing: -1px;
}

#header .global_navi li a {
  color: #000;
  text-decoration: none;
}

.header_insta {
  position: absolute;
  right: 80px;
  top: 7px;
}

.sp_gnav_insta {
  -webkit-transform: scale(1, 1) !important;
  transform: scale(1, 1) !important;
}

.sp_btn {
  position: absolute;
  z-index: 100;
  top: 7px;
  right: 16px;
  display: block;
}

#panel-btn {
  display: inline-block;
  position: relative;
  width: 21px;
  height: 21px;
  padding: 3px;
  box-sizing: border-box;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 7px;
  left: 12px;
  width: 12px;
  height: 3px;
  margin: -1px 0 0 -7px;
  background: #000;
  transition: 0s;
}

.sp_logo img {
  width: 150px;
  display: block;
  margin: auto;
  margin-top: 11px;
}

#panel-btn-icon:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 3px;
  background: #000;
  transition: .0s;
}

#panel-btn-icon:after {
  margin-top: 5px;
}

#panel-btn .close {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 11px;
}

#panel-btn .close:after {
  margin-top: 10px;
}

#panel-btn .close:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  top: 0;
  margin-top: 0px;
}

body {
  overflow: hidden;
}

body,
html {
  height: 100%;
}

a:hover {
  opacity: 1 !important;
  -webkit-animation: Flash1 .2s infinite;
  animation: Flash1 .2s infinite;
}

/* アニメーション */

@-webkit-keyframes Flash1 {
  50% {
    opacity: 0;
  }
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}

/*スクロールバー全体*/

::-webkit-scrollbar {
  width: 7px;
}

/*スクロールバーの軌道*/

::-webkit-scrollbar-track {
  border-radius: 10px;
}

/*スクロールバーの動く部分*/

::-webkit-scrollbar-thumb {
  background-color: #000;
}

h3 {
  font-family: 'VT323', monospace;
  font-size: 21px;
  letter-spacing: -1px;
  -webkit-transform: scale(1.6, 1);
  transform: scale(1.6, 1);
  width: 0px;
  font-weight: normal;
  margin-bottom: 35px;
}

.l-wrapper {
  margin: 0 auto;
  height: 100%;
  width: 100%;
}

.l-wrapper:after {
  content: "";
  clear: both;
  display: block;
}

.l-contents_box {
  position: relative;
  width: 670px;
  height: 0px;
  margin: auto;
}

.l-container_parent {
  padding-left: 100px;
  height: 100%;
}

.l-container {
  position: absolute;
  z-index: 100;
  visibility: hidden;
  overflow-x: auto;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #fff;
  padding: 15px 155px 15px 90px;
  transition: .5s;
}

.l-container:after {
  content: "";
  clear: both;
  display: block;
}

.l-container_inner {
  margin-top: 50px;
}

.l-container_footer {
  position: absolute;
  z-index: 100;
  width: 98%;
  height: 140px;
  bottom: 0px;
  left: 0px;
  background-image: url(../images/index/gg_logo@2x.png);
  background-size: 65px;
  background-repeat: no-repeat;
  background-position: 100px 10px;
}

.l-container_footer .l-con_close {
  opacity: 1;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 40px;
}

.l-con_close:hover {
  opacity: 1 !important;
  -webkit-animation: Flash1 .2s infinite;
  animation: Flash1 .2s infinite;
}

.box_slide {
  visibility: visible;
  top: 37px !important;
}

#about_box .l-container_inner {
  font-size: 12px;
  line-height: 25px;
  text-align: justify;
}

#about_box .l-container_footer {
  background: none;
}

.p-contact__btn {
  position: relative;
  z-index: 300;
  padding-left: 130px;
  margin-top: 10px;
}

.p-contact__btn input {
  opacity: 1;
  font-family: 'VT323', monospace;
  font-size: 20px;
  letter-spacing: -1px;
  -webkit-transform: scale(1.6, 1);
  transform: scale(1.6, 1);
  font-weight: normal;
  color: #fff;
  background-color: #000;
  width: 47px;
  padding: 1px 0px;
}

.p-contact__btn input:hover {
  opacity: 1 !important;
  -webkit-animation: Flash1 .2s infinite;
  animation: Flash1 .2s infinite;
}

.thanks_messeage_box {
  display: none;
  width: 100%;
  height: 430px;
}

.thanks_messeage_box p {
  font-family: 'VT323', monospace;
  font-size: 34px;
  letter-spacing: -1px;
  -webkit-transform: scale(1.6, 1);
  transform: scale(1.6, 1);
  font-weight: normal;
  width: 180px;
  display: inline-block;
  margin-left: 52px;
}

.contact_thanks form {
  display: none;
}

.contact_thanks .thanks_messeage_box {
  display: block;
}

/* ページごとのスタイル */

.index {
  background-color: #ddd;
}

.index h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  display: none;
}

.index #logo_line {
  width: 300px;
}

.index .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.index path {
  fill-opacity: 0;
  transition: fill-opacity 2s, stroke-width 2s;
}

.index .fill path {
  fill: #000;
  fill-opacity: 1;
  stroke-width: 0px;
}

.index .fill path {
  fill: #000;
  fill-opacity: 1;
  stroke-width: 0px;
}

.index .logo_white .fill path {
  fill: #fff !important;
  fill-opacity: 1;
  stroke-width: 0px;
}

.index canvas {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.eguag_custom {
  position: fixed;
  top: 90px;
  right: 60px;
  width: 200px;
  height: 200px;
  display: none;
  transition: .3s;
  border-radius: 100%;
  overflow: hidden;
}

.eguag_custom:hover {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.eguag_custom__link {
  width: 200px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.eguag_custom__img {
  max-width: 140px;
  width: 100%;
  position: relative;
  z-index: 5;
}

.eguag_custom video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190%;
  height: 300px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.eguag_custom__1 .eguag_custom__link {
  -webkit-animation: eguag_custom_anime_1 1s alternate infinite;
  animation: eguag_custom_anime_1 1s alternate infinite;
}

.eguag_custom__2 .eguag_custom__link {
  -webkit-animation: eguag_custom_anime_2 5s linear infinite;
  animation: eguag_custom_anime_2 5s linear infinite;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.eguag_custom__4 .eguag_custom__link {
  background-image: url("../images/index/custom.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}

@-webkit-keyframes eguag_custom_anime_1 {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes eguag_custom_anime_1 {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes eguag_custom_anime_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes eguag_custom_anime_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/* ユーティリティ(color, size, spacing, etc.) */

.u-ta-l {
  text-align: left !important;
}

.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-j {
  text-align: justify !important;
  -ms-text-justify: inter-ideograph !important;
  text-justify: inter-ideograph !important;
}

.u-bc-white {
  background-color: #FFF !important;
}

.u-bc-lightgray {
  background-color: #f4f2f0 !important;
}

.u-bc-blue {
  background-color: #196bad !important;
}

.u-bdr-t {
  border-top: 1px solid !important;
}

.u-bdr-b {
  border-bottom: 1px solid !important;
}

.u-bdr-l {
  border-left: 1px solid !important;
}

.u-bdr-r {
  border-right: 1px solid !important;
}

.u-bdr-n {
  border: none !important;
}

.u-c-black {
  color: #000 !important;
}

.u-c-white {
  color: white !important;
}

.u-c-red {
  color: #cc0000 !important;
}

.u-c-green {
  color: #00a496 !important;
}

.u-c-blue {
  color: #196bad !important;
}

.u-cs-a {
  cursor: auto;
}

.u-cs-p {
  cursor: pointer;
}

.u-sp-hide {
  display: none !important;
}

.u-sp-hide-b {
  display: none !important;
}

.block {
  display: block !important;
}

.u-d-i {
  display: inline !important;
}

.u-d-ib {
  display: inline-block !important;
}

.u-d-b {
  display: block !important;
}

.u-fs-8 {
  font-size: 8px !important;
}

.u-fs-9 {
  font-size: 9px !important;
}

.u-fs-10 {
  font-size: 10px !important;
}

.u-fs-11 {
  font-size: 11px !important;
}

.u-fs-12 {
  font-size: 12px !important;
}

.u-fs-13 {
  font-size: 13px !important;
}

.u-fs-14 {
  font-size: 14px !important;
}

.u-fs-15 {
  font-size: 15px !important;
}

.u-fs-16 {
  font-size: 16px !important;
}

.u-fs-17 {
  font-size: 17px !important;
}

.u-fs-18 {
  font-size: 18px !important;
}

.u-fs-19 {
  font-size: 19px !important;
}

.u-fs-20 {
  font-size: 20px !important;
}

.u-fs-21 {
  font-size: 21px !important;
}

.u-fs-22 {
  font-size: 22px !important;
}

.u-fs-23 {
  font-size: 23px !important;
}

.u-fs-24 {
  font-size: 24px !important;
}

.u-fs-25 {
  font-size: 25px !important;
}

.u-fs-26 {
  font-size: 26px !important;
}

.u-fs-27 {
  font-size: 27px !important;
}

.u-fs-28 {
  font-size: 28px !important;
}

.u-fs-29 {
  font-size: 29px !important;
}

.u-fs-30 {
  font-size: 30px !important;
}

.u-fs-31 {
  font-size: 31px !important;
}

.u-fs-32 {
  font-size: 32px !important;
}

.u-fs-33 {
  font-size: 33px !important;
}

.u-fs-34 {
  font-size: 34px !important;
}

.u-fs-35 {
  font-size: 35px !important;
}

.u-fs-36 {
  font-size: 36px !important;
}

.u-fs-37 {
  font-size: 37px !important;
}

.u-fs-38 {
  font-size: 38px !important;
}

.u-fs-39 {
  font-size: 39px !important;
}

.u-fs-40 {
  font-size: 40px !important;
}

.u-mt-0 {
  margin-top: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-25 {
  margin-top: 25px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mt-35 {
  margin-top: 35px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mt-45 {
  margin-top: 45px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mt-55 {
  margin-top: 55px !important;
}

.u-mt-60 {
  margin-top: 60px !important;
}

.u-mt-65 {
  margin-top: 65px !important;
}

.u-mt-70 {
  margin-top: 70px !important;
}

.u-mt-75 {
  margin-top: 75px !important;
}

.u-mt-80 {
  margin-top: 80px !important;
}

.u-mt-85 {
  margin-top: 85px !important;
}

.u-mt-90 {
  margin-top: 90px !important;
}

.u-mt-95 {
  margin-top: 95px !important;
}

.u-mt-100 {
  margin-top: 100px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-25 {
  margin-bottom: 25px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-35 {
  margin-bottom: 35px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-45 {
  margin-bottom: 45px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-55 {
  margin-bottom: 55px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mb-65 {
  margin-bottom: 65px !important;
}

.u-mb-70 {
  margin-bottom: 70px !important;
}

.u-mb-75 {
  margin-bottom: 75px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

.u-mb-85 {
  margin-bottom: 85px !important;
}

.u-mb-90 {
  margin-bottom: 90px !important;
}

.u-mb-95 {
  margin-bottom: 95px !important;
}

.u-mb-100 {
  margin-bottom: 100px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pt-25 {
  padding-top: 25px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pt-35 {
  padding-top: 35px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pt-45 {
  padding-top: 45px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pt-55 {
  padding-top: 55px !important;
}

.u-pt-60 {
  padding-top: 60px !important;
}

.u-pt-65 {
  padding-top: 65px !important;
}

.u-pt-70 {
  padding-top: 70px !important;
}

.u-pt-75 {
  padding-top: 75px !important;
}

.u-pt-80 {
  padding-top: 80px !important;
}

.u-pt-85 {
  padding-top: 85px !important;
}

.u-pt-90 {
  padding-top: 90px !important;
}

.u-pt-95 {
  padding-top: 95px !important;
}

.u-pt-100 {
  padding-top: 100px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pb-25 {
  padding-bottom: 25px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pb-35 {
  padding-bottom: 35px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pb-45 {
  padding-bottom: 45px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pb-55 {
  padding-bottom: 55px !important;
}

.u-pb-60 {
  padding-bottom: 60px !important;
}

.u-pb-65 {
  padding-bottom: 65px !important;
}

.u-pb-70 {
  padding-bottom: 70px !important;
}

.u-pb-75 {
  padding-bottom: 75px !important;
}

.u-pb-80 {
  padding-bottom: 80px !important;
}

.u-pb-85 {
  padding-bottom: 85px !important;
}

.u-pb-90 {
  padding-bottom: 90px !important;
}

.u-pb-95 {
  padding-bottom: 95px !important;
}

.u-pb-100 {
  padding-bottom: 100px !important;
}

.u-fs-o {
  font-style: oblique !important;
}

.u-td-u {
  text-decoration: underline !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

@media screen and (min-width: 690px) {
  .bx-viewport {
    position: relative;
  }

  .bx-viewport:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    right: 1000px;
    z-index: 500;
  }

  .bx-viewport:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: 0;
    left: 1000px;
    z-index: 500;
  }

  .slider-wrapper-inner {
    /*padding-top: 65px;*/
  }

  .box-slide-control {
    display: block;
    width: 1000px;
    top: 50%;
    margin: 0 auto 0;
    left: 50%;
    margin-left: -500px;
  }

  .slide-prev-btn {
    position: absolute;
    top: 0;
    left: 15px;
  }

  .slide-next-btn {
    position: absolute;
    top: 0;
    right: 15px;
  }

  .box-slider li {
    width: 1000px;
  }

  /* slide contents  */

  #slider {
    /*padding-top: 65px;*/
  }

  #slider li {
    position: relative;
  }

  /* ドット スライダーナビゲーション */

  .slider-nav {
    margin-top: 40px;
  }

  .slider-nav li {
    display: inline-block;
    margin-left: 30px;
  }

  .slider-nav span {
    width: 20px;
    height: 20px;
  }

  .slide-flag {
    bottom: 46px;
  }

  .slide-flag img {
    width: 135px;
  }
}

@media screen and (min-width: 751px) {
  .flex-col {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .flex-col_2 > li {
    width: 50%;
  }

  .flex-col_3 > li {
    width: 33.3333%;
  }

  .flex-col_4 > li {
    width: 25%;
  }

  .flex-col_5 > li {
    width: 20%;
  }

  .flex-col-sp_2 > li {
    width: 100%;
  }

  .flex-col-sp_2_nmargin > li {
    width: 100%;
  }

  .flex-col_pc {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .link-arrow::after {
    margin-top: -3px;
    margin-left: 10px;
    font-size: 16px;
  }

  .viewlinks {
    font-size: 16px;
  }

  .list-ordered > li {
    margin: 5px 0;
  }

  .list-ordered__tall > li {
    margin: 30px 0 0;
  }

  .c-table dl {
    display: table;
    width: 100%;
  }

  .c-table dl dt {
    display: table-cell;
    padding: 15px 15px 15px 20px;
    width: 145px;
    position: relative;
  }

  .c-table dl dd {
    display: table-cell;
    padding: 15px 15px 15px 20px;
    border: 1px solid #e9eaea;
  }

  .form-submit {
    width: 200px;
    margin-left: 296px;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
  }

  .form-submit:hover {
    opacity: 0.6;
  }

  .input-submit {
    margin-top: 40px;
    width: 230px;
    margin-left: auto;
    margin-right: auto;
  }

  .input-submit:after {
    right: 10px;
    font-size: 16px;
    font-weight: bold;
  }

  .section-confirmation input[type="submit"],
  .section-confirmation input[type="button"] {
    font-size: 16px;
  }

  .section-confirmation .input-button {
    width: 200px;
    display: inline-block;
  }

  select {
    background-size: 24px;
  }

  textarea {
    width: 100%;
    height: 240px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"] {
    width: 100%;
    padding: 5px 8px;
    font-size: 16px;
    float: left;
  }

  input[type="text"].input-small,
  input[type="email"].input-small,
  input[type="tel"].input-small {
    width: 100px;
  }

  input[type="text"].input-medium,
  input[type="email"].input-medium,
  input[type="tel"].input-medium {
    width: 330px;
  }

  .input-birth input[type="text"] {
    float: inherit;
  }

  input.input-year {
    width: 113px;
  }

  input.input-month {
    width: 52px;
  }

  input.input-day {
    width: 52px;
  }

  body,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
    line-height: 1.6;
  }

  .js-anchor {
    margin-top: -83px;
    padding-top: 83px;
  }

  .c-pagetitle {
    height: 160px;
    margin-bottom: 50px;
    background-size: cover;
  }

  .c-pagetitle .pagetitle {
    margin-top: -10px;
  }

  .bread {
    display: block;
  }

  .page-header {
    margin: 5px 0;
    border-bottom: 1px solid #f4f2f0;
  }

  .page-header .page-header--inner {
    padding: 25px 0 25;
  }

  .u-pc-hide {
    display: none !important;
  }

  .u-sp-hide {
    display: inline !important;
  }

  .u-sp-hide-b {
    display: block !important;
  }
}

@media screen and (max-width: 750px) {
  .block--contents--table dt {
    width: 0%;
    display: block;
    padding: 1px 0px;
  }

  .block--contents--table dd textarea {
    height: 130px;
  }

  .block--contents--table dd {
    width: 100%;
    display: block;
    padding: 3px 0px;
  }

  #header {
    position: fixed;
  }

  #header .global_navi {
    background-color: #fff;
    margin-top: 37px;
    padding-bottom: 20px;
    display: none;
  }

  #header .global_navi li {
    display: block;
    margin: 10px 0px;
  }

  h3 {
    margin-bottom: 15px;
  }

  .l-contents_box {
    width: 100%;
  }

  .l-container_parent {
    padding-left: 13px;
  }

  .l-container {
    height: calc(100% - 55px);
    overflow: hidden;
    padding: 15px 10px;
  }

  .l-container_inner {
    height: calc(100% - 30px);
    margin-top: 0px;
    padding-right: 0px;
    overflow-x: auto;
  }

  .l-container_footer {
    position: relative;
    height: 40px;
    background-size: 30px;
    background-position: 0px 1px;
  }

  .l-container_footer .l-con_close {
    width: 20px;
    right: -5px;
    top: 10px;
  }

  #about_box .l-container_inner {
    font-size: 12px;
    line-height: 23px;
    padding-top: 5px;
  }

  #about_box .l-container_inner p {
    padding: 0px 12px;
  }

  .p-contact__btn {
    text-align: center;
    padding-left: 0px;
  }

  .thanks_messeage_box {
    height: 100px;
  }

  .index #logo_line {
    width: 230px;
  }

  .eguag_custom {
    width: 170px;
    height: 170px;
    top: 65px;
    right: 25px;
  }

  .eguag_custom__link {
    width: 170px;
    height: 170px;
  }

  .eguag_custom__img {
    max-width: 100px;
  }
}