@charset "utf-8";

/* sction title */
.section-title {
    display: flex;
    align-items: baseline;
    margin-bottom: 70px;
}

.section-title-en-ini {
    font-size: 10em;
    color: #D61C4E;
    font-family: 'title-font';
    letter-spacing: .05em;
}

.section-title-en {
    font-family: 'title-font';
    font-size: 5em;
    letter-spacing: .1em;
}

.section-title-ja {
    margin-left: 20px;
    font-size: 1.5em;
}

@font-face {
  font-family: 'title-font';
  src: url('../font/title-font.ttf');
}

@media (max-width: 767px) {
  .section-title {
      display: block;
  }
  .section-title-en-ini {
    font-size: 7rem;
  }
  .section-title-en {
    font-size: 4rem;
  }
  .section-title-ja {
    margin-left: 0;
    font-size: 1.2rem;
  }
}

/* all */
section .section-inner-area {
    width: 92%;
    margin: auto;
}

body {
    font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    color: #16213E;
    font-weight: bold;
    background-color: #eee;
    margin: 0 auto;
    width: 100%;
    max-width: 1536px;
}

ul {
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #16213E;
}

dd {
    margin: 0;
}

/* logo */
.entry-title {
    text-align: center;
}

.entry-title h2 {
    font-size: 8em;
    margin: 100px 0 20px 0;
}

@media screen and (max-width:570px) {
    .entry-title h2 {
        font-size: 6rem;
        margin: 70px 0 20px 0;
    }
}

/* entry form */
#entry-area {
    margin-top: 100px;
}

#entry-area .form-list {
    width: 60%;
    margin: 0 auto;
}

@media screen and (max-width:1020px) {
    #entry-area .form-list {
        width: 80%;
    }
}

@media screen and (max-width:640px) {
    #entry-area .form-list {
        width: 100%;
    }
}

#entry-area .form-list textarea{
    width:100%;
    background:#fff;
    padding: 10px;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}

#entry-area .form-list input[type='text'], input[type='email'], input[type='tel'] {
    height:50px;
    font-weight: normal;
}

#entry-area .form-list li {
    margin: 10px 0;
}

#entry-area .form-list dl{
    padding:0 0 30px 0;
}

#entry-area .form-list textarea {
    height:200px;
    resize: none;
}

#entry-area input , button , textarea , select {
    margin:0;
    padding:0;
    border:none;
    outline:none;
    background:none;
    font-size: 16px;
}

#entry-area .form-list input[type='text'], 
#entry-area .form-list input[type='email'], 
#entry-area .form-list input[type='tel'], 
#entry-area .form-list textarea{
    width:92%;
    background:#fff;
    padding: 10px;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}

#entry-area .require {
    padding: 2px;
    margin-left: 6px;
    color: #fff;
    font-size: .8rem;
    background-color: #cf2e2e;
}

#entry-area .optional {
    padding: 2px;
    margin-left: 6px;
    color: #fff;
    font-size: .8rem;
    background-color: #1F4690;
}

#entry-area .scroll_box {
    font-size: 14px;
    padding: 20px 100px;
    height: 180px;
    overflow: scroll;
    border: #000 2px solid;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

@media screen and (max-width:570px) {
    #entry-area .scroll_box {
        padding: 20px;
    }
}

#entry-area .scroll_box::-webkit-scrollbar {
  display:none;
}

.entry-form-btn {
    text-align: center;
    margin: 60px 0;
}

.select-box {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.select-box::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #16213E;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.select-box select {
    font-weight: normal;
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: none;
    background-color: #fff;
    color: #16213E;
    font-size: 1em;
    cursor: pointer;
}

.select-box.small select {
    min-width: 90px;
}

.checkbox {
    padding: 30px 0 0 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.checkboxInput {
  margin: 0;
  width: 0;
  opacity: 0;
}

.checkbox:hover > .cbxInputBefore{
  transform: scale(1.1);
}
.checkboxInput:focus + .cbxInputBefore{
  transform: scale(1.1);
}
.checkboxInput:checked + .cbxInputBefore {
  background: #515151;
}
.checkboxInput:checked + .cbxInputBefore::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 4px;
    border-radius: 2px;
    transform: translate(-4px, 1px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}
.checkboxInput:checked + .cbxInputBefore::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 4px;
    border-radius: 2px;
    transform: translate(-4px, 1px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}
.cbxInputBefore {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: solid 2px transparent;
    background: rgba(0, 0, 0, .15);
    transition: all .15s linear;
}
.checkboxLabel {
    margin-left: 12px;
    display: block;
    max-width: 88%;
}

#birth,#seminars {
    visibility:hidden;
    height: 0 !important;
}

.complate {
    margin-bottom: 100px;
}

/* tab */
.tab-area .area li a{
    transition: all .3s;
}

.tab-area{
    background:#fff;
    border-radius: 10px;
    padding:20px;
}

.tab{
    display: flex;
    flex-wrap: wrap;
}

.tab li a:hover {
    color: #777;
}

.tab li{
    white-space: nowrap;
    text-align: center;
}

.tab li .seminars-m {
    padding: 10px 20px;
    font-size: 1.3rem;
    display: block;
}

.tab li.active .seminars-m {
    color: white;
    background-color: #1F4690;
    border-radius: 50px;
}

.area {
    display: none;
    opacity: 0;
    background: #fff;
}

.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* footer */
footer {
    padding: 90px 0 20px 0;
    background-color: #16213E;
    color: #fff;
    font-weight: normal;
    text-align: center;
}

footer a {
    color: #fff;
}

footer p {
    padding: 2px 0;
}

footer #footer-logo {
    width: 13vw;
    margin-bottom: 50px;
}

@media screen and (max-width:570px) {
    footer #footer-logo {
        width: 25vw;
    }
}

#copyright {
    display: block;
    margin-top: 60px;
}

.white-btn a {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  width: 20%;
  text-align: center;
  margin: 10px 0;
  padding: 20px 50px;
  transition: .5s ;
}

.white-btn a:hover {
  background: #fff;
  color: #16213E;
}

@media (max-width: 640px) {
  .white-btn a {
    width: 50%;
  }
}

.btn-pink {
  text-align: center;
  margin-bottom: 50px;
}

.btn-pink button {
  color: #fff;
  background: #D61C4E;
  padding: 20px 70px;
  border-radius: 100px;
  font-size: 1.1rem;
  transition: transform .5s ease;
  cursor: pointer;
}

.btn-pink button:hover {
    transform: scale(1.1);
    opacity: .8;
}

.is-error {
    color: #cf2e2e;
    font-size: .9rem;
}

p:has(.is-error){
    margin: 2px 0 0 0;
}

#hidden_iframe {
    display: none;
}

textarea {
    font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    height:200px;
    resize: none;
}

.calendar {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.calendar th,
.calendar td {
  border: 1px solid #ccc;
  padding: 6px;
  vertical-align: top;
}

.calendar td{
  height: 60px;
}

.calendar th {
  padding: 6px 10px;
  text-align: center;
}

.calendar .sun {
  color: #ff9aa0;
  background-color: #FFF3F0;
}
.calendar .sat {
  color: #a3c6ee;
  background-color: #F4F8F9;
}
.calendar .mute {
  color: #aaa;
  font-weight: normal;
}

.calendar .time {
    color:#07c;
    text-align: center;
    font-weight: normal;
}

.calendar .time img {
    width: 100%;
}

.calendar td.cal-selected {
    background-color: #e9fdee;
    border: 2px solid #00ae36;
    color: #00ae36;
}

.calendar td.cal-selected .time {
    color: #00ae36;
    font-weight: bold;
}

.calendar .selectable {
    cursor: pointer;
}

.calendar .meeting {
  background-color: #fdf9e1;
  border: 1px solid #c88e00;
  color: #c88e00;
  font-weight: bold;
  line-height: 1.5;
}

.calendar .remote {
  background-color: #e9f5fb;
  border: 1px solid #0087d3;
  color: #0087d3;
  font-weight: bold;
  line-height: 1.5;
}

.calendar .full {
  color: #ff9aa0;
  font-weight: bold;
}

@media (max-width: 760px) {
  .calendar th,
  .calendar td {
    font-size: 12px;
  }
}

@media screen and (max-width:640px) {
    .calendar {
        table-layout: auto;
    }
}