@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  word-break: break-all;
  background: #fff5f5;
}
body.is_fixed {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

a:active {
  text-decoration: none;
  color: #000000;
}

a {
  text-decoration: none;
  color: #000000;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.e_enTxt {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

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

.section__title {
  font-size: 36px;
  font-weight: 800;
  font-family: "Shippori Mincho B1", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 6.4vw;
  }
}

.more__btn {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 20px 45px 20px 30px;
  line-height: 1;
  border: 4px solid #2c5bc4;
  border-radius: 6px;
  background-color: #fff;
  font-weight: bold;
  background-image: url(../img/arrow_right_bll.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 86%;
  transition: 0.3s ease;
  color: #2c5bc4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .more__btn {
    padding: 16px 40px 16px 25px;
  }
}

.backBtn {
  margin-top: 50px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 5.3333333333vw 2.6666666667vw;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 41.3333333333vw;
  }
}

/* スマホのみ表示 */
#hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 22px;
  cursor: pointer;
  z-index: 1003;
  position: relative;
  position: fixed;
  right: 30px;
  top: 25px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  #hamburger {
    right: 15px;
    top: 20px;
  }
}

#hamburger span {
  display: block;
  height: 3px;
  background: #2c5bc4;
  transition: 0.3s ease;
}

/* ナビ初期非表示 */
#navMenu {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 450px;
  height: 100vh;
  background: #2c5bc4;
  transition: 0.4s ease;
  z-index: 999;
  padding: 80px 40px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  #navMenu {
    width: 100%;
    padding: 21.3333333333vw 8vw;
  }
}

/* 開いた時 */
#navMenu.active {
  right: 0;
}

#hamburger span:nth-child(2) {
  width: 100%;
  margin-left: auto;
}

#hamburger span:nth-child(3) {
  width: 100%;
  margin-left: auto;
}

/* ×に変形 */
#hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(30deg);
  background: #fff;
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-30deg);
  background: #fff;
  width: 100%;
}

.hamburger__nav--main > li > a {
  padding: 20px 0;
  display: block;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
}

.footer {
  background: #2c5bc4;
  position: relative;
  box-sizing: border-box;
  padding: 120px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 26.6666666667vw 8vw;
  }
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__text {
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 5.8666666667vw;
    line-height: 1.3;
  }
}
.footer__main {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__main {
    margin-bottom: 9.3333333333vw;
  }
}
.footer__map {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer__map {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
  .footer__map iframe {
    height: 200px;
  }
}
.footer__contents {
  width: 50%;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .footer__contents {
    width: 100%;
    padding: 0;
  }
}
.footer__contents .item {
  margin-bottom: 30px;
}
.footer__contents .item p {
  color: #fff;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .footer__contents .item p {
    font-size: 4.2666666667vw;
  }
}
.footer__contents .item .title {
  background: #fff;
  width: -moz-max-content;
  width: max-content;
  padding: 5px;
  color: #2c5bc4;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .footer__contents .item .title {
    font-size: 4.2666666667vw;
  }
}
.footer__contents .item .tel {
  border-radius: 10px;
  background: #6c8dd6;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 25px;
  color: #fff;
  border-radius: 10px;
  border: 4px solid #fff;
  margin-top: 30px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__contents .item .tel {
    font-size: 5.8666666667vw;
    padding: 12px 20px;
  }
}
.footer__sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__sub {
    flex-direction: column;
  }
}
.footer__bottom {
  margin-top: 50px;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    margin-top: 0;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
}
.footer__logo {
  width: 363px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
    width: 66.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.fade-in {
  opacity: 0;
  /* 初期状態で透明 */
  /* 下に少しずらす */
  transform: translateY(100px);
  transition: all 0.5s ease;
  /* アニメーションの設定 */
}

.fade-in.fade-top {
  transform: translateY(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-bottom {
  transform: translateY(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-left {
  transform: translateX(-200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.fade-right {
  transform: translateX(200px);
  transition: opacity 1s 0.4s ease, transform 1.4s 0.4s ease;
}

.fade-in.show {
  opacity: 1;
  /* 表示 */
  transform: translateY(0);
  /* 元の位置 */
}/*# sourceMappingURL=style.css.map */