@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

a {
  display: inline-block;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.container {
  width: 100%;
  max-width: 74rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-cta {
  width: 100%;
  max-width: 74rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .container-cta {
    padding-right: 0;
    padding-left: 0;
  }
}

.container-1 {
  width: 100%;
  max-width: 51rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-2 {
  width: 100%;
  max-width: 74rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .container-2 {
    padding-right: 0;
    padding-left: 0;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-md-show {
    display: block;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.l-footer {
  background-color: #d1bc71;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    font-size: 13px;
  }
}

.p-fv {
  max-width: 944px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 62px;
}
@media screen and (max-width: 767px) {
  .p-fv {
    margin-bottom: 50px;
  }
}
.p-fv__h1 {
  width: 100%;
  margin: 0;
}
.p-fv__img {
  width: 100%;
}

.p-worry__h2 {
  margin: 0;
  background-color: #efe5e1;
  height: 54px;
  width: 944px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 944px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 29px;
  font-weight: 400;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-worry__h2 {
    font-size: 23px;
    margin-bottom: 52px;
  }
}
.p-worry__img {
  margin-bottom: 52px;
  width: 100%;
}
.p-worry__ul {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 25px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-worry__ul {
    row-gap: 15px;
  }
}
.p-worry__check {
  width: 32px;
}
@media screen and (max-width: 767px) {
  .p-worry__check {
    width: 23px;
  }
}
.p-worry__li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
@media screen and (max-width: 767px) {
  .p-worry__li {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.p-worry__p {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-worry__p {
    font-size: 16px;
  }
}
.p-worry__cta {
  background-color: #d1bc71;
  padding: 15px;
  width: 100%;
  font-size: 23px;
  color: #000;
  text-decoration: none;
  text-align: center;
  line-height: 1.6;
  cursor: pointer;
}
.p-worry__cta:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-worry__cta span {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-worry__cta {
    font-size: 15px;
    line-height: 1.7;
  }
}

.p-about {
  padding-top: 80px;
  padding-bottom: 50px;
  text-align: center;
}
.p-about__h2 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 85px;
  position: relative;
}
.p-about__h2::after {
  content: "";
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 58px;
  height: 39px;
  width: 2px;
}
@media screen and (max-width: 767px) {
  .p-about__h2::after {
    top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__h2 {
    font-size: 20px;
  }
}
.p-about__box {
  background-color: #efe5e1;
  padding: 28px 30px 46px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    padding: 20px 20px 25px;
  }
}
.p-about__h3 {
  font-size: 28px;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .p-about__h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-about__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 9px;
}
.p-about__dl {
  height: 46px;
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .p-about__dl {
    height: initial;
    flex-direction: column;
  }
}
.p-about__dt {
  background-color: #d1bc71;
  color: #000;
  font-weight: 500;
  font-size: 23px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 109px;
}
@media screen and (max-width: 767px) {
  .p-about__dt {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 18px;
  }
}
.p-about__dd {
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about__dd {
    padding: 10px;
    text-align: left;
    line-height: 1.6;
  }
}
.p-about__sub {
  margin-bottom: 70px;
  font-size: 23px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__sub {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.p-about__arrow {
  width: 60px;
  margin: 0 auto;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-about__arrow {
    width: 45px;
    margin-bottom: 50px;
  }
}
.p-about__img {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-about__img {
    margin-bottom: 30px;
  }
}
.p-about__ul {
  row-gap: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-about__ul {
    row-gap: 20px;
  }
}
.p-about__li {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
@media screen and (max-width: 767px) {
  .p-about__li {
    -moz-column-gap: 8px;
         column-gap: 8px;
  }
}
.p-about__p {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about__p {
    font-size: 16px;
    text-align: left;
  }
}
.p-about__check {
  width: 36px;
}
@media screen and (max-width: 767px) {
  .p-about__check {
    width: 23px;
  }
}

.p-cta {
  text-align: center;
}
.p-cta--2 {
  margin-bottom: 43px;
}
@media screen and (max-width: 767px) {
  .p-cta--2 {
    margin-bottom: 0;
  }
}
.p-cta__wrap {
  width: 100%;
  padding: 16px 20px 18px;
  background-color: #67b8eb;
}
.p-cta__h3 {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-cta__h3 {
    font-size: 20px;
  }
}
.p-cta__h3 span {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-cta__h3 span {
    font-size: 18px;
  }
}
.p-cta__white {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-cta__white {
    font-size: 15px;
  }
}
.p-cta__button {
  margin: 0 auto;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  background-color: #d1bc71;
  width: 503px;
  border-radius: 5px;
  height: 47px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.p-cta__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-cta__button {
    font-size: 16px;
    width: 100%;
  }
}
.p-cta__kome {
  font-size: 13px;
  color: #fff;
}

.p-profile {
  padding-top: 70px;
  padding-bottom: 43px;
  text-align: center;
}
.p-profile__h2 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 85px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-profile__h2 {
    font-size: 20px;
  }
}
.p-profile__h2 span {
  font-size: 31px;
}
@media screen and (max-width: 767px) {
  .p-profile__h2 span {
    font-size: 23px;
  }
}
.p-profile__h2::after {
  content: "";
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 62px;
  height: 39px;
  width: 2px;
}
@media screen and (max-width: 767px) {
  .p-profile__h2::after {
    top: 50px;
  }
}
.p-profile__img {
  width: 100%;
  margin-bottom: 22px;
}
.p-profile__name-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
}
.p-profile__japanese {
  font-size: 29px;
  font-weight: 500;
}
.p-profile__english {
  font-size: 18px;
  font-weight: 500;
}
.p-profile__text {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 34px;
}
.p-profile__box {
  background-color: #efe5e1;
  padding: 26px 20px 45px;
}
@media screen and (max-width: 767px) {
  .p-profile__box {
    padding: 26px 10px 40px;
  }
}
.p-profile__inside-letter {
  font-size: 20px;
  max-width: 370px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: left;
  width: 100%;
}
.p-profile__inside-letter span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .p-profile__inside-letter span {
    font-size: 28px;
  }
}
.p-profile__inside-img {
  margin: 0 auto;
  max-width: 385px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}/*# sourceMappingURL=style.css.map */