@charset "UTF-8";

/* CSS Document */
:root {
  --keyColor: #F00064;
  --baseColor: #fff;
  --darkColor: #000;
  --grayColor: #ccc;
  --lgrayColor: #f4f4f4;
  --dgrayColor: #666;
  --f1: 5rem;
  --f2: 3.6rem;
  --f3: 2.2rem;
  --f4: 1.6rem;
  --f5: 1.2rem;
  --f6: 1rem;
  /* --fontFamily: 'Lato', "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; */
  --fontFamily: 'Roboto', "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  color: #484848;
  font-size: 1.6rem;
  font-family: var(--fontFamily);
  letter-spacing: 0.05em;
  background: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: var(--keyColor);
  text-decoration: none;
  transition: 0.8s;
}

a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

@media screen and (max-width: 900px) {
  /* .main-contents {
    padding-top: 50px;
  } */
}

#footer {
  background: var(--darkColor);
  padding: 30px 5% 20px;
  font-size: 1.3rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

}
.footer__logo{
  width: 70px;
}
.footer-menu{
  display: flex;
  align-items: flex-end;
}
.footer-menu__list a{
  color: #fff;
  font-size: 1.6rem;
  margin-left: 40px;
}
.footer-menu__list{
  display: flex;
}
.footer__copy{
  color: #fff;
  font-size: 1.6rem;
}

@media screen and (max-width: 900px) {
  #footer{
    display: block;
    text-align: center;
  }
  .footer-menu{
    display: block;
  }
  .footer__logo{
    margin: 0 auto;
  }
  .footer-menu__list{
    margin-top: 20px;
    justify-content: center;
  }
  .footer-menu__list a {
    margin-left: 5px;
    font-size: 1.4rem;
}
.footer__copy{
  font-size: 1.2rem;
  margin-top: 20px;
}
}

#breadcrumbs {
  padding: 20px 50px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  min-height: 80vh;
}

.bg01 {
  background: #f4f4f2;
}

@media (max-width: 900px) {
  html {
    font-size: 53.125%;
  }

  body {
    font-size: 1.6rem;
  }

  img {
    max-width: 100%;
    max-height: 100%;
  }


  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  #breadcrumbs {
    padding: 20px 20px;
  }
}

hr {
  height: 1px;
  background-color: #ccc;
  width: 100%;
  display: block !important;
  margin: 50px 0;
}


.sub-page .page-title, .article-page .page-title {
  background-size: cover !important;
  position: relative;
}

.sub-page .page-title {
  background: url(/wp-content/uploads/images/contact/contact_ttl_bg.jpg);
  background-repeat: no-repeat;
}

.article-page .page-title {
  background: url(/wp-content/uploads/images/news/news_ttl_bg.jpg);
  background-repeat: no-repeat;
}

.sub-page .page-title::before, .article-page .page-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  background-image: radial-gradient(rgba(0, 0, 0, 0.25) 13%, transparent 16%), radial-gradient(rgba(0, 0, 0, 0.25) 13%, transparent 16%);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
}

/* contact */
.contact__item {
  margin-top: 20px;
  font-weight: bold;
}

.contact__asterisk {
  color: var(--keyColor);
  font-size: 1rem;
}

/**********MW WP Form*********/
/* 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;
}

.mw_wp_form {
  padding: 10px 0;
}

.mw_wp_form input,
.mw_wp_form textarea,
.mw_wp_form select {
  width: 100%;
  padding: 3px 5px;
  border-radius: 6px;
  box-sizing: border-box;
  border: 2px solid #eee;
  height: 2.5em;
  margin-top: 5px;
  font-size: 16px;
  font-family: var(--fontFamily);
}

.mw_wp_form input[type="checkbox"] {
  height: 1em;
  margin-right: 5px;
  width: 1.5em;
}

.mw_wp_form textarea {
  height: 300px;
}

.mw_wp_form input[type="text"]:focus, .mw_wp_form select:focus, .mw_wp_form textarea:focus {
  border: 2px solid var(--keyColor);
  outline: 0;
}

.mw_wp_form span.error {
  margin-top: 4px;
  color: var(--keyColor);
  font-weight: bold;
  display: flex;
}

.mw_wp_form span.error::before {
  content: "\f06a";
  font-family: "Font Awesome 5 Free";
  display: block;
  margin-right: 5px;
}

.mw_wp_form .mwform-tel-field {
  margin-left: 0px;
}

/*ç¢ºèªãƒ»é€ä¿¡ãƒœã‚¿ãƒ³*/
.mw_wp_form .sendbtn,
.mw_wp_form .confbtn {
  background: var(--keyColor);
  border: 0 none;
  color: #FFF;
  text-decoration: none;
  padding: 15px 25px;
  cursor: pointer;
  overflow: hidden;
  margin: 20px 10px 20px 0;
  height: auto;
  font-weight: bold;
  border-radius: 30px;
}

/*æˆ»ã‚‹ãƒœã‚¿ãƒ³*/
.mw_wp_form .backbtn {
  background: #000000;
  border: 0 none;
  color: #FFF;
  height: 39px;
  text-decoration: none;
  padding: 0 25px;
  cursor: pointer;
  overflow: hidden;
  margin: 20px 10px 20px 0;
}

.mw_wp_form .item {
  margin-bottom: 25px;
  line-height: 1.5;
}

.mw_wp_form .item-name {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.mw_wp_form .item .item-field {
  margin-top: 5px;
}

.mw_wp_form .required {
  background: var(--keyColor);
  color: var(--baseColor);
  font-weight: bold;
  padding: 0 8px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}

.mw_wp_form .attention {
  font-size: 1.2rem;
}
.mw_wp_form .trigger {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px

}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0%;
}

@media screen and (max-width: 900px) {
  .mw_wp_form {
    width: 100%;
  }
}


/* End contact */
/* レスポンシブ表示用 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 900px) {
  .pc_tb {
    display: none;
  }

  .sp {
    display: block;
  }
}

@media screen and (max-width: 1100px) {
  .pc {
    display: none;
  }
}


.header{
  display: flex;
  padding: 8px 40px;
  z-index: 9999;
  top: 0;
  position: absolute;
  width: 100%;
  
}

.header.fixed{
  position: fixed;
  width: 100%;
  background-color: #fff;
  transform: translateY(-100%);
  animation: headerFix 0.6s forwards; 
  box-shadow: 0 1px 10px rgba(0, 0, 0, .2);
}

@keyframes headerFix {

  100% {
    transform: translateY(0);
  }
  
}


h1 img{
  height: 60px;
  width: auto;
  /* width: 300px; */
}



.header a {
  color: var(--darkColor);
}

.header a:hover ,.header .is-current a{
  text-decoration: none;
}


.global-nav{
  display: flex;
  align-items:flex-end;
  flex: 1;
  justify-content: space-between;
  margin-left: 2vw;
  padding-bottom: 5px;
  font-size: 1.5rem;
}

.global-nav li a{
  padding:0 1vw;
}

.nav-wrapper{
  display: flex;
}

.nav-btn_wrapper{
  display: flex;
}

.document-btn{
  position: relative;
}

.document-btn span,.contact-btn a{
  width: 200px;
  height: 50px;
  border-radius: 25px;
  border: 2px var(--keyColor) solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--keyColor);
}



.document-btn span{
  background-color: #fff
}

.document-btn__child::before{
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  left: 0;
  top: -10px;
}

.document-btn__child{
  display: none;
  position: absolute;
  width: 200%;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px 20px 30px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, .2);
  z-index: 999;
}

.document-btn:hover .document-btn__child{
display: block;
}

.document-btn li + li{
  margin-top: 20px;
}

.document-btn a{
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}

.document-btn span:hover{
  border: 2px #fff solid;
  background-color:var(--keyColor) ;
  color: #fff !important;
  opacity: 1;
}

.contact-btn a{
  margin-left: 1vw;
  background-color: var(--keyColor);
  color: #fff;
}

.contact-btn a:hover{
  border: 2px var(--keyColor) solid;
  background-color: #fff;
  color: var(--keyColor) !important;
  opacity: 1;
}

.document-btn__child a{
  width: 250px;
  height: 50px;
  border-radius: 25px;
  border: 2px var(--keyColor) solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--keyColor) ;
}

.document-btn__child a:hover{
  border: 2px var(--keyColor) solid;
  background-color:var(--keyColor) ;
  color: #fff !important;
  opacity: 1;
}

.nav-toggle{
  display: none;
}

@media screen and (max-width: 1250px) {
  
  .header{
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
  }
.nav-toggle{
  position: fixed;
  top: 15px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 30px;
}
.nav-toggle span{
  width: 100%;
  height: 1px;
  background-color: #000;
}

.header-open .nav-toggle {
  justify-content: center;
}

.nav-toggle span:nth-child(1),
.nav-toggle span:nth-child(3){
  transition: 0.4s;
}

.header-open .nav-toggle span:nth-child(2){
  display: none;
}

.header-open .nav-toggle span:nth-child(1){
  transform: rotate(45deg);
}
.header-open .nav-toggle span:nth-child(3){
  transform: rotate(-45deg);
}

  h1 img{
    height:40px;
  }

  .global-nav{
    position: fixed;
    width: 100vw;
    height: 100svh;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #fff;
    margin: 0;
    display: block;
    padding: 50px 0;
    transform: translateX(100%);
    transition: 0.6s ease-out;
  }
  .header-open .global-nav{
    transform: translateX(0);
  }
  .nav-wrapper,
  .nav-btn_wrapper{
    display: block;
    max-width: 750px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-wrapper li a {
    padding: 10px 0 5px;
    border-bottom: 1px solid #ccc;
    display: block;
}

.document-btn {
  margin-top: 50px;
  text-align: center;
  padding: 10px 0 30px;
  background-color: var(--lgrayColor);
}

  .document-btn__child{
    margin: 0 auto;
    position: relative;
    box-shadow: none;
    width: 90%;
    display: flex !important;
    padding: 20px;
  }



.document-btn span{
  border: none;
  width: auto;
  pointer-events: none;
  background-color: inherit;
}

.document-btn__child li{
  width: 50%;
}
  .document-btn__child a{
    max-width: 96%;
  }

  .document-btn li + li{
    margin-top: 0;
  }  

  .contact-btn a {
    margin: 30px auto 0;
    max-width: 96%;
    width: 250px;
}

}

@media(max-width:767px){
  .document-btn__child{
    display: block !important;
  }
  .document-btn__child li{
    width: 100%;
  }
  .document-btn li + li {
    margin-top: 20px;
}

}