@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@keyframes fadeup {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*[class*=fadeup] {
  opacity: 0;
}
*[class*=fadeup].is-animated {
  animation-name: fadeup;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.fadeup-1 {
  animation-delay: 0.1s;
}
.fadeup-2 {
  animation-delay: 0.3s;
}
.fadeup-3 {
  animation-delay: 0.5s;
}
.fadeup-4 {
  animation-delay: 0.7s;
}
.fadeup-5 {
  animation-delay: 0.9s;
}
.fadeup-6 {
  animation-delay: 1.1s;
}
.fadeup-7 {
  animation-delay: 1.3s;
}
.fadeup-8 {
  animation-delay: 1.5s;
}
.fadeup-9 {
  animation-delay: 1.7s;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  line-height: 1.5;
  padding: 72px 0 15px;
}
@media (max-width: 1399px) {
  body {
    padding-top: 69px;
  }
}
@media (max-width: 1199px) {
  body {
    padding-top: 60px;
  }
}
@media (max-width: 991px) {
  body.fixed {
    position: fixed;
    right: 0;
    left: 0;
  }
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.3s ease-in-out all;
}
a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.container02 {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container02 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .container02 {
    width: 94%;
  }
}

.left {
  float: left;
}

.right {
  float: right;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.center {
  text-align: center;
}

.textRight {
  text-align: right;
}

@media (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

@media (min-width: 769px) {
  .allLink:not(.allLinkNone) {
    cursor: pointer;
    transition: 0.3s ease-in-out all;
  }
  .allLink:not(.allLinkNone):hover {
    opacity: 0.8;
  }
  .allLink:not(.allLinkNone) a:hover {
    opacity: 1;
  }
}

.displayNone {
  display: none;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 50px;
}
.breadcrumb li:not(:last-child) {
  margin-right: 10px;
  padding-right: 15px;
  position: relative;
}
.breadcrumb li:not(:last-child):after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-radius: 1px;
  transform: rotate(45deg);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

input[type=submit] {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  border: 0;
  cursor: pointer;
  appearance: none;
  transition: 0.3s ease-in-out all;
}
input[type=submit]:hover {
  opacity: 0.8;
}
input[type=text], input[type=email] {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

textarea {
  font-size: 16px;
  width: 100%;
  height: 220px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  box-shadow: none;
  box-sizing: border-box;
  appearance: none;
  resize: none;
}

.checkbox {
  padding-left: 25px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.checkbox:before, .checkbox:after {
  content: "";
  position: absolute;
}
.checkbox:before {
  width: 16px;
  height: 16px;
  border: 1px solid #c8c9ca;
  border-radius: 3px;
  z-index: 3;
  top: 0;
  left: 0;
}
.checkbox:after {
  width: 4px;
  height: 9px;
  margin-top: -6px;
  border-right: 3px solid #333;
  border-bottom: 3px solid #333;
  transform: rotate(45deg);
  z-index: 1;
  display: block;
  top: 8px;
  left: 6px;
}
.checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  box-shadow: 41px 0px #fff;
  appearance: none;
  z-index: 2;
  display: block;
  position: absolute;
  left: -40px;
}
.checkbox input[type=checkbox]:checked {
  box-shadow: none;
}

.radio {
  padding-left: 22px;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.radio:before, .radio:after {
  content: "";
  position: absolute;
}
.radio:before {
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 50%;
  z-index: 3;
  top: 7px;
  left: 0;
}
.radio:after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #5876b6;
  z-index: 1;
  top: 12px;
  left: 5px;
}
.radio input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
  box-shadow: 20px -1px #fff;
  appearance: none;
  z-index: 2;
  position: absolute;
  top: 7px;
  left: -23px;
}
.radio input[type=radio]:checked {
  box-shadow: none;
}
.radio input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #fff;
}

.selectBox01 {
  border: 1px solid #ccc;
  position: relative;
}
.selectBox01:after {
  content: "";
  width: 4px;
  height: 4px;
  margin: auto 0;
  border: 4px solid transparent;
  border-top: 4px solid #333;
  box-sizing: border-box;
  position: absolute;
  top: 18px;
  right: 15px;
}
.selectBox01 select {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  width: 100%;
  height: 40px;
  background: none;
  padding-left: 15px;
  border: none;
  box-sizing: border-box;
  appearance: none;
  border-radius: 0;
  outline: none;
}
.selectBox01 select:not(:target) {
  width: 130% \9 ;
}
.selectBox01 select::-ms-expand {
  display: none;
}

.headerTop {
  margin-top: -86px;
  padding-top: 86px;
}

.btn01 a,
.btn01 input {
  color: #fff;
  background: url("../images/ico_common01.svg") no-repeat 94% 50%, #000;
  background-size: 25px 6px;
}
.btn01 a {
  display: block;
}
.btn01 input {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  width: 100%;
  height: 65px;
}
@media (max-width: 767px) {
  .btn01 input {
    height: 45px;
    padding-right: 15px;
  }
}

.scrollArea01 {
  overflow-y: auto;
  scrollbar-color: #ddd #f4f4f4;
  scrollbar-width: thin;
  scrollbar-base-color: #ddd;
  scrollbar-track-color: #f4f4f4;
  scrollbar-arrow-color: #f4f4f4;
  scrollbar-shadow-color: #ddd;
}
.scrollArea01::-webkit-scrollbar {
  width: 10px;
}
.scrollArea01::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.scrollArea01::-webkit-scrollbar-thumb {
  background: #ddd;
}

.modalOpen,
.modalClose {
  cursor: pointer;
  transition: 0.3s ease-in-out all;
}
.modalOpen:hover,
.modalClose:hover {
  opacity: 0.8;
}

.modalOverlay {
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  z-index: 100000;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.modalClose {
  position: absolute;
  top: -35px;
  right: 0;
}

.modalArea01 {
  margin: auto;
  z-index: 100001;
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .modalArea01 {
    width: 80%;
  }
}
.modalArea01 img {
  max-width: 710px;
  max-height: 600px;
  margin: auto;
}
@media (max-width: 768px) {
  .modalArea01 img {
    max-width: 100%;
    max-height: 340px;
  }
}

.verticalTop {
  vertical-align: top;
}

.fadein {
  opacity: 1;
}

.fadeinUnder {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1000ms;
}

.fadeinRight {
  opacity: 0;
  transform: translate(50px, 0);
  transition: all 1000ms;
}

.fadeinLeft {
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 1000ms;
}

.fadeinUnder.scrollin,
.fadeinRight.scrollin,
.fadeinLeft.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.redBtn01,
.orangeBtn01 {
  width: 250px;
}
.redBtn01 a,
.orangeBtn01 a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid;
  display: block;
  position: relative;
  transition: 0.4s;
}
@media (max-width: 768px) {
  .redBtn01 a,
  .orangeBtn01 a {
    font-size: 14px;
  }
}
.redBtn01 a:after,
.orangeBtn01 a:after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  transition: 0.4s;
}
.redBtn01 a:hover,
.orangeBtn01 a:hover {
  background-color: #fff;
  opacity: 1;
}

.orangeBtn01 a {
  border-color: #ff8010;
  background-color: #ff8010;
}
.orangeBtn01 a:hover {
  color: #ff8010;
}
.orangeBtn01 a:hover:after {
  border-top-color: #ff8010;
  border-right-color: #ff8010;
}

.redBtn01 a {
  color: #e22323;
  border-color: #e22323;
}
.redBtn01 a:after {
  border-top-color: #e22323;
  border-right-color: #e22323;
}
.redBtn01 a:hover {
  color: #fff;
  background-color: #e22323;
}
.redBtn01 a:hover:after {
  border-top-color: #fff;
  border-right-color: #fff;
}

.topVisual01 {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1800px) {
  .topVisual01 {
    height: 450px;
  }
}
@media (max-width: 1799px) {
  .topVisual01 {
    aspect-ratio: 4/1;
  }
}
@media (max-width: 767px) {
  .topVisual01 {
    aspect-ratio: 15/7;
  }
}
.topVisual01 .txt01 {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .topVisual01 .txt01 {
    font-size: 22px;
  }
}
.topVisual01 .txt01.shadow {
  text-shadow: 0 0 8px rgb(255, 255, 255);
}
.topVisual01 .txt01.white {
  color: #fff;
}
.topVisual01 .txt01.white.shadow {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

header {
  background: #fff;
  z-index: 99999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.header {
  width: calc(100% - 40px);
  margin-right: auto;
  margin-left: auto;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .header {
    width: 94%;
  }
}
@media (min-width: 992px) {
  .header .globalMenuArea02 {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .header .globalMenuArea02 {
    display: none;
  }
}
.header .globalMenuArea02 li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 1399px) {
  .header .globalMenuArea02 li:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 1199px) {
  .header .globalMenuArea02 li:not(:last-child) {
    margin-right: 15px;
  }
}
.header .globalMenuArea02 li a {
  font-size: 16px;
}
@media (max-width: 1399px) {
  .header .globalMenuArea02 li a {
    font-size: 14px;
  }
}
@media (max-width: 1099px) {
  .header .globalMenuArea02 li a {
    font-size: 12px;
  }
}

.headerMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 190px;
  line-height: 0;
}
@media (max-width: 1399px) {
  .logo {
    width: 178px;
  }
}
@media (max-width: 1199px) {
  .logo {
    width: 139px;
  }
}

@media (min-width: 992px) {
  .spBtn01 {
    display: none !important;
  }
}
.spBtn01 p {
  width: 22px;
  height: 18px;
  transition: all 0.4s;
  z-index: 9999;
  position: absolute;
  top: 21px;
  right: 3%;
}
.spBtn01 p.active span {
  background: #fff;
}
.spBtn01 p.active span:first-child {
  transform: translateY(8px) rotate(-45deg);
}
.spBtn01 p.active span:nth-child(2) {
  opacity: 0;
}
.spBtn01 p.active span:last-child {
  transform: translateY(-8px) rotate(45deg);
}
.spBtn01 span {
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #333;
  transition: all 0.4s;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.spBtn01 span:first-child {
  top: 0;
}
.spBtn01 span:nth-child(2) {
  top: 8px;
}
.spBtn01 span:nth-child(3) {
  bottom: 0;
}
.spBtn01.active {
  width: 100%;
  height: 60px;
  background: rgba(255, 140, 117, 0.9);
  z-index: 3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.globalMenuArea01 {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  margin-top: 60px;
  padding-bottom: 54px;
  background: rgba(255, 140, 117, 0.9);
  border: 0;
  overflow-y: scroll;
  z-index: 9998;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -ms-overflow-style: none;
}
.globalMenuArea01::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .globalMenuArea01 {
    display: none !important;
  }
}
.globalMenuArea01 li {
  border-top: 1px solid #FFB6A8;
}
.globalMenuArea01 li:last-child {
  border-bottom: 1px solid #FFB6A8;
}
.globalMenuArea01 a {
  color: #fff;
  font-size: 16px;
  padding: 15px;
  display: block;
  position: relative;
}
.globalMenuArea01 a:after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
}
.globalMenuArea01 .dropBtn01 {
  color: #fff;
  padding: 15px;
  position: relative;
}
.globalMenuArea01 .dropBtn01:before, .globalMenuArea01 .dropBtn01:after {
  content: "";
  position: absolute;
}
.globalMenuArea01 .dropBtn01:before {
  width: 14px;
  height: 1px;
  margin: auto 0;
  background: #fff;
  border: 0;
  transform: none;
  display: block;
  top: 0;
  right: 15px;
  bottom: 0;
  left: auto;
}
.globalMenuArea01 .dropBtn01:after {
  width: 1px;
  height: 14px;
  background: #fff;
  border: 0;
  transform: none;
  right: 22px;
}
.globalMenuArea01 .dropBtn01.active:after {
  display: none;
}
.globalMenuArea01 .drop01 ul {
  display: none;
}
.globalMenuArea01 .drop01 a {
  padding-left: 25px;
}

.customize-support header {
  top: 32px;
}
@media (max-width: 782px) {
  .customize-support header {
    top: 46px;
  }
}

#wpadminbar {
  z-index: 100000;
}
@media (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}

.footer {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .footer .container {
    width: 100%;
  }
}
.footer .footerNav01 {
  padding-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1200px) {
  .footer .footerNav01 {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .footer .footerNav01 {
    flex-direction: column;
    border-bottom: none;
    padding-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .footer .footerNav01 li {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .footer .footerNav01 li {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 0;
  }
}
.footer .footerNav01 a {
  font-size: 16px;
  display: block;
}
@media (max-width: 1200px) {
  .footer .footerNav01 a {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .footer .footerNav01 a {
    padding: 12px 30px 12px 15px;
    position: relative;
  }
}
.footer .footerNav01 a:after {
  content: "";
  width: 6px;
  height: 6px;
  margin: auto 0;
  border-top: 2px solid #c4c4c4;
  border-right: 2px solid #c4c4c4;
  border-radius: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  display: none;
}
@media (max-width: 767px) {
  .footer .footerNav01 a:after {
    display: block;
  }
}
.footer .footerContent01 {
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1199px) {
  .footer .footerContent01 {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .footer .footerContent01 {
    padding: 0 5px;
    margin-bottom: 20px;
  }
}
.footer .footerContent01 .footerAddress {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .footer .footerContent01 .footerAddress {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .footer .footerContent01 .footerAddress {
    flex-direction: column;
  }
}
.footer .footerContent01 .logo {
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .footer .footerContent01 .logo {
    width: 180px;
  }
}
.footer .footerContent01 .addressBox01 {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .footer .footerContent01 .addressBox01 {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 374px) {
  .footer .footerContent01 .addressBox01 {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.footer .footerContent01 .addressBox01 p {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer .footerContent01 .addressBox01 span {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .footer .footerContent01 .addressBox01 span:not(.tel) {
    display: block;
  }
}
.footer .footerContent01 .footerBtnArea {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .footer .footerContent01 .footerBtnArea {
    width: 100%;
    flex-direction: column;
  }
}
.footer .footerContent01 .contactBtn02 {
  width: 280px;
}
@media (max-width: 1250px) {
  .footer .footerContent01 .contactBtn02 {
    width: 250px;
  }
}
@media (max-width: 575px) {
  .footer .footerContent01 .contactBtn02 {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    float: none;
  }
}
.footer .footerContent01 .contactBtn02 a {
  padding: 8px 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer .footerContent01 .contactBtn02 a {
    padding: 11px 0;
    border-radius: 23px;
  }
}
.footer .footerContent01 .contactBtn02 a:before {
  content: "";
  width: 13px;
  height: 10px;
  background: url("../images/ico_index01.png") no-repeat 0 0/contain;
  display: block;
}
.footer .footerContent01 .contactBtn02 a:after {
  display: none;
}
.footer .footerContent01 .contactBtn02 a:hover:before {
  background-image: url("../images/ico_index01_on.png");
  transition: 0.4s;
}
@media (max-width: 1250px) {
  .footer .footerContent01 .pdfBtn {
    width: 190px;
  }
}
@media (max-width: 1199px) {
  .footer .footerContent01 .pdfBtn {
    width: 250px;
  }
}
@media (max-width: 575px) {
  .footer .footerContent01 .pdfBtn {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    float: none;
  }
}
@media (max-width: 767px) {
  .footer .footerContent01 .pdfBtn a {
    padding: 11px 0;
    border-radius: 23px;
  }
}
.footer .footerContent01 .pdfBtn a:after {
  display: none;
}

.borderTop {
  border-top: 1px solid #d7d7d7;
}