@charset "UTF-8";
.ham {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.ham span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.ham span:first-child {
  top: 0;
}
.ham span:nth-child(2) {
  top: calc(50% - 3px / 2);
}
.ham span:nth-child(3) {
  bottom: 0;
}

.ham.open span:first-child {
  top: 40%;
  transform: rotate(-45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  top: 40%;
  bottom: auto;
  transform: rotate(45deg);
}

.ac-btn {
  position: relative;
  width: 16px;
  height: 1px;
}
.ac-btn span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.3s;
}
.ac-btn span:nth-child(2) {
  transform: rotate(90deg);
}

.ac-btn.active span:nth-child(2) {
  transform: rotate(0);
}

/* 2等分カラムレイアウト $m2に余白を指定する 初期値は0 */
/* 3等分カラムレイアウト $m3に余白を指定する 初期値は0 */
/* 4等分カラムレイアウト $m4に余白を指定する 初期値は0 */
/* common */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #585756;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", serif;
  line-height: 1.75;
}

body.open {
  overflow-y: hidden;
}

a {
  color: #585756;
}

img {
  width: 100%;
}

hr {
  width: 100%;
  height: 1px;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

*:focus {
  outline: none;
}

.u-line {
  text-decoration: underline;
}

.xl-con {
  width: 90%;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}
.xl-con .l-con,
.xl-con .con {
  width: 100%;
}

.l-con {
  width: 90%;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}
.l-con .con {
  width: 100%;
}

.con {
  width: 90%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.m-con {
  width: 100%;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.fw-b {
  font-weight: bold;
}

.w-b {
  background-color: #fff;
}

.w-t {
  color: #fff;
}

.b-b {
  background-color: #585756;
}

.be-b {
  background-color: #ded5c0;
}

.r1-b {
  background-color: #fba592;
}

.r2-b {
  background-color: #ff8990;
}

.r1-t {
  color: #fba592;
}

.r2-t {
  color: #ff8990;
}

.f-w {
  font-family: "ZenMaruGothic-Bold";
  font-weight: bold;
}

.res-on {
  display: none;
}

.phone-on {
  display: none !important;
}

.tate {
  writing-mode: vertical-rl;
}

.fs-36 {
  font-size: clamp(3.2rem, 4vw, 3.6rem);
}

.fs-30 {
  font-size: clamp(2.6rem, 3vw, 3rem);
}

.backtop {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 115px;
  z-index: 3000;
  opacity: 0;
  transition: 0.3s;
}

.backtop.active {
  opacity: 1;
}

.ham-wr {
  position: fixed;
  top: 20px;
  right: 10px;
  width: 30px;
  height: 25px;
  z-index: 6000;
}

.ham span {
  background-color: #585756;
  height: 3px;
  border-radius: 2px;
}

.ham.open span {
  background-color: #fff;
}

.g-nav-wr {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: -10;
  opacity: 0;
  background-color: #ff8990;
  transition: 0.2s;
}

.g-nav-wr.open {
  display: block;
  height: auto;
  z-index: 5000;
  opacity: 1;
}

.g-nav {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-45%) translateX(-50%);
  display: inline-block;
}
.g-nav li {
  text-align: left;
  margin-bottom: 60px;
}
.g-nav li:last-child {
  margin-bottom: 0;
}
.g-nav li a {
  color: #fff;
}

.g-nav.open {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%);
}

.h-wr {
  padding-top: 20px;
}

.h-logo {
  width: 85%;
  max-width: 425px;
}

.h-icon {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  top: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding-bottom: 20px;
}

.h-icon-blog {
  background-color: #fba592;
  right: 0;
  z-index: 90;
}

.h-icon-contact {
  background-color: #ded5c0;
  right: 140px;
  z-index: 100;
}

.footer {
  margin-top: 120px;
  padding: 220px 0 25px;
  background-image: url(../img/common/f-back.png);
  background-size: cover;
}

.f-line {
  width: 1px;
  height: 300px;
  background-color: #fff;
}

.f-list-title span {
  display: inline-block;
  transform: translateY(-2px);
}

.f-list li {
  margin-bottom: 5px;
}
.f-list li:last-child {
  margin-bottom: 0;
}
.f-list li a {
  color: #fff;
}

.f-text {
  margin-top: 30px;
}

.copyright {
  margin-top: 60px;
}

.sectitle-wr {
  margin-bottom: 80px;
}

.secline {
  margin: 100px auto;
}

.sectitle-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ff8990;
  margin: 0 auto 50px;
}

.sectitle2 {
  display: flex;
  align-items: center;
}
.sectitle2::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ded5c0;
}

.sectitle2-red::before {
  background-color: #fba592;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ded5c0;
  background-color: transparent;
  color: #ded5c0;
  transition: 0.3s;
  width: 100%;
  max-width: 210px;
  height: 60px;
  border-radius: 30px;
}
.btn:hover {
  background-color: #ded5c0;
  color: #fff;
}

.lr-list li {
  display: flex;
}

.dot-b {
  background-color: #EDE9DF;
  background-image: radial-gradient(#fff 10%, transparent 10%), radial-gradient(#fff 10%, transparent 10%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
}

.kv-sec {
  margin-top: 30px;
  margin-bottom: 100px;
}

.kv-l {
  width: 20%;
}

.kv-r {
  width: 80%;
}

.kv-img {
  height: 60vh;
  max-height: 600px;
  border-radius: 90px;
}
.kv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 90px;
}

.kv-img-top {
  height: 70vh;
  max-height: 800px;
  border-radius: 90px;
}
.kv-img-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 90px;
}

.kv-text {
  width: 95%;
  bottom: 40px;
  text-shadow: 2px 2px 2px #585756;
}

.sectitle2-tate {
  line-height: 1;
}
.sectitle2-tate::before {
  content: "";
  margin: 0 auto 10px;
  display: inline-block;
  background-color: #fba592;
}

.topbox {
  padding: 0 20px;
  padding-right: 10%;
}

.topbox-r {
  margin-top: 50px;
}

.cal-wr {
  width: 100%;
  max-width: 580px;
}

.cal {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 縦横比 */
  height: 0;
  overflow: hidden;
}
.cal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-con {
  max-width: 1400px;
}

.top-sec-text {
  padding-bottom: 40px;
}

.top-sec-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #ff8990;
  top: 30px;
}

.top-sec-title-phone {
  display: none;
}

.top-sec-title1 {
  right: -100px;
}

.top-sec-title2 {
  left: -100px;
}

.topcircle-wr {
  padding: 55px 9%;
  border-radius: 90px;
  background-color: #ded5c0;
}

.topcircle {
  width: 30%;
}

.top-plist img {
  width: 33.3333333333%;
}

.map {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 450px;
  position: relative;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.aboutlist li {
  width: 48%;
  padding: 45px 4% 20px;
  border: 3px solid #fba592;
  border-radius: 90px;
  margin-bottom: 35px;
}

.aboutbox-list li {
  padding: 15px 25px;
  border-bottom: 2px solid #ded5c0;
}
.aboutbox-list li:first-child {
  border-top: 2px solid #ded5c0;
}
.aboutbox-list li .l {
  width: 150px;
}
.aboutbox-list li .r {
  width: calc(100% - 150px);
}

.aboutbox-line {
  margin: 15px auto;
  height: 2px;
  width: calc(100% + 25px);
}

.p-list li {
  width: 30%;
  margin-bottom: 70px;
}

.lifebox-r {
  flex-direction: column;
  justify-content: space-between;
}

.eventbox-title {
  background-color: #fba592;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.eventbox-list {
  width: calc(100% - 140px);
  margin-top: 50px;
}
.eventbox-list li {
  padding: 15px 20px;
  border-bottom: 2px solid #ded5c0;
}
.eventbox-list li:first-child {
  border-top: 2px solid #ded5c0;
}

.eventbox-other .eventbox-title {
  background-color: #fff;
  border: 2px solid #ded5c0;
  color: #ded5c0;
}
.eventbox-other .eventbox-list {
  margin-top: 50px;
}
.eventbox-other .eventbox-list li {
  border-bottom: none;
}
.eventbox-other .eventbox-list li:first-child {
  border-top: none;
}

.support-line {
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #ded5c0, #ded5c0 3px, transparent 3px, transparent 6px);
  background-size: 6px 2px;
  background-position: left 0;
  background-repeat: repeat-x;
}

.sectitle2-support {
  margin-bottom: 40px;
}

.support-circle {
  width: 100px;
}

.support-circle-wr p, .support-circle-wr a {
  width: calc(100% - 130px);
}

.c-con {
  border-radius: 90px;
  padding: 25px;
}

.c-con-in {
  border: 2px dashed #ded5c0;
  border-radius: 80px;
}

.support-tel {
  padding: 0 25px 10px;
  border-bottom: 3px solid #fba592;
}

.support-list li {
  padding: 15px 0;
  border-bottom: 2px solid #ded5c0;
}
.support-list li:first-child {
  border-top: 2px solid #ded5c0;
}
.support-list li .l {
  width: 175px;
}
.support-list li .r {
  width: calc(100% - 175px);
}

.extend-list li {
  padding: 15px 25px;
}
.extend-list li:first-child {
  border-bottom: 2px dashed #ded5c0;
}/*# sourceMappingURL=style.css.map */