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

body {
  background-color: #fff;
  color: #333;
  font-family: sans-serif;
}

@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;
  }
}

a {
  text-decoration: none;
  color: #333;
}

.top_contents_btn a button {
  border: none;
  padding: 20px 120px;
  font-size: 18px;
  transition: all 0.4s;
  color: #333;
  background-color: #00CCCC;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_contents_btn a button {
    padding: 20px 90px;
  }
}
@media screen and (max-width: 768px) {
  .top_contents_btn a button {
    padding: 10px 80px;
    font-size: 12.5px;
  }
}
.top_contents_btn a button:hover {
  background-color: rgba(0, 204, 204, 0.3);
}
.top_contents_btn a button .fa-solid {
  padding-left: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_contents_btn a button .fa-solid {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top_contents_btn a button .fa-solid {
    padding-left: 20px;
  }
}

.contents_btn {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .contents_btn {
    margin-top: 40px;
  }
}
.contents_btn a button {
  border: none;
  padding: 20px 180px;
  font-size: 18px;
  transition: all 0.4s;
  color: #333;
  background-color: #00CCCC;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contents_btn a button {
    padding: 20px 90px;
  }
}
@media screen and (max-width: 768px) {
  .contents_btn a button {
    padding: 10px 80px;
    font-size: 12.5px;
  }
}
.contents_btn a button:hover {
  background-color: rgba(0, 204, 204, 0.3);
}
.contents_btn a button .fa-solid {
  padding-left: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contents_btn a button .fa-solid {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contents_btn a button .fa-solid {
    padding-left: 20px;
  }
}

.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);
}

p {
  font-size: 18px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 12.5px;
  }
}

h1 {
  font-size: 48px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 36px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 18px;
  }
}

.lower_headline_image {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .lower_headline_image {
    margin-top: 40px;
  }
}

.lower_headline {
  text-align: center;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .lower_headline {
    margin-bottom: 40px;
  }
}

.wp-pagenavi span.current {
  color: #fff;
  padding: 10px;
  margin: 0 10px;
  background-color: #00CCCC;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span.current {
    padding: 5px;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
}

header {
  position: fixed;
  width: 100%;
  z-index: 99999;
  height: 60px;
  display: flex;
  align-items: center;
  top: 0;
}
@media screen and (max-width: 768px) {
  header {
    height: 45px;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  background-color: #333;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 45px;
    height: 45px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    width: 25px;
  }
}

.hamburger span:nth-child(1) {
  top: 20px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(1) {
    top: 12px;
  }
}

.hamburger span:nth-child(2) {
  top: 30px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(2) {
    top: 21px;
  }
}

.hamburger span:nth-child(3) {
  top: 40px;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 30px;
  }
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 45%;
  transform: rotate(-45deg) translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .hamburger.active span:nth-child(1) {
    top: 10px;
  }
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  left: 10%;
  transform: rotate(45deg) translate(50%, 0);
}
@media screen and (max-width: 768px) {
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 10px;
    left: 6%;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: rgba(0, 204, 204, 0.9);
  text-align: start;
  padding-left: 20px;
  transform: translateX(400%);
  transition: all 0.6s;
  width: 25%;
  height: 100vh;
  visibility: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  nav.globalMenuSp {
    width: 40%;
    transform: translateX(250%);
  }
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp {
    width: 100%;
    transform: translateX(100%);
  }
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul img {
  margin: 20px 0;
  height: 30px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  margin-top: 20px;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:last-child a::after {
  display: none;
}
nav.globalMenuSp ul li:last-child i::before {
  margin-right: 10px;
}

nav.globalMenuSp ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
nav.globalMenuSp ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  bottom: 0;
  height: 2px;
  margin: -5px 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s ease-in 0s;
}
nav.globalMenuSp ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 12.5px;
  }
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(300%);
  visibility: visible;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  nav.globalMenuSp.active {
    transform: translateX(150%);
  }
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
}

.header_logo {
  height: 45px;
  display: inline-block;
  margin-left: 30px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .header_logo {
    margin-left: 15px;
    height: 22px;
  }
}
.header_logo img {
  height: 100%;
}

.header_contact_btn {
  position: absolute;
  top: 0;
  right: 60px;
}
@media screen and (max-width: 768px) {
  .header_contact_btn {
    right: 45px;
  }
}
.header_contact_btn a button {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: none;
  transition: all 0.3s;
  color: #fff;
  background: #00B900;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .header_contact_btn a button {
    width: 45px;
    height: 45px;
  }
}
.header_contact_btn a button:hover {
  opacity: 0.7;
}
.header_contact_btn a button .fa-brands {
  color: #fff;
  font-size: 20px;
}

.header_tel_btn_sp {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_tel_btn_sp {
    display: block;
    position: absolute;
    top: 0;
    right: 120px;
  }
}
@media screen and (max-width: 768px) {
  .header_tel_btn_sp {
    display: block;
    position: absolute;
    top: 0;
    right: 90px;
  }
}
.header_tel_btn_sp a button {
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: none;
  transition: all 0.3s;
  background: #00cccc;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .header_tel_btn_sp a button {
    width: 45px;
    height: 45px;
  }
}
.header_tel_btn_sp a button:hover {
  opacity: 0.7;
}
.header_tel_btn_sp a button .fa-solid {
  color: #fff;
  font-size: 20px;
}

.header_tel_btn {
  position: absolute;
  top: 0;
  right: 120px;
  width: 235px;
  height: 60px;
}
@media screen and (max-width: 768px) {
  .header_tel_btn {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_tel_btn .tel_pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  .header_tel_btn .tel_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .header_tel_btn .tel_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_tel_btn .tel_sp {
    display: none;
  }
}
.header_tel_btn a {
  text-decoration: none;
}
.header_tel_btn a button {
  width: 235px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0px 8px;
  letter-spacing: 3px;
  font-size: 18px;
  font-weight: 900;
  background: #00CCCC;
  color: #fff;
}
.header_tel_btn a button i {
  margin-right: 10px;
}

#top_main {
  position: relative;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #top_main {
    padding: 0;
    margin-bottom: 2rem;
  }
}
#top_main .slide-images {
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  height: 800px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .slide-images {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    width: 100%;
    height: 400px;
  }
}
#top_main .slide-images::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list {
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track {
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track img {
  height: 100%;
  -o-object-position: 35% 50%;
     object-position: 35% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main .slide-images .slick-next {
  display: none !important;
}
#top_main .slide-images .slick-next::before {
  display: none;
}
#top_main .top_main_text {
  position: absolute;
  height: 300px;
  top: 75%;
  left: 7%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_text {
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text {
    top: 82%;
    left: 5%;
    height: auto;
  }
}
#top_main .top_main_text .top_main_headline {
  font-size: 50px;
  font-weight: 600;
  color: #00CCCC;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.53);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_text .top_main_headline {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text .top_main_headline {
    font-size: 27px;
  }
}
#top_main .top_main_text .top_main_headline span {
  font-size: 35px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_text .top_main_headline span {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text .top_main_headline span {
    font-size: 19px;
  }
}
#top_main .top_main_text .top_main_writing {
  font-size: 24px;
  font-weight: 600;
  color: #FF0066;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.53);
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text .top_main_writing {
    font-size: 14px;
  }
}
#top_main .top_main_lawyer {
  width: 95%;
  position: absolute;
  top: 55%;
  left: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_lawyer {
    width: 90%;
    left: 10%;
    top: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer {
    width: 95%;
    top: 55%;
    left: 5%;
    height: auto;
  }
}
#top_main .top_main_lawyer h3 {
  font-size: 35px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.75), -1px -1px 0 rgba(255, 255, 255, 0.75), -1px 1px 0 rgba(255, 255, 255, 0.75), 1px -1px 0 rgba(255, 255, 255, 0.75), 0px 1px 0 rgba(255, 255, 255, 0.75), 0 -1px 0 rgba(255, 255, 255, 0.75), -1px 0 0 rgba(255, 255, 255, 0.75), 1px 0 0 rgba(255, 255, 255, 0.75);
  color: #111;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer h3 {
    font-size: 14px;
  }
}
#top_main .top_main_lawyer h3 span {
  font-size: 140%;
  color: #ff0066;
  background: linear-gradient(transparent 75%, rgba(0, 204, 204, 0.5) 75%);
}
#top_main .top_main_lawyer .main_list {
  width: 830px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_main .top_main_lawyer .main_list {
    width: 830px;
    left: 7%;
    bottom: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_lawyer .main_list {
    width: 90%;
    left: 15%;
    bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list {
    width: 95%;
    bottom: 1rem;
    left: 5%;
    height: auto;
    margin-top: 1rem;
  }
}
#top_main .top_main_lawyer .main_list li {
  text-align: center;
  display: flex;
  width: 32%;
  justify-content: center;
  align-items: center;
}
#top_main .top_main_lawyer .main_list li div {
  font-size: 2em;
  color: #fff;
  border-radius: 50%;
  background-color: #00cccc;
  width: 15rem;
  height: 15rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 5px #00b8b8;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_main .top_main_lawyer .main_list li div {
    font-size: 2.5rem;
    width: 15rem;
    height: 15rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_lawyer .main_list li div {
    font-size: 3.5vw;
    width: 12rem;
    height: 12rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list li div {
    font-size: 0.8rem;
    width: 6rem;
    height: 6rem;
  }
}
#top_main .top_main_lawyer .main_list .main_chui {
  width: 100%;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list .main_chui {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    text-shadow: 0 0 5px #000;
  }
}
#top_main .top_main_lawyer .main_list .main_line {
  margin-top: 3rem;
  width: 100%;
  color: #00b900;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list .main_line {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}
#top_main .top_main_lawyer .main_list .main_line strong {
  position: absolute;
  top: -12px;
  width: auto;
  margin: 0 auto;
  left: 32%;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list .main_line strong {
    width: 100%;
    left: 0;
  }
}
#top_main .top_main_lawyer .main_list .main_line strong span {
  margin: 0 auto;
  position: relative;
  display: table;
  margin-bottom: 20px;
  padding: 3px 20px;
  border-radius: 9999px;
  border: solid 1px #00B900;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #00B900;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list .main_line strong span {
    font-size: 12px;
  }
}
#top_main .top_main_lawyer .main_list .main_line strong span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 8px 0 8px;
  border-color: transparent transparent transparent;
  translate: -50% 100%;
}
#top_main .top_main_lawyer .main_list .main_line strong span:after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 10px 15px 0 15px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
#top_main .top_main_lawyer .main_list .main_line a {
  position: relative;
  color: #fff;
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.3rem;
  line-height: 4.5vw;
  border-radius: 5rem;
  padding: 1rem 6rem;
  background-color: #00B900;
  transition: all 0.4s;
  text-shadow: none;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_lawyer .main_list .main_line a {
    font-size: 14px;
    width: 100%;
    padding: 1rem 1rem;
  }
}
#top_main .top_main_lawyer .main_list .main_line a:hover {
  background-color: #009700;
}
#top_main .top_main_lawyer .main_list .main_line a .fa-line {
  padding-right: 10px;
}
#top_main .top_main_lawyer .main_list .main_line a .fa-caret-right {
  position: absolute;
  top: 44%;
  right: 5%;
  font-size: 70%;
}

#top_list {
  width: 90%;
  margin: 0 auto;
}
#top_list .top_plan {
  margin: 2rem 0;
  list-style: none;
}
#top_list .top_plan .top_plan_contents_half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
}
#top_list .top_plan .top_plan_contents_half li {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #top_list .top_plan .top_plan_contents_half li {
    width: 98%;
  }
}
#top_list .top_plan .top_plan_contents_half li span {
  display: block;
  color: #fff;
  background-color: #ff0066;
  text-align: center;
  padding: 5px 0;
  border-radius: 20px;
}
#top_list .top_plan .top_plan_contents_half li strong {
  text-align: center;
  font-size: 40px;
  padding: 0;
  color: #ff0066;
  display: block;
}
#top_list .top_plan .top_plan_contents_half li strong .style {
  font-size: 20px;
  padding-left: 5px;
  color: #000;
  display: inline-flex;
}

#top_about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_about {
    padding: 0;
    margin-bottom: 40px;
    height: 500px;
    align-items: flex-start;
  }
}
#top_about .top_about_contents {
  width: 60% !important;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 60px;
  position: absolute;
  top: 20%;
  left: 5%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents {
    width: 60% !important;
    left: 3%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents {
    width: 90% !important;
    margin: auto;
    margin-bottom: 20px;
    padding: 20px;
    top: 18%;
  }
}
#top_about .top_about_contents .top_about_contents_leftTop .line01 {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 60px;
  height: 3px;
  background-color: #00CCCC;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_contents_leftTop .line01 {
    top: 15px;
    left: 10px;
    width: 30px;
    height: 2px;
  }
}
#top_about .top_about_contents .top_about_contents_leftTop .line02 {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 3px;
  height: 60px;
  background-color: #00CCCC;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_contents_leftTop .line02 {
    top: 10px;
    left: 15px;
    width: 2px;
    height: 30px;
  }
}
#top_about .top_about_contents .top_about_logo {
  width: 200px;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_logo {
    width: 120px;
  }
}
#top_about .top_about_contents .top_about_logo img {
  width: 100%;
}
#top_about .top_about_contents .top_about_headline {
  color: #FFEC00;
  text-shadow: 1px 1px 1px #000;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_headline {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_headline {
    font-size: 15px;
  }
}
#top_about .top_about_contents .top_about_text {
  line-height: 28px;
  color: #333;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_text {
    line-height: 24px;
    font-size: 12.5px;
  }
}
#top_about .top_about_contents .top_about_text span {
  color: #FF0066;
  font-weight: 600;
}
#top_about .top_about_contents .top_about_contents_rightBottom .line01 {
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 3px;
  background-color: #00CCCC;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_contents_rightBottom .line01 {
    bottom: 10px;
    right: 15px;
    width: 2px;
    height: 30px;
  }
}
#top_about .top_about_contents .top_about_contents_rightBottom .line02 {
  position: absolute;
  bottom: 20px;
  right: 30px;
  width: 3px;
  height: 60px;
  background-color: #00CCCC;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_contents_rightBottom .line02 {
    bottom: 15px;
    right: 10px;
    width: 30px;
    height: 2px;
  }
}
#top_about .top_about_image {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  height: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_image {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_image {
    width: 100%;
    height: 300px;
  }
}
#top_about .top_about_image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_image img {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_image img {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  #top_recruit {
    margin-top: 310px;
  }
}
#top_recruit .top_recruit_contents {
  background-position: center;
  background-size: cover;
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity {
  padding: 80px 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity {
    padding-left: 60px;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity {
    padding: 40px 0;
    padding-left: 0px;
  }
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content {
  width: 55%;
  margin: auto;
  padding: 40px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content {
    width: 70%;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content {
    width: 90%;
    margin: auto;
    padding: 20px;
  }
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_title {
  margin-bottom: 110px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_title {
    margin-bottom: 60px;
  }
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_text {
  line-height: 50px;
  margin-bottom: 40px;
  color: #FFEC00;
  text-shadow: 1px 1px 1px #fff;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_text {
    line-height: 36px;
    margin-bottom: 20px;
  }
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_text p {
  font-size: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_text p {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_text p {
    font-size: 16px;
  }
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_btn button {
  background-color: #fff;
  color: #333;
  transition: all 0.4s;
}
#top_recruit .top_recruit_contents .top_recruit_bg_opacity .top_recruit_content .top_contents_btn button:hover {
  background-color: #00CCCC;
  color: #fff;
}

#worries {
  margin-top: 3rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #worries {
    margin-top: 2rem;
  }
}
#worries .speechBubble {
  margin: 0 auto;
  position: relative;
  display: table;
  margin-bottom: 20px;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 9999px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
#worries .speechBubble:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
}
#worries .speechBubble:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
#worries h3 {
  font-size: 30px;
  text-align: center;
  padding: 40px 0 10px 0;
  color: #fff;
  background: #000000;
  position: relative;
  margin-top: -40px;
  z-index: -1;
}
#worries h3:before { /* beforeでもafterでも*/
  content: "";
  position: absolute;
  height: 30px;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0); /* ココ */
  background-color: #000000; /* デモは青色の部分 */
  left: 0;
  bottom: -30px; /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
}
#worries h3 span {
  position: relative; /* 基準値とする */
}
#worries h3 span:before {
  content: "・"; /* 文字の上に置くものを指定 */
  position: absolute; /* 相対位置とする */
  top: -1em; /* 縦方向の表示位置を調整（-1emくらいがちょうどいいかんじ） */
  left: 0; /* 横方向の表示位置を調整 */
}
#worries .worries {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: end;
  margin-top: 5rem;
}
#worries .worries ul {
  width: auto;
  list-style: none;
  justify-items: center;
  align-items: center;
  display: table;
  flex-wrap: wrap;
}
#worries .worries ul h4 {
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #worries .worries ul h4 {
    font-size: 1.2rem;
  }
}
#worries .worries ul li {
  width: auto;
  color: #00cccc;
  margin: 0.5rem;
  border: solid 1px #00cccc;
  background-color: rgba(0, 204, 204, 0.05);
  padding: 1rem 1.5rem;
}
#worries .worries01 .worries_txt {
  width: 70%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #worries .worries01 .worries_txt {
    width: 60%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #worries .worries01 .worries_txt {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #worries .worries01 .worries_txt {
    width: 100%;
  }
}
#worries .worries01 .worries_img {
  width: 30%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #worries .worries01 .worries_img {
    width: 40%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #worries .worries01 .worries_img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #worries .worries01 .worries_img {
    display: none;
  }
}
#worries .worries01 .worries_img img {
  width: 28%;
  margin: 0 auto;
  display: block;
}
#worries .worries02 .worries_txt {
  width: 70%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #worries .worries02 .worries_txt {
    width: 60%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #worries .worries02 .worries_txt {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #worries .worries02 .worries_txt {
    width: 100%;
  }
}
#worries .worries02 .worries_img {
  width: 30%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #worries .worries02 .worries_img {
    width: 40%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #worries .worries02 .worries_img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #worries .worries02 .worries_img {
    display: none;
  }
}
#worries .worries02 .worries_img img {
  width: 28%;
  margin: 0 auto;
  display: block;
}

#top_service {
  width: 90%;
  margin: 3rem auto;
}
#top_service .top_service {
  list-style: none;
  margin-bottom: 2rem;
}
#top_service .top_service li h4 {
  color: #00CCCC;
  border-bottom: solid 1px #ddd;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
#top_service .top_service li p {
  padding-bottom: 1rem;
}
#top_service .main_txt {
  font-size: 3rem;
  color: #ff0066;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 2.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_service .main_txt {
    padding: 0;
  }
}
#top_service .main_txt strong {
  display: block;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  #top_service .main_txt strong {
    padding: 0;
  }
}
#top_service .main_txt strong span {
  color: #f7b52c;
  -webkit-text-decoration: underline wavy #f7b52c;
          text-decoration: underline wavy #f7b52c;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_service .main_txt {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .main_txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_service .main_txt {
    font-size: 20px;
  }
}
#top_service .main_txt:before {
  width: 3px;
  height: 80px;
  background-color: #ff0066;
  content: "";
  transform: rotate(-35deg);
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  #top_service .main_txt:before {
    height: 50px;
    margin-right: 20px;
  }
}
#top_service .main_txt:after {
  width: 3px;
  height: 80px;
  background-color: #ff0066;
  content: "";
  transform: rotate(35deg);
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  #top_service .main_txt:after {
    height: 50px;
    margin-left: 20px;
  }
}
#top_service .top_contact {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 768px) {
  #top_service .top_contact {
    display: block;
  }
}
#top_service .top_contact li {
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_contact li {
    width: 100%;
  }
}
#top_service .top_contact li div {
  margin: 5%;
}
#top_service .top_contact li div h5 {
  margin-bottom: 1rem;
  color: #00cccc;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #top_service .top_contact li div h5 {
    font-size: 1rem;
  }
}
#top_service .top_contact li div a {
  color: #fff;
  display: block;
  font-size: 1.3rem;
  line-height: 3.5vw;
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 0.5rem 0;
  background-color: #00cccc;
  transition: all 0.4s;
}
#top_service .top_contact li div a:hover {
  opacity: 0.75;
}
#top_service02 {
  width: 90%;
  margin: 3rem auto;
}
#top_service02 .top_service02 {
  list-style: none;
  margin-bottom: 2rem;
}
#top_service02 .top_service02 li h4 {
  color: #fff;
  background-color: #00CCCC;
  border-bottom: solid 1px #ddd;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
#top_service02 .top_service02 li p {
  padding-bottom: 1rem;
}
#top_service02 .main_txt {
  color: #ff0066;
  font-size: 2rem;
  position: relative;
  display: table;
  margin: 0 auto 2rem auto;
  padding: 0.5rem;
}
#top_service02 .main_txt:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, #ff0066, #ff0066 2px, #fff 2px, #fff 4px);
}
#top_service02 .top_contact {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: start;
}
@media screen and (max-width: 768px) {
  #top_service02 .top_contact {
    display: block;
  }
}
#top_service02 .top_contact li {
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_service02 .top_contact li {
    width: 100%;
  }
}
#top_service02 .top_contact li div {
  margin: 5%;
}
#top_service02 .top_contact li div h5 {
  margin-bottom: 1rem;
  color: #00cccc;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  #top_service02 .top_contact li div h5 {
    font-size: 1rem;
  }
}
#top_service02 .top_contact li div a {
  color: #fff;
  display: block;
  font-size: 1.3rem;
  line-height: 3.5vw;
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 0.5rem 0;
  background-color: #00cccc;
  transition: all 0.4s;
}
#top_service02 .top_contact li div a:hover {
  opacity: 0.75;
}
#top_three {
  width: 100%;
  position: relative;
  background-color: #F2F3F2;
  height: 500px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  #top_three {
    height: 1700px;
  }
}
#top_three .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .triangle_top {
    border-width: 600px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #top_three .triangle_top {
    border-width: 800px 300px 0 0;
  }
}
#top_three .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .triangle_bottom {
    border-width: 600px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .triangle_bottom {
    border-width: 800px 0 0 300px;
  }
}
#top_three .top_three_container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three_container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three_container {
    display: block;
    width: 100%;
    height: 100%;
    top: 60%;
  }
}
#top_three .top_three {
  width: 33.3333333333%;
  margin: auto;
  margin-bottom: 240px;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three {
    width: 100%;
    margin-bottom: 80px;
  }
}
#top_three .top_three .top_business_contents {
  position: absolute;
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_business_contents {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_business_contents {
    height: 300px;
  }
}
#top_three .top_three .top_business_contents .top_contents_title {
  position: absolute;
  z-index: 50;
  bottom: 60px;
  left: 20px;
  color: #00CCCC;
  text-shadow: 0 3px 8px #fff;
}
#top_three .top_three .top_business_contents .top_contents_title i::before {
  margin-left: 40px;
  font-size: 20px;
}
#top_three .top_three .top_business {
  background-position: center;
  background-size: cover;
  height: 400px;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_business {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_business {
    height: 300px;
  }
}
#top_three .top_three .top_business .top_business_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top_three .top_three .top_three_btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 0);
}
#top_three .top_three .top_three_btn a {
  text-decoration: none;
}
#top_three .top_three .top_three_btn a button {
  width: 20vw;
  margin: auto;
  padding: 20px 0;
  background-color: #fff;
  color: #333;
  border: none;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_three_btn a button {
    width: 80vw;
  }
}
#top_three .top_three .top_three_btn a button:hover {
  background-color: #00CCCC;
  color: #fff;
}
#top_three .top_three .top_three_btn a button i {
  margin-left: 20px;
}
#top_three .top_three {
  width: 33.3333333333%;
  margin: auto;
  margin-bottom: 240px;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three {
    width: 100%;
    margin-bottom: 80px;
  }
}
#top_three .top_three .top_company_contents {
  position: absolute;
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_company_contents {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_company_contents {
    height: 300px;
  }
}
#top_three .top_three .top_company_contents .top_company_number {
  z-index: 50;
  position: absolute;
  top: -30px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_company_contents .top_company_number {
    top: -10px;
    right: 9px;
  }
}
#top_three .top_three .top_company_contents .top_company_number h2 {
  font-size: 600%;
  opacity: 0.6;
  color: #fff;
  font-style: italic;
  font-family: serif;
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_company_contents .top_company_number h2 {
    font-size: 300%;
    opacity: 0.8;
  }
}
#top_three .top_three .top_company_contents .top_contents_title {
  position: absolute;
  z-index: 50;
  bottom: 60px;
  left: 20px;
  color: #00CCCC;
  text-shadow: 0 3px 8px #fff;
}
#top_three .top_three .top_company_contents .top_contents_title i::before {
  margin-left: 40px;
  font-size: 20px;
}
#top_three .top_three .top_company {
  background-position: center;
  background-size: cover;
  height: 400px;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_company {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_company {
    height: 300px;
  }
}
#top_three .top_three .top_company .top_company_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
#top_three .top_three {
  width: 33.3333333333%;
  margin: auto;
  margin-bottom: 240px;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three {
    width: 100%;
    margin-bottom: 80px;
  }
}
#top_three .top_three .top_question_contents {
  position: absolute;
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_question_contents {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_question_contents {
    height: 300px;
  }
}
#top_three .top_three .top_question_contents .top_contents_title {
  position: absolute;
  z-index: 50;
  bottom: 60px;
  left: 20px;
  color: #00CCCC;
  text-shadow: 0 3px 8px #fff;
}
#top_three .top_three .top_question_contents .top_contents_title i::before {
  margin-left: 40px;
  font-size: 20px;
}
#top_three .top_three .top_question {
  background-position: center;
  background-size: cover;
  height: 400px;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_question {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_question {
    height: 300px;
  }
}
#top_three .top_three .top_question .top_question_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top_three .top_three {
  width: 33.3333333333%;
  margin: auto;
  margin-bottom: 240px;
  z-index: 100;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three {
    width: 100%;
    margin-bottom: 80px;
  }
}
#top_three .top_three .top_works_contents {
  position: absolute;
  width: 100%;
  height: 400px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_works_contents {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_works_contents {
    height: 300px;
  }
}
#top_three .top_three .top_works_contents .top_contents_title {
  position: absolute;
  z-index: 50;
  bottom: 60px;
  left: 20px;
  color: #00CCCC;
  text-shadow: 0 3px 8px #fff;
}
#top_three .top_three .top_works_contents .top_contents_title i::before {
  margin-left: 40px;
  font-size: 20px;
}
#top_three .top_three .top_works {
  background-position: center;
  background-size: cover;
  height: 400px;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_three .top_three .top_works {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_three .top_three .top_works {
    height: 300px;
  }
}
#top_three .top_three .top_works .top_works_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#service_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #service_main {
    padding: 0;
  }
}
#service_main #service_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service_main #service_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #service_main #service_main_bg {
    padding-top: 280px;
  }
}
#service_main #service_main_bg .service_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) {
  #service_main #service_main_bg .service_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #service_main #service_main_bg .service_main_title {
    left: 55%;
    font-size: 24px;
  }
}

#service .service_writing {
  background-size: cover;
}
#service .service_writing .service_bg {
  padding: 120px 0;
  background-color: rgba(0, 204, 204, 0.4);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #service .service_writing .service_bg {
    padding: 60px 0;
  }
}
#service .service_writing .service_bg .service_writing_headline {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #service .service_writing .service_bg .service_writing_headline {
    font-size: 18px;
  }
}
#service .service_writing .service_bg .service_writing_text {
  color: #fff;
  width: 60%;
  margin: auto;
  line-height: 35px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_writing .service_bg .service_writing_text {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_writing .service_bg .service_writing_text {
    width: 90%;
    line-height: 25px;
  }
}
#service .service_contents {
  width: 100%;
  padding: 120px 0;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
  background-color: #F2F3F2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents {
    margin-bottom: 0;
    width: 100%;
  }
}
#service .service_contents .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .triangle_top {
    border-width: 1000px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .triangle_top {
    border-width: 1000px 300px 0 0;
  }
}
#service .service_contents .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .triangle_bottom {
    border-width: 1000px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .triangle_bottom {
    border-width: 1000px 0 0 300px;
  }
}
#service .service_contents .service_content {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 95%;
  margin: auto;
  position: relative;
  z-index: 20;
}
#service .service_contents .service_content .service_contents_image {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_contents_image {
    height: 150px;
  }
}
#service .service_contents .service_content .service_contents_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service_contents .service_content .service_detail_contents {
  padding: 80px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents {
    padding: 40px 20px;
  }
}
#service .service_contents .service_content .service_detail_contents .service_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail {
    flex-flow: column;
  }
}
#service .service_contents .service_content .service_detail_contents .service_detail .service_detail_writing {
  width: 44%;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail .service_detail_writing {
    width: 100%;
    margin-top: 30px;
  }
}
#service .service_contents .service_content .service_detail_contents .service_detail .service_detail_writing h2 {
  margin-bottom: 20px;
  color: #ABE1FA;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail .service_detail_writing h2 {
    text-align: center;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail .service_detail_writing p {
    margin-bottom: 20px;
  }
}
#service .service_contents .service_content .service_detail_contents .service_detail .service_detail_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail .service_detail_image {
    width: 100%;
  }
}
#service .service_contents .service_content .service_detail_contents .service_detail .service_detail_image img {
  width: 100%;
}
#service .service_contents .service_content .service_detail_contents .service_detail:first-child {
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .service_content .service_detail_contents .service_detail:first-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail:first-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .service_content .service_detail_contents .service_detail:last-child {
    flex-flow: column-reverse;
  }
}
#service .service_contents .flow_contents {
  width: 100%;
  padding: 0px 0 60px 0;
  margin: auto;
  position: relative;
  background-color: #F2F3F2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .flow_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents {
    width: 100%;
  }
}
#service .service_contents .flow_contents h3 {
  font-size: 180%;
  text-align: center;
  color: #00cccc;
}
#service .service_contents .flow_contents .flow_list {
  margin-top: 60px;
}
#service .service_contents .flow_contents .flow_list ul {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  justify-content: space-between;
}
#service .service_contents .flow_contents .flow_list ul li {
  width: 32%;
  margin: 1% 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .flow_contents .flow_list ul li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_list ul li {
    width: 100%;
  }
}
#service .service_contents .flow_contents .flow_list ul li a {
  display: block;
  padding: 10px 0;
  color: #fff;
  background-color: #2589d0;
  border-radius: 10px;
  transition: all 0.4s;
}
#service .service_contents .flow_contents .flow_list ul li a:hover {
  opacity: 0.8;
}
#service .service_contents .flow_contents .flow_list ul li a i {
  padding-left: 10px;
}
#service .service_contents .flow_contents .flow_list ul li a span {
  background-color: #fff;
  color: #00cccc;
  padding: 2px 6px;
  margin: 2% 2%;
  border-radius: 5px;
}
#service .service_contents .flow_contents .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .flow_contents .triangle_top {
    border-width: 1200px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .triangle_top {
    border-width: 1100px 300px 0 0;
  }
}
#service .service_contents .flow_contents .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_contents .flow_contents .triangle_bottom {
    border-width: 1200px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .triangle_bottom {
    border-width: 1100px 0 0 300px;
  }
}
#service .service_contents .flow_contents .flow_content {
  width: 80%;
  margin: 15px auto;
  position: relative;
  z-index: 20;
  border: solid 5px #f0f9ff;
}
#service .service_contents .flow_contents .flow_content .flow_contents_image {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_contents_image {
    height: 150px;
  }
}
#service .service_contents .flow_contents .flow_content .flow_contents_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service_contents .flow_contents .flow_content .flow_detail_contents {
  padding: 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_detail_contents {
    padding: 20px;
  }
}
#service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail {
    flex-flow: column;
  }
}
#service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_writing {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_writing {
    width: 100%;
  }
}
#service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_writing h2 {
  padding: 10px;
  font-size: 20px;
  color: #fff;
  background-color: #00cccc;
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_writing h2 {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_writing p {
    margin-bottom: 15px;
  }
}
#service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_text {
    width: 100%;
  }
}
#service .service_contents .flow_contents .flow_content .flow_detail_contents .flow_detail .flow_detail_text img {
  width: 100%;
}
#works_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works_main {
    padding: 0;
  }
}
#works_main #works_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_main #works_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #works_main #works_main_bg {
    padding-top: 280px;
  }
}
#works_main #works_main_bg .works_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) {
  #works_main #works_main_bg .works_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #works_main #works_main_bg .works_main_title {
    left: 55%;
    font-size: 24px;
  }
}

#works {
  background-color: #F2F3F2;
}
#works .works_contents {
  width: 90%;
  margin: auto;
  padding: 80px 0;
}
#works .works_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
#works .works_contents ul li {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works_contents ul li {
    width: 45%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #works .works_contents ul li {
    width: 90%;
    margin: auto;
    margin-bottom: 40px;
  }
}
#works .works_contents ul li .thumb {
  text-align: center;
  width: 100%;
  height: 250px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works_contents ul li .thumb {
    height: 240px;
  }
}
#works .works_contents ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
#works .works_contents ul li .outline {
  background-color: #fff;
  padding: 20px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  #works .works_contents ul li .outline {
    height: 180px;
  }
}
#works .works_contents ul li .outline .title {
  color: #00CCCC;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #works .works_contents ul li .outline .title {
    font-size: 15px;
  }
}
#works .works_contents ul li .outline .descn {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #works .works_contents ul li .outline .descn {
    font-size: 12.5px;
  }
}
#works .works_contents .navigation {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works .works_contents .navigation {
    margin-top: 40px;
  }
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#modal-container > div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#modal-container > div > img {
  width: 600px;
  height: 450px;
}
@media screen and (max-width: 768px) {
  #modal-container > div > img {
    width: 400px;
    height: 250px;
  }
}
#modal-container .close {
  position: absolute;
  top: 26%;
  right: 29%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #modal-container .close {
    top: 32%;
    right: 21%;
  }
}
@media screen and (max-width: 768px) {
  #modal-container .close {
    top: 30%;
    right: 6%;
  }
}
#modal-container .close span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:first-child {
    width: 25px;
  }
}
#modal-container .close span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:last-child {
    width: 25px;
  }
}

img.popup {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#news_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news_main {
    padding: 0;
  }
}
#news_main #news_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_main #news_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg {
    padding-top: 280px;
  }
}
#news_main #news_main_bg .news_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) {
  #news_main #news_main_bg .news_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg .news_main_title {
    left: 55%;
    font-size: 24px;
  }
}

#news {
  background-color: #F2F3F2;
}
#news .news_contents {
  width: 60%;
  margin: auto;
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents {
    width: 90%;
    padding: 40px 0;
  }
}
#news .news_contents ul {
  background-color: #fff;
  list-style: none;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul {
    padding: 20px;
  }
}
#news .news_contents ul li {
  width: 100%;
}
#news .news_contents ul li a .outline {
  background-color: #fff;
  padding: 20px;
  height: 180px;
  padding: 40px 0;
  border-bottom: 1px solid #00CCCC;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul li a .outline {
    padding: 20px 0;
    height: 140px;
  }
}
#news .news_contents ul li a .outline:hover {
  opacity: 0.5;
}
#news .news_contents ul li a .outline .title {
  color: #66a5c9;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul li a .outline .title {
    font-size: 15px;
  }
}
#news .news_contents ul li a .outline .descn {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul li a .outline .descn {
    font-size: 12.5px;
  }
}
#news .navigation {
  padding-bottom: 80px;
  text-align: center;
}

#news_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #news_main {
    padding: 0;
  }
}
#news_main #news_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_main #news_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg {
    padding-top: 280px;
  }
}
#news_main #news_main_bg .news_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) {
  #news_main #news_main_bg .news_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg .news_main_title {
    left: 55%;
    font-size: 24px;
  }
}
#news_main #news_main_bg .news_main_logo {
  position: absolute;
  width: 30%;
  height: 300px;
  background-color: #fff;
  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) {
  #news_main #news_main_bg .news_main_logo {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg .news_main_logo {
    width: 45%;
    height: 100px;
  }
}
#news_main #news_main_bg .news_main_logo img {
  width: 60%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg .news_main_logo img {
    width: 80%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  #news_main #news_main_bg .news_main_logo .news_main_text {
    font-size: 10px;
  }
}

#news_single {
  background-color: #F2F3F2;
}
#news_single .news_contents {
  width: 60%;
  margin: auto;
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents {
    width: 90%;
    padding: 40px 0;
  }
}
#news_single .news_contents ul {
  list-style: none;
}
#news_single .news_contents ul .outline {
  background-color: #fff;
  padding: 40px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .outline .date {
    font-size: 12.5px;
  }
}
#news_single .news_contents ul .outline .title {
  color: #66a5c9;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .outline .title {
    font-size: 15px;
  }
}
#news_single .news_contents ul .outline .descn {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .outline .descn {
    font-size: 12.5px;
  }
}

#company_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #company_main {
    padding: 0;
  }
}
#company_main #company_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_main #company_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #company_main #company_main_bg {
    padding-top: 280px;
  }
}
#company_main #company_main_bg .company_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) {
  #company_main #company_main_bg .company_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #company_main #company_main_bg .company_main_title {
    left: 55%;
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  #company {
    margin-bottom: 80px;
  }
}
#company .company_contents {
  width: 100%;
  padding: 120px 0;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
  background-color: #F2F3F2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents {
    width: 100%;
  }
}
#company .company_contents .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .triangle_top {
    border-width: 1200px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .triangle_top {
    border-width: 1100px 300px 0 0;
  }
}
#company .company_contents .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .triangle_bottom {
    border-width: 1200px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .triangle_bottom {
    border-width: 1100px 0 0 300px;
  }
}
#company .company_contents .company_detail {
  width: 70%;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 80px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .company_detail {
    width: 97%;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail {
    width: 100%;
    padding: 40px 5px;
  }
}
#company .company_contents .company_detail table {
  margin: 0;
  width: 100%;
}
#company .company_contents .company_detail table tr th {
  width: 35%;
  padding: 20px 0;
  border-bottom: 2px solid #00CCCC;
  text-align: end;
  padding-right: 40px;
  color: #00CCCC;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr th {
    padding-right: 10px;
    font-size: 12.5px;
    width: 20%;
  }
}
#company .company_contents .company_detail table tr td {
  width: 65%;
  padding: 20px 0;
  border-bottom: 2px solid #333;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr td {
    padding-left: 10px;
    font-size: 12.5px;
    width: 80%;
  }
}

#plan_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #plan_main {
    padding: 0;
  }
}
#plan_main #plan_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan_main #plan_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #plan_main #plan_main_bg {
    padding-top: 280px;
  }
}
#plan_main #plan_main_bg .plan_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) {
  #plan_main #plan_main_bg .plan_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #plan_main #plan_main_bg .plan_main_title {
    left: 55%;
    font-size: 24px;
  }
}

#plan {
  background-color: rgba(255, 0, 102, 0.04);
  margin-bottom: 40px;
}
#plan .plan_writing {
  position: relative;
  height: 400px;
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_writing {
    height: 400px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_writing {
    height: 200px;
    margin-bottom: 30px;
  }
}
#plan .plan_writing::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 20%;
  left: 0;
  width: 60%;
  height: 300px;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_writing::after {
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_writing::after {
    top: 0;
    width: 80%;
    height: 150px;
  }
}
#plan .plan_writing .plan_writing_text {
  position: absolute;
  width: 50%;
  top: 40%;
  left: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_writing .plan_writing_text {
    top: 30%;
    left: 20%;
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_writing .plan_writing_text {
    top: 10%;
    left: 15%;
    width: 80%;
  }
}
#plan .plan_writing .plan_writing_text h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #plan .plan_writing .plan_writing_text h2 {
    font-size: 18px;
  }
}
#plan .plan_writing .plan_writing_text p {
  line-height: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_writing .plan_writing_text p {
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_writing .plan_writing_text p {
    line-height: 20px;
  }
}
#plan .plan_contents {
  width: 70%;
  padding: 30px 0;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_contents {
    width: 90%;
    margin-bottom: 0;
  }
}
#plan .plan_contents .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_contents .triangle_top {
    border-width: 1200px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_contents .triangle_top {
    border-width: 1100px 300px 0 0;
  }
}
#plan .plan_contents .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #plan .plan_contents .triangle_bottom {
    border-width: 1200px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #plan .plan_contents .triangle_bottom {
    border-width: 1100px 0 0 300px;
  }
}
#plan .plan_contents h2 {
  text-align: center;
  color: #00CCCC;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #plan .plan_contents h2 {
    position: relative;
    z-index: 50;
  }
}
#plan .plan_contents h3 {
  text-align: center;
  border-bottom: solid 3px #ff0066;
  display: table;
  margin: 0 auto;
  margin-bottom: 30px;
}
#plan .plan_contents .plan_contents_half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  list-style: none;
}
#plan .plan_contents .plan_contents_half li {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #plan .plan_contents .plan_contents_half li {
    width: 98%;
  }
}
#plan .plan_contents .plan_contents_half li span {
  display: block;
  color: #fff;
  background-color: #ff0066;
  text-align: center;
  padding: 5px 0;
  border-radius: 20px;
}
#plan .plan_contents .plan_contents_half li strong {
  text-align: center;
  font-size: 40px;
  padding: 10px 0;
  color: #ff0066;
  display: block;
}
#plan .plan_contents .plan_contents_half li strong .style {
  font-size: 20px;
  padding-left: 5px;
  color: #000;
  display: inline-flex;
}
#plan .plan_contents .credit_image {
  width: 90%;
  margin: auto;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #plan .plan_contents .credit_image {
    width: 98%;
  }
}
#plan .plan_contents .credit_image img {
  width: 100%;
}

#onayami_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #onayami_main {
    padding: 0;
  }
}
#onayami_main #onayami_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami_main #onayami_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #onayami_main #onayami_main_bg {
    padding-top: 280px;
  }
}
#onayami_main #onayami_main_bg .onayami_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) {
  #onayami_main #onayami_main_bg .onayami_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #onayami_main #onayami_main_bg .onayami_main_title {
    left: 55%;
    font-size: 24px;
  }
}

#onayami .onayami_writing {
  position: relative;
  height: 400px;
  width: 100%;
  margin-bottom: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_writing {
    height: 400px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_writing {
    height: 200px;
    margin-bottom: 30px;
  }
}
#onayami .onayami_writing::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 20%;
  left: 0;
  width: 60%;
  height: 300px;
  background-color: #E1F0F4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_writing::after {
    top: 10%;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_writing::after {
    top: 0;
    width: 80%;
    height: 150px;
  }
}
#onayami .onayami_writing .onayami_writing_text {
  position: absolute;
  width: 50%;
  top: 40%;
  left: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_writing .onayami_writing_text {
    top: 30%;
    left: 20%;
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_writing .onayami_writing_text {
    top: 10%;
    left: 15%;
    width: 80%;
  }
}
#onayami .onayami_writing .onayami_writing_text h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #onayami .onayami_writing .onayami_writing_text h2 {
    font-size: 18px;
  }
}
#onayami .onayami_writing .onayami_writing_text p {
  line-height: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_writing .onayami_writing_text p {
    line-height: 30px;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_writing .onayami_writing_text p {
    line-height: 20px;
  }
}
#onayami .onayami_contents {
  width: 100%;
  padding: 120px 0;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
  background-color: #F2F3F2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents {
    width: 100%;
    margin-bottom: 0;
  }
}
#onayami .onayami_contents .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_contents .triangle_top {
    border-width: 1200px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents .triangle_top {
    border-width: 1100px 300px 0 0;
  }
}
#onayami .onayami_contents .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_contents .triangle_bottom {
    border-width: 1200px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents .triangle_bottom {
    border-width: 1100px 0 0 300px;
  }
}
#onayami .onayami_contents h2 {
  text-align: center;
  color: #00CCCC;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents h2 {
    position: relative;
    z-index: 50;
  }
}
#onayami .onayami_contents .onayami_detail {
  width: 70%;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 80px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #onayami .onayami_contents .onayami_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents .onayami_detail {
    width: 99%;
    padding: 40px 20px;
  }
}
#onayami .onayami_contents .onayami_detail ul {
  list-style: none;
}
#onayami .onayami_contents .onayami_detail ul li {
  border-bottom: solid 1px #00cccc;
  padding: 5px 0;
}
#onayami .onayami_contents .onayami_detail ul li i {
  padding-right: 5px;
  color: #00CCCC;
}
#onayami .onayami_contents .onayami_detail table {
  margin: 0;
  width: 100%;
}
#onayami .onayami_contents .onayami_detail table tr th {
  width: 27%;
  padding: 20px 0;
  border-bottom: 2px solid #00CCCC;
  text-align: end;
  padding-right: 40px;
  color: #00CCCC;
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents .onayami_detail table tr th {
    padding-right: 20px;
    font-size: 12.5px;
    width: 30%;
  }
}
#onayami .onayami_contents .onayami_detail table tr td {
  width: 73%;
  padding: 20px 0;
  border-bottom: 2px solid #333;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #onayami .onayami_contents .onayami_detail table tr td {
    padding-left: 20px;
    font-size: 12.5px;
    width: 70%;
  }
}
#onayami .onayami_contents .onayami_detail table tr:first-child th {
  background-color: #E1F0F4;
  border: none;
}
#onayami .onayami_contents .onayami_detail table tr:first-child td {
  background-color: #00CCCC;
  color: #fff;
  border: none;
}

#question_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #question_main {
    padding: 0;
  }
}
#question_main #question_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #question_main #question_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #question_main #question_main_bg {
    padding-top: 280px;
  }
}
#question_main #question_main_bg .question_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) {
  #question_main #question_main_bg .question_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #question_main #question_main_bg .question_main_title {
    left: 55%;
    font-size: 24px;
  }
}

#question {
  width: 80%;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #question {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  #question {
    margin-bottom: 80px;
  }
}
#question .question_contents {
  width: 100%;
  padding: 120px 0;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
  background-color: #F2F3F2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #question .question_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #question .question_contents {
    width: 100%;
  }
}
#question .question_contents .triangle_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 400px 0 0;
  border-color: rgba(0, 204, 204, 0.4) transparent transparent transparent;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #question .question_contents .triangle_top {
    border-width: 1200px 400px 0 0;
  }
}
@media screen and (max-width: 768px) {
  #question .question_contents .triangle_top {
    border-width: 1100px 300px 0 0;
  }
}
#question .question_contents .triangle_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 700px 0 0 400px;
  border-color: transparent transparent transparent rgba(0, 204, 204, 0.4);
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #question .question_contents .triangle_bottom {
    border-width: 1200px 0 0 400px;
  }
}
@media screen and (max-width: 768px) {
  #question .question_contents .triangle_bottom {
    border-width: 1100px 0 0 300px;
  }
}
#question .question_contents .question_detail {
  width: 60%;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 80px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #question .question_contents .question_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #question .question_contents .question_detail {
    width: 90%;
    padding: 40px 20px;
  }
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
  box-sizing: border-box;
}

.cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 15px;
  color: #1b2538;
}

.cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 1em;
  cursor: pointer;
  border: 1px solid #cccccc;
}

.cp_qa .cp_actab label:hover {
  color: #00838F;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  color: #ffffff;
  background: rgba(0, 131, 143, 0.5);
}

.cp_qa .cp_actab .cp_actab-content p {
  margin: 1em;
}

/* 質問を開いた時の仕様 */
/* --アイコン */
.cp_qa .cp_actab input:checked ~ label {
  color: #00838F;
}

/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab label::after {
  line-height: 1.6;
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 3em;
  margin-top: -12.5px;
  transition: all 0.5s ease;
  text-align: center;
}

.cp_qa .cp_actab input[type=checkbox] + label::after {
  content: "+";
}

.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  transform: rotateX(180deg);
}

#contact_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #contact_main {
    padding: 0;
  }
}
#contact_main #contact_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact_main #contact_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #contact_main #contact_main_bg {
    padding-top: 280px;
  }
}
#contact_main #contact_main_bg .contact_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) {
  #contact_main #contact_main_bg .contact_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #contact_main #contact_main_bg .contact_main_title {
    left: 55%;
    font-size: 24px;
  }
}

.contact_form {
  width: 70%;
  margin: auto;
  padding: 40px;
  color: #333;
  margin-top: 40px;
  padding-bottom: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form {
    width: 90%;
    padding: 0;
    margin-top: 60px;
    margin-bottom: 0px;
  }
}
.contact_form form {
  width: 100%;
}
.contact_form form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #00CCCC;
}
@media screen and (max-width: 768px) {
  .contact_form form table tr {
    display: flex;
    flex-flow: column;
  }
}
.contact_form form table tr th {
  padding: 40px 0;
  width: 38%;
  text-align: end;
  padding-right: 80px;
  border-bottom: 1px solid #00CCCC;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr th {
    width: 52%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
    font-size: 12.5px;
  }
}
.contact_form form table tr th span {
  padding: 10px;
  background-color: red;
  color: #fff;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .contact_form form table tr th span {
    padding: 5px;
    font-size: 10px;
  }
}
.contact_form form table tr td {
  padding: 40px 0;
  width: 62%;
  border-bottom: 1px solid #00CCCC;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr td {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
.contact_form form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr td input {
    width: 100%;
  }
}
.contact_form form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr td textarea {
    width: 100%;
  }
}
.contact_form form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
.contact_form form table tr:nth-child(6) td select {
  height: 45px;
  width: 80% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr:nth-child(6) td select {
    width: 85% !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr:nth-child(6) td select {
    width: 90% !important;
  }
}
.contact_form form table tr:nth-child(7) th span {
  background-color: blue;
}
.contact_form form table tr:nth-child(7) td input {
  width: 80% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr:nth-child(7) td input {
    width: 85% !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr:nth-child(7) td input {
    width: 90% !important;
  }
}
.contact_form form table tr:nth-child(8) th span {
  background-color: blue;
}
.contact_form form table tr:nth-child(8) td select {
  height: 45px;
  width: 80% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr:nth-child(8) td select {
    width: 85% !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr:nth-child(8) td select {
    width: 90% !important;
  }
}
.contact_form form .agree {
  text-align: center;
  margin-bottom: 40px;
}
.contact_form form .submit {
  text-align: center;
}
.contact_form form .submit input {
  padding: 20px 180px;
  font-size: 18px;
  border: none;
  background-color: #00CCCC;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .contact_form form .submit input {
    padding: 10px 90px;
  }
}
.contact_form form .submit input:hover {
  background-color: rgba(0, 204, 204, 0.4);
}
.contact_form form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .contact_form form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
.contact_form form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  .contact_form form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#mw_wp_form_mw-wp-form-197 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #mw_wp_form_mw-wp-form-197 {
    font-size: 12.5px;
  }
}

#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_contents {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
  }
}
.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;
  }
}

#top_contact {
  padding: 60px 0 60px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact {
    padding: 60px 0 60px 0;
  }
}
@media screen and (max-width: 768px) {
  #top_contact {
    padding: 30px 0 30px 0;
  }
}
#top_contact .footer_company {
  margin: auto;
  display: flex;
  justify-content: space-around;
  height: 430px;
}
@media screen and (max-width: 768px) {
  #top_contact .footer_company {
    flex-flow: column;
    height: 285px;
  }
}
#top_contact .footer_company .footer_line {
  width: 21%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .footer_company .footer_line {
    width: 38%;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .footer_company .footer_line {
    width: 55%;
  }
}
#top_contact .footer_company .footer_line .top_contents_btn a button {
  width: 100%;
  padding: 20px 80px;
  color: #fff;
  background-color: #06C755;
}
@media screen and (max-width: 768px) {
  #top_contact .footer_company .footer_line .top_contents_btn a button {
    padding: 20px 50px;
  }
}
#top_contact .footer_company .footer_line .line_image img {
  width: 100%;
}
#top_contact .top_contact_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents {
    flex-flow: column;
  }
}
#top_contact .top_contact_contents .form {
  width: 45%;
  height: 300px;
  padding: 40px;
  text-align: center;
  background: #EFEEEA;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .form {
    padding: 36px;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .form {
    height: 250px;
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }
}
#top_contact .top_contact_contents .form .form_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .form .form_title .form_image img {
    width: 150px;
  }
}
#top_contact .top_contact_contents .form .form_title .form_title_text h2 {
  font-size: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .form .form_title .form_title_text h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .form .form_title .form_title_text h2 {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .form .top_contents_btn a button {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .form .top_contents_btn a button {
    padding: 15px 60px;
  }
}
#top_contact .top_contact_contents .tel {
  width: 45%;
  height: 300px;
  padding: 40px;
  text-align: center;
  background: #EFEEEA;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .tel {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .tel {
    width: 90%;
    margin: auto;
    height: 250px;
  }
}
#top_contact .top_contact_contents .tel .tel_title {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .tel .tel_title .tel_image img {
    width: 150px;
  }
}
#top_contact .top_contact_contents .tel .tel_title .tel_title_text h2 {
  font-size: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .tel .tel_title .tel_title_text h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .tel .tel_title .tel_title_text h2 {
    font-size: 15px;
  }
}
#top_contact .top_contact_contents .tel .top_contents_tel_number a {
  font-size: 24px;
  font-weight: 600;
  color: #00CCCC;
}
@media screen and (min-width: 1441px) {
  #top_contact .top_contact_contents .tel .top_contents_tel_number a {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_contact .top_contact_contents .tel .top_contents_tel_number a {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .tel .top_contents_tel_number a {
    font-size: 23px;
  }
}
#top_contact .top_contact_contents .tel .top_contents_tel_number .tel_pc {
  font-size: 36px;
  font-weight: 900;
  color: #00CCCC;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .tel .top_contents_tel_number .tel_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_contents .tel .top_contents_tel_number .tel_pc {
    display: none;
  }
}
#top_contact .top_contact_contents .tel .top_contents_tel_number p {
  margin-top: 0px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact_contents .tel .top_contents_tel_number p {
    margin-top: 10px;
  }
}

.map {
  width: 100%;
}
.map iframe {
  width: 100%;
  vertical-align: top;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .map iframe {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .map iframe {
    height: 300px;
  }
}

footer {
  background-color: #00CCCC;
}
footer ul {
  padding: 40px 0;
  width: 98%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer ul {
    width: 98%;
  }
}
@media screen and (max-width: 768px) {
  footer ul {
    justify-content: space-between;
  }
}
footer ul .footer_menu_sp_left {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer ul .footer_menu_sp_left {
    flex-flow: column;
  }
}
footer ul .footer_menu_sp_left li:first-child {
  margin-left: 0;
}
footer ul .footer_menu_sp_right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer ul .footer_menu_sp_right {
    flex-flow: column;
  }
}
footer ul li {
  margin-left: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer ul li {
    margin-left: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  footer ul li {
    font-size: 16px;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
footer ul li a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  color: #fff;
}
footer ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  bottom: 0;
  height: 2px;
  margin: -5px 0;
  left: 0;
  background-color: #fff;
  transition: all 0.2s ease-in 0s;
}
footer ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer ul li a {
    font-size: 12.5px;
  }
}
footer .copyright {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    margin-bottom: 6rem;
  }
}
footer .copyright p {
  font-size: 12.5px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 10px;
  }
}

#footer_kotei_pc {
  z-index: 9999;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.5rem 0;
  background-color: #fff;
  border-top: solid 3px #00cccc;
  display: block;
}
@media screen and (max-width: 768px) {
  #footer_kotei_pc {
    display: none;
  }
}
#footer_kotei_pc p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  #footer_kotei_pc p {
    font-size: 1.1rem;
  }
}
#footer_kotei_pc p span {
  color: #ff0066;
}
#footer_kotei_pc .top_contact {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #footer_kotei_pc .top_contact {
    display: block;
  }
}
#footer_kotei_pc .top_contact li {
  width: 46%;
  text-align: center;
  justify-content: baseline;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #footer_kotei_pc .top_contact li {
    width: 100%;
  }
}
#footer_kotei_pc .top_contact li div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
#footer_kotei_pc .top_contact li div h5 {
  width: 50%;
  margin-bottom: 0.5rem;
  color: #00cccc;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #footer_kotei_pc .top_contact li div h5 {
    font-size: 1.1rem;
  }
}
#footer_kotei_pc .top_contact li div .contact_a {
  width: 100%;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  line-height: 3.5vw;
  border-radius: 1rem;
  padding: 0.5rem 0;
  background-color: #ff0066;
  transition: all 0.4s;
}
#footer_kotei_pc .top_contact li div .contact_a:hover {
  opacity: 0.75;
}
#footer_kotei_pc .top_contact li div .contact_a span {
  font-size: 80%;
  display: inline-block;
  margin-left: 1rem;
}
#footer_kotei_pc .top_contact li div .line_a {
  width: 100%;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  line-height: 3.5vw;
  border-radius: 1rem;
  padding: 0.5rem 0;
  background-color: #00B900;
  transition: all 0.4s;
}
#footer_kotei_pc .top_contact li div .line_a:hover {
  opacity: 0.75;
}
#footer_kotei_pc .top_contact li div .line_a span {
  font-size: 80%;
  display: inline-block;
  margin-left: 1rem;
}

#footer_kotei_sp {
  z-index: 9999;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0.5rem 0;
  background-color: #fff;
  border-top: solid 3px #00cccc;
  display: none;
}
@media screen and (max-width: 768px) {
  #footer_kotei_sp {
    display: block;
  }
}
#footer_kotei_sp p {
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
#footer_kotei_sp p span {
  color: #ff0066;
}
#footer_kotei_sp .top_contact {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  align-items: center;
}
#footer_kotei_sp .top_contact li {
  width: 48%;
  text-align: center;
  justify-content: baseline;
  align-items: center;
}
#footer_kotei_sp .top_contact li div {
  display: flex;
  flex-wrap: wrap;
  width: 98%;
  justify-content: center;
  align-items: center;
}
#footer_kotei_sp .top_contact li div h5 {
  width: 100%;
  margin-bottom: 0.5rem;
  color: #00cccc;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #footer_kotei_sp .top_contact li div h5 {
    font-size: 1.1rem;
  }
}
#footer_kotei_sp .top_contact li div .contact_a {
  width: 100%;
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 4.5vw;
  border-radius: 5rem;
  padding: 0.5rem 0;
  background-color: #ff0066;
  transition: all 0.4s;
}
#footer_kotei_sp .top_contact li div .contact_a:hover {
  opacity: 0.75;
}
#footer_kotei_sp .top_contact li div .contact_a span {
  font-size: 80%;
  display: inline-block;
  margin-left: 1rem;
  margin-top: 0.5rem;
}
#footer_kotei_sp .top_contact li div .line_a {
  width: 100%;
  color: #fff;
  display: block;
  font-size: 1rem;
  line-height: 4.5vw;
  border-radius: 5rem;
  padding: 0.5rem 0;
  background-color: #00B900;
  transition: all 0.4s;
}
#footer_kotei_sp .top_contact li div .line_a:hover {
  opacity: 0.75;
}
#footer_kotei_sp .top_contact li div .line_a span {
  font-size: 80%;
  display: inline-block;
  margin-left: 1rem;
  margin-top: 0.5rem;
}

.wp-pagenavi a {
  text-decoration: underline;
  transition: all 0.4s;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a {
    padding: 5px;
  }
}
.wp-pagenavi a:hover {
  opacity: 0.5;
}

.nextpostslink {
  text-decoration: none;
}

.previouspostslink {
  text-decoration: none;
}

.lower_headline_img {
  height: 60px;
}
@media screen and (max-width: 768px) {
  .lower_headline_img {
    height: 40px;
  }
}

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

.lower_main_logo {
  position: absolute;
  width: 30%;
  height: 300px;
  background-color: #fff;
  top: 50%;
  left: 4%;
  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) {
  .lower_main_logo {
    height: 200px;
    left: 7%;
  }
}
@media screen and (max-width: 768px) {
  .lower_main_logo {
    width: 45%;
    left: 0;
    height: 100px;
  }
}
.lower_main_logo img {
  width: 60%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .lower_main_logo img {
    width: 80%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .lower_main_logo .news_main_text {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */