/*
Theme Name:design-template-ver1.1_child
Version:1.0
Template:design-template-ver1.1
*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800&family=Noto+Sans+JP:wght@500;600;700&display=swap");
* {
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}

body {
  position: relative;
}

.pagetop_block {
  display: none;
}

main {
  padding-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  main {
    padding-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 70px;
  }
}

a {
  transition: all 0.5s;
}

@media screen and (max-width: 767px) {
  .content_block {
    padding: 80px 0;
  }
}

.content_inner {
  width: 1200px;
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .content_inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .content_inner {
    width: 90%;
  }
}

.blog_content_block {
  width: 100%;
  padding: 50px 0 120px;
}
@media screen and (max-width: 767px) {
  .blog_content_block {
    padding: 0 0 100px;
  }
}

header {
  background: #fff;
  position: fixed;
  border-bottom: 1px solid #DEDEDE;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 0;
  }
}
header .header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .header_pc {
    padding: 22px 0;
  }
}
@media screen and (max-width: 767px) {
  header .header_pc {
    padding: 22px 0;
  }
}
header .header_pc .header_item {
  display: flex;
  align-items: center;
  align-self: stretch;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  header .header_pc .header_item {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header .header_pc .header_item {
    display: none;
  }
}
header .header_pc .header_item .header_nav ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0 50px;
  list-style: none;
}
@media screen and (min-width: 1200px) {
  header .header_pc .header_item .header_nav ul {
    margin: 0 20px;
  }
}
header .header_pc .header_item .header_nav ul li {
  margin-right: 30px;
}
@media screen and (min-width: 1200px) {
  header .header_pc .header_item .header_nav ul li {
    margin-right: 20px;
  }
}
header .header_pc .header_item .header_nav ul li:last-of-type {
  margin-right: 0;
}
header .header_pc .header_item .header_nav ul li a {
  color: black;
  font-weight: 500;
}
header .header_pc .header_item .header_cta {
  width: 240px;
  height: 50px;
  align-self: stretch;
  margin: 15px 50px 15px 10px;
}
header .header_pc .header_item .header_cta a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #EE5120;
  border-radius: 50px;
  position: relative;
}
header .header_pc .header_item .header_cta a::before {
  content: none;
}
header .header_pc .header_item .header_cta a span {
  color: #fff;
  margin-left: -10px;
  font-weight: 700;
}
header .header_pc .header_item .header_cta a::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 25px;
  height: 15px;
  display: block;
  background-image: url(./assets/images/common/ico_arrow.svg);
  background-size: 100% auto;
  background-position: left top;
}

#drawer {
  top: 14px;
  /* :::::: toggle button :::::: */
  /* #navTgl:checked + .open {
  	transform: translateX(-250px);
  } */
  /* :::::: drawer menu :::::: */
}
@media screen and (max-width: 767px) {
  #drawer {
    right: 7px;
  }
}
#drawer label {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
#drawer #navTgl:checked ~ .contents_wrapper {
  transform: translateX(-250px);
}
#drawer #navTgl {
  display: none;
}
#drawer .open {
  z-index: 12;
  position: inherit;
  width: 48px;
  height: 48px;
  transition: background 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#drawer .open::before,
#drawer .open::after {
  content: "";
}
#drawer .open span,
#drawer .open::before,
#drawer .open::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 30%;
  width: 40%;
  border-bottom: 3px solid #EE5120;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#drawer .open::before {
  transform: translateY(-8px);
}
#drawer .open::after {
  transform: translateY(8px);
}
#drawer .close {
  z-index: 3;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  transition: background 0.6s;
}
#drawer #navTgl:checked + .open span {
  transform: scaleX(0);
}
#drawer #navTgl:checked + .open::before {
  transform: rotate(45deg);
  border-bottom: 3px solid #fff;
}
#drawer #navTgl:checked + .open::after {
  transform: rotate(-45deg);
  border-bottom: 3px solid #fff;
}
#drawer #navTgl:checked ~ .close {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11;
  position: fixed;
}
#drawer .menu {
  z-index: 11;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  background: rgba(32, 32, 32, 0.9);
  transform: translateX(200%);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#drawer .menu h2,
#drawer .menu a {
  color: #fff;
}
#drawer .menu h2 {
  text-align: center;
}
#drawer .menu ul {
  margin: 0;
  padding: 0;
}
#drawer .menu li {
  font-size: 0.8em;
  line-height: 1.4;
}
#drawer #navTgl:checked ~ .menu {
  transform: none;
}

.drawer_inner_btn ul {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.drawer_inner_btn ul li {
  margin-bottom: 15px;
}
.drawer_inner_btn ul li:last-of-type {
  margin-bottom: 0;
}
.drawer_inner_btn ul li a {
  color: #fff;
  font-weight: bold;
  background: #202020;
  border-radius: 20px;
  display: block;
  text-align: center;
  padding: 5px 0;
  text-decoration: none;
}

.sp_menu .header_nav_block {
  padding: 0 15px;
  margin: 70px 0;
}
.sp_menu .header_nav_block ul {
  list-style: none;
  padding: 0;
}
.sp_menu .header_nav_block ul li {
  margin-bottom: 16px;
}
.sp_menu .header_nav_block ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  padding: 5px 15px;
}
.sp_menu .header_nav_block ul li a::before {
  font-family: "fontello";
  content: "\e803";
  font-size: 5px;
  margin-right: 10px;
  font-weight: normal;
}
.sp_menu .header_nav_block ul li a:hover {
  background: #424242;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .sp_menu .header_nav_block ul li a:hover {
    background: none;
  }
}
.sp_menu .header_tel {
  padding: 0 30px;
}
.sp_menu .header_tel p {
  font-size: 20px;
  margin-bottom: 20px;
}

footer {
  border-top: none;
  background-color: #202020;
}
footer .footer_inner {
  flex-wrap: wrap;
  padding: 20px 0 80px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1200px) {
  footer .footer_inner {
    padding: 40px 0;
  }
}
footer .footer_inner #footer_info {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  footer .footer_inner #footer_info {
    width: 50%;
  }
}
footer .footer_inner #footer_info .logo {
  margin: 0 0 60px;
}
footer .footer_inner #footer_info .logo a {
  color: #fff;
}
footer .footer_inner #footer_info .info {
  transition: all 0.5s;
  display: flex;
  align-items: end;
}
@media screen and (max-width: 767px) {
  footer .footer_inner #footer_info .info {
    justify-content: space-between;
  }
}
footer .footer_inner #footer_info .info p {
  color: #fff;
  font-size: 13px;
}
@media screen and (min-width: 1200px) {
  footer .footer_inner #footer_info .info p {
    font-size: 16px;
  }
}
footer .footer_inner #footer_info .info .num_list {
  margin: 0;
  padding: 0;
}
footer .footer_inner #footer_info .info .num_list li {
  list-style: none;
  color: #fff;
  display: inline-block;
  margin-right: 20px;
}
footer .footer_inner #footer_info .info .num_list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  footer .footer_inner #footer_info .info .num_list li {
    display: block;
    margin-right: 0;
  }
}
footer .footer_inner #footer_info .info .num_list li a {
  color: #fff;
}
footer .footer_inner #footer_info .info .sns_btn_area {
  margin: 0;
}
footer .footer_inner #footer_info .info .sns_btn_area .sns_btn {
  width: 41px;
  display: inline-block;
  margin-right: 20px;
}
footer .footer_inner #footer_info .info .sns_btn_area .sns_btn:last-child {
  margin-right: 0;
}
footer .footer_inner .footer_nav_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .footer_inner .footer_nav_wrap .footer_nav {
  margin: 0;
  background: none;
  border: 0;
  padding: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  footer .footer_inner .footer_nav_wrap .footer_nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  footer .footer_inner .footer_nav_wrap .footer_nav {
    display: none;
  }
}
footer .footer_inner .footer_nav_wrap .footer_nav ul {
  justify-content: right;
}
footer .footer_inner .footer_nav_wrap .footer_nav ul li {
  width: auto;
  margin-right: 30px;
}
footer .footer_inner .footer_nav_wrap .footer_nav ul li:last-of-type {
  margin-right: 0;
}
footer .footer_inner .footer_nav_wrap .footer_nav ul li a {
  color: #fff;
  font-weight: 300;
  background: none;
  border: none;
}
footer .footer_inner #copy_wrap {
  width: 100%;
}
@media screen and (max-width: 767px) {
  footer .footer_inner #copy_wrap {
    margin-top: 20px;
  }
}
footer .footer_inner #copy_wrap .copy {
  padding: 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-color: #202020;
  font-size: 13px;
}
@media screen and (min-width: 1200px) {
  footer .footer_inner #copy_wrap .copy {
    padding-bottom: 0;
    text-align: right;
    font-size: 16px;
  }
}

.pagetop_block .contact_sp a {
  background: #EE5120;
  font-size: 16px;
}
.pagetop_block #pagetop a {
  background: #fafafa;
  color: #202020;
}

.logo {
  width: 210px;
  margin: 0 0 0 50px;
  line-height: 1em;
}
@media screen and (max-width: 767px) {
  .logo {
    margin-left: 20px;
    width: 160px;
  }
}
.logo a {
  font-size: 16px;
  color: black;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .logo a {
    font-size: 16px;
  }
}
.logo a img {
  width: 26px;
  margin-right: 10px;
}

.breadcrumb_block {
  width: 90%;
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .breadcrumb_block {
    width: 1200px;
    padding: 0;
  }
}
.breadcrumb_block ul li:last-child {
  padding-right: 0;
}

.btn_wrap {
  text-align: center;
}
.btn_wrap .btn {
  padding: 7px 10px;
  display: inline-block;
  text-align: center;
  position: relative;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .btn_wrap .btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}
.btn_wrap .btn span {
  display: inline-block;
  text-align: center;
  color: #fff;
  margin-left: -10px;
}
.btn_wrap .btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 25px;
  height: 0.9em;
  background: url(./assets/images/common/ico_arrow.svg) 0 0 no-repeat;
  background-size: auto 100%;
  transition: right 0.3s;
  transform: translateY(-50%);
  background-position: right center;
}
.btn_wrap .btn.detail {
  background-color: #444444;
  min-width: 190px;
}
@media screen and (max-width: 767px) {
  .btn_wrap .btn.detail {
    min-width: 210px;
  }
}
.btn_wrap .btn.detail span {
  font-family: "Montserrat", sans-serif;
}
.btn_wrap .btn.contact {
  background-color: #EE5120;
  min-width: 600px;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .btn_wrap .btn.contact {
    width: 100%;
    min-width: 100%;
  }
}
.btn_wrap .btn.contact span {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .btn_wrap .btn.contact span {
    font-size: 16px;
  }
}
.btn_wrap .btn.contact:after {
  right: 40px;
  width: 50px;
  height: 1.2em;
}
@media screen and (max-width: 767px) {
  .btn_wrap .btn.contact:after {
    right: 15px;
  }
}

* {
  color: #202020;
  font-weight: 300;
}

p, a, li, table {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  p, a, li, table {
    font-size: 15px;
  }
}

p {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  p {
    line-height: 1.9em;
  }
}

.sec_title {
  text-align: center;
  line-height: 1.7em;
  margin: 0 0 40px;
}
.sec_title .sub_title {
  font-size: 35px;
  color: #EE5120;
  display: block;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .sec_title .sub_title {
    font-size: 19px;
    line-height: 1em;
    margin-bottom: 0;
  }
}
.sec_title .title {
  font-size: 38px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec_title .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .sec_title {
    margin: 0 0 40px;
  }
}

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

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

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

@-webkit-keyframes fadeIn {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes intoLeft {
  0% {
    opacity: 0;
    transform: translate(100%, -50%);
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}
@keyframes intoLeft {
  0% {
    opacity: 0;
    transform: translate(100%, -50%);
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}
.main_visual {
  width: 100%;
  height: 70vh;
}
@media screen and (min-width: 1200px) {
  .main_visual {
    height: auto;
  }
}
.main_visual .main_visual_inner {
  position: relative;
  width: calc(100% - 40px);
  margin: 20px auto 0;
}
@media screen and (min-width: 1200px) {
  .main_visual .main_visual_inner {
    width: calc(100% - 100px);
    margin: 50px auto 0;
  }
}
.main_visual .main_visual_inner .catchcopy {
  width: 640px;
  padding: 40px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  -webkit-animation: 1s intoLeft 1.8s forwards;
          animation: 1s intoLeft 1.8s forwards;
}
@media screen and (max-width: 767px) {
  .main_visual .main_visual_inner .catchcopy {
    width: 85%;
    padding: 20px;
  }
}
.main_visual .main_visual_inner .catchcopy .sub_copy {
  color: #EE5120;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .main_visual .main_visual_inner .catchcopy .sub_copy {
    font-size: 14px;
  }
}
.main_visual .main_visual_inner .catchcopy .sub_copy::before {
  content: "";
  width: 30%;
  height: 2px;
  background-color: #EE5120;
  display: block;
  margin-bottom: 10px;
}
.main_visual .main_visual_inner .catchcopy h1 {
  color: #757575;
  font-weight: 800;
  font-size: 62px;
  margin: 25px 0;
}
@media screen and (max-width: 767px) {
  .main_visual .main_visual_inner .catchcopy h1 {
    font-size: 30px;
    margin: 15px 0;
  }
}
.main_visual .main_visual_inner .catchcopy h1 span {
  color: #EE5120;
  font-weight: 800;
}
.main_visual .main_visual_inner .catchcopy p {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .main_visual .main_visual_inner .catchcopy p {
    font-size: 15px;
  }
}
.main_visual .main_visual_inner .mv_bg {
  display: grid;
  grid-template-columns: calc(50% - 5px) calc(50% - 5px);
  grid-template-rows: calc(55vh - 10px) 15vh;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}
@media screen and (min-width: 1200px) {
  .main_visual .main_visual_inner .mv_bg {
    grid-template-columns: calc(72% - 30px) 28%;
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
  }
}
.main_visual .main_visual_inner .mv_bg > div {
  border-radius: 10px;
  overflow: hidden;
}
.main_visual .main_visual_inner .mv_bg > div img {
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.main_visual .main_visual_inner .mv_bg .mv_bg01 {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media screen and (min-width: 1200px) {
  .main_visual .main_visual_inner .mv_bg .mv_bg01 {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.main_visual .main_visual_inner .mv_bg .mv_bg01 img {
  -webkit-animation: 1s fadeIn 0.5s forwards;
          animation: 1s fadeIn 0.5s forwards;
}
.main_visual .main_visual_inner .mv_bg .mv_bg02 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (min-width: 1200px) {
  .main_visual .main_visual_inner .mv_bg .mv_bg02 {
    grid-column: 2/2;
    grid-row: 1/2;
  }
}
.main_visual .main_visual_inner .mv_bg .mv_bg02 img {
  -webkit-animation: 1s fadeIn 1s forwards;
          animation: 1s fadeIn 1s forwards;
}
.main_visual .main_visual_inner .mv_bg .mv_bg03 {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (min-width: 1200px) {
  .main_visual .main_visual_inner .mv_bg .mv_bg03 {
    grid-column: 2/2;
    grid-row: 2/2;
  }
}
.main_visual .main_visual_inner .mv_bg .mv_bg03 img {
  -webkit-animation: 1s fadeIn 1.5s forwards;
          animation: 1s fadeIn 1.5s forwards;
}

.news_block {
  width: 90%;
  margin: 0 auto;
  opacity: 0;
  -webkit-animation: 1s fadeIn 1.5s forwards;
          animation: 1s fadeIn 1.5s forwards;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news_block {
    width: 100%;
    margin-left: 0;
  }
}
.news_block .news_block_inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  min-height: 130px;
  width: 100%;
  background-color: #fff;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner {
    padding: 20px 7% 30px;
  }
}
.news_block .news_block_inner .news_list {
  width: 65%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner .news_list {
    padding: 0 0 10px 0;
    width: 100%;
  }
}
.news_block .news_block_inner .news_list dl {
  border-bottom: none;
  margin: 0;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner .news_list dl {
    padding: 0 0 20px;
    flex-wrap: wrap;
  }
}
.news_block .news_block_inner .news_list dl:last-of-type {
  border-bottom: 0;
}
.news_block .news_block_inner .news_list dl dt {
  margin-right: 60px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner .news_list dl dt {
    width: 32%;
    font-size: 13px;
    margin-right: 0;
  }
}
.news_block .news_block_inner .news_list dl dt time {
  color: #757575;
  font-weight: 500;
}
.news_block .news_block_inner .news_list dl dd {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner .news_list dl dd {
    width: 68%;
  }
}
.news_block .news_block_inner .news_list dl dd a {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner .news_list dl dd a {
    font-size: 13px;
  }
}
.news_block .news_block_inner .news_list dl dd a:hover {
  color: #202020;
  opacity: 0.8;
}
.news_block .news_block_inner .news_btn {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .news_block .news_block_inner .news_btn {
    text-align: center;
    width: 100%;
  }
}

#top_about {
  transition: all 0.5s;
  padding: 40px;
  background-color: #FFF7EE;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #top_about {
    flex-wrap: wrap;
  }
}
#top_about #about_cts {
  width: 47%;
  align-self: center;
}
@media screen and (max-width: 767px) {
  #top_about #about_cts {
    margin-bottom: 30px;
    width: 100%;
  }
}
#top_about #about_cts .sec_title {
  text-align: left;
}
#top_about #about_cts .sec_title .sub_title {
  font-size: 19px;
  line-height: 1.6em;
  margin-bottom: 20px;
}
#top_about #about_cts .sec_title .title {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  #top_about #about_cts .sec_title .title {
    font-size: 26px;
  }
}
#top_about #about_cts p {
  line-height: 2em;
}
@media screen and (min-width: 1200px) {
  #top_about #about_cts p {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  #top_about #about_cts p {
    font-size: 14px;
  }
}
#top_about #about_img {
  width: 47%;
  position: relative;
  max-width: 470px;
}
@media screen and (max-width: 767px) {
  #top_about #about_img {
    width: 100%;
    order: 0;
    margin-bottom: 20px;
  }
}
#top_about #about_img img {
  z-index: 1;
  position: relative;
}

#top_message {
  transition: all 0.5s;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #top_message {
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
}
#top_message #message_cts {
  width: auto;
  align-self: center;
  padding: 0 10%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  #top_message #message_cts {
    padding: 0 4%;
  }
}
#top_message #message_cts .sec_title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  #top_message #message_cts .sec_title {
    text-align: center;
  }
}
#top_message #message_cts .sec_title .sub_title {
  font-size: 19px;
}
#top_message #message_cts .sec_title .title {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  #top_message #message_cts .sec_title .title {
    font-size: 22px;
  }
}
#top_message #message_cts .message_sign {
  text-align: right;
  margin-top: 20px;
}
#top_message #message_cts .message_sign img {
  width: 290px;
}
@media screen and (max-width: 767px) {
  #top_message #message_cts .message_sign img {
    width: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  #top_message #message_cts .message_sign img {
    width: 210px;
  }
}
#top_message #message_img {
  min-width: 457px;
}
@media screen and (max-width: 767px) {
  #top_message #message_img {
    width: 100%;
    min-width: 100%;
    order: 0;
    margin-bottom: 50px;
  }
}
#top_message #message_img img {
  z-index: 1;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

#top_service {
  margin: 0 auto;
  padding: 100px 0 170px;
  background-color: #fafafa;
}
@media screen and (max-width: 767px) {
  #top_service {
    padding: 60px 0 90px;
  }
}
#top_service #service_list_wrap {
  padding: 0;
  margin-bottom: 150px;
}
@media screen and (max-width: 767px) {
  #top_service #service_list_wrap {
    margin-bottom: 70px;
  }
}
#top_service #service_list_wrap .service_list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 130px;
}
#top_service #service_list_wrap .service_list:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #top_service #service_list_wrap .service_list {
    flex-wrap: wrap;
  }
}
#top_service #service_list_wrap .service_list .service_img {
  width: 40%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #top_service #service_list_wrap .service_list .service_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
#top_service #service_list_wrap .service_list .service_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
#top_service #service_list_wrap .service_list .service_cts {
  width: 47%;
  align-self: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #top_service #service_list_wrap .service_list .service_cts {
    width: 100%;
    order: 1;
  }
}
#top_service #service_list_wrap .service_list .service_cts h3 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
#top_service #service_list_wrap .service_list .service_cts h3 .service_num {
  display: inline-block;
  font-size: 25px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background: #444444;
  border-radius: 50px;
  padding: 8px;
  margin-right: 20px;
  width: 50px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #top_service #service_list_wrap .service_list .service_cts h3 .service_num {
    font-size: 21px;
  }
}
#top_service #service_list_wrap .service_list .service_cts h3 .service_title {
  width: calc(100% - 60px);
  font-size: 21px;
  font-weight: 500;
  color: #EE5120;
  line-height: 1.7em;
}
@media screen and (max-width: 767px) {
  #top_service #service_list_wrap .service_list .service_cts h3 .service_title {
    font-size: 16px;
  }
}

#top_company {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #top_company {
    padding-bottom: 60px;
  }
}
#top_company .content_inner .company_list {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #top_company .content_inner .company_list {
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
#top_company .content_inner .company_list dt {
  width: 25%;
}
#top_company .content_inner .company_list dd {
  margin-bottom: 0;
  width: 75%;
}
#top_company .content_inner .company_list a {
  color: #202020;
}
#top_company #company_map {
  padding: 0;
  margin-top: 100px;
}
#top_company #company_map iframe {
  border-radius: 10px;
  overflow: hidden;
}
#top_company #company_map .btn_wrap {
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #top_company #company_map .btn_wrap {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #top_company #company_map {
    margin-top: 60px;
  }
  #top_company #company_map iframe {
    height: 300px;
  }
}

.subpage .main_visual_subpage {
  width: 100%;
  background-image: none;
  background-color: initial;
  height: 100px;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  .subpage .main_visual_subpage {
    margin-top: 90px;
  }
}
.subpage .main_visual_subpage .sec_title .sub_title {
  font-size: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .subpage .main_visual_subpage .sec_title .sub_title {
    font-size: 17px;
  }
}
.subpage .main_visual_subpage .sec_title .title {
  font-size: 35px;
}
@media screen and (max-width: 767px) {
  .subpage .main_visual_subpage .sec_title .title {
    font-size: 25px;
  }
}
.subpage h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.subpage ol {
  margin-top: 30px;
  padding-left: 1em;
}
.subpage ol li {
  font-weight: 500;
  margin-bottom: 10px;
}
.subpage ol li:last-child {
  margin-bottom: 0;
}
.subpage p {
  line-height: 1.7em;
  margin-bottom: 1em;
}
.subpage .form_item {
  margin-top: 0.5em;
}
.subpage .content_inner .no_post {
  margin: 0 auto 60px;
}
.subpage .content_inner .no_post p {
  text-align: center;
}

.form_block .form_row span {
  font-size: 10px;
}
.form_block .required {
  background-color: #EE5120;
  border-radius: 2px;
  vertical-align: top;
}

.form_btn_wrap .form_btn {
  background: #EE5120;
  padding: 15px 10px;
  display: inline-block;
  text-align: center;
  position: relative;
  border-radius: 50px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .form_btn_wrap .form_btn {
    padding: 6px 10px;
    font-size: 14px;
  }
}
.form_btn_wrap .form_btn span {
  display: inline-block;
  text-align: center;
  color: #fff;
  margin-left: -10px;
}
.form_btn_wrap .form_btn:not([name=submitBack]):after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 25px;
  height: 0.9em;
  background: url(./assets/images/common/ico_arrow.svg) 0 0 no-repeat;
  background-size: auto 100%;
  transition: right 0.3s;
  transform: translateY(-50%);
  background-position: right center;
}

#page_policy .content_inner section {
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
#page_policy .content_inner section p {
  margin-bottom: 0;
}

.mw_wp_form p {
  font-size: 14px;
}
.mw_wp_form .note a {
  font-size: 15px;
  font-weight: 500;
}
.mw_wp_form .form_item.radio {
  display: flex;
  text-align: center;
}
.mw_wp_form .form_item.radio label {
  margin-right: 10px;
}
.mw_wp_form .form_item.radio label input {
  width: auto;
  margin-bottom: 0;
}
.mw_wp_form .form_item .mwform-radio-field-text {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .mw_wp_form .form_item .mwform-radio-field-text {
    font-size: 13px;
  }
}

.mw_wp_form_complete h2 {
  border-bottom: none;
}
.mw_wp_form_complete h2::before {
  content: none;
}
.mw_wp_form_complete .detail btn_wrap {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .form_block input[type=text],
.form_block input[type=email],
.form_block select,
.form_block textarea {
    font-size: 14px;
  }
}
.form_block .form_item.select {
  display: flex;
  align-items: center;
}
.form_block .form_item.select select {
  margin: 0 1% 0 2%;
}
.form_block .form_item.select select:first-of-type {
  margin-left: 0;
}

.grecaptcha-badge {
  bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 220px !important;
  }
}

#posts_wrapper {
  padding-top: 50px;
}

article {
  position: relative;
}
@media screen and (max-width: 767px) {
  article {
    padding: 70px 0;
  }
}
.archive article {
  background-color: #fafafa;
}

.pg_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pg_wrapper {
    padding: 0 5%;
  }
}
.pg_title {
  font-size: 30px;
  margin: 0 0 50px;
  color: #EE5120;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pg_title {
    font-size: 24px;
  }
}
.pg_contents {
  background-color: #fff;
  padding: 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .pg_contents {
    padding: 50px 20px;
  }
}

.posts_item_list {
  display: flex;
  flex-wrap: wrap;
}
.posts_item_list .posts_item {
  margin-right: 20px;
  width: 100%;
}
.posts_item_list .posts_item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .posts_item_list .posts_item {
    margin-bottom: 40px;
  }
}
.posts_item_list .posts_item a {
  display: block;
}
.posts_item {
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: 1px solid #757575;
}
.posts_item:last-of-type {
  margin-bottom: 0;
}
.posts_date {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .posts_date {
    font-size: 15px;
  }
}
.posts_title {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .posts_title {
    font-size: 15px;
  }
}
.posts_tmb {
  margin: 0;
}
.posts_tmb img {
  box-shadow: 1px 1px 3px #bfbfbf;
  border-radius: 0.25rem;
  height: 180px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 320px;
}
@media screen and (max-width: 767px) {
  .posts_tmb img {
    /* height: calc(((100vw - 40px) / 160) * 90); */
    width: 100%;
    border-radius: 10px;
  }
}
.posts_title {
  text-align: left;
}

.no_post {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .no_post {
    padding: 30px 0 0;
    text-align: center;
  }
  .home .no_post {
    margin-top: 20px;
    padding: 0 0 30px;
  }
}
.no_post h1 {
  font-size: 20px;
  margin: 0 0 50px;
  color: #EE5120;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .no_post h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.posts_content {
  margin-top: 30px;
}
.posts_content iframe {
  width: 100%;
  margin-bottom: 30px;
}

.pg-blog .blog_tmb {
  margin: 0 0 15px 0;
}

.pg_single_title {
  color: #202020;
  margin-bottom: 10px;
  text-align: left;
}
.pg_single_contents {
  padding-bottom: 0;
  padding-top: 0;
  max-width: 1200px;
  margin-bottom: 50px;
}
.pg_single_contents > .blog_tmb {
  margin-bottom: 30px;
}
.pg_single_contents > .blog_tmb img {
  height: 56.25%;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .pg_single_contents {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .pg_single_contents {
    padding: 0;
  }
}
.pg_single_contents .breadcrumb_block {
  margin-bottom: 50px;
}

.pg-news .posts_item {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DEDEDE;
}
.pg-news .posts_title {
  margin: 0;
}

.wp-block-image {
  margin: 0 0 2em 0;
}
.wp-block-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.wp-block-buttons {
  justify-content: center;
}

.wp-block-button__link {
  display: block;
  width: 300px;
  font-size: 14px !important;
  padding: 10px 0;
  border-radius: 50px;
  text-align: center;
  margin: 20px auto;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .wp-block-button__link {
    width: 250px;
    font-size: 16px !important;
  }
}