@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  └ base
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  border-style: solid;
  border-width: 0;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, 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, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

span, small, strong, em, b, i {
  color: inherit;
}

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

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

img[src$=".svg"] {
  width: 100%;
}

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

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/* html,Body
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}
html.is-scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  color: #343434;
  font-size: 1.6em;
  font-weight: 400;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: normal;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body * {
  word-wrap: break-word;
  word-break: normal;
}
@media screen and (min-width: 640px), print {
  body {
    padding-top: 52px;
  }
  body.home {
    padding-top: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: #000000;
  font-weight: 500;
}

th, strong {
  font-weight: 500;
}

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

main {
  overflow: hidden;
}

/*Font
----------------------------------------*/
.serif {
  font-family: "Shippori Mincho", serif;
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

/* Links
----------------------------------------*/
a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #A5A5A5;
}
a:active {
  color: #FFD800;
}

.js-tel-link body:not(.mobile) a:hover {
  color: inherit;
}

/*------------------------------------------------------------------------
// Layout
  ├ l-header
  ├ l-gnav
  ├ l-hamburger
  ├ l-spMenu
  ├ l-pagetop
  ├ l-footer
  ├ l-container
  ├ l-section
  └ l-contents
------------------------------------------------------------------------*/
/*----------------------------------------
	Header
----------------------------------------*/
/*ヘッダーエリア*/
@media screen and (max-width: 639px), print {
  .l-header__logo {
    display: none;
  }
}
@media screen and (min-width: 640px), print {
  .l-header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
  }
  .l-header__inner {
    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;
    height: 52px;
    padding: 10px 20px;
  }
  .l-header .l-container {
    position: relative;
  }
  .l-header__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #4E4E4E;
  }
  .l-header__logo a:hover, .l-header__logo a:focus {
    color: #A0A0A0;
  }
  .l-header__logo a:hover .c-logo .st0, .l-header__logo a:focus .c-logo .st0 {
    stroke: #A0A0A0;
  }
  .l-header__logo a:active {
    color: #FFD800;
  }
  .l-header__logo a:active svg .st0 {
    stroke: #FFD800;
  }
  .l-header__logo .c-logo {
    width: 28px;
    height: 28px;
  }
  .l-header__logo .c-logo .st0 {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__logo .txt {
    margin-left: 10px;
    font-weight: bold;
  }
}
/*----------------------------------------
	Global Navigation
----------------------------------------*/
/*----------------------------------------
	Global Navigation
----------------------------------------*/
.l-gnav {
  display: none;
}
@media screen and (min-width: 640px), print {
  .l-gnav {
    display: block;
  }
}

.l-gnavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-gnavList > li {
  margin-left: 20px;
  min-width: 140px;
}
.l-gnavList a {
  display: block;
  padding: 5px 10px;
  border: 1px solid currentColor;
  border-radius: 20px;
  background: #6A6A6A;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  text-align: center;
}
.l-gnavList a:hover, .l-gnavList a:focus {
  border-color: #707070;
  background: #ffffff;
  color: #0B0B0B;
}
.l-gnavList a:active {
  border-color: #FFD800;
  background: #FFD800;
  color: #3B3939;
}

/*----------------------------------------
	Hamburger Button
----------------------------------------*/
.l-hamburger {
  position: absolute;
  right: 15px;
  top: 17px;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  background-color: #C7B197;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.l-hamburger .inner {
  position: relative;
  width: 25px;
  height: 2px;
}
.l-hamburger .inner > span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
.l-hamburger .inner > span:nth-child(1) {
  top: -8px;
}
.l-hamburger .inner > span:nth-child(2) {
  top: 0;
}
.l-hamburger .inner > span:nth-child(3) {
  top: 8px;
  width: 20px;
}
.l-hamburger[aria-expanded=true] {
  background-color: transparent;
}
.l-hamburger[aria-expanded=true] .inner > span:nth-child(1) {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-hamburger[aria-expanded=true] .inner > span:nth-child(2) {
  opacity: 0;
}
.l-hamburger[aria-expanded=true] .inner > span:nth-child(3) {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
}
@media screen and (min-width: 640px), print {
  .l-hamburger {
    display: none;
  }
}

/*----------------------------------------
	spMenu
----------------------------------------*/
/*SP用メニュー外枠*/
.l-spMenu {
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
  height: 100%;
  background: #867a6c;
  color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.l-spMenu[aria-hidden=false] {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 1000;
  height: 100%;
}
.l-spMenu__inner {
  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  padding: 10px 25px 80px;
  text-align: center;
}

/*SP用ロゴ*/
.l-spMenu__logo {
  font-size: 2.5rem;
  letter-spacing: 0.25em;
}
.l-spMenu__logo .c-logo {
  display: block;
  margin: auto;
  width: 25px;
  height: 25px;
}
.l-spMenu__logo .c-logo .st0 {
  stroke: #ffffff;
}

/*メインメニュー*/
.l-spMenu__main {
  max-width: 462px;
  margin: 20px auto;
}
.l-spMenu__main li {
  border-top: 1px solid currentColor;
}
.l-spMenu__main a {
  display: block;
  padding: 10px;
  color: currentColor;
  font-size: 1.5rem;
}

/*サブメニュー*/
.l-spMenu__sub li {
  margin-top: 20px;
}
.l-spMenu__sub a {
  display: inline-block;
  min-width: 115px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #6a6a6a;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 1.3rem;
}
.l-spMenu__sub a:hover, .l-spMenu__sub a:focus {
  background: #fff;
  color: #393939;
}
.l-spMenu__sub a:active {
  background: #FFD800;
  color: #393939;
}

/*snsメニュー*/
.l-spMenu__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 20px;
}
.l-spMenu__sns a {
  color: #ffffff;
  font-size: 2.2rem;
}

/*利用規約・プライバシーポリシー*/
.l-spMenu__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}
.l-spMenu__other > li {
  width: 50%;
  text-align: left;
}
.l-spMenu__other a {
  display: block;
  color: currentColor;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 640px), print {
  .l-spMenu {
    display: none;
  }
}
/*----------------------------------------
	pagetop
----------------------------------------*/
.l-pagetop {
  position: fixed;
  right: 15px;
  bottom: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 640px), print {
  .l-pagetop {
    width: 50px;
    height: 50px;
  }
}

/*----------------------------------------
	Footer
----------------------------------------*/
/* 大枠レイアウト
--------------------------------------*/
.l-footer {
  position: relative;
  padding: 10px 0 20px;
  background: #192329;
  color: #919090;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

@media screen and (min-width: 640px), print {
  .l-footer .l-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/* メニュー
--------------------------------------*/
.l-footer__menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-footer__menuList > li {
  width: 50%;
}
.l-footer__menuList a {
  display: block;
  padding: 10px;
  color: #919090;
  font-size: 1.3rem;
}
.l-footer__menuList a:hover {
  color: #fff;
}

@media screen and (min-width: 640px), print {
  .l-footer__menuList > li {
    width: auto;
    margin: 10px 0 10px 20px;
  }
  .l-footer__menuList > li:first-child {
    margin-left: 0;
  }
  .l-footer__menuList a {
    padding: 0;
    font-size: 1.6rem;
  }
}
/* SNS
--------------------------------------*/
.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.l-footer__sns > li:not(:first-child) {
  margin-left: 58px;
}
.l-footer__sns a {
  color: #919090;
  font-size: 3.3rem;
}
.l-footer__sns a:hover {
  color: #fff;
}

@media screen and (min-width: 640px), print {
  .l-footer__sns {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .l-footer__sns > li:not(:first-child) {
    margin-left: 20px;
  }
  .l-footer__sns a {
    font-size: 2rem;
  }
}
/* Copyright
--------------------------------------*/
.l-footer__copy {
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
}

@media screen and (min-width: 640px), print {
  .l-footer__copy {
    font-size: 1.5rem;
  }
}
/*----------------------------------------
	Structure
----------------------------------------*/
/*container 
--------------------------*/
.l-container {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 1080px), print {
  .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-container--lg {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 1260px), print {
  .l-container--lg {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-container--sm {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 1080px), print {
  .l-container--sm {
    padding-left: 0;
    padding-right: 0;
  }
}

/*Section
--------------------------*/
/*通常セクション*/
.l-section {
  margin-top: 80px;
  margin-bottom: 80px;
}

/*PC*/
@media screen and (min-width: 640px), print {
  .l-section {
    margin-top: 200px;
    margin-bottom: 200px;
  }
}
/*背景色付きセクション*/
.l-section--paint {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #E9EAF5;
}

/*PC*/
@media screen and (min-width: 640px), print {
  .l-section--paint {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
/*Contents（下層）
--------------------------*/
.l-contents {
  margin-top: 50px;
  margin-bottom: 100px;
}

/*------------------------------------------------------------------------
// Project (Shared Compornent)
  └ *
------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
// Utilitiy
------------------------------------------------------------------------*/
/*----------------------------------------
	Utilities
----------------------------------------*/
/*margin*/
.u-mt0 {
  margin-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*padding*/
.u-pt0 {
  padding-top: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/*image*/
.u-img-full {
  max-width: none;
  width: 100%;
}

/*float*/
.u-fl {
  float: left;
}

.u-fr {
  float: right;
}

.u-clear {
  clear: both;
}

/*align-text*/
.u-ta__l {
  text-align: left !important;
}

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

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

/*font-size*/
.u-fz__small {
  font-size: 0.8em;
}

/*align-block*/
.u-block__l {
  float: none;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.u-block__c {
  float: none;
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-block__r {
  float: none;
  margin-left: auto !important;
  margin-right: 0 !important;
}

/*display*/
.u-sp {
  display: block;
}

.u-tab {
  display: block;
}

.u-pc {
  display: none;
}

@media screen and (min-width: 640px), print {
  .u-sp {
    display: none;
  }
  .u-tab {
    display: block;
  }
  .u-pc {
    display: block;
  }
}
@media screen and (min-width: 1080px), print {
  .u-sp {
    display: none;
  }
  .u-tab {
    display: none;
  }
  .u-pc {
    display: block;
  }
}
.u-hidden {
  visibility: hidden;
}

/* for screen reader
ーーーーーーーーーーーーーーーーーーーーーーーー*/
.u-visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

/* for keybord
ーーーーーーーーーーーーーーーーーーーーーーーー*/
.skipLink {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.skipLink:active, .skipLink:focus {
  position: static;
  opacity: 1;
  overflow: visible;
  height: auto;
  font-size: inherit;
}

/*------------------------------------------------------------------------
// Animation
  └ animation
------------------------------------------------------------------------*/
/*----------------------------------------
	Animation
----------------------------------------*/
/*Face Effects
------------------------------*/
.js-effect {
  opacity: 0;
  -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
  transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
}
.js-effect._show {
  opacity: 1;
}
.js-effect.a-fadeInUp {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.js-effect.a-fadeInUp._show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.js-effect.a-fadeInRtoL {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}
.js-effect.a-fadeInRtoL._show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.js-effect.a-fadeInLtoR {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}
.js-effect.a-fadeInLtoR._show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*delay set
------------------------------*/
[data-delay="0.1s"] {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

[data-delay="0.2s"] {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

[data-delay="0.3s"] {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

[data-delay="0.4s"] {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-delay="0.5s"] {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

[data-delay="0.6s"] {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-delay="0.7s"] {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-delay="0.8s"] {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

[data-delay="0.9s"] {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

[data-delay="1s"] {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

[data-delay="1.1s"] {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

[data-delay="1.2s"] {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

[data-delay="1.3s"] {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

[data-delay="1.4s"] {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

[data-delay="1.5s"] {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

[data-delay="1.6s"] {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

[data-delay="1.7s"] {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

[data-delay="1.8s"] {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

[data-delay="1.9s"] {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

[data-delay="2.0s"] {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

/*animation type
------------------------------*/
/*ポヨン*/
@-webkit-keyframes jello {
  0%, 11.1%, to {
    opacity: 0;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  22.2% {
    opacity: 1;
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    opacity: 1;
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    opacity: 1;
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    opacity: 1;
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    opacity: 1;
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    opacity: 1;
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    opacity: 1;
  }
}
@keyframes jello {
  0%, 11.1%, to {
    opacity: 0;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  22.2% {
    opacity: 1;
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    opacity: 1;
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    opacity: 1;
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    opacity: 1;
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    opacity: 1;
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    opacity: 1;
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    opacity: 1;
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    opacity: 1;
  }
}
/*プルッと出てくる*/
@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
/*ふわっと大きくなる*/
@-webkit-keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    opacity: 1;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/*くるくる回る*/
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}
/*------------------------------------------------------------------------
// Print Style
------------------------------------------------------------------------*/
@media print {
  .js-effect {
    opacity: 1 !important;
  }
}
/*------------------------------------------------------------------------
// Profile Page
------------------------------------------------------------------------*/
.profile {
  margin-block: 80px;
  display: grid;
  grid-template-columns: 53.57% 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "ph header" "body body";
  gap: 8.75vw 5.625vw;
}
@media screen and (min-width: 640px), print {
  .profile {
    grid-template-columns: 43.26% 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "ph header" "ph body";
    gap: 46px;
  }
}

.profile__ph {
  grid-area: ph;
}

.profile__header {
  grid-area: header;
}

.profile__body {
  grid-area: body;
}

.profile__title {
  font-size: 3.4375vw;
}
@media screen and (min-width: 640px), print {
  .profile__title {
    font-size: 18px;
  }
}

.profile__name {
  margin-top: 4.375vw;
  font-size: 5vw;
}
.profile__name rt,
.profile__name rp {
  font-size: 0.5em;
}
@media screen and (min-width: 640px), print {
  .profile__name {
    margin-top: 32px;
    font-size: 28px;
  }
}

.profile__body {
  display: grid;
  gap: 1em;
  font-size: 3.75vw;
}
@media screen and (min-width: 640px), print {
  .profile__body {
    font-size: 18px;
  }
}/*# sourceMappingURL=common.css.map */