@charset "UTF-8";
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: none;
  font-style: normal;
  text-align: left;
  zoom: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

table {
  border-collapse: collapse;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 16px;
}

textarea {
  resize: none;
  border-radius: 0;
}

th,
td {
  border-collapse: collapse;
}

table th,
table td {
  white-space: nowrap;
}

ul,
ol {
  list-style-type: none;
}

img {
  vertical-align: text-bottom;
  vertical-align: -webkit-baseline-middle;
  max-width: 100%;
  height: auto;
  width: auto;
}

body {
  color: #292828;
  font-size: 1.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 2;
  letter-spacing: 0.1em;
}

a {
  text-decoration: none;
  color: #000;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}

.header {
  position: absolute;
  z-index: 100;
  top: 2rem;
  left: 0;
  width: 100%;
}
.header_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: unset;
          box-sizing: unset;
  padding-left: 5%;
  padding-right: 5%;
}
.header_logo {
  max-width: 500px;
}
.header_logo h1 {
  width: 20rem;
}
.header .global_nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .header .global_nav {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}
.header .global_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 48rem;
}
@media screen and (max-width: 768px) {
  .header .global_nav_list {
    width: 100%;
  }
}
.header .global_nav-item {
  position: relative;
  width: 50%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.header .global_nav-item .navlink {
  padding: 2rem;
  padding-right: 4.8rem;
  line-height: 1.15;
  font-size: 1.8rem;
  display: block;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
}
.header .global_nav-item .navlink::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  margin-left: 1rem;
  background: url(../img/icon/arrow/icon_arrow.svg) no-repeat center/100%;
}
.header .global_nav-item .reservation {
  background-color: #E2566E;
  color: #fff;
}
.header .global_nav-item .reservation:hover {
  background-color: #dc8a98;
}
.header .global_nav-item .official {
  background-color: #215D9F;
  color: #fff;
}
.header .global_nav-item .official:hover {
  background-color: #459abe;
}

.pagetop_btn {
  position: fixed;
  z-index: 999;
  bottom: 6rem;
  right: 4rem;
}
@media screen and (max-width: 768px) {
  .pagetop_btn {
    bottom: 12rem;
    right: 2rem;
  }
}
.pagetop_btn a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #dba0aa;
  border: solid 1px #E2566E;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
}
.pagetop_btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-color: #E2566E;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0, 0);
          transform: translate(-50%, -50%) scale(0, 0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}
.pagetop_btn a:hover:after {
  -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
          transform: translate(-50%, -50%) scale(0.5, 0.5);
}
.pagetop_btn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #fff;
  border-width: 1px 0 0 1px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transition: border-color ease 0.1s;
  transition: border-color ease 0.1s;
}
.pagetop_btn a:hover:before {
  border-color: #fff;
}

.main {
  position: relative;
}

.section {
  padding: 4rem 0;
}

.mainvisual {
  position: relative;
}
.mainvisual_img {
  width: 100%;
  height: 100%;
}
.mainvisual_img img {
  width: 100%;
  height: 100%;
}

.bg_onetime_popup {
  position: fixed;
  bottom: 0;
  left: -210px;
  z-index: 9999;
  width: 250px;
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .bg_onetime_popup {
    left: -122px;
    width: 150px;
    bottom: 6rem;
  }
}

.open_popup .bg_onetime_popup {
  left: 0px;
}

.onetime_popup {
  color: #fff;
  background-color: #E2566E;
}

.onetime_popup_title {
  padding-right: 40px;
  position: relative;
  margin: 0px;
  background-color: #E2566E;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .onetime_popup_title {
    padding-right: 28px;
  }
}

.onetime_popup_title_img {
  width: 100%;
}
.onetime_popup_title_img img {
  width: 100%;
  height: 100%;
}

.onetime_popup_title_text {
  display: block;
  position: absolute;
  top: 35%;
  right: 4%;
  font-size: 1.2rem;
  font-weight: 600;
  height: 100%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.5rem;
  width: 18px;
}

.hamburger {
  display: block;
  position: absolute;
  top: 12%;
  right: 14%;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hamburger {
    right: 18%;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  left: 6px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    width: 16px;
    height: 1.6px;
  }
}

.hamburger span:nth-child(1) {
  top: 6px;
}

.hamburger span:nth-child(2) {
  top: 12px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

/* ナビ開いてる時のボタン */
.open_popup .hamburger span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.open_popup .hamburger span:nth-child(2),
.open_popup .hamburger span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.onetime_popup_content {
  padding: 1rem;
}
.onetime_popup_content p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.onetime_popup_content .snsnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2rem;
}
.onetime_popup_content .snsnav-item {
  width: 2rem;
  margin: 0 2rem;
}
.onetime_popup_content .snsnav-item img {
  width: 100%;
  height: 100%;
}

.job_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.job_content {
  margin: 0 0 0 auto;
  max-width: 1200px;
  padding-top: 20px;
}
.job .shortcourse h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.7em 0.5em 0;
  color: #215D9F;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.job .shortcourse h3:before {
  display: inline-block;
  width: 5px;
  height: 2em;
  margin-right: 0.5em;
  background-color: #215D9F;
  content: "";
}

.banner_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding-bottom: 4rem;
}
.banner_wrapper img {
  width: 100%;
  height: auto;
}

.section_header p {
  font-weight: 800;
  font-size: 3.6rem;
  letter-spacing: 0.2em;
  line-height: 1.111111111;
  color: #E2566E;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.section_header h2 {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  font-weight: 500;
}

.recom_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.recom_content {
  margin: 0 0 0 auto;
  max-width: 1200px;
  padding-top: 4rem;
}
.recom_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recom_list-item {
  width: calc(33.3333333333% - 1.6rem);
}
.recom_list-item figure {
  width: 100%;
  height: auto;
}
.recom_list-item figure img {
  width: 100%;
  height: auto;
}
.recom_list-item figure figcaption {
  padding-top: 1.6rem;
  text-align: center;
  font-size: 1.4rem;
}

.introduction_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.introduction_content {
  margin: 0 0 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .introduction_content {
    display: block;
  }
}
.introduction_content .teacher {
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .introduction_content .teacher {
    margin-right: 0;
  }
}
.introduction_content .trainee {
  margin-left: 0.8rem;
}
@media screen and (max-width: 768px) {
  .introduction_content .trainee {
    margin-top: 2rem;
    margin-left: 0;
  }
}
.introduction_content .teacher,
.introduction_content .trainee {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .introduction_content .teacher,
  .introduction_content .trainee {
    width: 100%;
  }
}
.introduction_content .teacher_header h3,
.introduction_content .trainee_header h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.7em 0.5em 0;
  color: #215D9F;
  font-size: 1.6rem;
  font-weight: 800;
}
.introduction_content .teacher_header h3:before,
.introduction_content .trainee_header h3:before {
  display: inline-block;
  width: 5px;
  height: 2em;
  margin-right: 0.5em;
  background-color: #215D9F;
  content: "";
}
.introduction_content .teacher_header .title,
.introduction_content .trainee_header .title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #D83E3B;
  text-align: center;
}
.introduction_content .teacher_content,
.introduction_content .trainee_content {
  padding: 0.5em 0.7em;
}
.introduction_content .teacher_content-img,
.introduction_content .trainee_content-img {
  max-width: 250px;
  margin: 0 auto;
}
.introduction_content .teacher_content-img img,
.introduction_content .trainee_content-img img {
  width: 100%;
}
.introduction_content .teacher_content-img figcaption,
.introduction_content .trainee_content-img figcaption {
  padding: 0.5em 0.7em;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.introduction_content .teacher_content-message,
.introduction_content .trainee_content-message {
  padding: 0.5em 0.7em;
}
.introduction_content .teacher_content-message .comment,
.introduction_content .trainee_content-message .comment {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.introduction_content .voice_link {
  padding-top: 1.2rem;
  text-align: right;
}
.introduction_content .voice_link a {
  position: relative;
}
.introduction_content .voice_link a:hover::before {
  width: 100%;
}
.introduction_content .voice_link a::before {
  position: absolute;
  top: 1.8rem;
  left: 0;
  content: "";
  width: 0px;
  height: 1px;
  background-color: #292828;
}

.course_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.course_content {
  margin: 0 0 0 auto;
  max-width: 1200px;
}
.course_content:last-child p {
  padding: 0;
}
.course_content p {
  padding-bottom: 2rem;
}
.course h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.7em 0.5em 0;
  color: #215D9F;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.course h3:before {
  display: inline-block;
  width: 5px;
  height: 2em;
  margin-right: 0.5em;
  background-color: #215D9F;
  content: "";
}
.course .features {
  background-color: #E0E0E0;
  padding: 2em 2em;
}
.course .features_list-item {
  padding-left: 1.4em;
  position: relative;
}
.course .features_list-item:before {
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  background: #215D9F;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.course .shortcourse_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 1.8rem;
}
.course .shortcourse_content .text_area {
  width: 65%;
}
.course .shortcourse_content .img_area {
  width: 35%;
  max-height: 150px;
}
.course .shortcourse_content .item {
  font-size: 1.6rem;
  font-weight: 700;
  color: #215D9F;
}
.course .shortcourse_contentlist-item {
  color: #DC000C;
}
.course .shortcourse_contentlist-item span {
  display: inline-block;
  color: #292828;
  padding-left: 1rem;
  position: relative;
}
.course .shortcourse_contentlist-item span::before {
  content: "※";
  float: left;
  margin-left: -1rem;
}
.course .shortcourse_contentlist-kome {
  margin: 0;
  padding: 0;
  padding-left: 1.2em;
  list-style: none;
  position: relative;
}
.course .shortcourse_contentlist-kome::before {
  content: "※";
  margin-left: -1.2em;
}
.course .fee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.course .fee .tuitionfee {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.course .fee .tuitionfee_item {
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 0.4rem;
}
.course .fee .tuitionfee .price {
  padding-left: 1rem;
  font-size: 3.4rem;
  font-weight: 600;
  color: #DC0041;
  background-color: #E9E5D7;
  padding: 0.2rem 1rem;
}
.course .fee .tuitionfee .price span {
  color: #292828;
  font-size: 1.6rem;
  padding-left: 0.4rem;
}
.course .fee .supplement {
  position: relative;
  margin: 12px;
  padding: 0.5rem 0.7rem;
  border-radius: 10px;
  background-color: #CDE7DA;
}
.course .fee .supplement::before, .course .fee .supplement::after {
  position: absolute;
  top: 10px;
  left: -14px;
  width: 15px;
  height: 30px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: "";
}
.course .fee .supplement::before {
  background-color: #CDE7DA;
}
.course .fee .supplement .certification {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #215D9F;
}
.course .fee .supplement .kome {
  text-align: center;
  margin: 0;
  padding: 0;
  padding-left: 1.2em;
  list-style: none;
  position: relative;
}
.course .fee .supplement .kome::before {
  content: "※";
  margin-left: -1.2em;
}

.question_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.question_content {
  margin: 0 0 0 auto;
  max-width: 1200px;
  padding-top: 4rem;
}
.question .option {
  position: relative;
  margin-bottom: 1em;
}
.question .toggle {
  display: none;
}
.question .toggle:checked + .title + .content {
  max-height: 500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.question .toggle:checked + .title::before {
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
          transform: translateY(-50%) rotate(90deg) !important;
}
.question .title,
.question .content {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.question .title {
  border: solid 1px #215D9F;
  display: block;
  color: #333;
  font-size: 1.4rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 40px;
}
.question .title::after, .question .title::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 1px;
  height: 1em;
  background-color: #215D9F;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.question .title::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.question .title .tab {
  padding: 1.5em;
  color: #fff;
  background-color: #215D9F;
  margin-right: 1em;
}
.question .title .text {
  padding: 4px 0;
  line-height: 1.2;
}
.question .content {
  max-height: 0;
  overflow: hidden;
}
.question .content p {
  margin: 0;
  padding: 0.5em 3em 1em;
  font-size: 1.4rem;
  line-height: 1.5;
}

.access_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.access_content {
  margin: 0 0 0 auto;
  max-width: 1200px;
}
.access_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .access_list {
    display: block;
  }
}
.access_list-item {
  width: calc(50% - 1.6rem);
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .access_list-item {
    width: 100%;
  }
}
.access_list-item .school_name {
  padding-bottom: 16px;
}
.access_list-item .school_name h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 0.7em 0.5em 0;
  color: #215D9F;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.access_list-item .school_name h3:before {
  display: inline-block;
  width: 5px;
  height: 2em;
  margin-right: 0.5em;
  background-color: #215D9F;
  content: "";
}
.access_list-item figure {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}
.access_list-item figure:hover img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.access_list-item figure img {
  width: 100%;
  height: auto;
}
.access_list-item .school_info {
  padding: 0.5em 0.7em;
}

.contact {
  background-color: #dba0aa;
  width: 100%;
  position: relative;
}
.contact_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .section_header h2 {
  color: #d7d7d7;
}
.contact_msg {
  color: #292828;
  font-weight: bold;
  line-height: 1.46;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
}
.contact_btn {
  font-size: 2rem;
  padding: 1.4rem 8.5rem 1.4rem 5.5rem;
  position: relative;
  display: inline-block;
  background-color: #E2566E;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.02em;
  border-radius: 4rem;
  border: 0.2rem solid #fff;
  -webkit-box-shadow: 0 0.4rem 0 #E2566E;
          box-shadow: 0 0.4rem 0 #E2566E;
  -webkit-transition: -webkit-transform ease 2s;
  transition: -webkit-transform ease 2s;
  transition: transform ease 2s;
  transition: transform ease 2s, -webkit-transform ease 2s;
  cursor: pointer;
}
.contact_btn:hover {
  background-color: #dc8a98;
  -webkit-transition: -webkit-transform ease 2s;
  transition: -webkit-transform ease 2s;
  transition: transform ease 2s;
  transition: transform ease 2s, -webkit-transform ease 2s;
}
.contact_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/icon/arrow/icon_arrow.svg) no-repeat 50%/100%;
  right: 4.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.footer {
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-bottom: 6rem;
  }
}
.footer_wrapper {
  background-color: #215D9F;
}
.footer_content {
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 1200px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  -webkit-box-sizing: unset;
          box-sizing: unset;
  padding-left: 5%;
  padding-right: 5%;
}
.footer_logo {
  width: 10rem;
}
.footer .snsnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.footer .snsnav-item {
  width: 2rem;
  height: 2rem;
  margin: 0 1rem;
}
.footer .copyright {
  color: #7d7d7d;
  letter-spacing: 0.04em;
  text-align: center;
  background-color: #fff;
  padding: 1.8rem 0;
  font-size: 1.4rem;
}

.flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flow_list li {
  position: relative;
  width: calc(20% - 20px);
  border: 1px solid #707070;
  text-align: center;
  padding: 20px 5px;
  line-height: 150%;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flow_list li::after {
  position: absolute;
  top: 45%;
  right: -15px;
  content: " ";
  width: 15px;
  height: 15px;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .flow_list li::after {
    right: inherit;
    left: 120%;
  }
}
.flow_list li:last-child::after {
  border: none;
}
@media screen and (max-width: 768px) {
  .flow_list li {
    width: 12%;
    border: 1px solid #707070;
    text-align: center;
    padding: 15px 0;
    display: block;
  }
}
.flow_list li p {
  text-align: center;
  display: block;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .flow_list li p {
    display: inline-block;
    text-align: left;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .flow_list li p .pc_only {
    display: none !important;
  }
}

.content {
  margin-top: 10px;
}
.content_container {
  max-width: 1200px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-left: 5%;
  padding-right: 5%;
}
.content_sec {
  padding-bottom: 2rem;
}
.content h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.7em 1em 0;
  color: #215D9F;
  font-size: 1.6rem;
  font-weight: 800;
}
.content h3:before {
  display: inline-block;
  width: 5px;
  height: 2em;
  margin-right: 0.5em;
  background-color: #215D9F;
  content: "";
}

.accordion_title {
  background-color: #fff4f4;
  border: 1px solid transparent;
  color: #292828;
  font-size: 1.25em;
  padding: 0.625em 0.625em 0.625em 1em;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.accordion_title::before,
.accordion_title::after {
  content: "";
  display: block;
  background-color: #292828;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  right: 25px;
}

.accordion_title::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion_title:hover,
.accordion_title:active,
.accordion_title.is-active {
  background-color: #dba0aa;
}
.accordion_title:hover .section_header p,
.accordion_title:active .section_header p,
.accordion_title.is-active .section_header p {
  color: #fff;
}

.accordion_title.is-active::before {
  opacity: 0;
}

.accordion_title.is-active::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.accordion_content {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0 1.5em;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.accordion_content.is-open {
  border: 1px solid #dba0aa;
  padding: 1.5em 2em;
  line-height: normal;
  /* numberに書き換える*/
  height: auto;
  opacity: 1;
}

/* モーダルウィンドウ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow: scroll;
  /* スクロール設定 */
}

/* モーダルコンテンツ */
.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  min-height: 600px;
  max-width: 800px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
}

/* 閉じるボタン */
.close {
  position: absolute;
  top: 0;
  right: 17px;
  float: right;
  font-size: 4rem;
  font-weight: bold;
  cursor: pointer;
}

.age {
  width: 90%;
}

.Form {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 375px) {
  .Form-Item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label {
    max-width: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 375px) {
  .Form-Item-Label {
    padding-bottom: 8px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #dc8a98;
  color: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 1.4rem;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .Form-Item-Input {
    margin-left: 0;
    height: 40px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 1.4rem;
  }
}

.Form-Item-radio {
  width: 100%;
  max-width: 410px;
}
.Form-Item-radio label {
  padding-right: 1em;
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .Form-Item-Textarea {
    margin-left: 0;
    height: 200px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 1.4rem;
  }
}

.Form-Btn {
  border: none;
  border-radius: 4rem;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #E2566E;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

.form-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
}

input[type=radio] {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  position: relative;
}
input[type=radio]:first-child {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  input[type=radio]:first-child {
    margin: 3px 3px 0px 5px;
  }
}

input[type=radio]::before,
input[type=radio]::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

input[type=radio]::before {
  background-color: #fff;
  border: 1px solid #c2c1c1;
  height: 10px;
  width: 10px;
  left: 0px;
}

input[type=radio]::after {
  background-color: #E2566E;
  opacity: 0;
  height: 8px;
  width: 8px;
  left: 2px;
}

input[type=radio]:checked::after {
  opacity: 1;
}

.btn {
  text-align: center;
  margin: 0 auto;
  border: solid 1px #ddd;
  border-radius: 10px;
  width: 80%;
  max-width: 430px;
}
.btn:hover .btn-c {
  color: #ddd;
  background-color: #dc8a98;
}
.btn .btn-c {
  font-size: 1.4rem;
  text-align: center;
  border: solid 1px #dc8a98;
  width: 100%;
  margin: 0 auto;
  max-width: 430px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  padding: 2rem 8rem;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.complete {
  background-color: rgba(219, 160, 170, 0.9294117647);
}
.complete_wrapper {
  height: 80vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}/*# sourceMappingURL=index.css.map */