@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  font-family: "Kiwi Maru", serif;
  letter-spacing: 0.2vw;
  position: relative;
  z-index: -100;
  background-color: #fff;
}

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

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.backInUp {
  animation-name: backInUp;
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #lower {
    padding: 0;
  }
}
#lower .lower {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 35vw;
  position: relative;
  z-index: -10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 60vw;
  }
}
#lower .lower .lower_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
}
#lower .lower .lower_title {
  position: absolute;
  bottom: 30%;
  left: 0%;
  color: #fff;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title {
    bottom: 20%;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title {
    bottom: 20%;
  }
}
#lower .lower .lower_title h2 {
  display: table;
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 0 2vw;
  border-bottom: 1px solid #fff;
  margin-bottom: 1vw;
  letter-spacing: 0.4vw;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title h2 {
    font-size: 1.8rem;
    letter-spacing: 0.8vw;
  }
}

p {
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

header {
  width: 100%;
  z-index: 9999999999;
}
@media screen and (max-width: 768px) {
  header {
    border-bottom: none;
    margin-bottom: 0vw;
  }
}

.header.change-color {
  background-color: #333;
  transition: 0.3s;
}

.header_group {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
}
.header_group #header_pc {
  background: rgba(72, 181, 206, 0.75);
  padding: 0 2vw;
}
@media screen and (max-width: 768px) {
  .header_group #header_pc {
    display: none;
  }
}
.header_group #header_pc .header_bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  padding-top: 1rem;
}
.header_group #header_pc .header_bar .header_logo {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_bar .header_logo {
    width: 30vw;
  }
}
.header_group #header_pc .header_bar .header_logo img {
  width: 100%;
}
.header_group #header_pc .header_bar .header_contact {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
.header_group #header_pc .header_bar .header_contact li {
  width: auto;
  padding: 0 1rem;
}
.header_group #header_pc .header_bar .header_contact li a {
  text-decoration: none;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_tel {
  color: #fff;
  font-size: 1.4rem;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_tel i {
  padding-right: 0.5rem;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_style {
  color: #48b6ce;
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 1rem;
  transition: all 0.4s;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_style:hover {
  opacity: 0.75;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_style i {
  padding-right: 0.5rem;
}
.header_group #header_pc .header_menu {
  text-align: center;
  width: 100%;
}
.header_group #header_pc .header_menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}
.header_group #header_pc .header_menu ul li {
  width: auto;
}
.header_group #header_pc .header_menu ul li span {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li span {
    font-size: 0.8rem;
  }
}
.header_group #header_pc .header_menu ul li a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: all 0.4s;
}
.header_group #header_pc .header_menu ul li a i {
  display: block;
}
.header_group #header_pc .header_menu ul li a button {
  display: block;
  font-size: 1.2rem;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li a button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header_group #header_pc .header_menu ul li a button {
    display: none;
  }
}
.header_group #header_pc .header_menu ul li a:hover, .header_group #header_pc .header_menu ul li a:active {
  color: #07687d;
}

#header_sp {
  background-color: rgba(72, 181, 206, 0.75);
  position: relative;
}
@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    display: none;
  }
}
#header_sp .header_logo {
  width: 60%;
  padding: 1rem;
}
#header_sp .header_logo img {
  width: 100%;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
}
.hamburger::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 50px;
  height: 60px;
  top: 10%;
  right: 19%;
  background-color: #1c90b0;
}
.hamburger img {
  width: 15px;
  display: block;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger p {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 9.5px;
  color: #fff;
}

.hamburger span:nth-child(1) {
  top: 18px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(2) {
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(3) {
  top: 42px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 35%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 35%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #000;
  background-color: rgba(72, 181, 206, 0.85);
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 25vh auto;
  padding: 0;
  width: 80%;
  text-align: center;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 1rem;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0.25em 0;
  text-decoration: none;
  font-size: 1rem;
}

nav.globalMenuSp ul li a i {
  padding-right: 0.5rem;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0);
}

#sample_img img, #header_sample img, #footer_sample img {
  width: 100%;
}

#top_main {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #top_main {
    height: 40vh;
  }
}
#top_main .slide-images {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    height: 40vh;
  }
}
#top_main .slide-images::after {
  position: relative;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#top_main .slide-images .slick-list {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main .top_main_writing {
  position: absolute;
  top: 45vh;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing {
    top: 45vh;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing {
    top: 15vh;
  }
}
#top_main .top_main_writing .top_main_text_en {
  margin-bottom: 0.5rem;
  overflow: hidden;
}
#top_main .top_main_writing .top_main_text_en p {
  font-size: 8rem;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.4vw;
  line-height: 1.3;
  animation: textAnime 2s 0s forwards ease-in-out;
  transform: translateY(100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_en p {
    font-size: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_en p {
    font-size: 5rem;
  }
}
#top_main .top_main_writing .top_main_text_en p img {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_en p img {
    width: 40vw;
  }
}
#top_main .top_main_writing .top_main_text_ja {
  overflow: hidden;
}
#top_main .top_main_writing .top_main_text_ja p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  transform: translateY(200%);
  animation: textanimation 2.5s forwards;
  text-shadow: 0 0 10px #000;
  /* 1文字目 */
  /* 2文字目 */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 1.2rem;
  }
}
#top_main .top_main_writing .top_main_text_ja p:nth-child(1) {
  animation-delay: 0s;
}
#top_main .top_main_writing .top_main_text_ja p:nth-child(2) {
  animation-delay: 0.5s;
}
#top_main .top_main_writing .top_main_text_ja p strong {
	display: block;
	width: 100%;
	font-size: 4rem;
	padding: 0.5rem 0;
	margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_ja p strong {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja p strong {
    font-size: 1.8rem;
  }
#top_main .top_main_writing .top_main_text_ja p strong img{
	width:100%;
}
}
#top_main #top_blog {
  padding: 4rem 0;
}
#top_main #top_blog .top_blog {
  width: 70%;
  padding: 3rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_blog .top_blog {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_blog .top_blog {
    position: relative;
    bottom: 0;
    top: 100%;
    width: 100%;
    padding: 18vw 8vw;
  }
}
#top_main .top_contents_btn {
  width: 20%;
  margin: 30px auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_contents_btn {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_contents_btn {
    width: 100%;
  }
}

@keyframes textAnime {
  0% {
    opacity: 0;
    transform: scale(0.5);
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
  }
}
@keyframes textanimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
  }
}
.slide-images {
  overflow: hidden;
  margin: 0 auto;
}
.slide-images .slider-item {
  font-size: 0;
  height: 100%;
}
.slide-images .slider-item img {
  width: 100%;
}
.slide-images .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
#concept .concept {
  background-color: #f1f1f1;
  padding: 8vw 0;
}
#concept .concept .top_title {
  text-align: center;
}
#concept .concept .concept_text {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_text {
    width: 90%;
  }
}

#reason .reason .reason_contents ul {
  list-style: none;
  width: 70%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li:nth-child(1) h3 {
    padding: 8vw 5vw !important;
    padding-left: 5vw;
  }
}
#reason .reason .reason_contents ul li .reason_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f1f1f1;
}
#reason .reason .reason_contents ul li .reason_headline h3 {
  width: 20%;
  background-color: #fff;
  color: #fff;
  padding: 1.5vw;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_headline h3 {
    padding: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_headline h3 {
    padding: 11vw 5vw;
    font-size: 6vw;
    width: 30%;
  }
}
#reason .reason .reason_contents ul li .reason_headline h3::after {
  position: relative;
  content: "";
  right: 100%;
  top: 0;
  width: 1vw;
  height: 100%;
  background-color: #fff;
}
#reason .reason .reason_contents ul li .reason_headline h3::before {
  position: relative;
  content: "";
  right: 100%;
  top: 100%;
  border-bottom: 1vw solid transparent;
  border-right: 1vw solid #fff;
}
#reason .reason .reason_contents ul li .reason_headline h4 {
  width: 80%;
  padding: 1.5vw 0;
  padding-left: 2vw;
  color: #fff;
  background-color: #f1f1f1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_headline h4 {
    padding: 2.5vw;
    padding-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_headline h4 {
    width: 70%;
    padding: 8vw 5vw;
    padding-left: 5vw;
    font-size: 5vw;
  }
}
#reason .reason .reason_contents ul li .reason_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
  border: 1px solid #f1f1f1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_content {
    padding: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content {
    padding: 10vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content {
    flex-flow: column-reverse;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content .reason_text {
    width: 90%;
    margin: auto;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_text p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_content .reason_text p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content .reason_text p {
    font-size: 4vw;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_image {
  width: 35%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content .reason_image {
    width: 65%;
    margin-bottom: 6vw;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_image::after {
  position: relative;
  content: "";
  z-index: -1;
  top: 2%;
  left: -5%;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#reason .reason .reason_contents ul li .reason_content .reason_image img {
  width: 100%;
}
#reason .reason .reason_contents .reason_writing {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents .reason_writing {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents .reason_writing {
    width: 95%;
  }
}
#reason .reason .reason_contents .reason_writing h4 {
  margin-bottom: 2vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents .reason_writing h4 {
    margin-bottom: 4vw;
  }
}
#reason .reason .reason_contents .reason_writing h4 span {
  display: inline-block;
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents .reason_writing h4 span {
    font-size: 6vw;
  }
}

#greeting {
  padding: 5rem 0;
  background-color: #d9f1ee;
}
@media screen and (max-width: 768px) {
  #greeting {
    padding: 3rem 0;
  }
}
#greeting .greeting {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .fade-in {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .fade-in-up {
    transform: translate(0, 0) !important;
  }
}
#greeting .greeting .greeting_contents .greeting_headline {
  margin-bottom: 2rem;
}
#greeting .greeting .greeting_contents .greeting_headline h2 {
  font-size: 2rem;
  color: #48b6ce;
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_headline h2 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
  }
}
#greeting .greeting .greeting_contents .greeting_headline h2 span {
  width: 10%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_headline h2 span {
    width: 20%;
  }
}
#greeting .greeting .greeting_contents .greeting_headline h2 span img {
  width: 100%;
}
#greeting .greeting .greeting_contents .greeting_headline p {
  text-align: center;
}
#greeting .greeting .greeting_contents .greeting_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group {
    display: block;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_text {
  width: 58%;
  padding: 2rem;
  background-color: #fffcf4;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_text h3 {
  color: #48b6ce;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text p {
    text-align: left;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_img {
  width: 38%;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_img {
    width: 50%;
    margin: 0 auto;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_img img {
  width: 100%;
}

#vision {
  padding: 5rem 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #vision {
    padding: 3rem 0;
  }
}
#vision .vision {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #vision .vision {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #vision .vision {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #vision .vision .vision_contents .fade-in {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 768px) {
  #vision .vision .vision_contents .fade-in-up {
    transform: translate(0, 0) !important;
  }
}
#vision .vision .vision_contents .vision_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #vision .vision .vision_contents .vision_group {
    display: block;
  }
}
#vision .vision .vision_contents .vision_group .vision_text {
  width: 100%;
  padding: 2rem;
  background-color: #edfbfa;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #vision .vision .vision_contents .vision_group .vision_text {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#vision .vision .vision_contents .vision_group .vision_text h3 {
  font-size: 2.5rem;
  color: #48b6ce;
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 2rem;
}
#vision .vision .vision_contents .vision_group .vision_text p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #vision .vision .vision_contents .vision_group .vision_text p {
    text-align: left;
  }
}

#thoughts {
  padding: 5rem 0;
  background-color: #fffcf4;
}
@media screen and (max-width: 768px) {
  #thoughts {
    padding: 3rem 0;
  }
}
#thoughts .thoughts {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #thoughts .thoughts {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #thoughts .thoughts {
    width: 90%;
  }
}
#thoughts .thoughts .thoughts_headline h2 {
  font-size: 2.5rem;
  color: #48b6ce;
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #thoughts .thoughts .thoughts_headline h2 {
    font-size: 1.5rem;
  }
}
#thoughts .thoughts .thoughts_contents {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #thoughts .thoughts .thoughts_contents {
    display: block;
  }
}
#thoughts .thoughts .thoughts_contents li {
  width: 48%;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #thoughts .thoughts .thoughts_contents li {
    width: 100%;
    margin: 1rem 0;
  }
}
#thoughts .thoughts .thoughts_contents li .thoughts_bg {
  height: 24vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #thoughts .thoughts .thoughts_contents li .thoughts_bg {
    height: 30vh;
  }
}
#thoughts .thoughts .thoughts_contents li .thoughts_text {
  padding: 2rem 0;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text h3 {
  color: #48b6ce;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #thoughts .thoughts .thoughts_contents li .thoughts_text h3 {
    font-size: 1.2rem;
  }
}
#thoughts .thoughts .thoughts_contents li .thoughts_text h3 i {
  color: #fff;
  padding: 1rem;
  border-radius: 5rem;
  margin-bottom: 1rem;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text h3 .fa-sack-dollar {
  background-color: #82ce48;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text h3 .fa-house {
  background-color: #ffa229;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text h3 .fa-comments {
  background-color: #82ce48;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text h3 .fa-car {
  background-color: #ffa229;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text p a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  background-color: #48b6ce;
  border-radius: 1rem;
  padding: 0.5rem 3rem;
  margin-top: 1rem;
  transition: all 0.4s;
}
#thoughts .thoughts .thoughts_contents li .thoughts_text p a:hover {
  opacity: 0.75;
}

#about_theraphy {
  padding: 5rem 0;
  background-color: #fff;
  border-bottom: solid 1px #76c8da;
}
@media screen and (max-width: 768px) {
  #about_theraphy {
    padding: 3rem 0;
  }
}
#about_theraphy .about_theraphy {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about_theraphy .about_theraphy {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .fade-in {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .fade-in-up {
    transform: translate(0, 0) !important;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline {
  margin-bottom: 2rem;
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline h2 {
  font-size: 2rem;
  color: #ec6c00;
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline h2 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline h2 span {
  width: 10%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline h2 span {
    width: 20%;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline h2 span img {
  width: 100%;
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_headline p {
  text-align: center;
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group {
    display: block;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_text {
  width: 58%;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_text {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_text h3 {
  color: #48b6ce;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_text p {
    text-align: left;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_img {
  width: 38%;
}
@media screen and (max-width: 768px) {
  #about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_img {
    width: 75%;
    margin: 0 auto;
    padding-bottom: 3rem;
  }
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_group .about_theraphy_img img {
  width: 100%;
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_link {
  margin-top: 2rem;
  text-align: center;
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_link a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  background-color: #ec6c00;
  border-radius: 1rem;
  padding: 0.5rem 3rem;
  margin-top: 1rem;
  transition: all 0.4s;
}
#about_theraphy .about_theraphy .about_theraphy_contents .about_theraphy_link a:hover {
  opacity: 0.75;
}

#top_blog {
  background-color: #fff;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  #top_blog {
    padding: 3rem 0;
  }
}
#top_blog .top_blog {
  width: 80%;
  margin: auto;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog {
    width: 90%;
  }
}
#top_blog .top_blog .top_headline {
  margin-bottom: 3rem;
}
#top_blog .top_blog .top_headline h2 {
  font-size: 2.5rem;
  color: #48b6ce;
  display: block;
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_headline h2 {
    font-size: 1.5rem;
  }
}
#top_blog .top_blog .top_blog_contents {
  margin-bottom: 2rem;
}
#top_blog .top_blog .top_blog_contents ul {
  list-style: none;
  border-top: 1px solid #48b6ce;
  margin-bottom: 0.5vw;
}
#top_blog .top_blog .top_blog_contents ul a {
  color: #48b6ce;
  text-decoration: none;
}
#top_blog .top_blog .top_blog_contents ul a:hover .blog_link_btn {
  color: #ddd;
  background-color: #fff;
}
#top_blog .top_blog .top_blog_contents ul a li {
  border-bottom: 1px solid #48b6ce;
  padding: 1.5rem 0;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li {
    padding: 1rem 0;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#top_blog .top_blog .top_blog_contents ul a li .outline .list {
  width: 70%;
}
#top_blog .top_blog .top_blog_contents ul a li .outline .list .date {
  color: #48b6ce;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .list .date {
    padding: 0.25rem 0;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .list .title {
  color: #48b6ce;
  font-size: 1rem;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow {
  width: auto;
  text-align: right;
  color: #48b6ce;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a .blog_arrow {
    display: none;
  }
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow .blog_link_btn {
  color: #48b6ce;
  background-color: #fff;
  border: 1px solid #48b6ce;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  z-index: 15;
  transition: 0.4s all;
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow .blog_link_btn i {
  font-size: 140%;
}
#top_blog .top_blog .top_blog_contents ul a:hover .blog_arrow .blog_link_btn {
  color: #fff;
  background-color: #48b6ce;
}
#top_blog .top_blog .top_blog_btn {
  text-align: right;
}
#top_blog .top_blog .top_blog_btn a {
  color: #fff;
  background-color: #48b6ce;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_btn a:hover {
  color: #48b6ce;
  background-color: #fff;
  border: 1px solid #48b6ce;
}

#banner {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
#banner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}
#banner .banner_headline {
  background-color: #48b6ce;
  padding: 2rem 0;
}
#banner .banner_headline h3 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #banner .banner_headline h3 {
    font-size: 1.5rem;
  }
}
#banner .banner_headline p {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
#banner .banner {
  width: 85%;
  margin: 0 auto;
  position: relative;
  padding: 5rem 0;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #banner .banner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #banner .banner {
    width: 90%;
  }
}
#banner .banner .banner_contents .banner_link {
  width: 100%;
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
}
#banner .banner .banner_contents .banner_link li {
  width: 33.3333333333%;
  padding: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #banner .banner .banner_contents .banner_link li {
    width: 100%;
  }
}
#banner .banner .banner_contents .banner_link li a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #banner .banner .banner_contents .banner_link li a {
    text-align: center;
    width: 100%;
  }
}
#banner .banner .banner_contents .banner_link li a img {
  width: 100%;
}
#banner .banner .banner_contents .banner_link li a span {
  display: block;
  padding: 1rem 0;
  z-index: 1;
  font-weight: 600;
  position: relative;
  color: #fff;
  background-color: #48b6ce;
  border-radius: 1rem;
}
#banner .banner .banner_contents .banner_link li a span i {
  display: block;
  padding-right: 0.5rem;
}
#banner .banner .banner_contents .banner_link li a:hover {
  opacity: 0.75;
}

.accordion-container {
  margin: 50px auto 0;
  width: 60%;
  text-align: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .accordion-container {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .accordion-container {
    width: 95%;
  }
}
.accordion-container .more {
  position: relative;
  width: 20%;
  margin: 4vw auto;
  color: #fff;
}
.accordion-container .more::after {
  position: absolute;
  content: "+";
  top: 50%;
  right: 5%;
  color: #fff;
  transform: translate(0, -50%);
}
.accordion-container .more_contents {
  display: none;
}

.active {
  display: block !important;
}

.accordion-list:not(:first-child) {
  margin-top: 1vw;
}
@media screen and (max-width: 768px) {
  .accordion-list:not(:first-child) {
    margin-top: 2.4vw;
  }
}

.accordion-title {
  background: #fff;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accordion-title {
    font-size: 4vw;
  }
}
.accordion-title span {
  display: inline-block;
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  .accordion-title span {
    font-size: 5vw;
  }
}

.accordion-title:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #fff;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.accordion-title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.accordion-title.open:before {
  transform: rotate(180deg);
}

.accordion-title.open:after {
  opacity: 0;
}

.accordion-text {
  color: #333;
  border-left: 2px solid #f1f1f1;
  border-right: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  display: none;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .accordion-text p {
    font-size: 3vw;
  }
}
.accordion-text span {
  display: inline-block;
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  .accordion-text span {
    font-size: 5vw;
  }
}

#blog {
  padding: 0 0 5rem 0;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #blog {
    width: 90%;
  }
}
#blog .blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #blog .blog {
    display: block;
    justify-content: center;
    align-items: center;
  }
}
#blog .blog .blog_contents {
  width: 65%;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents {
    width: 100%;
    margin: 0 auto;
  }
}
#blog .blog .blog_contents h3 {
  color: #000;
  border-bottom: solid 1px rgba(34, 34, 34, 0.4);
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents h3 {
    font-size: 1.2rem;
  }
}
#blog .blog .blog_contents ul {
  list-style: none;
}
#blog .blog .blog_contents ul a {
  color: #555;
  text-decoration: none;
}
#blog .blog .blog_contents ul a li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}
#blog .blog .blog_contents ul a li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#blog .blog .blog_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
}
#blog .blog .blog_contents ul a li .outline .date {
  font-size: 1.3rem;
  letter-spacing: 0.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents ul a li .outline .date {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .date {
    font-size: 4vw;
  }
}
#blog .blog .blog_contents ul a li .outline .title {
  font-size: 1rem;
}
#blog .blog .blog_contents ul a li .outline .descn {
  font-size: 0.8vw;
}
#blog .blog .blog_contents .navigation {
  display: block;
  margin-top: 2rem;
}
#blog .blog .monthly-archive {
  width: 30%;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .monthly-archive {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .monthly-archive {
    width: 100%;
    margin: 2rem auto 0 auto;
  }
}
#blog .blog .monthly-archive h4 {
  color: #222;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .monthly-archive h4 {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .monthly-archive h4 {
    font-size: 4vw;
  }
}
#blog .blog .monthly-archive h3 {
  color: #000;
  border-bottom: solid 1px rgba(34, 34, 34, 0.4);
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .monthly-archive h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .monthly-archive h3 {
    font-size: 1.2rem;
  }
}
#blog .blog .monthly-archive ul {
  list-style: none;
}
#blog .blog .monthly-archive ul li {
  padding: 0.5rem 0;
}
#blog .blog .monthly-archive ul li a {
  color: #000;
  font-size: 1rem;
}

#blog_single {
  padding: 0 0 5rem 0;
}
#blog_single .blog_single {
  width: 70%;
  padding: 3rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single {
    width: 90%;
  }
}
#blog_single .blog_single .blog_contents ul {
  list-style: none;
  color: #555;
  text-decoration: none;
}
#blog_single .blog_single .blog_contents ul li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#blog_single .blog_single .blog_contents ul li .thumb img {
  width: 100%;
  height: 100%;
}
#blog_single .blog_single .blog_contents ul li .outline .date {
  font-size: 0.8vw;
  letter-spacing: 0.1vw;
  border-bottom: solid 1px #ddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single .blog_contents ul li .outline .date {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single .blog_contents ul li .outline .date {
    font-size: 2vw;
  }
}
#blog_single .blog_single .blog_contents ul li .outline .title {
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single .blog_contents ul li .outline .title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single .blog_contents ul li .outline .title {
    font-size: 1.3rem;
  }
}
#blog_single .blog_single .blog_contents ul li .outline .descn p {
  font-size: 1.1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single .blog_contents ul li .outline .descn p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single .blog_contents ul li .outline .descn p {
    font-size: 1.2rem;
  }
}

#dayservice .dayservice {
  overflow: hidden;
  padding-bottom: 3rem;
  background-color: #fffcf4;
}
#dayservice .dayservice:first-child {
  padding-top: 3rem;
}
#dayservice .dayservice .dayservice_contents .dayservice_content {
  padding: 4rem;
  width: 85%;
  margin: 0 auto 5rem auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 1rem;
  border: solid 5px rgba(72, 181, 206, 0.25);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content {
    width: 90%;
    padding: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content {
    width: 90%;
    padding: 1rem;
  }
}
#dayservice .dayservice .dayservice_contents .dayservice_content:nth-last-child(odd) {
  flex-direction: row-reverse;
}
#dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_headline {
  width: 100%;
  margin-bottom: 1rem;
}
#dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_headline h4 {
  text-align: center;
  color: #48b6ce;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_headline h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_headline h4 {
    font-size: 1.3rem;
    background-size: 40%;
    background-position: top center;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
#dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_textarea {
  width: 48%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_textarea {
    width: 100%;
  }
}
#dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_textarea p {
    font-size: 1rem;
  }
}
#dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_img {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_img {
    width: 100%;
  }
}
#dayservice .dayservice .dayservice_contents .dayservice_content .dayservice_img img {
  width: 100%;
}
#dayservice .dayservice .dayservice_support_program_group {
  background-color: #48b6ce;
}
#dayservice .dayservice .dayservice_support_program_group .dayservice_support_program {
  width: 85%;
  margin: 0 auto;
  padding: 3rem 0;
}
#dayservice .dayservice .dayservice_support_program_group .dayservice_support_program h4 {
  color: #fff;
  text-align: center;
  font-weight: 500;
}
#dayservice .dayservice .dayservice_support_program_group .dayservice_support_program p {
  text-align: center;
}
#dayservice .dayservice .dayservice_support_program_group .dayservice_support_program p a {
  color: #48b6ce;
  background-color: #fff;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: 0.4s all;
}
#dayservice .dayservice .dayservice_support_program_group .dayservice_support_program p a:hover {
  opacity: 0.75;
}

#support .support {
  overflow: hidden;
  background-color: #fffcf4;
  padding-bottom: 3rem;
}
#support .support:first-child {
  padding-top: 3rem;
}
#support .support .support_contents {
  list-style: none;
}
#support .support .support_contents .support_content {
  width: 85%;
  margin: 0 auto 0 auto;
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #support .support .support_contents .support_content {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #support .support .support_contents .support_content {
    width: 90%;
  }
}
#support .support .support_contents .support_content:nth-last-child(odd) {
  flex-direction: row-reverse;
}
#support .support .support_contents .support_content .support_headline {
  width: 100%;
  margin-bottom: 1rem;
}
#support .support .support_contents .support_content .support_headline h4 {
  position: relative;
  text-align: center;
  color: #48b6ce;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #support .support .support_contents .support_content .support_headline h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #support .support .support_contents .support_content .support_headline h4 {
    font-size: 1.1rem !important;
  }
}
#support .support .support_contents .support_content .support_headline h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, #6ad1c8, #6ad1c8 2px, #fff 2px, #fff 4px);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #support .support .support_contents .support_content .support_headline h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #support .support .support_contents .support_content .support_headline h4 {
    font-size: 1.3rem;
    background-size: 40%;
    background-position: top center;
    text-align: center;
  }
}
#support .support .support_contents .support_content .support_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: solid 1px rgba(78, 182, 206, 0.5);
}
#support .support .support_contents .support_content .support_group:last-child {
  border-bottom: none;
  flex-wrap: wrap-reverse;
}
#support .support .support_contents .support_content .support_group .support_textarea {
  width: 68%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #support .support .support_contents .support_content .support_group .support_textarea {
    width: 68%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #support .support .support_contents .support_content .support_group .support_textarea {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #support .support .support_contents .support_content .support_group .support_textarea {
    width: 100%;
  }
}
#support .support .support_contents .support_content .support_group .support_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #support .support .support_contents .support_content .support_group .support_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #support .support .support_contents .support_content .support_group .support_textarea p {
    font-size: 1rem;
  }
}
#support .support .support_contents .support_content .support_group .support_img {
  width: 28%;
}
#support .support .support_contents .support_content .support_group .support_img img {
  width: 100%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #support .support .support_contents .support_content .support_group .support_img {
    width: 28%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #support .support .support_contents .support_content .support_group .support_img {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #support .support .support_contents .support_content .support_group .support_img {
    width: 70%;
    margin: 3rem auto 0 auto;
  }
}
#support .support .support_program_group {
  background-color: #48b6ce;
}
#support .support .support_program_group .support_program {
  width: 85%;
  margin: 0 auto;
  padding: 3rem 0;
}
#support .support .support_program_group .support_program h4 {
  color: #fff;
  text-align: center;
  font-weight: 500;
}
#support .support .support_program_group .support_program p {
  text-align: center;
}
#support .support .support_program_group .support_program p a {
  color: #48b6ce;
  background-color: #fff;
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: 0.4s all;
}
#support .support .support_program_group .support_program p a:hover {
  opacity: 0.75;
}

#recruit {
  background-color: #fffcf4;
}
#recruit .recruit_contents {
  padding: 3rem 0;
  margin: auto;
  position: relative;
}
#recruit .recruit_contents p {
  text-align: center;
  font-size: 1.2rem;
}
#recruit .recruit_contents .recruit_title h2 {
  color: #48b6ce;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
#recruit .recruit_contents .recruit_title h2 span {
  display: block;
  font-size: 1.5rem;
}
#recruit .recruit_contents .recruit_detail {
  width: 70%;
  margin: auto;
  padding: 5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents .recruit_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail {
    width: 95%;
  }
}
#recruit .recruit_contents .recruit_detail p {
  color: #48b6ce;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
#recruit .recruit_contents .recruit_detail table {
  display: block;
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  padding: 3rem;
  border-radius: 1rem;
  border: solid 5px rgba(72, 181, 206, 0.25);
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table {
    padding: 1.5rem;
  }
}
#recruit .recruit_contents .recruit_detail table tbody {
  width: 100%;
  display: inline-table;
}
#recruit .recruit_contents .recruit_detail table tbody tr {
  border-bottom: 1px solid #48b6ce;
}
#recruit .recruit_contents .recruit_detail table tbody tr th, #recruit .recruit_contents .recruit_detail table tbody tr td {
  color: #fff;
  padding: 1.4vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents .recruit_detail table tbody tr th, #recruit .recruit_contents .recruit_detail table tbody tr td {
    padding: 2vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tbody tr th, #recruit .recruit_contents .recruit_detail table tbody tr td {
    padding: 3vw;
    font-size: 2.2vw;
  }
}
#recruit .recruit_contents .recruit_detail table tbody tr th {
  color: #48b6ce;
  width: 30%;
}
#recruit .recruit_contents .recruit_detail table tbody tr td {
  color: #000;
  width: 70%;
}

#company {
  background-color: #fffcf4;
}
#company .company .company_contents {
  width: 80%;
  margin: auto;
  padding: 5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 95%;
  }
}
#company .company .company_contents p {
  color: #48b6ce;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
#company .company .company_contents table {
  display: block;
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  padding: 3rem;
  border-radius: 1rem;
  border: solid 5px rgba(72, 181, 206, 0.25);
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table {
    padding: 1.5rem;
  }
}
#company .company .company_contents table tbody {
  width: 100%;
  display: inline-table;
}
#company .company .company_contents table tbody tr {
  border-bottom: 1px solid #48b6ce;
}
#company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
  color: #fff;
  padding: 1.4vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
    padding: 2vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
    padding: 3vw;
    font-size: 2.2vw;
  }
}
#company .company .company_contents table tbody tr th {
  color: #48b6ce;
  width: 30%;
}
#company .company .company_contents table tbody tr td {
  color: #000;
  width: 70%;
}
#company .company .company_contents .company_photo {
  margin-top: 5rem;
}
#company .company .company_contents .company_photo h3 {
  font-size: 2.5rem;
  color: #48b6ce;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_photo h3 {
    font-size: 2rem;
  }
}
#company .company .company_contents .company_photo ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#company .company .company_contents .company_photo ul li {
  width: 33.3333333333%;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_photo ul li {
    width: 100%;
  }
}
#company .company .company_contents .company_photo ul li .company_photo_bg {
  display: block;
  height: 20vw;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_photo ul li .company_photo_bg {
    height: 60vw;
  }
}
#company .company .company_contents .company_photo ul li h5 {
  text-align: center;
  color: #fff;
  padding: 0.5rem 0;
  background-color: #48b6ce;
}

#contact .contact {
  width: 80%;
  margin: 5rem auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 95%;
  }
}
#contact .contact .contact_text {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text {
    text-align: left;
  }
}
#contact .contact .contact_text p {
  line-height: 3vw;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text p {
    font-size: 1.4vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    font-size: 3.3vw;
    line-height: 6vw;
  }
}
#contact .contact .form {
  width: 100%;
  margin-bottom: 8vw;
}
#contact .contact .form .wpcf7 {
  background-color: #fff;
  padding: 3rem;
  border: solid 5px rgba(72, 181, 206, 0.25);
  border-radius: 1rem;
  margin:3rem auto 0 auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .wpcf7 {
    padding: 5rem 1rem 5rem;
  }
}
#contact .contact .form .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  font-size: 100%;
  font-weight: 600;
  color: #333333;
}
#contact .contact .form .wpcf7 label .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .blue {
  background-color: #2986ff;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}
#contact .contact .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  height: 250px;
  resize: vertical;
}
#contact .contact .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .form .wpcf7 .wpcf7 input[type=url], #contact .contact .form .wpcf7 .wpcf7 input[type=email], #contact .contact .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 20px;
}
#contact .contact .form .wpcf7 input[type=submit] {
  color: #fff;
  background-color: #204373;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border: none;
  width: 80%;
  margin: auto 10%;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
}
#contact .contact .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#contact .contact .form .wpcf7 .wpcf7-response-output {
  font-size: 160%;
  text-align: center;
  padding: 1rem;
  color: #333;
  font-weight: 600;
}
#contact .contact .form .wpcf7 .wpcf7-form-control {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
#contact .contact .form .thanks {
  text-align: center;
  font-size: 140%;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .thanks {
    text-align: left;
    font-size: 100%;
  }
}

#policy_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #policy_main {
    padding: 0;
  }
}
#policy_main #policy_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main #policy_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg {
    padding-top: 280px;
  }
}
#policy_main #policy_main_bg .policy_main_title {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 48px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main #policy_main_bg .policy_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_title {
    left: 55%;
    font-size: 24px;
  }
}
#policy_main #policy_main_bg .policy_main_logo {
  position: absolute;
  width: 30%;
  height: 300px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main #policy_main_bg .policy_main_logo {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_logo {
    width: 45%;
    height: 100px;
  }
}
#policy_main #policy_main_bg .policy_main_logo img {
  width: 60%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_logo img {
    width: 80%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_logo .policy_main_text {
    font-size: 10px;
  }
}

.policy_contents {
  width: 80%;
  margin: auto;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
    margin-top: 60px;
  }
}
.policy_contents h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 15px;
  }
}
.policy_contents p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy_contents p {
    font-size: 10px;
  }
}

footer {
  position: relative;
  padding-bottom: 3rem;
  background-position: bottom;
  background-size: cover;
}
footer .footer_menu {
  margin-bottom: 2rem;
  background-color: rgba(72, 181, 206, 0.75);
  z-index: 1;
  position: relative;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer_menu {
    padding: 0 0rem;
  }
}
footer .footer_menu ul {
  padding: 2vw 0;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu ul {
    padding: 1rem 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul {
    padding: 1rem 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer_menu ul li {
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu ul li {
    width: 25%;
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul li {
    width: 48%;
    padding: 0.5rem 0;
  }
}
footer .footer_menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 100%;
  transition: all 0.4s;
}
footer .footer_menu ul li a:hover {
  opacity: 0.75;
}
footer #footer_contact .footer_contact {
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
}
footer #footer_contact .footer_contact .footer_contact_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.6);
}
footer #footer_contact .footer_contact .footer_contact_title {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title {
    width: 90%;
  }
}
footer #footer_contact .footer_contact .footer_contact_title p {
  margin-bottom: 0.8vw;
  font-family: sans-serif;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title p {
    margin-bottom: 2vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title h2 {
  margin-bottom: 2vw;
  letter-spacing: 0.6vw;
  font-size: 4vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title h2 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a {
  text-decoration: none;
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  padding: 1.5vw 6vw;
  transition: all 0.4s;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
    padding: 3vw 12vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button:hover {
  background: #c9b789;
  border: none;
}
footer #footer .footer .footer_contact {
  background-color: #1c90b0;
  padding: 3rem 0;
}
footer #footer .footer .footer_contact .footer_link {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link {
    font-size: 0.7rem;
  }
}
footer #footer .footer .footer_contact .footer_link a {
  font-size: 1.5rem;
  color: #1c90b0;
  background-color: #fff;
  display: inline-block;
  margin: 0 auto;
  border-radius: 3rem;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.4s;
}
footer #footer .footer .footer_contact .footer_link a i {
  margin-right: 1rem;
}
footer #footer .footer .footer_contact .footer_link a:hover {
  color: #000;
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link a {
    font-size: 0.8rem;
  }
}
footer #footer .footer .access {
  width: 100%;
  margin: auto;
}
footer #footer .footer .access .access_headline {
  width: 100%;
  text-align: center;
  margin-bottom: 3vw;
}
footer #footer .footer .access .access_headline h3 {
  font-size: 3vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .access_headline h3 {
    font-size: 1rem;
  }
}
footer #footer .footer .access .access_headline p a {
  color: #333;
}
footer #footer .footer .access .footer_logo {
  width: 85%;
  margin: 0 auto;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access .footer_logo {
    width: 90%;
  }
}
footer #footer .footer .access .footer_logo img {
  width: 40%;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_logo img {
    width: 80%;
    margin: 0 auto;
  }
}
footer #footer .footer .access .footer_logo .footer_logo_p {
  color: #fff;
  text-align: center;
}
footer #footer .footer .access .company_detail_group {
  width: 85%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access .company_detail_group {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group {
    display: block;
    margin-top: 2rem;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left .company_detail {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail h3 {
  margin-bottom: 0.6vw;
  color: #333;
  font-weight: 600;
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail p {
  margin-bottom: 0.3vw;
  font-family: sans-serif;
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left .company_detail p {
    text-align: center;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail span {
  padding-left: 1rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left .company_detail span {
    padding-left: 0;
    display: block;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_right {
  width: 28%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_right {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact {
  list-style: none;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li {
  margin: 1rem 0;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li a {
  display: block;
  padding: 0.5rem;
  color: #fff;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.4s;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li a i {
  padding-right: 0.5rem;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li a:hover {
  opacity: 0.75;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li .line {
  background-color: #5eb356;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li .insta {
  background-color: #CF2E92;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li .tiktok {
  background-color: #000;
}
footer #footer .footer .access .copyright {
  text-align: center;
  color: #fff;
  padding-top: 0.6vw;
  padding-bottom: 0.5vw;
}
footer #footer .footer .access .copyright p {
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .copyright p {
    padding-top: 2vw;
    padding-bottom: 1.5vw;
  }
}
footer #footer .footer .map {
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .map {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .map {
    height: 50vw;
  }
}
footer #footer .footer .map iframe {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */