body {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;  
    letter-spacing: 1px;
}

/* ---------------------------------------------------------------header----------------------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  height: 5vw;
  z-index: 8000;
  background: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.45);
}

.header_icons {
    position: absolute;
    left: 9vw;
    width: 4%;
    padding: 0.5vw 0;
}

.header-flex {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.header_h1 {
    margin-right: 22vw;
}

.header_h1 img {
    position: relative;
    top: 1vw;
}


.header-tel {
    width: 7vw;
    position: relative;
    left: 0vw;
    height: 5vw;
    padding-top: 1vw;
    text-align: center;
    font-size: 0.8vw;
    color: #fff;
    font-weight: lighter;
}

.header-tel:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.button_box {
    width: 100%;
}

.button_box_2 {
    width: 100%;
    display: flex;
}

.header-tel a {
    width: 100%;
    height: 5vw;
    line-height: 1.5vw;
    text-decoration: none;
    color: #66697b;
}

.header-img img {
    width: 15vw;
    height: auto;
}

.header-line {
    width: 14vw;
    position: absolute;
    left: 10vw;
    height: 5vw;
    padding: 1.6vw 1vw 1.4vw 2vw;
    text-align: center;
    background: #849974;
    font-size: 1vw;
    color: #fff;
    font-weight: lighter;
}

.header-line:hover {
    opacity: 0.7;
    transition: 0.3s;
}


.header-line a {
    line-height: 1.5vw;
    text-decoration: none;
    color: #fff;
}

.header-trial {
    width: 7vw;
    position: absolute;
    left: 17vw;
    height: 5vw;
    padding-top: 1vw;
    text-align: center;
    background: #b82226;
    font-size: 0.8vw;
    color: #fff;
    font-weight: lighter;
}

.header-trial:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.fa-regular {
    width: 100%;
}

.header-trial a {
    width: 100%;
    height: 5vw;
    line-height: 1.5vw;
    text-decoration: none;
    color: #fff;
}

.from_text {
    width: 100%;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
    position: relative;
    top: 0.8vw;
    width: 3vw;
    height: 3vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  }
  /* ハンバーガーボタン内の線 */
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 60%;
    left: 50%;
    width: 2vw;
    height: 2px;
    background-color: black;
    transform: translateX(-50%);
}

  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  /* 展開時のデザイン */
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  /* メニューのデザイン */
  .drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }

  .drawer__nav img {
    width: 30%;
    margin: 0 auto;
  }

  h1 {
    font-size: 1.5vw;
    text-align: center;
    color: #b82226;
    font-weight: 400;
  }

  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__inner {
    position: relative;
    width: 80%;
    height: 100%;
    display: flex;
    background-color: white;
    padding: 4rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
}

.drawer__nav__menu {
    width: 50%;
    list-style: none;
    padding-left: 0;
}

.recruit_box {
    width: 50%;
}

.recruit_box a img{
    width: 100%;
}

.drawer__nav__link {
    display: block;
    color: black;
    text-decoration: none;
    padding: 1rem 1rem;
    border-bottom: solid 1px lightgray;
}

.drawer__nav__link2 {
    width: 100%;
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
    padding: 1rem 1rem;
    margin: 0 auto;
    border-bottom: solid 1px lightgray;
  }
  
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
/* ---------------------------------------------------------------top----------------------------------------------------------------- */
#top {
    width: 100%;
    height: 60vw;
}

img.fadeInDown {
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 5vw;

}

.fadeInDown {
    opacity: 0;
    animation: fadein-top 2s ease-out forwards;
}

/* フェードインアニメーション */
@keyframes fadein-top {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

img.fadeInDown_text {
    width: 35vw;
    position: relative;
    top: -23vw;
    left: 59vw;
}

.fadeInDown_text {
    opacity: 0;
    animation: fadein-text 3s ease-out forwards;
}

/* フェードインアニメーション */
@keyframes fadein-text {
    0% {
      opacity: 0;
    }
    50% {
        opacity: 0;
      }
    100% {
      opacity: 1;
    }
}

/* ---------------------------------------------------------------information----------------------------------------------------------------- */
#infotitle {
    width: 80%;
    margin: 10vw auto 4vw;
    letter-spacing: 2px;   
}
.contents_title{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;   
}
.contents_sub-name{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 2vw;
    letter-spacing: 3px;
    font-weight: 600;
}

#information {
    width: 80%;
    margin: 0 auto 5vw;
    text-align: center;
}

#information h2 {
    margin-bottom: 1vw;
    color: #b82226;
    font-size: 1.5vw;
    font-weight: 300;
}

#information .sub-name {
    color: #777;
    font-size: 1.2vw;
    margin-bottom: 2vw;
}

.info_box {
    margin: 2vw auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.info_box a {
    display: block;
    text-decoration: none;
    color: #222;
    width: 100%;
    max-width: 800px;
    border: 1px solid #9f9e9e;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info_box a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.news02 {
    display: flex;
    align-items: center;
    padding: 1vw;
    gap: 1vw;
    background: #fff;
}

.news02 h3 {
    flex-shrink: 0;
    width: 25%;
    font-size: 1.2vw;
    font-weight: bold;
    padding: 0.5vw 1vw;
    text-align: left;
    min-width: 80px;
}

.news-box {
    flex-grow: 1;
    text-align: left;
}

.news-box time {
    display: block;
    font-size: 0.9vw;
    color: #8a8a8a;
}

.news-box .text {
    font-size: 1vw;
    font-weight: bold;
    margin-top: 0.2vw;
}


/* --------------------------------------------------------------concept---------------------------------------------------------------------- */
#concept {
    width: 80%;
    margin: 4vw auto;
    letter-spacing: 2px;
}

#concept h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

.sub-name {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 2vw;
    letter-spacing:3px;
    font-weight: 600;
}

.main-title {
    width: 100%;
    margin: 2vw auto;
    text-align: center;
    font-size: 1.6vw;
    font-weight: 600;
}

.concept-text {
    width: 50%;
    margin: 1.3vw auto;
    font-size: 1.05vw;
    text-align: center;
}

.catch {
    display: flex;
    margin-bottom: 1.56vw;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    color: #b82226;
    font-size: 1.3vw;
    font-weight: 600;
}

.catch:before, .catch:after {
    border-top: 1px solid #b82226;
    content: "";
    width: 7vw; /* 線の長さ */
}

.catch:before {
    margin-right: 1vw; /* 文字の右隣 */
}

.catch:after {
    margin-left: 1vw; /* 文字の左隣 */
}

.concept-flex {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.flexbox img {
    width: 25%;
    margin: 0 auto;
}

.img-text {
    padding-top: 1.2vw;
    text-align: center;
    font-size: 1vw;
    font-weight: 600;
    color: #b82226;
}

/* ----------------------------------------------------------------features-------------------------------------------------------------- */
#features {
    width: 100%;
    background: #f9f9f9;
    padding: 4vw 0;
}

#features h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

.features {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.features-box {
    width: 30%;
    margin: 1.5vw;
    border-radius: 25px;
    box-shadow: 0 0 8px gray;
}

.features-box img {
    border-radius: 25px 25px 0px 0px;
}

.text-box {
    height: 25vw;
    padding: 1vw;
    border-radius: 0px 0px 25px 25px;
    background: #fff;
}

.features-flex {
    display: flex;
}

.number {
    font-size: 2vw;
    color: #b82226;
    font-weight: 600;
}

.features-title {
    padding-top: 3px;
    padding-left: 0.6vw;
    font-size: 1.4vw;
    font-weight: 600;
}

.features-text {
    font-size: 1vw;
    line-height: 2vw;
    margin-top: 0.6vw;
    letter-spacing:1px;
}

/* -------------------------------------------------------------------flow------------------------------------------------------------------------------------ */
#flow {
   width: 100%; 
   margin: 0 auto 4.5vw;
}

.catch-flow {
    display: flex;
    margin: 3vw 0;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
    color: #b82226;
    font-size: 1.3vw;
    font-weight: 600;
}

.accordion-002 {
    max-width: 46vw;
    margin: 0 auto 7px;
    border: 2px solid #b82226;
    border-radius: 5px;
}

.accordion-002 img {
    width: 90%;
    margin: 0 auto;
}

.accordion-002 .cta-line2 {
    width: 80%;
    padding: 0.8vw 3vw;
    margin: 0 auto;
}

.accordion-002 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23b82226%3B%22%2F%3E%0A%3C%2Fsvg%3E');
    background-position: right calc(2em - 7px) center;
    background-size: 1.4vw;
    background-repeat: no-repeat;
    font-size: 1.1vw;
    color: #b82226;
    font-weight: 600;
    cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
    display: none;
}

.accordion-002 summary::after {
    position: relative;
    right: 0.05vw;
    transform: translateY(-25%) rotate(45deg);
    width: 0.4vw;
    height: 0.4vw;
    border-bottom: 0.2vw solid #fff;
    border-right: 0.2vw solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-002[open] summary::after {
    transform: rotate(225deg);
}

.accordion-002 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 2em 1.5em;
    font-size: 1vw;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-002[open] p {
    transform: none;
    opacity: 1;
}

.catch-flow:before, .catch-flow:after {
    border-top: 1px solid #b82226;
    content: "";
    width: 7vw; /* 線の長さ */
}

.catch-flow:before {
    margin-right: 1vw; /* 文字の右隣 */
}

.catch-flow:after {
    margin-left: 1vw; /* 文字の左隣 */
}

/* ------------------------------------------------------------------trial---------------------------------------------------------------------------------- */
#trial {
    width: 100%;
    background: #f9f9f9;
    padding: 3vw 0;
}

#trial h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

#trial p {
    font-size: 1vw;
    padding-top: 2vw;
    text-align: center;
    letter-spacing:1px;
}

.cta {
    width: 40%;
    margin: 3vw auto;
    text-decoration: none;
    text-align: center;
}

#trial a {
    text-decoration: none;
    text-align: center;
}

.cta :hover {
    opacity: 0.7;
    transition: 0.3s;
}

.cta-line2 :hover {
    opacity: 0.7;
    transition: 0.3s;
}

.cta-text {
    padding: 1vw 3vw;
    border-radius: 50px;
    background: #b82226;
    color: #fff;
    font-size: 1.1vw;
    font-weight: 600;
    letter-spacing:1px;
}

.cta-line2 {
    width: 40%;
    padding: 0.8vw 3vw;
    margin: 1vw auto 3vw;
    text-decoration: none;
    text-align: center;
}

.cta-line2 a {
    text-decoration: none;
}

.line-form2 {
    width: 100%;
    padding: 1vw 3vw;
    margin: 1.56vw auto;
    font-size: 1.1vw;
    text-align: center;
    border-radius: 36px;
    background: #849974;
    color: #fff;
}

/* -------------------------------------------------------------voice--------------------------------------------------------------------------- */
#voice {
    width: 100%;
    padding: 50px 0;
}

.voice_flex {
    width: 80%;
    margin: 0 auto;
    display: flex;
}

#voice h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

.readmore,
.readmore2,
.readmore3
 {
    width: 31%;
    position: relative;
    margin: 50px auto 0;
    padding:0vw 0vw 6vw;
    box-shadow: 0px 0px 15px -5px #777777;
    border-radius: 25px;
}

.readmore img,
.readmore2 img,
.readmore3 img {
    border-radius: 25px 25px 0 0;
}

.readmore h3,
.readmore2 h3,
.readmore3 h3 {
    padding: 1vw 2vw 0vw;
    font-size: 1.4vw;   
}

.readmore p,
.readmore2 p,
.readmore3 p {
    padding: 1vw 2vw 0vw;
    font-size: 1vw;
    line-height: 1.7vw;
    letter-spacing: 3px;
}

.readmore p span,
.readmore2 p span,
.readmore3 p span {
    color: #b82226;
}
  
.readmore label,
.readmore2 label,
.readmore3 label {
    position: absolute;
    display: table;
    left: 50%;
    bottom: 0;
    margin: 2vw auto;
    width: 6vw;
    padding: 10px 0;
    color: #b82226;
    font-size: 1vw;
    text-align: center;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 1;
}
  
.readmore label::before,
.readmore2 label::before,
.readmore3 label::before {
    content: '続きを見る';
}
  
.readmore input[type="checkbox"]:checked ~ label::before,
.readmore2 input[type="checkbox"]:checked ~ label::before,
.readmore3 input[type="checkbox"]:checked ~ label::before {
    content: '元に戻す';
}
  
.readmore input[type="checkbox"],
.readmore2 input[type="checkbox"],
.readmore3 input[type="checkbox"] {
    display: none;
}
  
.readmore-content,
.readmore-content2,
.readmore-content3 {
    position: relative;
    height: 11vw;
    overflow: hidden;
}

.readmore-content::before,
.readmore-content2::before,
.readmore-content3::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3vw;
    background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, #fff 100%);
}

.readmore input[type="checkbox"]:checked ~ .readmore-content::before,
.readmore2 input[type="checkbox"]:checked ~ .readmore-content2::before,
.readmore3 input[type="checkbox"]:checked ~ .readmore-content3::before {
    display: none;
}
  
.readmore input[type="checkbox"]:checked ~ .readmore-content,
.readmore2 input[type="checkbox"]:checked ~ .readmore-content2,
.readmore3 input[type="checkbox"]:checked ~ .readmore-content3 {
    height: auto;
}
/* ------------------------------------staff----------------------------------------- */
#staff {
    width: 100%;
    height: 46vw;
    padding-top: 3vw;
    background: url(./img/staff-back.png);
    background-repeat: no-repeat;
    background-size: cover;
}

#staff h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

#staff .sub-name {
    color: #fff;
}


.flickity-enabled {
    position: relative;
}
  
.flickity-enabled:focus { outline: none; }
  
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}
  
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
  
/* draggable */
  
.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
  
.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}
  
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
  
/* ---- flickity-button ---- */
  
.flickity-button {
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    color: #ffffff;
}
  
.flickity-button:hover {
    cursor: pointer;
}

.flickity-button:focus {
    outline: none;
    box-shadow: 0 0 0 5px #b82226;
}
  
.flickity-button:active {
    opacity: 0.6;
}
  
.flickity-button:disabled {
    opacity: 0.3;
    cursor: auto;
    /* prevent disabled button from capturing pointer up event. #716 */
    pointer-events: none;
}
  
.flickity-button-icon {
    fill: currentColor;
}
  
/* ---- previous/next buttons ---- */
  
.flickity-prev-next-button {
    top: 50%;
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    /* vertically center */
    transform: translateY(-50%);
}
  
.flickity-prev-next-button.previous { left: 5vw; }
.flickity-prev-next-button.next { right: 5vw; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 5vw;
}

  .flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 5vw;
}
  
.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}
  
/* ---- page dots ---- */
  
.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -2vw;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}
  
.flickity-rtl .flickity-page-dots { direction: rtl; }
  
.flickity-page-dots .dot {
    display: inline-block;
    width: 0.8vw;
    height: 0.8vw;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
}
  
  .flickity-page-dots .dot.is-selected {
    opacity: 1;
}
  
.staff-flex {
    width: 80%;
    display: flex;
    margin: 2vw auto;
    background: #fff;
    box-shadow: 0 0 8px;
}

.staff-flex img {
    width: 40vw;
    height: auto;
    margin: 1vw auto;
    padding-left: 0.5vw;
}

.staff-text {
    padding: 1vw;
    font-size: 1vw;
    letter-spacing: 2px;
}

.staff-text span {
    font-size: 0.8vw;
}

/* ----------------------------------------------------------price-------------------------------------------------------------------- */
#price {
    width: 100%;
    padding: 3vw 0;
}

#price h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

.price-concept {
    width: 50%;
    margin: 5vw auto;
    text-align: center;
    color: #b82226;
    font-weight: 600;
}

.sittingservice {
    width: 40%;
    margin: 6vw auto 2vw;
    text-align: center;
    font-size: 1.5vw;
    letter-spacing: 5px;
    padding: 0.5vw 3vw;
    border-bottom: 1px solid #333;
    border-collapse: collapse;
}

.sitting_price {
    margin: 0 auto;
    border-collapse: collapse;
}

.price_table {
    margin: 3vw auto;
    border-collapse: collapse;
}

th,td{
    height: 5vw;
    border:1px #d2d1d1 solid;
    padding: 10px 20px;
    text-align: center;
    font-size: 1.3vw;
}

th,td span{
    font-size: 1vw;
}

th {
    font-size: 1.3vw;
    color: #fff;
    font-weight: 400;
}

.trip_price {
    width: 50%;
    margin: 0 auto;
    padding: 3vw;
}

.trip_price .cta-line2 {
    width: 85%;
}

.trip_flex {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 1.5vw;
    font-weight: 400;
}

.trip_tax {
    padding-left: 3vw;
    text-align: center;
}

.trip_tax_cp {
    font-size: 2vw;
    padding-left: 3vw;
    text-align: center;
}

.campaign_tax {
    font-size: 2vw;
    color: #b82226;
}

.cta_cp {
    width: 70%;
    margin: 3vw auto;
    text-decoration: none;
    text-align: center;
}

.cta_cp a {
    text-decoration: none;
}


.cta_cp :hover {
    opacity: 0.7;
    transition: 0.3s;
}

.trip_tax span {
    font-size: 1vw;
}

.trip_price p {
    font-size: 1vw;
    line-height: 2vw;
    letter-spacing: 1px;
    text-align: center;
}

.trip_flex img {
    width: 5%;
    margin-right: 1vw;
}

.price-img img {
    width: 50%;
    margin: 0 auto;
}

.trimming-img {
    padding-top: 1.56vw;
}

.another-img {
    padding-top: 1,56vw;
}

.price-img p {
    width: 45%;
    margin: 0 auto 1.56vw;
    font-size: 1vw;
    line-height: 1.6vw;
}

.box-005 {
    max-width: 50%;
    margin: 4.16vw auto;
    border: 1px solid #9f9e9e;
    border-radius: 5px;
    color: #333333;
}

.box-005 div {
    display: inline-flex;
    align-items: center;
    position: relative;
    top: -1.5vw;
    left: 1vw;
    margin: 0 0.5vw;
    padding: 0 2vw;
    background: #fff;
    font-size: 1.5vw;
    color: #b82226;
    font-weight: 600;
    vertical-align: top;
}

.box-005 svg {
    padding-right: 4px;
}

.box-005 p {
    margin: 0;
    padding: 0 1.5vw 1vw;
    font-size: 1vw;
}

.service {
    width: 60%;
    margin: 2.5vw auto;
}

.service-title {
    text-align: center;
    margin: 5vw auto;
    font-size: 2vw;
    font-weight: 600;
}

.item-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.item-list .item {
	width: 20%;
    margin-bottom: 2.5vw;
	padding: 0;
	box-sizing: border-box;
}

.item-list .item .image {
	margin: 0;
	padding: 0;
}

.item-list .item .image img {
	width: 30%;
    height: auto;
	margin: 0 auto;
}

.item-list .item .title {
	margin: 0.5vw 0 0;
	padding: 0;
    text-align: center;
	font-weight: bold;
	font-size: 1vw;
    color: #b82226;
}

.item-list {
	margin: 0.3vw 0 0;
	padding: 0 0.8vw;
	font-size: 1vw;
}

.modal-002__wrap input {
    display: none;
}

.modal-002__open-label,
.modal-002__close-label {
    cursor: pointer;
}

.modal-002__open-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25vw;
    margin:3.5vw auto;
    padding: .8vw 2vw;
    border: none;
    border-radius: 5px;
    background-color: #b82226;
    color: #ffffff;
    font-weight: 600;
    font-size: 1vw;
}

.modal-002__open-label:hover {
    background-color: #fff;
    color: #b82226;
    outline: 1px solid #b82226;
}

.modal-002 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-002 img {
    width: 100%;
}

.modal-002__open-input:checked + label + input + .modal-002 {
    display: block;
    animation: modal-002-animation .6s;
}

.modal-002__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 5px;
}

.modal-002__close-label {
    background-color: #777;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    width: 36px;
    height: 36px;
    line-height: 1.6;
    text-align: center;
    display: table-cell;
    position: fixed;
    top: -1.1vw;
    right: -2%;
    z-index: 99999;
    font-size: 1.3em;
}

.modal-002__content {
    max-height: 40vw;
    overflow-y: auto;
    padding: 2.2vw 2.8vw 2.3vw;
}

.modal-002__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

@keyframes modal-002-animation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* -------------------------------------------------------------trial02---------------------------------------------------------------------------------- */
#trial02 {
    width: 100%;
    background: #f9f9f9;
    padding: 3vw 0;
}

#trial02 h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

#trial02 p {
    font-size: 1vw;
    padding-top: 2vw;
    text-align: center;
}

#trial02 a {
    text-decoration: none;
    text-align: center;
}
/* ----------------------------column----------------------------- */ 
#column {
    width: 100%;
    background: #f9f9f9;
    padding: 4vw 0;
}

#column h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

ul.column_list {
    width: 50%;
    margin: 3vw auto 0;
    text-align: center;
}

ul.column_list li {
    font-size: 1vw;
    letter-spacing: 2px;
    line-height: 4vw;
    list-style: none;
    border-bottom: dashed 1px #333;
}

ul.column_list li a {
    color: #333;
    text-decoration: none;
}

ul.column_list li a:hover,
.view_more a:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.view_more {
    position: relative;
    left: 65%;
    width: 10%;
    margin: 2vw 0 1vw;
    padding: 0.5vw 1vw;
    border: solid 1px #b82226;
    text-align: center;
}

.view_more a {
    font-size: 1vw;
    color: #333;
    text-decoration: none;
}

/* ---------------------------company----------------------------- */
#company {
    width: 100%;
    padding: 3vw 0;
}

#company h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

#company p {
    font-size: 1vw;
    padding-top: 2.5vw;
    text-align: center;
}

#company a {
    width: 100%;
    text-decoration: none;
}

.cta-line {
    width: 20%;
    margin: 3vw auto;
    text-decoration: none;
    text-align: center;
}

.fa-brands {
    margin: 0 auto;
    text-align: center;
}

.line-form {
    width: 100%;
    padding: 1vw 3vw;
    margin: 1.56vw auto;
    font-size: 1.1vw;
    text-align: center;
    border-radius: 36px;
    background: #849974;
    color: #fff;
}

#company a :hover {
    background: #68b24a;
}

.company-flex {
    width: 70%;
    display: flex;
    justify-content: center;
    padding: 0.8vw;
    margin: 1vw auto;
    border-bottom: 1px solid #9f9e9e;
}

.company-flex img {
    width: 20vw;
    height: 10vw;
    padding-right: 0.9vw;
    margin: 0 1vw;
}

.company-letterbody {
    text-align: left;
    padding: 0 1vw;
}

.company-title {
    padding: 0rem 1rem;
    font-size: 2vw;
    color: #b82226;
    font-weight: 600;
    border-left: 5px solid #b82226;
}

.company-text {
    font-size: 1vw;
    padding-top: 1vw;
    color: #222;
}
/* -----------------------------area------------------------------ */
#area {
    width: 100%;
    background: #f9f9f9;
    padding: 3vw 0;
}

#area h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

.area_flex {
    display: flex;
    justify-content: center;
}

#area h3 {
    font-size: 1.3vw;
    font-weight: 400;
    padding: 0 0.5vw;
}

#area img {
    width: 35%;
    height: auto;
    margin: 1.56vw auto;
}

#area p {
    font-size: 1vw;
    margin-bottom: 5.5vw;
    text-align: center;
}
/* ------------------------------------------------------------insta---------------------------------------------------------------------------- */
#instagram {
    width: 100%;
    background: #f9f9f9;
    padding: 3vw 0;
    margin: 0 auto 3vw;
}

.insta_sub {
    padding: 2vw 0;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 100;
    font-size: 1.2vw;
}


.insta_sub span {
    color: #b82226;
}

.insta_icons {
    margin: 0 auto;
    text-align: center;
}

.insta_icons img {
    width: 3%;
    margin: 0 auto;
}


#instagram p {
    padding: 2vw 0;
    text-align: center;
    letter-spacing: 2px;
    font-size: 0.8vw;
    color: #808080;
}

.instagram_box {
    width: 96%;
    display: flex;
    margin: 0 auto;
}

.instagram_box a {
    width: 100%;
}

.instagram_box a:hover {
    opacity: 0.5;
    transition: 0.5s;
}


p.insta_vertical01 {
    margin: 0 1vw;
    writing-mode: vertical-rl;
}

p.insta_vertical02 {
    margin: 0 1vw;
    transform: scaleX(-1);
    writing-mode: vertical-rl;
}

.insta_flexbox {
    width: 100%;
    display: flex;
}

.insta_flexbox img {
    width: 25%;
    height: auto;
}

.insta_left {
    border-radius: 10vw 0 0 0 ;
}

.insta_right {
    border-radius: 0 0 10vw 0 ;
}

/* ------s-------------------------------------------------------faq-------------------------------------------------------------------------- */
#faq {
	width: 70%;
	margin: 2vw auto 4vw;
}

#faq h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

.qa-006 {
    max-width: 100%;
    margin-bottom: 0.3vw;
    border-bottom: 2px solid #d6dde3;
}

.qa-006 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-size: 1.1vw;
    font-weight: 300;
    cursor: pointer;
}

.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3vw;
}

.qa-006 summary::before {
    color: #9f9e9e;
    content: "Q";
}

.qa-006 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-006[open] summary::after {
    transform: rotate(225deg);
}

.qa-006 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-006[open] p {
    transform: none;
    opacity: 1;
    font-size: 1.2vw;
}

.qa-006 p::before {
    color: #ff8d8d;
    font-size: 1.2vw;
    line-height: 1.2vw;
    content: "A";
}

/* -------------------------------------------------------------trial03-------------------------------------------------------------------------- */
#trial03 {
    width: 100%;
    background: #f9f9f9;
    padding: 3vw 0;
}

#trial03 h2 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #b82226;
    font-size: 1vw;
    font-weight: 200;
}

#trial03 p {
    padding-top: 2vw;
    text-align: center;
    letter-spacing:1px;
}

#trial03 a {
    text-decoration: none;
    text-align: center;
}

#trial03 a :hover {
    background-color: #68b24a;
}

/* --------------------------------------------------------------------footer----------------------------------------------------------------------- */
footer {
    width: 100%;
}

footer img {
    margin: 1vw auto 0;
}

.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu li {
    margin: 0.5vw 2vw 1.56vw;
    font-size: 1vw;
    font-weight: 600;
    list-style: none;
}

.footer-menu li a:hover {
    color: #333333;
}

.footer-menu li a {
    color: #b82226;
    text-decoration: none;
}

.sns {
    width: 2%;
    margin: 0px auto 3.2vw;
}

.certification-btn {
    width: 15%;
    margin: 2vw auto;
    border: 1px solid #b82226;
    border-radius: 25px;
    text-align: center;
}

.certification-btn a {
    text-decoration: none;
    color: #b82226;
}

.certification {
    width: 100%;
    padding: 0.6vw 1.5vw;
    font-size: 1vw;
}

.certification-btn:hover {
    background-color: #b82226;
    transition: 0.4s;
}

.certification-btn a:hover {
    color: #fff;
    transition: 0.3s;
}

.area-name {
    width: 65%;
    margin: 0 auto 1.56vw;
    text-align: center;
    letter-spacing: 2px;
    line-height: 1.8vw;
    font-size: 1vw;
    color: #b82226;
}

.copyright {
    text-align: center;
}

/* --------------------------------------------------------------------display-none---------------------------------------------------------------------- */
@media (min-width: 500px) {
    .header-imgmobile {
        display: none;
    }

    br.br_none {
        display: none;
    }
}

/* ------------------------------------------------------------------------mobile------------------------------------------------------------------------- */
@media (max-width: 500px) {
.header {
    width: 100%;
    height: 13vw;
}
      
.header-flex {
    width: 100%;
}

.header_icons {
    display: none;
}

.header-img {
    display: none;
}

.header-imgmobile {
    width: 100%;
}

.header-imgmobile img {
    position: relative;
    left: 20vw;
    width: 30%;
    margin: 0 auto;
}

.header-tel {
    width: 15%;
    height: 13vw;
    padding-top: 0;
    font-size: 8px;
    top: 0vw;
    left: -12vw;
}

.header-tel a {
    line-height: 4vw;
}

.from_text {
    font-size: 12px;
    line-height: 5.8vw;
}

.button_box {
    width: 100%;
    height: 13vw;
    padding: 3vw 0px 2vw;
}

.button_box_2 {
    width: 100%;
    height: 13vw;
    padding: 3vw 0px 2vw;
}

.header-line {
    width: 30%;
    height: 13vw;
    padding-top: 0;
    font-size: 8px;
    top: 0vw;
    left: 0vw;
}

.header-line a {
    line-height: 4vw;
}

.header-trial {
    width: 15%;
    height: 13vw;
    padding-top: 0;
    font-size: 8px;
    top: 0vw;
    left: 15vw;
}

.header-trial a {
    line-height: 4vw;
}

.fa-brands {
    padding-top: 1vw;
    padding-left: 1vw;
}


.fa-regular:before{
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
	font-weight: lighter;
	font-size: 4vw;
}

.drawer__nav__inner {
    display: flex;
    flex-direction: column;
}

.drawer__nav__menu {
    width: 100%;
    list-style: none;
    padding-left: 0;
}

.recruit_box {
    width: 100%;
}

.drawer__button {
    position: relative;
    top: 0.5vw;
    left: -6vw;
    width: 10vw;
    height: 10vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}

.drawer__nav__link {
    padding: 3vw 1vw;
}

.drawer__button > span {
    width: 6vw;
    top: 5.5vw;
    left: 35%;
}

.drawer__nav img {
    width: 70%;
}

h1 {
    font-size: 3vw;
}

.pc-top img {
    top: 13vw;
}

img.fadeInDown_text {
    width: 37vw;
    top: -14vw;
}
/* ---------------------------------------------------------------information----------------------------------------------------------------- */
#infotitle {
    width: 97%;
    margin: 30vw auto 10px;
}
.contents_title{
    font-size: 13px;
    padding-bottom: 0px;
}
.contents_sub-name{
    font-size: 20px;
    padding-bottom: 0px;
}
#information {
    width: 90%;
}
#information h2 {
    font-size: 5vw;
}

.sub-name {
    font-size: 9px;
}

.info_box {
    margin: 4vw auto;
}

.info_box a {
    box-shadow: none;
}

.news02 {
    display: flex;
    flex-direction: row; /* 横方向に並べる */    
    align-items: center;
    padding: 2vw;
    gap: 2vw;
}

.news02 h3 {
    font-size: 3vw;
    padding: 0;
    text-align: left; /* テキストを中央揃え */
    width: auto; /* 可変幅 */
    min-width: 25%; /* カラム幅調整 */
}



.news-box {
    text-align: left;
    flex-grow: 1; /* 残りのスペースを占有 */
}

.news-box time {
    font-size: 9px;
}

.news-box .text {
    font-size: 10px;
}

/* --------------------------------------------------------------concept---------------------------------------------------------------------- */
#concept {
    width: 97%;
    margin: 60px auto;
}

.sub-name {
    font-size: 20px;
    padding-bottom: 0px;
}

#concept h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#concept p {
    font-size: 20px;
}

.main-title {
    font-size: 15px;
    margin: 30px auto;
}

.concept-text {
    width: 100%;
    padding: 0 5px;
    margin: 20px auto;
    text-align: center;
    font-size: 13px;
}

.catch {
    margin: 25px 0 30px;
    font-size: 14px;
}

.catch:before, .catch:after {
    width: 6em; /* 線の長さ */
}

.concept-flex {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.flexbox img {
    width: 50%;
    margin: 0 auto;
}

.img-text {
    padding-top: 7px;
    margin: 0px 20px;
    font-size: 10px;
    font-weight: 600;
    color: #b82226;
}

/* ----------------------------------------------------------------features-------------------------------------------------------------- */
#features {
    padding: 50px 0;
}

#features h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#features .sub-name {
    padding-bottom: 30px;
    margin: 0 auto 3vw;
}

.features {
    width: 100%;
    display: block;
}

.features-box {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

.features-box img {
    border-radius: 0;
}

.text-box {
    height: auto;
    width: 92%;
    position: relative;
    top: -30px;
    padding: 20px;
    margin: 0 auto 0px;
    border-radius: 15px;
    box-shadow: 0 0 8px gray;
}

.number {
    font-size: 25px;
}

.features-title {
    font-size: 20px;
    letter-spacing: 0px;
    padding-left: 10px;
}

.features-text {
    font-size: 13px;
    line-height: 23px;
}

/* -------------------------------------------------------------------flow------------------------------------------------------------------------------------ */
#flow {
    width: 90%;
    margin: 0 auto 80px;
}

.catch-flow {
    font-size: 15px;
    margin: 50px 0;
}

.accordion-002 .cta-line2 {
    width: 90%;
    padding: 0.8vw 3vw;
    margin: 0 auto;
}

.accordion-002 .line-form2 {
    margin: 15px auto;
}

.flow {
    display: block;
}
 
.flow > li dl {
    max-height: 200px;
    margin-bottom: 30px;
}
 
.flow > li:not(:last-child) dl::before {
    border-top:none;
    border-right:none;
    left: 0%;
}
 
.flow > li dl dt {
    font-size: 18px;
    color: none;
}

dd {
    font-size: 13px;
}

/* ------------------------------------------------------------trial---------------------------------------------------------------- */
#trial {
    padding: 50px 0;
}

#trial h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#trial p {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
}

.cta {
    width: 90%;
    margin: 50px auto;
    text-decoration: none;
    text-align: center;
}

.cta-text {
    padding: 15px 30px;
    font-size: 13px;
}

.cta-line2 {
    width: 100%;
    margin: 20px auto 20px;
    padding: 15px 10px;
}

.line-form2 {
    border-radius: 36px;
    padding: 15px 30px;
    margin: 30px auto;
    font-size: 15px;
}
/* -------------------------------------------------------------voice--------------------------------------------------------------------------- */
.voice-flex {
    width: 100%;
    display: block;
    margin: 0 auto;
}

#voice h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

.voice_flex {
    display: block;
    width: 85%;
}

.readmore,
.readmore2,
.readmore3 {
    width: 100%;
    min-height: 490px;
    border-radius: 25px;
}

.readmore h3,
.readmore2 h3,
.readmore3 h3 {
    text-align: center;
    padding: 1vw 2vw 4vw;
    font-size: 18px;
    letter-spacing: 2px;   
}

.readmore p,
.readmore2 p,
.readmore3 p {
    padding: 1vw 3vw 6vw;
    font-size: 14px;
    line-height: 28px;
}
 
.readmore label,
.readmore2 label,
.readmore3 label {
    width: 80%;
    font-size: 12px;
}

.readmore-content,
.readmore-content2,
.readmore-content3 {
    height: 25vw;
}

.readmore-content::before,
.readmore-content2::before,
.readmore-content3::before {
    height: 10vw;
}
/* -----------------------------------------------------------------staff-------------------------------------------------------------------------- */
#staff {
    height: 1050px;
    padding-top: 6vw;
    background: #66697b;
}

#staff h2 {
    font-size: 14px;
    padding-bottom: 0px;
}

.staff-flex {
    display: block;
}

/* ---- previous/next buttons ---- */
  
.flickity-prev-next-button {
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* vertically center */
    transform: translateY(-50%);
}
  
.flickity-prev-next-button.previous { left: 2vw; }
.flickity-prev-next-button.next { right: 2vw; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 2vw;
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 2vw;
}
  
/* ---- page dots ---- */
  
.flickity-page-dots {
    bottom: -6vw;
}
  
.flickity-page-dots .dot {
    display: inline-block;
    width: 2vw;
    height: 2vw;
}

.staff-flex img {
    width: 100vw;
    height: auto;
    padding: 0;
}

.staff-text {
    padding: 15px;
    font-size: 14px;
    line-height: 22px;
}

.staff-text span{
    font-size: 12px;
}

/* ----------------------------------------------------------price-------------------------------------------------------------------- */
#price {
    padding: 50px 0 0;
}

#price h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

.price-concept {
    width: 80%;
    font-size: 13px;
    margin: 30px auto;
}

.sittingservice {
    width: 70%;
    margin: 12vw auto 4vw;
    font-size: 14px;
}

.sitting_price {
    width: 90%;
}

.price_table {
    width: 90%;
    margin: 3vw auto;
}

th,td{
    font-size: 12px;
}

th,td span{
    font-size: 12px;
}


.trip_price {
    width: 94%;
    padding: 6vw 2vw 2.5vw;
}

.trip_price .cta-line2 {
    width: 100%;
}

.trip_flex {
    width: 90%;
    margin: 0 auto;
    justify-content: left;
    font-size: 12px;
}

.trip_tax_cp {
    font-size: 16px;
}

.campaign_tax {
    font-size: 16px;
}

.cta_cp {
    width: 90%;
    margin: 3vw auto;
    text-decoration: none;
    text-align: center;
}

.trip_tax span {
    font-size: 9px;
}

.trip_price p {
    width: 80%;
    margin: 0 auto;
    font-size: 11px;
    line-height: 24px;
    text-align: left;
}

.price-img img {
    width: 100%;
}

.price-img p {
    width: 95%;
    font-size: 13px;
    margin: 0 auto 30px;
    line-height: 1.6em;
}

.box-005 {
    max-width: 90%;
    margin: 50px auto;
}

.box-005 div {
    top: -3vw;
    left: 2vw;
    font-size: 14px;
}

.box-005 p {
    font-size: 12px;
    margin: 0 1.5em 1em;
}

.service {
    width: 100%;
}

.service-title {
    margin: 70px;
    font-size: 17px;
}

.item-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.item-list .item {
	width: 20%;
    margin-bottom: 40px;
	padding: 0;
	box-sizing: border-box;
}

.item-list .item .image {
	margin: 0;
	padding: 0;
}

.item-list .item .image img {
	width: 50%;
    height: 50%;
	margin: 0 auto;
}

.item-list .item .title {
    margin: 7px;
	font-size: 10px;
}

.item-list {
	margin: 5px 0 0;
	padding: 0 13px;
	font-size: 15px;
}

.modal-002__open-label {
    max-width: 60%;
    width: 400px;
    padding: 0.94em 2.1em 0.94em 2.6em;
    margin: 60px auto;
    font-size: 14px;
}

.modal-002__close-label {
    top: -17px;
    right: -4%;
}

.modal-002__content-wrap {
    width: 90vw;
}

.modal-002__content {
    padding: 30px 10px 15px;
    max-width: 100%;
    max-height: 70vh;
}

/* -------------------------------------------------------------trial02---------------------------------------------------------------------------------- */
#trial02 {
    width: 100%;
    background: #f9f9f9;
    padding: 50px 0 10px;
}

#trial02 h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#trial02 p {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
}
/* -------------------------------------------------------------company---------------------------------------------------------------------------------- */
#company {
    padding: 50px 0 10px;
}

#company h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#company p {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
}

.cta-line {
    width: 70%;
}

#company a :hover {
    background: #68b24a;
}

.company-flex {
    width: 80%;
    display: block;
    padding: 0 0 15px 0;
}

.company-flex img {
    width: 90%;
    height: auto;
    padding: 0;
    margin: 0 auto;
}

.company-letterbody {
    color: #222;
    padding: 0rem;
}

.company-letterbody a {
    color: #222;
}

.company-title {
    width: 100%;
    padding: 0rem 1rem;
    margin: 10px auto 0;
    font-size: 18px;
}

.company-text {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
}
/* ------------------------------------------------------------area---------------------------------------------------------------------------- */
#area {
    padding: 50px 0;
    margin-bottom: 40px;
}

#area h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#area img {
    width: 70%;
}

#area h3 {
    font-size: 14px;
}


#area p {
    font-size: 13px;
    margin-bottom: 20px;
}

/* ------------------------------------------------------------insta---------------------------------------------------------------------------- */
#instagram {
    width: 100%;
    padding-bottom: 12vw;
}

.insta_icons img {
    width: 10%;
}


.insta_sub {
    padding: 2vw 0;
    margin-bottom: 4vw;
    font-size: 3vw;
}

#instagram p {
    padding: 2vw 3vw;
    font-size: 2vw;
}

.instagram_box {
    width: 100%;
}

.insta_flexbox {
    flex-wrap: wrap;
}

.insta_flexbox img {
    width: 50%;
}

.insta_left {
    border-radius: 25vw 0 0 0 ;
}

.insta_right {
    border-radius: 0 0 25vw 0 ;
}


/* -------------------------------------------------------------faq-------------------------------------------------------------------------- */
#faq {
	width: 100%;
    padding: 0 15px;
	margin: 20px auto 80px;
}

#faq h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#faq .sub-name {
    margin: 0 auto 25px;
}


.accordion-002 {
    max-width: 98%;
    margin: 0 auto 7px;
}

.accordion-002 p {
    font-size: 16px;
} 

.qa-006 {
    font-size: 13px;
    max-width: 100%;
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-006 summary {
    font-size: 13px;
    padding: 2em 2em 2em 4em;
}

.accordion-002 summary {
    padding: 1em 2em;
    font-size: 13px;
    background-size: 22px;
}

.accordion-002 summary::after {
    width: 6px;
    height: 6px;
    top: 0px;
    right: 1.5px;
}

.qa-006 summary::before,
.qa-006 p::before {
    position: absolute;
    left: 0.2em;
    font-size: 2em;
}

.qa-006 summary::before {
    color: #9f9e9e;
    content: "Q";
}

.qa-006 summary::after {
    padding: 3px;
}

.qa-006[open] p {
    font-size: 3vw;
}

.qa-006 p::before {
    font-size: 4vw;
    line-height: 3vw;
}
/* ----------------------------column----------------------------- */ 
#column {
    padding: 8vw 0;
}

#column h2 {
    font-size: 13px;
}

ul.column_list {
    width: 80%;
    margin: 6vw auto 0;
    padding-left: 0;
    text-align: start;
}

ul.column_list li {
    font-size: 12px;
    line-height: 26px;
    padding-bottom: 2vw;
    margin-bottom: 2vw;
}

.view_more {
    left: 65%;
    width: 25%;
    margin: 4vw 0 2vw;
    padding: 0.5vw 1vw;
}

.view_more a {
    font-size: 12px;
}

/* -------------------------------------------------------------trial03-------------------------------------------------------------------------- */
#trial03 {
    width: 100%;
    background: #f9f9f9;
    padding: 50px 0;
}

#trial03 h2 {
    font-size: 13px;
    padding-bottom: 0px;
}

#trial03 p {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
}
/* --------------------------------------------------------------------footer----------------------------------------------------------------------- */
footer {
    width: 100%;
}

footer img {
    margin: 20px auto 0;
}

.footer-menu {
    width: 85%;
    margin: 0 auto;
    padding: 0;
    font-size: 12px;
    list-style:none;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 10px 10px 30px;
}

.footer-menu li a {
    font-size: 12px;
    color: #b82226;
    text-decoration: none;
}

.sns {
    width: 7%;
    margin: 0 auto 32px;
}

.certification {
    font-size: 16px;
    padding: 8px 24px;
}

.certification-btn {
    width: 60%;
    margin: 8px auto 40px;
}

.area-name {
    width: 95%;
    padding: 0 20px;
    margin: 0 auto 30px;
    font-size: 12px;
    line-height: 18px;
}

.copyright {
    font-size: 12px;
    margin-bottom: 30px;
    text-align: center;
}
}
