@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 834px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  br {
    display: none;
  }
}
.is-br {
  display: none;
}

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

@media screen and (max-width: 767px) {
  .sma {
    display: block;
  }
  h2 span {
    display: inline-block;
  }
}
html,
body {
  overflow-x: hidden;
}

body {
  font-size: 16px;
  color: #343434;
  font-family: serif;
  line-height: 1.7;
  background: #fff;
  letter-spacing: 1px;
  display: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    padding-bottom: 47.8px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: serif;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

.section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.section_title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .section_title {
    margin-bottom: 30px;
  }
}
.section_title .en {
  font-size: 40px;
  font-family: "EB Garamond", serif;
  color: #343434;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .section_title .en {
    font-size: 13px;
  }
}
.section_title .ja {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .section_title .ja {
    font-size: 19px;
  }
}
.section_title .ja.green {
  color: #343434;
}
@media screen and (max-width: 767px) {
  .section_title p {
    text-align: left;
    /* 文章を左揃えにする */
  }
}

.section_btn {
  text-align: center;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .section_btn .text {
    font-size: 19px;
  }
}
.section_btn a {
  display: inline-block;
  padding: 0 75px;
  margin: 0 auto;
  border: 1px solid #343434;
  color: #343434;
  height: 56px;
  line-height: 56px;
  position: relative;
  transition: 500ms;
}
@media screen and (max-width: 767px) {
  .section_btn a {
    height: 40px;
    line-height: 40px;
    padding: 0 35px;
  }
}
.section_btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 60px;
  height: 1px;
  background: #343434;
  left: -30px;
  transition: 500ms;
}
@media screen and (max-width: 767px) {
  .section_btn a::after {
    width: 30px;
    left: -15px;
  }
}
.section_btn a::before {
  position: absolute;
  content: "";
  background: url(../img/ios-arrow-right-green.png) no-repeat center center/cover;
  right: 20px;
  top: 55%;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
}
@media screen and (max-width: 767px) {
  .section_btn a::before {
    right: 10px;
  }
}
.section_btn a:hover {
  transition: 500ms;
  opacity: 1;
  background: #343434 !important;
  color: #fff;
}
.section_btn a:hover::before {
  background: url(../img/ios-arrow-right-white.png) no-repeat center center/cover;
}
.section_btn a:hover::after {
  transition: 500ms;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-font-smoothing: antialiased;
  left: 0px;
  opacity: 0;
}
.section_btn a.white {
  background: #fff;
}
.section_btn a.white:hover {
  transition: 500ms;
  opacity: 1;
  background: #343434 !important;
  color: #fff;
}
.section_btn a.white:hover::after {
  transition: 500ms;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-font-smoothing: antialiased;
  left: 0px;
  opacity: 0;
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
select,
textarea {
  box-shadow: none;
  border: none;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
}

/*==================================
      common(一般) - 全体に共通するスタイル ここまで↑
      =================================*/
.header {
  padding: 7px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 400;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0;
  }
}

.header_nav {
  margin-left: auto;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  max-width: initial !important;
  height: 69px;
}
.header_inner .headerLogo {
  max-width: 200px;
  margin-right: 20px;
  z-index: 300;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header_inner .headerLogo {
    max-width: 156px;
    width: 85%;
    margin-top: 6px;
  }
}
.header_inner .logo img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .header_inner .logo img {
    max-width: 50%;
  }
}
.header_inner .footer_logo img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .header_inner .footer_logo img .footer_logo {
    display: none;
  }
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .header_inner .footer_logo img .footer_logo {
    width: 100%;
  }
}
.header_inner .header_nav ul {
  display: flex;
  align-items: center;
}
.header_inner .header_nav ul li {
  margin-right: 60px;
  padding: 0 20px;
}
.header_inner .header_nav ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header_inner .header_nav ul li:last-child {
  margin-right: 0px;
}
.header_inner .header_nav ul li:nth-child(4) {
  margin-right: 10px;
}
.header_inner .header_nav ul li a {
  font-size: 15px;
  font-weight: 400;
  color: #343434;
  white-space: nowrap;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .header_inner .header_nav ul li {
    margin-left: 20px;
  }
}
.header_inner .header_sns {
  margin-left: 10px;
}
.header_inner .header_sns ul {
  display: flex;
  align-items: center;
}
.header_inner .header_sns ul li {
  width: 22px;
  margin-right: 10px;
}
.header_inner .header_sns ul li:last-child {
  margin-right: 0;
}
.header_inner .header_sns ul li img {
  vertical-align: sub;
}

.drawer-icon {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 1500;
  transition: transform 0.5s ease 0s;
}
@media screen and (min-width: 834px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  transition: 0.3s;
  top: 8px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  transition: 0.3s;
  top: 8px;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .drawer-icon-bars {
    margin-top: 10px;
  }
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2.5px;
  background: #343434;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  z-index: 250;
  display: none;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}
.drawer-content .foodImg1 {
  max-width: 80px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.drawer-content .foodImg2 {
  max-width: 80px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.drawer-icon-nav {
  text-align: center;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
}
.drawer-icon-nav ul {
  margin-top: 30px;
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #343434;
  font-size: 16px;
}

.drawer_sns {
  margin-top: 30px;
}
.drawer_sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer_sns ul li {
  width: 35px;
  margin-right: 20px;
}
.drawer_sns ul li:last-child {
  margin-right: 0;
}

.top {
  position: relative;
}
.top .contents {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  letter-spacing: 2px;
  white-space: nowrap;
  text-shadow: -1px -1px 2px #fff;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top .contents {
    text-shadow: 0px 1px 2px #fff;
    text-shadow: -1px -1px 2px #fff;
    top: 80px;
    transform: initial;
    right: 5%;
  }
}
.top .contents .main {
  font-size: 38px;
  letter-spacing: 7px;
}
@media screen and (max-width: 767px) {
  .top .contents .main {
    font-size: 24px;
  }
}

/* 追加サイドボタン */
.side-banner {
  position: fixed;
  right: 0;
  top: 35%;
  z-index: 40;
}
.side-banner .mail_icon {
  margin-bottom: 10px;
}
.side-banner a {
  writing-mode: vertical-rl;
  color: #ffffff;
  background: #0097b2;
  display: flex;
  padding: 15px 15px;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .side-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    top: initial;
  }
  .side-banner .mail_icon {
    margin-bottom: 0px;
    margin-right: 10px;
  }
  .side-banner a {
    align-items: center;
    justify-content: center;
    writing-mode: unset;
    padding: 12px;
  }
}
/* 追加サイドボタンここまで */
.topNews .topNews-inner {
  display: flex;
}
.topNews .ja {
  display: inline-block;
  border: solid 1px #454545;
  font-size: 0.8rem;
  white-space: nowrap;
  padding: 10px;
}
.topNews ul {
  padding: 30px 50px;
  max-width: 930px;
  width: 100%;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .topNews ul {
    margin-left: 13px;
    padding: 10px 20px;
  }
}
.topNews ul li a {
  color: #343434;
  padding: 15px 0;
  display: flex;
  border-bottom: 1px dashed #E0D9D3;
}
@media screen and (max-width: 767px) {
  .topNews ul li a {
    display: block;
  }
}
.topNews ul li a .time {
  font-size: 16px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .topNews ul li a .time {
    font-size: 13px;
  }
}
.topNews ul li a .title {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .topNews ul li a .title {
    font-size: 14px;
    line-height: 1.4;
  }
}
.topNews ul li:last-child a {
  border-bottom: none;
}

.topMessage {
  position: relative;
  background-image: url(../img/message_bg.jpg);
}
.topMessage .message_line {
  max-width: 710px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 767px) {
  .topMessage .message_line {
    margin: 0 auto 30px;
  }
}
.topMessage .en {
  font-size: 40px;
}
@media screen and (max-width: 767px) {
  .topMessage .en {
    font-size: 28px;
  }
}
.topMessage .flex {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .topMessage .flex {
    display: block;
  }
}
.topMessage .flex .img {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .topMessage .flex .img {
    width: 70%;
    margin: 0 auto 10px;
  }
}
.topMessage .flex .contents {
  line-height: 2;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 14px;
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .topMessage .flex .contents {
    width: 100%;
    padding: 50px;
    line-height: 3;
  }
}
.topMessage .bottom_text {
  font-size: 23px;
  text-align: center;
  margin-top: 80px;
  position: relative;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .topMessage .bottom_text {
    margin-top: 30px;
    font-size: 16px;
  }
}
.topMessage .foodImg1 {
  position: absolute;
  max-width: 300px;
  top: -40px;
  right: -30px;
}
@media screen and (max-width: 767px) {
  .topMessage .foodImg1 {
    max-width: 120px;
    top: -20px;
  }
}
.topMessage .foodImg2 {
  position: absolute;
  max-width: 230px;
  bottom: -150px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .topMessage .foodImg2 {
    max-width: 100px;
    bottom: -50px;
  }
}

.topLesson {
  position: relative;
  background-image: url(../img/topLesson_bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  background-size: 100% auto;
}
.topLesson ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .topLesson ul {
    display: block;
    margin-bottom: 40px;
  }
}
.topLesson ul .bordered {
  width: 31%;
  border: 1px solid #d2d2d2;
  /* 枠線のスタイルを指定 */
  padding: 25px;
  /* テキストと枠の間のスペースを指定 */
  margin-bottom: 20px;
  /* 各項目の下に余白を設定 */
  padding-bottom: 60px;
  border-radius: 10px;
  /* 角を丸くする半径の値を指定 */
  box-shadow: 1px 1px 3px rgba(127, 127, 127, 0.3);
  /* 影の設定 */
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .topLesson ul .bordered {
    width: 100%;
    margin-bottom: 35px;
  }
}
.topLesson ul .bordered .img {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .topLesson ul .bordered .img {
    margin: 0 auto 10px;
  }
}
.topLesson ul .bordered .title {
  color: #343434;
  display: flex;
  align-items: baseline;
  display: block;
}
.topLesson ul .bordered .title span {
  font-family: "adorn-smooth-pomander", sans-serif;
  font-size: 60px;
  margin-right: 25px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .topLesson ul .bordered .title span {
    line-height: 0;
    font-size: 40px;
  }
}
.topLesson ul .bordered .title .title-text {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topLesson ul .bordered .title .title-text {
    font-size: 18px;
  }
}
.topLesson ul .bordered .contents {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .topLesson ul .bordered .contents {
    font-size: 14px;
  }
}
.topLesson ul .bordered .section_btn {
  margin-top: 40px;
}

.topVoice {
  background: #d2d0d0;
  background: url(../img/topvois_bg.jpg) no-repeat center center/cover;
  position: relative;
}
.topVoice .foodImg3 {
  position: absolute;
  max-width: 340px;
  bottom: -140px;
  right: -100px;
}
@media screen and (max-width: 767px) {
  .topVoice .foodImg3 {
    max-width: 140px;
    bottom: -20px;
    right: -30px;
  }
}
.topVoice .en {
  color: #fff;
}
.topVoice .ja {
  color: #fff;
}
.topVoice .top-voice-line {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .topVoice .top-voice-line {
    top: -17px;
  }
}
.topVoice .box {
  background: #fff;
  padding: 0 50px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.11);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .topVoice .box {
    padding: 0 20px;
  }
}
.topVoice .text-box-01 {
  background-color: #5F636E;
  margin: 10px 10px 10px 10px;
  border: 1px solid #5F636E;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .topVoice .text-box-01 {
    font-size: 13px;
    margin: 10px 10px 10px 0px;
  }
}
.topVoice .text-box-02 {
  background-color: #FDF7EB;
  margin: 10px 10px 10px 10px;
  border-radius: 5px;
  color: #1b1b1b;
  font-size: 12px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 28px;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
}
.topVoice ul li {
  padding: 60px 0 55px;
  border-bottom: 1px solid #E0D9D3;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .topVoice ul li {
    display: block;
    padding: 30px 0;
  }
}
.topVoice ul li .img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .topVoice ul li .img {
    width: 70%;
    margin: 0 auto 10px;
  }
}
.topVoice ul li .contents {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .topVoice ul li .contents {
    width: 100%;
  }
}
.topVoice ul li:last-child {
  border-bottom: none;
}
.topVoice ul li:nth-child(2n) {
  flex-direction: row-reverse;
}
.topVoice ul li .title {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .topVoice ul li .title {
    font-size: 16px;
  }
}
.topVoice ul li .name {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .topVoice ul li .name {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.topVoice ul li .text {
  font-size: 12px;
  line-height: 28px;
  margin-top: 20px;
}
.topVoice ul li .text .text_bold {
  font-weight: bold;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .topVoice ul li .text {
    font-size: 14px;
    margin: 20px;
  }
}

.topTrial .flex {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .topTrial .flex {
    display: block;
  }
}
.topTrial .flex .img {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .topTrial .flex .img {
    width: 70%;
    margin: 0 auto 10px;
  }
}
.topTrial .flex .contents {
  line-height: 2;
  width: 47%;
  margin-left: auto;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .topTrial .flex .contents {
    width: 100%;
    padding: 0;
  }
}
.topTrial .flex .wrap {
  padding: 20px 20px;
}
@media screen and (max-width: 767px) {
  .topTrial .flex .wrap {
    padding: 15px 0;
  }
}
.topTrial .flex .wrap .title {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .topTrial .flex .wrap .title {
    font-size: 16px;
  }
}
.topTrial .flex .wrap .text1 {
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .topTrial .flex .wrap .text1 {
    font-size: 14px;
  }
}
.topTrial .flex .wrap .text2 {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .topTrial .flex .wrap .text2 {
    font-size: 15px;
  }
}

.main_title {
  font-size: 23px;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main_title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.main_title .main_title_wrap {
  display: inline-block;
  margin: 0 auto 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main_title .main_title_wrap {
    margin: 0 auto 10px;
  }
}
.main_title .main_title_wrap .price-left {
  position: absolute;
  left: -80px;
  width: 60px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .main_title .main_title_wrap .price-left {
    width: 30px;
    left: -50px;
  }
}
.main_title .main_title_wrap .price-right {
  position: absolute;
  right: -80px;
  width: 60px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .main_title .main_title_wrap .price-right {
    width: 30px;
    right: -50px;
  }
}

.contact {
  background: url(../img/message_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .contact {
    margin-bottom: -20px;
  }
}
.contact .lead {
  line-height: 2;
  max-width: 820px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .contact .lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.contact .box {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 80px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.11);
}
@media screen and (max-width: 767px) {
  .contact .box {
    padding: 30px 20px;
  }
}
.contact .row {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contact .row {
    display: block;
    margin-bottom: 30px;
  }
}
.contact .row .dt {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .contact .row .dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.contact .row .dt .required {
  font-size: 10px;
  background: #AA4242;
  display: inline-block;
  padding: 3px 10px;
  color: #fff;
  position: relative;
  top: -2px;
  margin-left: 20px;
}
.contact .row .dt .required.no {
  background: #C1C1C1;
}
.contact .row .dd {
  width: calc(100% - 220px);
}
@media screen and (max-width: 767px) {
  .contact .row .dd {
    width: 100%;
  }
}
.contact input[type=submit] {
  position: absolute;
  opacity: 0;
  left: -200%;
}
.contact input[type=text] {
  padding: 7px 15px;
  border: 1px solid #B19F90;
}
.contact input[type=email] {
  padding: 7px 15px;
  border: 1px solid #B19F90;
}
.contact select {
  padding: 7px 15px;
  border: 1px solid #B19F90;
}
.contact textarea {
  padding: 7px 15px;
  border: 1px solid #B19F90;
  resize: none;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .contact textarea {
    height: 100px;
  }
}
.contact .check {
  text-align: center;
  margin-bottom: 40px;
}
.contact .check a {
  color: #343434;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .contact .check {
    margin-bottom: 20px;
  }
}
.contact .check label {
  display: inline-block;
}
.contact .check input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.contact .check span {
  padding-left: 35px;
  position: relative;
  cursor: pointer;
}
.contact .check span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #343434;
}
.contact .check span::after {
  position: absolute;
  content: "";
  top: 22%;
  left: 0;
  transform: translateY(-50%) rotate(-40deg);
  width: 20px;
  height: 8px;
  border-bottom: 4px solid #343434;
  border-left: 4px solid #343434;
  opacity: 0;
}
.contact .check input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.textarea_dd {
  align-items: initial !important;
}
.textarea_dd .dt {
  position: relative;
}
@media screen and (min-width: 834px) {
  .textarea_dd .dt {
    top: 10px;
  }
}

.select_dd {
  max-width: 220px;
}
@media screen and (min-width: 834px) {
  .select_dd {
    max-width: 245px;
  }
}

.footer {
  background: #4B4B4B;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .footer .inner {
    padding: 0%;
  }
}
.footer .footerLogo {
  margin-top: -27px;
}
@media screen and (max-width: 767px) {
  .footer .footerLogo {
    display: none;
  }
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .footer .footerLogo img {
    width: 80%;
  }
}
.footer .heading {
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .heading {
    padding: 20px 0;
    display: block;
  }
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .footer .heading {
    display: flex;
    margin: 20px;
  }
}
.footer .left {
  max-width: 250px;
  margin-top: 20px;
}
.footer .right {
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .footer .right {
    justify-content: space-around;
    display: none;
  }
}
.footer .right ul {
  display: flex;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .footer .right ul:first-child {
    margin-right: 0px;
  }
}
.footer .right ul:first-child:last-child {
  margin-right: 1px;
}
.footer .right ul:first-child:nth-child(4) {
  margin-right: 10px;
}
.footer .right ul li {
  margin-bottom: 15px;
  margin-left: 40px;
}
.footer .right ul li:last-child {
  margin-right: 0px;
}
.footer .right ul li:nth-child(4) {
  margin-right: 10px;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .footer .right ul li {
    font-size: 13px;
    margin-left: 10px;
  }
}
.footer .right ul li a {
  color: #343434;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer .right ul li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 820px) {
  .footer .right ul li a .footer .right ul li a {
    font-size: 14px;
  }
}

.footer_sns {
  margin-top: 30px;
}
.footer_sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer_sns ul {
    display: none;
  }
}
.footer_sns ul li {
  width: 35px;
  margin-right: 20px;
}
.footer_sns ul li:last-child {
  margin-right: 0;
}

.insta {
  width: 50%;
}

.copyright {
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
  background: #4B4B4B;
}
.copyright .centered-list {
  display: flex;
  text-align: center;
  padding: 0;
  /* リストの余白をゼロにする */
  justify-content: center;
}
.copyright .centered-list li {
  display: inline;
  /* リストアイテムを横並びにする */
  margin: 0 10px;
  /* リストアイテム間の間隔を調整する */
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 10px;
    padding: 10px 0;
  }
}

.privacy {
  background: url(../img/privacy-bg.png) no-repeat center center/cover;
}
.privacy .box {
  margin: 0 auto;
  background: #fff;
  padding: 50px 80px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.11);
}
@media screen and (max-width: 767px) {
  .privacy .box {
    padding: 30px 20px;
  }
}
.privacy .box .title {
  font-size: 23px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .privacy .box .title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.privacy .box .lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .privacy .box .lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.privacy .wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .privacy .wrap {
    margin-bottom: 20px;
  }
}
.privacy h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 16px;
  }
}
.privacy h3 {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.privacy p {
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .privacy p {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.category .inner {
  display: block;
}
.category .inner .section_title {
  display: block;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .category .inner .section_title {
    margin-bottom: 30px;
  }
}
.category .inner .section_title .en {
  writing-mode: initial;
}
.category .inner .section_title .ja {
  writing-mode: initial;
}

.course1 ul {
  margin-bottom: 0;
}

.topTrial2 {
  position: relative;
}
.topTrial2 .item-left {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 300px;
  z-index: 1;
}
.topTrial2 .item-right {
  position: absolute;
  top: 180px;
  right: 20px;
  max-width: 280px;
  z-index: 1;
}
.topTrial2 .lead3 {
  margin-top: 30px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .topTrial2 .lead3 {
    margin-top: 20px;
    font-size: 13px;
  }
}
.topTrial2 .traial2_line {
  max-width: 710px;
  margin: 0px auto 70px;
}
@media screen and (max-width: 767px) {
  .topTrial2 .traial2_line {
    margin: 0px auto 35px;
  }
}
.topTrial2 .text2 {
  font-size: 20px;
  color: #343434;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .topTrial2 .text2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.topTrial2 .text3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .topTrial2 .text3 {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.topTrial2 .flex .img {
  max-width: 710px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .topTrial2 .flex .img {
    margin: 0 auto 10px;
  }
}
.topTrial2 .text1_add {
  max-width: 370px;
  font-size: 16px;
  margin: 0 auto;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .topTrial2 .text1_add {
    font-size: 14px;
  }
}

.single_wrap time {
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single_wrap time {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.single_wrap .single_title {
  font-size: 23px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .single_wrap .single_title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 833px) and (min-width: 768px) {
  .topMessage .foodImg2 {
    max-width: 150px;
  }
  .topLesson ul li .title span {
    font-size: 40px;
    margin-right: 10px;
  }
  .topLesson ul li .title .title-text {
    font-size: 16px;
  }
  .course2 .lead2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .footer .left .footerLogo {
    max-width: 200px;
    margin: 0 auto 20px;
  }
}
.slider-wrap {
  overflow: hidden;
}

.slide-item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .slide-item > img {
    width: 50%;
    height: 50%;
  }
}

@-webkit-keyframes fadezoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadezoom {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.slick-animation {
  -webkit-animation: fadezoom 5s 0s forwards;
          animation: fadezoom 5s 0s forwards;
}

@media screen and (max-width: 767px) {
  .slick-initialized .slick-slide {
    padding-top: 40%;
  }
  .slick-initialized .slick-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .topMessage .flex .img {
    width: 100%;
    margin-bottom: 28px;
  }
  .topVoice .box {
    padding: 0 15px;
  }
  .topVoice ul li .title {
    font-size: 15px;
  }
  .topTrial .flex .img {
    width: 100%;
  }
  .mail .green_lead {
    font-size: 16px;
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 6px 0;
  }
}
.topNews ul li a .time {
  white-space: nowrap;
  width: 96px;
}

.section_sab1 {
  text-align: center;
}
.section_sab1 .section-title {
  text-align: center;
  font-size: 22px;
  line-height: 50px;
  margin-bottom: 25px;
  letter-spacing: 3px;
}
.section_sab1 .sab1_text {
  text-align: center;
  position: relative;
}
.section_sab1 .wrap {
  line-height: 37px;
  font-size: 14px;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  text-align: center;
  display: inline-block;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .section_sab1 .wrap {
    text-align: left;
    /* 文章を左揃えにする */
  }
}
.section_sab1 .isu {
  width: 35%;
  position: absolute;
  margin-top: -278px;
  margin-left: 594px;
}
@media screen and (max-width: 833px) and (min-width: 768px) {
  .section_sab1 .isu {
    margin-top: -145px;
    margin-left: 440px;
  }
}
@media screen and (max-width: 976px) and (min-width: 833px) {
  .section_sab1 .isu {
    margin-top: -145px;
    margin-left: 440px;
  }
}
@media screen and (max-width: 767px) {
  .section_sab1 .section-title {
    font-size: 19px;
    line-height: 35px;
    margin-top: 30px;
  }
  .section_sab1 .section-title span {
    display: inline-block;
  }
  .section_sab1 .wrap {
    margin: 50px;
    margin-bottom: 100px;
    margin-bottom: 40px;
  }
  .section_sab1 .wrap span {
    display: inline-block;
  }
  .section_sab1 .isu {
    width: 80%;
    position: absolute;
    margin-top: -155px;
    left: -125%;
    display: none;
  }
}
.section_sab1 .responsive-text {
  word-break: break-all;
  /* 長い単語でも強制的に改行 */
  -webkit-hyphens: auto;
          hyphens: auto;
  /* 単語を適切に改行 */
  overflow-wrap: break-word;
  /* 単語内で改行可能な場所で改行 */
}
@media screen and (max-width: 767px) {
  .section_sab1 .responsive-text .p br {
    display: none;
  }
  .section_sab1 .responsive-text .p {
    text-align: left;
  }
}

.section_top_bg {
  height: 724px;
  background: url(../img/top_bg1.jpg) no-repeat center center/cover;
  position: relative;
  margin-top: 111px;
  background-repeat: no-repeat;
}
.section_top_bg .top_bg_text {
  text-align: center;
}
.section_top_bg .section-title {
  text-align: center;
  font-size: 22px;
  line-height: 50px;
  margin-bottom: 25px;
  letter-spacing: 3px;
  background-size: auto;
  position: absolute;
  margin-top: 515px;
  right: 0;
  left: 0;
  color: #eee;
}
.section_top_bg .isu_2 {
  width: 10%;
  position: absolute;
  margin-top: 567px;
  left: 100px;
}
@media screen and (max-width: 767px) {
  .section_top_bg {
    height: 354px;
    width: 100%;
    position: relative;
    margin-top: 100px;
  }
  .section_top_bg .section-title {
    position: absolute;
    line-height: 35px;
    margin-top: 245px;
    font-size: 17px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .section_top_bg .isu_2 {
    width: 15%;
    position: absolute;
    margin-top: 313px;
    left: 25px;
  }
}

.qa-001 {
  max-width: 1000px;
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 5px;
}

.qa-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2em 2em 2em 4em;
  color: #333333;
  font-weight: 300;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .qa-001 summary {
    padding: 2em 2em 2em 2em;
  }
}

.qa-001 summary::before,
.qa-001 p::before {
  position: absolute;
  left: 1em;
  font-weight: 300;
  font-size: 1.3em;
}

.qa-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}

.qa-001[open] summary::after {
  transform: rotate(225deg);
}

.qa-001 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}

.qa-001[open] p {
  transform: none;
  opacity: 1;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .qa-001[open] p {
    margin-left: -12px;
  }
}

.qa {
  margin-top: 100px;
  margin-bottom: 100px;
}

.btn-mod.btn-border {
  color: #ffffff;
  border: 2px solid #81807B;
  background-color: #81807B;
}

.btn-mod.btn-border.blown {
  color: #ffffff;
  border: 2px solid #A78F84;
  background-color: #A78F84;
}

.btn-mod.btn-border.blown.gray {
  color: #ffffff;
  border: 2px solid #81807B;
  background-color: #81807B;
}

.btn-mod.btn-border:hover,
.btn-mod.btn-border:focus {
  color: #fff;
  border-color: transparent;
  background: #000;
}

.mb-10 {
  margin-bottom: 30px;
}

.mb-10_header {
  margin-bottom: 1px;
}

.btn-mod,
a.btn-mod {
  box-sizing: border-box;
  padding: 4px 13px;
  color: #fff;
  background: rgba(34, 34, 34, 0.9);
  border: 2px solid transparent;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  border-radius: 0;
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}

.btn-mod:hover,
.btn-mod:focus,
a.btn-mod:hover,
a.btn-mod:focus {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  outline: none;
}

.btn-mod:active {
  cursor: pointer !important;
}

.btn-mod.btn-large {
  padding: 12px 7px;
  font-size: 13px;
}

.copyright a {
  text-decoration: none;
  color: white;
}
.copyright ul {
  display: flex;
}
.copyright li {
  text-align: center;
  margin-left: 10px;
}

.page_mv {
  margin-top: 80px;
  position: relative;
}
.page_mv .mv-title {
  position: absolute;
  color: #ffffff;
  /* 文字色 */
  font-size: 22px;
  /* 文字の大きさ */
  left: 42%;
  top: 42%;
  text-align: center;
  /*中央寄せ*/
}
.page_mv .mv-title::before {
  content: "GREETING";
  display: block;
  font-size: 1.5em;
  /*2倍サイズ*/
}
@media screen and (max-width: 767px) {
  .page_mv .mv-title {
    position: absolute;
    color: #ffffff;
    /* 文字色 */
    font-size: 18px;
    /* 文字の大きさ */
    left: 40%;
    top: 25%;
    text-align: center;
    /*中央寄せ*/
  }
  .page_mv .mv-title::before {
    content: "GREETING";
    display: block;
    font-size: 13px;
    /*2倍サイズ*/
    line-height: 26px;
  }
}

.breadcrumb-001 {
  display: flex;
  gap: 0 22px;
  list-style: none;
  padding: 0;
  font-size: 13px;
  margin-top: 20px;
}

.breadcrumb-001 li {
  display: flex;
  align-items: center;
}

.breadcrumb-001 li:not(:last-child)::after {
  display: inline-block;
  transform: rotate(45deg);
  width: 0.3em;
  height: 0.3em;
  margin-left: 10px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  content: "";
}

.breadcrumb-001 a {
  color: #333333;
  text-decoration: none;
}

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

.plofile_content {
  display: flex;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .plofile_content {
    display: block;
    margin-left: 0;
  }
}
.plofile_content .plofile_img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plofile_content .plofile_img {
    width: 70%;
    margin: 0 auto;
  }
}
.plofile_content .plofile_box {
  width: 100%;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .plofile_content .plofile_box {
    width: 100%;
    margin-left: 0;
  }
}
.plofile_content .name {
  font-size: 30px;
  margin: 0 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .plofile_content .name {
    margin: 0;
    margin-top: 20px;
    font-size: 24px;
  }
}
.plofile_content .name::before {
  content: "Miyako Matsui |";
  font-size: 19px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .plofile_content .name::before {
    display: flex;
  }
}
.plofile_content .sab {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .plofile_content .sab {
    font-size: 16px;
  }
}
.plofile_content .pl_text {
  font-size: 14px;
  line-height: 32px;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .plofile_content .pl_text {
    margin-top: 20px;
  }
}
.plofile_content .sab2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 44px;
}

.voice_page_mv {
  margin-top: 80px;
  position: relative;
  text-align: center;
  /* 見出しと画像を中央揃えにする */
}
.voice_page_mv .voice_mv-title {
  position: absolute;
  color: #ffffff;
  /* 文字色 */
  font-size: 22px;
  /* 文字の大きさ */
  left: 42%;
  top: 42%;
  text-align: center;
  /*中央寄せ*/
  margin: 0;
  /* 見出しの余白をリセット */
}
.voice_page_mv .voice_mv-title::before {
  content: "VOICE";
  display: block;
  font-size: 1.6em;
}
@media screen and (max-width: 767px) {
  .voice_page_mv .voice_mv-title {
    position: absolute;
    color: #ffffff;
    /* 文字色 */
    font-size: 18px;
    /* 文字の大きさ */
    left: 40%;
    top: 25%;
    text-align: center;
    /*中央寄せ*/
  }
  .voice_page_mv .voice_mv-title::before {
    content: "VOICE";
    display: block;
    font-size: 13px;
    /*2倍サイズ*/
    line-height: 26px;
  }
}

.Voice_page span {
  font-weight: bold;
  font-size: 17px;
}
.Voice_page .text-box-01 {
  background-color: #5F636E;
  margin: 10px 10px 10px 10px;
  border: 1px solid #5F636E;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  color: #fff;
  width: 259px;
  height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .Voice_page .text-box-01 {
    margin-bottom: 20px;
  }
}
.Voice_page .name {
  margin-left: 60px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .Voice_page .name {
    margin-left: 40px;
    margin-bottom: 17px;
  }
}
.Voice_page .text-box-02 {
  background-color: #FDF7EB;
  border-radius: 5px;
  padding: 30px;
  color: #1b1b1b;
  font-size: 12px;
  margin: auto 0;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 120px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page .text-box-02 {
    width: 100%;
    height: 100%;
  }
}
.Voice_page .text-box-03 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 258px;
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page .text-box-03 {
    width: 100%;
    height: 100%;
  }
}
.Voice_page p {
  margin: 0 auto;
}

.voice_img1 {
  margin-bottom: -100px;
}
@media screen and (max-width: 767px) {
  .voice_img1 {
    width: 100%;
    margin-top: 38px;
  }
}

.Voice_page2 .text-box-01 {
  background-color: #5F636E;
  margin: 10px 10px 10px 10px;
  border: 1px solid #5F636E;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  color: #fff;
  width: 259px;
  height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .Voice_page2 .text-box-01 {
    font-size: 13px;
    margin-top: 70px;
  }
}
.Voice_page2 .name {
  margin-left: 60px;
  margin-bottom: 20px;
}
.Voice_page2 .text-box-02 {
  background-color: #FDF7EB;
  border-radius: 5px;
  padding: 30px;
  color: #1b1b1b;
  font-size: 12px;
  margin: auto 0;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 120px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page2 .text-box-02 {
    width: 100%;
    height: 100%;
  }
}
.Voice_page2 .text-box-03 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 250px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page2 .text-box-03 {
    width: 100%;
    height: 100%;
  }
}
.Voice_page2 p {
  margin: 0 auto;
}
.Voice_page2 p span {
  font-weight: bold;
  font-size: 17px;
}

.voice_img2 {
  margin-bottom: -80px;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .voice_img2 {
    width: 100%;
    margin-top: 10px;
  }
}

.Voice_page3 .text-box-01 {
  background-color: #5F636E;
  margin: 10px 10px 10px 10px;
  border: 1px solid #5F636E;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  color: #fff;
  width: 259px;
  height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .Voice_page3 .text-box-01 {
    margin: 10px 10px 10px 0px;
    margin-top: 70px;
  }
}
.Voice_page3 .text-box-02 {
  background-color: #FDF7EB;
  border-radius: 5px;
  padding: 30px;
  color: #1b1b1b;
  font-size: 12px;
  margin: auto 0;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 120px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  justify-content: center;
}
.Voice_page3 .text-box-03 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 258px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page3 .text-box-03 {
    width: 100%;
    height: 100%;
  }
}
.Voice_page3 p {
  margin: 0 auto;
}

.Voice_page3 .contents {
  display: flex;
}
@media screen and (max-width: 767px) {
  .Voice_page3 .contents {
    display: block;
  }
}
.Voice_page3 .contents .text-box-02 {
  width: 75%;
  margin-right: 20px;
  margin-bottom: 45px;
  height: 150px;
}
@media screen and (max-width: 767px) {
  .Voice_page3 .contents .text-box-02 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page3 .contents .content_img {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .Voice_page3 .contents .content_img {
    display: none;
  }
}
.Voice_page3 .name {
  margin-bottom: 20px;
  margin-left: 60px;
}
.Voice_page3 p {
  margin: 0 auto;
}
.Voice_page3 p span {
  font-weight: bold;
  font-size: 17px;
}

.voice_img3 {
  margin-bottom: -80px;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .voice_img3 {
    width: 100%;
    margin-top: 10px;
  }
}

.Voice_page4 .text-box-01 {
  background-color: #5F636E;
  margin: 10px 10px 10px 10px;
  border: 1px solid #5F636E;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  color: #fff;
  width: 259px;
  height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .Voice_page4 .text-box-01 {
    margin-top: 80px;
  }
}
.Voice_page4 .name {
  margin-left: 60px;
  margin-bottom: 20px;
}
.Voice_page4 .text-box-02 {
  background-color: #FDF7EB;
  border-radius: 5px;
  padding: 30px;
  color: #1b1b1b;
  font-size: 12px;
  margin: auto 0;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 90px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page4 .text-box-02 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page4 .text-box-03 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 200px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page4 .text-box-03 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page4 p {
  margin: 0 auto;
}
.Voice_page4 p span {
  font-weight: bold;
  font-size: 17px;
}

.text-box-04 .bold {
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .text-box-04 .bold {
    margin-top: 10px;
  }
}

.Voice_page5 .text-box-01 {
  background-color: #5F636E;
  margin: 10px 10px 10px 10px;
  border: 1px solid #5F636E;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  color: #fff;
  width: 259px;
  height: 42px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .Voice_page5 .text-box-01 {
    margin-top: 60px;
  }
}
.Voice_page5 .name {
  margin-left: 60px;
  margin-bottom: 20px;
}
.Voice_page5 .text-box-02 {
  background-color: #FDF7EB;
  border-radius: 5px;
  padding: 30px;
  color: #1b1b1b;
  font-size: 12px;
  margin: auto 0;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 120px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .Voice_page5 .text-box-02 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page5 .text-box-03 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  margin: 0 auto;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 258px;
}
@media screen and (max-width: 767px) {
  .Voice_page5 .text-box-03 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page5 p {
  margin: 0 auto;
}
.Voice_page5 p span {
  font-weight: bold;
  font-size: 17px;
}

.voice_img4 {
  margin-bottom: -80px;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .voice_img4 {
    width: 100%;
    margin-top: 10px;
  }
}

.text-box-04 {
  margin-bottom: -100px;
}
@media screen and (max-width: 767px) {
  .text-box-04 {
    margin-top: 60px;
  }
}

.voice_img5 {
  margin-bottom: -50px;
  margin-top: -80px;
}
@media screen and (max-width: 767px) {
  .voice_img5 {
    width: 100%;
    margin-top: 0%;
    margin-bottom: 0px;
  }
}

.text-box-04 {
  margin-bottom: -100px;
}

.Voice_page5_con .text-box-02 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 30px;
  color: #1b1b1b;
  font-size: 12px;
  margin: auto 0;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 180px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page5_con .text-box-02 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page5_con .text-box-02 p {
  margin: 0 auto;
}
.Voice_page5_con .text-box-02 p span {
  font-weight: bold;
  font-size: 17px;
}
.Voice_page5_con .text-box-03 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 200px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page5_con .text-box-03 {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.Voice_page5_con .text-box-03 p {
  margin: 0 auto;
}
.Voice_page5_con .text-box-03 p span {
  font-weight: bold;
  font-size: 17px;
}
.Voice_page5_con .text-box-04 {
  background-color: #EBEBEB;
  border-radius: 5px;
  padding: 40px;
  color: #1b1b1b;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  width: 669px;
  height: 250px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .Voice_page5_con .text-box-04 {
    display: block;
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.Voice_page5_con .text-box-04 p {
  margin: 0 auto;
}
.Voice_page5_con .text-box-04 p span {
  font-weight: bold;
  font-size: 17px;
}

.page5-2 {
  margin-left: 400px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .page5-2 {
    margin-left: 0;
  }
}

.service_page_mv {
  margin-top: 80px;
  position: relative;
  display: flex;
  align-items: center;
  display: flex;
  flex-direction: column;
  /* 子要素を垂直に配置 */
  align-items: center;
  /* 子要素を水平方向に中央に配置 */
  text-align: center;
  /* テキストを中央寄せ */
}
.service_page_mv .service_mv-title {
  position: absolute;
  color: #ffffff;
  /* 文字色 */
  font-size: 22px;
  /* 文字の大きさ */
  left: 42%;
  top: 42%;
  text-align: center;
  /*中央寄せ*/
  justify-content: center;
  margin: 0;
  /* 見出しの余白をリセット */
}
.service_page_mv .service_mv-title::before {
  content: "SERVICE";
  display: block;
  font-size: 1.6em;
}
@media screen and (max-width: 767px) {
  .service_page_mv .service_mv-title {
    position: absolute;
    color: #ffffff;
    /* 文字色 */
    font-size: 17px;
    /* 文字の大きさ */
    left: 40%;
    top: 25%;
    text-align: center;
    /*中央寄せ*/
  }
  .service_page_mv .service_mv-title::before {
    content: "SERVICE";
    display: block;
    font-size: 13px;
    /*2倍サイズ*/
    line-height: 26px;
  }
}

.service {
  margin-top: 40px;
}
.service .inner {
  text-align: center;
  /* 要素内のテキストを中央寄せ */
}
.service .service .section-title {
  margin: 0 auto;
  /* 左右のマージンを自動的に均等に設定して中央に配置 */
}

.service_btn {
  margin-left: -20px;
  margin-top: 10px;
  margin-top: -130px;
}
.service_btn .inner {
  text-align: center;
  /* ボタンを水平方向に中央に配置 */
}
@media screen and (max-width: 767px) {
  .service_btn {
    margin-top: -40px;
  }
}
.service_btn .section_content {
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  margin-top: 10px;
  vertical-align: middle;
  /* ボタンを垂直方向に中央に配置 */
  margin: 0 10px;
  /* ボタン間の横マージンを調整 */
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .service_btn .section_content {
    display: block;
    width: 100%;
  }
}
.service_btn .button {
  display: block;
  width: 100%;
  height: 65px;
  padding: 1rem;
  background: #8C909A;
  color: #FFF;
  text-align: center;
  letter-spacing: 0.1rem;
  text-decoration: none;
  margin-left: 20px;
  border-radius: 14px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .service_btn .button {
    margin-left: 0px;
    margin-top: 10px;
  }
}
.service_btn .colored-button {
  background-color: #5F636E;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .service_btn .margin-button {
    padding: 10px;
  }
}

.service_img1 {
  margin-top: -70px;
  display: block;
  /* デフォルトではデスクトップ画像を表示 */
}
.service_img1 .mobile-image {
  display: none;
  /* モバイルサイズでデスクトップ画像を非表示 */
}
@media screen and (max-width: 767px) {
  .service_img1 .desktop-image {
    display: none;
    /* モバイルサイズでデスクトップ画像を非表示 */
  }
  .service_img1 .mobile-image {
    display: block;
    /* モバイルサイズでモバイル画像を表示 */
    margin-top: 20px;
  }
}

.service_page_midashi {
  position: relative;
  margin-top: 20px;
}
.service_page_midashi .service_mv-title {
  position: absolute;
  color: #ffffff;
  /* 文字色 */
  font-size: 22px;
  /* 文字の大きさ */
  left: 0%;
  top: 50%;
  right: 50px;
  text-align: center;
  /* テキストを中央揃えにする */
  margin: 0;
  /* 見出しの余白をリセット */
}
@media screen and (max-width: 767px) {
  .service_page_midashi .service_mv-title {
    right: 0px;
    top: 33%;
    font-size: 18px;
  }
}

.section_sab1.service .wrap {
  margin-top: 44px;
  margin-bottom: 60px;
}
.section_sab1.service .box_service {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  color: #343434;
  /*文字色*/
  background: #EBE6DE;
  border-radius: 10px;
  /*角の丸み*/
  box-sizing: border-box;
  width: 278px;
  height: 172px;
  margin: 0 auto;
  box-shadow: 3px 3px 3px 3px #e1e1e1;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .section_sab1.service .box_service {
    padding: 0.5em 1em;
    width: 230px;
    height: 150px;
  }
}
.section_sab1.service .box_service p {
  text-align: center;
  margin-top: 30px;
  margin-left: 7px;
}
.section_sab1.service .box_service span {
  font-size: 20px;
}
.section_sab1.service .wrap2 {
  text-align: left;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section_sab1.service .wrap2 {
    margin-bottom: 100px;
    margin-top: 30px;
  }
}
.section_sab1.service .wrap2 p {
  font-size: 14px;
  line-height: 32px;
  margin-left: 14px;
}
.section_sab1.service .wrap3 {
  margin-top: 50px;
}

.box_service2 {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  color: #343434;
  /*文字色*/
  background: #FBF2EE;
  border-radius: 10px;
  /*角の丸み*/
  box-sizing: border-box;
  width: 196px;
  height: 123px;
  box-shadow: 3px 3px 3px 3px #e1e1e1;
  margin-bottom: 36px;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .box_service2 {
    width: 50%;
    margin-left: 0;
    height: 50px;
    margin: 0.5rem auto;
  }
}
.box_service2 span {
  font-size: 3px;
}
@media screen and (max-width: 767px) {
  .box_service2 span span {
    font-size: 3px;
  }
}
.box_service2 p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .box_service2 p {
    line-height: 14px;
    font-size: 11px;
  }
}
.box_service2 .service_line {
  width: 100%;
}

.box_ue {
  display: flex;
  justify-content: center;
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  .box_ue {
    display: block;
    margin-bottom: 10px;
  }
}

.box_shita {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .box_shita {
    display: block;
  }
}

.back_color {
  background-color: #F8F8F8;
  margin-top: -41px;
}

@media screen and (max-width: 767px) {
  .service_img5 {
    margin-top: 4px;
    margin-bottom: 50px;
  }
}

.service_page_midashi2 {
  position: relative;
}
.service_page_midashi2 .service_mv-title {
  position: absolute;
  color: #ffffff;
  /* 文字色 */
  font-size: 22px;
  /* 文字の大きさ */
  left: 0%;
  top: 50%;
  right: 50px;
  text-align: center;
  /* テキストを中央揃えにする */
  margin: 0;
  /* 見出しの余白をリセット */
}
@media screen and (max-width: 767px) {
  .service_page_midashi2 .service_mv-title {
    right: 0px;
    top: 30%;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .service_page_midashi2 .font-midashi4 {
    font-size: 14px;
    top: 20%;
  }
}
@media screen and (max-width: 767px) {
  .service_page_midashi2 .h2 {
    margin-bottom: 10px;
  }
}

.price {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .price {
    display: block;
  }
}

.box_2service {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  color: #343434;
  /*文字色*/
  background: #EBE6DE;
  border-radius: 10px;
  /*角の丸み*/
  box-sizing: border-box;
  width: 278px;
  height: 172px;
  box-shadow: 3px 3px 3px 3px #e1e1e1;
  margin-bottom: 36px;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .box_2service {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
.box_2service span {
  font-size: 20px;
}

.box-center {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .box-center {
    margin-top: 22px;
    margin-bottom: 20px;
  }
}

.box_service3 {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  color: #343434;
  /*文字色*/
  background: #F2DCD3;
  border-radius: 10px;
  /*角の丸み*/
  box-sizing: border-box;
  width: 196px;
  height: 123px;
  box-shadow: 3px 3px 3px 3px #e1e1e1;
  margin-bottom: 36px;
  margin-left: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .box_service3 {
    width: 50%;
    height: 50px;
    margin: 0.5rem auto;
  }
}
.box_service3 p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .box_service3 p {
    line-height: 14px;
    font-size: 11px;
  }
}
.box_service3 .service_line {
  width: 100%;
}

.box_shita2 {
  display: flex;
  justify-content: center;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .box_shita2 {
    display: block;
  }
}

.wrap3 {
  margin-top: 100px;
}

html {
  scroll-behavior: smooth;
}

/* Tokutei Table
------------------------------------------------------*/
.tb01 {
  width: 600px;
  margin: 30px auto 30px;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin-bottom: 100px;
}

.tb01 .title {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 6px;
  background-color: #e4e4e4;
  width: 35%;
}

.tb01 td {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 6px;
  text-align: left;
  background-color: #FFFFFF;
}

#container {
  margin-top: 150px;
}

.header_inner .header_nav ul li {
  position: relative;
  z-index: 2;
}
.header_inner .header_nav ul li .sub-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  width: auto;
  background: #fff;
  display: block;
  padding: 40px 30px 10px;
  z-index: -1;
  display: none;
}
.header_inner .header_nav ul li .sub-menu li {
  padding: 0;
  margin-right: 0;
}
.header_inner .header_nav ul li .sub-menu li:last-child a {
  border-bottom: none !important;
}
.header_inner .header_nav ul li .sub-menu li a {
  line-height: 1;
  padding: 20px 10px;
  display: block;
  border-bottom: 0.6px solid #343434;
}

#id1,
#id2,
#id3,
#id4 {
  position: relative;
  top: -83px;
}
@media screen and (max-width: 767px) {
  #id1,
#id2,
#id3,
#id4 {
    top: -81px;
  }
}

.service_page_midashi {
  margin-top: 0;
}

.drawer_sns li:nth-child(1) {
  width: 40px;
  margin-bottom: 0;
}
.drawer_sns li:nth-child(1) img {
  width: 100%;
}
.drawer_sns li:nth-child(2) {
  width: 50px;
  margin-bottom: 0;
  position: relative;
  top: 4px;
}
.drawer_sns li:nth-child(2) img {
  width: 100%;
  vertical-align: middle;
}

.drawer-icon-nav {
  width: 100%;
  padding: 0 20px;
}

.drawer-icon-nav ul li a {
  font-weight: bold;
  border-bottom: 0.6px dashed #343434;
}

.sub-menu2 {
  margin-top: 10px !important;
}
.sub-menu2 a {
  font-size: 14px !important;
  font-weight: 400 !important;
  border-bottom: none !important;
}
@media screen and (max-width: 350px) {
  .sub-menu2 a {
    font-size: 13px !important;
  }
}

.drawer_sns ul {
  margin-top: 0 !important;
}

.drawer_sns {
  margin-top: 0;
}

.footer .mb-10 {
  margin-bottom: 0px;
}

.footer .right ul li {
  margin-bottom: 0;
}

.footer .right {
  position: relative;
  top: -20px;
}

.footer .heading {
  padding-bottom: 0;
}

.footer_sns {
  margin-top: 0px;
}

.drawer_sns ul li a {
  border-bottom: none !important;
}

.copyright .centered-list {
  margin-bottom: 20px;
}

.copyright .centered-list li {
  padding: 0 20px;
}

.footer_sns ul li {
  width: 35px;
}
.footer_sns ul li img {
  width: 100%;
}

.footer .footerLogo {
  max-width: 120px;
}

@media screen and (max-width: 767px) {
  .copyright .centered-list li {
    padding: 0;
  }
  .footer_sns ul {
    display: flex !important;
  }
  .footer .footerLogo {
    display: block;
    max-width: 100px;
    margin: 0 auto;
  }
  .footer .left {
    margin: 0 auto 20px;
    max-width: 100px;
  }
  .footer .right {
    display: block;
    top: 0;
  }
  .footer .right ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer .right ul li {
    margin-left: 0;
    width: calc(50% - 7.5px);
    margin-right: 15px;
    text-align: center;
  }
  .footer .right ul li:last-child {
    margin-right: 0;
  }
  .footer .right ul li:nth-child(2n) {
    margin-right: 0;
  }
  .footer .right ul li:nth-child(n+3) {
    margin-top: 20px;
  }
  .footer .right ul li a {
    font-size: 14px;
  }
  .copyright a {
    font-size: 11px;
  }
  .footer_sns {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1040px) and (min-width: 768px) {
  .topLesson ul .bordered .title .title-text {
    font-size: 16px;
    line-height: 1.5;
  }
  .topLesson ul .bordered {
    padding: 20px 15px;
  }
  .topLesson .section_btn a::after {
    width: 35px;
    left: -10px;
  }
  .topLesson .section_btn a {
    padding: 0;
    width: 100%;
  }
  .topLesson ul .bordered {
    width: 32%;
  }
  .section_btn .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .topLesson ul .bordered .title .title-text {
    font-size: 16px;
  }
  .footer .right ul li:last-child {
    margin-top: 30px;
  }
  .footer_sns ul {
    margin-bottom: 20px;
  }
}
.topNews .topNews-inner {
  align-items: center;
}

.topNews {
  padding: 0;
}
.topNews h2 {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .topNews ul {
    padding: 0;
  }
  .topNews .ja {
    letter-spacing: 0;
    padding: 2px 5px;
  }
}
@media screen and (min-width: 834px) {
  .topVoice ul li .name {
    margin-bottom: 0;
  }
  .topVoice ul li .text .text_bold {
    font-size: 14px;
  }
  .topVoice ul li .text {
    font-size: 13px;
  }
  .topimg1 {
    padding-bottom: 80px;
  }
  .topLesson ul .bordered {
    margin-bottom: 0;
  }
}
.topLesson ul {
  margin-bottom: 0;
}

.topVoice .en {
  line-height: 1;
}

.topMessage .en {
  line-height: 1;
}

.section_title {
  margin-top: 0;
}

.section_title .en {
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .topLesson ul .bordered {
    padding: 20px 20px 28px;
  }
  .topMessage .flex .contents {
    padding: 0;
    text-align: left;
  }
  .section_sab1 .wrap {
    margin: 0;
  }
  .section_title {
    margin-bottom: 20px;
  }
  .section_title .ja {
    font-size: 16px;
  }
  .section_sab1 .section-title {
    margin: 0;
    margin-bottom: 20px;
  }
  .section_top_bg {
    margin: 50px 0;
  }
  .topLesson ul .bordered .img {
    margin: 0;
  }
  .topLesson ul .bordered:last-child {
    margin-bottom: 0;
  }
  .section_title .en {
    font-size: 28px;
  }
  .qa {
    margin: 50px 0;
  }
}
.voice_page_mv .voice_mv-title,
.service_page_mv .service_mv-title,
.page_mv .mv-title {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  #container {
    margin-top: 100px;
  }
}

.low h2 {
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .low h2 {
    font-size: 14px;
  }
}
.low .tb01 {
  max-width: 800px;
  width: 100%;
  font-size: 16px !important;
}
@media screen and (max-width: 767px) {
  .low .tb01 {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 1040px) and (min-width: 768px) {
  .service_btn .button {
    font-size: 13px;
    padding: 1rem 0.8rem;
    height: auto;
  }
}
/*==================================================
機能編　4-2-5　背景色が伸びる（中央から外）
===================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align: center;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
/*右に消えるエリア*/
body.appear .splashbg1 {
  -webkit-animation-name: PageAnime;
  animation-name: PageAnime;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1.5);
  background-color: #fff;
  /*伸びる背景色の設定*/
}

.splashbg1 {
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1.5);
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg2 {
  -webkit-animation-name: PageAnime2;
  animation-name: PageAnime2;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1.5);
  background-color: #fff;
  /*伸びる背景色の設定*/
}

.splashbg2 {
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1.5);
  background-color: #fff;
  /*伸びる背景色の設定*/
}

@-webkit-keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#wrapper {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper {
  -webkit-animation-name: PageAnimeAppear;
  animation-name: PageAnimeAppear;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slide-in {
  color: #000;
  font-size: 22px;
}

@media screen and (max-width: 1000px) {
  .slide-in {
    font-size: 14px;
  }
}
.loadingLogo {
  max-width: 280px;
  margin: 20px auto 0px;
}

@media screen and (max-width: 1000px) {
  .loadingLogo {
    max-width: 100px;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideText100;
  animation-name: slideText100;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*要素を右の枠外に移動*/
  opacity: 0;
  display: block;
  transform: scale(1.3);
  filter: blur(30px);
}

@-webkit-keyframes slideText100 {
  from {
    /*要素を右の枠外に移動*/
    filter: blur(30px);
    transform: scale(1.3);
    opacity: 0;
  }
  to {
    /*要素を元の位置に移動*/
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slideText100 {
  from {
    /*要素を右の枠外に移動*/
    filter: blur(30px);
    transform: scale(1.3);
    opacity: 0;
  }
  to {
    /*要素を元の位置に移動*/
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.category {
  padding: 150px 0 200px;
}
@media screen and (max-width: 767px) {
  .category {
    padding: 100px 0 100px;
  }
}

.radio_dd {
  align-items: initial;
}
.radio_dd label {
  margin-bottom: 5px;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .radio_dd label {
    margin-bottom: 6px;
  }
}
.radio_dd input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -100%;
}
.radio_dd input[type=radio]:checked + .radio-design::after {
  opacity: 1 !important;
}
.radio_dd .radio-design {
  padding-left: 25px;
  position: relative;
}
.radio_dd .radio-design::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #343434;
}
.radio_dd .radio-design::after {
  position: absolute;
  content: "";
  transform: translateY(-50%);
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #343434;
  opacity: 0;
}

.pagr_partner .section_title {
  font-weight: bold;
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  .pagr_partner .section_title {
    font-size: 17px;
  }
}

.partner_sc01 {
  background: url(../img/partner/partner_bg01.png) no-repeat center center/cover;
  position: relative;
}
.partner_sc01_txt {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .partner_sc01_txt {
    padding: 40px 0;
  }
}
.partner_sc01 p {
  text-align: center;
}
.partner_sc01 .inner {
  padding: 70px 20px 530px;
}
@media screen and (max-width: 767px) {
  .partner_sc01 .inner {
    padding: 20px;
  }
}
.partner_sc01 .partner_img_area {
  display: flex;
}
@media screen and (max-width: 767px) {
  .partner_sc01 .partner_img_area {
    display: block;
    padding-bottom: 40px;
  }
}
.partner_sc01 .partner_img_area div {
  position: absolute;
  bottom: 100px;
  height: 384px;
}
@media screen and (max-width: 767px) {
  .partner_sc01 .partner_img_area div {
    position: static;
    height: 280px;
  }
}
.partner_sc01 .partner_img_area .partner_img01 {
  left: 0;
  width: 40%;
  background: url(../img/partner/partner_img01.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .partner_sc01 .partner_img_area .partner_img01 {
    margin: auto;
    width: 90%;
  }
}
.partner_sc01 .partner_img_area .partner_img02 {
  right: 0;
  width: 56%;
  background: url(../img/partner/partner_img02.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .partner_sc01 .partner_img_area .partner_img02 {
    margin: 10px auto;
    width: 90%;
  }
}
.partner_sc01 .breadcrumb-001 {
  margin-top: 0;
}

.partner_price {
  padding: 100px 0;
  max-width: 400px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .partner_price {
    padding: 40px 0;
  }
}
.partner_price .price_item {
  background: #EBE6DE;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 34px;
  padding: 40px 20px 25px 20px;
  text-align: center;
  margin-bottom: 35px;
  font-size: 18px;
}
.partner_price .price_item p, .partner_price .price_item span {
  font-weight: bold;
}
.partner_price .price_item .font10 {
  font-size: 10px;
}
.partner_price .price_item .font20 {
  font-size: 20px;
}
.partner_price .price_item .font26 {
  font-size: 26px;
}
.partner_price .font14 {
  font-size: 14px;
}

.partner_sc02 {
  background: url(../img/partner/partner_bg02.png) no-repeat center center/cover;
  position: relative;
  margin-bottom: 200px;
}
.partner_sc02 .inner {
  padding: 120px 20px 180px;
}
@media screen and (max-width: 767px) {
  .partner_sc02 .inner {
    padding: 60px 20px 60px;
  }
}
.partner_sc02 .partner_sc02_img {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .partner_sc02 .partner_sc02_img {
    display: block;
  }
}
.partner_sc02 .partner_sc02_img div {
  margin: 0 8px;
  max-width: 322px;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .partner_sc02 .partner_sc02_img div {
    margin: 10px auto;
    width: 100%;
  }
}
.partner_sc02 .partner_sc02_list {
  background-color: #fff;
  border: solid 1px #5F636E;
  padding: 50px 20px;
  text-align: center;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 850px;
  width: 94%;
}
@media screen and (max-width: 767px) {
  .partner_sc02 .partner_sc02_list {
    padding: 30px;
    position: static;
    width: 100%;
    transform: none;
    margin: 0 auto -200px;
  }
}
.partner_sc02 ul {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .partner_sc02 ul {
    display: block;
  }
}
.partner_sc02 ul li {
  text-align: left;
  font-size: 14px;
  margin-bottom: 5px;
}
.partner_sc02 ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .partner_sc02 ul li {
    margin-bottom: 8px;
  }
}
.partner_sc02 ul li span {
  display: inline-block;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .partner_sc02 ul li span {
    display: block;
  }
}

.not-look {
    text-align: center;
}

.not-look img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .not-look img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }
}

/*# sourceMappingURL=style.css.map */