@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

html { 
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.3;
    color: #1d1d1d;
}

a {
    transition: 0.8s;
}

a:hover {
    opacity: 0.6;
}

img {
    width: 100%;
}

/* ヘッダー */
.hd_pc {
    opacity: 0;
    z-index:-1;
    transition: all .8s ease-out;
}

.top_img_pc {
  display: block;
}
.top_img_sp {
  display: none;
}

.l-header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .l-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
  }
  .l-header__logo {
    width: 18%;
  }
  .l-header .nav {
    flex: 1;
  }
  .l-header .nav-test {
    display: flex;
    justify-content: flex-end;
  }
  .l-header .nav-test__item {
    margin-right: 3%;
    font-size: 1vw;
  }
  .l-header .nav-test__item .link {
    display: inline-block;
    position: relative;
    line-height: 1.5;
  }
  .l-header .nav-test__item .link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #1d1d1d;
    position: absolute;
    bottom: 0px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
  }
  .l-header .nav-test__item .link.active::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .l-header .nav-test__item .link:hover {
    text-decoration: none;
  }
  /* .l-header .nav-test__item .link:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  } */
  
  .wrapper {
    max-width: 100%;
    padding: 20px 5vw;
    margin-left: auto;
    margin-right: auto;
  }
  @media screen and (max-width: 1000px) {
    .wrapper {
      margin-right: 4.375%;
      margin-left: 4.375%;
    }
  }

  .hd_sp {
    display: none;
  }

  /*スクロールダウン全体の場所*/
.scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 5%;
  left: 3%;
  z-index: 1;
}

/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 6px;
  bottom: 45px;
  /*テキストの形状*/
  color: #eee;
  font-size: 15px;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -6px;
  /*矢印の形状*/
  width: 2px;
  height: 20px;
  background: #eee;
  transform: skewX(-31deg);
}

.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 2px;
  height: 100px;
  background: #eee;
}

/* top */
#top {
    position: relative;
}

.swiper {
    height: 100vh;
}
@keyframes zoomUp {
    0% {
      transform: scale(1.3);
    }
    100% {
      transform: scale(1.4);
    }
  }
  .swiper-slide-active .swiper-img,
  .swiper-slide-duplicate-active .swiper-img,
  .swiper-slide-prev .swiper-img {
    animation: zoomUp 12s linear 0s normal both;
  }
  .swiper-slide img {
    height: auto;
    width: 100%;
  }

  .swiper-img img {
    object-fit: cover;
    aspect-ratio: 2/1;
  }

  .top_text {
    font-size: 4vw;
    text-shadow: 0px 3px 18px #000;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translate(0%, -50%);
    z-index: 10;
  }

  /* メインラッパー */
  .main_wrapper {
    background-image: url("img/bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 5vw;
  }

  /* about */
  #about {
    width: 75%;
    margin: 0 auto 8vw;
    padding: 40px;
    border: 1px solid #707070;
    background-color: #fff;
  }

  .ab_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .ab_left {
    width: 65%;
  }

  .ab_right {
    width: 33%;
  }

  .ab_title {
    font-size: 1.8vw;
    font-weight: 600;
    line-height: 1;
  }

  .ab_sub {
    font-size: 1vw;
    margin-top: 5px;
  }

  .ab_bar {
    display: inline-block;
    width: 70%;
    height: 1px;
    margin-top: 15px;
    background-color: #242424;
  }

  .ab_message {
    font-size: 2.3vw;
    margin: 25px 0;
    font-weight: 600;
  }

  .ab_text {
    font-size: 1.2vw;
  }

  /* セクションタイトル */
  .section_title {
    font-size: 2.2vw;
    line-height: 1;
    font-weight: 600;
  }

  .section_sub {
    font-size: 1.3vw;
  }

  .section_bar {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #707070;
    margin: 15px 0;
  }

  /* Service */
  #service {
    width: 75%;
    margin: 0 auto 8vw;
  }

  .sv_list {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .sv_item {
    width: 28%;
  }

  .sv_item img {
    aspect-ratio: 1.5/1;
  }

  .sv_item_title {
    margin: 25px 0;
    font-size: 1.3vw;
    border-left: 6px solid #a7a7a7;
    padding: 8px 0 8px 15px;
    font-weight: 600;
  }

  .sv_item_text {
    background-color: #f0f0f0;
    padding: 25px;
    line-height: 1.8;
    font-size: 1vw;
  }

  .sv_btn {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1d1d1d;
    border-radius: 100vh;
    padding: 18px 45px;
    font-size: 1.1vw;
  }

  .sv_arrow {
    display: flex;
    margin-left: 3px;
  } 
  .sv_arrow::after {
    content: '';
    width: 30px;
    height: 15px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg);
  }

  /* 会社概要 */
  #cp {
    width: 75%;
    margin: 0 auto;
    padding: 40px;
  }

  .cp_list {
    margin-top: 20px;
    padding: 4vw 8vw;
    background-color: #f0f0f0;
  }

  .cp_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5vw;
  }

  .cp_item:last-of-type {
    margin-bottom: 0;
  }

  .cp_name {
    background-color: #fff;
    padding: 8px 20px;
    font-size: 1vw;
    min-width: 18%;
    text-align: center;
  }

  .cp_text {
    width: 75%;
    padding-bottom: 8px;
    font-size: 1vw;
    margin-left: 60px;
    border-bottom: 1px solid #b5b5b5;
  }

  .cp_info {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cp_info_list {
    width: 70%;
    margin-left: 60px;
  }

  .cp_info_item {
    display: flex;
    font-size: 1vw;
    margin-bottom: 15px;
  }

  /* フッター */
  .footer_list {
    display: flex;
  }

  .footer_left {
    background-image: url("img/footer01.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .footer_right {
    background-image: url("img/footer02.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
  }

  .footer_item_inner {
    height: 100%;
    padding: 50px 120px;
    background-color: rgba(0, 0, 0, 0.27);
  }

  .right_inner {
    background-color: rgba(0, 0, 0, 0.37);
  }

  .footer_list li {
    width: 50%;
  }

  .footer_logo {
    width: 50%;
    margin-bottom: 20px;
  }

  .footer_a {
    display: block;
    width: fit-content;
    margin-top: 20px;
    font-size: 1.2vw;
    color: #fff;
  }

  .copyright {
    text-align: right;
    color: #fff;
    margin-top: 100px;
    font-size: 1vw;
  }

  .footer_ct_title {
    font-size: 2vw;
  }

  .footer_ct_sub {
    font-size: 1.5vw;
  }

  .footer_ct_bar {
    width: 40%;
    background-color: #fff;
    height: 2px;
    display: inline-block;
    margin: 20px 0;
  }

  .footer_ct_text {
    font-size: 1vw;
  }

  .ft_btn_box {
    margin-top: 40px;
  }

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}

  a.btn--yellow {
    color: #fff;
    background-color: #dddddd;
    border-bottom: 5px solid #b7b6b6;
  }
  
  a.btn--yellow:hover {
    margin-top: 3px;
    color: #fff;
    opacity: 1;
    background: #dddddd;
    border-bottom: 2px solid #b7b6b6;
  }

  /* お問い合わせ */
  .ct_top_box {
    background-image: url("img/contact_top.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .ct_top_text_box {
    padding: 10vw 5vw;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 3vw;
  }

  .ct_form {
    width: 45%;
    margin: 4vw auto;
  }

  .ct_list {
    margin-bottom: 2.5vw;
    font-size: 1vw;
  }

  input[type=text],input[type=tel],input[type=email] {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #1d1d1d;
    border-radius: 3px;
    padding: 15px 20px;
  }


  textarea {
    width: 100%;
    height: 300px;
    margin-top: 10px;
    border: 1px solid #1d1d1d;
    border-radius: 3px;
    padding: 20px;
    font-size: 1vw;
  }

  .ct_btn_box {
    text-align: center;
  }

  .ct_btn {
    width: 40%;
    display: inline-block;
    padding: 20px;
    border-radius: 100vh;
    margin-top: 15px;
    background-color: #787878;
    color: #fff;
    text-align: center;
    font-size: 1.2vw;
    transition: 0.8s;
  }

  .ct_btn:hover {
    opacity: 0.6;
  }

  /* タブレット */
@media (max-width: 1024px){
  #top {
    height: 60vh;
  }
  .top_img_sp {
    display: none;
  }
  .hd_pc {
    display: none;
  }

  .hd_sp {
    width: 100%;
    position: fixed;
    background-color: #fff;
    display: flex;
    z-index: 100;
    top: 0;
  }

  .hd_sp_flex {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
  }

  .sp_left {
    width: 30%;
  }

  /* バーガーメニュー */
body.overflow {
  overflow: hidden;
}
.burger {
width: 50px;
height: 50px;
position: relative;
/* top: 20px;
right: 20px; */
z-index: 101;
/* background-color: #b83a3a; */
}
.burger span {
position: relative;
margin-top: 9px;
margin-bottom: 9px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: absolute;
top: 50%;
left: 50%;
margin-left: -15px;
margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
display: block;
width: 30px;
height: 1px;
background-color: #000;
outline: 1px solid transparent;
-webkit-transition-property: background-color, -webkit-transform;
-moz-transition-property: background-color, -moz-transform;
-o-transition-property: background-color, -o-transform;
transition-property: background-color, transform;
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s;
right: 0;
}
.burger span::before {
  width: 40px;
}
.burger span::after {
  width: 20px;
}

.burger span::before, .burger span::after {
position: absolute;
content: "";
}
.burger span::before {
top: -9px;
}
.burger span::after {
top: 9px;
}
.burger.clicked span {
background-color: transparent;
}
.burger.clicked span::before {
  width: 30px;
-webkit-transform: translateY(9px) rotate(45deg);
-moz-transform: translateY(9px) rotate(45deg);
-ms-transform: translateY(9px) rotate(45deg);
-o-transform: translateY(9px) rotate(45deg);
transform: translateY(9px) rotate(45deg);
}
.burger.clicked span::after {
  width: 30px;
-webkit-transform: translateY(-9px) rotate(-45deg);
-moz-transform: translateY(-9px) rotate(-45deg);
-ms-transform: translateY(-9px) rotate(-45deg);
-o-transform: translateY(-9px) rotate(-45deg);
transform: translateY(-9px) rotate(-45deg);
}
.burger.clicked span:before, .burger.clicked span:after {
background-color: #1d1d1d;
}
.burger:hover {
cursor: pointer;
}

.bg_nav::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 30px;
  top: 0;
  left: 0;
}

/*  NAV
========================================== */
nav {
background-color: #fff;
position: fixed;
z-index: 100;
top: 0;
right: 0;
height: 100%;
max-width: 400px;
width: 100%;
padding: 100px 40px 60px 40px;
overflow-y: auto;
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
-o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
nav.show {
-webkit-transform: translateX(0px);
-moz-transform: translateX(0px);
-ms-transform: translateX(0px);
-o-transform: translateX(0px);
transform: translateX(0px);
}
nav.show ul.main li {
-webkit-transform: translateX(0px);
-moz-transform: translateX(0px);
-ms-transform: translateX(0px);
-o-transform: translateX(0px);
transform: translateX(0px);
opacity: 1;
}
nav.show ul.main li:nth-child(1) {
transition-delay: 0.15s;
}
nav.show ul.main li:nth-child(2) {
transition-delay: 0.3s;
}
nav.show ul.main li:nth-child(3) {
transition-delay: 0.45s;
}
nav.show ul.main li:nth-child(4) {
transition-delay: 0.6s;
}
nav.show ul.main li:nth-child(5) {
transition-delay: 0.75s;
}
nav.show ul.main li:nth-child(6) {
transition-delay: 0.9s;
}
nav.show ul.main li:nth-child(7) {
transition-delay: 1.05s;
}
nav.show ul.main li:nth-child(8) {
transition-delay: 1.2s;
}
nav.show ul.main li:nth-child(9) {
transition-delay: 1.35s;
}
nav.show .about,
nav.show .social,
nav.show ul.sub {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-ms-transform: translateY(0px);
-o-transform: translateY(0px);
transform: translateY(0px);
opacity: 1;
transition-delay: 0.85s;
}
nav {
  padding: 120px 0px 70px 0px;
}
nav ul.main {
list-style-type: none;
}
nav ul.main li {
margin-bottom: 20px;
-webkit-transform: translateX(40px);
-moz-transform: translateX(40px);
-ms-transform: translateX(40px);
-o-transform: translateX(40px);
transform: translateX(40px);
opacity: 0;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
nav ul.main li:last-of-type {
margin-bottom: 0px;
}
nav ul.main li a {
color: #1d1d1d;
font-family: "Raleway", sans-serif;
text-decoration: none;
text-transform: uppercase;
font-size: 20px;
display: block;
letter-spacing: 5px;
font-weight: 400;
padding: 8px 30px 15px;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
border-bottom: 1px solid #b5b5b5;
}
nav ul.main li a span {
color: #b7ac7f;
}
nav ul.main li a:hover {
color: #b7ac7f;
}
nav .about {
margin-top: 40px;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
transform: translateY(30px);
opacity: 0;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
nav .about p {
color: #ffffff;
font-family: "Spectral", serif;
font-size: 1.05rem;
letter-spacing: 0.5px;
line-height: 170%;
}
nav .social {
margin-top: 40px;
position: relative;
padding-bottom: 30px;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
transform: translateY(30px);
opacity: 0;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
nav .social:after {
content: "";
width: 230px;
height: 2px;
background-color: #b7ac7f;
position: absolute;
bottom: 0;
left: 0;
}
nav .social a {
display: inline-block;
width: 30px;
height: 30px;
margin-right: 25px;
}
nav .social a:last-of-type {
margin-right: 0px;
}
nav .social a:hover svg path,
nav .social a:hover svg circle {
fill: #b7ac7f;
}
nav .social a svg {
width: 100%;
height: 100%;
}
nav .social a svg path,
nav .social a svg circle {
fill: #ffffff;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
nav ul.sub {
list-style-type: none;
margin-top: 40px;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
transform: translateY(30px);
opacity: 0;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
}
nav ul.sub li {
margin-bottom: 10px;
}
nav ul.sub li:last-of-type {
margin-bottom: 0px;
}
nav ul.sub li a {
color: #ffffff;
font-family: "Raleway", sans-serif;
letter-spacing: 1px;
font-size: 0.9rem;
text-decoration: none;
-webkit-transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
}
nav ul.sub li a:hover {
color: #b7ac7f;
}

/*  OVERLAY
========================================== */
.overlay {
position: fixed;
top: 0;
left: 0;
z-index: 99;
width: 100%;
height: 100%;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
background-color: #000;
opacity: 0;
visibility: hidden;
}
.overlay.show {
opacity: 0.8;
visibility: visible;
}

.bg_bar {
  width: 100%;
  height: 1px;
  background-color: #b7ac7f;
  margin: 30px 0;
}

.bg_cp_info {
  color: #fff;
  font-size: 14px;
}

.bg_cp_name {
  font-size: 16px;
}

.bg_cp_ad {
  margin: 10px 0;
}

.bg_cp_line {
  width: 15%;
  margin-top: 30px;
}

.swiper-img img {
  aspect-ratio: 1/1;
}

.top_text {
  font-size: 6vw;
}

.swiper {
  height: 100%;
}

.main_wrapper {
  padding: 8vw 5vw;
}

#about {
  width: 100%;
}

.ab_title {
  font-size: 20px;
}

.ab_sub {
  font-size: 14px;
}

.ab_message {
  font-size: 23px;
  margin: 15px 0;
}

.ab_text {
  font-size: 15px;
}

#service {
  width: 100%;
}

.section_title {
  font-size: 23px;
}

.section_sub {
  font-size: 16px;
  margin-top: 3px;
}

.sv_list {
  flex-wrap: wrap;
}

.sv_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.sv_item img{
  width: 30%;
  height: 100%;
  object-fit: cover;
}

.sv_text_box {
  width: 65%;
}

.sv_item_title{
  font-size: 20px;
  margin: 0px 0 25px;
}

.sv_item_text {
  font-size: 16px;
  padding: 15px;
}

.sv_btn {
  font-size: 18px;
  margin-top: 20px;
}

#cp {
  width: 100%;
  padding: 0;
}

.cp_list {
  padding: 4vw 6vw;
}

.cp_item {
  margin-bottom: 30px;
}

.cp_name {
  font-size: 16px;
}

.cp_text {
  font-size: 16px;
}

.cp_info_item {
  font-size: 16px;
}

.footer_list {
  flex-wrap: wrap;
  flex-direction: column-reverse;
}

.footer_list li {
  width: 100%;
}

.footer_item_inner {
  padding: 50px;
}

.copyright {
  margin-top: 30px;
  font-size: 16px;
}

.footer_logo {
  width: 30%;
}

.footer_a {
  font-size: 20px;
}

.footer_ct_title {
  font-size: 23px;
}

.footer_ct_sub {
  font-size: 16px;
}

.footer_ct_text {
  font-size: 16px;
}

.btn, a.btn, button.btn {
  font-size: 18px;
}

.ct_top_text_box {
  padding: 20vw 5vw;
}

.ct_form {
  width: 65%;
  margin: 8vw auto;
}

.ct_list {
  font-size: 16px;
}

textarea {
  font-size: 16px;
}

input[type=text], input[type=tel], input[type=email] {
  padding: 15px;
}

.ct_btn {
  width: 55%;
  font-size: 18px;
}

}

/* スマホ */
@media (max-width: 430px){
  #top {
    height: 75vh;
    margin-top: 15vw;
  }
  .top_img_pc {
    display: none;
  }
  .top_img_sp {
    display: block;
  }
  .swiper {
    height: 100%;
  }

  .swiper-img, .swiper-img img {
    height: 100%;
    object-fit: contain;
  }

  .top_text {
    font-size: 28px;
    line-height: 1.8;
  }

  .top_text {
    left: 5%;
  }

  .scrolldown {
    left: 5%;
  }

  .sp_left {
    width: 50%;
  }

  .hd_sp_flex {
    padding: 15px
  }

  nav {
    max-width: 300px;
  }

  nav ul.main li a {
    font-size: 14px;
  }

  #about {
    padding: 0px;
    background-image: url("img/ab_img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
  }

  .ab_message {
    font-size: 20px;
  }

  .ab_list {
    padding: 30px 15px;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: self-start;
  }

  .ab_left {
    width: 100%;
    color: #fff;
  }

  .ab_bar {
    width: 100%;
    background-color: #fff;
  }

  .ab_right {
    display: none;
  }

  .ab_text {
    font-size: 14px;
  }

  .ab_title {
    font-size: 18px;
  }

  .sv_item_title {
    font-size: 18px;
  }

  .sv_item_text {
    font-size: 14px;
  }

  .sv_btn {
    font-size: 10px;
    padding: 15px 20px;
    margin-top: 0;
  }

  .sv_arrow::after {
    width: 23px;
    height: 10px;
  }

  .cp_list {
    padding: 6vw 3vw;
  }

  .cp_name {
    width: 30%;
    font-size: 12px;
    padding: 5px;
  }

  .cp_text {
    font-size: 14px;
    margin-left: 20px;
  }
  
  .cp_info_list {
    margin-left: 10px;
  }

  .cp_info_item {
    font-size: 14px;
  }

  .footer_item_inner {
    padding: 25px;
  }

  .btn, a.btn, button.btn {
    padding: 10px 30px;
    font-size: 14px;
  }

  .ft_btn_box {
    text-align: right;
  }

  a.btn--yellow {
    border-bottom: none;
  }

  .footer_logo {
    width: 60%;
    background-color: #fff;
    padding:5px;
  }

  .footer_a {
    font-size: 14px;
    margin-top: 15px;
  }

  .copyright {
    font-size: 10px;
  }

  .ct_top_text_box {
    margin-top: 15vw;
  }

  .ct_top_text_title {
    font-size: 25px;
  }

  .ct_form {
    width: 80%;
    margin: 12vw auto;
  }

  .ct_list {
    font-size: 14px;
    margin-top: 30px;
  }

  input[type=text], input[type=tel], input[type=email] {
    padding: 10px;
  }

  textarea {
    font-size: 14px;
    padding: 10px;
  }

  .ct_btn {
    width: 80%;
    padding: 10px 15px;
    font-size: 16px;
  }

}