@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html, body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}
body {
  -webkit-font-smoothing: antialiased;
}

body.is-fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
    min-width: inherit;
  }
}
body, h1, h2, h3, h4, h5, h6, p, address, time, ul, ol, li, dl, dt, dd, table, th, td, img, figure, figcaption, form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #000;
}

input, button, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}
select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}
a.-link {
  transition: opacity 0.3s;
  cursor: pointer;
}
a.-link:hover {
  opacity: 0.7;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

figure {
  padding: 0;
  margin: 0;
}

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

*:focus {
  outline: none;
}

@media print {
  table {
    break-inside: avoid;
  }
}
/* responsive
--------------------------------*/
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
h1, h2, h3, h4, h5,
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #182D3F;
  letter-spacing: .05em;
}

input, button, select {
  font-weight: 500;
  color: #182D3F;
  font-size: 1.6rem;
}

body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  overflow: hidden;
}

section {
  position: relative;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

.fwb {
  font-weight: 700;
}

.fwm {
  font-weight: 500;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.font-sansjp {
  font-family: "Noto Sans", sans-serif;
}

.font-sans {
  font-family: "Noto Sans", sans-serif;
}

.color-green {
  color: #1B4DA7;
}

.wrap {
  max-width: 1300px;
  width: calc(100% - 3rem);
  margin-left: auto;
  margin-right: auto;
}
.wrap.-s {
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .wrap {
    width: 92%;
  }
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }

  img {
    width: 100%;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }
}
/* ------------------------------
    header
------------------------------ */
header {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}

header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 7rem;
  margin: 0 auto;
}

header .logo {
  width: 17rem;
  margin-left: 3rem;
}

@media screen and (min-width: 768px) {
  .logo a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .logo a:hover {
    opacity: 0.7;
  }
}
.header_right {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  background: #fff;
  width: 55.2rem;
  border-bottom-left-radius: 2rem;
}
.header_right .header_contact {
  display: flex;
  position: relative;
  align-items: center;
}
.header_right p {
  position: relative;
  padding: 0 3rem;
}
.header_right p a {
  position: relative;
  display: block;
  transition: opacity 0.3s;
  cursor: pointer;
}
.header_right p a:hover {
  opacity: 0.7;
}
.header_right p span {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
}
.header_right p.btn a {
  padding-top: 3rem;
}
.header_right p.btn a::before {
  position: absolute;
  content: "";
  background: url("../img/ico_mail.svg") no-repeat center center/cover;
  width: 3.8rem;
  height: 2.7rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header_right p.btn a span {
  display: inline-block;
  padding-right: 3rem;
  white-space: nowrap;
}
.header_right p.btn a span::after {
  position: absolute;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 2px #1B4DA7;
  border-right: solid 2px #1B4DA7;
  right: 0;
  top: .6rem;
  transform: rotate(45deg);
}
.header_right p.btn::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 1px;
  height: 5rem;
  right: 0.2rem;
  top: 0;
}
.header_right p.tel span {
  display: block;
}
.header_right p.tel span.num {
  font-size: 2.4rem;
  font-family: "Montserrat", sans-serif;
  color: #1B4DA7;
  font-weight: 700;
  padding-left: 1rem;
  letter-spacing: normal;
  white-space: nowrap;
}
.header_right p.tel span.num::before {
  position: absolute;
  content: "";
  background: url("../img/ico_tel_blue.svg") no-repeat center center/cover;
  width: 1.5rem;
  height: 1.5rem;
  top: .35em;
  left: -.5em;
}

header .nav_btn {
  /*
	position: fixed;
	z-index: 10001;
	top: 0;
	right: 0;

	margin: auto;*/
  width: 7rem;
  height: 7rem;
  display: block;
  cursor: pointer;
  background: #1B4DA7;
  position: relative;
}

header .nav_btn span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 3.4rem;
  height: 0.3rem;
  background: #fff;
  border-radius: 9999px;
}

header .nav_btn span:nth-child(1) {
  top: 2rem;
}

header .nav_btn span:nth-child(2) {
  top: 3rem;
}

header .nav_btn span:nth-child(3) {
  background: none !important;
  width: auto;
  height: auto;
  bottom: .8rem;
}
header .nav_btn span:nth-child(3)::before {
  content: "MENU";
  display: block;
  width: 100%;
  height: 1.6rem;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

header .nav_btn span {
  transition: all 0.5s ease-out;
}

header .nav_btn.active {
  background: #fff;
}

header .nav_btn.active span {
  background: #1B4DA7;
}

header .nav_btn.active span:nth-child(1) {
  transform: rotate(20deg);
  top: 2.5rem;
}

header .nav_btn.active span:nth-child(2) {
  transform: rotate(-20deg);
  top: 2.5rem;
}

header .nav_btn.active span:nth-child(3)::before {
  content: "CLOSE";
  color: #1B4DA7;
}

.gnav {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  overflow-y: auto;
  padding-top: 7rem;
  background: #1B4DA7 url("../img/bg_nav.png") repeat;
  transform: translateY(-100%);
  transition: 0.5s;
  height: 100vh;
}
.gnav.active {
  transform: translateY(0);
}
.gnav::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  min-height: 80rem;
  left: 0;
  top: 0;
  background: #DFE1E7 url("../img/bg_nav.png") repeat;
}

.gnav_box {
  max-width: 130rem;
  min-height: 67rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.gnav .dl_wrap {
  position: relative;
  width: 50%;
  padding-right: 4rem;
  padding-top: 7.5rem;
  background: #DFE1E7 url("../img/bg_nav.png") repeat;
}
@media screen and (max-width: 1200px) {
  .gnav .dl_wrap {
    padding-left: 1rem;
    padding-right: 2rem;
    padding-bottom: 8rem;
    padding-top: 5rem;
  }
}
.gnav .dl_ttl {
  margin-bottom: 2.6rem;
}
.gnav .dl_ttl span {
  position: relative;
  color: #1B4DA7;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .1em;
}
.gnav .dl_ttl span::before, .gnav .dl_ttl span::after {
  position: absolute;
  content: "";
  background: url("../img/img_deco_nav.png") no-repeat center center/contain;
  width: 2.1rem;
  height: 3.2rem;
  top: 0;
}
.gnav .dl_ttl span::before {
  left: -3.7rem;
}
.gnav .dl_ttl span::after {
  right: -3.7rem;
  transform: scale(-1, 1);
}
.gnav .dl_li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnav .dl_li li {
  position: relative;
}
.gnav .dl_li .plus_txt {
  font-size: 6.1rem;
  font-weight: 700;
  color: #1B4DA7;
  text-align: center;
  padding: 0 1.5rem;
}
@media screen and (max-width: 1200px) {
  .gnav .dl_li .plus_txt {
    font-size: 4rem;
    padding: 0 1.5rem;
  }
}
.gnav .dl_li .img {
  width: 100%;
  max-width: 27.6rem;
  position: relative;
}
.gnav .dl_li .img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  aspect-ratio: 276 / 194;
  background: rgba(24, 45, 63, 0.5);
  border-radius: 1rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
.gnav .dl_li .img img {
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  aspect-ratio: 276 / 194;
}
.gnav .dl_li .label, .gnav .dl_li .txt {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  left: 2rem;
}
.gnav .dl_li .label {
  position: absolute;
  background: #1B4DA7;
  display: inline-block;
  padding: .3em .5em;
  font-size: 1.4rem;
  bottom: 6rem;
  letter-spacing: normal;
}
.gnav .dl_li .txt {
  font-size: 2.2rem;
  bottom: 1.8rem;
  letter-spacing: normal;
}
.gnav .dl_present_wrap {
  position: relative;
  background: #fff;
  width: 100%;
  height: 8.2rem;
  border-radius: 1rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav .dl_present_wrap::before {
  position: absolute;
  content: "";
  border-right: 0.9rem solid transparent;
  border-bottom: 1.5rem solid #fff;
  border-left: 0.9rem solid transparent;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.gnav .dl_present_wrap p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
  color: #182D3F;
}
.gnav .dl_btn_wrap .txt {
  color: #182D3F;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 5rem auto 2rem;
}
.gnav .menu_wrap {
  width: 50%;
  display: inline-block;
  padding: 0rem 7rem 0 8rem;
}
.gnav .contact_btn {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}
.gnav .contact_btn a {
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .gnav .contact_btn a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .gnav .contact_btn a:hover {
    opacity: 0.7;
  }
}
.gnav .contact_btn .btn a {
  background: #fff;
  width: 24.2rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.gnav .contact_btn .btn a::before, .gnav .contact_btn .btn a::after {
  position: absolute;
  content: "";
}
.gnav .contact_btn .btn a::before {
  width: 0.7rem;
  height: 0.7rem;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.gnav .contact_btn .btn a::after {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 2rem;
  height: 2rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.gnav .contact_btn .btn a span {
  position: relative;
  padding-right: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1B4DA7;
  line-height: 2.1428571429;
}
.gnav .contact_btn .btn::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 1px;
  height: 5rem;
  right: 0.2rem;
  top: 0;
}
.gnav .contact_btn .tel span {
  position: relative;
  display: block;
  color: #fff;
  line-height: 1.2;
}
.gnav .contact_btn .tel span.num {
  font-size: 2.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding-left: 1rem;
  letter-spacing: normal;
}
.gnav .contact_btn .tel span.num::before {
  position: absolute;
  content: "";
  background: url("../img/ico_tel_green.svg") no-repeat center center/cover;
  width: 1.9rem;
  height: 1.9rem;
  top: .3em;
  left: -.5em;
}
.gnav .contact_btn .tel span.date {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: .5rem;
}
.gnav ul.menu li {
  position: relative;
  border-bottom: 1px solid #fff;
  padding-right: 0.1rem;
}
.gnav ul.menu li::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 0.8rem;
  height: 0.8rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.gnav ul.menu li a {
  position: relative;
  display: block;
  padding: 3rem 6rem 3rem 3rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .gnav ul.menu li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .gnav ul.menu li a:hover {
    opacity: 0.7;
  }
}
.gnav ul.menu li a::before, .gnav ul.menu li a::after {
  position: absolute;
  content: "";
}
.gnav ul.menu li a::before {
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.gnav ul.menu li a::after {
  position: absolute;
  content: "";
  background: #6AB426;
  width: 2.6rem;
  height: 2.6rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

header.active .header_right {
  background-color: transparent;
}
header.active .header_contact {
  display: none;
}

header .bg {
  z-index: 9999;
  position: fixed;
  top: -10vh;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  transition: .3s all;
  pointer-events: none;
}

header .bg.active {
  pointer-events: auto;
}
header .bg.active::before {
  position: absolute;
  content: "";
  background: #DFE1E7 url("../img/bg_nav.png") repeat;
  width: 50vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  header .header_wrap {
    width: 92%;
    height: 6rem;
  }

  header .logo {
    width: 11rem;
    margin-left: 0;
  }

  .header_right {
    width: auto;
  }

  .head_menu {
    display: none;
    text-align: center;
  }

  header .nav_btn {
    width: 6rem;
    height: 6rem;
  }

  header .nav_btn span {
    width: 2.8rem;
    height: 0.3rem;
  }

  header .nav_btn span:nth-child(1) {
    top: 1.8rem;
  }

  header .nav_btn span:nth-child(2) {
    top: 2.6rem;
  }

  header .nav_btn span:nth-child(3) {
    bottom: 1rem;
  }
  header .nav_btn span:nth-child(3)::before {
    height: 1.1rem;
    font-size: 1.1em;
  }

  header .nav_btn.active span:nth-child(1) {
    top: 2.2rem;
  }

  header .nav_btn.active span:nth-child(2) {
    top: 2.2rem;
  }

  .gnav {
    width: 100%;
    height: 100vh;
    padding-bottom: 8rem;
  }
  .gnav::before {
    display: none;
  }
  .gnav .menu_wrap {
    width: 100%;
    padding: 0 3.5rem 0 3.5rem;
  }
  .gnav .sp_dl_btn {
    margin: 4rem -3.5rem 0 -3.5rem;
  }
  .gnav .sp_dl_btn .dl_btn a {
    width: 100%;
  }
  .gnav .sp_dl_btn .dl_btn a span {
    font-size: 1.6rem;
  }
  .gnav .contact_btn {
    flex-direction: column;
    align-items: center;
  }
  .gnav .contact_btn .btn a {
    width: 24.4rem;
    height: 4.5rem;
  }
  .gnav .contact_btn .btn a span {
    padding-right: 1rem;
  }
  .gnav .contact_btn .tel span.num {
    font-size: 2.9rem;
    margin-top: 1rem;
  }
  .gnav .contact_btn .tel span.date {
    font-size: 1.7rem;
    margin-top: .5rem;
  }
  .gnav ul.menu li a {
    padding: 1rem 6rem 1rem 3rem;
    font-size: 1.8rem;
  }
  .gnav ul.menu li a::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .gnav_box {
    width: 100%;
    min-height: 0;
    max-width: inherit;
  }

  header .bg {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }

  header .bg.active::before {
    position: absolute;
    content: "";
    width: 100vw;
  }
}
/* ------------------------------
    element
------------------------------ */
.btn a, .btn button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wpcf7-form .dl_btn {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 37.6rem;
  height: 6.1rem;
  background: #6AB426;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .wpcf7-form .dl_btn {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .wpcf7-form .dl_btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .wpcf7-form .dl_btn {
    width: 92%;
    max-width: 34.4rem;
  }
}
.wpcf7-form .dl_btn::before, .wpcf7-form .dl_btn::after {
  position: absolute;
  content: "";
}
.wpcf7-form .dl_btn::before {
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 2px #6AB426;
  border-right: solid 2px #6AB426;
  right: 2.5rem;
  top: 1.6em;
  transform: rotate(45deg);
  z-index: 2;
}
.wpcf7-form .dl_btn::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2.6rem;
  height: 2.6rem;
  right: 1.5rem;
  top: 1.1em;
  border-radius: 50%;
}
.wpcf7-form .dl_btn input {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  padding: 1.6rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .dl_btn input {
    font-size: 1.6rem;
    padding: 1.8rem 0;
  }
}

.greenline_btn,
.acc_btn,
.show_more,
.footer_btn {
  display: flex;
  align-items: center;
  position: relative;
}

.dl_btn a, .dl_btn button {
  width: 37.6rem;
  height: 6.1rem;
  background: #6AB426;
  border-radius: 9999px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .dl_btn a, .dl_btn button {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .dl_btn a:hover, .dl_btn button:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .dl_btn a, .dl_btn button {
    width: 92%;
    max-width: 34.4rem;
  }
}
.dl_btn a::before, .dl_btn a::after, .dl_btn button::before, .dl_btn button::after {
  position: absolute;
  content: "";
}
.dl_btn a::before, .dl_btn button::before {
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 2px #6AB426;
  border-right: solid 2px #6AB426;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.dl_btn a::after, .dl_btn button::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2.6rem;
  height: 2.6rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.dl_btn a span, .dl_btn button span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .dl_btn a span, .dl_btn button span {
    font-size: 1.6rem;
  }
  .dl_btn a span.sm, .dl_btn button span.sm {
    font-size: 1.5rem;
  }
}
.dl_btn.red a {
  background: #FB1E51;
}
.dl_btn.red a::before {
  border-top: solid 2px #FB1E51;
  border-right: solid 2px #FB1E51;
}
.dl_btn.blue a {
  background: #1B4DA7;
}
.dl_btn.blue a::before {
  border-top: solid 2px #1B4DA7;
  border-right: solid 2px #1B4DA7;
}

.greenline_btn a,
.greenline_btn .acc_btn,
.greenline_btn .show_more,
.greenline_btn .footer_btn {
  width: 25rem;
  border-bottom: 1px solid #6AB426;
  margin: 0 auto;
  padding: 1rem 1.5rem 1rem 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .greenline_btn a,
  .greenline_btn .acc_btn,
  .greenline_btn .show_more,
  .greenline_btn .footer_btn {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .greenline_btn a:hover,
  .greenline_btn .acc_btn:hover,
  .greenline_btn .show_more:hover,
  .greenline_btn .footer_btn:hover {
    opacity: 0.7;
  }
}
.greenline_btn a::before, .greenline_btn a::after,
.greenline_btn .acc_btn::before,
.greenline_btn .acc_btn::after,
.greenline_btn .show_more::before,
.greenline_btn .show_more::after,
.greenline_btn .footer_btn::before,
.greenline_btn .footer_btn::after {
  position: absolute;
  content: "";
  transition: 0.5s;
}
.greenline_btn a::before,
.greenline_btn .acc_btn::before,
.greenline_btn .show_more::before,
.greenline_btn .footer_btn::before {
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 48%;
  right: .5em;
  transform: translateY(-48%) rotate(135deg);
  z-index: 2;
}
.greenline_btn a::after,
.greenline_btn .acc_btn::after,
.greenline_btn .show_more::after,
.greenline_btn .footer_btn::after {
  position: absolute;
  content: "";
  background: #6AB426;
  width: 2.6rem;
  height: 2.6rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid #6AB426;
}
.greenline_btn a > span,
.greenline_btn .acc_btn > span,
.greenline_btn .show_more > span,
.greenline_btn .footer_btn > span {
  display: inline-block;
  font-weight: 700;
  color: #182D3F;
}
.greenline_btn .acc_btn,
.greenline_btn .show_more_btn {
  width: 14rem;
  font-size: 1.8rem;
}
.greenline_btn .acc_btn.close::before,
.greenline_btn .show_more_btn.close::before {
  border-top: solid 2px #6AB426;
  border-right: solid 2px #6AB426;
  top: 55%;
  transform: translateY(-55%) rotate(-45deg);
}
.greenline_btn .acc_btn.close::after,
.greenline_btn .show_more_btn.close::after {
  background: #fff;
}
.greenline_btn .footer_btn {
  width: 100%;
}
.greenline_btn .footer_btn::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: .65em;
}
.greenline_btn .footer_btn span {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}

.sec_ttl {
  color: #1B4DA7;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  position: relative;
  padding-left: 2rem;
  display: inline-block;
}
.sec_ttl:lg {
  font-size: 2.6rem;
}
.sec_ttl::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sec_ttl.white {
  color: #fff;
}
.sec_ttl.white::before {
  background: #fff;
}

.sec_ttl_wrap {
  position: relative;
  margin-bottom: 8rem;
}
/* .sec_ttl_wrap::before, .sec_ttl_wrap::after {
  position: absolute;
  content: "";
  background: #1B4DA7;
  height: 1px;
  bottom: -2.5rem;
} */
.sec_ttl_wrap::before {
  width: 57.15%;
  left: 0;
}
/* .sec_ttl_wrap::after {
  width: 12.69%;
  right: 0;
} */
.sec_ttl_wrap .ttl_ill {
  position: absolute;
  right: 11.69%;
  bottom: -14.5rem;
}
.sec_ttl_wrap .ttl_ill img {
  mix-blend-mode: multiply;
  width: 41.6rem;
  height: 27.7rem;
}

@media screen and (max-width: 767px) {
  .sec_ttl_wrap {
    margin-bottom: 5rem;
  }
  .sec_ttl_wrap::before, .sec_ttl_wrap::after {
    bottom: -4vw;
  }
  .sec_ttl_wrap::before {
    width: 50.667vw;
    left: 0;
  }
  .sec_ttl_wrap::after {
    display: none;
  }
  .sec_ttl_wrap .ttl_ill {
    right: -6.667vw;
    bottom: -17.333vw;
  }
  .sec_ttl_wrap .ttl_ill img {
    mix-blend-mode: multiply;
    width: 48.267vw;
    height: 32.267vw;
  }
}
.sec_subttl {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.025;
}
.sec_subttl span {
  border-bottom: 2px dashed #1B4DA7;
  display: inline-block;
}
.sec_subttl.sm {
  font-size: 3rem;
  line-height: 2.7;
}
.sec_subttl.white {
  color: #fff;
}
.sec_subttl.white span {
  border-bottom-color: #fff;
}
.sec_subttl.white.sm {
  line-height: 2.3666666667;
}

@media screen and (max-width: 767px) {
  .sec_subttl {
    font-size: 2.2rem;
    line-height: 2.0454545455;
  }
  .sec_subttl.sm {
    font-size: 1.8rem;
  }
}
.acc_inner {
  display: none;
}

/* ドット付き見出し */
.blue_dot_tag span {
  color: #1B4DA7;
  letter-spacing: normal;
  position: relative;
  padding-left: 2rem;
}
.blue_dot_tag span::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.blue_dot_tag.comment span {
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
}
.blue_dot_tag.lg span {
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .blue_dot_tag.lg span {
    font-size: 2rem;
  }
}

/* 縦並び対策 */
.mv_slider {
  display: none;
}

.mv_slider.slick-initialized {
  display: block;
}

/* ------------------------------
    mv
------------------------------ */
.mv {
  position: relative;
  width: 100%;
  background: #fff url("../img/bg_nav.png") repeat;
}
.mv_wrap {
  display: flex;
}
.mv_left {
  position: relative;
  width: 50%;
  padding-top: 25rem;
}
.mv_left::before {
  position: absolute;
  content: "";
  background: url("../img/mv_illust.png") no-repeat center center/cover;
  width: 41.6rem;
  height: 27.7rem;
  top: 4rem;
  right: -2rem;
  mix-blend-mode: multiply;
}
.mv_left .ttl_wrap {
  margin-bottom: 4rem;
}
.mv_left .sub_txt {
  color: #1B4DA7;
  font-size: 2.1rem;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 2rem;
}
.mv_left .ttl {
  color: #182D3F;
  font-size: 4.6rem;
  letter-spacing: .1em;
  font-weight: 700;
  line-height: 1.3260869565;
}
.mv_left .txt{
   margin-top: 30px;
}
.mv_left .dl_btn{
margin-top: 20px;
}

.mv_left .dl_btn a{
 margin: 0;
}

.mv_slider_area {
  width: 50%;
  padding-bottom: 20rem;
}
.mv_slider_area .slick-list {
  width: 50vw !important;
  margin-right: calc((50vw – 100%)) !important;
}
.mv_slider_area .slider_inner {
  position: relative;
}
.mv_slider_area .slider_inner_txt {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50.4rem;
  height: 23.6rem;
  background: rgba(255, 255, 255, 0.9);
  border-top-left-radius: 1rem;
  padding: 3rem 5rem 2rem 5rem;
}
.mv_slider_area .slider_inner_txt dt {
  margin-bottom: 2rem;
  border-bottom: 1px solid #DFE1E7;
}
.mv_slider_area .slider_inner_txt dt span {
  position: relative;
  color: #1B4DA7;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.6923076923;
  letter-spacing: .1em;
  padding-left: 2rem;
}
.mv_slider_area .slider_inner_txt dt span::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mv_slider_area .slider_inner_txt dd .txt {
  color: #182D3F;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 1.8rem 0;
}
.mv_slider_area .slider_inner_txt dd .item {
  display: flex;
  align-items: center;
}
.mv_slider_area .slider_inner_txt dd .cate {
  display: inline-block;
  background: #fff;
  border: 1px solid #182D3F;
  border-radius: 9999px;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  padding: .6rem 1.6rem;
}
.mv_slider_area .slider_inner_txt dd .cate + .cate {
  margin-left: 1rem;
}
.mv_slider_area .slider_inner_txt dd .price {
  margin-left: 2rem;
  font-size: 1.6rem;
}
.mv_slider_area .slider_inner_txt dd .price .num {
  color: #1B4DA7;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  letter-spacing: normal;
}
.mv_slider_area .slider_inner_txt dd .price .tax {
  font-size: 1.2rem;
}
.mv_slider.thumb_item .slick-slide img {
  width: 100%;
  margin: auto;
  border-bottom-left-radius: 3rem;
  aspect-ratio: 700/730;
  object-fit: cover;
}
@media screen and (min-width: 1300px) {
  .mv_slider.thumb_item .slick-slide img {
    max-height: 73rem;
  }
}
.mv_slider.thumb_item .slick-list {
  display: block;
  width: 100%;
}
.mv_slider.thumb_item_nav .slick-slide {
  transform: scale(0.6) translateY(3rem);
  transition: all .5s;
}
.mv_slider.thumb_item_nav .slick-slide:focus {
  outline: none;
}
.mv_slider.thumb_item_nav .slick-slide.slick-current {
  transform: scale(1);
}
.mv_slider.thumb_item_nav .slick-track {
  width: 100%;
  padding-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  transform: translate3d(0px, 0px, 0px) !important;
}
.mv_slider.thumb_item_nav .slick-slide {
  float: none;
  width: 100% !important;
  height: 100% !important;
  max-width: 15rem;
  max-height: 15rem;
  margin-right: 0;
}
.mv_slider.thumb_item_nav .slick-slide img {
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  mix-blend-mode: multiply;
}
.mv_slider.thumb_item_nav .slick-slide.slick-current {
  position: relative;
}
.mv_slider.thumb_item_nav .slick-slide.slick-current::before {
  position: absolute;
  content: "";
  border: 2px solid #1B4DA7;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  border-radius: 1rem;
}
.mv .thumb_item_nav {
  margin-top: 4rem;
}
.mv .thumb_item_nav .slick-slide {
  cursor: pointer;
}
.mv .thumb_item_nav .slick-slide p {
  display: none !important;
}
.mv .thumb_item_nav .slick-slide.slick-current {
  padding: 1.2rem;
}
.mv .thumb_item_nav .slick-slide.slick-current p {
  display: block !important;
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3rem;
  z-index: 10;
  text-align: center;
  color: #1B4DA7;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
.mv .bar_operation {
  margin-top: 1rem;
}
@media screen and (min-width: 1300px) {
  .mv .bar_operation {
    margin-left: -1rem;
  }
}

@media screen and (min-width: 768px) {
  .mv {
    min-height: 76.5rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    margin-bottom: 0;
  }
  .mv_wrap {
    display: block;
  }
  .mv_left {
    width: 100%;
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
  .mv_left::before {
    width: 18.1rem;
    height: 12.1rem;
    top: 18rem;
    right: -3rem;
  }
  .mv_left .ttl_wrap {
    margin-bottom: 6rem;
  }
  .mv_left .sub_txt {
    font-size: 1.7rem;
    margin-bottom: 2rem;
  }
  .mv_left .ttl {
    font-size: 2.8rem;
    line-height: 1.6428571429;
  }
  .mv_left .txt{
   margin-top: 62px;
  }
  .mv_left .dl_btn a{
    width: 100%;
  }
  .mv_slider_area {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding-bottom: 0;
  }
  .mv_slider_area .slick-list {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto;
    overflow: visible;
  }
  .mv_slider_area .slider_inner_txt {
    position: relative;
    margin-top: -4rem;
    margin-left: auto;
    /*
      bottom: -20rem;
      right: 0;
    */
    width: 97%;
    height: auto;
    padding: 2rem 0 4rem 3rem;
  }
  .mv_slider_area .slider_inner_txt dt {
    margin-bottom: 2rem;
  }
  .mv_slider_area .slider_inner_txt dd .txt {
    margin: 1.8rem 0;
    font-feature-settings: "palt";
  }
  .mv_slider_area .slider_inner_txt dd .cate {
    font-size: 1.3rem;
    padding: .6rem 1.3rem;
  }
  .mv_slider_area .slider_inner_txt dd .cate + .cate {
    margin-left: 0.5rem;
  }
  .mv_slider_area .slider_inner_txt dd .price {
    font-size: 1.3rem;
    margin-right: 0.5rem;
  }
  .mv_slider_area .slider_inner_txt dd .price .num {
    font-size: 4rem;
  }
  .mv_slider_area .slider_inner_txt dd .price .tax {
    font-size: 0.9rem;
  }
  .mv_slider.thumb_item .slick-slide img {
    border-bottom-left-radius: 0;
    aspect-ratio: 375/244;
    max-height: 24rem;
  }
  .mv_slider.thumb_item_nav .slick-track {
    padding-bottom: 4rem;
    justify-content: center;
  }
  .mv_slider.thumb_item_nav .slick-slide {
    transform: scale(0.5) translateY(1.5rem);
    max-width: 24vw;
    max-height: inherit;
  }
  .mv_slider.thumb_item_nav .slick-slide img {
    aspect-ratio: 1 / 1;
  }
  .mv .thumb_item_nav {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-top: 4rem;
  }
  .mv .thumb_item_nav .slick-slide.slick-current {
    padding: 1.2rem;
  }
  .mv .thumb_item_nav .slick-slide.slick-current p {
    bottom: -3rem;
  }
  .mv .bar_operation {
    margin: 0 auto;
  }
}
/* dots / arrow */
.bar_operation {
  margin-top: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bar_operation .slick-arrow {
  font-size: 0;
  color: transparent;
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bar_operation .slick-arrow {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .bar_operation .slick-arrow:hover {
    opacity: 0.7;
  }
}
.bar_operation .slick-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.bar_operation .slick-arrow.slick-prev {
  margin-right: 1.5rem;
}
.bar_operation .slick-arrow.slick-prev::before {
  border-top: 2px solid #1B4DA7;
  border-left: 2px solid #1B4DA7;
  transform: rotate(-45deg) translateY(-50%);
}
.bar_operation .slick-arrow.slick-next {
  left: auto;
  right: 0;
  order: 3;
  margin-left: 1.5rem;
}
.bar_operation .slick-arrow.slick-next::before {
  border-top: 2px solid #1B4DA7;
  border-right: 2px solid #1B4DA7;
  transform: rotate(45deg) translateY(-50%);
}
.bar_operation .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .2em;
}
.bar_operation .slick-dots li {
  line-height: 0;
  margin: 0 1rem;
}
.bar_operation .slick-dots li button {
  line-height: 0;
  font-size: 0;
  color: transparent;
  width: 1.3rem;
  height: 1.3rem;
  background: #DFE1E7;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .bar_operation .slick-dots li button {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .bar_operation .slick-dots li button:hover {
    opacity: 0.7;
  }
}
.bar_operation .slick-dots li.slick-active button {
  background: #1B4DA7;
}
@media screen and (max-width: 767px) {
  .bar_operation {
    margin-top: 3rem;
  }
}

/* ---------------------------------------
  sec_download
-----------------------------------------*/
.contact_wrap {
  background-image: url("../img/bg_nav.png"), url("../img/bg_contact.png");
  background-position: center top , center center;
  background-repeat: repeat , repeat;
  background-size: 100% auto , auto auto;
  padding: 8rem 0 30rem;
}
.contact_wrap .contact_ttl {
  margin-bottom: 4rem;
}
.contact_wrap .contact_ttl span {
  position: relative;
  color: #1B4DA7;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .1em;
}
.contact_wrap .contact_ttl span::before, .contact_wrap .contact_ttl span::after {
  position: absolute;
  content: "";
  background: url("../img/img_deco_nav.svg") no-repeat center center/contain;
  width: 2.1rem;
  height: 3.2rem;
  top: 0;
}
.contact_wrap .contact_ttl span::before {
  left: -3.7rem;
}
.contact_wrap .contact_ttl span::after {
  right: -3.7rem;
  transform: scale(-1, 1);
}
.contact_wrap .contact_li {
  max-width: 90rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact_wrap .contact_li li {
  position: relative;
}
.contact_wrap .contact_li .plus_txt {
  font-size: 6.1rem;
  font-weight: 700;
  color: #1B4DA7;
  text-align: center;
  padding: 0 1.5rem;
}
.contact_wrap .contact_li .img {
  width: 100%;
  max-width: 40rem;
  position: relative;
}
.contact_wrap .contact_li .img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  aspect-ratio: 400 / 280;
  background: rgba(24, 45, 63, 0.5);
  border-radius: 1rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}
.contact_wrap .contact_li .img img {
  position: relative;
  display: inline-block;
  border-radius: 1rem;
  aspect-ratio: 400 / 280;
  object-fit: cover;
}
.contact_wrap .contact_li .label, .contact_wrap .contact_li .txt {
  position: absolute;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  text-align: center;
  left: 3rem;
  /*縦表示禁止*/
  white-space: nowrap;
}
.contact_wrap .contact_li .label {
  position: absolute;
  background: #1B4DA7;
  display: inline-block;
  padding: .3em .5em;
  font-size: 1.4rem;
  bottom: 6rem;
  letter-spacing: normal;
}
.contact_wrap .contact_li .txt {
  font-size: 2.2rem;
  bottom: 1.8rem;
  letter-spacing: normal;
}
.contact_wrap .contact_present_wrap {
  position: relative;
  background: #fff;
  max-width: 80rem;
  height: 8.2rem;
  border-radius: 1rem;
  margin: 3.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_wrap .contact_present_wrap::before {
  position: absolute;
  content: "";
  border-right: 0.9rem solid transparent;
  border-bottom: 1.5rem solid #fff;
  border-left: 0.9rem solid transparent;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
}
.contact_wrap .contact_present_wrap p {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.2;
  color: #182D3F;
}
.contact_wrap .contact_btn_wrap .txt {
  color: #182D3F;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin: 5rem auto 2rem;
}

@media screen and (max-width: 767px) {
  .contact_wrap {
    background-size: 100% auto , 2.5rem auto;
    padding: 5rem 0 61.333vw;
  }
  .contact_wrap .contact_ttl {
    margin-bottom: 3rem;
  }
  .contact_wrap .contact_ttl span {
    font-size: 1.5rem;
  }
  .contact_wrap .contact_ttl span::before, .contact_wrap .contact_ttl span::after {
    width: 1.38rem;
    height: 2.27rem;
  }
  .contact_wrap .contact_li {
    max-width: 100%;
    display: block;
  }
  .contact_wrap .contact_li li {
    margin-bottom: 1.2rem;
  }
  .contact_wrap .contact_li .plus_txt {
    display: none;
  }
  .contact_wrap .contact_li .img {
    width: 100%;
    max-width: inherit;
  }
  .contact_wrap .contact_li .img::before {
    aspect-ratio: 355 / 131;
  }
  .contact_wrap .contact_li .img img {
    aspect-ratio: 355 / 131;
  }
  .contact_wrap .contact_li .label, .contact_wrap .contact_li .txt {
    left: 2rem;
  }
  .contact_wrap .contact_li .label {
    padding: .2em .5em;
    bottom: 4.5rem;
  }
  .contact_wrap .contact_li .txt {
    font-size: 2rem;
    bottom: 1rem;
  }
  .contact_wrap .contact_present_wrap {
    max-width: inherit;
    width: 81%;
    margin: 3.5rem auto 0;
  }
  .contact_wrap .contact_present_wrap p {
    font-size: 1.8rem;
  }
  .contact_wrap .contact_btn_wrap .txt {
    margin: 3rem auto 3rem;
  }
}
/* ---------------------------------------
  circle_bg
-----------------------------------------*/
.circle_bg {
  position: relative;
  background: #F4F2ED url("../img/bg_nav.png") repeat center top;
  padding-bottom: 30rem;
  margin-top: -10rem;
}
.circle_bg::before {
  position: absolute;
  content: "";
  background: #F4F2ED url("../img/bg_nav.png") repeat center top;
  width: 200%;
  height: 100vw;
  border-radius: 60%;
  top: -13rem;
  left: 50%;
  transform: translateX(-50%);
}
.circle_bg.white {
  background: #fff url("../img/bg_nav.png") repeat center top;
  padding-bottom: 10rem;
}
.circle_bg.white::before {
  background: #fff url("../img/bg_nav.png") repeat center top;
}

/*
.circle_bg{
  position: relative;
  background: #F4F2ED url("../img/bg_nav.png") repeat center top;
  padding-bottom: 30rem;
  margin-top: -10rem;
  &::before{
    position: absolute;
    content: "";
    background: #F4F2ED url("../img/bg_nav.png") repeat center top;
    width: 200%;
    height: 100vw;
    border-radius: 80%;
    top: -13rem;
    left: 50%;
    transform: translateX(-50%);
  }
  &.white{
    background: #fff url("../img/bg_nav.png") repeat center top;
    padding-bottom: 10rem;
    &::before{
      background: #fff url("../img/bg_nav.png") repeat center top;
    }
  }
}

*/
@media screen and (max-width: 767px) {
  .circle_bg {
    padding-bottom: 53.333vw;
    margin-top: -26.667vw;
  }
  .circle_bg::before {
    top: -10.667vw;
  }
  .circle_bg.white {
    padding-bottom: 5rem;
  }
}
/* ---------------------------------------
  リンク位置調整
-----------------------------------------*/
.section_wrap {
  position: relative;
}

#lineup, #works, #guide {
  position: absolute;
  top: -8rem;
}

#about {
  position: absolute;
  top: -2rem;
}

#modelhouse {
  position: absolute;
  top: 5rem;
}
@media screen and (max-width: 767px) {
  #modelhouse {
    top: 2rem;
  }
}

/* ---------------------------------------
  lineup
-----------------------------------------*/
.lineup {
  position: relative;
  /* 展開時区切り線 */
}
.lineup .wrap {
  position: relative;
}
.lineup .lineup_inner {
  margin-bottom: 7rem;
}
.lineup .lineup_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem 0;
}
.lineup .lineup_box_inner {
  width: 48.46%;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 3rem 2rem;
}
.lineup .lineup_item dt {
  font-size: 2.6rem;
  border-bottom: 1px solid #DFE1E7;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lineup .lineup_item dt .item_name {
  color: #1B4DA7;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  line-height: 2.2;
  position: relative;
  padding-left: 2rem;
}
.lineup .lineup_item dt .item_name::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.lineup .lineup_item dd {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 0 2rem;
}
.lineup .lineup_item dd .img {
  margin-right: -1rem;
  padding-left: 1rem;
}
.lineup .lineup_item dd .txt_wrap {
  flex: 1;
}
.lineup .lineup_item dd .txt_wrap .txt {
  letter-spacing: normal;
}
.lineup .lineup_item dd .price_list {
  margin-top: 1rem;
}
.lineup .lineup_item dd .price_list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  white-space: nowrap;
  border-bottom: 0.1rem dashed #1B4DA7;
  font-feature-settings: "palt";
}
.lineup .lineup_item dd .price_list li .type {
  font-size: 1.4rem;
  padding-bottom: 1em;
}
.lineup .lineup_item dd .price_list li .price {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.lineup .lineup_item dd .price_list li .price * {
  display: inline-block;
}
.lineup .lineup_item dd .price_list li .num {
  font-size: 4rem;
  font-weight: 700;
  color: #1B4DA7;
  font-family: "Montserrat", sans-serif;
  letter-spacing: normal;
  margin-right: .1em;
}
.lineup .lineup_item dd .price_list li .yen {
  font-size: 1.6rem;
  padding-bottom: 0.9em;
}
.lineup .lineup_item dd .price_list li .tax {
  font-size: 1.2rem;
  padding-bottom: 1.4em;
}
.lineup .realization_box {
  margin-top: 15rem;
  margin-bottom: 10rem;
  display: flex;
  justify-content: space-between;
}
.lineup .realization_box .txt_wrap {
  width: 52%;
}
.lineup .realization_box .txt_wrap .sec_subttl {
  margin-bottom: 7rem;
  white-space: nowrap;
}
.lineup .realization_box .txt_wrap p {
  font-size: 1.8rem;
  line-height: 2.4444444444;
}
.lineup .realization_box .detail_wrap dl {
  background: #fff;
  border-radius: 1rem;
  width: 55rem;
  min-height: 15rem;
  align-items: center;
  padding: 2rem 0;
  display: table;
}
.lineup .realization_box .detail_wrap dl dt, .lineup .realization_box .detail_wrap dl dd {
  vertical-align: middle;
  display: table-cell;
}
.lineup .realization_box .detail_wrap dl dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B4DA7;
  width: 15.5rem;
  text-align: center;
}
.lineup .realization_box .detail_wrap dl dd {
  flex: 1;
  border-left: 1px solid #1B4DA7;
  padding-left: 3.5rem;
  padding-right: 2rem;
}
.lineup .realization_box .detail_wrap dl + dl {
  margin-top: 2rem;
}
.lineup .lineup_slider_wrap .lineup_item dd {
  padding-bottom: 1rem;
}
.lineup .greenline_btn {
  max-width: 23.5rem;
  margin: 0 auto;
}
.lineup .acc_block:not(:last-child) .acc_inner {
  border-bottom: 1px solid #1B4DA7;
  padding-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .lineup .lineup_inner {
    margin-bottom: 5rem;
  }
  .lineup .lineup_box {
    display: block;
  }
  .lineup .lineup_box_inner {
    width: 100%;
    padding: 1rem 2rem 2rem;
  }
  .lineup .lineup_item dt {
    font-size: 2.6rem;
    border-bottom: 1px solid #DFE1E7;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .lineup .lineup_item dt .item_name {
    font-size: 2.4rem;
  }
  .lineup .lineup_item dd {
    display: block;
    padding: 0 0 2rem;
  }
  .lineup .lineup_item dd .img {
    margin: 0 auto;
    padding-left: 0;
    width: 80%;
    max-width: 24.4rem;
    min-height: 22rem;
  }
  .lineup .lineup_item dd .txt_wrap {
    margin-top: 2rem;
  }
  .lineup .lineup_item dd .txt_wrap .txt {
    font-size: 1.55rem;
  }
  .lineup .lineup_item dd .price_list {
    margin-top: 1rem;
  }
  .lineup .lineup_item dd .price_list li .yen {
    font-size: 1.4rem;
  }
  .lineup .lineup_item dd .price_list li .num {
    font-size: 3.5rem;
  }
  .lineup .lineup_item dd .price_list li .tax {
    font-size: 1rem;
  }
  .lineup .lineup_item dd .price_list li + li {
    margin-top: 0.5rem;
  }
  .lineup .slick-slide {
    margin: 0 0.1rem;
  }
  .lineup .realization_box {
    margin-top: 7.5rem;
    margin-bottom: 5rem;
    display: block;
  }
  .lineup .realization_box .txt_wrap {
    width: 100%;
  }
  .lineup .realization_box .txt_wrap .sec_subttl {
    margin-bottom: 3rem;
    white-space: normal;
    font-size: 2rem;
  }
  .lineup .realization_box .txt_wrap p {
    font-size: 1.6rem;
    line-height: 2.5;
  }
  .lineup .realization_box .detail_wrap {
    margin-top: 3rem;
  }
  .lineup .realization_box .detail_wrap dl {
    width: 100%;
    min-height: inherit;
    padding: 2rem 2rem;
    display: block;
  }
  .lineup .realization_box .detail_wrap dl dt, .lineup .realization_box .detail_wrap dl dd {
    display: block;
  }
  .lineup .realization_box .detail_wrap dl dt {
    font-size: 1.6rem;
    width: 100%;
    text-align: left;
  }
  .lineup .realization_box .detail_wrap dl dd {
    margin-top: 1rem;
    border-left: none;
    border-top: 1px solid #1B4DA7;
    padding: 1rem 0 0;
  }
  .lineup .realization_box .detail_wrap dl dd p {
    font-size: 1.4rem;
  }
  .lineup .realization_box .detail_wrap dl + dl {
    margin-top: 1rem;
  }
}
.lineup_slider_wrap {
  position: relative;
}
.lineup_slider_wrap .wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.lineup_slider_wrap .wrap .lineup_box_inner {
  position: absolute;
  bottom: 4.2rem;
  right: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.lineup_slider_wrap + .btn {
  padding: 5rem 0;
}

@media screen and (max-width: 767px) {
  .lineup_slider_wrap .wrap .lineup_box_inner {
    position: relative;
    bottom: inherit;
    left: 0;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    margin-top: 3rem;
  }
  .lineup_slider_wrap .wrap .lineup_box_inner dd {
    padding-bottom: 0.5rem;
  }
  .lineup_slider_wrap + .btn {
    padding: 3rem 0;
  }
}
/* lineup_slider */
.lineup_slider {
  position: relative;
  margin: 0 auto 0 -45rem;
  /* 縦並び対策 */
  display: none;
}
.lineup_slider.slick-initialized {
  display: block;
}
.lineup_slider .slider {
  height: 53rem;
}
.lineup_slider .slider img {
  width: 100%;
  height: 100%;
  aspect-ratio: 870 / 530;
  object-fit: cover;
  border-radius: 2rem;
}
.lineup_slider .slick-slider button:focus {
  outline: none;
}
.lineup_slider .slick-slide {
  padding: 0 1rem;
}
.lineup_slider .slick-list {
  overflow: visible;
}

.js_lineup_operation {
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .lineup_slider {
    margin: 0 auto 0 -10%;
  }
  .lineup_slider .slider {
    height: auto;
  }
  .lineup_slider .slider img {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
  }
}
/* lineup_detail */
.lineup_detail {
  margin: 5rem auto;
  background: #fff;
}
.lineup_detail_inner {
  display: flex;
}
.lineup_detail_inner.reverse {
  flex-direction: row-reverse;
}
.lineup_detail_inner .img {
  width: 65%;
}
.lineup_detail_inner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lineup_detail_inner .txt_wrap {
  width: 35%;
  padding: 5rem;
}
.lineup_detail_inner .txt_wrap .blue_dot_tag {
  margin-bottom: 5rem;
}
.lineup_detail_inner .txt_wrap dt {
  font-size: 2rem;
  letter-spacing: .1em;
  font-weight: 700;
  border-bottom: 1px solid #DFE1E7;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.lineup_detail_inner .txt_wrap dd {
  line-height: 1.6666666667;
}

@media screen and (max-width: 767px) {
  .lineup_detail {
    margin: 1rem auto 5rem;
  }
  .lineup_detail_inner {
    display: block;
  }
  .lineup_detail_inner .img {
    width: 100%;
  }
  .lineup_detail_inner .img img {
    max-height: inherit;
  }
  .lineup_detail_inner .txt_wrap {
    width: 100%;
    padding: 2rem 2rem 5rem;
  }
  .lineup_detail_inner .txt_wrap .blue_dot_tag {
    margin-bottom: 1.5rem;
  }
  .lineup_detail_inner .txt_wrap dt {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.lineup_drawing {
  max-width: 130rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  padding: 4rem 5rem;
  /* フルサイズライン */
}
.lineup_drawing_inner {
  display: flex;
}
.lineup_drawing_item {
  padding-bottom: 5rem;
}
.lineup_drawing_item .img figcaption {
  color: #182D3F;
  font-weight: 700;
  text-align: center;
  font-size: 1.6rem;
  padding-top: 1.5rem;
}
.lineup_drawing .blue_dot_tag {
  margin-bottom: 5rem;
}
.lineup_drawing .dl_btn_wrap {
  padding-top: 4rem;
}
.lineup_drawing .dl_btn_wrap .txt {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  font-weight: 700;
  margin-bottom: 2rem;
}
.lineup_drawing .line_full {
  background-color: #DFE1E7;
  height: 1px;
  width: calc(100% + 10rem);
  margin-left: -5rem;
  margin-right: -5rem;
}

@media screen and (max-width: 767px) {
  .lineup_drawing {
    max-width: inherit;
    width: 92%;
    padding: 3rem 2rem;
    border-radius: 1rem;
    /* フルサイズライン */
  }
  .lineup_drawing_inner {
    display: block;
    margin-bottom: -3rem;
  }
  .lineup_drawing_item {
    padding-bottom: 5rem;
  }
  .lineup_drawing_item .img figcaption {
    padding-top: 1.5rem;
  }
  .lineup_drawing .blue_dot_tag {
    margin-bottom: 3rem;
  }
  .lineup_drawing .dl_btn_wrap {
    padding-top: 3rem;
  }
  .lineup_drawing .dl_btn_wrap .txt {
    font-size: 1.55rem;
    line-height: 1.5625;
    font-feature-settings: "palt";
  }
  .lineup_drawing .dl_btn_wrap .dl_btn a {
    width: 100%;
    height: 5.5rem;
  }
  .lineup_drawing .dl_btn_wrap .dl_btn a span {
    font-size: 1.6rem;
  }
  .lineup_drawing .line_full {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 5rem;
  }
}
#lineup_base, #lineup_hokuo, #lineup_aozora, #lineup_yume55 {
  padding: 5rem 0 0;
}

/* ---------------------------------------
  works
-----------------------------------------*/
.works {
  position: relative;
  /* 展開時区切り線 */
  /* works詳細（アコーディオン内） */
}
.works .wrap {
  position: relative;
}
.works .acc_block + .acc_block {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .works .acc_block + .acc_block {
    margin-top: 34vw;
  }
}
.works .works_inner {
  margin-bottom: 7rem;
}
.works .sec_subttl {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .works .sec_subttl {
    margin-bottom: 5rem;
  }
}
.works .works_box {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 18rem 1fr;
  grid-template-areas: "ttl img" "txt img";
  /* 縦並び対策 */
}
@media screen and (max-width: 767px) {
  .works .works_box {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "ttl" "img" "txt";
  }
}
.works .works_box .works_box_slider_wrap {
  grid-area: img;
  /* grid対策 */
  /* 1枚の時はdotを表示しない */
}
@media screen and (max-width: 767px) {
  .works .works_box .works_box_slider_wrap {
    height: 74.667vw;
    width: 92vw;
  }
}
.works .works_box .works_box_slider_wrap .slick-slide {
  margin: 0 0.5rem;
}
.works .works_box .works_box_slider_wrap .slick-dots > li:first-child:last-child {
  display: none;
}
.works .works_box .plan_ttl_wrap {
  grid-area: ttl;
  position: relative;
  background: #F8F3E4;
  width: 60rem;
  height: 7.8rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 2rem 0;
  margin-top: 3.5rem;
}
.works .works_box .plan_ttl_wrap::before {
  position: absolute;
  content: "";
  /* background: url("../img/mv_illust.png") no-repeat center center/cover; */
  width: 24rem;
  height: 16rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  .works .works_box .plan_ttl_wrap {
    width: 100%;
    padding: 0.5rem 1rem 0;
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .works .works_box .plan_ttl_wrap::before {
    width: 53.333vw;
    height: 35.467vw;
    right: 1.867vw;
    top: -10.133vw;
  }
}
.works .works_box .text_area {
  grid-area: txt;
  padding-right: 5rem;
}
@media screen and (max-width: 767px) {
  .works .works_box .text_area {
    padding-right: 0;
  }
}
.works .works_box .works_box_slider .slider {
  display: block;
}
.works .works_box .works_box_slider .slider img {
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .works .works_box .works_box_slider img {
    width: 100%;
    border-radius: 1rem !important;
  }
}
.works .works_box .bar_operation {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .works .works_box .bar_operation {
    margin-top: 2rem;
  }
}
.works .works_box .plan_ttl {
  position: relative;
  line-height: 1;
  letter-spacing: normal;
}
.works .works_box .plan_ttl .plan_name {
  color: #1B4DA7;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-top: .2em;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .works .works_box .plan_ttl {
    font-size: 1.55rem;
    letter-spacing: normal;
  }
  .works .works_box .plan_ttl .plan_name {
    font-size: 2.4rem;
  }
}
.works .works_box .plan_item {
  margin-bottom: 3.5rem;
}
.works .works_box .plan_item_dt {
  position: relative;
  border-bottom: 1px solid #DFE1E7;
  padding-left: 1em;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.works .works_box .plan_item_dt > p {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.6538461538;
  color: #1B4DA7;
  font-weight: 700;
  letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  .works .works_box .plan_item_dt > p {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
.works .works_box .plan_item_dt::before {
  position: absolute;
  content: "";
  background: #1B4DA7;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  left: 0;
  top: 1em;
}
.works .works_box .plan_detail {
  display: table;
}
.works .works_box .plan_detail + .plan_detail {
  margin-top: 2rem;
}
.works .works_box .plan_detail_dt, .works .works_box .plan_detail_dd {
  display: table-cell;
  line-height: 1.2;
}
.works .works_box .plan_detail_dt {
  color: #1B4DA7;
  width: 10rem;
  border-right: 1px solid #DFE1E7;
}
.works .works_box .plan_detail_dd {
  padding-left: 2.5rem;
}
.works .works_box .btn {
  margin-bottom: 5rem;
}
.works .works_box_slider {
  display: none;
}
.works .works_box_slider.slick-initialized {
  display: block;
}
.works .acc_block:not(:last-child) .works_detail {
  padding-bottom: 5rem;
}
.works .acc_block:not(:last-child) .works_detail::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 1px;
  background: #1B4DA7;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  bottom: 0;
  left: 0;
}
.works .works_detail {
  position: relative;
  padding-bottom: 2rem;
  /* フルサイズライン */
}
.works .works_detail .comment_wrap {
  position: relative;
  width: 100%;
  max-width: 100rem;
  padding: 3rem 3rem 3rem 6rem;
  display: grid;
  grid-template-columns: 25rem 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "img tag" "img txt";
  background: #DFE1E7;
  border-radius: 2rem;
  margin: 2rem auto 11rem;
}
.works .works_detail .comment_wrap::before, .works .works_detail .comment_wrap::after {
  position: absolute;
  content: "";
  background: url("../img/deco_comma.svg") no-repeat center center/cover;
  width: 2.1rem;
  height: 1.8rem;
}
.works .works_detail .comment_wrap::before {
  top: -0.8rem;
  left: 3.5rem;
}
.works .works_detail .comment_wrap::after {
  bottom: -0.8rem;
  right: 3.5rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .works .works_detail .comment_wrap {
    max-width: inherit;
    width: 100%;
    padding: 3rem 1.5rem 2rem;
    margin-bottom: 5.5rem;
    border-radius: 1rem;
    grid-template-columns: 8.5rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "img tag" "txt txt";
  }
}
.works .works_detail .comment_wrap .img {
  padding-right: 8rem;
  grid-area: img;
}
.works .works_detail .comment_wrap .img img {
  border-radius: 50%;
  max-width: 17rem;
}
@media screen and (max-width: 767px) {
  .works .works_detail .comment_wrap .img {
    padding-right: 0;
    text-align: center;
  }
}
.works .works_detail .comment_wrap .commnent_ttl {
  grid-area: tag;
}
@media screen and (max-width: 767px) {
  .works .works_detail .comment_wrap .commnent_ttl {
    display: flex;
    align-items: center;
    padding-left: 3rem;
  }
}
.works .works_detail .comment_wrap .txt_wrap {
  grid-area: txt;
}
.works .works_detail .comment_wrap .txt_wrap .txt {
  line-height: 1.875;
  margin-bottom: 4rem;
}
.works .works_detail .comment_wrap .txt_wrap .charge_wrap {
  display: flex;
  align-items: center;
}
.works .works_detail .comment_wrap .txt_wrap .charge_wrap .charge {
  display: inline-block;
  background: #1B4DA7;
  color: #fff;
  text-align: center;
  padding: 0.5rem 2rem;
  margin-right: 3rem;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  .works .works_detail .comment_wrap .txt_wrap {
    margin-top: 2rem;
  }
  .works .works_detail .comment_wrap .txt_wrap .txt {
    margin-bottom: 2rem;
  }
}
.works .works_detail .feature_wrap .slider_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.works .works_detail .feature_wrap .slider_inner .img {
  padding-right: 7.5rem;
}
.works .works_detail .feature_wrap .slider_inner .img img {
  max-width: 65rem;
  border-radius: 2rem;
}
.works .works_detail .feature_wrap .slider_inner + .slider_inner {
  margin-top: 2rem;
}
.works .works_detail .feature_wrap .feature_detail {
  padding-top: 2rem;
}
.works .works_detail .feature_wrap .feature_detail .blue_dot_tag {
  margin-bottom: 5rem;
}
.works .works_detail .feature_wrap .feature_detail dt {
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: 1px solid #DFE1E7;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
}
.works .works_detail .feature_wrap .feature_detail dd {
  line-height: 1.875;
  padding-right: 10rem;
}
@media screen and (max-width: 767px) {
  .works .works_detail .feature_wrap .feature_slider {
    margin: 0 auto 0 -12%;
  }
  .works .works_detail .feature_wrap .feature_slider .slick-slide {
    padding: 0 1rem;
  }
  .works .works_detail .feature_wrap .slider_inner {
    display: block;
  }
  .works .works_detail .feature_wrap .slider_inner .img {
    padding-right: 0;
  }
  .works .works_detail .feature_wrap .slider_inner .img img {
    max-width: inherit;
    border-radius: 1rem;
  }
  .works .works_detail .feature_wrap .slider_inner + .slider_inner {
    margin-top: 0;
  }
  .works .works_detail .feature_wrap .feature_detail {
    padding-top: 2rem;
  }
  .works .works_detail .feature_wrap .feature_detail .blue_dot_tag {
    margin-bottom: 1.5rem;
  }
  .works .works_detail .feature_wrap .feature_detail dt {
    font-size: 1.9rem;
  }
  .works .works_detail .feature_wrap .feature_detail dd {
    padding-right: 0;
  }
  .works .works_detail .feature_wrap .bar_operation {
    margin-top: 4rem;
  }
}
.works .works_detail .interview_wrap {
  position: relative;
  width: 100%;
  margin: 8rem auto;
  background: #DFE1E7;
  border-radius: 2rem;
  padding: 3rem 5rem;
  display: flex;
}
.works .works_detail .interview_wrap .info_item {
  width: 37.5rem;
  margin-top: 1.5rem;
}
.works .works_detail .interview_wrap .info_item_dt {
  margin-bottom: 9rem;
}
.works .works_detail .interview_wrap .info_item_dt p {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.25;
}
.works .works_detail .interview_wrap .info_item_dt p span {
  border-bottom: 2px dashed #1B4DA7;
  display: inline-block;
}
.works .works_detail .interview_wrap .info_detail {
  display: table;
}
.works .works_detail .interview_wrap .info_detail + .info_detail {
  margin-top: 2rem;
}
.works .works_detail .interview_wrap .info_detail_dt, .works .works_detail .interview_wrap .info_detail_dd {
  display: table-cell;
  line-height: 1;
}
.works .works_detail .interview_wrap .info_detail_dt {
  color: #1B4DA7;
  width: 10rem;
  border-right: 1px solid #182D3F;
}
.works .works_detail .interview_wrap .info_detail_dd {
  padding-left: 2.5rem;
}
.works .works_detail .interview_wrap .txt_wrap {
  position: relative;
  width: calc(100% - 37.5rem);
  flex: 1;
  padding: 5rem 5rem 3rem;
  /*
  p{
    line-height: (30/16);
    & + p{
      margin-top: 3rem;
    }
  }
  */
}
.works .works_detail .interview_wrap .txt_wrap::before, .works .works_detail .interview_wrap .txt_wrap::after {
  position: absolute;
  content: "";
  background: url("../img/deco_comma.svg") no-repeat center center/cover;
  width: 2.1rem;
  height: 1.8rem;
}
.works .works_detail .interview_wrap .txt_wrap::before {
  top: 3rem;
  left: 0;
}
.works .works_detail .interview_wrap .txt_wrap::after {
  bottom: 1rem;
  right: -1rem;
  transform: rotate(180deg);
}
.works .works_detail .interview_voice p {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  font-feature-settings: "palt";
  padding-left: 4rem;
}
.works .works_detail .interview_voice p::before {
  position: absolute;
  top: -.25em;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}
.works .works_detail .interview_voice p.ico_q {
  font-weight: 700;
}
.works .works_detail .interview_voice p.ico_q::before {
  content: "Q";
  color: #1B4DA7;
  left: 0;
}
.works .works_detail .interview_voice p.ico_a {
  margin-top: 1.5rem;
}
.works .works_detail .interview_voice p.ico_a::before {
  content: "A";
  color: #6AB426;
  left: .04em;
}
.works .works_detail .interview_voice p.ico_a + .ico_q {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .works .works_detail .interview_wrap {
    margin: 8rem auto;
    padding: 3rem 1.5rem;
    display: block;
    border-radius: 1rem;
  }
  .works .works_detail .interview_wrap .info_item {
    width: 100%;
    margin-top: 1.5rem;
  }
  .works .works_detail .interview_wrap .info_item_dt {
    margin-bottom: 2.5rem;
  }
  .works .works_detail .interview_wrap .info_item_dt p {
    font-size: 2.2rem;
    line-height: 2.0454545455;
  }
  .works .works_detail .interview_wrap .info_detail + .info_detail {
    margin-top: 1.5rem;
  }
  .works .works_detail .interview_wrap .info_detail_dt {
    width: 9rem;
  }
  .works .works_detail .interview_wrap .info_detail_dd {
    padding-left: 2rem;
  }
  .works .works_detail .interview_wrap .txt_wrap {
    margin-top: 6rem;
    width: 100%;
    padding: 0;
    /*
    p{
      & + p{
        margin-top: 3.5rem;
      }
    }
    */
  }
  .works .works_detail .interview_wrap .txt_wrap::before, .works .works_detail .interview_wrap .txt_wrap::after {
    width: 2.1rem;
    height: 1.8rem;
  }
  .works .works_detail .interview_wrap .txt_wrap::before {
    top: -3.5rem;
  }
  .works .works_detail .interview_wrap .txt_wrap::after {
    bottom: -3.5rem;
    right: 0;
  }
  .works .works_detail .interview_voice p {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
  .works .works_detail .interview_voice p::before {
    font-size: 2.2rem;
  }
}
.works .works_detail .line_full {
  background-color: #DFE1E7;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .works .works_detail .line_full {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
.works .works_detail .dl_btn_wrap {
  padding-top: 4rem;
}
.works .works_detail .dl_btn_wrap .txt {
  font-size: 1.8rem;
  line-height: 1.8888888889;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .works .works_detail .dl_btn_wrap .txt {
    font-size: 1.6rem;
  }
  .works .works_detail .dl_btn_wrap .dl_btn a {
    height: 5.5rem;
  }
  .works .works_detail .dl_btn_wrap .dl_btn a span {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .show_more {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .txt_hide_wrap {
    position: relative;
    height: 35rem;
    overflow: hidden;
    transition: .4s;
    /*グラデーションで隠す擬似要素*/
    /*クラス付与時のスタイル*/
    /*ボタンのスタイル*/
  }
  .txt_hide_wrap .txt_main {
    padding-bottom: 6rem;
  }
  .txt_hide_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60rem;
    background: -webkit-linear-gradient(top, rgba(223, 225, 231, 0) 0%, rgba(223, 225, 231, 0.4) 40%, #DFE1E7 100%);
    background: linear-gradient(top, rgba(223, 225, 231, 0) 0%, rgba(223, 225, 231, 0.4) 40%, #DFE1E7 100%);
    transition: .4s;
    z-index: 2;
  }
  .txt_hide_wrap.active:before {
    opacity: 0;
    visibility: hidden;
  }
  .txt_hide_wrap .show_more {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 700;
    border-bottom: 1px solid #6AB426;
    padding: 1.5rem 1.5rem 1.5rem 0;
    width: 14rem;
    z-index: 3;
  }
  .txt_hide_wrap .show_more::before {
    position: absolute;
    content: "";
    background: url("../img/btn_arrow_more.svg") no-repeat center center/cover;
    width: 2.6rem;
    height: 2.6rem;
    right: 0;
    top: 48%;
    transform: translateY(-48%);
  }
  .txt_hide_wrap.active .show_more {
    bottom: 1rem;
  }
  .txt_hide_wrap.active .show_more::before {
    background: url("../img/btn_arrow_close.svg") no-repeat center center/cover;
  }
  .txt_hide_wrap.mes::before {
    background: -webkit-linear-gradient(top, rgba(248, 243, 228, 0) 0%, rgba(248, 243, 228, 0.4) 40%, #F8F3E4 100%);
    background: linear-gradient(top, rgba(248, 243, 228, 0) 0%, rgba(248, 243, 228, 0.4) 40%, #F8F3E4 100%);
  }
}

#reform{
  background-color: #CCF9FF;
  padding: 100px 0;
}

@media screen and (min-width: 741px){
  #reform .pc_none{
  display: none;
}

}

#reform .reform_inner__txt{
  margin-top: 30px;
  line-height: 2.6;
}

.swiper-area{
  margin-top: 70px;
}
@media screen and (max-width: 740px){
    .swiper-area{
      margin-top: 20px;
    }
}

.swiper-wrapper{
  overflow: visible;
  width: 100%;
}
@media screen and (max-width: 740px){
    .swiper-wrapper{
      overflow: visible;
      height: 200px;
      width: 100%;
}
}

#reform .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reform .swiper-slide .slide-img img{
  height: 100%; 
  width: auto; 
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 2rem;
}
@media screen and (max-width: 740px){
    #reform .swiper-slide .slide-img img{
      border-radius: 1rem;
    }
}

#reform .wrap .dl_btn{
  margin-top: 30px;
}

#reform .wrap .dl_btn a{
  margin: 0;
}
@media screen and (max-width: 740px){
    #reform .wrap .dl_btn a{
      width: 100%;
    }
}

/* ---------------------------------------
  instagram
-----------------------------------------*/
.instagram {
  position: relative;
  background: #F8F3E4 url("../img/bg_nav.png") repeat;
  padding: 8rem 0 11rem;
}
.instagram .cont {
  padding: 8rem 0 5rem;
}
.instagram_btn_wrap .txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5;
  margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
  .instagram {
    padding: 5rem 0 5rem;
  }
  .instagram .cont {
    padding: 5rem 0 5rem;
  }
  .instagram_btn_wrap .txt {
    font-size: 1.6rem;
  }
}
/* ---------------------------------------
  event
-----------------------------------------*/
.event {
  position: relative;
  background: #1B4DA7 url("../img/bg_nav.png") repeat;
  padding: 10rem 0 5.6em;
}
.event_inner {
  display: flex;
}
.event_subttl {
  width: 50%;
}
.event_list {
  width: 50%;
}
.event_list li {
  position: relative;
  border-bottom: 1px solid #fff;
}
.event_list li a {
  position: relative;
  display: flex;
  padding: 1.4rem 10rem 1.4rem 0;
}
.event_list li a::before, .event_list li a::after {
  position: absolute;
  content: "";
}
.event_list li a::before {
  width: 0.9rem;
  height: 0.9rem;
  border-top: solid 2px #1B4DA7;
  border-right: solid 2px #1B4DA7;
  right: 2.5rem;
  top: 1.4em;
  transform: rotate(45deg);
  z-index: 2;
}
.event_list li a::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2.6rem;
  height: 2.6rem;
  right: 1.5rem;
  top: 0.85em;
  border-radius: 50%;
}
.event_list .date,
.event_list .txt {
  color: #fff;
}
.event_list .date {
  font-family: "Montserrat", sans-serif;
  padding-right: 4rem;
}
.event_list .txt {
  flex: 1;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .event_list li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .event_list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .event {
    padding: 5rem 0 5em;
  }
  .event_inner {
    display: block;
  }
  .event_subttl {
    width: 100%;
    margin-bottom: 3rem;
  }
  .event_list {
    width: 100%;
  }
  .event_list li a {
    display: block;
    padding: 1.4rem 5rem 1.4rem 0;
  }
  .event_list li a::before {
    top: 1.55em;
    right: 1rem;
  }
  .event_list li a::after {
    top: 1em;
    right: 0;
  }
}
/* ---------------------------------------
  modelhouse
-----------------------------------------*/
.modelhouse {
  position: relative;
  background: #fff url("../img/bg_nav.png") repeat;
  padding: 18rem 0 11rem;
}
.modelhouse .sec_subttl {
  margin-bottom: 6rem;
}
.modelhouse .txt_wrap p {
  font-size: 1.8rem;
  line-height: 2.4444444444;
}
.modelhouse .plan_warp {
  margin: 8rem calc(50% - 50vw);
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4rem;
  padding: 0 .8rem;
}
.modelhouse .plan_warp .img_wrap {
  position: relative;
}
.modelhouse .plan_warp .img_wrap .img img {
  width: 100%;
  height: 100%;
  max-height: 47.3rem;
  aspect-ratio: 680 / 473;
  border-radius: 2rem;
  object-fit: cover;
}
.modelhouse .plan_warp .img_wrap .img_txt {
  position: absolute;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 6rem;
  bottom: 0;
  right: 0;
  border-bottom-right-radius: 2rem;
  border-top-left-radius: 1rem;
}
.modelhouse .plan_warp .img_wrap .img_txt span {
  display: inline-block;
}
.modelhouse_contact_wrap {
  margin: 0 auto;
  border-top: 1px solid #DFE1E7;
  padding-top: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20rem;
}
.modelhouse_contact_wrap .tel, .modelhouse_contact_wrap .btn {
  width: 37.6rem;
}
.modelhouse_contact_wrap .tel span {
  position: relative;
  display: block;
}
.modelhouse_contact_wrap .tel span.num {
  font-size: 3.7rem;
  font-family: "Montserrat", sans-serif;
  color: #1B4DA7;
  font-weight: 700;
  padding-left: 1rem;
  letter-spacing: normal;
}
.modelhouse_contact_wrap .tel span.num::before {
  position: absolute;
  content: "";
  background: url("../img/ico_tel_blue.svg") no-repeat center center/cover;
  width: 2.4rem;
  height: 2.4rem;
  top: .45em;
  left: -.6em;
}
.modelhouse_contact_wrap .tel span.date {
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .modelhouse {
    padding: 6rem 0 5rem;
  }
  .modelhouse .sec_subttl {
    margin-bottom: 5rem;
  }
  .modelhouse .txt_wrap p {
    font-size: 1.6rem;
    line-height: 2.5;
  }
  .modelhouse .plan_warp {
    margin: 5rem auto;
    width: 100%;
    display: block;
    padding: 0;
  }
  .modelhouse .plan_warp .img_wrap .img img {
    max-height: inherit;
    border-radius: 1rem;
    object-fit: cover;
  }
  .modelhouse .plan_warp .img_wrap .img_txt {
    width: 24rem;
    height: 5.5rem;
    border-bottom-right-radius: 1rem;
  }
  .modelhouse .plan_warp .img_wrap + .img_wrap {
    margin-top: 2rem;
  }
  .modelhouse_contact_wrap {
    padding-top: 4rem;
    display: block;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .modelhouse_contact_wrap .tel, .modelhouse_contact_wrap .btn {
    width: 100%;
  }
  .modelhouse_contact_wrap .tel span.num {
    font-size: 2.9rem;
    padding-left: 1rem;
  }
  .modelhouse_contact_wrap .tel span.num::before {
    width: 1.9rem;
    height: 1.9rem;
    top: .45em;
    left: -.5em;
  }
  .modelhouse_contact_wrap .tel span.date {
    font-size: 1.7rem;
  }
}
/* ---------------------------------------
  guide
-----------------------------------------*/
.guide_bg {
  padding-bottom: 50rem;
}
.guide .sec_subttl {
  margin-bottom: 10rem;
}

.wrap .guide_inner:nth-of-type(2) {
  margin-bottom: 50px;
}

.guide_inner {
  width: 100%;
  background: #fff;
  border-radius: 2rem;
  padding: 5rem 5rem 2rem;
}

.guide_nav_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.guide_list {
  border-bottom: 1px solid #DFE1E7;
  padding-bottom: 1.5rem;
}
.guide_list + .guide_list {
  margin-top: 1.5rem;
}
.guide_list:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.guide_list dt, .guide_list dd {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  font-feature-settings: "palt";
  padding-left: 5rem;
}
.guide_list dt::before, .guide_list dd::before {
  position: absolute;
  top: -.25em;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}
.guide_list dt {
  font-weight: 700;
}
.guide_list dt::before {
  content: "Q";
  color: #1B4DA7;
  left: 0;
}
.guide_list dd {
  margin-top: 1.5rem;
}
.guide_list dd::before {
  content: "A";
  color: #6AB426;
  left: .04em;
}

@media screen and (max-width: 767px) {
  .guide_bg {
    padding-bottom: 53.333vw;
  }
  .guide .sec_subttl {
    margin-bottom: 5rem;
  }
  .guide_inner {
    padding: 3rem 2rem 1rem;
    border-radius: 1rem;
  }
  .guide_nav_wrap {
    display: block;
  }
  .guide_nav_wrap .blue_dot_tag {
    text-align: center;
  }
  .guide_list {
    padding-bottom: 1.5rem;
  }
  .guide_list + .guide_list {
    margin-top: 1.5rem;
  }
  .guide_list dt, .guide_list dd {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
  .guide_list dt::before, .guide_list dd::before {
    font-size: 2.2rem;
  }
  .guide .greenline_btn {
    margin-top: 3rem;
  }
}
/* ---------------------------------------
  about
-----------------------------------------*/
.about_bg {
  padding-top: 6rem;
  padding-bottom: 10rem !important;
}
.about .sec_subttl {
  margin-bottom: 10rem;
}
.about .about_txt_wrap {
  display: flex;
}
.about .about_txt_wrap.reverse {
  flex-direction: row-reverse;
}
.about .about_txt_wrap p {
  font-size: 2rem;
  letter-spacing: .1em;
  line-height: 2.4;
}
.about .about_ttl_wrap {
  margin-top: 3.5rem;
}
.about .column-outside-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
}
.about .txt_inner {
  width: 50%;
}
.about .txt_inner.inner01 {
  padding: 9rem 0 12.5rem;
}
.about .img_group {
  width: 50%;
  position: relative;
}
.about .img img {
  border-radius: 2rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline-block;
}
.about .img_only_group {
  position: relative;
  width: 86rem;
  margin-left: auto;
  margin-right: 11rem;
  padding-bottom: 42rem;
}
.about .img01 {
  height: 55rem;
}
.about .img01 img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.about .img02 {
  position: absolute;
  width: 40.2rem;
  left: -2.5rem;
  top: 0;
}
.about .img03 {
  position: absolute;
  width: 43.8rem;
  left: 11.5rem;
  top: 20rem;
}
.about .img04 {
  position: relative;
  width: 64.4rem;
  z-index: 2;
}
.about .img05 {
  position: absolute;
  top: -8.3rem;
  left: 0;
}
.about .img05 img {
  width: 46.9rem;
  height: 36.5rem;
}
.about .img06 {
  position: absolute;
  top: 3.4rem;
  right: 0;
}
.about .img06 img {
  width: 30.8rem;
  height: 35.4rem;
}
@media screen and (max-width: 767px) {
  .about_bg {
    padding-top: 3rem;
    padding-bottom: 3rem !important;
  }
  .about .sec_subttl {
    margin-bottom: 5rem;
  }
  .about .about_txt_wrap {
    display: block;
  }
  .about .about_txt_wrap p {
    font-size: 1.6rem;
    line-height: 2.5;
  }
  .about .about_ttl_wrap {
    margin-top: 0;
  }
  .about .txt_inner {
    width: 100%;
  }
  .about .txt_inner.inner01 {
    padding: 3rem 0 3rem;
  }
  .about .img_group {
    width: 100%;
    position: relative;
    height: 85.333vw;
  }
  .about .img img {
    border-radius: 1rem;
  }
  .about .img_only_group {
    width: 100%;
    margin-right: 0;
    padding-bottom: 58.667vw;
  }
  .about .img01 {
    height: auto;
    width: 100%;
    margin: 2rem -2rem 0 auto;
  }
  .about .img01 img {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  .about .img02 {
    width: 63.6%;
    left: -6.667vw;
    top: 0;
  }
  .about .img03 {
    width: 68.4%;
    left: auto;
    right: 5.333vw;
    top: 26.667vw;
  }
  .about .img04 {
    width: 100%;
    margin-top: 8vw;
  }
  .about .img05 {
    width: 62.6%;
    top: -26.667vw;
    left: 5.333vw;
    z-index: 3;
  }
  .about .img05 img {
    width: 100%;
    height: auto;
  }
  .about .img06 {
    width: 41%;
    top: 9.067vw;
    left: auto;
    right: 5.333vw;
    z-index: 4;
  }
  .about .img06 img {
    width: 100%;
    height: auto;
  }
}
.about .message_wrap {
  position: relative;
  width: 100%;
  margin: 8rem auto 0;
  background: #F8F3E4;
  border-radius: 2rem;
  padding: 3rem 5rem;
  display: flex;
}
.about .message_wrap .info_item {
  width: 37.5rem;
  margin-top: 1.5rem;
}
.about .message_wrap .info_item_dt {
  margin-bottom: 6.5rem;
}
.about .message_wrap .info_item_dt p {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.25;
}
.about .message_wrap .info_item_dt p span {
  border-bottom: 2px dashed #1B4DA7;
  display: inline-block;
}
.about .message_wrap .info_item_dd img {
  border-radius: 0;
  max-width: 32.6rem;
}
.about .message_wrap .info_item_dd figcaption {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
}
.about .message_wrap .info_item_dd figcaption .post {
  color: #1B4DA7;
}
.about .message_wrap .info_item_dd figcaption .name {
  font-size: 2rem;
  font-weight: 700;
  margin-left: 2rem;
}
.about .message_wrap .info_item {
  width: 100%;
}
.about .message_wrap .info_item_dt p {
  font-size: 2.6rem;
}
.about .message_wrap .info_item_dd img {
  max-width: inherit;
}
.about .message_wrap .info_item_dd figcaption .name {
  font-size: 1.8rem;
  margin-left: 1rem;
}
.about .message_wrap .txt_wrap {
  position: relative;
  width: calc(100% - 37.5rem);
  flex: 1;
  padding: 5rem 5rem 3rem;
}
.about .message_wrap .txt_wrap::before, .about .message_wrap .txt_wrap::after {
  position: absolute;
  content: "";
  background: url("../img/deco_comma.svg") no-repeat center center/cover;
  width: 2.1rem;
  height: 1.8rem;
}
.about .message_wrap .txt_wrap::before {
  top: 3rem;
  left: 0;
}
.about .message_wrap .txt_wrap::after {
  bottom: 1rem;
  right: -1rem;
  transform: rotate(180deg);
}
.about .message_wrap .txt_wrap p {
  line-height: 1.875;
}
.about .message_wrap .txt_wrap p + p {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .about .message_wrap {
    margin: 6rem auto;
    padding: 3rem 1.5rem;
    display: block;
    border-radius: 1rem;
  }
  .about .message_wrap .info_item {
    width: 100%;
    margin-top: 1.5rem;
  }
  .about .message_wrap .info_item_dt {
    margin-bottom: 2.5rem;
  }
  .about .message_wrap .info_item_dt p {
    font-size: 2.2rem;
    line-height: 2.0454545455;
  }
  .about .message_wrap .info_item_dd figcaption {
    justify-content: center;
  }
  .about .message_wrap .txt_wrap {
    margin-top: 6rem;
    width: 100%;
    padding: 0;
  }
  .about .message_wrap .txt_wrap::before, .about .message_wrap .txt_wrap::after {
    width: 2.1rem;
    height: 1.8rem;
  }
  .about .message_wrap .txt_wrap::before {
    top: -3.5rem;
  }
  .about .message_wrap .txt_wrap::after {
    bottom: -3.5rem;
    right: 0;
  }
  .about .message_wrap .txt_wrap p + p {
    margin-top: 3.5rem;
  }
}

/* ---------------------------------------
  form
-----------------------------------------*/
.contact_wrap.form {
  padding-bottom: 8.5rem;
}

.form .sec_subttl + .txt {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  line-height: 2;
  margin: 6rem auto 3rem;
}

ul.tabs {
      list-style: none;
      display: flex;
      justify-content: center;
      padding: 0;
      margin: 0;
    }

    ul.tabs li {
      padding: 10px 20px;
      cursor: pointer;
      border: 1px solid #ccc;
      border-bottom: none;
      background: #f1f1f1;
      margin-right: 4px;
    }

    ul.tabs li.active {
      background: white;
      font-weight: bold;
    }

    /* コンテンツエリア */
    .tab-content {
      display: none;
      padding: 20px;
      border: 1px solid #ccc;
    }

    .tab-content.active {
      display: block;
    }

.form_box .txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8888888889;
  padding: 5rem 0;
}

.form_box .tabs .form-new{
  font-size: 1.8rem;
  border-radius: 2rem 2rem 0 0;
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 740px){
    .form_box .tabs .form-new{
      font-size: 1.4rem;
    }
}
@media screen and (min-width: 741px){
  .form_box .tabs .form-new .pc_none{
      display: none;
    }
}

.form_box .tabs .form-reform{
  font-size: 1.8rem;
  border-radius: 2rem 2rem 0 0;
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 740px){
    .form_box .tabs .form-reform{
      font-size: 1.4rem;
    }
}

@media screen and (min-width: 741px){
  .form_box .tabs .form-reform .pc_none{
      display: none;
    }
}

.form_inner {
  background: #fff;
  border-radius: 2rem;
  padding: 7rem 10rem 6.3rem;
}

@media screen and (max-width: 767px) {
  .form .sec_subttl + .txt {
    font-size: 1.6rem;
    margin: 3rem auto 2rem;
  }
  .form_box .txt {
    font-size: 1.6rem;
    padding: 3rem 0;
  }
  .form_inner {
    border-radius: 1rem;
    padding: 3rem 2rem 3rem;
  }
}
.contact_form {
  width: 100%;
  margin: auto;
}
.contact_form_dl {
  display: flex;
  width: 100%;
  margin: auto;
}
.contact_form_dt {
  width: 34rem;
  padding: 2rem 7rem 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_form_dt.start {
  align-items: flex-start;
}
.contact_form_dt .item {
  font-size: 1.8rem;
  font-weight: 700;
}
.contact_form_dd {
  width: calc(100% - 34rem);
  padding: 1.5rem 0 1.5rem;
}
.contact_form_dd .check_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.contact_form_dd .check_list li {
  margin-right: 3rem;
}
.contact_form_dd .check_list li:nth-child(n + 6) {
  margin-top: 1rem;
}
.contact_form_dd .check_list li.list_mont {
  padding-top: 0.2em;
}
.contact_form_dd .check_list li.list_mont span {
  font-family: "Montserrat", sans-serif;
  padding-top: 0.2em;
}
.contact_form_dd .check_list.wide li {
  margin-right: auto;
  width: 25rem;
}
.contact_form_dd .check_list.wide li:nth-child(n + 3) {
  margin-top: 1rem;
}
.contact_form_dd .form_txt {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8888888889;
}
.contact_form_dd .check_list + .form_txt {
  margin-top: 3rem;
}
.contact_form_dd.-cont {
  padding: 15px 0 15px 30px;
  font-size: 1.7rem;
  line-height: 1.7647058824;
}
.contact_form_dd.-cont .check_list li {
  font-size: 1.8rem;
  flex-basis: auto;
  margin-right: 2rem;
  margin-top: 0;
}
.contact_form .form_agree {
  margin-top: 6rem;
  margin-bottom: 3rem;
}
.contact_form .form_agree a {
  text-decoration: underline;
  transition: opacity 0.3s;
  cursor: pointer;
}
.contact_form .form_agree a:hover {
  opacity: 0.7;
}
.contact_form input[type="text"],
.contact_form input[type="tel"],
.contact_form input[type="email"],
.contact_form select,
.contact_form textarea {
  width: 100%;
  height: 7rem;
  border-radius: 1rem;
  padding: 0 2rem;
  background: #F4F2ED;
  font-size: 1.6rem;
}
.contact_form textarea {
  max-width: 75.4rem;
  height: 11rem;
  padding: 1.5rem;
}
.contact_form .c-req {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  background: #FF3300;
  font-weight: 700;
  padding: .5rem 1.2rem;
  border-radius: 9999px;
  white-space: nowrap;
  margin-left: 2.5rem;
}
.contact_form .c-check {
  position: relative;
  display: inherit;
  cursor: pointer;
    /*
		span{
      font-weight: 700;
      font-size: 1.8rem;
      line-height: (34/18);
			position: relative;
			padding-left: 4.5rem;
			&::before{
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				width: 2.9rem;
				height: 2.9rem;
				background-color: #F4F2ED;
        border-radius: 0.5rem;
			}
			&::after{
				content: '';
				position: absolute;
				top: .5em;
				left: .45em;
				width: 1.4rem;
				height: 0.8rem;
				transform: rotate(-45deg);
				border-left: 2px solid #F4F2ED;
				border-bottom: 2px solid #F4F2ED;
			}
		}
		input:checked + span{
			&::before{
				background: #F4F2ED;
			}
			&::after{
				opacity: 1;
        border-color: $navy;
			}
		}
    */
}
.contact_form .c-check input {
  position: absolute;
  visibility: hidden;
  width: 1px;
  top: 0;
  left: 0;
}

/* checklist */
.contact_form_dd.-wide .wpcf7-form-control-wrap + .form_txt {
  margin-top: 3rem;
}
.contact_form_dd.-wide .wpcf7-form-control-wrap .wpcf7-checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.contact_form_dl:nth-child(8) .contact_form_dd.-wide .wpcf7-list-item {
  width: 25rem;
}
.contact_form_dl:nth-child(8) .contact_form_dd.-wide .wpcf7-list-item:nth-child(n + 3) {
  margin-top: 1rem !important;
}
@media screen and (max-width: 767px) {
  .contact_form_dl:nth-child(8) .contact_form_dd.-wide .wpcf7-list-item {
    width: 100%;
    flex-basis: 100%;
  }
  .contact_form_dl:nth-child(8) .contact_form_dd.-wide .wpcf7-list-item:nth-child(n + 2) {
    margin-top: 1rem !important;
  }
}

.wpcf7-list-item {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  position: relative;
  margin: 0 3rem 0 0 !important;
}
.wpcf7-list-item:nth-child(n + 6) {
  margin-top: 1rem !important;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item {
    flex-basis: 48%;
    margin: 0 !important;
  }
  .wpcf7-list-item:nth-child(n + 3) {
    margin-top: 1rem !important;
  }
}
.wpcf7-list-item label {
  position: relative;
  display: inherit;
  cursor: pointer;
}
.wpcf7-list-item label input {
  position: absolute;
  visibility: hidden;
  width: 1px;
  top: 0;
  left: 0;
}
.wpcf7-list-item label span {
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8888888889;
  position: relative;
  padding-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .wpcf7-list-item label span {
    font-size: 1.6rem;
    padding-left: 4rem;
    padding-top: 0.1em;
  }
}
.wpcf7-list-item label span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2.9rem;
  height: 2.9rem;
  background-color: #F4F2ED;
  border-radius: 0.5rem;
}
.wpcf7-list-item label span::after {
  content: '';
  position: absolute;
  top: .5em;
  left: .45em;
  width: 1.4rem;
  height: 0.8rem;
  transform: rotate(-45deg);
  border-left: 2px solid #F4F2ED;
  border-bottom: 2px solid #F4F2ED;
}
.wpcf7-list-item label input:checked + span::before {
  background: #F4F2ED;
}
.wpcf7-list-item label input:checked + span::after {
  opacity: 1;
  border-color: #182D3F;
}

#contact-place .wpcf7-form-control-wrap::before {
  display: none;
}

.contact_form_dl:nth-child(5) .wpcf7-form-control-wrap::before {
  content: '';
  position: absolute;
  right: 2rem;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-top: solid 1px #182D3F;
  border-right: solid 1px #182D3F;
  pointer-events: none;
  transform: rotate(135deg);
  z-index: 1;
}

#contact-place .wpcf7-form-control{
  width: 100%;
  padding: 0;
  background: none;
}

.contact_form_dl:nth-child(5) .wpcf7-form-control {
  position: relative;
  width: 25.6rem;
  border-radius: 1rem;
  padding: 2rem 4rem;
  background: #F4F2ED;
  color: inherit;
  font-size: 1.8rem;
}
.contact_form_dl:nth-child(5) .wpcf7-form-control.wpcf7-select {
  color: #ADADAD;
}
.contact_form_dl:nth-child(5) .wpcf7-form-control option:first-child {
  color: #ADADAD;
}
.contact_form_dl:nth-child(5) .wpcf7-form-control option:nth-child(n + 2) {
  color: #182D3F;
}
@media screen and (max-width: 767px) {
  .contact_form_dl:nth-child(5) .wpcf7-form-control {
    width: 100%;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}

/* mes */
.wpcf7-response-output {
  margin-top: 5rem !important;
  padding: 2rem !important;
  font-size: 1.6rem !important;
  text-align: center;
  line-height: 1.5 !important;
}

@media screen and (max-width: 767px) {
  .contact_form {
    /*
    .c-check{
      span{
        font-size: 1.6rem;
        padding-left: 4rem;
        padding-top: .1em;
      }
    }
    */
  }
  .contact_form_dl {
    display: block;
  }
  .contact_form_dt {
    width: 100%;
    padding: 1rem 0 0;
    display: flex;
    align-items: center;
  }
  .contact_form_dt.start {
    align-items: flex-start;
  }
  .contact_form_dt .item {
    font-size: 1.6rem;
  }
  .contact_form_dd {
    width: 100%;
    padding: 1.5rem 0 2rem;
  }
  .contact_form_dd .check_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .contact_form_dd .check_list li {
    flex-basis: 48%;
    margin-right: 0;
  }
  .contact_form_dd .check_list li:nth-child(n + 3) {
    margin-top: 1rem;
  }
  .contact_form_dd .check_list li.list_mont {
    padding-top: 0;
  }
  .contact_form_dd .check_list li.list_mont span {
    padding-top: 0.25em;
  }
  .contact_form_dd .check_list.wide li {
    margin-right: auto;
    width: 100%;
    flex-basis: 100%;
  }
  .contact_form_dd .check_list.wide li:nth-child(n + 2) {
    margin-top: 1rem;
  }
  .contact_form_dd .form_txt {
    font-size: 1.6rem;
  }
  .contact_form_dd .check_list + .form_txt {
    margin-top: 3rem;
  }
  .contact_form .form_agree {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
  .contact_form input[type="text"],
  .contact_form input[type="tel"],
  .contact_form input[type="email"],
  .contact_form select,
  .contact_form textarea {
    width: 100%;
    height: 5.5rem;
  }
  .contact_form textarea {
    max-width: 100%;
    height: 10rem;
  }
  .contact_form .c-req {
    font-size: 1.2rem;
    margin-left: 1.5rem;
  }
}
/* ---------------------------------------------
  link
-----------------------------------------------*/
.c-link {
  position: relative;
  text-decoration: underline;
  transition: opacity 0.3s;
  cursor: pointer;
}
.c-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .c-link {
    text-decoration: none;
  }
}

.c-tel-link {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .c-tel-link {
    pointer-events: none;
  }
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.footer {
  position: relative;
  background: #1B4DA7 url("../img/bg_nav.png") repeat;
  padding: 8rem 0 5rem;
}
.footer * {
  color: #fff;
}
.footer_ttl {
  text-align: center;
  margin-bottom: 6rem;
}
.footer_ttl span {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-bottom: 2px dashed #fff;
  padding-bottom: 1rem;
}
.footer .footer_menu {
  display: flex;
  gap: 0 calc((100% - 20.8rem * 6) /5);
  margin-bottom: 5rem;
}
.footer .footer_menu li a {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer .footer_menu li a .img {
  max-width: 96%;
  width: 20.8rem;
  height: 12.2rem;
  aspect-ratio: 208/122;
  background: #fff;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.4rem;
}
.footer .footer_menu li a .img img {
  display: inline-block;
}
.footer .footer_btn {
  max-width: 96%;
}
.footer .footer_bottom {
  border-top: 1px solid #fff;
  padding: 5rem 0 0;
  margin-top: 10rem;
}
.footer .footer_bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .footer_info_ttl {
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.footer .footer_info .btn {
  display: inline-flex;
  margin-top: 2rem;
}
.footer .footer_copy p {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .footer .footer_menu li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .footer .footer_menu li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 5rem 0 3rem;
  }
  .footer_ttl {
    margin-bottom: 4rem;
  }
  .footer_ttl span {
    font-size: 1.8rem;
    padding-bottom: .5rem;
    line-height: 2.5;
  }
  .footer .footer_menu {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem 4%;
    margin-bottom: 3rem;
  }
  .footer .footer_menu li {
    width: 48%;
  }
  .footer .footer_menu li a .img {
    max-width: inherit;
    width: 100%;
    height: auto;
  }
  .footer .footer_btn {
    max-width: 100%;
  }
  .footer .footer_btn::before {
    transform: translateY(-48%) rotate(45deg) scale(0.75, 0.75);
  }
  .footer .footer_btn::after {
    transform: translateY(-50%) scale(0.75, 0.75);
  }
  .footer .footer_btn span {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  .footer .footer_bottom {
    padding: 3.5rem 0 0;
    margin-top: 3.55rem;
  }
  .footer .footer_bottom .wrap {
    display: block;
  }
  .footer .footer_info_ttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .footer .footer_info .btn {
    display: flex;
    margin-top: 3rem;
  }
  .footer .footer_info > p {
    font-size: 1.4rem;
  }
  .footer .footer_copy {
    margin-top: 3rem;
  }
  .footer .footer_copy p {
    text-align: center;
  }
}
/* ---------------------------------------------
  clearfix
-----------------------------------------------*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
/* ---------------------------------------
  アニメーション
-----------------------------------------*/
.mvfadeIn {
  opacity: 0;
  transition: all 3s ease;
  transform: translate3d(0, 0, 0);
  perspective: 1000;
  backface-visibility: hidden;
}

.fadeIn {
  opacity: 0;
  transition: all 1s ease;
  transform: translate3d(0, 0, 0);
  perspective: 1000;
  backface-visibility: hidden;
}

.fadeIn.-up {
  transform: translateY(5rem);
}

.mvfadeIn.animated,
.fadeIn.animated {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.js-anim.delay {
  transition-delay: 1.5s;
}

@media print {
  .mvfadeIn,
  .fadeIn {
    opacity: 1 !important;
  }
}
