@charset "UTF-8";

/*==============================
  サイト共通のスタイル
==============================*/

/* 共通スタイル */
h1,h2,h3,h4,h5 {font-weight: bold;}
h1 {
  position: relative;
  text-align: center;
  font-size: var(--px-to-vw_24);
}
h1::before,h1::after {
  content: '';
  position: absolute;
  width: 15%;
  height: var(--px-to-rem_3);
  background-color: var(--color-sub-y);
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 10px;
}
h1::before {top: 0;}
h1::after {bottom: 0;}
@media (min-width: 40em) {
  h1{
    font-size: var(--px-to-rem_38);
  }
  h1::before,h1::after {
    width: 15%;
    height: 5px;
  }
}
.o-home_function h1 {
  line-height: normal;
  padding: 0.4rem 0 0.6rem;
}

a {
  text-decoration: none;
}

p {
  font-size: var(--px-to-vw_15);
  line-height: 1.8;
}
@media (min-width: 40em) {
  p {
    font-size: var(--px-to-rem_16);
    line-height: 2;
  }
}

.c-page-title--1 {
  font-size: 1.25rem;
  line-height: 2.5;
  width: 100%;
  background: var(--color-main);
  color: #fff;
}
.c-page-title--1::before,
.c-page-title--1::after {
  display: none;
}
.c-page-title--1 .c-container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 40em) {
  .c-page-title--1 {
    font-size: 2rem;
    line-height: 2.5;
  }
  .c-page-title--1 .c-container {
    height: 150px;
  }
}
.breadcrumbs {
  margin-bottom: 30px;
}
@media (min-width: 40em) {
  .breadcrumbs {
    margin-bottom: 30px;
  }
}
/*--- 非表示 ---*/
.u-displaynone {
  display: none !important;
}

/*--- モバイル非表示 ---*/
@media (max-width: 39.9375rem) {
  .u-displaynone-sm {
    display: none !important;
  }
}

/*--- デスクトップ非表示 ---*/
@media (min-width: 40em) {
  .u-displaynone-md-up {
    display: none !important;
  }
}

/* ヘッダーロゴ */
.o-site-logo img {
  width: 10rem;
  margin-top: 15px;
}
@media (min-width: 40em) {
  .o-site-logo img {
    width: 17rem;
    margin-top: 0;
  }
}

/* ヘッダー */
.o-header {
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 0 0.5rem;
  height: var(--header-height);
}
@media (min-width: 40em) {
  .o-header {
    max-width: 100%;
    overflow: visible;
    padding: 0 4rem;
    height: var(--header-height-md);
}
}
.o-heder--dummy {
  width: 100%;
  height: var(--header-height);
}
@media (min-width: 40em) {
  .o-heder--dummy {
    width: 100%;
    height: var(--header-height-md);
  }
}
.o-header a {
  text-decoration: none;
}
.o-globalMenu {
  width: 100vw;
  min-height: 55vh;
  max-height: 90vh;
  background-color: #fff;
  overflow: auto;
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: all 0.3s;
}
@media (min-width: 40em) {
  .o-globalMenu {
    width: auto;
    height: auto;
    height: var(--header-height-md);
    background-color: transparent;
    display: flex;
    overflow: visible;
    position: static;
    top: 0;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    min-height: auto;
    max-height: 100%;
    margin-left: auto;
    flex-wrap: nowrap;
  }
}
.o-globalMenu--shown .o-globalMenu,
.o-globalMenu--shown .o-globalMenuToggle--background {
  /* opacity: 1;
  visibility: visible; */
  transform: translateX(0);
}
.o-globalMenu>ul {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 40em) {
  .o-globalMenu>ul {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.o-globalMenu>ul>li:last-child {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 40em) {
  .o-globalMenu>ul>li {
    border-bottom: none;
    flex-grow: 1;
    overflow: visible;
  }
  .o-globalMenu>ul>li:last-child {
    margin-left: 20px;
    width: auto;
  }
}
.o-globalMenu>ul>li:last-child>a {
  border-bottom: none;
  background-color: var(--color-btn-o);
  color: #FFF;
  border-radius: 999px;
  margin-top: 15px;
  border: 1px solid var(--color-btn-o);
}
@media (min-width: 40em) {
  .o-globalMenu>ul>li:last-child>a {
    border-radius: 999px;
    height: 70%;
    margin-top: 15px;
    padding-left: 40px;
    padding-right: 35px;
    border: 1px solid var(--color-btn-o);
  }
}
.o-globalMenu>ul>li>a {
  font-weight: bold;
  padding: 0.75rem 1.2rem;
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  position: relative;
  transition: 150ms;
  width: 100%;
}
@media (min-width: 40em) {
  .o-globalMenu>ul>li>a {
    height: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
  }
}
.o-globalMenu > ul > li > a:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 150ms;
}
.o-globalMenu > ul > li:last-child > a:after {
  content: "";
}
.o-globalMenu > ul > li > a.opened:after {
  transform: translateY(-50%) rotate(90deg);
}
.o-globalMenu>ul>li:last-child>a>div {
  width: 70%;
  display: inline;
  padding-right: 5vw;
}
@media (min-width: 40em) {
  .o-globalMenu>ul>li>a>div {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    padding-right: 5px;
  }
  .o-globalMenu>ul>li:last-child>a>div {
    width: auto;
    padding-right: 5px;
  }
}
.o-globalMenuItem--hasChildren {
  position: relative;
}
.o-globalMenu>ul>.o-globalMenuItem--hasChildren>a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 150ms;
  color: var(--color-main);
}
.o-globalMenu>ul>.o-globalMenuItem--hasChildren--title>a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 150ms;
  color: var(--color-main-text);
}
@media (max-width: 39.999999em) {
  .o-globalMenuItem--title {
    background-color: var(--color-main);
    color: var(--color-main-text);
  }
}
.o-globalMenu>ul>.o-globalMenuItem--hasChildren>a.opened:after,
.o-globalMenu>ul>.o-globalMenuItem--hasChildren--title>a.opened:after {
  transform: translateY(-50%) rotate(180deg);
  content: "\f068";
  color: #ffffff;
}
.o-globalMenuItem--hasChildren:has(a.opened) {
  background-color: var(--color-main);
  color: #ffffff;
  transition: 0.3s;
}
@media (min-width: 40em) {
  .o-globalMenu>ul>li>a:hover>div {
    color: var(--color-main);
  }
  .o-globalMenu>ul>li>a:hover>.fa-circle-arrow-right::before,
  .o-globalMenu>ul>li:last-child>a:hover>div {
    color: var(--color-btn-o);
  }
  .o-globalMenu>ul>li>a:after {
    display: none;
  }
  .o-globalMenu>ul>li>a.focus,
  .o-globalMenuSub ul>li:hover>a {
    color: var(--color-main);
  }
  .o-globalMenu>ul>li:hover>a {
    color: var(--color-main);
    transition: 0.3s;
  }
  .o-globalMenu>ul>li:last-child:hover>a {
    background-color: #fff;
    border: 1px solid var(--color-btn-o);
    transition: 0.3s;
  }
  .o-globalMenu>ul>li>a>i {
    margin-left: 0.5rem;
    color: var(--color-main);
    font-size: 1.25rem;
  }
}
.o-globalMenuItem__childToggle {
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
  width: 57px;
  height: 57px;
}
@media (min-width: 40em) {
  .o-globalMenuItem__childToggle {
    display: none;
  }
}

/* サブメニュー表示切替 */
.o-globalMenu>ul>li.o-globalMenuItem--hasChildren>a.focus+.o-globalMenuSub {
  display: block;
}
@media (min-width: 40em) {
  .o-globalMenu>ul>li.o-globalMenuItem--hasChildren:hover .o-globalMenuSub {
    opacity: 1;
    visibility: visible;
  }
}

/* グローバルメニューサブ */
.o-globalMenuSub {
  margin-bottom: -2px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  display: none;
}
@media (min-width: 40em) {
  .o-globalMenuSub {
    background-color: transparent;
    padding-top: 1.5rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transition: 300ms;
    width: auto;
  }
}
@media (min-width: 40em) {
  .o-globalmenuSub__inner {
    padding: 1.5rem 2rem;
    background-color: #ffffff;
  }
}
.o-globalMenuSub>ul>li {
  border-bottom: 1px solid #DADADA;
}
@media (min-width: 40em) {
  .o-globalMenuSub>ul>li {
    border-bottom: none;
  }
}
a.o-globalMenuSub__item {
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  font-size: 1rem;
  display: block;
  transition: 150ms;
  position: relative;
  color: var(--color-text);
}
a.o-globalMenuSub__item:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  text-decoration: none;
}
@media (min-width: 40em) {
  a.o-globalMenuSub__item {
    padding-bottom: 0.15rem;
    padding-top: 0.15rem;
  }
}

/* グローバルメニューサブのサブ */
@media (min-width: 40em) {
  .o-globalMenuSubChild {
    padding-left: 1.25rem;
  }
}
a.o-globalMenuSubChild__item {
  padding: 0.5rem 1.5rem 0.5rem 4.375rem;
  color: var(--color-black-light);
  font-size: 0.875rem;
  display: block;
  transition: 150ms;
  position: relative;
  background-color: var(--color-light-pink);
  text-indent: -1.375em;
}
@media (min-width: 40em) {
  a.o-globalMenuSubChild__item {
    margin-right: 0;
    margin-left: 0;
    padding: 0.25rem 1rem;
    border-bottom: none;
    background-color: inherit;
    text-indent: -1em;
  }
}
a.o-globalMenuSubChild__item:before {
  content: "\f061";
  margin-right: 0.5rem;
  color: var(--color-black-light);
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

/* グローバルメニューオーバーレイ */
.o-globalMenu-overlay {
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (min-width: 40em) {
  .o-globalMenu-overlay {
    height: calc(100vh - var(--header-height-md));
    top: var(--header-height-md);
  }
}
.o-globalMenu-overlay--shown {
  visibility: visible;
  opacity: 1;
  z-index: 50;
}

/* --- グローバルメニュートグル --- */
.o-globalMenuToggle {
  width: var(--header-height);
  height: var(--header-height);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 102;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 40em) {
  .o-globalMenuToggle {
    display: none;
  }
}
.o-globalMenuToggle span,
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-main);
  color: var(--color-main-text);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all .3s;
}
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  content: '';
}
.o-globalMenuToggle span:before {
  top: 0;
  bottom: -16px;
}
.o-globalMenuToggle span:after {
  top: -16px;
}
.o-globalMenu--shown .o-globalMenuToggle span {
  background: transparent;
}
.o-globalMenu--shown .o-globalMenuToggle span:before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
.o-globalMenu--shown .o-globalMenuToggle span:after {
  transform: rotate(45deg);
  top: 0;
}
.o-globalMenuToggle--background {
  height: var(--header-height);
  width: 85vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}

/* 矢印 */
.fa-circle-arrow-right::before {
  color: #fff;
}
@media (min-width: 40em) {
  .o-globalMenu .fa-circle-arrow-right {
    width: 20px;
    height: auto;
  }
}

/* フッター */
.o-footer--border {
  border-top: 1px solid #DDDDDD;
  margin-top:3rem;
}
.o-footer-main {
  margin: 5vw 0;
}
@media (min-width: 40em) {
  .o-footer-main {
    margin: 10px 0;
  }
}
.o-footer ul,
.o-footerCopyright {
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.o-footer ul {
  margin-bottom: 10px;
}
@media (min-width: 40em) {
  .o-footer ul {
    margin-bottom: 0;
  }
}
@media (min-width: 40em) { 
  .o-footer .c-container {
    width: auto;
    height: 100px;
  }
  .o-footer ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .o-footer ul li {
    font-size: var(--px-to-rem_15);
    margin-right: 40px;
  }
  .o-footer ul li:last-child {
    margin-right: 0;
  }
  .o-footer ul li a:hover {
    color: var(--color-main);
    transition: 0.3s;
  }
  .o-footerCopyright {
    font-size: var(--px-to-rem_12);
    margin-left: auto;
    text-align: right;
  }
}

/* ページトップボタン */
.modoru {
  display: none;
  position: fixed;
  bottom: 65px;
  right: 50px;
  z-index: 999;
}
.modoru a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 73px;
  height: 73px;
  background-color: #f0f0f0;
  border: 20px solid #333;
  border-radius: 50%;
  transition: .3s;
}
.modoru a:hover {
  transform: translate(0, -5px);
}
.modoru .fa-circle-arrow-up:before {
  font-size: 45px;
}

/* お問い合わせボタン */
@media (max-width: 39.9375rem) {
  .o-main_visual .c-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-btn-o);
    border: var(--px-to-vw_2) solid #fff;
    border-radius: 50px;
    padding: 0 var(--px-to-vw_30);
    line-height: 4;
    color: #fff;
    font-size: var(--px-to-vw_14);
    transition: background-color 0.3s ease;
    width: 70%;

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 20px;
  }
}
@media (max-width: 39.9375rem) {
  .c-form .c-contact-btn,
  .o-home_banner .c-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-btn-o);
    border: var(--px-to-vw_2) solid #fff;
    border-radius: 50px;
    padding: 0 var(--px-to-vw_30);
    line-height: 4;
    color: #fff;
    font-size: var(--px-to-vw_14);
    transition: background-color 0.3s ease;
    width: 300px;

    /*position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 20px;*/
  }
}


.c-contact-btn div {
  color: #fff;
  font-weight: bold;
  margin-right: var(--px-to-vw_10);
}
.c-contact-btn i {
  font-size: var(--px-to-vw_18);
}
.c-contact-btn:hover {
  background-color: #fff;
  border: var(--px-to-vw_2) solid var(--color-btn-o);
}
.c-contact-btn:hover div,
.c-contact-btn:hover i::before {
  color: var(--color-btn-o);
}
@media (min-width: 40em) {
  .c-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-btn-o);
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 0 40px;
    line-height: 4;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  .c-contact-btn div {
    margin-right: 10px;
  }
  .c-contact-btn i {
    font-size: 18px;
  }
  .c-contact-btn:hover {
    border: 2px solid var(--color-btn-o);
  }

}

/* 吹き出し */
.c-speech-bubble {
  position: relative;
  width: 93%;
  margin: 0 auto;
  background-color: var(--color-sub-g);
  text-align: center;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  font-size: var(--px-to-vw_17);
  margin-bottom: -15px;
}
.c-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: var(--color-sub-g) transparent transparent;
  translate: -50% 100%;
}
@media (min-width: 40em) {
  .c-speech-bubble {
    width: 40%;
    margin-bottom: -22px;
    padding: 3px 15px;
    font-size: var(--px-to-rem_20);
  }
}

/* 背景 */

.c-bg-yellow {
  background: #fefce5;
  position: relative;
}
.c-bg-yellow::before,
.c-bg-yellow::after {
  content: '';
  position: absolute;
  z-index: 1;
  background: transparent;
  border-style: solid;
}
.c-bg-yellow::before {
  top: 0;
  left: 0;
  border-width: 50px 50px 0 0;
  border-color: white transparent transparent transparent;
}
.c-bg-yellow::after {
  bottom: 0;
  right: 0;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent white transparent;
}
@media (min-width: 40em) {
  .c-bg-yellow::before {
    border-width: 100px 100px 0 0;
  }
  .c-bg-yellow::after {
    border-width: 0 0 100px 100px;
  }
}

/* 電話・受付時間 */

.c-info {
  border-top: 2px dotted #000;
  border-bottom: 2px dotted #000;
  padding: var(--px-to-vw_10) var(--px-to-vw_10);
  margin: 0 auto;
}
.c-info--tel span{
  font-weight: bold;
  font-size: var(--px-to-vw_36);
  line-height: 1;
}
.c-info--tel img{
  width: 30px;
  margin: 0 10px 7px 0;
}
.c-info--time {
  font-size: var(--px-to-vw_14);
}
@media (min-width: 40em) {
  .c-info {
    padding: 10px 0;
  }
  .c-info--tel span{
    font-size: var(--px-to-rem_36);
  }
  .c-info--tel img{
    width: 30px;
    margin: 0 10px 7px 0;
  }
  .c-info--time {
    font-size: var(--px-to-rem_14);
  }
}

/* モーダル全体 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: auto;
}
.modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.modal-text {
  margin-top: 20px;
}
.modal-text a {
  color: #007BFF;
}
.modal-text li{
  margin-bottom: 20px;
}
.modal-open-button {
  font-weight: bold;
  cursor: pointer;
  color: #007BFF;
}
.modal-checkbox:checked + .modal {
  display: flex;
}
.modalToggle-wrapper {
  position: relative;
}
.close {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 30px;
  cursor: pointer;
}
@media (min-width:40em){
  .close {
    bottom: -30px;
  }
}
.c-round {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #CCC;
  margin-bottom: 50px;
}
.c-round::before,
.c-round::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 21px;
  background: #333;
}
.c-round::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.c-round::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
