@charset "UTF-8";

/* 全体的な設定 */
html {
    font-size: 10px; /* 1rem = 10px */
    height: 100%;
    visibility: hidden;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
  }
html.wf-active {
  visibility: visible;
}
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: .4rem;
    color: #fff;
    background-color: #5F5F5F;
    margin: 0;
    padding: 0;
    }
/* 見出し */
    h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    }
    .font-r {
      font-family: roboto-condensed, sans-serif;
      font-weight: 400;
      font-style: italic;
    }
    .font-rb {
      font-family: roboto-condensed, sans-serif;
      font-weight: 700;
      font-style: italic;
    }
    .font-rbb {
      font-family: roboto, sans-serif;
      font-weight: 900;
      font-style: italic;
    }
    .font-b {
      font-family: roboto-condensed, sans-serif;
      font-weight: 700;
      font-style: normal;
    }
    .font-h8 {
      font-family: "Noto Sans JP", sans-serif;
      font-optical-sizing: auto;
      font-weight: 900;
      font-style: normal;
    }
/* 段落 */
    p {
    margin-bottom: 1rem;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
@media screen and (max-width: 1100px) {
  body,
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  body,
  input,
  select,
  textarea {
    font-size: 14px;
  }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #5F5F5F;
}
.p-header__title {
  max-width: 300px;
  margin-bottom: 0;
}
.p-header__hamburger {
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #E6BB35;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
.p-header__nav {
  display: flex;
  z-index: 10;
  position: static;
  top: 0;
  right: auto;
  align-items: center;
  justify-content: center;
  height: inherit;
  background: transparent;
  opacity: 1;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
  background-color: #5F5F5F;
  column-gap: 20px;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 0 0 10px;
}
.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
}
.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #5e5e5e;
  flex-direction: column;
}
.p-nav__inner {
  display: flex;
}
.p-nav__list {
  display: block;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 30px;
}
.p-nav__item {
  position: relative;
  width: auto;
}
.p-nav__link {
  color: #fff;
  display: block;
  width: 100%;
  font-size: 16px;
}
.header-line {
  background-color: #E6BB35;
  position: relative;
  transition: color 0.3s ease;
}
.header-line:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.header-line::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.3s ease;
  transition-property: transform;
}
.header-line a {
  display: block;
  width: 100%;
  height: 100%;
}
.header-line p {
  color: #000;
  font-size: 28px;
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 40px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-line:hover p {
  color: #E6BB35;
}
.header-line p span {
  font-size: 38px;
}
@media screen and (max-width: 1500px) {
  .p-header__nav {
    column-gap: 20px;
  }
  .p-nav__list {
    column-gap: 20px;
  }
  .header-line p {
    padding: 10px 20px;
    font-size: 26px;
  }
  .header-line p span {
    font-size: 36px;
  }
}
@media screen and (max-width: 1400px) {
  .p-header__title {
    max-width: 260px;
  }
  .header-line p {
    font-size: 26px;
    padding: 10px 15px;
  }
  .header-line p span {
    font-size: 32px;
  }
}
@media screen and (max-width: 1300px) {
  .p-header__title {
    max-width: 230px;
  }
  .p-header__nav {
    column-gap: 10px;
  }
  .p-nav__list {
    column-gap: 15px;
  }
  .p-nav__item {
    font-size: 16px;
  }
  .p-nav__link {
    font-size: 15px;
  }
  .header-line p {
    font-size: 18px;
    letter-spacing: 2px;
    padding: 10px 16px;
  }
  .header-line p span {
    font-size: 30px;
  }
}
@media screen and (max-width: 1150px) {
    .p-header__title {
      max-width: 190px;
    }
    .p-header__nav {
    column-gap: 10px;
    }
    .p-nav__item {
    font-size: 14px;
    }
    .p-nav__list {
    column-gap: 10px;
   }
   .p-nav__link {
    font-size: 12px;
   }
    .header-line p {
      font-size: 14px;
      padding: 10px 8px;
    }
    .header-line p span {
      font-size: 24px;
    }
}
@media screen and (max-width: 960px) {
  .p-header__title {
    position: relative;
    z-index: 100;
  }
  .p-header__hamburger {
    display: block;
  }
  .p-header__inner {
    padding: 10px;
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
  }
  .p-header__nav {
    position: absolute;
    opacity: 0; 
    height: 100vh;
    width: 100%;
    right: -100%;
    row-gap: 30px;
    display: flex;
    flex-direction: column;
  }
  .p-nav__list {
    padding-right: 20px;
    padding-left: 20px;
    display: block;
  }
  .p-nav__item {
    font-size: 20px;
    margin-bottom: 30px;
    padding: 5px 5px 5px 20px;
    border-left: 5px solid #E6BB35;
  }
  .p-nav__link {
    font-size: 18px;
   }
  .header-line {
    width: 260px;
    text-align: center;
  }
  .header-line p {
    font-size: 18px;
  }
  .header-line p span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
    .p-header__title {
        max-width: 190px;
    }
    .p-nav__item {
        font-size: 16px;
    }
    .p-nav__link {
    font-size: 16px;
    }
}


/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 2000px;
  background-image: url(../images/top/shapes02.png);
  background-repeat: no-repeat;
  background-position: 45%;
  z-index: -1;
}
footer .logo-area {
  max-width: 360px;
  margin: 0 auto 60px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  margin-bottom: 60px;
}
.footer-nav ul li a {
  font-size: 16px;
  font-weight: bold;
}
footer small {
  font-size: 14px;
}
@media screen and (max-width: 960px) {
footer::before {
    height: 1700px;
}
footer .logo-area {
    max-width: 280px;
    margin: 0 auto 40px;
}
.footer-nav ul {
  column-gap: 3%;
  margin-bottom: 40px;
}
.footer-nav ul li a {
    font-size: 14px;
}
footer small {
    font-size: 10px;
    letter-spacing: 2px;
}
}
@media screen and (max-width: 767px) {
    footer::before {
        height: 1600px;
    }
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2,2fr);
    row-gap: 20px;
    max-width: 80%;
    margin: 0 auto 30px;
  }
  }
@media screen and (max-width: 600px) {
    footer::before {
        height: 1900px;
    }
}
@media screen and (max-width: 540px) {
    footer .logo-area {
        max-width: 230px;
    }
    .footer-nav ul {
    row-gap: 10px;
    max-width: 100%;
    }
    .footer-nav ul li a {
    font-size: 12px;
    }
  }
  @media screen and (max-width: 390px) {
    footer::before {
        height: 1700px;
    }
    .footer-nav ul {
      display: flex;
      flex-direction: column;
    }
  }

/*---------------------*/
/* 全体共通 section */
.section {
  padding-top: 40px;
  margin-bottom: 120px;
}
.section-top {
  margin-top: 73px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section2-inner {
  position: relative;
  padding-left: 12%;
}
.section2-inner-reverse {
  padding-left: inherit;
  padding-right: 12%;
}
.section2-box {
  background-color: #5F5F5F;
  border: 10px solid #DFAE18;
  border-right: none; 
  padding-top: 100px;
  padding-right: 12%;
  padding-left: 30px;
  position: relative;
}
.section2-inner-reverse .section2-box {
  border-right: 10px solid #DFAE18;
  border-left: none;
  padding-right: 30px;
  padding-left: 12%;
}
.section2-inner .content {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #5F5F5F;
}
@media screen and (max-width: 1250px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 960px) {
.section {
  padding-top: 40px;
  margin-bottom: 100px;
}
.section2-box {
  padding-top: 60px;
}
}
@media screen and (max-width: 767px) {
  .section {
  padding-top: 30px;
  margin-bottom: 80px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .section-top {
    margin-top: 61px;
  }
}
@media screen and (max-width: 600px) {
.section2-box {
  padding-top: 40px;
}
}

/* 共通　タイトル */
.title-area {
  position: absolute;
  top: -35px;
  left: 40%;
  transform: translateX(-50%);
  padding: 10px 40px 0 120px;
}
.title-area::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 52%;
  width: 100%;
  height: 12px;
  background-color: #5F5F5F;
  z-index: -1;
}
.title-area h2 {
  position: relative;
  display: inline-block;
  z-index: 2;
  color: #E6BB35;
  font-size: 32px;
  padding: 20px 20px 0 20px;
  width: max-content;
}
.title-area h2::before,
.title-area h2::after {
  content: "";
  position: absolute;
  top: 60%;
  width: 24px;
  height: 4px;
  background-color: #E6BB35;
}
.title-area h2::before {
  left: -15px;
}
.title-area h2::after {
  right: -15px;
}
.title-area h2 span {
  position: absolute;
  top: 0%;
  left: 42%;
  transform: translate(-50%, -50%);
  font-size: 90px;
  color: #787878;
  white-space: nowrap;
  z-index: -1;
  font-family: roboto-condensed, sans-serif;
  font-weight: 700;
  font-style: italic;
  padding: 0 20px;
}
@media screen and (max-width: 1200px) {
  .title-area {
    padding: 10px 20px 0 90px;
  }
  .title-area::after {
    bottom: 45%;
  }
  .title-area h2 span {
    font-size: 70px;
  }
  .title-area h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 960px) {
    .title-area {
      padding: 10px 30px 0 70px;
    }
    .title-area::after {
      bottom: 37%;
    }
    .title-area h2 {
      font-size: 20px;
    }
    .title-area h2 span {
        font-size: 60px;
      top: 10%;
    }
    .title-area h2::before, .title-area h2::after {
      top: 70%;
    }
  }
  @media screen and (max-width: 767px) {
    .title-area {
      padding: 10px 30px 0 40px;
    }
    .title-area h2 span {
      font-size: 46px;
      top: 20%;
    }
  }
    @media screen and (max-width: 600px) {
    .title-area::after {
        bottom: 31%;
    }
    .title-area h2 {
      font-size: 16px;
    }
    .title-area h2 span {
      font-size: 34px;
      top: 20%;
    }
  }
  @media screen and (max-width: 540px) {
    .section2-box {
      border: 7px solid #DFAE18;
      border-right: none;
    }
    .title-area {
        padding: 10px 30px 0 30px;
        left: 50%;
    }
    .title-area::after {
      bottom: 34%;
    }
    .title-area h2 {
      font-size: 18px;
    }
    .title-area h2::before, .title-area h2::after {
      width: 20px;
    }
  }
  @media screen and (max-width: 430px) {
      .title-area h2 span {
        font-size: 30px;
        top: 20%;
    }
    .title-area::after {
      bottom: 45%;
    }
    .title-area h2::before, .title-area h2::after {
      height: 4px;
    }
  }
  @media screen and (max-width: 390px) {
    .title-area::after {
      bottom: 37%;
    }
    .title-area h2 {
        font-size: 14px;
    }
      .title-area h2 span {
        font-size: 24px;
        top: 20%;
    }
  }

/* 共通 cta */
.cta h2 {
  font-size: 50px;
  color: #E6BB35;
  text-align: center;
  margin-bottom: 30px;
}
.cta h2 span {
  font-size: 65px;
}
.cta h2 br {
  display: none;
}
.cta .triangle-area {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h3 {
  font-size: 45px;
  color: #000;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 30px;
}
.cta .triangle-area::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 170px;
    background-image: url(../images/common/triangle.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.cta .banner01,.cta .banner02 {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 50px;
  padding: 0 20px;
}
.cta .banner01,.cta .banner02 {
  padding-top: 30px;
  margin-bottom: 30px;
}
.cta .banner01 li:hover,.cta .banner02 li:hover {
  background-position: right center;
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: ripple 1.5s infinite;
}
@keyframes ripple {
 0% {box-shadow: 0 0 0 0 #E6BB35;}
  60% {box-shadow: 0 0 0 20px rgb(230 187 53 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(230 187 53 / 0%);}
}
@media screen and (max-width: 1300px) {
.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.cta h2 span {
    font-size: 55px;
}
.cta .triangle-area::before {
  width: 100%;
}
}
@media screen and (max-width: 1100px) {
  .cta h2 {
    font-size: 34px;
    margin-bottom: 0;
  }
  .cta h2 span {
    font-size: 46px;
  }
  .cta h3 {
    font-size: 36px;
  }
  .cta .triangle-area::before {
    top: 0;
  }
}
@media screen and (max-width: 960px) {
.cta h2 {
    font-size: 28px;
}
.cta h2 span {
    font-size: 38px;
}
.cta h3 {
    font-size: 30px;
}
.cta .triangle-area::before {
    top: -10px;
}
.cta .banner01, .cta .banner02 {
  column-gap: 3%;
}
}
@media screen and (max-width: 767px) {
.cta {
  padding-top: 0;
}
.cta h2 br {
  display: block;
}
.cta h3 {
  font-size: 24px;
}
.cta .triangle-area::before {
    top: -20px;
}
}
@media screen and (max-width: 600px) {
.cta h2 {
    font-size: 24px;
}
.cta h2 span {
    font-size: 30px;
}
.cta h3 {
  font-size: 20px;
  padding-top: 20px;
}
  .cta .triangle-area::before {
    top: -40px;
    width: 90%;
  }
.cta .banner01, .cta .banner02 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: 80%;
  margin: 10px auto 30px;
}
.cta .banner02 {
  width: 100%;
  padding: 0;
}
}
@media screen and (max-width: 540px) {
  .cta h3 {
  font-size: 17px;
  }
}
@media screen and (max-width: 430px) {
  .cta h2 {
    font-size: 18px;
  }
  .cta h2 span {
      font-size: 24px;
  }
  .cta h3 {
  font-size: 16px;
  padding-top:24px
}
.cta .banner01 {
  width: 90%;
}
}
@media screen and (max-width: 390px) {
  .cta h2 {
    letter-spacing: 1px;
  }
  .cta h3 {
  font-size: 13px;
  padding-top:20px
}
.cta .triangle-area::before {
    top: -48px;
}
.cta .banner01, .cta .banner02 {
  margin: 0 auto 30px;
}
}

/* 共通 CONTACT */
.form .title-area {
  left: 40%;
  padding: 10px 40px 0 220px;
}
.form .title-area::after {
  bottom: 70%;
}
.form .title-area h2 {
  text-align: center;
}
.form .title-area h2 span {
  left: 38%;
}
.form .section-inner {
  border: 10px solid #E6BB35;
  position: relative;
  background-color: #5F5F5F;
}
.contact-area {
  padding: 180px 30px 0;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.form01{
  margin-bottom: 80px;
}
.contact-form h3 {
  font-size: 26px;
  color: #E6BB35;
  border-bottom: 2px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.form-item {
  display: flex;
}
.form-item:first-child {
  border-top: none;
}
.form-item dt {
  width: 20%;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 10px 0 10px 10px;
}
.form-item dt p {
  margin-bottom: 0;
}
.form-item dt label {
  font-weight: initial;
  letter-spacing: 1.5px;
}
.form-item dd {
  width: 80%;
  display: flex;
  align-items: center;
  padding: 10px;
}
.form-item dd p {
  width: 100%;
  margin-bottom: 0;
}
.form-item .year-dd p {
  width: initial;
}
.form-item .year-dd .p-text {
  margin: 0 10px;
  display: table;
}
.form-control {
  padding: 10px;
  width: 100%;
  line-height: 1.2;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  color: #000;
  letter-spacing: 2px;
}
.form-item dd select {
    border: 1px solid #E6BB35;
    padding: 10px;
    -webkit-appearance: menulist;
    appearance: menulist;
}
.form-control:focus,
.form-textarea:focus,select:focus {
  border-color: #E6BB35;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-textarea {
  width: 100%;
  height: 150px;
  padding: 10px 15px;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  color: #000;
}
.submit-area {
  padding-top: 80px;
  text-align: center;
}
.submit-button {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #5F5F5F;
  background-color: #E6BB35;
  padding: 10px 15px;
  min-width: 200px;
  position: relative;
  margin: 0 auto;
  justify-content: center;
  transition: all .2s;
}
.submit-button:hover {
    opacity: .8;
}
.form .title-area h2 .br2 {
  display: none;
}
.confirm-section {
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
.form .section-inner {
  margin: 0 20px;
}
.form .title-area {
  padding: 10px 30px 0 170px;
}
.form .title-area h2 {
  letter-spacing: 2px;
}
.form .title-area::after {
    bottom: 65%;
}
}
@media screen and (max-width: 1100px) {
    .form-item dt {
    width: 25%;
    }
    .form-item dt label {
    font-size: 18px;
    }
}
@media screen and (max-width: 960px) {
    .form .title-area {
        padding: 10px 70px 0 70px;
        left: 50%;
    }
    .form .title-area h2 {
      padding: 30px 20px 0 20px;
    }
    .form .title-area h2 span {
    left: 50%;
   }
    .form .title-area::after {
        bottom: 63%;
    }
  .form01 {
    margin-bottom: 50px;
  }
  .contact-form h3 {
    font-size: 20px;
  }
    .contact-area {
    padding: 100px 0px 30px;
    margin: 0 auto 40px
    }
    .form-item dt label {
    font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
.form .title-area {
    padding: 10px 40px 0 40px;
}
.form-item dt {
    padding: 10px 0 10px 10px;
    width: 30%;
}
.form-item dd {
    padding: 10px;
}
.form-item dt label {
    font-size: 14px;
}
.form-control {
    font-size: 14px;
    padding: 10px;
}
.form-item dd select {
    font-size: 14px;
}
.form-textarea {
    font-size: 14px;
}
}
@media screen and (max-width: 600px) {
  .form .title-area::after {
      bottom: 58%;
  }
  .contact-form h3 {
    font-size: 18px;
  }
    .form-item {
        flex-direction: column;
    }
    .form-item dt,.form-item dd  {
        width: 100%;
    }
    .form-item dt {
        padding: 0px 10px 0 10px;   
    }
    .form-control {
        padding: 6px;
    }
    .form-item br {
        display: none;
    }
    .form-textarea {
        height: 260px;
    }
    .submit-area {
    padding-top: 20px;
    }
    .submit-button {
    font-size: 16px;
    min-width: 160px;
    }
    .confirm-section {
      padding-top: 70px;
    }
}
@media screen and (max-width: 540px) {
    .form .section-inner {
      border: 7px solid #E6BB35;
    }
    .form .title-area::after {
        bottom: 69%;
    }
    .form .title-area h2 .br2 {
      display: block;
    }
  }
@media screen and (max-width: 390px) {
  .contact-form h3 {
    font-size: 16px;
  }
  .contact-area {
  padding: 100px 0px 0px;
  margin-bottom: 60px;
  }
  .form .title-area {
    padding: 10px 20px 0 20px;
  }
  .form .title-area::after {
    bottom: 63%;
  }
  .form .section-inner {
    padding: 0 10px;
  }
  .form-item dd p {
    margin: 0;
  }
  .form-textarea {
    height: 200px;
  }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.3s, transform 1.3s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.3s, transform 1.3s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.3s, transform 1.3s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1.3s, transform 1.3s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}
.t-li {
  background-image: linear-gradient(#FFD500, #FFD500);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 3px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}
.t-li:hover {
  background-position: bottom left;
  background-size: 100% 3px;
}

