@charset "UTF-8";

/* HTML 5 elements
---------------------------------------- */
html,
body {
  -webkit-text-size-adjust: none;
  overscroll-behavior: none;
  -ms-scroll-chaining: chained;
}

html {
  background: #fff;
}

section,
nav,
article,
aside,
hgroup,
header,
footer,
figure,
figcaption,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

/* reset
---------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

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

img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  line-height: 0;
  border: none;
}

.imgBox,
.listItem {
  line-height: 0;
}

.bgnone {
  padding: 0;
  margin: 0;
  line-height: 0;
  border: none;
  background: none;
}

ul,
li {
  list-style-type: none;
  margin: 0;
}

ol {
  padding: 0 0 0 1.5rem;
}

ol li {
  list-style-type: inherit;
  list-style-position: outside;
  padding: 0 0 0 1rem;
}

table {
  width: 100%;
  margin: 1.5% 0 2%;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  padding: 0 0 0;
  margin: 10px 0;
  -webkit-margin-start: auto;
  -webkit-margin-end: auto;
  border: none;
  border-top: #f5f5f5 1px solid;
}

br {
  padding: 0;
  margin: 0;
  font-size: 1px;
  line-height: 1;
}

.sOnly {
  display: none;
}

.pcOnly {
  display: inherit;
}

.center {
  text-align: center;
}

@media screen and (max-width: 740px) {
  .sOnly {
    display: inherit;
  }

  .pcOnly {
    display: none;
  }
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


/* 要素
-------------------------------------------------------------- */
section {
  margin: 0 0 0;
}

article {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

p {
  padding: 0;
  margin: 0 0;
}

a {
  color: #333;
}

.contein a {
  color: #333;
  display: inline-flex;
  line-height: 1.3;
}

.contein a:hover {
  opacity: 0.8;
}

.openBtn {}

.toggleBox {
  transition: all 0.1s ease-in-out;
  opacity: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

.openBtn.active+.toggleBox {
  height: auto;
  position: static;
  opacity: 1;
}

/* チェックボックス */
.checkBox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}

.checkBox01::before {
  background: #fff;
  border: 1px solid #ffbb33;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkBox01::after {
  border-right: 3px solid #ffbb33;
  border-bottom: 3px solid #ffbb33;
  content: '';
  display: block;
  height: 9px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

/*スクロールバー表示させる*/
.scroll::-webkit-scrollbar {
  width: 10px;
}

.scroll::-webkit-scrollbar-thumb {
  background: #d3d1c7;
  border-radius: 15px;
}

.scroll::-webkit-scrollbar-track-piece:start {
  background: #fff;
}

.scroll::-webkit-scrollbar-track-piece:end {
  background: #fff;
}

#modal-bg {
  cursor: pointer;
  z-index: 2000;
  width: 200vw;
  height: 200vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65);
}

.waku01 {
  padding: 15px;
  margin: 0 0 15px;
  background: #f4f4f4;
}

.waku02 {
  padding: 15px 20px;
  margin: 0 0 15px;
  background: #fff8ca;
}


/* flexPtn
-------------------------------------------------------------- */
.flexPtn {
  display: flex;
}

.flexPtn_wrapp {
  display: flex;
  flex-wrap: wrap;
}

/* form
-------------------------------------------------------------- */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  width: 100%;
  max-width: 400px;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.5;
  padding: 8px 15px 10px;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
  outline: none;
  border: 2px solid #dadada;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background: #f0f2f5;
}

input:-internal-autofill-selected {
  background: #f0f2f5;
}

input[type="email"] {
  width: 100%;
  max-width: 500px;
}

.address input[type="text"] {
  width: 100%;
  max-width: 600px;
}

textarea {
  width: 100%;
  max-width: 700px;
  height: 180px;
  padding: 10px 15px;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: #dadada;
}

input:-ms-input-placeholder,
input::-ms-input-placeholder {
  color: #dadada;
}

.sp input,
.sp select,
.sp textarea {
  font-size: 18px;
}

.goBtnBox {
  margin: 0 0 60px;
  position: relative;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.submitBox {
  text-align: center;
}

input[type="submit"] {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  width: 300px;
  line-height: 65px;
  cursor: pointer;
  padding: 0;
  margin: 0 auto;
  display: block;
  text-align: center;
  border: none;
  color: #ffbb33;
  border: 2px solid #ffbb33;
  border-radius: 15px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #fff;
}

input[type="submit"]:hover {
  color: #fff;
  border: 2px solid #ffbb33;
  background: #ffbb33;
}

input[type="submit"].wpcf7c-elm-step2 {}

input[type="button"].wpcf7-back {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  width: 150px;
  line-height: 65px;
  cursor: pointer;
  padding: 0 10px;
  margin: 0 0 0 20px;
  text-align: center;
  border: none;
  border-bottom: 2px solid #dadada;
  color: inherit;
  border-radius: 0;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #dadada;
}

input[type="button"].wpcf7-back:hover {
  color: #fff;
  border-bottom: 2px solid #282828;
  background: #282828;
}

div.wpcf7 .ajax-loader {
  transform: translate(140px, 20px);
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
}

.submitBox input:disabled {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.5);
  background: #efefef;
}

@media screen and (max-width: 740px) {

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  select,
  textarea {
    width: 100%;
  }

  input[type="email"] {
    width: 100%;
    max-width: 100%;
  }

  textarea {
    width: 100%;
    max-width: 100%;
  }

  input[type="submit"].wpcf7c-elm-step2 {
    max-width: 50%;
  }

  input[type="button"].wpcf7-back {
    max-width: 150px;
  }

}

/* お問い合わせフォーム
-------------------------------------------------------------- */
.flag {
  display: none;
}

.wpcf7 {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wpcf7 * {
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  margin: 20px 0 100px;
  padding: 20px;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #ba272d;
}

@media screen and (max-width: 740px) {
  .a.check {
    display: block;
  }
}


/* body
-------------------------------------------------------------- */
body {
  padding: 0 0 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400, 500, 700;
  letter-spacing: 0.13em;
  font-feature-settings: "palt";
  color: #333;
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
}

.all_scrolling_for {
  /*
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
*/
}

h2 {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  padding: clamp(20px, 2.5vw, 40px);
  margin: 20px 0;
  text-align: left;
  font-size: min(calc(14px + 6 * ((100vw - 320px) / 448)), 16px);
  font-weight: 700;
  line-height: 1.3;
  border: none;
}

.title {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  text-align: center;
  padding: clamp(20px, 2.5vw, 40px);
  line-height: 1.5;
  margin: 0;
  color: #46496b;
}

.title .text:after {
  width: 130px;
  height: 3px;
  margin: 0 auto;
  content: "";
  display: block;
  margin: 20px auto 10px;
  background: #203027;
}

@media screen and (max-width: 740px) {
  /* body {
    padding: 70px 0 0;
  } */
}

h3 {
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  margin: 20px 0 10px;
  font-size: min(calc(12px + 6 * ((100vw - 320px) / 448)), 15px);
  line-height: 1.5;
  font-weight: 700;
}

a {
  transition: all 0.1s ease-in-out;
  color: #333;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.contents a:hover {
  text-decoration: underline;
}

h4 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0 10px;
  color: #333;
}

h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0 10px;
  color: #333;
}

/* 共通要素
-------------------------------------------------------------- */
.br {
  width: 100%;
  display: block;
}

/* more
-------------------------------------------------------------- */
.morebtn {
  min-width: 75px;
  padding: 8px 20px 8px;
  margin: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}

.moreBtn01 {
  width: 175px;
  padding: 13px 0;
  margin: 45px auto;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 5px;
  border: 1px solid #959595;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moreBtn01 .t {
  margin: 0 0 0 10px;
}

.moreBtn01 .icon {
  margin: 0 0 0 12px;
  font-size: 1.3rem;
  color: #959595;
}

.moreBtn01:hover {
  opacity: 1 !important;
  border: 1px solid #ffbb33;
  background: #ffbb33;
}

.moreBtn01:hover .icon {
  color: #fff;
}

@media screen and (max-width: 740px) {
  .moreBtn01 {
    transition: inherit;
  }
}

.moreBtn02 {
  width: 100%;
  max-width: 400px;
  padding: 23px 0;
  margin: 50px auto 80px;
  border-radius: 15px;
  color: #202630;
  font-size: 1.2rem;
  line-height: 1.3;
  border: 1px solid #202630;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moreBtn02:hover {
  opacity: 1 !important;
  color: #fff;
  background: #202630;
}

@media screen and (max-width: 740px) {
  .moreBtn02 {
    max-width: 300px;
    padding: 18px 0;
    transition: inherit;
    /*
    margin: 30px auto 50px;
    */
    font-size: 1rem;
  }
}


/* header
-------------------------------------------------------------- */
.header {
  z-index: 2000;
  width: 100%;
  height: 0;
  font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
  padding: 0 0 0;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  transition: all .3s;
  position: fixed;
  top: 0;
  left: 0;
}

.headerLayout {
  height: 100%;
  justify-content: flex-start;
  position: relative;
}

.headerLayout > .inner {
  width: 100%;
  max-width: 1115px;
  margin: 0 auto;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.logoWrapper {
  position: relative;
}

.logo {
  width: 238px;
  min-width: 238px;
  overflow: hidden;
  padding: 0 0 0;
  margin: 0 auto;
  line-height: 0;
  display: block;
  background: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 1;
}

.logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0 0 0;
  border: none;
  background-color: transparent;
}

/* menu
-------------------------------------------------------------- */
#menu {
  z-index: 1500;
  width: 50px;
  height: 50px;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .1s;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 15px;
}

.page_sclooled #menu {
  color: #46496b;
}

.headNav {
  width: 100%;
  justify-content: flex-end;
}

.headNav > .inner {
  transition: all .1s;
  width: 0;
  height: 0;
  margin: 0 0 0 auto;
  padding: 20px 0 20px;
  border-radius: 8px;
  flex-direction: column;
  overflow: hidden;
  position: fixed;
  top: 70px;
  right: -100px;
  background: #fff;
}

.headNavItem {
  width: 90%;
  padding: 0 0 0;
  margin: 0 auto;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
  .headNavItem .icon {
    width: 30px;
    height: 30px;
    transform: rotate(-90deg);
    font-size: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
  .headNavItem .t {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .headNavItem:after {
    width: 100%;
    height: 1px;
    margin: 15px auto;
    content: "";
    display: block;
    background: #f5f5f5;
  }

.headNavItem:last-child:after {
  display: none;
}

#menu.open+.headNav > .inner {
  z-index: 2200;
  opacity: 1;
  width: 250px;
  max-width: 200px;
  height: auto;
  display: block;
  right: 20px;
}


/* .key
-------------------------------------------------------------- */
.key {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.keyBg {
  width: 100%;
  max-width: 100%;
}
.key_innerLogo {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.key_innerTxt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 0;
}

.secMess { /* メッセージ*/
  text-align: center;
  position: relative;
  overflow: hidden;
}
  .secMess_imgBox {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .secMess_t {
    padding: clamp(40px, 2.5vw, 60px);
    color: #fff;
    position: relative;
    font-size: 12px;
  }

.secMess_02 {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.secMess_02_imgBox {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0
}
.secMess_02_txt {
  padding: 5%;
  position: relative;
  text-align: center;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11px;
}
  .secMess_02_txt p {
    transform: scale(0.9);
    margin: 20px 0;
    white-space: nowrap;
  }

/* #wrapper
-------------------------------------------------------------- */
.wrapper {
  width: 100%;
  padding: 0 0 0;
  margin: 0 auto 0;
  transition: all .3s;
  font-size: 11px;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 1115px) {
  .contein > .inner {
    padding-left: 13px;
    padding-right: 13px;
  }
}
@media screen and (max-width: 740px) {
}

/* .contein
-------------------------------------------------------------- */
.secBusiness { /* 営業時間・アクセス */
  padding: 40px 0;
}
.secBusiness_subTitle {
  justify-content: center;
  align-items: center;
  margin: -15px 0 15px;
}
  .secBusiness_subTitle .imgBox {
    width: 60px;
  }

.clmBox01 {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
  .clmBox01 .item {
    width: 100%;
    padding: 15px 0;
    margin: 0 0 30px;
    text-align: center;
    position: relative;
  }
  .clmBox01 .clmBox01_t {
    transform: scale(0.9);
    padding: 3px 6px 3px 7px;
    margin: 0 auto;
    line-height: 1.3;
    font-size: 11px;
    font-weight: normal;
    color: #FBE2CC;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #5C27C8;
  }
  .clmBox01 .clmBox01_c {
    height: 100%;
    margin: 0 auto;
    font-weight: 500;
    display: flex;
    letter-spacing: .05em;
    justify-content: center;
    align-items: center;
  }

.clmBox01.upperBox .item::after {
  width: 1px;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: #E8E8E8;
}
  .clmBox01.upperBox .item:last-child:after {
    display: none;
  }

.clmBox01.btmBox {
  flex-direction: column;
}
.clmBox01.btmBox .item {
  padding: 0 0 ;
  margin: 0 0 ;
}
.clmBox01.btmBox .clmBox01_t {
  margin-bottom: 10px;
}
.clmBox01.btmBox .item::after {
  width: 100%;
  height: 1px;
  margin: 25px 0;
  content: "";
  display: block;
  background: #E8E8E8;
}
  .clmBox01.btmBox .item:last-child:after {
    display: none;
  }

.map iframe {
  width: 100%;
  height: 300px;
}

.mapTxt {
  margin: 0 0 30px;
  text-align: right;
}
  .mapTxt .t {
    display: inline-flex;
  }

.secSystem {
  padding: 24px 16px;
  background: #E1CFF6;
}
.secSystem > .inner {
width: 100%;
 max-width: 700px;
 padding: 30px 30px 50px;
 margin: 16px auto;
 position: relative;
 border-radius: 12px;
 background: #fff;
}
.secSystem_title {
  font-family: serif;
}
.secSystem .inner_maru_upper::before,
.secSystem .inner_maru_upper::after,
.secSystem .inner_maru_btm::before,
.secSystem .inner_maru_btm::after {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  position: absolute;
  background: #E1CFF6;
}
.secSystem .inner_maru_upper::before {
  top: 16px;
  left: 16px;
}
.secSystem .inner_maru_upper::after {
  top: 16px;
  right: 16px;
}
.secSystem .inner_maru_btm::before {
  bottom: 16px;
  left: 16px;
}
.secSystem .inner_maru_btm::after {
  bottom: 16px;
  right: 16px;
}

.secSystem_middleTitle_miniT {
  text-align: right;
  transform: scale(0.9);
  font-size: 10px;
  transform-origin: right center;
}

.secSystem_middleTitle {
  padding: 8px;
  font-size: 12px;
  line-height: 1.3;
  border-radius: 5px;
  color: #fff;
  background: #6AACD1;
}
  .secSystem_blue { background-color: #6AACD1; }
  .secSystem_green { background-color: #8FBE83; }
  .secSystem_pink { background-color: #E19DBD; }
  .secSystem_orenge { background-color: #EA9E9B; }

.systemBox {
  margin: 0 0 35px;
}
.systemBox .item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.systemBox .item:before {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #E1CFF6;
}
.systemBox .item b {
  padding: 0 8px 0;
  margin: 0 auto 0 0;
  display: inline-flex;
  font-weight: 500;
  position: relative;
  background: #fff;
}
.systemBox .item u {
  padding: 0 8px 0;
  margin: 0 0 0 auto;
  display: inline-flex;
  position: relative;
  text-decoration: none;
  background: #fff;
}
  .downloadBox {
    margin: 15px -5px 0 0;
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
    .downloadBox .anchor,
    .downloadBox .download {
      padding: 0 1px 5px;
      margin: 0 8px;
      display: inline-flex;
      font-size: 10px;
      justify-content: flex-start;
      align-items: center;
      border-bottom: 1px solid #333;
    }

.secSystem_cnt_miniT {
  transform: scale(0.9);
  font-size: 10px;
  text-align: center;
}
.secSystem_btm_miniT {
  text-align: right;
}

.secMenu {
  padding: 40px 16px 50px;
  background: #f6f0fd;
}
.secMenu_title {
  cursor: pointer;
  max-width: 600px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0;
  border-radius: 12px;
  /* border: 2px solid #ece6f3; */
  border: 4px solid #f9e0df;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.1);
  background: #fff;
}
  .secMenu_title .imgBox {
    width: 60px;
  }
  .secMenu_title .t {
    font-family: "YakuHanJP", "Noto Sans JP", Meiryo, sans-serif;
    padding: clamp(20px, 2.5vw, 40px) clamp(20px, 2.5vw, 40px) clamp(20px, 2.5vw, 40px) 10px;
    margin: 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
    color: #46496b;
  }
  .secMenu_title .arrow {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 20px;
    line-height: 1;
    border-radius: 50%;
    display: block;
    color: #fff;
    position: relative;
    background: #46496b;
  }
    .secMenu_title .arrow small {
      width: 80px;
      height: 10px;
      font-size: 10px;
      display: inline-block;
      text-align: center;
      color: #46496b;
      position: absolute;
      top: -12px;
      left: -30px;
      transform: scale(.7);
    }
    .secMenu_title .arrow small .l {
      padding: 0 4px;
      transform: rotate(-25deg);
      display: inline-block;
    }
    .secMenu_title .arrow .m::before {
      padding: 0 0 0;
      content: "open!";
      display: inline-block;
    }
    .secMenu_title .arrow small .r {
      padding: 0 4px;
      transform: rotate(15deg);
      display: inline-block;
    }
    .secMenu_title_icon {
      /* transform: scale(.9); */
      width: 20px;
      height: 20px;
      padding: 1px 0 0 2px;
      display: flex;
      justify-content: center;
      align-items: center;
      line-height: 20px;
      font-size: 13px;
      transition: all .1s ease-in-out;
    }
.secMenu_inner {
  opacity: 0;
  display: none;
  max-width: 1115px;
  padding: 0 !important;
  margin: 0 auto;
  transition: all .1s ease-in-out;
}
.menuWrapper {
  width: 100%;
  max-width: 600px;
  padding: 30px 30px 50px;
  margin: -30px auto 0;
  color: #46496b;
  position: relative;
  border-radius: 0 0 12px 12px;
  box-shadow: 0px 20px 10px 0px rgba(0,0,0,0.06);
  border: 4px solid #f9e0df;
  border-top: none;
  transition: all .1s ease-in-out;
  background: #fff;
}
  .secMenuInner_sec {
  }
    .secMenuInner_sec > h3 {
      margin: 40px 0 10px;
      text-align: center;
      color: #ea9e9b;
    }
    .secMenuInner_sec > h3 .t {
      font-family: serif;
    }
    .secMenuInner_sec small {
      margin: 0 auto;
      transform: scale(.8);
      font-size: 10px;
      font-weight: 400;
      display: inline-block;
    }
  .menu_section_title {
    width: 100%;
    margin: 0 0 15px;
    display: flex;
    justify-content: center;
    font-weight: 900;
  }
  .menu_section {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
    .menu_item {
      display: inline-flex;
      padding: 0 12px 0 0;
      margin: 5px 6px 0 0;
      position: relative;
    }
    .menu_item::after {
      width: 6px;
      height: 100%;
      display: inline-flex;
      content: "/";
      position: absolute;
      top: 0;
      right: 0;
    }
    .menu_item:last-child::after {
      display: none;
    }
  .secMenuInner_sec.s01 {
    margin: -40px 0 30px;
  }
.openBtn.active ~ .secMenu_inner {
  opacity: 1;
  display: block;
}
.openBtn.active .secMenu_title_icon {
  padding: 0 0 0 2px;
  transform: rotate(-180deg);
  transition: all .1s ease-in-out;
}
.secMenu_title.openBtn.active .arrow .m::before {
  content: "close!";
}

.secGallery {
  padding: 30px 0 50px;
  background: #f7eeea;
}
.secGallery >.inner {
 max-width: 1115px;
 margin: 0 auto;
}
.secGallery .secGallery_title {
  font-family: serif;
  padding: 10px 0 20px;
}
  .galItemList {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 columns on PC */
    justify-items: center;
    align-items: center;
    grid-gap: 8px;
  }

  .galItemList .item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
    border: 3px solid #fff;
    position: relative;
  }

.lightbox {
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightboxImgBox {
  width: 90%;
  max-width: 600px;
  border: 3px solid #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  cursor: pointer;
  padding: 20px;
  display: block;
  text-align: right;
  font-size: 30px;
  color: #fff;
}


.secSns {
}
  .snsBox {
    max-width: 500px;
    margin: 50px auto 40px;
    display: flex;
    justify-content: center;
  }
  .snsBoxIcon {
    width: 40px;
    margin: 0 15px;
  }

.foot_rainbow_bg {
  max-width: 340px;
  margin: 0 auto;
}

.footer {
  max-width: 500px;
  padding: 20px 30px 50px;
  margin: 0 auto;
  font-size: 10px;
}
  .footerBox_a {
  }
    .footerLogo {
      width: 210px;
      margin: 0 auto 0;
    }
  .footerBox_b {
    margin: 30px 0 0;
  }

  .footerTxt {
  }
  .footerTxt .t {
    font-weight: 600;
  }
  .footerTxt .c {
    margin: 5px 0 10px;
  }

.copyrightTxt {
  transform: scale(0.9);
  padding: 30px 0;
  font-size: 10px;
  color: #46496b;
  text-align: center;
  position: relative;
}

.copyright {
  height: 5px;
  overflow: hidden;
  position: relative;
}
.copyrightBg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* breadcrumb
-------------------------------------------------------------- */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.breadcrumbInner {
  max-width: 1115px;
  margin: 0 auto;
  display: flex;
}

.breadcrumb a,
.breadcrumb span {
  color: #2e2e2e;
}

.breadcrumb span {
  margin: 0 15px 0;
}

@media screen and (max-width: 1115px) {
  .breadcrumb {
    padding: 15px 20px;
    font-size: 0.7rem;
  }

  .breadcrumbInner {
    flex-wrap: wrap;
  }

  .breadcrumb span {
    margin: 0 5px 0;
  }
}


/* pagination
-------------------------------------------------------------- */
.pagination {
  max-width: 1115px;
  padding: 30px 13px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination span,
.pagination a {
  width: 25px;
  height: 25px;
  display: inline-flex;
  padding: 0;
  margin: 0 2px;
  letter-spacing: 0;
  font-size: 0.8rem;
  justify-content: center;
  align-items: center;
  color: #2e2e2e;
}

.current {
  border-radius: 50%;
  background: #eee;
}

/* topBtn
-------------------------------------------------------------- */
#topBtn {
  z-index: 999;
  width: 40px;
  margin: 0 auto;
  display: block;
  position: fixed;
  bottom: 0;
  right: 10px;
}

#topBtn .btn {
  transform: scale(.9);
  padding: 0;
  margin: 0 0 0;
  font-size: 10px;
  font-weight: bold;
  border-radius: 8px;
  display: block;
  text-decoration: none;
  background: #EA9E9B;
}

  #topBtn .btn:after {
    width: 40px;
    height: 40px;
    content: "TOP";
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: auto;
    text-align: center;
    color: #fff;
  }
