@charset "UTF-8";
/* _reset.scss
--------------------------------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: 1.6;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}

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

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: '';
}

object,
embed {
  vertical-align: top;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

img,
abbr,
acronym,
fieldset {
  border: 0;
}

ul,
ol {
  list-style-type: none;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

main {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}

address {
  font-style: normal;
}

caption,
td,
th {
  font-weight: 400;
  text-align: left;
}

a:focus {
  outline: thin dotted;
}

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

audio,
canvas,
video {
  display: inline-block;
}

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

del {
  color: #333;
}

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

hr {
  border: 0;
  height: 1px;
  border-bottom: 1px solid #ccc;
}

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

button {
  border: 0;
  background: 0 0;
  display: block;
  cursor: pointer;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

small {
  font-size: smaller;
}

a,
button {
  text-decoration: none;
  opacity: 1;
}

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

body {
  word-break: break-all;
}

img {
  border: 0;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
}

/*　default link color
---------------------------------------------------------------------------------------*/
a {
  text-decoration: none;
}

a:link {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a:visited {
  color: inherit;
}

a, a:focus {
  outline: none;
}

button, input, input:focus {
  outline: none;
}

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

/*---------------------------------------------------------
	スクロールでコンテンツを表示
---------------------------------------------------------*/
/* 要素のMoveUp */
.move_up_content {
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.moveup_done {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* 要素のMoveUp + フェードイン */
.move_up_fade_content,
.move_up_fade_content2,
.move_up_fade_content3 {
  opacity: 0;
  position: relative;
  top: 60px;
  -webkit-transition: top 800ms ease, opacity 800ms ease;
  transition: top 800ms ease, opacity 800ms ease;
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.move_up_fade_content2 {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}

.move_up_fade_content3 {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}

.moveupfade_done,
.moveupfade_done2,
.moveupfade_done3 {
  top: 0px;
  opacity: 1;
}

/* 要素の回転 */
.rotation_content {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 1500ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: -webkit-transform 1500ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: transform 1500ms cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: transform 1500ms cubic-bezier(0.36, 0.1, 0.16, 1), -webkit-transform 1500ms cubic-bezier(0.36, 0.1, 0.16, 1);
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.rotation_done {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

/* 要素の3D回転 */
.rotation_3d_content {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.rotation_3d_done {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

/* ズームイン表示 */
.zoomin_content {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.zoomin_done {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein_content {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.fadein_done {
  opacity: 1.0;
}

.cover_inview {
  position: relative;
}

.cover_inview::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #05266d;
  position: absolute;
  -webkit-transition: width 680ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: width 680ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 3000;
}

.cover_inview-bk::after {
  background: #000;
}

.cover_inview_done::after {
  width: 0%;
}

/* 要素のMoveUp + フェードイン(transformしよう) */
.transform_move_up_fade_content,
.transform_move_up_fade_content2,
.transform_move_up_fade_content3 {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  -webkit-transition: opacity 1900ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1900ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1900ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1900ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1900ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1900ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1900ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1900ms cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1900ms cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .transform_move_up_fade_content.only_pc,
  .transform_move_up_fade_content2.only_pc,
  .transform_move_up_fade_content3.only_pc {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1;
    -webkit-transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0s cubic-bezier(0.19, 1, 0.22, 1), opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0s cubic-bezier(0.19, 1, 0.22, 1), opacity 0s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0s cubic-bezier(0.19, 1, 0.22, 1);
  }
}

.transform_move_up_fade_content2 {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}

.transform_move_up_fade_content3 {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.transform_moveupfade_done,
.transform_moveupfade_done2,
.transform_moveupfade_done3 {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.delay300ms {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}

.delay400ms {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.delay500ms {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}

.delay600ms {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}

.delay700ms {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}

.delay800ms {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}

.delay900ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1000ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1100ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1200ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1300ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1400ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1500ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1600ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1700ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1800ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay1900ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

.delay2000ms {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}

/*---------------------------------------------------------
	スマホ
---------------------------------------------------------*/
@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .textUnderBorder-Active::before {
    width: 100%;
  }
}

* {
  font-size: 16px;
  font-weight: normal;
  padding: 0;
  margin: 0;
  max-width: 100%;
  letter-spacing: 0.065em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  letter-spacing: 0;
  line-height: 0;
  word-wrap: break-word;
  -webkit-transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
}

.body--scrollHidden {
  overflow: hidden;
}

body,
html {
  min-width: 1000px;
  max-width: 1920px;
  margin: auto;
  font-family: fot-tsukubrdgothic-std, "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0;
  line-break: strict;
  background: #fff;
  color: #2f2f2f;
}

b {
  font-weight: bold;
}

.text-underline {
  text-decoration: underline;
}

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

ul {
  list-style-type: none;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

.header__inner {
  position: relative;
}

.header__logo {
  display: none;
}

.header__yoyaku {
  display: inline-block;
  background-color: #000;
  color: #fff !important;
  width: auto;
  height: 44px;
  padding:0 15px 0 15px;
  line-height: 46px;
  border-radius: 0 0 0.6em 0.6em;
  -webkit-transition: -webkit-text-decoration .3s ease;
  transition: -webkit-text-decoration .3s ease;
  transition: text-decoration .3s ease;
  transition: text-decoration .3s ease, -webkit-text-decoration .3s ease;
  z-index: 9999;
  text-align: center;
  font-size: 15px;
  position: fixed;
  right: 30px;
  top: -44px;
  -webkit-animation-name: YoyakuIn;
          animation-name: YoyakuIn;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.header__yoyaku:hover {
  text-decoration: underline;
}

.header__yoyaku img {
  width: 17px;
  height: auto;
  position: relative;
  top: -2px;
  margin-right: 2px;
}


@media screen and (max-width: 767px) {
  .header__yoyaku {
   right:5px;
   /* width: 76px; */
   /* line-height:15px; */
   /* padding:10px 6px 10px; */
   /* height:48px; */
   /* font-size: 14px; */
  }
  .header__yoyaku img {
    /* display:none; */
  }
}

@-webkit-keyframes YoyakuIn {
  0% {
    top: -48px;
  }
  20% {
    top: -48px;
  }
  100% {
    top: 0;
  }
}

@keyframes YoyakuIn {
  0% {
    top: -48px;
  }
  20% {
    top: -48px;
  }
  100% {
    top: 0;
  }
}
.nav {
  font-size: 15px;
  -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), z-index 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1), z-index 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  margin-top: 0;
  padding: 50px 0;
  height: 100vh;
  border-bottom: none;
  font-size: 14px;
  display: block;
  text-align: center;
  opacity: 0;
  z-index: -1;
  overflow: auto;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav {
    padding: 80px 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
}

.nav.nav--active {
  z-index: 9998;
  top: 0vh;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), z-index 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1), z-index 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav__button {
  z-index: 9998;
  width: 60px;
  height: 60px;
  position: fixed;
  left: 30px;
  top: 15px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav__button {
    left: 4%;
  }
}

.nav__button-active {
  background: #fff;
  border-color: #c2edff;
}

.nav__list {
  overflow: hidden;
  max-width: 665px;
  width: 86%;
  margin: auto;
}

.nav__item {
  float: left;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 40px;
}

.nav__item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav__item {
    width: 30%;
    margin-right: 5%;
  }
}

.nav__link {
  display: block;
  text-align: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.nav__link img {
  border-radius: 1.4em;
  overflow: hidden;
}

.nav__link:hover {
  opacity: 0.9;
}

.nav__itemName {
  display: block;
  margin-top: 9px;
}

.nav__itemName,
.nav__itemNameChild {
  font-weight: 700;
  font-size: 16px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav__itemName,
  .nav__itemNameChild {
    font-size: 14px;
  }
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav__itemNameChild {
    display: inline-block;
  }
}

.nav_bannerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 38px;
  max-width: 665px;
  width: 86%;
  margin: auto;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav_bannerBox {
    display: block;
    margin-top: 22px;
    margin-bottom: 68px;
    max-width: 380px;
  }
}

.nav_bannerItem {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  margin-bottom: 18px;
  border-radius: 1em;
  overflow: hidden;
  width: 47.5%;
  max-width: 360px;
}

.nav_bannerItem:hover {
  opacity: 0.9;
}

.nav_bannerItem img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .nav_bannerItem {
    width: 100%;
    max-width: 100%;
  }
}

.navfoot__inner {
  width: 86%;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .navfoot__inner {
    padding: 0;
  }
}

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

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .navfoot__flex {
    display: block;
  }
}

.navfoot__left {
  width: 50%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .navfoot__left {
    width: 100%;
  }
}

.navfoot__right {
  width: 45%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .navfoot__right {
    width: 100%;
    margin-top: 50px;
  }
}

.navfoot__nav {
  border-bottom: solid 2px #000;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .navfoot__nav {
    border-top: none;
  }
}

.navfoot__navItem {
  text-align: left;
}

.navfoot__navItem:not(:last-child) {
  border-bottom: dotted 2px #ccc;
}

.navfoot__navItem:first-child {
  border-top: solid 2px #000;
}

.navfoot__navLink {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  padding: 11px 0 11px 17px;
}

.navfoot__navLink:hover {
  opacity: 0.7;
}

.navfoot__rightList {
  text-align: center;
}

.navfoot__rightList dt {
  font-weight: 700;
}

.navfoot__rightList dt:not(:first-child) {
  margin-top: 15px;
}

.navfoot__rightList dd {
  line-height: 1.75;
}

.navfoot__logoBox {
  margin-top: 30px;
  text-align: center;
}

#menu {
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 0;
  width: 35px;
height: 50px;
  cursor: pointer;
}

#menu::before,
#menu::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  background: #362323;
  border-radius: 4px;
}

#menu span {
  overflow: hidden;
  z-index: 1;
  color: #362323;
}

#menu::before {
  z-index: 2;
  -webkit-transform: translate(0, -9px);
          transform: translate(0, -9px);
  content: "";
}

#menu::after {
  z-index: 2;
  -webkit-transform: translate(0, 9px);
          transform: translate(0, 9px);
  content: "";
}

#menu::before,
#menu::after {
  -webkit-transition: -webkit-transform 200ms;
  transition: -webkit-transform 200ms;
  transition: transform 200ms;
  transition: transform 200ms, -webkit-transform 200ms;
}

#menu.active span {
  opacity: 0;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}

#menu.active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#menu.active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer__inner {
  width: 86%;
  max-width: 700px;
  margin: auto;
  padding: 50px 0;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .footer__inner {
    padding: 0 0 50px;
  }
}
.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .footer__flex {
    display: block;
  }
}

.footer__left {
  width: 50%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .footer__left {
    width: 100%;
  }
}

.footer__right {
  width: 45%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .footer__right {
    width: 100%;
    margin-top: 50px;
  }
}

.footer__nav {
  border-bottom: solid 2px #000;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .footer__nav {
    border-top: none;
  }
}

.footer__navItem:not(:last-child) {
  border-bottom: dotted 2px #ccc;
}

.footer__navItem:first-child {
  border-top: solid 2px #000;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .footer__navItem:first-child {
    border-top: none;
  }
}

.footer__navLink {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  padding: 11px 0 11px 17px;
}

.footer__navLink:hover {
  opacity: 0.7;
}

.footer__subNav {
  border-bottom: solid 2px #000;
  padding: 5px 0;
}

.footer__rightList {
  text-align: center;
}

.footer__rightList dt {
  font-weight: 700;
}

.footer__rightList dt:not(:first-child) {
  margin-top: 15px;
}

.footer__rightList dd {
  line-height: 1.75;
}

.footer__logoBox {
  margin-top: 30px;
  text-align: center;
}

.footer__bottom {
  color: rgba(0, 0, 0, 0.3);
}

.footer__text {
  text-align: center;
  margin-top: 51px;
  font-weight: 700;
  font-size: 14px;
}

.footer__copyRight {
  text-align: center;
  font-size: 13px;
  margin-top: 16px;
  font-size: 10px;
}

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

.sp-table-row {
  display: none;
}

.sp-block,
.sp-inline,
.sp-inline-block {
  display: none;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  body,
  html {
    min-width: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .sp-none {
    display: none !important;
  }
  .sp-block {
    display: block;
  }
  .sp-inline {
    display: inline;
  }
  .sp-inline-block {
    display: inline-block;
  }
  .sp-brNone br {
    display: none;
  }
  .sp-table-row {
    display: table-row;
  }
  .nav__button {
    width: 50px;
    height: 50px;
  }
}

.pankuzu {
  position: absolute;
  top: 80px;
  left: 20px;
  z-index: 17;
  display: block;
  font-size: 15px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pankuzu {
    top: 71px;
    left: 13px;
  }
}

.pankuzu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pankuzu_list li {
  color: #000;
  line-height: 1;
}

.pankuzu_list li a {
  overflow: hidden;
  display: inline-block;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pankuzu_list li a {
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
  }
}

.pankuzu_list li:not(:first-child) {
  position: relative;
  margin-left: 36px;
  display: inline-block;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pankuzu_list li:not(:first-child) {
    margin-left: 21px;
  }
}

.pankuzu_list li:not(:first-child)::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 9px;
  left: -22px;
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .pankuzu_list li:not(:first-child)::before {
    top: 7px;
    left: -14px;
    width: 4px;
    height: 4px;
  }
}

.sns__inner {
  width: 86%;
  max-width: 700px;
  margin: auto;
  padding: 50px 0;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .sns__inner {
    padding: 30px 0;
  }
}

.sns__title {
  font-size: 18px;
  text-align: center;
  line-height: 1.9;
}

.sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .sns__list {
    display: block;
  }
}

.sns__item {
  width: 29%;
  max-width: 396px;
  text-align: center;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .sns__item {
    width: 100%;
    max-width: none;
    text-align: left;
  }
  .sns__item:not(:first-child) {
    margin-top: 20px;
  }
}

.sns__contentBox {
  margin: auto;
  display: block;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .sns__contentBox {
    margin: 0;
    padding: 0 12px;
  }
}

.sns__contentText {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 3px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .sns__contentText {
    display: inline-block;
  }
}

.sns__link {
  display: block;
  width: 100%;
  border-radius: 8px;
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.sns__link:hover {
  opacity: 0.75;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .sns__link {
    height: 80px;
  }
}

.sns__link--twitter {
  background-color: #bfbfbf;
}

.sns__link--facebook {
 background-color: #9db1ee;
}

.sns__link--instagram {
  background-color: #d4beea;
}
.threeLinks__inner {
  width: 86%;
  max-width: 700px;
  margin: auto;
  padding: 50px 0;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .threeLinks__inner {
    padding: 0;
  }
}

.threeLinks__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  padding: 20px 20px;
  border-top: solid 2px #000;
  border-bottom: solid 2px #000;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .threeLinks__list {
    padding: 23px 0 18px;
  }
}

.threeLinks__item {
  width: 33.3333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 130px;
  text-align: center;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .threeLinks__item {
    height: auto;
  }
}

.threeLinks__item:not(:last-child) {
  border-right: solid 2px #000;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .threeLinks__item:not(:last-child) {
    border-right: none;
  }
}

.threeLinks__link {
  display: block;
  text-align: center;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  width: 100%;
}

.threeLinks__link:hover {
  opacity: 0.6;
}

.threeLinks__imageBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.threeLinks__imageBox img {
  margin: auto;
}

.threeLinks__linkText {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: 0.0785em;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .threeLinks__linkText {
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  .threeLinks__linkText {
    font-size: 13px;
  }
}
.main {
  padding-top: 60px;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
  position: relative;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header__inner {
  position: fixed;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 9900;
  text-align: center;
}

.header__logo {
  display: block;
  width: 186px;
  margin: auto;
  padding-top: 4px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.header__logo:hover {
  opacity: 0.75;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .header__logo {
    width: 150px;
    padding-top: 9px;
  }
}

.nav__button {
  height: 50px;
  top: 5px;
}

.ipgToplink__item, .form__submitBox button {
  color: #fff !important;
  background-color: #000;
  display: inline-block;
  width: auto;
  padding: 0 30px;
  border-radius: 5em;
  height: 42px;
  line-height: 38px;
  border: solid 2px #000;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.ipgToplink__item:hover, .form__submitBox button:hover {
  color: #000 !important;
  background-color: #fff;
}

.illust_pagination {
  position: relative;
}

.illust_pagination::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: calc(-13vw + 30px);
  background-image: url(../img/play/pc__foot.gif);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% auto;
  height: 13vw;
  width: 100%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .illust_pagination::before {
    background-image: url(../img/play/sp__foot.gif);
    top: -73px;
    height: 95px;
    background-position: center bottom;
  }
}

.illust_pagination--noCloud::before {
  display: none;
}

.ipg__inner {
  width: 86%;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0;
  text-align: center;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .ipg__inner {
    padding: 30px 0;
  }
}

.ipg__title {
  font-family: linotype-didot, serif;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0.2em;
}

.ipg__list {
  overflow: hidden;
}

.ipg__box {
  width: 48%;
  float: left;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 35px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .ipg__box {
    width: 100%;
    float: none;
  }
}

.ipg__box:nth-child(even) {
  margin-left: 4%;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .ipg__box:nth-child(even) {
    margin-left: 0%;
  }
}

.ipg__item {
  display: block;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.ipg__item:hover {
  opacity: 0.7;
}

.ipg__more {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 32px;
  line-height: 33px;
  font-family: linotype-didot, serif;
  font-style: italic;
  padding-left: 13px;
  padding-top: 1px;
  background-image: url(../img/illust_pagination/more_bg.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ipg__more::before {
  content: '';
  width: 3px;
  height: 3px;
  border: 0;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 24px;
  margin-top: 1px;
}

.ipgToplink__inner {
  text-align: center;
  margin: 40px auto 0;
}

.mainv__inner {
  position: relative;
  background-image: url(../img/some_page/mainv__2x.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .mainv__inner {
    min-height: 350px;
    background-size: auto 100%;
  }
}

.mainv__textBox {
  text-align: center;
  position: absolute;
  top: calc((100% - 111px) / 2 - 48px);
  width: 100%;
  left: 0;
}

.mainv__title {
  font-family: linotype-didot, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .2em;
  height: 48px;
  position: relative;
}

.mainv__title::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 43px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: calc((100% - 43px)/ 2);
}

.mainv__subTitle {
  font-weight: 700;
  font-size: 27px;
  color: #000;
  letter-spacing: 0.085em;
  margin-top: 20px;
}

.intro__inner {
  width: 86%;
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 20px 0 50px;
  text-align: center;
  position: relative;
}

.intro__inner--foot {
  margin-top: 80px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .intro__inner {
    margin: 0 auto 0;
    padding: 0 0 25px;
  }
}

.intro__leftImage {
  position: absolute;
  left: 0;
  top: 9px;
}

.intro__rightImage {
  position: absolute;
  right: 0;
  top: 17px;
}

.intro__text {
  line-height: 2.1;
}

.intro__text a {
  text-decoration: underline;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.intro__text a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .intro__text {
    text-align: left;
  }
}

.formTel__inner {
  width: 86%;
  max-width: 1000px;
  margin: 30px auto 40px;
  padding: 40px 4% 39px;
  background: #eff8fe;
  text-align: center;
  border-radius: 30px;
}

.formTel__title {
  font-weight: 700;
  font-size: 21px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .formTel__title {
    font-size: 19px;
  }
}

.formTel__mainBox {
  margin-top: 4px;
}

.formTel__main {
  font-weight: 700;
  font-size: 34px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .formTel__main {
    font-size: 30px;
  }
}

.formTel__subText {
  font-weight: 700;
  margin-top: 11px;
  font-size: 13px;
}

/*---------------------------------------------------------
	メールフォーム
---------------------------------------------------------*/
.form__inner {
  width: 86%;
  max-width: 1000px;
  margin: 14px auto 0;
  padding: 100px 4%;
  background: #eff8fe;
  text-align: center;
  border-radius: 30px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .form__inner {
    padding: 53px 4% 28px;
  }
}

.form__title {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  letter-spacing: .085em;
}

.form__wrapper {
  margin-top: 27px;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .form__wrapper {
    margin-top: 27px;
  }
}

.form__table {
  width: 100%;
  max-width: 560px;
  margin: auto;
}

.form__wrapper .form__table tr th,
.form__wrapper .form__table tr td {
  vertical-align: middle;
}

.form__wrapper .form__table tr th {
  width: 250px;
}

.form__wrapper .form__table tr th i {
  color: #01266d;
}

.form__wrapper .form__table tr th {
  font-size: 16px;
  font-weight: bold;
  padding: 33px 0 0 0;
}

.form__wrapper .form__table tr td {
  font-size: 15px;
  padding: 9px 0;
}

.form__wrapper .form__table tr:first-child th {
  padding: 33px 0 0 0;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .form__wrapper .form__table tr:first-child th {
    padding: 0;
  }
}

.form__wrapper .form__table tr:first-child td {
  padding: 53px 0 25px 0;
}

input[type=text],
input[type=tel] {
  width: 100%;
  background: #fff;
  border: 2px solid #dde7ff;
  border-radius: 15px;
  height: 60px;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 0 27px;
}

.form__wrapper .form__table tr td textarea {
  width: 100%;
  background: #fff;
  border: 2px solid #dde7ff;
  border-radius: 15px;
  resize: vertical;
  min-height: 160px;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 20px 27px;
}

input[type=text],
input[type=tel],
textarea {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

input[type=text]:focus,
input[type=tel]:focus,
.form__wrapper .form__table tr td textarea:focus {
  border-color: #99d0f5;
  background: #fff;
  outline: none;
}

.form__wrapper .form__table tr th {
  overflow: hidden;
}

.hissu,
.nini {
  color: #fff;
  font-size: 12px;
  width: 42px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  margin-right: 12px;
}

.hissu {
  background: #ef6060;
}

.nini {
  background: #60a5ef;
}

.form__submitBox {
  margin: 50px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 680px), screen and (max-width: 737px) and (orientation: landscape) {
  .form__submitBox {
    margin-top: 17px;
  }
}

.form__submitBox button {
  background-color: #4c7df1;
  border-color: #4c7df1;
  width: 210px;
  font-family: fot-tsukubrdgothic-std, "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.form__submitBox button:hover {
  color: #4c7df1 !important;
  border-color: #4c7df1;
  background-color: #fff;
}

/*---------------------------------------------------------
	ラジオボタンの装飾
---------------------------------------------------------*/
input[type=radio] {
  display: none;
  /* 標準スタイル */
}

.radiobuttonLabel {
  position: relative;
  /* ボックスの位置を指定する */
  padding: 0 0 0 42px;
  /* ボックス内側の余白を指定する */
  cursor: pointer;
}

.radiobuttonLabel:after,
.radiobuttonLabel:before {
  position: absolute;
  /* ボックスの位置を指定する */
  content: "";
  /* ボックスのコンテンツ */
  display: block;
  /* ブロックレベル要素化する */
  top: 50%;
  /* 上部から配置の基準位置を決める */
}

.radiobuttonLabel:after {
  left: 15px;
  /* 左から配置の基準位置を決める */
  margin-top: -7px;
  /* チェック枠の位置 */
  width: 12px;
  /* ボックスの横幅を指定する */
  height: 12px;
  /* ボックスの高さを指定する */
  border: 2px solid #ccc;
  /* ボックスの境界線を実線で指定する */
  border-radius: 50%;
  /* ボックスの角丸を指定する */
}

.radiobuttonLabel:before {
  left: 16px;
  margin-top: -6px;
  width: 14px;
  height: 14px;
  background: #333;
  border-radius: 50%;
  opacity: 0;
}

input[type=radio]:checked + .radiobuttonLabel:before {
  opacity: 1;
  /* 要素を表示する */
}

input[type=radio]:checked + .radiobuttonLabel:after {
  border: 2px solid #333;
  /* ボックスの境界線を実線で指定する */
}

.radiobuttonLabel:hover:after {
  border-color: #333;
  /* ボックスの境界線を実線で指定する */
}

/** sourceMappingURL=contact.css.map */
