﻿@charset "UTF-8";
/*//////////////////////////////////////////////////

Title : LP CSS

//////////////////////////////////////////////////*/

/* ========================================================
                      * Layout style *
========================================================= */
:root {
  --txt-min: "the-seasons", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

#Wrap,
.contents {
  width: 100%;
  max-width: 100%;
}

.share-txt span {
}

#share {
  z-index: 100 !important;
}

/* ===================
  　modal
=================== */

.lp_contents .modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.lp_contents .modal__bg{
    background: rgba(0,0,0,0.3);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.lp_contents .modal__content{
    /*background: #fff;*/
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1001;
    max-height: 90svh;
    overflow-y: scroll;
}


/* ===================
  Canvas
=================== */

html,
body {
  height: 100%;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

body.o-start #canvas {
  cursor: none;
}

.dg, .ac {
    display: none;
}

/* ===================
  LP Contents
=================== */

.lp_contents {
  position: relative;
  margin: 0 auto;
  padding: 0;
  letter-spacing: 0;
  color: #000;
  font-size: 1.4rem;
  background-color: #FFFBF2;
}

#FooterWrap {
  position: relative;
  z-index: inherit;
}

.lp_contents *,
.lp_contents *:before,
.lp_contents *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.lp_contents ul,
.lp_contents li {
  list-style: none;
}

.lp_contents a:hover {
}

.lp_contents img {
  max-width: 100%;
}

.lp_contents sup {
  color: #888;
}

.lp_contents a,
.lp_contents a:before,
.lp_contents a:after,
.lp_contents a img {
  transition: opacity .3s ease-in-out,
    color .3s ease-in-out,
    background-color .3s ease-in-out,
    background-image .3s ease-in-out,
    border-color .3s ease-in-out,
    text-shadow .3s ease-in-out,
    text-weight .3s ease-in-out;
}

.lp_contents h1 {
  padding: 0;
}

p {
  text-align: left;
}

/* -- List -- */

.list ul {
  letter-spacing: -0.4em;
}

.list ul li {
  display: inline-block;
  letter-spacing: 0.08em;
  vertical-align: top;
}

/* ===================
  　　 General
=================== */

.lp_contents .txt_center {
  text-align: center;
}

.lp_contents .txt_bold {
  font-weight: bold;
}

.lp_contents .txt_en {
  font-family: 'Cinzel', serif;
}


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

/* ===================
  　　　Animation
=================== */

/* -- keyframes -- */

@keyframes opa0 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes opa1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opa2 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes tra1 {
  100% {
    transform: translateX(0);
  }
}

@keyframes tra2 {
  100% {
    transform: translateY(0);
  }
}

@keyframes tra3 {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes tra3_2 {
  0% {
    transform: translateY(30px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes tra4 {
  0% {
    transform: translateX(6%);
  }

  100% {
    transform: translateX(0);
  }
}


@keyframes tra5 {
  0% {
    transform: translateX(-30%);
  }

  100% {
    transform: translateX(0);
  }
}


@keyframes tra6 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}


.ef {
  opacity: 0;
}

.ef.effect {
  animation: opa1 1s ease-in-out 0s 1 forwards;
}

.ef2 {
  opacity: 0;
}

.ef2.effect {
  animation: opa2 1.5s ease-in-out 0s 1 forwards;
}

.ef-top {
  opacity: 0;
  transform: translateY(50px);
}

.ef-top.effect {
  animation: opa1 1.1s ease-in-out 0s 1 forwards, tra3 1s ease-in-out 0s 1 forwards;
}

.ef-top2 {
  opacity: 0;
  transform: translateY(40px);
}

.ef-top2.effect {
  animation: opa1 1.1s ease-in-out 0s 1 forwards, tra3_2 1s ease-in-out 0s 1 forwards;
}

.ef-right {
  opacity: 0;
  transform: translateX(6%);
}

.ef-right.effect {
  animation: opa1 1.2s ease-in-out 0s 1 forwards, tra4 1.2s ease-in-out 0s 1 forwards;
}

.ef-left {
  opacity: 0;
}

.ef-left.effect {
  animation: opa1 1.5s ease-in-out 0s 1 forwards, tra5 1.5s ease-in-out 0s 1 forwards;
}

.ef-lg.effect {
  animation: opa1 1.5s ease-in-out 0s 1 forwards, tra6 1.5s ease-in-out 0s 1 forwards;
}

/* ===================
  　Section Common
=================== */

.section .inner {
  width: 110rem;
  max-width: 100%;
  margin: auto;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.sec_inner {
  width: 102rem;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.ttl_main {
  margin: 0 0 2.5rem;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.05rem;
  line-height: 1.25;
  color: #053931;
  text-align: center;
  font-weight: bold;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ===================
     Text Setting
=================== */

.txt_cont {
  text-align: center;
  line-height: 1.7;
}

/* ===================
  Button Setting
=================== */

.btn_wrap {
  text-align: center;
}

/* ===================
  　　　INTRO
=================== */

.intro_section {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
}

/* -- MV Area -- */
.mv_area {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  height: calc(100dvh - 14.5rem);
  font-family: var(--txt-min);
  background: #FFFBF2;
  line-height: 0;
}

/* -- MV Img / Logo -- */
.mv_area .mv_img,
.mv_area .mv_logo_wrap {
  width: 50%;
}

/* -- MV Img -- */
.mv_area .mv_img {
  overflow: hidden;
}

.mv_area .mv_img img {
  width: 100%;
  height: calc(100dvh - 14.5rem);
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.6s cubic-bezier(0, 0.52, 0.39, 0.85);
}

.mv_area.effect .mv_img img {
  transform: scale(1);
}

/* -- MV Logo -- */
.mv_area .mv_logo_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mv_area .mv_logo {
  margin-bottom: 4rem;
}

.mv_area .mv_logo .txt_line {
  display: block;
  line-height: 1;
  overflow: hidden;
  height: 6rem;
}

.mv_area .mv_logo .txt_line img {
  transition: transform 1.1s cubic-bezier(0, 0.58, 0.38, 0.81);
  transform: translateY(8rem);
}

.mv_area.effect .mv_logo .txt_line img {
  transform: translateY(0) !important;
}

/* -- MV Title -- */
.mv_area .mv_ttl {
  display: flex;
  font-size: 6rem;
  font-weight: 200;
  color: #163832;
  letter-spacing: 0.02em;
}

.mv_area .mv_ttl .txt_line span {
  display: block;
  line-height: 1;
}

.mv_area .mv_ttl .txt_line {
  overflow: hidden;
  height: 6rem;
}

.mv_area .mv_ttl .txt_line span {
  transition: transform 1.1s cubic-bezier(0, 0.58, 0.38, 0.81) .2s;
  transform: translateY(8rem);
}

.mv_area.effect .mv_ttl .txt_line span {
  transform: translateY(0) !important;
}

/* -- MV Scroll -- */
.mv_area .mv_scroll {
  position: absolute;
  left: 25%;
  bottom: 3rem;
  width: 4.6rem;
  height: 9.55rem;
  margin-left: -2.8rem;
  font-size: 1.2rem;
}

.mv_area .mv_scroll.effect {
  animation-delay: 1s;
}

.mv_area .mv_scroll .txt_scroll {
  position: absolute;
  left: 0;
  bottom: 0;
}

.bar_scroll {
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  width: 1px;
  height: 6rem;
  background: #ddd;
  content: "";
}

.bar_scroll::after {
  background: #163832;
  display: inline-block;
  height: 50%;
  position: absolute;
  top: 0px;
  width: 100%;
  animation: scroll 3s infinite 0s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  content: "";
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

/* -- Message Area -- */
.message_area {
  overflow: hidden;
  padding-top: 15.6rem;
  background: rgb(239,232,219);
  background: linear-gradient(180deg, rgba(239,232,219,1) 0%, rgba(217,210,194,1) 100%);
  text-align: center;
}

.message_area .message_ttl {
  margin-bottom: 6rem;
  font-family: var(--txt-min);
  font-size: 3rem;
  font-weight: 200;
  color: #163832;
  letter-spacing: 0;
  line-height: 2;
}

.message_area .message_ttl span {
  display: block;
  line-height: 1;
}

.message_area .message_ttl .txt_line {
  overflow: hidden;
  height: 3rem;
  margin-bottom: 2.5rem;
}

.message_area .message_ttl .txt_line span {
  transition: transform 1.2s cubic-bezier(0, 0.58, 0.38, 0.81);
  transform: translateY(8rem);
}

.message_area .message_ttl.effect .txt_line span {
  transform: translateY(0);
}

.message_area .message_ttl.effect .txt_line:nth-child(1) span {
  transition-delay: .1s;
}

.message_area .message_ttl.effect .txt_line:nth-child(2) span {
  transition-delay: .4s;
}

.message_area .message_cont {
  animation-delay: .6s;
  animation-timing-function: cubic-bezier(0.44, 0.56, 0.42, 0.83);
  margin-bottom: 9.6rem;
  text-align: center;
  line-height: 2.2;
}

/* -- Message Slide Area -- */

.message_area .message_slide {
  transition: opacity 1.6s ease-in-out .2s, right 2s ease-in-out 0s;
  position: relative;
  display: flex;
  left: -100rem;
  margin-bottom: -2.8rem;
  opacity: 0;
  font-size: 12rem;
  font-family: var(--txt-min);
  font-weight: 200;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.01em;
  gap: 4rem;
}

.message_area .message_slide.effect {
  opacity: 0.4;
}

.message_area .message_slide span {
  position: relative;
  left: -28rem;
  display: block;
}


/* ===================
  　　　HISTORY
=================== */

.history_section {
  position: relative;
  z-index: 0;
  padding-bottom: 12rem;
}

.history_section::before {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0.15;
  background: url(../img/mv.jpg) no-repeat center;
  background-size: cover;
  filter: blur(3px);
  z-index: -1;
  content: "";
}

.history_section .history_list {
  position: relative;
  margin: 12rem 0 10rem;
}

.history_section .history_list::before {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  background: #000;
  content: "";
}

.history_section .history_list li {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
  padding: 0 3.95rem;
}

.history_section .history_list li:nth-child(2n) {
  margin-left: 0;
  margin-right: auto;
}

.history_section .history_list .history_date {
  position: relative;
  margin-bottom: 4.5rem;
  padding-bottom: 2.2rem;
  font-family: var(--txt-min);
  font-size: 5.6rem;
  font-weight: 200;
  color: #163832;
  letter-spacing: 0;
  line-height: 1;
  text-align: left;
}

.history_section .history_list li:nth-child(2n) .history_date {
  text-align: right;
}

.history_section .history_list .history_date::before {
  position: absolute;
  left: -4.6rem;
  bottom: -0.6rem;
  z-index: 2;
  width: 1.5rem;
  height: 1.5rem;
  background: #163832;
  border-radius: 100%;
  content: "";
}

/* PC用*/
@media (min-width: 769px) {
  .history_section .history_list li:nth-child(2n) .history_date::before {
    left: auto;
    right: -4.8rem;
  }
}

.history_section .history_list .history_date::after {
  transition: right 1s ease-in-out;
  position: absolute;
  left: -3.95rem;
  right: 100%;
  bottom: 0;
  border-bottom: 1px solid #000;
  content: "";
}

.history_section .history_list .effect .history_date::after {
  right: 0;
}
/* PC用*/
@media (min-width: 769px) {

  .history_section .history_list li:nth-child(2n) .history_date::after {
    transition: left 1s ease-in-out;
    right: -4.2rem;
    left: 100%;
  }

  .history_section .history_list li:nth-child(2n).effect .history_date::after {
    left: 0;
  }
}

.history_cont .history_ttl {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.history_cont .history_btn_sp {
  display: none;
}

.history_cont .history_txt {
  margin-bottom: 3rem;
  line-height: 2;
  text-align: justify;
}

.history_cont .history_img {
  margin-bottom: 6rem;
}

.history_cont .history_img:last-child {
  margin-bottom: 0;
}

/* ---- History Message ---- */

.history_message {
  font-family: var(--txt-min);
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}

.history_message span {
  display: block;
  opacity: 0;
}

.history_message.effect span {
  animation: opa1 1s ease-in-out 0s 1 forwards;
}

.history_message.effect span:nth-child(1) {
  animation-delay: 0.1s;
}

.history_message.effect span:nth-child(2) {
  animation-delay: 0.3s;
}

.history_message.effect span:nth-child(3) {
  animation-delay: 0.6s;
}

.history_message.effect span:nth-child(4) {
  animation-delay: 0.9s;
}

/* ===================
  　　　COMMENT
=================== */

.comment_section {
  position: relative;
  z-index: 1;
  background: #FFFBF2;
  padding: 12rem 0 13rem;
}

.ttl_section {
  margin-bottom: 3rem;
  font-family: var(--txt-min);
  font-size: 4rem;
  font-weight: 200;
  text-align: center;
  line-height: 1.3;
  color: #163832;
}

.comment_section .txt_cont {
  margin-bottom: 6rem;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
}

.comment_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem 9rem;
}

.comment_list li {
  width: 21rem;
  opacity: 0;
}

.comment_list.effect li {
  animation: opa1 1s ease-in-out 0s 1 forwards, tra3 1s ease-in-out 0s 1 forwards;
}

.comment_list.effect li:nth-child(1) {
  animation-delay: .1s,.1s;
}

.comment_list.effect li:nth-child(2) {
  animation-delay: .2s,.2s;
}

.comment_list.effect li:nth-child(3) {
  animation-delay: .3s,.3s;
}

.comment_list.effect li:nth-child(4) {
  animation-delay: .4s,.4s;
}

.comment_list.effect li:nth-child(5) {
  animation-delay: .5s,.5s;
}

.comment_list.effect li:nth-child(6) {
  animation-delay: .6s,.6s;
}

.comment_list .comment_thumb {
  position: relative;
  width: 22rem;
  height: 22rem;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: .55rem;
  border-radius: 100%;
}

.comment_list .comment_thumb img {
  border-radius: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.comment_list .comment_thumb::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #EDE8DE;
  border-radius: 100%;
  content: "";
}

.comment_list .comment_name {
  margin-bottom: 1.7rem;
  font-size: 1.8rem;
  text-align: center;
}

.comment_list .comment_btn {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 3.6rem;
  margin: auto;
  border: 1px solid #707070;
  border-radius: 20rem;
  text-align: center;
}

.comment_wrap{
  width: 80rem;
  background-color: #FFFBF2;
  padding: 6rem;
}

.comment_wrap dt{
  font-family: var(--txt-min);
  padding-left: 2.6rem;
  border-left: 0.6rem solid #163832;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.comment_wrap dt:nth-of-type(n + 2){
  margin-top: 4rem;
}

.comment_wrap dd,
.comment_wrap dd p{
  font-size: 1.5rem;
  line-height: 2;
}

.comment_wrap .item_blk:not(:last-child){
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eaeaea;
}

.comment_wrap .item_blk a{
  color: #163832;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.comment_wrap .item_blk img{
  width: 10rem;
}

.comment_wrap .item_blk .item_name{
  width: 56rem;
}

.comment_wrap .number{
  margin-right: 0.6rem;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: #163832;
  font-family: var(--txt-min);
  font-size: 1.8rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFFBF2;
}

.comment_wrap .comment_thumb{
  float: right;
}

.lp_contents .close_btn{
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  border: 1px solid #163832;
  top: 2rem;
  right: 2rem;
}

.lp_contents .close_btn:before,
.lp_contents .close_btn:after{
  content: '';
  width: 1rem;
  height: 1px;
  background-color: #163832;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.lp_contents .close_btn:after{
  transform: rotate(-45deg);
}

.fixed_txt {
  transform: rotate(90deg);
  position: fixed;
  top: 50%;
  z-index: 10;
  font-family: var(--txt-min);
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: #163832;
}

.fixed_left {
  left: -10rem;
}

.fixed_right {
  right: -10.5rem;
}

/*=======================================
                    PC
========================================*/


@media screen and (min-width: 768px)  {
  .sp_only {
    display: none;
  }

  #Wrap,
  .wrapBottom,
  .wrapTop,
  #Contents {
    width: 100%;
  }


  .lp_contents {
    overflow: hidden;
  }

  .acc_cont {
    display: block !important;
  }

  #Wrap {
    padding-top: 6.7rem;
  }
}



/* only tablet */
@media screen and (min-width: 768px) and (max-width: 1200px) {


}


/*=======================================
                    SP
========================================*/

/* only SP */
@media only screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }

  /* ===================
    LP Contents
  =================== */

  .lp_contents {
    overflow: hidden;
    padding-top: 0;
    font-size: calc(14 * (100vw / 390));
    letter-spacing: 0.02em;
  }

  /* ===================
    　Section Common
  =================== */

  .section .inner {
    width: 100%;
  }

  .contents {
    padding-top: 0;
  }

  .contents_inner .section {
    padding-right: 0;
    padding-left: 0;
  }

  .sec_inner {
    width: 100%;
  }

  /* ===================
         ANIME
  =================== */

  @keyframes tra3 {
    0% {
      transform: translateY(50px);
    }

    100% {
      transform: translateY(0);
    }
  }

  /* ===================
    Button Setting
  =================== */

  .btn_wrap {
  }

  /* ===================
    　　　INTRO
  =================== */

  .intro_section {
    padding-top: calc(0 * 100vw/430);
  }

  .mv_area {
    display: block;
    height: auto;
  }

  .mv_area .mv_img,
  .mv_area .mv_logo_wrap {
    width: 100%;
  }

  .mv_area .mv_img {
    display: block;
    height: calc(500 * 100vw/430);
  }

  .mv_area .mv_img img {
    height: auto;
  }

  .mv_area .mv_logo_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: calc(40 * 100vw/430);
    padding-bottom: calc(10 * 100vw/430);
  }

  .mv_area .mv_logo {
    width: calc(180 * 100vw/430);
    margin-bottom: calc(20 * 100vw/430);
  }

  .mv_area .mv_logo .txt_line {
    height: calc(40 * 100vw/430);
  }

  .mv_area .mv_logo .txt_line img {
    transform: translateY(20rem);
  }

  .mv_area .mv_ttl {
    margin-bottom: calc(45 * 100vw/430);
    font-size: calc(45 * 100vw/430);
  }

  .mv_area .mv_ttl .txt_line {
    height: calc(44 * 100vw/430);
  }

  .mv_area .mv_ttl .txt_line span {
    transform: translateY(20rem);
  }

  .mv_area .mv_txt {
    font-family: var(--txt-min);
    font-size: calc(12 * 100vw/430);
  }

  .mv_area .mv_txt_top {
    position: absolute;
    top: calc(10 * 100vw/430);
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    color: #fff;
  }

  .mv_area .mv_scroll {
    display: none;
  }

  .message_area {
    padding-top: calc(80 * 100vw/430);
  }

  .message_area .message_ttl {
    margin-bottom: calc(40 * 100vw/430);
    font-size: calc(22 * 100vw/430);
  }

  .message_area .message_ttl .txt_line {
    height: calc(22 * 100vw/430);
    margin-bottom: calc(20 * 100vw/430);
  }

  .message_area .message_cont {
    margin-bottom: calc(34 * 100vw/430);
    font-size: calc(14 * 100vw/430);
    line-height: 2.4;
  }

  .message_area .message_slide {
    left: calc(-1000 * 100vw/430);
    margin-bottom: calc(-20 * 100vw/430);
    opacity: 0.4;
    font-size: calc(72 * 100vw/430);
  }

  .message_area .message_slide span {
  }

  /* ===================
    　　　HISTORY
  =================== */

  .history_section {
    padding-bottom: calc(80 * 100vw/430);
  }

  .history_section::before {
    background-image: url(../img/mv_sp.jpg);
  }

  .history_section .history_list {
    margin: calc(78 * 100vw/430) 0 calc(60 * 100vw/430);
  }

  .history_section .history_list::before {
    left: calc(20 * 100vw/430);
  }

  .history_section .history_list li {
    width: auto;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: calc(50 * 100vw/430);
    padding: 0 calc(19 * 100vw/430) 0 calc(46 * 100vw/430);
  }

  .history_section .history_list li:nth-child(2n) {
    margin-left: 0;
    margin-right: 0;
  }

  .history_section .history_list .history_date {
    margin-bottom: calc(30 * 100vw/430);
    padding-bottom: calc(18 * 100vw/430);
    font-size: calc(48 * 100vw/430);
  }

  .history_section .history_list li:nth-child(2n) .history_date {
    text-align: left;
  }

  .history_section .history_list .history_date::before {
    left: calc(-31 * 100vw/430);
    bottom: calc(-5 * 100vw/430);
    width: calc(12 * 100vw/430);
    height: calc(12 * 100vw/430);
  }

  .history_section .history_list .history_date::after {
    left: calc(-25 * 100vw/430);
  }

  .history_cont .history_ttl {
    margin-bottom: calc(12 * 100vw/430);
    font-size: calc(16 * 100vw/430);
  }

  .history_cont .history_btn_sp {
    display: block;
  }

  .history_cont .history_btn_sp span {
    position: relative;
    display: inline-block;
    padding: 0 calc(16 * 100vw/430) calc(0 * 100vw/430) 0;
    border-bottom: 1px solid #707070;
    line-height: 1.3;
    font-size: calc(14 * 100vw/430);
  }

  .history_cont .history_btn_sp span::before {
    position: absolute;
    top: 37%;
    right: calc(4 * 100vw/430);
    width: calc(7 * 100vw/430);
    height: calc(7 * 100vw/430);
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg) translateY(-50%);
    content: "";
  }

  .history_cont .history_btn_sp.active {
    display: none;
  }

  .history_cont .history_btn_sp.active span::before {
    top: 30%;
    transform: rotate(-134deg) translateY(-50%);
    right: calc(-1 * 100vw/430);
  }

  .history_cont .history_txt {
    display: none;
    font-size: calc(14 * 100vw/430);
  }

  .history_cont .history_img {
    margin-top: calc(25 * 100vw/430);
    margin-bottom: calc(50 * 100vw/430);
  }

  .history_cont .history_img:last-child {
    margin-bottom: 0;
  }

  /* ---- History Message ---- */

  .history_message {
    font-size: calc(18 * 100vw/430);
  }

  /* ===================
    　　　COMMENT
  =================== */

  .comment_section {
    padding: calc(74 * 100vw/430) 0 calc(14 * 100vw/430);
  }

  .ttl_section {
    margin-bottom: calc(20 * 100vw/430);
    font-size: calc(27 * 100vw/430);
  }

  .comment_section .txt_cont {
    margin-bottom: calc(35 * 100vw/430);
    font-size: calc(16 * 100vw/430);
  }

  .comment_list {
    margin-bottom: calc(10 * 100vw/430);
  }

  .comment_list ul {
    gap: calc(36 * 100vw/430) calc(20 * 100vw/430);
  }

  .comment_list li {
    width: calc(170 * 100vw/430);
  }

  .comment_list .comment_thumb {
    width: calc(170 * 100vw/430);
    height: calc(170 * 100vw/430);
    margin-bottom: calc(16 * 100vw/430);
    padding: calc(5 * 100vw/430);
  }

  .comment_list .comment_thumb img {
  }

  .comment_list .comment_name {
    margin-bottom: calc(14 * 100vw/430);
    font-size: calc(18 * 100vw/430);
  }

  .comment_list .comment_btn {
    width: calc(140 * 100vw/430);
    height: calc(32 * 100vw/430);
    font-size: calc(13 * 100vw/430);
  }

  .comment_wrap{
    width: calc(390 * 100vw/430);
    padding: calc(40 * 100vw/430) calc(25 * 100vw/430);
  }

  .comment_wrap dt{
    padding-left: calc(15 * 100vw/430);
    border-left: calc(4 * 100vw/430) solid #163832;
    font-size: calc(24 * 100vw/430);
    margin-bottom: calc(15 * 100vw/430);
  }

  .comment_wrap dt:nth-of-type(n + 2){
    margin-top: calc(30 * 100vw/430);
  }

  .comment_wrap dd,
  .comment_wrap dd p{
    font-size: calc(14 * 100vw/430);
  }

  .comment_wrap .item_blk:not(:last-child){
    margin-bottom: calc(20 * 100vw/430);
    padding-bottom: calc(20 * 100vw/430);
  }

  .comment_wrap .item_blk a{
    gap: calc(15 * 100vw/430);
    margin-bottom: calc(15 * 100vw/430);
  }

  .comment_wrap .item_blk img{
    width: calc(100 * 100vw/430);
  }

  .comment_wrap .item_blk .item_name{
    width: calc(225 * 100vw/430);
  }

  .comment_wrap .number{
    margin-right: calc(6 * 100vw/430);
    width: calc(30 * 100vw/430);
    height: calc(30 * 100vw/430);
    font-size: calc(18 * 100vw/430);
    position: absolute;
    top: calc(-5 * 100vw/430);
    left: calc(-5 * 100vw/430);
  }

  .comment_wrap .comment_thumb{
    float: none;
    margin: 0 auto calc(30 * 100vw/430);
  }

  .lp_contents .close_btn{
    width: calc(25 * 100vw/430);
    height: calc(25 * 100vw/430);
    top: calc(15 * 100vw/430);
    right: calc(15 * 100vw/430);
  }

  .lp_contents .close_btn:before,
  .lp_contents .close_btn:after{
    width: calc(15 * 100vw/430);
  }

  .fixed_txt {
    display: none !important;
  }


}
