@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap");
/* ------------------------------
    mixin
------------------------------ */
/* ------------------------------
    reset
------------------------------ */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.2222222222vw;
  }
}

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

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: normal;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
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;
}

button:hover {
  cursor: pointer;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  opacity: 0.6;
  cursor: pointer;
}

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

/* ------------------------------
    base
------------------------------ */
body {
  color: #333;
  font-size: 1rem;
  text-align: left;
}

section {
  position: relative;
}

main {
  display: block;
  padding-top: 80px;
}

.wrap {
  max-width: 110rem;
  width: 90%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
  font-size: 1.6rem;
  line-height: 1.8;
}

.fade {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fade:hover {
  opacity: 0.6;
  cursor: pointer;
}

.h-center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0);
          transform: translateX(-50%) translateZ(0);
}

.v-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateZ(0);
          transform: translateY(-50%) translateZ(0);
}

.hv-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.preload *,
.preload *::before,
.preload *::after {
  -webkit-transition: none !important;
  transition: none !important;
}

.marcellus {
  font-family: "Marcellus", serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.pink {
  color: #e75e7e !important;
}

.orange {
  color: #ee8d48 !important;
}

.blue {
  color: #567393 !important;
}

.yellow {
  color: #e5d628 !important;
}

.green {
  color: #96c765 !important;
}

.sky {
  color: #00b1bc !important;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  main {
    padding-top: 50px;
  }
  .wrap {
    width: 80%;
  }
  input,
  textarea,
  select,
  .select {
    font-size: 16px !important;
  }
}
/* ------------------------------
    header
------------------------------ */
#header {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
#header .wrap {
  width: 100%;
  height: 80px;
  max-width: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
#header .logo_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 30px;
}
#header .logo_wrap .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .logo_wrap .logo .txt_02 {
  margin-left: 10px;
}
@media screen and (max-width: 1250px) and (min-width: 769px) {
  #header .logo_wrap .logo .txt_02 {
    display: none;
  }
}
#header .logo_wrap .mark {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
#header .gnav .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
#header .gnav .nav li a {
  font-family: "Noto Serif JP", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 0 1em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1100px) {
  #header .gnav .nav li a {
    font-size: 12px;
  }
}
#header .gnav .nav li a path {
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
#header .gnav .nav li a._07 svg {
  width: 18px;
}
#header .gnav .nav li a._08 svg {
  width: 14px;
}
#header .gnav .nav li a._09 svg {
  width: 16px;
}
#header .gnav .nav li a:hover {
  opacity: 1;
  color: #e75e7e;
}
#header .gnav .nav li a:hover._02 {
  color: #ee8d48;
}
#header .gnav .nav li a:hover._03 {
  color: #567393;
}
#header .gnav .nav li a:hover._04 {
  color: #e5d628;
}
#header .gnav .nav li a:hover._05 {
  color: #96c765;
}
#header .gnav .nav li a:hover._06 {
  color: #e75e7e;
}
#header .gnav .nav li a:hover._07 .uuid-ea4054e6-dbde-458d-8a22-02117ab0a23e {
  fill: #96c765;
}
#header .gnav .nav li a:hover._08 .uuid-acd3019a-df01-4d86-a33e-6f1fe8a4c944 {
  fill: #e75e7e;
}
#header .gnav .nav li a:hover._09 .uuid-4413fa0c-e3dc-41e2-8ee2-42fc3d7a7aa2 {
  stroke: #ee8d48;
}
@media screen and (max-width: 1020px) {
  #header .gnav {
    display: none;
  }
}
#header .menu-trigger {
  margin: 0 20px;
  position: relative;
  z-index: 999;
}
#header .menu-trigger .ico {
  position: relative;
  width: 33px;
  height: 25px;
}
#header .menu-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 100px;
}
#header .menu-trigger span:nth-of-type(1) {
  top: 0;
  background: #e75e7e;
}
#header .menu-trigger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #e5d628;
}
#header .menu-trigger span:nth-of-type(3) {
  bottom: 0;
  background: #567393;
}
@media screen and (min-width: 768px) {
  #header .menu-trigger:hover {
    cursor: pointer;
  }
  #header .menu-trigger:hover span:nth-of-type(1) {
    top: -15%;
  }
  #header .menu-trigger:hover span:nth-of-type(3) {
    bottom: -15%;
  }
}
#header #header_nav {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 1s, -webkit-transform 0.3s;
  transition: opacity 1s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 1s;
  transition: transform 0.3s, opacity 1s, -webkit-transform 0.3s;
  z-index: 998;
}
#header #header_nav .btn_favorite {
  position: absolute;
  right: 70px;
  top: 20px;
  z-index: 1000;
}
#header #header_nav .btn_favorite a {
  background: #f6f4f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 148px;
  height: 40px;
  font-size: 12px;
  border-radius: 100px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#header #header_nav .btn_favorite a svg {
  margin-right: 0.5em;
  width: 1.5em;
}
#header #header_nav .btn_favorite a svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
#header #header_nav .btn_favorite a:hover {
  opacity: 1;
  background: #ee8d48;
  color: #fff;
}
#header #header_nav .btn_favorite a:hover .uuid-dd009ee4-f61d-4a33-ab13-ee49d2e06ac5 {
  fill: #fff;
}
@media screen and (max-width: 767px) {
  #header #header_nav .btn_favorite {
    right: 50px;
    top: 12px;
  }
  #header #header_nav .btn_favorite a {
    width: 120px;
    height: 26px;
    font-size: 10px;
  }
  #header #header_nav .btn_favorite a svg {
    width: 1em;
  }
}
#header #header_nav .inner {
  max-width: 100rem;
  width: 80%;
  height: auto;
  position: relative;
  margin: 0 auto;
  padding: 15rem 0;
}
@media screen and (max-width: 767px) {
  #header #header_nav .inner {
    padding: 8rem 0;
  }
}
#header #header_nav .inner > .flex > .flex_l {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 8rem;
  -ms-flex-preferred-size: 20rem;
      flex-basis: 20rem;
}
#header #header_nav .inner > .flex > .flex_r {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  #header #header_nav .inner > .flex {
    display: block;
  }
  #header #header_nav .inner > .flex > .flex_l {
    text-align: center;
    margin: 4rem 0 0;
  }
  #header #header_nav .inner > .flex > .flex_l img {
    width: 30vw;
  }
}
#header #header_nav .nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #header #header_nav .nav_wrap {
    display: block;
  }
}
#header #header_nav .nav_wrap .nav {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
#header #header_nav .nav_wrap .nav > li {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 1.5em 0;
}
#header #header_nav .nav_wrap .nav > li:last-child {
  margin-bottom: 0;
}
#header #header_nav .nav_wrap .nav > li a {
  font-family: "Noto Serif JP", serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#header #header_nav .nav_wrap .nav > li a:hover {
  color: #e75e7e;
  opacity: 1;
}
#header #header_nav .nav_wrap .nav > li .ico_arrow {
  background: #e75e7e;
  vertical-align: -0.1em;
  font-size: 1.2em;
  margin-right: 0.3em;
}
#header #header_nav .nav_wrap .nav > li .ico_arrow::before, #header #header_nav .nav_wrap .nav > li .ico_arrow::after {
  border-color: #fff;
}
#header #header_nav .nav_wrap .nav .sub_nav {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 9rem;
  border-bottom: 1px solid #ddd;
}
#header #header_nav .nav_wrap .nav .sub_nav li {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0.6em 2em 0.6em 0;
}
#header #header_nav .nav_wrap .nav .sub_nav li:last-child {
  margin-bottom: 0;
}
#header #header_nav .nav_wrap .nav .sub_nav li a {
  font-family: "Noto Serif JP", serif;
  padding-left: 1em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#header #header_nav .nav_wrap .nav .sub_nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background: #e75e7e;
  border-radius: 100%;
}
#header #header_nav .nav_wrap .nav .sub_nav li a:hover {
  opacity: 1;
  color: #e75e7e;
}
#header #header_nav .nav_wrap .nav._orange > li .ico_arrow {
  background: #ee8d48;
}
#header #header_nav .nav_wrap .nav._orange > li a:hover {
  color: #ee8d48;
}
#header #header_nav .nav_wrap .nav._orange .sub_nav li a::before {
  background: #ee8d48;
}
#header #header_nav .nav_wrap .nav._orange .sub_nav li a:hover {
  color: #ee8d48;
}
#header #header_nav .nav_wrap .nav._grey {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header #header_nav .nav_wrap .nav._grey > li {
  margin: 0;
  padding: 1.8em 0;
}
#header #header_nav .nav_wrap .nav._grey > li + li {
  margin-left: 4rem;
}
#header #header_nav .nav_wrap .nav._grey > li .ico_arrow {
  background: #ddd;
}
#header #header_nav .nav_wrap .nav._grey > li .ico_arrow::before, #header #header_nav .nav_wrap .nav._grey > li .ico_arrow::after {
  border-color: #333;
}
#header #header_nav .nav_wrap .nav._grey > li a:hover {
  color: #999;
}
@media screen and (max-width: 767px) {
  #header #header_nav .nav_wrap .nav._grey {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 1rem 0 3rem;
  }
  #header #header_nav .nav_wrap .nav._grey > li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 48%;
    padding: 1em 0;
  }
  #header #header_nav .nav_wrap .nav._grey > li + li {
    margin-left: 0;
  }
}
#header #header_nav .btn_wrap {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #header #header_nav .btn_wrap {
    margin-top: 2rem;
  }
}
#header #header_nav .btn_wrap .flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#header #header_nav .btn_wrap .flex_l {
  margin-right: 5px;
}
#header #header_nav .btn_wrap .flex_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#header #header_nav .btn_wrap .flex_r .btn a {
  width: 10rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  #header #header_nav .btn_wrap .flex {
    display: block;
  }
  #header #header_nav .btn_wrap .flex_l {
    margin: 0 0 5px;
  }
  #header #header_nav .btn_wrap .flex_r .btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #header #header_nav .btn_wrap .flex_r .btn a {
    width: 100%;
  }
}
#header #header_nav .btn_wrap .btn a {
  background: #f6f4f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 10rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#header #header_nav .btn_wrap .btn a svg {
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
#header #header_nav .btn_wrap .btn a .blank {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1.2rem;
}
#header #header_nav .btn_wrap .btn a .blank svg {
  max-width: 100%;
}
#header #header_nav .btn_wrap .btn a .ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
}
#header #header_nav .btn_wrap .btn a .ico svg {
  max-width: 100%;
  max-height: 100%;
}
#header #header_nav .btn_wrap .btn a .txt {
  font-size: 1rem;
  margin-top: 0.5em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#header #header_nav .btn_wrap .btn a:hover {
  opacity: 1;
  background: #96c765;
}
#header #header_nav .btn_wrap .btn a:hover .uuid-9ecb1635-d874-4fec-8d2b-381eeeae044e {
  stroke: #fff;
}
#header #header_nav .btn_wrap .btn a:hover .uuid-b747a54f-8f38-4de3-b28f-288ea6f55214 {
  fill: #fff;
}
#header #header_nav .btn_wrap .btn a:hover .uuid-337eaa94-1297-4233-9e41-48c0de0880b7 {
  fill: #fff;
}
#header #header_nav .btn_wrap .btn a:hover .txt {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #header #header_nav .btn_wrap .btn a {
    height: 10rem;
  }
}
#header #header_nav .btn_wrap .btn + .btn {
  margin-left: 5px;
}
#header #header_nav .btn_wrap .btn._insta a .ico svg {
  max-width: 80%;
  max-height: 80%;
}
#header #header_nav .btn_wrap .btn._insta a:hover {
  background: #e75e7e;
}
#header #header_nav .btn_wrap .btn._big a {
  width: 45rem;
  padding: 0 4rem 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#header #header_nav .btn_wrap .btn._big a .ico_arrow {
  font-size: 3rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#header #header_nav .btn_wrap .btn._big a .ico_arrow::before {
  background: #333;
}
#header #header_nav .btn_wrap .btn._big a .ico_arrow::after {
  border-color: #333;
}
#header #header_nav .btn_wrap .btn._big a .ttl {
  position: relative;
}
#header #header_nav .btn_wrap .btn._big a .ttl .ja {
  font-size: 2rem;
  letter-spacing: 0.08em;
}
#header #header_nav .btn_wrap .btn._big a .ttl .en {
  position: absolute;
  left: 0;
  top: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}
#header #header_nav .btn_wrap .btn._big a .txt {
  background: #fff;
  padding: 0.5em 1.5em;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-left: 1em;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#header #header_nav .btn_wrap .btn._big a:hover {
  background: #a1d4c8;
}
#header #header_nav .btn_wrap .btn._big a:hover .txt {
  color: #a1d4c8;
  background: #333;
}
@media screen and (max-width: 767px) {
  #header #header_nav .btn_wrap .btn._big a {
    width: 100%;
    white-space: nowrap;
    padding-left: 2rem;
    padding-bottom: 0.5rem;
  }
  #header #header_nav .btn_wrap .btn._big a .ttl .ja {
    font-size: 1.4rem;
  }
  #header #header_nav .btn_wrap .btn._big a .ttl .en {
    font-size: 0.8rem;
  }
  #header #header_nav .btn_wrap .btn._big a .txt {
    font-size: 1rem;
  }
}
#header .overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 997;
}
#header .overlay.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  #header.scrolled .wrap {
    height: 60px;
  }
}
#header.navOpen .menu-trigger span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
#header.navOpen .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
#header.navOpen .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}
#header.navOpen #header_nav {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0s, -webkit-transform 0.3s;
  transition: opacity 0s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0s;
  transition: transform 0.3s, opacity 0s, -webkit-transform 0.3s;
}

@media screen and (max-width: 767px) {
  #header,
  #header .wrap {
    width: 100%;
    height: 50px;
  }
  #header .logo_wrap {
    padding-left: 20px;
  }
  #header .logo_wrap .logo .txt_01 {
    width: 140px;
  }
  #header .logo_wrap .logo .txt_02 {
    width: 80px;
  }
  #header .menu-trigger {
    margin: 0 10px 0 20px;
  }
  #header .menu-trigger .ico {
    width: 25px;
    height: 20px;
  }
  #header .menu-trigger span {
    height: 3px;
  }
}
/* ------------------------------
    footer
------------------------------ */
#footer {
  margin-top: 10rem;
  padding-bottom: 35rem;
  position: relative;
}
#footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35rem;
  background: url(../img/common/footer_bg@2x.png) no-repeat center top/100% auto;
}
@media screen and (max-width: 767px) {
  #footer::before {
    background-image: url(../img/common/footer_bg_sp@2x.png);
  }
}
#footer .wrap {
  max-width: 126rem;
}
#footer .pagetop {
  position: absolute;
  right: 0;
  bottom: 8rem;
}
#footer .pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
          writing-mode: vertical-lr;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.14em;
}
#footer .pagetop a .arrow {
  position: absolute;
  right: 100%;
  bottom: 0;
  margin-right: 1rem;
  width: 1px;
  height: 14.5rem;
  border-left: 1px solid #ccc;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
#footer .pagetop a .arrow::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
  border-left: 1px solid #ccc;
}
#footer .pagetop a:hover {
  opacity: 1;
}
#footer .pagetop a:hover .arrow {
  height: 18rem;
}
@media screen and (max-width: 767px) {
  #footer .pagetop {
    bottom: 0;
  }
  #footer .pagetop a {
    font-size: 1.2rem;
  }
  #footer .pagetop a .arrow {
    height: 12rem;
  }
  #footer .pagetop a:hover .arrow {
    height: 14rem;
  }
}
#footer .catch {
  position: absolute;
  right: 0;
  top: 5rem;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.28em;
}
#footer .catch::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  margin-right: 1em;
  width: 10rem;
  height: 1px;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  #footer .catch {
    font-size: 1.8rem;
    line-height: 1.8;
    top: 4rem;
  }
  #footer .catch::before {
    display: none;
  }
}
#footer .nav_wrap .flex {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#footer .nav_wrap .flex_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  #footer .nav_wrap .flex {
    display: block;
  }
  #footer .nav_wrap .flex_r {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
#footer .nav_wrap .logo {
  width: 25.4rem;
  margin-left: -1rem;
}
@media screen and (max-width: 767px) {
  #footer .nav_wrap .logo {
    width: 22rem;
  }
}
#footer .nav_wrap .txt {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 2em;
}
#footer .nav_wrap .nav {
  margin-left: 6rem;
}
@media screen and (max-width: 767px) {
  #footer .nav_wrap .nav {
    margin: 3rem 0 0;
    width: 50%;
  }
}
#footer .nav_wrap .nav > li {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 1.5em 0;
}
#footer .nav_wrap .nav > li:last-child {
  margin-bottom: 0;
}
#footer .nav_wrap .nav > li a {
  font-family: "Noto Serif JP", serif;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#footer .nav_wrap .nav > li a:hover {
  color: #e75e7e;
  opacity: 1;
}
#footer .nav_wrap .nav > li .ico_arrow {
  background: #e75e7e;
  vertical-align: -0.1em;
  font-size: 1.2em;
  margin-right: 0.3em;
}
#footer .nav_wrap .nav > li .ico_arrow::before, #footer .nav_wrap .nav > li .ico_arrow::after {
  border-color: #fff;
}
#footer .nav_wrap .nav .sub_nav {
  margin-top: 2rem;
}
#footer .nav_wrap .nav .sub_nav li {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 1em 0;
}
#footer .nav_wrap .nav .sub_nav li:last-child {
  margin-bottom: 0;
}
#footer .nav_wrap .nav .sub_nav li a {
  font-family: "Noto Serif JP", serif;
  padding-left: 1em;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#footer .nav_wrap .nav .sub_nav li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background: #e75e7e;
  border-radius: 100%;
}
#footer .nav_wrap .nav .sub_nav li a:hover {
  opacity: 1;
  color: #e75e7e;
}
#footer .nav_wrap .nav._orange > li .ico_arrow {
  background: #ee8d48;
}
#footer .nav_wrap .nav._orange > li a:hover {
  color: #ee8d48;
}
#footer .nav_wrap .nav._orange .sub_nav li a::before {
  background: #ee8d48;
}
#footer .nav_wrap .nav._orange .sub_nav li a:hover {
  color: #ee8d48;
}
#footer .nav_wrap .nav._grey > li .ico_arrow {
  background: #ddd;
}
#footer .nav_wrap .nav._grey > li .ico_arrow::before, #footer .nav_wrap .nav._grey > li .ico_arrow::after {
  border-color: #333;
}
#footer .nav_wrap .nav._grey > li a:hover {
  color: #999;
}
@media screen and (max-width: 767px) {
  #footer .nav_wrap .nav._grey {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #footer .nav_wrap .nav._grey > li {
    width: 50%;
    margin: 0.5em 0;
  }
}
#footer .btn_wrap {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  #footer .btn_wrap {
    margin-top: 2rem;
  }
}
#footer .btn_wrap .flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#footer .btn_wrap .flex_r {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-left: 4rem;
}
#footer .btn_wrap .flex_l {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#footer .btn_wrap .flex_l .btn a {
  width: 13rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  #footer .btn_wrap .flex {
    display: block;
  }
  #footer .btn_wrap .flex_r {
    margin: 0 0 2rem;
  }
}
#footer .btn_wrap .btn a {
  background: #f6f4f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 12rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
#footer .btn_wrap .btn a svg {
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
#footer .btn_wrap .btn a .blank {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 1.2rem;
}
#footer .btn_wrap .btn a .blank svg {
  max-width: 100%;
}
#footer .btn_wrap .btn a .ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
}
#footer .btn_wrap .btn a .ico svg {
  max-width: 100%;
  max-height: 100%;
}
#footer .btn_wrap .btn a .txt {
  font-size: 1.2rem;
  margin-top: 0.5em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#footer .btn_wrap .btn a:hover {
  opacity: 1;
  background: #96c765;
}
#footer .btn_wrap .btn a:hover .uuid-9ecb1635-d874-4fec-8d2b-381eeeae044e {
  stroke: #fff;
}
#footer .btn_wrap .btn a:hover .uuid-b747a54f-8f38-4de3-b28f-288ea6f55214 {
  fill: #fff;
}
#footer .btn_wrap .btn a:hover .uuid-337eaa94-1297-4233-9e41-48c0de0880b7 {
  fill: #fff;
}
#footer .btn_wrap .btn a:hover .txt {
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .btn_wrap .btn a {
    height: 10rem;
  }
}
#footer .btn_wrap .btn + .btn {
  margin-left: 5px;
}
#footer .btn_wrap .btn._insta a .ico svg {
  max-width: 80%;
  max-height: 80%;
}
#footer .btn_wrap .btn._insta a:hover {
  background: #e75e7e;
}
#footer .btn_wrap .btn._big a {
  width: 59rem;
  padding: 0 4rem 2rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#footer .btn_wrap .btn._big a .ico_arrow {
  font-size: 3rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#footer .btn_wrap .btn._big a .ico_arrow::before, #footer .btn_wrap .btn._big a .ico_arrow::after {
  border-color: #333;
}
#footer .btn_wrap .btn._big a .ttl {
  position: relative;
}
#footer .btn_wrap .btn._big a .ttl .ja {
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}
#footer .btn_wrap .btn._big a .ttl .en {
  position: absolute;
  left: 0;
  top: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}
#footer .btn_wrap .btn._big a .txt {
  background: #fff;
  padding: 0.5em 1.5em;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-left: 1em;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#footer .btn_wrap .btn._big a:hover {
  background: #a1d4c8;
}
#footer .btn_wrap .btn._big a:hover .txt {
  color: #a1d4c8;
  background: #333;
}
@media screen and (max-width: 767px) {
  #footer .btn_wrap .btn._big a {
    width: 100%;
    white-space: nowrap;
    padding-left: 2rem;
    padding-bottom: 0.5rem;
  }
  #footer .btn_wrap .btn._big a .ttl .ja {
    font-size: 1.4rem;
  }
  #footer .btn_wrap .btn._big a .ttl .en {
    font-size: 0.8rem;
  }
  #footer .btn_wrap .btn._big a .txt {
    font-size: 1rem;
  }
}
#footer .copy_wrap {
  margin: 6rem 0 3rem;
}
#footer .copy_wrap .copy {
  font-size: 1rem;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  #footer .copy_wrap {
    margin-top: 4rem;
  }
  #footer .copy_wrap .txt {
    font-size: 1.2rem;
  }
  #footer .copy_wrap .copy {
    font-size: 0.8rem;
    margin-top: 3rem;
  }
}

#footer_contact::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: calc(50vw + 38rem);
  background: #f6f4f0;
}
@media screen and (max-width: 767px) {
  #footer_contact::before {
    display: none;
  }
}
#footer_contact .wrap {
  max-width: 126rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #footer_contact .wrap {
    width: 100%;
  }
}
#footer_contact .ttl_wrap {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#footer_contact .ttl_wrap .ttl .ja {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 2;
  letter-spacing: 0.16em;
  margin-bottom: 1em;
}
#footer_contact .ttl_wrap .ttl .en {
  color: #96c765;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #footer_contact .ttl_wrap {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translate(0);
            transform: translate(0);
    width: 80%;
    margin: 0 auto;
  }
  #footer_contact .ttl_wrap .ttl .ja {
    font-size: 2.6rem;
    margin-bottom: 0.5em;
  }
}
#footer_contact .contact_wrap {
  margin-left: 30rem;
  padding: 10rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#footer_contact .contact_wrap .box {
  background: #fff;
  margin: 0 1rem;
  padding: 4rem 6rem;
  width: 35rem;
  text-align: center;
  position: relative;
}
#footer_contact .contact_wrap .box .sttl {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
#footer_contact .contact_wrap .box .ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem auto;
  width: 8.5rem;
  height: 8.5rem;
}
#footer_contact .contact_wrap .box .ico img {
  max-width: 100%;
  max-height: 100%;
}
#footer_contact .contact_wrap .box .tel {
  font-size: 2.4rem;
}
#footer_contact .contact_wrap .box .tel .small {
  font-size: 1.8rem;
  margin-right: 0.5em;
}
#footer_contact .contact_wrap .box .tel a:hover {
  color: #96c765;
}
#footer_contact .contact_wrap .box .small {
  font-size: 1rem;
}
#footer_contact .contact_wrap .box .mail {
  font-size: 1.4rem;
}
#footer_contact .contact_wrap .box .btn_arrow {
  margin: 1rem 0;
}
#footer_contact .contact_wrap .box .btn_arrow a {
  text-align: left;
  padding-left: 1em;
  padding-right: 3em;
}
@media screen and (max-width: 767px) {
  #footer_contact .contact_wrap {
    padding: 10rem 10vw 6rem;
    margin: -6rem 0 0 5vw;
    display: block;
    background: #f6f4f0;
  }
  #footer_contact .contact_wrap .box {
    margin: 0;
    padding: 3rem 4rem 4rem;
    width: 100%;
  }
  #footer_contact .contact_wrap .box + .box {
    margin-top: 3rem;
  }
  #footer_contact .contact_wrap .box .ico {
    width: 7rem;
    height: 7rem;
  }
  #footer_contact .contact_wrap .box .tel {
    font-size: 2.8rem;
  }
  #footer_contact .contact_wrap .box .tel .small {
    font-size: 2rem;
  }
}

/* ------------------------------
    common
------------------------------ */
.ico_arrow {
  display: inline-block;
  font-size: 2.5rem;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.ico_arrow::before, .ico_arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.ico_arrow::before {
  height: 1px;
  width: 30%;
  border-top: 1px solid #fff;
}
.ico_arrow::after {
  -webkit-transform: translate(-40%, -50%) rotate(45deg);
          transform: translate(-40%, -50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 20%;
  height: 20%;
}
.ico_arrow._white {
  background: #fff;
}
.ico_arrow._white::before, .ico_arrow._white::after {
  border-color: #e75e7e;
}
.ico_arrow._white._orange::before, .ico_arrow._white._orange::after {
  border-color: #ee8d48;
}
.ico_arrow._white._blue::before, .ico_arrow._white._blue::after {
  border-color: #567393;
}
.ico_arrow._white._yellow::before, .ico_arrow._white._yellow::after {
  border-color: #e5d628;
}
.ico_arrow._white._green::before, .ico_arrow._white._green::after {
  border-color: #96c765;
}
.ico_arrow._white._sky::before, .ico_arrow._white._sky::after {
  border-color: #00b1bc;
}

a:hover .ico_arrow {
  background: #fff;
}
a:hover .ico_arrow::before, a:hover .ico_arrow::after {
  border-color: #e75e7e;
}
a:hover .ico_arrow._orange::before, a:hover .ico_arrow._orange::after {
  border-color: #ee8d48;
}
a:hover .ico_arrow._blue::before, a:hover .ico_arrow._blue::after {
  border-color: #567393;
}
a:hover .ico_arrow._yellow::before, a:hover .ico_arrow._yellow::after {
  border-color: #e5d628;
}
a:hover .ico_arrow._green::before, a:hover .ico_arrow._green::after {
  border-color: #96c765;
}
a:hover .ico_arrow._white {
  background: #e75e7e;
}
a:hover .ico_arrow._white::before, a:hover .ico_arrow._white::after {
  border-color: #fff;
}
a:hover .ico_arrow._white._orange {
  background: #ee8d48;
}
a:hover .ico_arrow._white._orange::before, a:hover .ico_arrow._white._orange::after {
  border-color: #fff;
}
a:hover .ico_arrow._white._blue {
  background: #567393;
}
a:hover .ico_arrow._white._blue::before, a:hover .ico_arrow._white._blue::after {
  border-color: #fff;
}
a:hover .ico_arrow._white._yellow {
  background: #e5d628;
}
a:hover .ico_arrow._white._yellow::before, a:hover .ico_arrow._white._yellow::after {
  border-color: #fff;
}
a:hover .ico_arrow._white._green {
  background: #96c765;
}
a:hover .ico_arrow._white._green::before, a:hover .ico_arrow._white._green::after {
  border-color: #fff;
}
a:hover .ico_arrow._white._sky {
  background: #00b1bc;
}
a:hover .ico_arrow._white._sky::before, a:hover .ico_arrow._white._sky::after {
  border-color: #fff;
}

.btn_arrow a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8em 2em;
  width: 100%;
  border-radius: 100px;
  background: #e75e7e;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn_arrow a.tal {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 1em;
    padding-right: 3em;
  }
}
@media screen and (max-width: 767px) {
  .btn_arrow a {
    padding: 0.8em 1em;
  }
}
.btn_arrow a .ico_arrow,
.btn_arrow a .ico_blank {
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn_arrow a .ico_blank {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.3em;
  font-size: 2.5rem;
  width: 1em;
  height: 1em;
  border-radius: 100%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.btn_arrow a .ico_blank .svg_blank {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}
.btn_arrow a .ico_blank .svg_blank .svg_blank {
  stroke: #fff;
}
.btn_arrow a:hover {
  opacity: 1;
}
.btn_arrow a._orange {
  background: #ee8d48;
}
.btn_arrow a._orange:hover .ico_arrow::before, .btn_arrow a._orange:hover .ico_arrow::after {
  border-color: #ee8d48;
}
.btn_arrow a._orange:hover .ico_blank {
  background: #fff;
}
.btn_arrow a._orange:hover .ico_blank .svg_blank {
  stroke: #ee8d48;
}
.btn_arrow a._blue {
  background: #567393;
}
.btn_arrow a._blue:hover .ico_arrow::before, .btn_arrow a._blue:hover .ico_arrow::after {
  border-color: #567393;
}
.btn_arrow a._blue:hover .ico_blank {
  background: #fff;
}
.btn_arrow a._blue:hover .ico_blank .svg_blank {
  stroke: #567393;
}
.btn_arrow a._yellow {
  background: #e5d628;
}
.btn_arrow a._yellow:hover .ico_arrow::before, .btn_arrow a._yellow:hover .ico_arrow::after {
  border-color: #e5d628;
}
.btn_arrow a._yellow:hover .ico_blank {
  background: #fff;
}
.btn_arrow a._yellow:hover .ico_blank .svg_blank {
  stroke: #e5d628;
}
.btn_arrow a._green {
  background: #96c765;
}
.btn_arrow a._green:hover .ico_arrow::before, .btn_arrow a._green:hover .ico_arrow::after {
  border-color: #96c765;
}
.btn_arrow a._green:hover .ico_blank {
  background: #fff;
}
.btn_arrow a._green:hover .ico_blank .svg_blank {
  stroke: #96c765;
}
.btn_arrow a._sky {
  background: #00b1bc;
}
.btn_arrow a._sky:hover .ico_arrow::before, .btn_arrow a._sky:hover .ico_arrow::after {
  border-color: #00b1bc;
}
.btn_arrow a._sky:hover .ico_blank {
  background: #fff;
}
.btn_arrow a._sky:hover .ico_blank .svg_blank {
  stroke: #00b1bc;
}
.btn_arrow a._white {
  background: #fff;
  color: #333;
}
.btn_arrow a._white .ico_arrow {
  background: #fff;
}
.btn_arrow a._white .ico_arrow::before, .btn_arrow a._white .ico_arrow::after {
  border-color: #e75e7e;
}
.btn_arrow a._white .ico_blank {
  background: #fff;
}
.btn_arrow a._white .ico_blank .svg_blank {
  stroke: #e75e7e;
}
.btn_arrow a._white:hover .ico_arrow {
  background: #e75e7e;
}
.btn_arrow a._white:hover .ico_arrow::before, .btn_arrow a._white:hover .ico_arrow::after {
  border-color: #fff;
}
.btn_arrow a._white:hover .ico_blank {
  background: #e75e7e;
}
.btn_arrow a._white:hover .ico_blank .svg_blank {
  stroke: #fff;
}
.btn_arrow a._white._orange .ico_arrow::before, .btn_arrow a._white._orange .ico_arrow::after {
  border-color: #ee8d48;
}
.btn_arrow a._white._orange .ico_blank {
  background: #fff;
}
.btn_arrow a._white._orange .ico_blank .svg_blank {
  stroke: #ee8d48;
}
.btn_arrow a._white._orange:hover .ico_arrow {
  background: #ee8d48;
}
.btn_arrow a._white._orange:hover .ico_arrow::before, .btn_arrow a._white._orange:hover .ico_arrow::after {
  border-color: #fff;
}
.btn_arrow a._white._orange:hover .ico_blank {
  background: #ee8d48;
}
.btn_arrow a._white._orange:hover .ico_blank .svg_blank {
  stroke: #fff;
}
.btn_arrow a._white._blue .ico_arrow::before, .btn_arrow a._white._blue .ico_arrow::after {
  border-color: #567393;
}
.btn_arrow a._white._blue .ico_blank {
  background: #fff;
}
.btn_arrow a._white._blue .ico_blank .svg_blank {
  stroke: #567393;
}
.btn_arrow a._white._blue:hover .ico_arrow {
  background: #567393;
}
.btn_arrow a._white._blue:hover .ico_arrow::before, .btn_arrow a._white._blue:hover .ico_arrow::after {
  border-color: #fff;
}
.btn_arrow a._white._blue:hover .ico_blank {
  background: #567393;
}
.btn_arrow a._white._blue:hover .ico_blank .svg_blank {
  stroke: #fff;
}
.btn_arrow a._white._yellow .ico_arrow::before, .btn_arrow a._white._yellow .ico_arrow::after {
  border-color: #e5d628;
}
.btn_arrow a._white._yellow .ico_blank {
  background: #fff;
}
.btn_arrow a._white._yellow .ico_blank .svg_blank {
  stroke: #e5d628;
}
.btn_arrow a._white._yellow:hover .ico_arrow {
  background: #e5d628;
}
.btn_arrow a._white._yellow:hover .ico_arrow::before, .btn_arrow a._white._yellow:hover .ico_arrow::after {
  border-color: #fff;
}
.btn_arrow a._white._yellow:hover .ico_blank {
  background: #e5d628;
}
.btn_arrow a._white._yellow:hover .ico_blank .svg_blank {
  stroke: #fff;
}
.btn_arrow a._white._green .ico_arrow::before, .btn_arrow a._white._green .ico_arrow::after {
  border-color: #96c765;
}
.btn_arrow a._white._green .ico_blank {
  background: #fff;
}
.btn_arrow a._white._green .ico_blank .svg_blank {
  stroke: #96c765;
}
.btn_arrow a._white._green:hover .ico_arrow {
  background: #96c765;
}
.btn_arrow a._white._green:hover .ico_arrow::before, .btn_arrow a._white._green:hover .ico_arrow::after {
  border-color: #fff;
}
.btn_arrow a._white._green:hover .ico_blank {
  background: #96c765;
}
.btn_arrow a._white._green:hover .ico_blank .svg_blank {
  stroke: #fff;
}
.btn_arrow a._white._sky .ico_arrow::before, .btn_arrow a._white._sky .ico_arrow::after {
  border-color: #00b1bc;
}
.btn_arrow a._white._sky .ico_blank {
  background: #fff;
}
.btn_arrow a._white._sky .ico_blank .svg_blank {
  stroke: #00b1bc;
}
.btn_arrow a._white._sky:hover .ico_arrow {
  background: #00b1bc;
}
.btn_arrow a._white._sky:hover .ico_arrow::before, .btn_arrow a._white._sky:hover .ico_arrow::after {
  border-color: #fff;
}
.btn_arrow a._white._sky:hover .ico_blank {
  background: #00b1bc;
}
.btn_arrow a._white._sky:hover .ico_blank .svg_blank {
  stroke: #fff;
}

#page_ttl {
  padding: 6rem 0;
}
#page_ttl .wrap {
  max-width: 124rem;
}
#page_ttl .wrap .flex .flex_l {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  #page_ttl .wrap .flex {
    display: block;
    text-align: center;
    margin: 0;
  }
  #page_ttl .wrap .flex .flex_l {
    margin-right: 0;
  }
}
#page_ttl .wrap .ja {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 767px) {
  #page_ttl .wrap .ja {
    font-size: 3.2rem;
  }
}
#page_ttl .wrap .en {
  color: #e75e7e;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
#page_ttl .wrap .breadcurmbs {
  background: #f6f4f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 2em;
  border-radius: 100px;
}
#page_ttl .wrap .breadcurmbs li {
  color: #999;
  font-size: 1rem;
  position: relative;
}
#page_ttl .wrap .breadcurmbs li a {
  color: #333;
}
#page_ttl .wrap .breadcurmbs li + li {
  margin-left: 5rem;
}
#page_ttl .wrap .breadcurmbs li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 3rem;
  height: 1px;
  background: #ccc;
  margin-right: 1rem;
}

@media screen and (min-width: 768px) {
  .property_slider .slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .property_slider .slider .slick-slide {
    margin: 0 5px;
    height: auto !important;
  }
  .property_slider .slider .slick-slide > div {
    height: 100%;
  }
  .property_slider .slider .slick-slide > div .item {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .property_slider .slider {
    margin: 0 -5vw;
  }
  .property_slider .slider .slick-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .property_slider .slider .slick-slide > div + div {
    margin-top: 1rem;
  }
  .property_slider .slider .slick-slide > div .item {
    width: 48% !important;
    margin: 0 1%;
    height: auto;
  }
}
.property_slider .slider .slick-arrow {
  position: absolute;
  right: 100%;
  margin-right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: -2.5rem;
  width: 5rem;
  height: 5rem;
  background: #00b1bc;
  border-radius: 100%;
  font-size: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.property_slider .slider .slick-arrow::before, .property_slider .slider .slick-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.property_slider .slider .slick-arrow::before {
  height: 1px;
  width: 20%;
  background: #fff;
}
.property_slider .slider .slick-arrow::after {
  -webkit-transform: translate(-40%, -50%) rotate(45deg);
          transform: translate(-40%, -50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  width: 15%;
  height: 15%;
}
.property_slider .slider .slick-arrow:hover {
  -webkit-transform: translateY(-50%) scale(1.2);
          transform: translateY(-50%) scale(1.2);
}
.property_slider .slider .slick-arrow:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
}
.property_slider .slider .slick-arrow:hover::after {
  -webkit-transform: translate(-40%, -50%) rotate(45deg) scale(0.8);
          transform: translate(-40%, -50%) rotate(45deg) scale(0.8);
}
.property_slider .slider .slick-arrow.slick-prev {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.property_slider .slider .slick-arrow.slick-prev:hover {
  -webkit-transform: translateY(-50%) rotate(180deg) scale(1.2);
          transform: translateY(-50%) rotate(180deg) scale(1.2);
}
.property_slider .slider .slick-arrow.slick-next {
  left: 100%;
  margin-right: 0;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .property_slider .slider .slick-arrow {
    top: 100%;
    left: 0;
    margin: -3rem 0 0;
  }
  .property_slider .slider .slick-arrow.slick-next {
    left: auto;
    right: 0;
    margin: -3rem 0 0;
  }
}
.property_slider .slider .slick-dots {
  margin: 2rem 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.property_slider .slider .slick-dots li {
  margin-right: 0.8rem;
}
.property_slider .slider .slick-dots li:only-child {
  display: none;
}
.property_slider .slider .slick-dots button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
  overflow: hidden;
  text-indent: -1000px;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background: #fff;
  border: 1px solid #00b1bc;
  padding: 0;
  cursor: pointer;
}
.property_slider .slider .slick-dots .slick-active button {
  background: #00b1bc;
}
@media screen and (max-width: 767px) {
  .property_slider .slider .slick-dots {
    margin: 5rem 0 2rem;
  }
}
.property_slider .property_category {
  margin-top: 2rem;
}

.property_item a {
  background: #fff;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.property_item a:hover {
  opacity: 1;
  background: #00b1bc;
  color: #fff;
}
.property_item a:hover .inner > p {
  color: #fff;
}
.property_item .img {
  width: 100%;
  height: 18rem;
  position: relative;
}
.property_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .property_item .img {
    height: 14rem;
  }
}
.property_item.soldout .img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/properties/soldout_red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.property_item.soldout._red .img::after {
  background-image: url(../img/properties/soldout_red.svg);
}
.property_item.soldout._pink .img::after {
  background-image: url(../img/properties/soldout_pink.svg);
}
.property_item.soldout._blue .img::after {
  background-image: url(../img/properties/soldout_blue.svg);
}
.property_item.soldout._orange .img::after {
  background-image: url(../img/properties/soldout_orange.svg);
}
.property_item.soldout._green .img::after {
  background-image: url(../img/properties/soldout_green.svg);
}
.property_item .inner {
  padding: 4rem 2rem;
  position: relative;
}
.property_item .inner .cate_wrap {
  margin: -4rem -2rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.property_item .inner .cate_wrap p {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.5rem;
  padding: 0 0.8em;
  line-height: 1.2;
}
.property_item .inner .cate_wrap .cate {
  background: #333;
  font-size: 1rem;
}
.property_item .inner .cate_wrap .new {
  background: #00b1bc;
  font-size: 1.1rem;
}
.property_item .inner .cate_wrap .pickup {
  background: #e75e7e;
  font-size: 1rem;
}
.property_item .inner .cate_wrap .negotiation {
  background: #ffe100;
  font-size: 1rem;
  color: #555555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.57rem;
}
@media screen and (max-width: 767px) {
  .property_item .inner .cate_wrap .negotiation {
    gap: 0.5rem;
  }
}
.property_item .inner .cate_wrap .negotiation::after {
  content: "";
  width: 2.3rem;
  height: 1.4rem;
  background-image: url(../img/properties/ico_negotiation.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.property_item .inner .detail {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0.5em 0;
}
.property_item .inner .price {
  color: #ee8d48;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0.3em 0;
}
.property_item .inner .ttl {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0.5em 0;
}
.property_item .inner .address {
  color: #666;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0.5em 0;
}
.property_item .inner .school {
  font-size: 1.2rem;
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.57rem;
}
@media screen and (max-width: 767px) {
  .property_item .inner .school {
    margin-top: 0.8rem;
    gap: 0.47rem;
  }
}
.property_item .inner .school::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.1rem;
  background-image: url(../img/properties/ico_school_list.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 0.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .property_item .inner .school::before {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .property_item .inner {
    padding: 2rem 3vw;
  }
  .property_item .inner .cate_wrap {
    margin: -2rem -3vw 1rem;
  }
  .property_item .inner .cate_wrap p {
    padding: 0 0.5em;
  }
}

.property_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background: #fff;
  padding: 1rem 2rem;
}
.property_category .ttl {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #00b1bc;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  margin-right: 2rem;
  padding: 0.5rem 0;
}
.property_category .ttl .en {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
.property_category .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.property_category .list .item a {
  display: block;
  background: #f6f4f0;
  border-radius: 100px;
  font-size: 1.2rem;
  line-height: 1.2;
  padding: 0.4em 1em;
  margin: 2.5px;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.property_category .list .item a:hover {
  opacity: 1;
  background: #00b1bc;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .property_category {
    display: block;
    padding: 5vw;
    margin: 0 -5vw;
  }
  .property_category .ttl {
    text-align: center;
    padding: 1rem 0 2rem;
    font-size: 1.8rem;
  }
  .property_category .ttl .en {
    font-size: 2rem;
  }
  .property_category .list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .property_category .list .item a {
    font-size: 1.4rem;
  }
}

.property_contact {
  position: relative;
}
.property_contact .wrap {
  max-width: 120rem;
}
@media screen and (max-width: 767px) {
  .property_contact .wrap {
    width: 90%;
  }
}
.property_contact .ttl {
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .property_contact .ttl {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1em;
  }
}
.property_contact .contact_wrap {
  background: #f6f4f0;
  padding: 5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.property_contact .contact_wrap .box {
  background: #fff;
  margin: 0 2rem;
  padding: 4rem 6rem;
  width: 50rem;
  text-align: center;
  position: relative;
}
.property_contact .contact_wrap .box .sttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.property_contact .contact_wrap .box .sttl .en {
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-right: 0.5em;
}
.property_contact .contact_wrap .box .sttl .ja {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.property_contact .contact_wrap .box .ico {
  position: absolute;
  left: -1rem;
  top: -4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 2rem auto;
  width: 5.5rem;
  height: 5rem;
}
.property_contact .contact_wrap .box .ico img {
  max-width: 100%;
  max-height: 100%;
}
.property_contact .contact_wrap .box .tel {
  font-size: 2.6rem;
}
.property_contact .contact_wrap .box .tel .small {
  font-size: 2rem;
  margin-right: 0.5em;
}
.property_contact .contact_wrap .box .tel a:hover {
  color: #00b1bc;
}
.property_contact .contact_wrap .box .small {
  font-size: 1rem;
}
.property_contact .contact_wrap .box .mail {
  font-size: 1.4rem;
}
.property_contact .contact_wrap .box .btn_arrow {
  margin: 1rem 0;
}
.property_contact .contact_wrap .box .btn_arrow a {
  text-align: left;
  padding-left: 1em;
  padding-right: 3em;
  max-width: 21rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .property_contact .contact_wrap {
    padding: 5rem 10vw;
    display: block;
    background: #f6f4f0;
  }
  .property_contact .contact_wrap .box {
    margin: 0;
    padding: 3rem 2rem;
    width: 100%;
  }
  .property_contact .contact_wrap .box + .box {
    margin-top: 3rem;
  }
  .property_contact .contact_wrap .box .sttl .en {
    font-size: 2.6rem;
  }
  .property_contact .contact_wrap .box .sttl .ja {
    font-size: 1.4rem;
  }
  .property_contact .contact_wrap .box .ico {
    width: 4.5rem;
    height: 4.5rem;
  }
  .property_contact .contact_wrap .box .tel {
    font-size: 2.8rem;
  }
  .property_contact .contact_wrap .box .tel .small {
    font-size: 2rem;
  }
  .property_contact .contact_wrap .box .btn_arrow a {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.property_contact._green .contact_wrap .box .ico .uuid-407bea96-c3aa-4704-b184-05ae7ea7ac4f,
.property_contact._green .contact_wrap .box .ico .uuid-e492d4d4-0221-4bb8-a72a-683dc7cc1bbe {
  fill: #96c765;
}
.property_contact._green .contact_wrap .box .tel a:hover {
  color: #96c765;
}
.property_contact._pink .contact_wrap .box .ico .uuid-407bea96-c3aa-4704-b184-05ae7ea7ac4f,
.property_contact._pink .contact_wrap .box .ico .uuid-e492d4d4-0221-4bb8-a72a-683dc7cc1bbe {
  fill: #e75e7e;
}
.property_contact._pink .contact_wrap .box .tel a:hover {
  color: #e75e7e;
}

.form .table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form .table dt,
.form .table dd {
  margin: 1.5rem 0;
}
.form .table dt {
  width: 28%;
  font-size: 1.4rem;
  padding: 0.7em 0;
}
.form .table dt.required::after {
  content: "※必須";
  font-size: 1.2rem;
  color: #96c765;
  margin-left: 1em;
}
.form .table dd {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .form .table {
    display: block;
  }
  .form .table dt,
  .form .table dd {
    width: 100%;
    margin: 1rem 0;
  }
  .form .table dt {
    padding-bottom: 0;
    font-size: 1.8rem;
  }
}
.form *::-webkit-input-placeholder {
  color: #bbb;
}
.form *::-moz-placeholder {
  color: #bbb;
}
.form *:-ms-input-placeholder {
  color: #bbb;
}
.form *::-ms-input-placeholder {
  color: #bbb;
}
.form *::placeholder {
  color: #bbb;
}
.form label {
  display: inline-block;
  margin: 0.2em 0;
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea,
.form select {
  font-size: 1.6rem;
  padding: 0 2em;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form input[type=text],
  .form input[type=email],
  .form input[type=tel],
  .form textarea,
  .form select {
    padding: 0 1.5em;
  }
}
.form textarea {
  line-height: 1.8em;
  padding: 1em 2em;
  border-radius: 2rem;
  height: 18em;
}
@media screen and (max-width: 767px) {
  .form textarea {
    padding: 1.5em;
    height: 12em;
  }
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form select {
  line-height: 3em;
  height: 3em;
}
@media screen and (max-width: 767px) {
  .form input[type=text],
  .form input[type=email],
  .form input[type=tel],
  .form select {
    line-height: 4em;
    height: 4em;
  }
}
.form select {
  background: #fff url(../img/common/ico_select.svg) no-repeat right 1.5em center/0.8em auto;
  padding-right: 2.5em;
  vertical-align: middle;
}
.form input[type=radio],
.form input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
.form input[type=radio] + span,
.form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
}
.form input[type=radio] + span::before, .form input[type=radio] + span::after,
.form input[type=checkbox] + span::before,
.form input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.4em;
  height: 1.4em;
  border-radius: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin-right: 0.3em;
}
.form input[type=radio] + span::after,
.form input[type=checkbox] + span::after {
  width: 0.8em;
  height: 0.8em;
  margin: 0.3em 0 0 0.3em;
  background: transparent;
  border: none;
}
.form input[type=radio]:checked + span::after,
.form input[type=checkbox]:checked + span::after {
  background: #96c765;
}
.form input[type=checkbox] + span::before {
  border-radius: 0;
}
.form input[type=checkbox]:checked + span::after {
  width: 1em;
  height: 0.6em;
  margin: 0.2em 0 0 0.2em;
  border-bottom: 3px solid #96c765;
  border-left: 3px solid #96c765;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 0;
  background: transparent;
}
.form input.age {
  width: 7em;
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .form .radio_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .form .radio_wrap .item {
    width: 50%;
  }
}
.form .radio_wrap + textarea {
  margin-top: 2rem;
  height: 8em;
}
.form .caution {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 4rem;
}
.form .caution span {
  display: inline-block;
  padding: 0 1em;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .form .caution span:first-child {
    padding-right: 0;
  }
  .form .caution span:last-child {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .form .caution span:first-child {
    margin-bottom: 0.3em;
  }
}
.form .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .form .btn_wrap .btn_arrow {
    width: 100%;
  }
}
.form .btn_wrap .btn_arrow a {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .form .btn_wrap .btn_arrow a {
    padding-left: 2em;
    padding-right: 8em;
  }
}
@media screen and (max-width: 767px) {
  .form .btn_wrap .btn_arrow a {
    letter-spacing: 1em;
    padding-left: 2em;
  }
}
.form .btn_wrap .btn_arrow input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.form .thanks {
  text-align: center;
}
.form .thanks .big {
  font-size: 2.6rem;
  margin-bottom: 1em;
}
.form .thanks .btn_arrow {
  margin-top: 4rem;
}
.form .thanks .btn_arrow a {
  width: auto;
  padding-left: 2em;
  padding-right: 6em;
}

.post_main {
  zoom: 1;
}
.post_main::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  /* 隙間対応 */
  font-size: 0.1em;
  /* 隙間対応 */
  line-height: 0;
  /* 隙間対応 */
}
.post_main p {
  font-size: 1.5rem;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
.post_main p,
.post_main figure {
  margin: 3em 0;
}
.post_main p:first-child,
.post_main figure:first-child {
  margin-top: 0;
}
.post_main p:last-child,
.post_main figure:last-child {
  margin-bottom: 0;
}
.post_main h2,
.post_main h3,
.post_main h4,
.post_main h5 {
  clear: both;
  margin-top: 4rem;
  margin-bottom: 0.8em;
  line-height: 1.6;
  letter-spacing: 0.1em;
  position: relative;
}
.post_main h2:first-child,
.post_main h3:first-child,
.post_main h4:first-child,
.post_main h5:first-child {
  margin-top: 0;
}
.post_main h2 + p,
.post_main h3 + p,
.post_main h4 + p,
.post_main h5 + p {
  margin-top: 0;
}
.post_main h2 {
  color: #567393;
  font-size: 2.6rem;
}
.post_main h3 {
  color: #567393;
  font-size: 2.4rem;
}
.post_main h4 {
  color: #567393;
  font-size: 2.2rem;
}
.post_main h5 {
  color: #567393;
  font-size: 2em;
}
.post_main table {
  width: auto;
  margin-top: 2em;
  clear: both;
}
.post_main table th {
  padding: 2rem 1.5rem;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  background-color: #d6d6d6;
}
.post_main table td {
  padding: 2rem 1.5rem;
  border-bottom: 3px solid #fff;
  background-color: #f2f2f2;
  font-weight: 400;
}
.post_main table td p {
  margin: 0;
}
.post_main .wp-block-image {
  margin-top: 2rem;
}
.post_main ul {
  margin-top: 1.5em;
  list-style-type: disc;
  list-style-position: inside;
}
.post_main ul li {
  list-style-type: disc;
  list-style-position: inside;
}
.post_main ul:first-child {
  margin-top: 0;
}
.post_main ol {
  margin-top: 1.5em;
  list-style-type: decimal;
  list-style-position: inside;
}
.post_main ol li {
  list-style-type: decimal;
  list-style-position: inside;
}
.post_main ol:first-child {
  margin-top: 0;
}
.post_main img.aligncenter {
  display: block;
  margin: 0 auto;
}
.post_main .aligncenter {
  text-align: center;
}
.post_main .alignright {
  float: right;
  margin-left: 1em;
}
.post_main .alignleft {
  float: left;
  margin-right: 1em;
}
.post_main strong {
  font-weight: bold;
}
.post_main em {
  font-style: italic;
}
.post_main .small {
  font-size: 80%;
}
.post_main blockquote {
  clear: both;
  display: block;
  position: relative;
  padding: 1em 2em;
  background: #fff;
  border: 1px solid #ccc;
  margin: 1.5em 0 3em;
}
.post_main blockquote:last-child {
  margin-bottom: 0;
}
.post_main hr {
  clear: both;
  margin: 6rem 0;
}
.post_main a {
  color: #567393;
  text-decoration: underline;
}
.post_main .video {
  display: inline-block;
  text-align: left;
}
.post_main iframe,
.post_main video {
  max-width: 100%;
  height: 20rem;
}
.post_main figcaption {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .post_main p,
  .post_main figure {
    margin: 2em 0;
  }
  .post_main p:first-child,
  .post_main figure:first-child {
    margin-top: 0;
  }
  .post_main p:last-child,
  .post_main figure:last-child {
    margin-bottom: 0;
  }
  .post_main h2 {
    font-size: 2.2rem;
  }
  .post_main h3 {
    font-size: 2rem;
  }
  .post_main h4 {
    font-size: 1.8rem;
  }
  .post_main h5 {
    font-size: 1.6em;
  }
  .post_main .alignright,
  .post_main .alignleft {
    float: none;
    clear: both;
    display: block;
    margin: 0 auto;
  }
  .post_main img {
    display: block;
    margin: 0 auto;
  }
}

/* ------------------------------
    スクロールアニメーション
------------------------------ */
*[data-scroll=fade-top] {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

*[data-scroll=fade-top].scroll-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

*[data-scroll=zoom-in] {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

*[data-scroll=zoom-in].scroll-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .tb-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  zoom: 1;
}
.cf::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  /* 隙間対応 */
  font-size: 0.1em;
  /* 隙間対応 */
  line-height: 0;
  /* 隙間対応 */
}