@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
html {
  font-size: 62.5%;
}

body {
  font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
	overflow-x: hidden;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 1.4em;
	}
}

a {
  text-decoration: none;
  outline: none;
}
a:hover {
	text-decoration: underline;
}
ul,li {
	list-style: none;
}
ul { padding: 0; }

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
 color: #666; font-size: 0.8125em;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #666; font-size: 0.8125em;
}
::placeholder{ /* Others */
 color: #666; font-size: 0.8125em;
}
label, input[type='checkbox'] {
    cursor: pointer;
}
.clearfix::after {
    content: " ";
    display: block;
    clear: both;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 100px 0 0;
}

.wrapper > section:nth-child(even) {
  background: #fff;
}

@media screen and (max-width: 992px) {
	.wrapper {
	  padding: 55px 0 0;
		overflow-x: hidden;
	}
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

p{
  color: #454545;
}

h1 {
  font-size: 3.6rem;
}
h2 {
  font-size: 3.2rem;
}
h3 {
  font-size: 2.4rem;
}
h4 {
  font-size: 1.9rem;
}
h5 {
  font-size: 2rem;
}
h6 {
  font-size: 1.6rem;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
	width: 100%; height: auto;
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
  font: inherit;
	padding: 5px 10px;
	border-radius: 3px;
}
input,
textarea {
	border: solid 1px #B5B5B5;
}
select {
	border: solid 1px #B5B5B5;
	background: #fff;
}
.tbl_contact select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
}
.wrap_select {
	position: relative;
	display: inline-block;
}
.wrap_select::after {
	content: "";
	display: block;
	width: 5px; height: 5px;
	border-right: solid 1px #707070;
	border-bottom: solid 1px #707070;
	position: absolute;
	right: 15px; top: 50%;
	transform: rotate(45deg) translateY(-50%);
}
input,
textarea {
	border: solid 1px #B5B5B5;
}

input#file {border: none;}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  /* box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1); */
  background-color: #F3F4F4;
}

.nav-header__container {
  display: flex;
  justify-content: space-between;
	align-items: center;
  max-width: 1200px;
  height: 10rem;
  margin: 0 auto;
  padding: 0 15px 0 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.header_left {
	display: flex;
	justify-content: flex-start;
}
.header_left .search_container {
	margin-left: 17px;
}
.header_right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-left: 3px;
}


@media screen and (max-width: 992px) {
  .nav-header__container {
    height: 5.5rem;
    padding: 0 14px;
  }
	.nav-header__container .search_container {
		display: none;
	}
	.nav-header__menu {
		margin-right: 0.5em;
	}
}

.nav-header__logo,
.nav-header__logo2 {
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #222222;
  font-weight: 700;
  font-size: 2.0rem;
}
.nav-header__logo img,
.nav-header__logo2 img {
  width: 100%; height: auto;
	max-width: 130px;
}

.nav-header__logo-image {
  display: block;
  height: 3rem;
}
.nav-header__logo::after{
  display: none;
}
@media (min-width: 992px) {
	.nav-header__logo::after{
		content: "学び × 結び";
		color: #707070;
		font-size: 	1.6rem;
		margin-left: 3rem;
		display: block;
	}
.nav-header__logo,
.nav-header__logo2 {
  font-weight: 700;
  /* font-family: 'Comfortaa', cursive; */
  display: flex;
  align-items: center;
  color: #222222;
  font-weight: 700;
  font-size: 1.6rem;
	text-decoration: none;
}
.nav-header__logo:hover,
.nav-header__logo2:hover {
	text-decoration: none;
}
.nav-header__logo img,
.nav-header__logo2 img {
  width: 100%; height: auto;
	max-width: 240px;
}

}



/* ====================
 .search_container
 ==================== */
.search_container {
	background: #fff;
  box-sizing: border-box;
  position: relative;
  border: 1px solid #24BCEA;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.3em;
  width: 180px;
  overflow: hidden;
}
.nav-drawer__container .search_container {
	width: 95%;
	margin: 0 auto;
}
.nav-drawer__container .search_container input[type="text"]::placeholder {
  font-size: 13px;
}
.search_container input[type="text"]{
  border: none;
  height: 1.8em;
	padding: 5px 0;
	/*width: 100%;*/
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  border: none;
  background: #fff;
  color: #E0DDDD;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  right:0px;
  top: -3px;
  outline : none;
}
.search_container input[type="image"]{
	cursor: pointer;
	width: 20px;
	height: 20px;
	outline: none;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: url("../images/common/icon_search.png");
	background-size: cover;
	border-radius: none;
	border: none;
}

.header_left .search_container input::placeholder{
	font-size: 13px !important;
}
  .nav-header__menu {
    display: flex;
    align-items: center;
	  margin: 0;
  }
.nav-header__menu .pc {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
	.nav-header__menu .pc {
	  display: block;
	}
}

.nav-header__menu-item {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  position: relative;
  /*width: 100%;*/
  height: 100%;
}

.nav-header__mypage-item {
	width: 26px;
	margin: 0 0 0 20px;
}
@media (min-width: 992px) {
	.nav-header__mypage-item {
		width: 30px;
		margin: 0 0 0 26px;
	}
}

/* ====================
 mypage　ドロップダウンメニュー
 ==================== */
.gnavi__list {/*親*/
    position: relative;
    transition: all .3s;
	overflow: visible;
	padding-right: 20px;
	width: 50px;
	box-sizing: border-box;
}
.gnavi__list::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #B5B5B5;
    border-left: 2px solid #B5B5B5;
    transform: rotate(225deg);
    position: absolute;
    right: 0px;
    top: calc(50% - 5px);
}
.dropdown__lists {
	display: none;/*子 デフォルトでは非表示の状態にしておく*/
	background: #f9f9f9;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
	color: #454545;
	width: 200px;
	position: absolute;
	top: 40px;
	right: -10px;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    height: 60px;
    transition: all .5s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 2px;
	background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: rgba(36,188,234,0.2);
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 0.9375em;
	height: 100%;
    color: #000;
    text-decoration: none;
    position: relative;
}
/* .dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
} */

@media screen and (max-width: 768px){
	.gnavi__list {/*親*/
		padding-right: 0;
		width: 20px;
		margin-right: 20px;
	}
	.gnavi__list::after {
		display: none;
	}
}

/* ====================
 //mypage　ドロップダウンメニュー
 ==================== */


.nav-header__link {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  height: 100%;
  color: #24BCEA;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 0.6rem;
  min-width: 100px;
	text-decoration: none;
}

.nav-header__link:after {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px; /*アンダーラインの太さ*/
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;

  bottom: -0.6rem; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  width: 60%;
  background: #24BCEA;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.nav-header__link:hover {
  text-decoration: none;
}
.nav-header__link.active:after,
.nav-header__link:hover:after {
  bottom: -1em;;
  opacity: 1;
  visibility: visible;
}

.nav-header__contact,
.nav-header__login,
.btn_more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  line-height: 1;
  text-align: center;
  outline: none;
  cursor: pointer;
  background-color: #24BCEA;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 8px;
  padding: 10px 9px;
  border-radius: 100px;
	transition: all 0.3s ease-out;
	text-decoration: none;
	width: 80px;
}

.nav-header__contact.mypage {
  width:160px;
}

.nav-header__contact:hover {
	text-decoration: none;
	transform: scale(1.05);
}
.btn_more:hover {
	text-decoration: none;
}
.nav-header__login {
  background-color: #fff;
  color: #24BCEA;
  border: 1px solid #24BCEA;
  transition: all 0.3s ease-out;
	text-decoration: none;
}
.nav-header__login:hover {
  background-color: #24BCEA;
  color: #fff;
	text-decoration: none;
}

.nav-header__contact .free {
	display: none;
}
@media (min-width: 992px) {
	.nav-header__contact,
	.nav-header__login,
	.btn_more {
		width: 150px;
		font-size: 1.6rem;
		margin-left: 1.6rem;
		padding: 15px 20px;
		margin-left: 10px;
		text-decoration: none;
	}
	.nav-header__contact .free {
		display: inline-block;
		font-size: 1rem;
		margin: 0 0.5rem;
	}
}

.btn_more{
  padding: 2rem;
  width: 250px;
}
.btn_more:hover {
	text-decoration: none;
	transform: scale(1.05);
}

.btn_more_area{
  display: flex;
  justify-content: center;
}
.btn_more_area > * {
  margin: 0 5px;
}

@media (max-width: 640px) {
	.btn_more_area {
		flex-direction:column;
	}
	.btn_more_area a,
	.btn_more_area button {
		margin: 0 auto 10px;
	}
}

.nav-header__contact:hover {
  background-color: #24BCEA;
}

.contact_btn_bg_w{
  background-color: #fff;
  color: #24BCEA;
  border: 1px solid #24BCEA;
	transition: all 0.3s ease-out;
}

.contact_btn_bg_w:hover {
  background-color: #24BCEA;
  color: #fff;
}

.btn_more_bg_g{
  background-color: #F3F4F4;
  color: #24BCEA;
  border: 1px solid #24BCEA;
	transition: all 0.3s ease-out;
}

.btn_more_bg_g:hover {
  background-color: #F3F4F4;
	text-decoration: none;
	transform: scale(1.05);
}



.nav-header__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 35px;
	height: 35px;
	cursor: pointer;
	margin-left: 10px;

	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;

}

@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}

.nav-header__toggle:hover {
  /* background: #24BCEA; */
}

.nav-header__toggle-line {
  display: block;
  width: 100%;
  border-bottom: 2px solid #707070;
}

.nav-header__toggle-line:nth-child(2) {
  margin: 8px 0px;
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}

.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: rgba(255,255,255,0.95);
  border-left: #e2e2e2 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.nav-drawer[data-open="true"] .nav-drawer__container {
  animation-name: menu-container-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__container {
  animation-name: menu-container-leaved;
}

.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}

.nav-drawer__menu-item {
  border-bottom: #e2e2e2 1px dashed;
}

.nav-drawer__menu-item:hover {
  background: #efefef;
}

.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
}

.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}

.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}

.nav-drawer__menu-button {
  display: flex;
  margin: 0 0 20px;
  padding: 0px;
}

.nav-drawer__button-close {
  position: relative;
  background-color: #24BCEA;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 6rem;
  height: 6rem;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #09c6c8;
}

.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}

.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}

.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}

.nav-drawer[data-open="true"] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}

.nav-drawer[data-open="false"] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #24BCEA;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}

.nav-pagetop:before {
  display: block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5ce";
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.nav-pagetop:after {
  content: 'PAGETOP';
  display: block;
  padding: 4px 0px;
}

.nav-pagetop:hover {
  background: #24BCEA;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.mainvisual {
  position: relative;
  background-image: url("../images/index/mainvisual.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mainvisual__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  width: 100vw;
  height: 50vh;
  padding-top: 6rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: -4rem;
}
.mainvisual__container h2,
.mainvisual__container h1{
  letter-spacing: 0.6rem;
}

@media screen and (max-width: 640px) {
	.mainvisual {
		position: relative;
		background-image: none;
	}
	.mainvisual__container {
		position: relative;
		background-image: url("../images/index/mainvisual_sp.png");
		background-size: 100% auto;
		background-position: top center;
		background-repeat: no-repeat;
		display: block;
		height: 500px;
		padding-top: 0;
		margin: 0 auto;
		text-align: center;
		top: 0;
	}
	.mainvisual__container h2,
  .mainvisual__container h1{
		letter-spacing: 0.6rem;
		font-size: 2.4rem;
		position: absolute;
		left: 50%;
		top: 40%;
		transform: translateX(-50%) translateY(-50%);
		width: 92%;
	}
}
@media screen and (max-width: 480px) {
	.mainvisual__container {
		height: 400px;
	}
	.mainvisual__container h2,
  .mainvisual__container h1{
		top: 40%;
	}
}


#page_middle{
  background-color: #fff;
}
.page_middle__container {
  display: flex;
	padding: 0 0 80px;
}
.page_middle__container_left{
  position: relative;
  width: 40%;
  z-index: 100;
}
.page_middle__container_left a{
	max-width: 400px;
	transition: 0.5s;
}
.page_middle__container_left a:hover {
	opacity: 0.6;
}
.page_middle__container_right {
  margin: 0;
  width: 60%;
  position: relative;
}
.page_middle__container_right h4{
	position: absolute;
	left: 50%;
	top: 50%;
	letter-spacing: 0.75rem;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.page_middle__container {
		padding: 0 0 60px;
	}
	.page_middle__container_left{
		width: 100%;
		height: auto;
		text-align: center;
	}
	.page_middle__container_left a{
		position: relative;
		left: 0;
		bottom: auto;
		width: 92%;
	}
	.page_middle__container_right {
		display: none;
	}
}

.mainvisual__text-main {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  font-weight: 700;
  font-size: 4.0rem;
  line-height: 1;
}

@media screen and (min-width: 992px) {
  .mainvisual__text-main {
    font-size: 5.6rem;
  }
}

.mainvisual__text-sub {
  padding: 2rem;
  color: #222222;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
	.mainvisual__text-sub {
		display: none;
	}
}


.pagevisual {
  position: relative;
  z-index: 0;
  margin: 0;
  padding-top: calc(6rem + 6.4rem);
  padding-bottom: 6.4rem;
  background-image: url("../img/mainvisual.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .pagevisual {
    padding-top: calc(6rem + 9.6rem);
    padding-bottom: 9.6rem;
  }
}

.pagevisual::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
}

.pagevisual__container {
  position: relative;
  margin: 0 auto;
  padding: 12.4rem 15px;
  position: relative;
  z-index: 2;
  padding-top: 0;
  padding-bottom: 0;
}

.pagevisual__text-main {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  font-size: 3.2rem;
}

@media screen and (min-width: 992px) {
  .pagevisual__text-main {
    font-size: 4.0rem;
  }
}

.pagevisual__text-main:after {
  display: block;
  max-width: 20rem;
  margin: 1.6rem 0rem;
  border-bottom: 3px solid #222222;
  background: #222222;
  content: "";
}

.pagevisual__text-sub {
  color: #222222;
}

.breadcrumbs__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: .8rem 15px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__list-item {
  font-size: 1.6rem;
}

.breadcrumbs__list-item:not(:first-child)::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
}

.breadcrumbs__link {
  color: #222222;
}

.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}

/*
 * .breadcrumb
 * -------------------------------------------------------------------
 */
.breadcrumb {
  margin: 35px auto 0;
  padding: 0;
  list-style: none;
	width: 92%;
	max-width: 1200px;
	font-size: 0.875em;
}
.breadcrumb a { color: #000; }
.breadcrumb li {
  display: inline;
  list-style: none;
	position: relative;
	padding-right: 1em;
	margin-right: 1em;
}
.breadcrumb li:after {
	content: '';
	padding: 0 0.2em;
	color: #707070;
	width: 7px;
	height: 7px;
	display: inline-block;
	border-top: solid 1px #707070;
	border-right: solid 1px #707070;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	right: 0;
	top: 50%;
}
.breadcrumb li:last-child:after {
  content: '';
	border-top: none;
	border-right: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #000;
	text-decoration: none;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 640px){
	.breadcrumb {
	  margin: 15px auto 0;
	}
}


.page-heading__content {
  margin: 0;
  padding: 0;
}

.page-heading__content--left {
  text-align: left;
}

.page-heading__content--center {
  text-align: center;
}

.page-heading__content--right {
  text-align: right;
}

.page-heading__text-main {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  font-size: 4.0rem;
}

.page-heading__text-sub {
  font-weight: 400;
  font-size: 1.6rem;
  color: #222222;
  padding-top: 2.4rem;
}

.page-heading__message {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 6.4rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.page-heading-sub__content {
  margin: 0;
  padding: 0;
}

.page-heading-sub__content--left {
  text-align: left;
}

.page-heading-sub__content--center {
  text-align: center;
}

.page-heading-sub__content--right {
  text-align: right;
}

.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}

.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: .8rem;
  border-radius: 3px;
  background: #24BCEA;
  content: "";
}

.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}

#footer{
	position: relative;
	background-image: url("../images/common/bg_footer.png");
	background-repeat:no-repeat;
	background-size:cover;
	background-position: top center;
	width: 100vw;
	padding-top : 10%;
	margin:60px 0 0;
}
.footer__container {
  max-width: 1200px;
    font-size: 1.2rem;
    width: 92%;
    margin: 0 auto;
}
#footer h3{
  color: #24BCEA;
  position: absolute;
  left: 40%;
  top: 15%;
}
.footer__top__area{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding: 1rem 0 2rem;
	margin: 0 0 2.5rem;
}
.footer__top__left{
  bottom: 0%;
}
.footer__top__left__upper{
  margin: 0 1rem 1rem 0;
	max-width: 205px;
}
.footer__top__left__under{
  display: flex;
}
.footer__top__left__under a{
  margin: 0 1rem 1rem 0;
}
.footer__top__left__under a{
	width: 32px;
	display: inline-block;
}
.footer__top__right{
  display: flex;
  justify-content: space-around;
  width: 70%;
}
.footer__bottom__title{
  color: #fff;
}
.footer__bottom__area{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.5);
   padding: 1rem 0 2rem;
}
.footer__category,
.footer__info {
  list-style: none;
  justify-content: space-between;
	margin: 0;
}
.footer__category-item-link,.footer__info-item-link {
  color: #fff;
  font-size: 1.4rem;
  line-height: 3rem;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

/* .footer__category-item-link:hover, .footer__category-item-link:focus,.footer__info-item-link:hover, .footer__info-item-link:focus {
  text-decoration: underline;
} */

p.footer__info-item-link{
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer__copy {
  padding: 5rem 0 2rem 0;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 780px) {
  .footer__top__area,.footer__bottom__area{
    display: block;
  }
	.footer__top__area{
	border-bottom: none;
	padding: 1rem 0 0;
	margin: 0 0 0;
	}
	.footer__top__left{
		display: flex;
		align-items: center;
		margin-bottom: 50px;
	}
	.footer__top__left__upper,
	.footer__top__left__under {
		display: inline-block;
	}
	.footer__top__left__upper {
		width: 50%;
		margin: 0 30px 0 0;
	}
	.footer__top__left__under a {
	  margin: 0 1rem 0 0;
	}
	.footer__top__right {
		width: 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.footer__info {
		width: 50%;
		margin-bottom: 40px;
	}
	.footer__info-item a,
	.footer__category-item a {
		position: relative;
		padding-left: 1.2em;
	}
	.footer__info-item a::before,
	.footer__category-item a::before {
		content: "";
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		position: absolute;
		left: 0; top: 3px;
		transform: rotate(45deg);
		width: 8px; height: 8px;
	}
	p.footer__info-item-link {
	  font-size: 1.8rem;
	  line-height: 3rem;
	}
}
@media screen and (max-width: 780px) {
  #footer{
    background-image: url("../img/footer_sp.png");
    padding-top : 10%
  }
}

/*Cookieモーダル*/
.popup {
  width:100%;
  position:fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
  transition: .4s ease;
}


 .popup.ok {
   opacity: 0;
   visibility: hidden;
   z-index: -1;
 }

 .popup-btn{
  padding: 1.2rem 2rem;
  border-radius: 100px;
  width: 154px;
  background-color:#000;
  opacity: 0.8;
  color: #fff;
  border: 1px solid #fff;
 }

.popup-inner {
  width:100%;
  padding: 20px;
  position:absolute;
  bottom:0;
  left:50%;
  transform: translateX(-50%);
  background-color:#000;
  opacity: 0.8;
  display: flex;
  flex-direction: inherit;
  justify-content: space-evenly;
  align-items: center;
}

.popup-inner p {
  padding: 1rem;
  color: #fff;
}


.photo-modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1002;
  width: 100%;
  height: 100%;
  overflow: hidden;
  animation-duration: var(--photo-modal-duration);
  animation-fill-mode: forwards;
}

.photo-modal[data-open="true"] {
  animation-name: modal-photo-open;
}

.photo-modal[data-open="false"] {
  animation-name: modal-photo-close;
}

.photo-modal__container {
  max-width: 800px;
  max-height: 80%;
  margin: auto;
  overflow: auto;
}

.photo-modal__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.photo-modal .photo-modal__button, .photo-modal .photo-modal__button--close, .photo-modal .photo-modal__button--prev, .photo-modal .photo-modal__button--next, .photo-modal .button-detail__button, .photo-modal .button-detail__button--back, .photo-modal .button-detail__button--prev, .photo-modal .button-detail__button--next {
  position: absolute;
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.photo-modal .photo-modal__button:hover, .photo-modal .photo-modal__button--close:hover, .photo-modal .photo-modal__button--prev:hover, .photo-modal .photo-modal__button--next:hover, .photo-modal .button-detail__button:hover, .photo-modal .button-detail__button--back:hover, .photo-modal .button-detail__button--prev:hover, .photo-modal .button-detail__button--next:hover, .photo-modal .photo-modal__button:focus, .photo-modal .photo-modal__button--close:focus, .photo-modal .photo-modal__button--prev:focus, .photo-modal .photo-modal__button--next:focus, .photo-modal .button-detail__button:focus, .photo-modal .button-detail__button--back:focus, .photo-modal .button-detail__button--prev:focus, .photo-modal .button-detail__button--next:focus {
  color: #f2f2f2;
  outline: none;
}

.photo-modal .photo-modal__button::before, .photo-modal .photo-modal__button--close::before, .photo-modal .photo-modal__button--prev::before, .photo-modal .photo-modal__button--next::before, .photo-modal .button-detail__button::before, .photo-modal .button-detail__button--back::before, .photo-modal .button-detail__button--prev::before, .photo-modal .button-detail__button--next::before {
  font-size: 2.5rem;
}

.photo-modal__button--close {
  top: 0;
  right: 0;
}

.photo-modal__button--close::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cd";
}

.photo-modal__button--prev {
  top: 50%;
  left: 0;
}

.photo-modal__button--prev::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
}

.photo-modal__button--next {
  top: 50%;
  right: 0;
}

.photo-modal__button--next::before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
}

.photo-modal__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

.button-guide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
 text-shadow .2s,
 background-color .2s,
 border-color .2s,
 opacity .2s;
  display: flex;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 1.6rem;
  border: none;
  border-radius: 8px;
  background: #eeeeee;
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
}

.button-guide:hover, .button-guide:focus {
  background: #24BCEA;
  color: #ffffff;
}

.button-detail {
  display: flex;
  flex-wrap: wrap;
  max-width: 60rem;
  margin: 0 auto;
}

.button-detail .photo-modal__button, .button-detail .photo-modal__button--close, .button-detail .photo-modal__button--prev, .button-detail .photo-modal__button--next, .button-detail .button-detail__button, .button-detail .button-detail__button--back, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
 text-shadow .2s,
 background-color .2s,
 border-color .2s,
 opacity .2s;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0.4rem;
  background: #eeeeee;
  color: #222222;
}

.button-detail .photo-modal__button:hover, .button-detail .photo-modal__button--close:hover, .button-detail .photo-modal__button--prev:hover, .button-detail .photo-modal__button--next:hover, .button-detail .button-detail__button:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--next:hover, .button-detail .photo-modal__button:focus, .button-detail .photo-modal__button--close:focus, .button-detail .photo-modal__button--prev:focus, .button-detail .photo-modal__button--next:focus, .button-detail .button-detail__button:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--next:focus {
  background: #24BCEA;
  color: #ffffff;
}

.button-detail__button--back {
  width: 100%;
}

.button-detail__button--back:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e896";
  margin-right: 0.8rem;
}

.button-detail__button--prev {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .button-detail__button--prev {
    width: calc(50% - 15px);
    margin-right: 15px;
  }
}

.button-detail__button--prev:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
  margin-right: 0.8rem;
}

.button-detail__button--next {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .button-detail__button--next {
    width: calc(50% - 15px);
    margin-left: 15px;
  }
}

.button-detail__button--next:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  margin-left: 0.8rem;
}

.pagination__list,
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.pagination__list-item,
.pagination .page-numbers > li {
  margin: 0.3rem;
}

.pagination .pagination__link,
.pagination .page-numbers > li > a, .pagination .pagination__link--prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev, .pagination .pagination__link--next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.pagination__link,
.pagination .page-numbers > li > a {
  background-color: #eeeeee;
  color: #222222;
}

.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
  background-color: #24BCEA;
  color: #ffffff;
}

.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #222222;
}

.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cb";
  display: inline-block;
  margin-right: 0.6rem;
  transition: transform 0.2s;
}

.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
  background-color: #24BCEA;
  color: #ffffff;
}

.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
  transform: translateX(-4px);
}

.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
  min-width: 12rem;
  background-color: #eeeeee;
  color: #222222;
}

.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  display: inline-block;
  margin-left: 0.6rem;
  transition: transform 0.2s;
}

.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
  background-color: #24BCEA;
  color: #ffffff;
}

.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
  transform: translateX(4px);
}

.pagination .pagination__text,
.pagination .page-numbers > li > span, .pagination .pagination__text--current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current, .pagination .pagination__text--dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 1.6rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}

.pagination__text,
.pagination .page-numbers > li > span {
  background-color: #eeeeee;
  color: #222222;
}

.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
  background-color: #24BCEA;
  color: #ffffff;
}

.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
  background-color: #eeeeee;
  color: #222222;
}

@media screen and (min-width: 992px) {
  .form__form-group {
    display: flex;
  }
}

.form__form-group-title {
  padding: 1rem;
}

@media screen and (min-width: 992px) {
  .form__form-group-title {
    width: 260px;
    padding: 1.6rem;
  }
}

.form__form-group-content {
  padding: 1rem;
  display: flex;
}

@media screen and (min-width: 992px) {
  .form__form-group-content {
    width: calc(100% - 260px);
    padding: 1.6rem;
  }
}

.form .form__label, .form .form__label--itemname, .form .form__label--required {
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.form__label--itemname {
  color: #222222;
}

.form__label--required {
  margin-left: 0.4rem;
  padding: 0.4em 0.6em;
  border-radius: 3px;
  background: #fafafa;
  color: #aaaaaa;
  font-size: 1.4rem;
}

.form__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form__list-item {
  margin-bottom: 0.6rem;
}

.form .form__input, .form .form__input--text, .form .form__input--text-half, .form .form__input--textarea, .form .form__input--textarea-half, .form .form__input--select, .form .form__input--radio, .form .form__input--check {
  position: relative;
  width: 100%;
  padding: 0.4rem;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--select select, .form__input--select .form select {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0;
  border: 2px solid #efefef;
  background: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 旧Edge対応 */
  /* IE対応 */
}

.form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand {
  display: none;
}

.form .form__input--text input::placeholder, .form__input--text .form input::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--select select::placeholder, .form__input--select .form select::placeholder {
  color: #cccccc;
	font-size: 16px;
}

.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
  color: #cccccc;
	font-size: 16px;
}

.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
  color: #cccccc;
	font-size: 16px;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input {
  padding: 0.8rem 1.6rem;
  transition: border-color 0.4s;
}

.form .form__input--text input:focus, .form__input--text .form input:focus, .form .form__input--text-half input:focus, .form__input--text-half .form input:focus {
  border: 2px solid #24BCEA;
}

.form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea {
  padding: 1.6rem;
  transition: border-color 0.4s;
}

.form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus, .form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus {
  border: 2px solid #24BCEA;
}

.form__input--text-half {
  max-width: 50%;
}

.form__input--textarea-half {
  max-width: 50%;
}

.form__input--select {
  max-width: 300px;
}

.form__input--select select {
  padding: 0.8rem 2.4rem 0.8rem 1.6rem;
  cursor: pointer;
}

.form__input--select::after {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 0;
  margin: auto 0;
  border-width: 6px 4px 0;
  border-style: solid;
  border-color: #cccccc transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__input--radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form__input--radio .radio-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--radio .radio-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 1px solid #cccccc;
  border-radius: 50%;
}

.form__input--radio .radio-icon:before {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin: auto;
  border-radius: 50%;
  background: #24BCEA;
  content: "";
  transition: opacity 0.4s;
}

.form__input--radio .radio-text {
  color: #cccccc;
  transition: color 0.4s;
}

.form__input--radio .radio-input:checked + .radio-icon {
  border-color: #24BCEA;
}

.form__input--radio .radio-input:checked + .radio-icon:before {
  opacity: 1;
}

.form__input--radio .radio-input:checked ~ .radio-text {
  color: #24BCEA;
}

.form__input--check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.form__input--check .check-input {
  display: block !important;
  visibility: visible !important;
  opacity: 0 !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 4px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: none !important;
}

.form__input--check .check-icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8rem;
  border: 2px solid #cccccc;
}

.form__input--check .check-icon:after {
  opacity: 0;
  position: absolute;
  top: 0.5rem;
  left: 0.3rem;
  width: 1.6rem;
  height: 0.8rem;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  content: "";
  transition: opacity 0.4s;
}

.form__input--check .check-text {
  color: #cccccc;
  transition: color 0.4s;
}

.form__input--check .check-input:checked + .check-icon {
  border-color: #24BCEA;
}

.form__input--check .check-input:checked + .check-icon:after {
  opacity: 1;
  transform: rotate(-45deg);
  border-bottom: 2px solid #24BCEA;
  border-left: 2px solid #24BCEA;
}

.form__input--check .check-input:checked ~ .check-text {
  color: #24BCEA;
}

.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}

.table-overview tr th {
  width: 16rem;
  padding: .8rem;
  vertical-align: top;
}

.table-overview tr td {
  width: calc(100% - 16rem);
  padding: .8rem 1.6rem;
  vertical-align: top;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .news-item {
    flex-wrap: nowrap;
  }
}

.news-item__date {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 3.2rem 1.6rem 0;
}

@media screen and (min-width: 992px) {
  .news-item__date {
    margin: 0 1.6rem 0 0;
  }
}

.news-item__category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 3.2rem 1.6rem 0;
}

@media screen and (min-width: 992px) {
  .news-item__category {
    margin: 0 1.6rem 0 0;
  }
}

.news-item__category-label {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 12rem;
  padding: 0.3rem 0.6rem;
  border: 2px solid #24BCEA;
  color: #24BCEA;
  font-size: 1.4rem;
}

.news-item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222222;
}

.news-item__title:hover, .news-item__title:focus {
  text-decoration: underline;
}

.news-content {
  font-size: 1.8rem;
  line-height: 2.0;
  letter-spacing: .05em;
  text-align: left;
}

.news-content h1 {
  margin-top: 3.6rem;
  margin-bottom: 1.8rem;
  font-size: 3.6rem;
}

.news-content h2 {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
  font-size: 3.2rem;
}

.news-content h3 {
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
}

.news-content h4 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
}

.news-content h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.news-content h6 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.news-content p {
  margin-top: 2.0em;
  margin-bottom: 2.0em;
}

.news-content ul {
  margin-top: 2.0em;
  margin-bottom: 2.0em;
}

.news-content ol {
  margin-top: 2.0em;
  margin-bottom: 2.0em;
}

.news-content .box {
  margin-top: 3.6em;
  margin-bottom: 3.6em;
  padding: 2.4em;
  border: 4px solid #EFEFEF;
}


@media screen and (min-width: 992px) {
  .service-content-item {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .service-content-item__thumbnail {
    width: 30rem;
  }
}

.service-content-item__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  border-radius: .8rem;
}

.service-content-item__content {
  padding: 1.6rem;
}

@media screen and (min-width: 992px) {
  .service-content-item__content {
    width: calc(100% - 30rem);
    padding: 3.2rem;
  }
}

.service-content-item__content-title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .service-content-item__content-title {
    font-size: 2.4rem;
    text-align: left;
  }
}

.service-content-item__content-text {
  color: #aaaaaa;
}

.works-item {
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #ffffff;
  color: #222222;
  cursor: pointer;
}

.works-item__thumbnail {
  overflow: hidden;
}

.works-item__thumbnail-image {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.works-item__content {
  padding: 0.8rem;
}

@media (min-width: 992px) {
  .works-item__content {
    padding: 1.6rem;
  }
}

.works-item__content-title {
  color: #222222;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
}

.works-item:hover {
  box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.3);
}

.works-item:hover .works-item__thumbnail-image {
  transform: scale(1.1);
}

.works-item:hover .works-item__button-more {
  background: #222222;
  color: #ffffff;
}

.works-item:hover .works-item__button-more:after {
  transform: translateX(4px);
}

.blog-item {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  border-radius: .8rem;
  background: #ffffff;
  color: #222222;
  overflow: hidden;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

@media (min-width: 992px) {
  .blog-item {
    display: flex;
    max-width: 1000px;
  }
}

@media (min-width: 992px) {
  .blog-item__thumbnail {
    width: 40%;
  }
}

.blog-item__thumbnail-image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.blog-item__content {
  padding: 1.6rem;
}

@media (min-width: 992px) {
  .blog-item__content {
    width: 60%;
    padding: 3.2rem;
  }
}

.blog-item__title {
  margin: 0 0 .8rem 0;
  color: #222222;
  font-weight: 700;
  font-size: 2.4rem;
}

.blog-item__read {
  margin: 0 0 .8rem 0;
  color: #aaaaaa;
  font-size: 1.6rem;
}

.blog-item__button {
  text-align: right;
}

.blog-item__button-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
 text-shadow .2s,
 background-color .2s,
 border-color .2s,
 opacity .2s;
  padding: 1.2rem 2.4rem;
  background: #eeeeee;
  border-radius: 100px;
  color: #222222;
}

.blog-item__button-more:after {
  margin-left: 0.4rem;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: 'liga';
  content: "\e5cc";
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.blog-item:hover {
  box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.3);
}

.blog-item:hover .blog-item__button-more {
  background: #e1e1e1;
  color: #222222;
}

.blog-item:hover .blog-item__button-more:after {
  transform: translateX(4px);
}

.blog-content {
  font-size: 1.8rem;
  line-height: 2.0;
  letter-spacing: .05em;
  text-align: left;
}

.blog-content h1 {
  margin-top: 3.6rem;
  margin-bottom: 1.8rem;
  font-size: 3.6rem;
}

.blog-content h2 {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
  font-size: 3.2rem;
}

.blog-content h3 {
  margin-top: 2.8rem;
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
}

.blog-content h4 {
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
}

.blog-content h5 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blog-content h6 {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.blog-content p {
  margin-top: 2.0em;
  margin-bottom: 2.0em;
}

.blog-content ul {
  margin-top: 2.0em;
  margin-bottom: 2.0em;
}

.blog-content ol {
  margin-top: 2.0em;
  margin-bottom: 2.0em;
}

.blog-content .box {
  margin-top: 3.6em;
  margin-bottom: 3.6em;
  padding: 2.4em;
  border: 4px solid #EFEFEF;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * トップページ
 * -------------------------------------------------------------------
 */
#customer_review{
	  position: relative;
	  background-image: url("../images/common/bg_wave_gray.png");
	  background-repeat:no-repeat;
	  background-size:100%;
	  width: 100%;
	padding: 150px 0 0;
}
#customer_review h3,
.q_a h3 {
	color: #24BCEA;
	display: table;
	position: relative;
	padding: 0 0 0 60px;
	margin: 0 auto;
}

#customer_review .contents_slider {
	width: 90%;
}
.history h3{
  color: #24BCEA;
}
#customer_review h3::before,.q_a h3::before{
	content: '';
	display: inline-block;
	width: 50px;
	height: 50px;
	background-repeat:no-repeat;
	background-size: contain;
	vertical-align: middle;
	margin-right: 1rem;
	position: absolute;
	left: 0; top: 50%; transform: translateY(-50%);
}
#customer_review h3::before {
  background-image: url("../images/common/icon_customer-reviews.png");
}
.q_a h3::before {
  background-image: url("../images/common/icon_faq.png");
}


@media screen and (max-width: 640px) {
	#customer_review{
		padding: 100px 0 0;
	}
	#customer_review .contents_slider {
		width: 100%;
	}
	#customer_review h3,
	.q_a h3 {
		color: #24BCEA;
		font-size: 1.8rem;
		display: table;
		position: relative;
		padding: 0 0 0;
		margin: 0 auto 20px;
		width: 92%;
		text-align: left;
	}
	#customer_review h3 {
		padding: 0 15px 0;
		margin-bottom: 10px;
	}
	#customer_review h3::before,
	.q_a h3::before {
	  background-image: none;
	}
}


.customer_area_upper{
  display: flex;
  justify-content: space-around;
  padding: 1rem;
}
.customer_area_upper_left{
  width: 88px;
  height: 88px;
}
.customer_area_upper_left img{
  width: auto!important;
  height: 88px!important;
}
.customer_area_upper_right{
  display: block;
}
.customer_area_middle{
  display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
  margin-bottom: 1rem;
}
.customer_area_bottom{
  background: linear-gradient(to right, #5CE3E1, #4B86FA);
  color: #fff;
  padding: 0.5rem 1rem  1rem  1rem !important;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  height:35px;
}


.autoplay3{
  position: absolute;
  top: 50%;
}

.q_a{
  background-color: #F3F4F4!important;
}

.card__container {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 100px 15px;
}

.card__heading {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 640px) {
	.card__heading {
	  margin-bottom: 0;
	}
	.card__container {
	  padding: 60px 15px;
	}
}

.card__list {
  background: #fff;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 5rem;
}
.card__list.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}

.card__list-item {
  display: block;
  padding: 30px 15px;
}

.card__list-item img{
  width: 23px;
  height: 32px;
  margin-right: 1rem;
}

.card_content_top{
  display: flex;
  padding: 1rem;
}

.card_content_bottom{
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: center;
	padding: 1rem;
}

.card_content_bottom p{
  color: #9F9F9F;
  margin-left: 1rem;
  margin-right: 1rem;
	font-size: 0.875em;
}

.card_content_bottom a,
.card_content_bottom button {
  color: #24BCEA;
	border: none;
	background-color: transparent;
}


@media screen and (min-width: 992px) {
  .card__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
	.card__list-item {
	  display: block;
	  padding: 3rem;
	}
}

.card__guide {
  padding-top: 6.4rem;
}

.top-works__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-works__heading {
  margin-bottom: 6.4rem;
}

.top-works__list {
  margin: 0 -15px 0 -15px;
}

@media (min-width: 992px) {
  .top-works__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.top-works__list-item {
  margin: 15px 15px 4.8rem 15px;
}

@media (min-width: 992px) {
  .top-works__list-item {
    width: calc(100% / 3 - 30px);
    margin: 15px;
  }
}

.top-works__guide {
  padding-top: 6.4rem;
}

.top-news__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-news__heading {
  margin-bottom: 6.4rem;
}

.top-news__list {
  display: block;
  padding: 0;
  margin: 0 auto;
  max-width: 100rem;
}

.top-news__list-item {
  display: block;
  margin: 0;
  padding: 0;
}

.top-news__list-item:not(:first-child) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed #222;
}

.top-news__guide {
  padding-top: 6.4rem;
}

.top-blog {
  background: #fafafa;
}

.top-blog__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.top-blog__heading {
  margin-bottom: 6.4rem;
}

.top-blog__list {
  margin: 0;
}

.top-blog__list-item:not(:last-child) {
  margin: 0 0 4.8rem 0;
}

.top-blog__guide {
  padding-top: 6.4rem;
}


/*
 * 検索ボックス
 * -------------------------------------------------------------------
 */
.search-box {
  display: flex;
  background-color: #fff;
  box-shadow: 0 0 3px gray;
  border-radius: 5rem;
  height: 13%;
}

.search-box input[type="text"] {
  flex-grow: 1;
  padding: 0.7rem 0 0.7rem 2rem;
  border: none;
  border-radius: 5rem;
}
.search-box input::placeholder{
	font-size: 15px !important;
	color: #707070;
}
.search-box button {
	cursor: pointer;
	padding: .8rem 2rem .8rem 2rem;
	border-radius: 0 5rem 5rem 0;
	border: none;
	background: linear-gradient(to right, #5AD9E4, #51A0F6);
	color: #fff;
	font-size: 1.5rem;
	white-space: nowrap;
}
.search-box input:focus {
  outline: 0;
  border: none;
}
.search-box button:hover {
  background: linear-gradient(to right, #5CBAE8, #4E6CFD);
}

/* =============================
 * 検索ボックス　メインビジュアル
============================= */
.mainvisual .search-box {
	display: flex;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	border-radius: 5rem;
	height: 54px;
	width: 500px;
}
.mainvisual .search-box input[type="text"] {
  flex-grow: 1;
  padding: 0.7rem 0 0.7rem 2rem;
  border: none;
  border-radius: 5rem;
}
.mainvisual .search-box input::placeholder{
	font-size: 15px !important;
	color: #707070;
}
.mainvisual .search-box button {
	cursor: pointer;
	padding: .8rem 2rem .8rem 2rem !important;
	border-radius: 0 5rem 5rem 0;
	border: none;
	color: #fff;
	font-size: 1.5rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	white-space: nowrap;
	position: relative;
	z-index: 0; /* グラデーションよりも上に配置 */
}

/* ボタン本体の装飾 */
.mainvisual .search-box button {
  position: relative; /* static以外を指定 */
  z-index: 0; /* グラデーションよりも上に配置 */
  display: inline-block; /* inline以外にする */
  background: transparent; /* 背景を透明にする */
  overflow: hidden; /* はみ出した部分を非表示(角丸を付ける場合は必須) */
  cursor: pointer; /* カーソルをポインターにする */
  /* 以下ボタンのテキスト装飾(自由にカスタマイズしてください) */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

/* buttonタグのリセットCSS */
.mainvisual .search-box button {
  border: none;
  appearance: none;
  padding: 0;
}


/* .mainvisual .search-box button:hover {
	background: linear-gradient(to right bottom, #5DC1E6, #4C61FF);
}
*/

/* ::before, ::afterで2種類のグラデーションを用意 */
.mainvisual .search-box button::before,
.mainvisual .search-box button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* グラデーション1 */
.mainvisual .search-box button::before {
  transition: all 0.6s; /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(to right, #5AD9E4, #51A0F6);
}

/* グラデーション2 */
.mainvisual .search-box button::after {
  z-index: -2;
  background: linear-gradient(to right bottom, #5DC1E6, #4C61FF);
}

/* ホバー時にグラデーション1を透明にする */
.mainvisual .search-box button:hover::before {
  opacity: 0;
}






@media screen and (max-width: 640px) {
	.mainvisual .search-box {
		background-color: transparent;
		flex-direction: column;
		box-shadow: none;
		height: auto;
		width: 100%;
		position: absolute;
		bottom: 20px;
	}

	.mainvisual .search-box input[type="text"] {
	  padding: 10px 30px;
	  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.3);
		margin:0 auto 6px;
		width: 88%;
		-webkit-appearance: none;
		appearance: none;
	}
	.mainvisual .search-box input::placeholder{
		font-size: 14px !important;
		text-align: center;
	}
	.mainvisual .search-box button {
		padding: 13px 30px;
		border-radius: 5rem;
		margin:0 auto;
		width: 88%;
	}
}

/*
 * 人気のキーワード
 * -------------------------------------------------------------------
 */
.popular_kw{
background-color: #F3F4F4;
text-align: center;
font-size: 1.4rem;
width: 100%;
	padding: 6px 0;
}
.popular_kw a{
	color: #4E6CFD;
	line-height: 3rem;
	letter-spacing: 0.1em;
	margin: 0.5rem;
	color: #000;
  text-decoration: underline;
}
.popular_kw a:first-of-type {
	margin: 0.5rem 0.5rem 0.5rem 0;
}
@media screen and (max-width: 640px) {
	.popular_kw{
		text-align: left;
		padding: 6px 4%;
	}
}

/*
 * スライダー
 * -------------------------------------------------------------------
 */

/*===================================================================
カテゴリー別
=====================================================================*/
.contents_slider#cat .slide_content img {
	border-radius: 4px;
}
.contents_slider#cat .slide_content {
  box-shadow: none;
}
/*===================================================================
=====================================================================*/

.slick-slider {
  display: flex!important;
  text-align: center;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
}
.slick-slide {
	margin: 0 7px;
}
.class-detail__wrap .slick-slide { /* class-detailスライダー */
	margin: 0 0;
}

.contents_slider{
	max-width: 1200px;
	margin: 60px auto 0;
	padding: 0;
}
.contents_slider h3{
	margin: 3rem;
	letter-spacing: 0.1em;
}
.slide_content {
	max-width:229px!important;
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 1rem;
	position: relative;
	vertical-align: top;
}
.autoplay3 .slide_content{
  max-width: 377px!important;
	transition: 0.3s;
}
.autoplay3 .slide_content img{
	max-width: 229px !important;
	height: auto;
	width: 100%;
}
.slide_content:hover{
	opacity: 0.6;
	text-decoration: none;
}
.slide_content a:hover{
	text-decoration: none;
}
.slide_content img{
	margin: 0 auto!important;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.slide_content img{
  max-width:229px!important;
  height: auto;
	width: 100%;
}
/* この値で左右のスライドを少しだけ表示させることができる */
.slider-img{
  margin: 0;
}

.ranking .slide_content {
	padding: 0 0;
	margin: 6px 0;
}
.ranking .slide_content .ranking_num {
	width: 16%;
	position: absolute;
	left: 4%; top: -5px;
}
.slide_content p{
  text-align: left;
  font-size: 1.2rem;
  padding: 1rem 1rem 0 1rem;
}
.slide_content_tag{
  border: 1px solid #E0DDDD;
  border-radius: 50px;
  display: inline-block;
  margin: 1rem 1rem 0 1rem;
}
.slide_content_tag p{
  padding-top: 0.1rem!important;
  padding-bottom: 0.1rem!important;
}
.slide_content_bl_right{
  margin-top: 0.8rem;
}
.slide_content_bl_right p{
  color: #454545;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.slide_content_bl_right p:last-of-type{
  margin-bottom: 10px;
}

@media screen and (max-width: 800px){
	.contents_slider{
		margin: 30px auto 0;
	}
	.ranking .slide_content,
	.slide_content {
		padding: 0 0;
		margin: 6px 1%;
		width: 31% !important;
	}
	#customer_review .slide_content {
		padding: 0 0;
		margin: 6px 1%;
		width: 98% !important;
	}

}
@media screen and (max-width: 768px){
	.contents_slider{
		margin: 0 auto 0;
	}
	.contents_slider h3{
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	.contents_slider#total_ranking h3{
		margin-top: 10px;
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 600px){
	.contents_slider{
		margin: 0 auto 0;
	}
	.ranking .slide_content,
	.slide_content {
		padding: 0 0;
		margin: 6px 1%;
		width: 48% !important;
	}
	#customer_review .slide_content {
		padding: 0 0;
		margin: 6px 1%;
		width: 98% !important;
	}

}

/*-----------矢印表示----------*/
.slick-slider{
  display: flex!important;
  text-align: center;
}
.slick-next{
  right:0!important;
}
.slick-prev{
  left:0!important;
}
.slick-arrow{
  width: 26px!important;
  height: 26px!important;
  z-index:2!important;
  margin:auto;
	cursor: pointer;
}
.slick-arrow:before{
  font-size: 10rem!important;
  opacity:1!important;
}
.prev-arrow {
  left: 0;
}
.next-arrow {
  right: 0;
}
img.slack-arrow.next-arrow{
  height: 30px!important;
  display: none!important;
}
/*------------------------------*/

/*
 * エリア別ランキング　カテゴリ別ランキング
 * -------------------------------------------------------------------
 */

#area_ranking {
	margin-top: 0;
	padding-top: 100px;
	background-image: url("../img/chatch_bg.png");
	background-size: 60% auto;
	background-position: right top;
	background-repeat: no-repeat;
}
#cat_ranking {
	margin-top: 60px;
}
@media screen and (max-width: 640px) {
	#area_ranking {
		padding-top: 60px;
		background-image: none;
	}
	#cat_ranking {
		margin-top: 30px;
	}
}

/*
 * ランキング
 * -------------------------------------------------------------------
 */
.slide_content_info{
  display: block;
  text-align: left;
}
.slide_content_info p.slide_content_info_title{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height:50px;
}
.slide_content_info_title{
  font-weight: bold;
}
.slide_content_bottom{
  display: flex;
}
.slide_content_bottom_left{
  display: flex;
}
.slide_content_bl_left{
  margin: 1rem;
}
.slide_content_bottom_right{
  display: block;
}
.slide_content_bottom_right{
  margin: 1.4rem 1rem;
}
.slide_content_bottom_right img{
  height:24px;
  width:27px;
}
.slide_content_bl_left img{
  width: 39px!important;
}

.slide_content img.ranking{
  width: 216px!important;
  height: 119px!important;
  object-fit: cover; /* この一行を追加するだけ！ */
}



/*
 * 新着情報
 * -------------------------------------------------------------------
 */
.news-list__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.news-list__list {
  display: block;
  padding: 0;
  margin: 0 auto;
  max-width: 100rem;
}

.news-list__list-item {
  display: block;
  margin: 0;
  padding: 0;
}

.news-list__list-item:not(:first-child) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed #222;
}

.news-list__pagination {
  padding-top: 6.4rem;
}

.news-detail__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  max-width: 96rem;
  margin: 0 auto 4.8rem auto;
}

.news-detail__title {
  margin-bottom: 4.8rem;
  font-weight: 700;
  font-size: 3.2rem;
}

.news-detail__image {
  margin-bottom: 4.8rem;
}

.news-detail__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.news-detail__body {
  margin-bottom: 4.8rem;
  background: #ffffff;
}

@media screen and (min-width: 992px) {
  .news-detail__body {
    padding: 3.6rem;
  }
}

.news-detail__button {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .news-detail__button {
    padding-top: 6.4rem;
  }
}

/*
 * サービス紹介
 * -------------------------------------------------------------------
 */
.service-feature__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.service-feature__heading {
  margin-bottom: 6.4rem;
}

.service-feature__list {
  background: #fff;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 992px) {
  .service-feature__list {
    display: flex;
    padding: 3.2rem;
  }
}

.service-feature__list-item {
  padding: 2.4rem 1.6rem;
}

@media screen and (min-width: 992px) {
  .service-feature__list-item:not(:first-child) {
    border-left: 1px dashed #aaaaaa;
  }
}

.service-feature__guide {
  margin-top: 6.4rem;
}

.service-content__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.service-content__heading {
  margin-bottom: 6.4rem;
}

.service-content__list {
  max-width: 100rem;
  margin: 0 auto;
}

.service-content__list-item {
  margin-bottom: 4.8rem;
}

.service-content__guide {
  margin-top: 6.4rem;
}

/*
 * 制作実績
 * -------------------------------------------------------------------
 */
.works-list__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.works-list__list {
  margin: 0 -15px 0 -15px;
}

@media (min-width: 992px) {
  .works-list__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.works-list__list-item {
  margin: 15px 15px 4.8rem 15px;
}

@media (min-width: 992px) {
  .works-list__list-item {
    width: calc(100% / 3 - 30px);
    margin: 15px;
  }
}

.works-list__pagination {
  padding-top: 6.4rem;
}

.works-detail__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.works-detail__image .works-detail__image {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.works-detail__image--main {
  margin-bottom: 4rem;
}

.works-detail__image--sub {
  margin-bottom: 1.6rem;
}

.works-detail__list {
  list-style: none;
  margin: 0 -15px;
  padding: 0;
}

@media (min-width: 992px) {
  .works-detail__list {
    display: flex;
    flex-wrap: wrap;
  }
}

.works-detail__list-item {
  margin: 0 15px;
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .works-detail__list-item {
    width: calc(100% / 2 - 30px);
  }
}

.works-detail__text-main {
  margin-bottom: 4rem;
  color: #aaaaaa;
}

.works-detail__text-sub {
  margin: 0;
  color: #aaaaaa;
  font-size: 1.4rem;
}

.works-detail__button {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .works-detail__button {
    padding-top: 6.4rem;
  }
}

/*
 * 会社情報
 * -------------------------------------------------------------------
 */
.about-me__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

@media screen and (min-width: 992px) {
  .about-me__content {
    display: flex;
  }
}

.about-me__content-left {
  margin-bottom: 4.8rem;
}

@media screen and (min-width: 992px) {
  .about-me__content-left {
    width: 50%;
    padding-right: 2.4rem;
    margin-bottom: 0;
  }
}

.about-me__content-right {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .about-me__content-right {
    width: 50%;
  }
}

.about-me__image img {
  display: block;
  max-width: 100%;
  border-radius: 1.6rem;
}

.company-overview__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.company-overview__heading {
  margin-bottom: 6.4rem;
}

@media screen and (min-width: 992px) {
  .company-overview__content {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .company-overview__content-image {
    width: 50%;
  }
}

.company-overview__content-image img {
  border-radius: 1.6rem;
}

.company-overview__content-table {
  padding: 3.2rem 0 0 0;
}

@media screen and (min-width: 992px) {
  .company-overview__content-table {
    width: 50%;
    padding: 0 0 0 3.2rem;
  }
}

.company-overview__guide {
  padding-top: 6.4rem;
}

.about-info__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.about-info__heading {
  margin-bottom: 6.4rem;
}

@media screen and (min-width: 992px) {
  .about-info__content {
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  .about-info__content-image {
    width: 50%;
  }
}

.about-info__content-image img {
  border-radius: 1.6rem;
}

.about-info__content-table {
  padding: 3.2rem 0 0 0;
}

@media screen and (min-width: 992px) {
  .about-info__content-table {
    width: 50%;
    padding: 0 0 0 3.2rem;
  }
}

.about-info__guide {
  padding-top: 6.4rem;
}

/*
 * ブログ
 * -------------------------------------------------------------------
 */
.blog-list__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.blog-list__list {
  margin: 0;
}

.blog-list__list-item:not(:last-child) {
  margin: 0 0 4.8rem 0;
}

.blog-list__pagination {
  padding-top: 6.4rem;
}

.blog-detail__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
  max-width: 96rem;
  margin: 0 auto 4.8rem auto;
}

.blog-detail__title {
  margin-bottom: 4.8rem;
  font-weight: 700;
  font-size: 3.2rem;
}

.blog-detail__image {
  margin-bottom: 4.8rem;
}

.blog-detail__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.blog-detail__body {
  margin-bottom: 4.8rem;
  background: #ffffff;
}

@media screen and (min-width: 992px) {
  .blog-detail__body {
    padding: 3.6rem;
  }
}

.blog-detail__button {
  padding-top: 3.2rem;
}

@media screen and (min-width: 992px) {
  .blog-detail__button {
    padding-top: 6.4rem;
  }
}

/*
 * 問い合わせ
 * -------------------------------------------------------------------
 */
.contact-guide {
  padding: 12.4rem 15px;
}

.contact-guide__container {
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
  max-width: 1140px;
  margin: 0 auto;
  padding: 6.4rem 15px;
  background: #fafafa;
}

.contact-guide__heading {
  margin: 0 0 4.8rem 0;
  text-align: center;
}

.contact-guide__heading-main {
  font-weight: 700;
  font-family: 'Comfortaa', cursive;
  font-size: 4.8rem;
}

.contact-guide__heading-main:after {
  display: block;
  max-width: 300px;
  margin: 1.6rem auto 1.6rem auto;
  border-bottom: 3px solid #222222;
  content: "";
}

.contact-guide__heading-sub {
  font-weight: 400;
  font-size: 1.4rem;
}

.contact-guide__message {
  margin: 0 0 4.8rem 0;
  color: #aaaaaa;
  font-size: 1.6rem;
  text-align: center;
}

.contact-guide__list-item {
  margin: 0 0 2.4rem 0;
  text-align: center;
}

.contact-guide__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
 text-shadow .2s,
 background-color .2s,
 border-color .2s,
 opacity .2s;
  width: 100%;
  max-width: 600px;
  padding: 1.6rem;
  border: 1px solid #24BCEA;
  border-radius: 50px;
  background: #24BCEA;
  color: #ffffff;
}

.contact-guide__button:hover {
  background: #24BCEA;
}

.contact-form__container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12.4rem 15px;
}

.contact-form__heading {
  margin-bottom: 3.2rem;
}

.contact-form__content {
  margin: 0 auto;
  padding: 3.2rem 1rem;
  background: #fff;
  border: 4px solid #efefef;
}

@media (min-width: 992px) {
  .contact-form__content {
    padding: 6.4rem 4rem;
  }
}

.contact-form__form {
  max-width: 850px;
  margin: 0 auto 1.6rem auto;
}

@media (min-width: 992px) {
  .contact-form__form {
    margin: 0 auto 6.4rem auto;
  }
}

.contact-form__button {
  text-align: center;
}

.contact-form__button-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: box-shadow .2s,
 text-shadow .2s,
 background-color .2s,
 border-color .2s,
 opacity .2s;
  background: #24BCEA;
  padding: 1em 3em;
  color: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .contact-form__button-submit {
    max-width: 240px;
  }
}

.contact-form__button-submit:hover, .contact-form__button-submit:focus {
  background: #24BCEA;
}

/*
 * モーダル
 * -------------------------------------------------------------------
 */
.modalArea {
  display: none;
  position: fixed;
  z-index: 1001; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
//  [ backdrop-filter ] が効かないブラウザへの対応
@supports not (backdrop-filter: blur(5px)) {
  .modalBg {
    background-color: rgba(0,0,0,0.9);
  }
}
// 上の [ @supports ] はie11には効かないので、ie11は個別に対応
@media all and (-ms-high-contrast: none) {
  .modalBg {
    background-color: rgba(0,0,0,0.5);
  }
}


.modalWrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%,-50%);
	width: 70%;
	max-width: 500px;
	padding: 50px 50px;
	box-sizing: border-box;
	background-color: #fff;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modalContents {

}
.modalContents h4 {
	color: #24BCEA;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
}
.modalContents textarea {
	width: 100%;
	height: 7em;
	margin: 10px auto 50px;
}
.modalContents input[type="text"] {
	width: 100%;
	height: 3em;
  max-width: none!important;
}
.modalContents dt,
.modalContents dd {
	text-align: left;
}

/* 以下ボタンスタイル */
button {
  /* padding: 10px;
  background-color: #fff;
  border: 1px solid #282828;
  border-radius: 2px; */
  cursor: pointer;
}

#openModal {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%); */
}
.modalContents input[type="submit"].login {
	font-weight: bold;
	padding: 15px 3em;
	letter-spacing: 0.2em;
	border-radius: 50vh;
	background: linear-gradient(to right, #5CE3E1, #4B86FA);
	color: #fff;
	transition: all 0.3s ease-out;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
	display: inline-block;
	border: none;
	white-space: nowrap;
}

.modalContents input[type="submit"] {
	background-color: #fff;
	color: #24BCEA;
	border: 1px solid #24BCEA;
	transition: all 0.3s ease-out;
	font-size: 1.6rem;
	font-weight: bold;
	height: 56px;
	padding: 15px 3rem;
	-webkit-appearance: none;
	border-radius: 28px;
	letter-spacing: 0.2em;
	display: inline-block;
}
.modalContents input[type="submit"]:hover {
	background-color: #24BCEA;
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 991px) {
  .u-d-lg-none {
    display: none;
  }
}
@charset "UTF-8";
/*=============================================

00. 共通

===============================================*/
.flex_s_b {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_s_a {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.flex_c {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.flex {
	display: flex;
}
.flex_items_c {
	align-items: center;
}

.al_center { text-align: center !important; }

.align_c { align-items: center; }

.box_1_1 {
	width: 100%; margin-bottom: 10px;
}
.box_1_2 {
	width: 49%; margin-bottom: 10px;
}
.box_1_3 {
	width: 32%; margin-bottom: 10px;
}
.box_2_3 {
	width: 66%;
}
.box_1_4 {
	width: 24%;
}
.box_3_4 {
	width: 73%;
}
.box_1_5 {
	width: 20%;
}
.box_4_5 {
	width: 78%;
}
.box_3_7 {
	width: 41.71%;
}
.box_4_7 {
	width: 56.28%;
}


@media screen and (max-width: 640px){
	.box_1_2,
	.box_1_3,
	.box_2_3,
	.box_1_4,
	.box_3_4,
	.box_1_5,
	.box_4_5,
	.box_3_7,
	.box_4_7 {
		width: 100%!important;
		margin-bottom: 10px;
	}
}

.mb0 { margin-bottom: 0 !important; }
.mb10 { margin-bottom: 10px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }

.mt0 { margin-top: 0px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt40 { margin-top: 40px !important; }
.mt50 { margin-top: 50px !important; }
.mt60 { margin-top: 60px !important; }

.al_left { text-align: left; }
.al_right { text-align: right; }
.al_center { text-align: center; }

.f16 { font-size: 1.6rem !important;}
.f24 { font-size: 2.4rem !important;}

a.txt_link_b {
	color: #24BCEA;
	text-decoration: none;
	transition: 0.5s;
}
a.txt_link_b:hover {
	text-decoration: underline;
}

a.btn_contact,
a.btn_new_self,
.student_reg__wrap input[type="submit"] {
	font-weight: bold;
	padding: 20px 30px;
	border-radius: 50vh;
	background: linear-gradient(to right, #5CE3E1, #4B86FA);
	color: #fff;
	transition: all 0.3s ease-out;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
	display: inline-block;
	border: none;
	white-space: nowrap;
	cursor: pointer;
}
a.btn_new_self {
	letter-spacing: 0.2em;
	padding: 1em 2em;
	font-size: 2.4rem;
}
.student_reg__wrap input[type="submit"] {
	padding: 15px 3em;
	letter-spacing: 0.2em;
}
a.btn_contact:hover,
a.btn_new_self:hover,
.student_reg__wrap input[type="submit"]:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.search__wrap input[type="reset"] {
	background-color: transparent;
	font-weight: bold;
	padding: 15px 3rem;
	letter-spacing: 0.2em;
	color: #454545;
	transition: all 0.3s ease-out;
	display: inline-block;
	border: none;
	cursor: pointer;
}
.search__wrap input[type="reset"]:hover {
    transform: scale(1.05);
	text-decoration: none;
}

.btn_bg_blue {
	background-color: #24BCEA;
	color: #FFF;
	border: 1px solid #24BCEA;
	transition: all 0.3s ease-out;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 15px 3rem;
	border-radius: 100px;
	letter-spacing: 0.2em;
	display: inline-block;
}
.btn_bg_blue:hover {
	background-color: #FFF;
	color: #24BCEA;
	text-decoration: none;
}

@media screen and (max-width: 768px){
	a.btn_new_self {
		font-size: 1.6rem;
	}
}


.sp { display: none; }

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


/*===================================================================

00. 共通 #page_top

=====================================================================*/
@media screen and (max-width: 640px){
#page_top{
  width: 52px;
  height: 52px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #F3F4F4;
  opacity: 0.98;
	z-index: 1000;
}
#page_top a{
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  text-decoration: none;
}
#page_top a::before{
	content: "";
	border-top:solid 1px #757575;
	border-right:solid 1px #757575;
	transform: rotate(-45deg);
	position: absolute;
	width: 10px;
	height: 10px;
	top: -10px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page_top a::after{
  content: 'TOP';
  font-size: 13px;
  color: #757575;
  position: absolute;
  top: 27px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
}

/*===================================================================

01. class-detail

=====================================================================*/
/* -------------------------------------------------------------------

.class-detail__wrap

------------------------------------------------------------------- */
.class-detail__wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 92%;
	max-width: 1200px;
	margin: 60px auto;
}
.class-detail__wrap .txt_box {
	width: 48%;
}
.class-detail__wrap .img_box {
	width: 48%;
}
.class-detail__wrap .btn_box {
	width: 100%;
	display: flex; justify-content: flex-start;
	flex-wrap: wrap;
	margin: 30px 0 0;
}
.class-detail__wrap .txt_btn_box {
	width: 100%;
	display: flex; justify-content: flex-start;
	flex-wrap: wrap;
	margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
	.class-detail__wrap {
		margin: 16px auto 0px;
	}
	.class-detail__wrap .txt_box,
	.class-detail__wrap .img_box {
		width: 100%;
	}
	.class-detail__wrap .img_box {
		margin-top: 20px;
	}
	.class-detail__wrap .btn_box {
		justify-content: center;
	}
}


/* ======================================
.class-detail__wrap .btn_box
====================================== */
.class-detail__wrap .btn_box li {
	margin-right: 15px;
	width: 260px;
}
.class-detail__wrap .btn_box li a,
.class-detail__wrap .btn_box li button {
	font-weight: bold;
	padding: 20px 30px;
	border-radius: 50vh;
	width: 100%;
	text-align: center;
	letter-spacing: 0.1em;
	-webkit-appearance: none;
}
.class-detail__wrap .btn_box li.contact a,
.class-detail__wrap .btn_box li.contact button {
	background: linear-gradient(to right, #5CE3E1, #4B86FA);
	color: #fff;
	transition: all 0.3s ease-out;
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.3);
	display: inline-block;
	border: none;
}

.class-detail__wrap .btn_box li.contact:hover {
/*    transform: scale(1.05);*/
}
.class-detail__wrap .btn_box li.contact a:hover,
.class-detail__wrap .btn_box li.contact button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.class-detail__wrap .btn_box li.favorite a,
.class-detail__wrap .btn_box li.favorite button,
.class-detail__wrap .btn_box li.favorite_on a,
.class-detail__wrap .btn_box li.favorite_on button {
	background: #fff;
	color: #707070;
	transition: all 0.3s ease-out;
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
	position: relative;
	outline: none;
	display: inline-block;
	overflow: hidden;
	border: none;
}
/*キラッと光る*/
.class-detail__wrap .btn_box li.favorite a::before,
.class-detail__wrap .btn_box li.favorite button::before,
.class-detail__wrap .btn_box li.favorite_on a::before,
.class-detail__wrap .btn_box li.favorite_on button::before {
  content: '';
    /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
    /*キラッと光る形状*/
    width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,.1) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.class-detail__wrap .btn_box li.favorite a:hover::before,
.class-detail__wrap .btn_box li.favorite button:hover::before,
.class-detail__wrap .btn_box li.favorite_on a:hover::before,
.class-detail__wrap .btn_box li.favorite_on button:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.class-detail__wrap .btn_box li.favorite a:hover,
.class-detail__wrap .btn_box li.favorite_on a:hover {
	text-decoration: none;
}

.class-detail__wrap .btn_box li.favorite span,
.class-detail__wrap .btn_box li.favorite_on span {
	position: relative;
	padding: 0 0 0 40px;
	transition: all 0.3s ease-out;
}
.class-detail__wrap .btn_box li.favorite span::before,
.class-detail__wrap .btn_box li.favorite_on span::before {
	content: "";
	display: block;
	background-image: url("/images/class/icon_favorite.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 28px; height: 24px;
	position: absolute;
	left: 0; top: 50%; transform: translateY(-50%);
	transition: all 0.5s ease-out;
}
.class-detail__wrap .btn_box li.favorite:hover span::before {
	background-image: url("/images/class/icon_favorite_on.png");
}

.class-detail__wrap .btn_box li.favorite_on span::before {
	background-image: url("/images/class/icon_favorite_on.png");
}
.class-detail__wrap .btn_box li.favorite_on:hover span::before {
	background-image: url("/images/class/icon_favorite.png");
}

@media screen and (max-width: 768px) {
	.class-detail__wrap .btn_box li {
		margin-right: 0px; margin-bottom: 10px;
		width: auto;
	}
	.class-detail__wrap .btn_box li.contact a,
	.class-detail__wrap .btn_box li.contact button {
		background: linear-gradient(to right, #5CE3E1, #4B86FA);
		color: #fff;
		transition: all 0.3s ease-out;
		box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.3);
		display: inline-block;
		position: fixed;
		bottom: 10px;
		left: 10px;
		width: 75%;
		z-index: 999;
	}
}


/* ======================================
.class-detail__wrap .btn_txt_box
====================================== */
.class-detail__wrap .btn_txt_box li {
	margin-right: 15px;
	position: relative;
}
.class-detail__wrap .btn_txt_box li a::before {
	content: "";
	display: block;
	background-image: url("../images/class/icon_report.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 20px; height: 21px;
	position: absolute;
	left: 0; top: 50%; transform: translateY(-50%);
}
.class-detail__wrap .btn_txt_box li a {
	color: #707070;
	transition: .3s;
	font-size: 0.8125em;
	text-decoration: none;
	position: relative;
	padding: 0 0 0 25px;
}
.class-detail__wrap .btn_txt_box li a:hover {
	text-decoration: underline;
}

/* ======================================
.class-detail__wrap .img_box
====================================== */

.slider-class,
.slider-class li {
	list-style: none;
}

.class-detail__wrap .img_box .slick-slider {
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}
.class-detail__wrap .img_box *{
	vertical-align:top;
}
ul.slick-dots {
	bottom: -30px;
}

.class-detail__wrap h1,
.class-detail__wrap h1 a {
	color: #24BCEA;
	font-size: 2.4rem;
	text-decoration: none;
	transition: 0.5s;
}
.class-detail__wrap h1 a:hover {
	text-decoration: underline;
}

.class-detail__area {
	font-size: 0.875em;
	margin: 20px 0 0;
}
.class-detail__explanation {
	font-size: 1.125em;
	color: #454545;
	margin: 20px 0 0;
}

.class-detail__list1,
.class-detail__hashtag {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
}
.class-detail__list1 li {
	list-style: none;
	margin-right: 0.5em; margin-bottom: 18px;
}
.class-detail__list1 li.cate {
	color: #24BCEA;
	font-size: 1.125em;
	font-weight: bold;
}
.class-detail__list1 li.city {
	padding: 0 0 0 23px;
	position: relative;
}
.class-detail__list1 li.city::before {
	content: "";
	background: url("../images/class/icon_city.png");
	background-size: cover;
	width: 23px; height: 23px;
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.class-detail__list1 li.style {
	background-color: #707070;
	border-radius: 3px;
	color: #fff;
	font-size: 0.9375em;
	padding: 2px 5px;
}
.class-detail__list1 li.review {
	list-style: none;
	margin-right: 1em;
	font-size: 0.9375em;
}
.class-detail__list1 li.review .num {
	list-style: none;
	margin-left: 10px;
	font-size: 1.0625em;
	font-weight: bold;
}
.class-detail__list1 li.star {
	margin-right: 0;
}
.class-detail__list1 li.star img {
	height: 16px; width: auto;
}


.class-detail__hashtag li {
	background: #EAF0F0;
	border-radius: 50vh;
	font-size: 0.875em;
	list-style: none;
	padding: 5px 15px;
	margin: 0 5px 10px 0;
}

.class-detail__people li {
	padding: 0 0 0 25px;
	margin-right: 25px;
	position: relative;
	color: #656565;
	font-size: 0.9375em;
	font-weight: bold;
	display: inline-block;
}
.class-detail__people li::before {
	content: "";
	background: url("../images/class/icon_people.png");
	background-size: cover;
	width: 20px; height: 20px;
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.class-detail__name {
	margin: 20px 0 0;
	font-size: 0.9375em;
}

@media screen and (max-width: 640px){
	.class-detail__area {
		margin: 10px 0 0;
	}
	.class-detail__explanation {
		margin: 0;
	}
	.class-detail__list1 li {
		margin-bottom: 10px;
	}
}

.class-detail__staff {
	display:flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.class-detail__staff img {
	width: 50px; height: 50px;
	margin: 0 10px 0 0;
	border-radius: 50%;
}

.splide__slide img {
	height:366px;
	width:576px;
	background-color:#ccc;
	object-fit: cover;
}

/* -------------------------------------------------------------------

.class-detail__wrap2

------------------------------------------------------------------- */
.class-detail__wrap2 {
	background-image: url("../images/class/bg_class.png");
	width: 100%;
	margin: 60px auto;
	color: #454545;
	position: relative;
	padding: 0 0 120px;
}
.class-detail__wrap2::before {
	content: "";
	display: block;
	width: 100%; height: 60px;
	background-color: #fff;
	position: absolute;
	left: 0; top: 0;
}
.class-detail__wrap2 .inner {
	background: #fff;
	border-radius: 4px;
	width: 92%;
	max-width: 980px;
	margin: 60px auto;
	padding: 50px 50px;
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.15);
	position: relative;
}
.class-detail__wrap2 h2 {
	color: #24BCEA;
	font-size: 2.2rem;
	text-decoration: none;
	transition: 0.5s;
	position: relative;
	padding: 0 0 0 62px;
	margin: 50px 0 30px;
	letter-spacing: 0.1em;
}
.class-detail__wrap2 h2:first-child {
	margin: 0 0 30px;
}
.class-detail__wrap2 h2::before {
	content: "";
	background-size: cover;
	width: 62px; height: 62px;
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.class-detail__wrap2 h2.info::before {
	background-image: url("../images/class/icon_info.png");
}
.class-detail__wrap2 h2.cal::before {
	background-image: url("../images/class/icon_cal.png");
}
.class-detail__wrap2 h2.skill::before {
	background-image: url("../images/class/icon_skill.png");
}
.class-detail__wrap2 h2.price::before {
	background-image: url("../images/class/icon_price.png");
}
.class-detail__wrap2 h2.comment::before {
	background-image: url("../images/class/icon_comment.png");
}
.class-detail__wrap2 h2.access::before {
	background-image: url("../images/class/icon_access.png");
}

.class-detail__wrap2 p {
	margin-bottom: 1em;
	line-height: 1.8;
}

.class-detail__access .map {
	background-color: #E0DDDD;
}
.class-detail__access dt {
	font-weight: bold;
	padding: 0 0 5px;
}
.class-detail__access dd {
	padding: 0 0 5px;
}
.class-detail__access a {
	color: #24BCEA;
}

.class-detail__wrap2 a.btn_contact {
	position: absolute;
	left: 50%; bottom: -30px; transform: translateX(-50%);
}
.class-detail__wrap2 a.btn_contact:hover {
    transform: scale(1.05) translateX(-49%);
}

@media screen and (max-width: 768px) {
	.class-detail__wrap2 {
		padding: 0 0 40px;
		margin: 40px auto 0;
	}
	.class-detail__wrap2 .inner {
		margin: 40px auto;
		padding: 30px 20px;
	}
	.class-detail__wrap2 h2 {
		font-size: 1.8rem;
		padding: 0 0 0 52px;
		margin: 30px 0 25px;
		letter-spacing: 1px;
	}
	.class-detail__wrap2 h2:first-child {
		margin: 0 0 30px;
	}
	.class-detail__wrap2 h2::before {
		width: 52px; height: 52px;
	}
	.class-detail__wrap2 a.btn_contact {
		display: none;
	}
}



/* -------------------------------------------------------------------

.class-detail__review

------------------------------------------------------------------- */
.class-detail__review {
	padding: 70px 0 90px;
}
.class-detail__review h2,
.class-detail__faq h2 {
	font-size: 2.4rem;
  color: #24BCEA;
  display: table;
  position: relative;
  padding: 0 0 0 60px;
  margin: 0 auto 5rem;
}
.class-detail__review h2::before {
  background-image: url("../images/common/icon_customer-reviews.png");
}
.class-detail__faq h2::before {
  background-image: url("../images/common/icon_faq.png");
}
.class-detail__review h2::before,
.class-detail__faq h2::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 1rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.class-detail__review_box.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding:0;
	border: 0;
}

.class-detail__review_box {
	background: #F9F9F9;
	border: solid 2px #fff;
	border-radius: 4px;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
	color: #454545;
	max-width: 980px;
	padding: 40px 40px;
	margin: 0 auto 5rem;
	position: relative;
}
.class-detail__review_box .ph_box {
	width: 16%;
	text-align: center;
	font-size: 85%;
}
.class-detail__review_box .ph_box img {
		text-align: center;
		width: 65%;
		margin: 0 auto;
}
.class-detail__review_box .txt_box {
	width: 80%;
}
.class-detail__review_box .head_txt {
	font-size: 1.1875em;
	font-weight: bold;
	margin: 0 0 15px;
}
.class-detail__review_box .star {
	margin: 0 0 15px;
}
.class-detail__review_box .star img {
	max-height: 16px;
	height: auto; width: auto;
}

@media screen and (max-width: 768px) {
	.class-detail__review {
		padding: 30px 0 90px;
	}
	.class-detail__review h2,
	.class-detail__faq h2 {
		font-size: 1.8rem;
		color: #24BCEA;
		display: block;
		padding: 0 0 0;
		margin: 0 auto 20px;
		text-align: left;
		width: 92%;
	}
	.class-detail__review h2 {
		margin: 0 auto 40px;
	}
	.class-detail__review h2::before,
	.class-detail__faq h2::before {
	  background-image: none;
	}
	.class-detail__review_box {
		padding: 20px 20px;
		margin: 0 auto 5rem;
		width: 92%;
		position: relative;
	}
	.class-detail__review_box .ph_box {
		width: 100%;
		margin: -30px 0 20px;
		text-align: center;
	}
	.class-detail__review_box .ph_box img {
		max-width: 90px;
		margin: -30px auto 5px;
	}
	.class-detail__review_box .txt_box {
		width: 100%;
	}
}

/* -------------------------------------------------------------------

.class-detail__faq

------------------------------------------------------------------- */
.class-detail__faq {
	background-color: #F3F4F4;
	background-image: url("../images/common/bg_wave_gray_02.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100%;
	color: #454545;
	width: 100%;
	padding: 70px 0 150px;
}

.class-detail__faq_box {
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
	color: #454545;
	width: 92%;
	max-width: 980px;
	padding: 40px 40px;
	margin: 0 auto 5rem;
}

.class-detail__faq_box.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding:0;
}


.class-detail__faq_box .card__list-item {
  display: block;
  padding: 0;
}

@media screen and (max-width: 768px) {
	.class-detail__faq {
		background-size: 100% auto;
		padding: 45px 0 80px;
	}
	.class-detail__faq_box {
		padding: 20px 20px;
		margin: 0 auto 5rem;
		width: 92%;
	}
}


/*===================================================================

02. teacher

=====================================================================*/
/* -------------------------------------------------------------------

.teacher__wrap

------------------------------------------------------------------- */
.teacher__wrap {
	width: 90%; max-width: 980px;
	margin: 60px auto 50px;
	color: #454545;
}
.teacher__wrap .ph_box {
	width: 20%;
}
.teacher__wrap .txt_box {
	width: 75%;
}
.teacher_wrap .shop_name {
	font-size: 1.125em;
	font-weight: bold;
}
.teacher__wrap h1 {
	color: #24BCEA;
	font-size: 3.0rem;
}
.teacher__wrap h1 .eng {
	font-size: 1.6rem;
	margin-left: 1em;
}
.teacher__wrap .comment {
	color: #454545;
	margin: 10px 0 20px;
}

@media screen and (max-width: 768px){
.teacher__wrap {
	margin: 40px auto 30px;
}
	.teacher__wrap .ph_box {
		width: 100%;
		text-align: center;
	}
	.teacher__wrap .txt_box {
		width: 100%;
		text-align: center;
	}
	.teacher__wrap .ph_box img {
		max-width: 170px;
		display: block;
		margin: 0 auto 20px;
	}
	.teacher__wrap h1 {
		font-size: 2.2rem;
	}
	.teacher__wrap h1 .eng {
		font-size: 1.3rem;
	}
	.teacher__wrap a.btn_contact {
		font-size: 1.6rem;
		padding: 18px 38px;
		letter-spacing: 0.1em;
	}
}

/* -------------------------------------------------------------------

.teacher__wrap2

------------------------------------------------------------------- */
.teacher__wrap2 {
	background-image: url("../images/class/bg_class.png");
	width: 100%;
	margin: 60px auto;
	color: #454545;
	position: relative;
	padding: 0 0;
}
.teacher__wrap2::before,
.teacher__wrap2::after {
	content: "";
	display: block;
	width: 100%; height: 60px;
	background-color: #fff;
	position: absolute;
	z-index: 1;
}
.teacher__wrap2::before {
	left: 0; top: 0;
}
.teacher__wrap2::after {
	left: 0; bottom: 0;
}
.teacher__wrap2 .inner {
	background: rgba(255,255,255,0.7);
	border-radius: 4px;
	width: 92%;
	max-width: 980px;
	margin: 60px auto 0;
	padding: 50px 50px;
	box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.10);
	position: relative;
	z-index: 2;
}
.teacher__wrap2 h2 {
	color: #24BCEA;
	font-size: 2.2rem;
	text-decoration: none;
	transition: 0.5s;
	position: relative;
	padding: 0 0 0 62px;
	margin: 50px 0 30px;
}
.teacher__wrap2 h2:first-child {
	margin: 0 0 30px;
}
.teacher__wrap2 h2::before {
	content: "";
	background-size: cover;
	width: 62px; height: 62px;
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.teacher__wrap2 h2.profile::before {
	background-image: url("../images/teacher/icon_profile.png");
}
.teacher__wrap2 h2.qualification::before {
	background-image: url("../images/teacher/icon_qualification.png");
}
.teacher__wrap2 h2.media::before {
	background-image: url("../images/teacher/icon_media-1.png");
}
.teacher__wrap2 h2.activities::before {
	background-image: url("../images/teacher/icon_activities.png");
}
.teacher__wrap2 h2.award::before {
	background-image: url("../images/teacher/icon_award.png");
}
.teacher__wrap2 h2.media2::before {
	background-image: url("../images/teacher/icon_media.png");
}

.teacher__wrap2 p {
	margin-bottom: 1em;
	line-height: 1.8;
}

@media screen and (max-width: 768px){
	.teacher__wrap2 {
		margin: 60px auto 40px;
	}
	.teacher__wrap2 .inner {
		margin: 30px auto 0;
		padding: 30px 20px;
	}
	.teacher__wrap2 h2 {
		font-size: 1.8rem;
		padding: 0 0 0 52px;
		margin: 30px 0 25px;
	}
	.teacher__wrap2 h2:first-child {
		margin: 0 0 30px;
	}
	.teacher__wrap2 h2::before {
		width: 52px; height: 52px;

	}
}

/* -------------------------------------------------------------------

.teacher__wrap3

------------------------------------------------------------------- */
.teacher__wrap3 {
	width: 92%; max-width: 1200px;
	margin: 70px auto 0;
}
.teacher__wrap3 h2 {
	color: #24BCEA;
	font-size: 2.4rem;
	margin: 0 0 30px;
}
.teacher__wrap3 .class_info {
	background: #fff;
	border-radius: 4px;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
	color: #454545;
	max-width: 1200px;
	padding: 40px 40px;
	margin: 0 auto 70px;
	display: flex;
}

.teacher__wrap3 .class_info .class_img_box {
	width: 42%;
}

.teacher__wrap3 .class_info h3,
.teacher__wrap3 .class_info h3 a {
  color: #24BCEA;
  font-size: 2.2rem;
  text-decoration: none;
  transition: 0.5s;
}
.teacher__wrap3 .class_info h3 a:hover {
  text-decoration: underline;
}
.teacher__wrap3 .class_info .explanation {
  font-size: 1.125em;
  color: #454545;
  margin: 20px 0 0;
}
.teacher__wrap3 .class_info .list1,
.teacher__wrap3 .class_info .hashtag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}
.teacher__wrap3 .class_info .list1 li,
.teacher__wrap3 .class_info .hashtag li {
  list-style: none;
  margin-right: 0.5em;
  margin-bottom: 18px;
}
.teacher__wrap3 .class_info .list1 li.cate,
.teacher__wrap3 .class_info .list1 li.cate a {
	color: #24BCEA;
	font-size: 1.125em;
	text-decoration: none;
	transition: 0.3s;
}
.teacher__wrap3 .class_info .list1 li.cate a:hover {
	text-decoration: underline;
}

.teacher__wrap3 .class_info .hashtag li {
	border: solid 1px #E0DDDD;
	border-radius: 3px;
	text-decoration: none;
	font-size: 0.875em;
	color: #000;
	padding: 3px 8px;
	transition: .3s;
}
.teacher__wrap3 .class_info .hashtag li a:hover {
	background-color: #E0DDDD;
	text-decoration: underline;
}
.teacher__wrap3 .class_info .teacher {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}
.teacher__wrap3 .class_info .teacher img {
	width: 50px; height: 50px;
	margin: 0 10px 0 0;
}
.teacher__wrap3 .class_info .teacher .name {
	font-size: 1.125em;
	font-weight: bold;
}
.teacher__wrap3 .class_info .teacher .name .eng {
	font-size: 1.4rem;
}

.teacher__wrap3 .teacher_lessons {

}
.teacher__wrap3 .teacher_lessons .lesson_box {
  background: #F9F9F9;
  border: solid 2px #fff;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
  color: #454545;
  padding: 0 0;
	transition: 0.3s;
}
.teacher__wrap3 .teacher_lessons .lesson_box:hover {
  opacity: 0.6;
}
.teacher__wrap3 .teacher_lessons .lesson_box a,
.teacher__wrap3 .teacher_lessons .lesson_box a:hover {
	text-decoration: none;
}
.teacher__wrap3 .teacher_lessons .lesson_box p {
	padding: 10px 20px 20px;
	font-size: 0.9375em;
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 65px;
}
.teacher__wrap3 .teacher_lessons .lesson_box,
.teacher__wrap3 .teacher_lessons .lesson_box img {
	width: 380px!important;
  height: 150px!important;
  object-fit: cover;
}

@media screen and (max-width: 768px){
	.teacher__wrap3 {
		margin: 40px auto 0;
	}
	.teacher__wrap3 h2 {
		color: #000;
		font-size: 1.8rem;
		margin: 0 0 20px;
	}
	.teacher__wrap3 .class_info {
		padding: 30px 30px;
		margin: 0 auto 50px;
	}
	.teacher__wrap3 .class_info h3,
	.teacher__wrap3 .class_info h3 a {
	  font-size: 1.7rem;
	}
	.teacher__wrap3 .class_info .explanation {
	  font-size: 1.0em;
	}
	.teacher__wrap3 .class_info .list1,
	.teacher__wrap3 .class_info .hashtag {
	  margin: 0 0 10px;
	}
	.teacher__wrap3 .class_info .list1 li,
	.teacher__wrap3 .class_info .hashtag li {
	  margin-bottom: 6px;
	}
	.teacher__wrap3 .teacher_lessons .lesson_box {
	  margin-bottom: 20px;
	}
}

/*===================================================================

04-0. 生徒登録 common / モーダル input

=====================================================================*/
.student_reg__wrap input[type="text"],
.student_reg_mail__wrap input[type="text"],
.modalContents input[type="text"],
.student_reg__wrap input[type="password"],
.student_reg_mail__wrap input[type="password"],
.modalContents input[type="password"] {
	height: 3.0em;
	width: 100%;
	max-width: 346px;
	border: solid 1px #B5B5B5;
	padding: 10px 10px;
	margin: 0 0 10px;
}
.student_reg_mail__wrap input::placeholder{
	font-size: 16px !important;
}
dl.student_reg {
	margin: 0 0 50px;
}
dl.student_reg dt {
	margin: 20px 0 10px;
	font-weight: bold;
}
dl.student_reg dd {
	color: #454545;
	font-size: 0.8125em;
}

dl.student_reg dt .re-enter {
	font-size: 0.875em;
	font-weight: normal;
}
dl.student_reg input::placeholder{
	font-size: 16px !important;
}

p.student_comment { line-height: 2.0; margin-bottom: 30px; }

.student_reg__btn,
input[type="submit"].btn_send {
	background-color: #fff;
	color: #24BCEA;
	border: 1px solid #24BCEA;
	transition: all 0.3s ease-out;
	font-size: 1.6rem;
	font-weight: bold;
	height: 56px;
	padding: 13px 3rem;
	-webkit-appearance: none;
	border-radius: 28px;
	letter-spacing: 0.2em;
	display: inline-block;
	cursor: pointer;
}
.student_reg__btn:hover,
input[type="submit"].btn_send:hover {
	background-color: #24BCEA;
	color: #fff;
	text-decoration: none;
}

input[type="button"] {
	background-color: #fff;
	color: #707070;
	border: 1px solid #B5B5B5;
	transition: all 0.3s ease-out;
	font-size: 1.6rem;
	font-weight: bold;
	height: 56px;
	padding: 15px 3rem;
	-webkit-appearance: none;
	border-radius: 28px;
	letter-spacing: 0.2em;
	display: inline-block;
	cursor: pointer;
}
input[type="button"]:hover {
	background-color: #eeeeee;
	color: #707070;
	text-decoration: none;
}


@media screen and (max-width: 768px){
	dl.student_reg dt {
		font-size: 1.5rem;
	}
	.student_reg__wrap input[type="text"],
	.student_reg_mail__wrap input[type="text"],
	.student_reg__wrap input[type="password"],
	.student_reg_mail__wrap input[type="password"] {
		height: 3.0em;
		width: 100%;
		height: auto;
		max-width: 100%;
		padding: 10px 10px;
		margin: 0 0 10px;
	}
	.student_reg__wrap input::placeholder {
		font-size: 15px !important;
	}
	dl.student_reg {
		margin: 0 0 25px;
	}
	dl.student_reg dd {
		font-size: 1.3rem;
	}
	.student_reg__wrap .btn_box {
		text-align: center;
	}
	.student_reg_mail__wrap p {
		font-size: 1.5rem;
	}
}


/*===================================================================

04-1. student_reg__wrap　生徒登録

=====================================================================*/
.student_reg__wrap {
	margin: 120px auto 60px;
	width: 92%; max-width: 1200px;
}
.student_reg__wrap .inner {
	margin: 0 auto;
	width: 60%; min-width: 300px;
}
.student_reg__wrap h2 {
	margin: 0 0 40px;
	font-size: 2.4rem;
}


.student_reg__wrap .have_account {
	margin: 30px 0 0;
}
.student_reg__wrap .have_account a {
	color: #454545;
    position: relative;
    padding: 0 0 0 16px;
}
.student_reg__wrap .have_account a::before {
    content: "";
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #b5b5b5;   /* 好みで色を変えてください */
}

@media screen and (max-width: 768px){
	.student_reg__wrap {
		margin: 50px auto 60px;
	}
	.student_reg__wrap .inner {
		width: 92%;
	}
	.student_reg__wrap .ph_box {
		order: 2;
		margin-top: 20px;
	}
}


/*===================================================================

04-2. student_reg_mail__wrap　生徒登録 本人確認メールの再送

=====================================================================*/
.student_reg_mail__wrap {
	margin: 120px auto 60px;
	width: 92%; max-width: 780px;
}
.student_reg_mail__wrap h2 {
	margin: 0 0 30px;
	font-size: 2.4rem;
}

@media screen and (max-width: 768px){
	.student_reg_mail__wrap {
		margin: 50px auto 60px;
	}
	.student_reg_mail__wrap h2 {
		font-size: 2.0rem;
	}
	.student_reg_mail__wrap input[type="submit"].btn_send {
		display: block;
		margin-left: auto; margin-right: auto;
	}
}


/*===================================================================

04-2. student_reg_mail_send__wrap　生徒登録 本人確認メールの再送

=====================================================================*/
.student_reg_mail_send__wrap {
	margin: 120px auto 60px;
	width: 92%; max-width: 780px;
	text-align: center;
}
.student_reg_mail_send__wrap .your-mail {
	margin: 0 0 30px;
	font-size: 2.4rem;
	font-weight: bold;
}

@media screen and (max-width: 768px){
	.student_reg_mail_send__wrap {
		margin: 50px auto 60px;
		text-align: left;
	}
	.student_reg_mail_send__wrap .your-mail {
		font-size: 2.0rem;
	}
	.student_reg_mail_send__wrap .student_reg__btn {
		padding: 15px 1rem;
		border-radius: 100px;
		letter-spacing: 0.1em;
		display: block;
		margin-left: auto; margin-right: auto;
		text-align: center;
	}
}


/*===================================================================

04-3. not_received__wrap　生徒登録 – 本人確認メールが届かない場合はこちら

=====================================================================*/
.not_received__wrap {
	margin: 120px auto 60px;
	width: 92%; max-width: 980px;
	color: #454545;
	line-height: 1.8;
}
.not_received__wrap h3 {
	background-color: #F3F4F4;
	color: #454545;
	font-size: 2.0rem;
	padding: 10px 20px;
	margin: 60px 0 30px;
}
.not_received__wrap h3:first-of-type {
	margin: 0 0 30px;
}
.not_received__wrap h4 {
	color: #454545;
	font-size: 2.0rem;
	margin: 30px 0 ;
}
.not_received__wrap p {
	line-height: 1.8;
	margin: 0 0 1em;
}
dl.mail_step { margin: 0 0 35px; }
dl.mail_step dt {
	color: #454545;
    position: relative;
    padding: 0 0 0 16px;
	font-weight: bold;
}
dl.mail_step dt::before {
    content: "";
    position: absolute;
    top: 8px; left: 0;
    border: 5px solid transparent;
    border-left: 8px solid #454545;
}

@media screen and (max-width: 768px){
	.not_received__wrap {
		margin: 20px auto 60px;
	}
	.not_received__wrap h3 {
		font-size: 1.7rem;
		padding: 10px 12px;
		margin: 50px 0 30px;
	}
	.not_received__wrap h4 {
		font-size: 1.8rem;
	}
}


/*===================================================================

05-1. student_login__wrap　生徒ログイン

=====================================================================*/
.student_login_pw__wrap.comp {
	margin: 120px auto 60px;
	width: 92%;
	max-width: 780px;
	text-align: center;
}
.student_login_pw__wrap.comp p {
  line-height: 2.0;
  margin-bottom: 30px;
}
.student_login_pw__wrap.comp .head_box {
  margin: 0 0 30px;
  font-size: 2.4rem;
  font-weight: bold;
}


/*===================================================================

05-2. student_login_info__wrap　生徒ログイン　情報入力

=====================================================================*/
.student_login_info__wrap {
	color: #454545;
	margin: 120px auto 60px;
	width: 92%;
	max-width: 980px;
}
.student_login_info__wrap p {
  line-height: 2.0;
  margin-bottom: 30px;
}

.tbl_info {
	border-collapse: collapse;
	width: 100%;
	margin: 45px auto 60px;
}
.tbl_info th,
.tbl_info td {
	padding: 30px 30px;
	border: solid 1px #E0DDDD;
	text-align: left;
}
.tbl_info th {
	background-color: #F3F4F4;
	width: 30%;
}
.tbl_info input::placeholder{
	font-size: 16px !important;
}
.tbl_info input.family-name {
	margin-right: 20px;
}
.tbl_info .slash {
	padding: 0 13px;
}

.info_edit__btn {
	background-color: #fff;
	color: #707070;
	border: 1px solid #b5b5b5;
	transition: all 0.3s ease-out;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 15px 3rem;
	border-radius: 100px;
	letter-spacing: 0.2em;
	display: inline-block;
}
.tbl_info .hissu {
	color: #DB7079;
	font-size: 1.2rem;
}
.info_edit__btn:hover {
	background-color: #EEEEEE;
	text-decoration: none;
}

.tbl_hope select {
	width: 80%;
}
.tbl_hope ul li {
	margin-bottom: 20px;
}
.tbl_hope ul li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px){
	.student_login_info__wrap {
		margin: 50px auto 60px;
		text-align: left;
	}

	.tbl_info {
		margin: 30px auto;
	}
	.tbl_info.comp {
		border: solid 1px #E0DDDD;
	}
	.tbl_info th,
	.tbl_info td {
		display: block;
		width: 100%;
		border: none;
	}
	.tbl_info th {
		padding: 10px 10px;
	}
	.tbl_info td {
		padding: 25px 10px;
	}
	.tbl_info input[type="text"] {
		width: 100%;
	}
	.tbl_info input.family-name,
	.tbl_info input.first-name {
		width: 46%;
	}
	.tbl_info input.birth-year {
		width: 27%;
	}
	.tbl_info input.birth-month {
		width: 25%;
	}
	.tbl_info input.birth-day {
		width: 25%;
	}
	.tbl_info select {
		width: 100%;
	}
	.tbl_info select#skill1,
	.tbl_info select#skill2,
	.tbl_info select#skill3,
	.tbl_info select#reason1,
	.tbl_info select#reason2,
	.tbl_info select#reason3 {
		width: 90%;
	}
	.student_login_info__wrap .btn_wrap .info_edit__btn,
	.student_login_info__wrap .btn_wrap .student_reg__btn,
	.student_login_info__wrap .btn_wrap .btn_send {
		width: 80%;
		display: block;
		margin-left: auto; margin-right: auto;
		text-align: center;
	}
}



/*===================================================================

06-1. search__wrap　検索

=====================================================================*/
/* -------------------------------------------------------------------

.search__wrap

------------------------------------------------------------------- */
.search__wrap {
	margin: 50px auto 60px;
	width: 95%; max-width: 1200px;
	color: #454545;
	line-height: 1.8;
}
.search__wrap .intro {
	padding: 15px 40px;
	background: linear-gradient(to right, #e5f3fa, #d2e0ff);
	color: #fff;
	align-items: center;
}
.search__wrap .intro > p {
	font-size: 2.2rem;
	font-weight: bold;
}
.search__wrap .intro .btn_box {
	background-color: rgba(255,255,255,0.7);
	color: #24BCEA;
	border: 1px solid #24BCEA;
	transition: all 0.3s ease-out;
	font-size: 1.6rem;
	font-weight: bold;
	margin-left: 1.6rem;
	padding: 0.5em 1.5em;
	border-radius: 100px;
}
.search__wrap .intro .btn_box:hover {
	background-color: rgba(255,255,255,0.6);
	transform: scale(1.05);
	text-decoration: none;
}

.search__wrap h1 {
	font-size: 1.8rem;
	text-align: center;
	margin: 40px auto 10px;
}
.search__wrap h1 .num {
	font-size: 3.2rem;
	margin-left: 1em;
}
.search__wrap .head_box {
	font-size: 1.125em;
	font-weight: bold;
	margin-bottom: 10px;
}
.search__wrap .search_class {
	background-color: #F3F4F4;
	border:none;
	border-radius: 0;
	width: 100%;
	padding: 30px 30px;
}
.search__wrap .search_class input::placeholder {
	font-size: 16px !important;
}
.search__wrap .search_class label {
	display: block;
	font-weight: bold;
}
.search__wrap .search_class td {
	padding: 0 12px;
}
.search__wrap .search_class td.keyword {
	width: 20%;
}
.search__wrap .search_class td.pref {
	width: 20%;
}
.search__wrap .search_class td.city {
	width: 20%;
}
.search__wrap .search_class td.cat {
	width: 40%;
}
.search__wrap .search_class td select {
	width: 100%;
	-webkit-appearance: none;
	appearance: none; /* デフォルトの矢印を非表示 */
	height: 44px;
}
.search__wrap .search_class td .wrap_select {
	position: relative;
	display: inline-block;
	width: 100%;
}
.search__wrap .search_class td select::after {
	content: "";
	display: block;
	width: 5px; height: 5px;
	border-right: solid 1px #707070;
	border-bottom: solid 1px #707070;
	position: absolute;
	right: 15px; top: 50%;
	transform: rotate(45deg) translateY(-50%);
}


.search__wrap .search_class .sub_category {
	margin: 25px 12px 0;

}
.search__wrap .search_class .sub_category label {
	font-weight: normal;
	display: inline-block;
	margin: 0 28px 0.5em 0;
}
@media screen and (max-width: 768px){
	.search__wrap .intro {
		justify-content: center !important;
		padding: 15px 20px 20px;
	}
	.search__wrap h1 {
		font-size: 1.4rem;
	}
	.search__wrap h1 .num {
		font-size: 2.7rem;
		margin-left: 0;
	}
	.search__wrap .intro > p {
		font-size: 1.6rem;
		width: 100%;
		text-align: center;
	}
	.search__wrap .intro a {
		text-align: center;
		margin: 15px 0 0;
	}
	.search__wrap .intro .btn_box {
		background-color: transparent;
	}
	.search__wrap h1 {
		line-height: 1.4;
	}
	.search_class table {
		width: 100%;
	}
	.search__wrap .search_class td {
		display: block;
		padding: 0 0 19px;
	}

	.search__wrap .search_class td.keyword,
	.search__wrap .search_class td.pref,
	.search__wrap .search_class td.city,
	.search__wrap .search_class td.cat {
		width: 100%;
	}
	.search__wrap .search_class label {
		margin-bottom: 10px;
	}
	.search__wrap .search_class .sub_category {
		margin: 0 0 0;

	}
	.search__wrap .search_class input::placeholder {
		font-size: 14px !important;
		color: #454545 !important;
	}
	.search__wrap .search_class input[type="text"],
	.search__wrap .search_class button,
	.search__wrap .search_class textarea,
	.search__wrap .search_class select {
	  width: 100%;
	}
	.search__wrap .search_class input[type="submit"],
	.search__wrap .search_class input[type="reset"] {
		width: auto;
	}
	.search__wrap .search_class input[type="submit"].btn_send {
		background-color: #24BCEA;;
		color: #fff;
		border: 1px solid #24BCEA;
		transition: all 0.3s ease-out;
		font-size: 1.4rem;
		line-height: 1;
		font-weight: bold;
		padding: 13px 30px;
		border-radius: 100px;
		letter-spacing: 0.2em;
		display: inline-block;
		}
	.search__wrap .search_class input[type="submit"].btn_send:hover {
		transform: scale(1.05);
		text-decoration: none;
	}
}


/* -------------------------------------------------------------------

.results__wrap / mypage_favorite

------------------------------------------------------------------- */
.results__wrap {
	margin: 120px auto 60px;
	width: 92%; max-width: 1200px;
	color: #454545;
	line-height: 1.8;
}
.results__wrap.mypage__classlist {
	margin: 0 auto 60px;
	width: 100%; max-width: 1200px;
	color: #454545;
	line-height: 1.8;
}

.results__wrap.mypage__classlist .head_box {
	font-size: 2.8rem;
	font-weight: bold;
	margin: 0 0 40px;
}

.number_results {
	margin: 0 0 30px;
}


.results__wrap .class_info {
  background: #fff;
	border-radius: 4px;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
  color: #454545;
  max-width: 1200px;
  padding: 40px 40px;
	margin: 0 auto 70px;
}

.results__wrap .class_info h3,
.results__wrap .class_info h3 a {
  color: #24BCEA;
  font-size: 2.2rem;
  text-decoration: none;
  transition: 0.5s;
}
.results__wrap .class_info h3 a:hover {
  text-decoration: underline;
}
.results__wrap .class_info .explanation {
  font-size: 1.125em;
  color: #454545;
  margin: 20px 0 0;
}
.results__wrap .class_info .list1,
.results__wrap .class_info .hashtag {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
}
.results__wrap .class_info .list1 li,
.results__wrap .class_info .hashtag li {
  list-style: none;
	line-height: 1;
	padding: 0;
	margin: 0 0.5em 1em 0;
}
.results__wrap .class_info .list1 li.cate,
.results__wrap .class_info .list1 li.cate a {
	color: #24BCEA;
	font-size: 1.125em;
	text-decoration: none;
	transition: 0.3s;
}
.results__wrap .class_info .list1 li.cate a:hover {
	color: #24BCEA;
	text-decoration: underline;
}
.results__wrap .class_info .list1 li.review {
	list-style: none;
	margin-right: 1em;
	font-size: 0.9375em;
}
.results__wrap .class_info .list1 li.review .num {
	list-style: none;
	margin-left: 10px;
	font-size: 1.0625em;
	font-weight: bold;
}
.results__wrap .class_info .list1 li.star {
	margin-right: 0;
}
.results__wrap .class_info .list1 li.star img {
	height: 16px; width: auto;
}

.results__wrap .class_info .list1 li.price,
.results__wrap .class_info .list1 li.time {
	padding: 0 0 0 23px;
	position: relative;
}
.results__wrap .class_info .list1 li.price::before {
	content: "";
	background: url("../images/result/icon_price.png");
	background-size: cover;
	width: 20px; height: 20px;
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}
.results__wrap .class_info .list1 li.time::before {
	content: "";
	background: url("../images/result/icon_time.png");
	background-size: cover;
	width: 20px; height: 20px;
	position: absolute; left: 0; top: 50%; transform: translateY(-50%);
}

.results__wrap .class_info .hashtag li.tag {
	border: solid 1px #E0DDDD;
	border-radius: 3px;
	text-decoration: none;
	font-size: 0.875em;
	color: #000;
	padding: 3px 8px;
	margin: 0;
	transition: .3s;
	margin-right: 3px;
}
.results__wrap .class_info .hashtag li a:hover {
	background-color: #E0DDDD;
	text-decoration: none;
}
.results__wrap .class_info .teacher {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
}
.results__wrap .class_info .teacher img {
	width: 50px; height: 50px;
	margin: 0 10px 0 0;
	border-radius: 50%;
}
.results__wrap .class_info .teacher .name {
	font-size: 1.125em;
	font-weight: bold;
}
.results__wrap .class_info .teacher .name .eng {
	font-size: 1.4rem;
}
.results__wrap .class_info .teacher .name a {
	color: #454545;
}

.results__wrap .class_info .lesson_box {
	box-sizing: border-box;
  background: #F9F9F9;
	border-radius: 4px;
  border: solid 2px #fff;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
  color: #454545;
  padding: 0 0;
	position: relative;
}

.results__wrap .class_info .flex_s_b {
	justify-content: left;
}

.results__wrap .class_info .box_1_4 {
	margin-right: 10px;
}

.results__wrap .class_info .lesson_box img {
	width:265px;
	height:146px;
	object-fit:cover;
}

.results__wrap .class_info .lesson_box p {
	padding: 10px 20px 20px;
	font-size: 0.9375em;
}
.results__wrap .class_info .lesson_box a {
	position: absolute;
	left: 0; top: 0; width: 100%; height: 100%;
	transition: 0.3s;
}
.results__wrap .class_info .lesson_box a:hover {
	background-color: rgba(255,255,255,0.50);
	text-decoration: none;
}

.results__wrap a.btn_pittari {
	font-size: 2.2rem;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	background-color: #F3F4F4;
	color: #454545;
	display: block;
	padding: 50px 50px;
	margin: 80px auto 0;
	transition: 0.5s;
}
.results__wrap a.btn_pittari:hover {
	opacity: 0.6;
}
@media screen and (max-width: 768px){
	.results__wrap {
		margin: 50px auto 60px;
	}
.number_results {
	font-size: 1.125em;
	margin-bottom: 10px;
}
	.results__wrap .class_info {
		padding: 30px 20px;
		margin: 0 auto 40px;
	}
	.results__wrap .class_info h3,
	.results__wrap .class_info h3 a {
	  font-size: 1.7rem;
	  line-height: 1.6;
	}
	.results__wrap .class_info .explanation {
	  font-size: 1em;
	}
	.results__wrap .class_info .list1 li.cate {
	  font-size: 1em;
	}
	.results__wrap .class_info .box_4_7 {
		margin-bottom: 20px;
	}
	.results__wrap .class_info .lesson_box {
		display: flex;
		justify-content: flex-start;
	}
	.results__wrap .class_info .lesson_box img {
		width: 40%;
	}
	.results__wrap .class_info .lesson_box p {
		width: 60%;
	}
}

/* -------------------------------------------------------------------

.results__wrap / pagination

------------------------------------------------------------------- */
.paginator {
	text-align: center;
	display: block;
}
ul.pagination {
    display: block;
    margin-left: -0.3125rem;
    min-height: 1.5rem;
}
.paginator ul.pagination li {
  float: none;
  display: inline-block;
}
.paginator ul.pagination li a {
	color: #24BCEA;
	font-size: 1.8rem;
	text-decoration: none;
	padding: 10px 10px;
}
.paginator ul.pagination li,
.paginator ul.pagination li.active a {
	color: #454545;
}



/*===================================================================

07-1. questionnaire__wrap　アンケート

=====================================================================*/
.questionnaire__wrap {
	color: #454545;
	margin: 120px auto 60px;
	width: 92%; max-width: 980px;
}
.questionnaire__wrap .intro_txt {
	line-height: 1.8;
	text-align: center;
}
.time_required {
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #B5B5B5;
	font-size: 1.4rem;
	padding: 10px 25px;
	margin: 40px auto 0;
	width: 214px;
}
.progress {
	display: table;
	padding: 10px 25px;
	margin: 40px auto 0;
}
.time_required .num,
.progress .num {
	font-size: 1.5em;
}
.head_question {
	color: #24BCEA;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	margin: 50px auto 0;
}
.head_question .question {
	position: relative;
	display: block;
	margin: 0 0 15px;
	padding: 0 0 15px;
}
.head_question .question::after {
	content: "";
	background-color: #24BCEA;
	width: 20px; height: 1px;
	position: absolute;
	left: 50%; bottom: 0; transform: translateX(-50%);
}
.head_result {
	color: #24BCEA;
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
}
.txt_result {
	font-size: 2.0rem;
	margin: 40px auto 0;
	text-align: center;

}

.questionnaire__wrap .wrap_choices {
	margin: 60px auto 90px;
	text-align: center;
}
.questionnaire__wrap .wrap_choices .tbl_choices {
	margin: 0 auto 50px;
	text-align: left;
}
.questionnaire__wrap .wrap_choices .tbl_choices td {
	padding: 10px 30px;
	font-size: 2.0rem;
}
.questionnaire__wrap .choices {
	background: #F9F9F9;
	border: solid 2px #fff;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
	color: #454545;
	padding: 70px 40px;
	margin: 0 auto 5rem;
	text-align: center;
	transition: 0.5s;
	position: relative;
	display: grid;
}
.questionnaire__wrap .box_1_2 {
	width: 47%;
}
.questionnaire__wrap .box_1_3 {
	width: 30%;
	align-items: center;
}
.questionnaire__wrap .choices:hover {
	background: #C1EBF0;
	opacity: 0.9;
}
.questionnaire__wrap .choices.active {
	background: #C1EBF0;
}
.questionnaire__wrap .choices a {
	position: absolute;
	width: 100%; height: 100%;
	left: 0; top: 0;
}
.questionnaire__wrap p { line-height: 1.75; }

.questionnaire__wrap .choices p {
	margin: 1.3em 0 0;
}
.questionnaire__wrap .choices .head_choices {
	font-size: 1.5em;
	font-weight: bold;
	margin: 0 0 0;
}


@media screen and (max-width: 768px){
	.questionnaire__wrap {
		margin: 50px auto 60px;
	}
	.head_question {
		font-size: 2.0rem;
		margin: 35px auto 0;
	}
	.questionnaire__wrap .wrap_choices {
		margin: 40px auto 55px;
	}
	.questionnaire__wrap .choices {
		padding: 30px 20px;
		margin: 0 auto 3rem;
	}
	.questionnaire__wrap .box_1_2 {
		width: 100%;
	}
	.questionnaire__wrap .box_1_3 {
		width: 100%;
	}
	.questionnaire__wrap .wrap_choices .tbl_choices td {
		padding: 10px 30px;
		font-size: 1.8rem;
		display: block;
	}
	.head_result {
		font-size: 2.8rem;
	}
	.txt_result {
		font-size: 1.8rem;
		margin: 30px auto 0;
	}
}

/* -------------------------------------------------------------------

.diagnosis 診断結果

------------------------------------------------------------------- */
.diagnosis {
	align-items: center;
	margin: 70px auto 0;
}
.diagnosis .head_box {
	font-size: 2.8rem;
	font-weight: bold;
	margin: 0 0 40px;
}

@media screen and (max-width: 768px){
	.diagnosis {
		margin: 45px auto 0;
	}
	.diagnosis .head_box {
		font-size: 2.5rem;
		margin: 30px 0 20px;
	}
}


/*===================================================================

07-1. company__wrap

=====================================================================*/
.company__wrap {
	color: #454545;
	margin: 120px auto 60px;
	width: 92%; max-width: 980px;
}
.company__wrap h1 {
	font-size: 2.4rem;
}
.company__wrap h2 {
	background-color: #F3F4F4;
	font-size: 2.0rem;
	padding: 10px 20px;
	margin: 60px auto 35px;
}
.company__wrap h3 {
	font-size: 2.0rem;
	padding: 0;
	margin: 35px auto;
}
.company__wrap p {
	margin: 0 auto 1em;
	line-height: 2;
}
.company__wrap a {
	color: #24BCEA;
	transition: 0.3s;
	text-decoration: none;
}
.company__wrap a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 768px){
	.company__wrap {
		margin: 50px auto 60px;
	}
	.company__wrap h1 {
		font-size: 2.0rem;
	}
	.company__wrap h2 {
		font-size: 1.8rem;
		padding: 10px 15px;
		margin: 40px auto 30px;
	}
	.company__wrap h3 {
		font-size: 1.8rem;
		margin: 35px auto 30px;
	}
}

.company__wrap ol li {
	list-style-type: decimal;
	line-height: 2;
}

.company__wrap ul li {
	list-style-type: disc;
	line-height: 2;
}

/*===================================================================

08-1. service__wrap

=====================================================================*/
.service__wrap {
	color: #454545;
	margin: 120px auto 60px;
	width: 92%; max-width: 980px;
	line-height: 2;
}
.service__wrap h1 {
	font-size: 2.4rem;
}
.service__wrap h2 {
	font-size: 2.4rem;
	margin: 60px auto 35px;
}
.service__wrap h3 {
	font-size: 2.0rem;
	padding: 0;
	margin: 35px auto;
}
.service__wrap .intro_txt {
	font-size: 2.0rem;
	font-weight: bold;
	margin: 90px auto 70px;
	text-align: center;
	line-height: 2;
}

.howto {
	text-align: center;
	margin: 0 auto 60px;
	line-height: 2;
}
.howto .num {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.5;
}
.howto a {
	color: #24BCEA;
	transition: 0.3s;
	text-decoration: none;
}
.howto a:hover {
	text-decoration: underline;
}
.howto .box_1_3 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	margin-top: 60px;
}
.howto .box_1_3 .img_box {
	width: 68px; height: 68px;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px 0px;
	border-radius: 50vh;
	margin-right:25px;
}

@media screen and (max-width: 768px){
	.service__wrap {
		margin: 50px auto 0;
	}
	.service__wrap h1 {
		font-size: 2.0rem;
	}
	.service__wrap .intro_txt {
		font-size: 1.5rem;
		margin: 25px auto 30px;
		text-align: left;
	}
	.howto .box_1_4 {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.howto .box_1_4 p {
		padding: 3px 0;
		text-align: left;
		width: calc(100% - 20px);
	}
	.howto p.num {
		font-size: 1.7rem;
		display: inline-block;
		padding: 0;
		width: 20px;
		line-height: 34px;
	}
	.howto .box_1_3 {
		margin-top: 30px;
	}
}


/*===================================================================

08-2. voice__wrap

=====================================================================*/
.voice__wrap {
	color: #454545;
	margin: 120px auto 60px;
	width: 92%; max-width: 980px;
}
.voice__wrap h2 {
	font-size: 2.4rem;
	margin: 60px auto 35px;
}
.voice__wrap #voice {
	margin: 70px auto 0;
}
.voice__wrap .box_1_3 {
	background-color: #F3F4F4;
	position: relative;
	padding: 70px 25px 20px;
}
.voice__wrap .box_1_3 .head_box {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 auto 15px;
}
.voice__wrap .box_1_3 .img_box {
	background-color: #D1D1D1;
	border-radius: 50vh;
	width: 108px; height: 108px;
	position: absolute;
	left: 50%; top: -54px; transform: translateX(-50%);
}
.voice__wrap .head_pittari {
	font-size: 2.0rem;
	font-weight: bold;
	margin: 80px auto 30px;
	text-align: center;
}
.voice__wrap .btn_contact {
	font-size: 2.4rem;
}

@media screen and (max-width: 768px){
	.voice__wrap {
		margin: 50px auto 60px;
	}
	.voice__wrap h2 {
		font-size: 2.0rem;
		margin: 50px auto 35px;
	}
	.voice__wrap .box_1_3 {
		margin-bottom: 70px;
		text-align: center;
	}
	.voice__wrap .box_1_3 .head_box {
		font-size: 1.6rem;
	}
	.voice__wrap .head_pittari {
		font-size: 1.8rem;
		margin: 40px auto 25px;
	}
	.voice__wrap .btn_contact {
		font-size: 1.6rem;
	}
}

/*===================================================================

09-1. unsubscribed__wrap　退会手続き

=====================================================================*/
.unsubscribed__wrap {
	margin: 120px auto 60px;
	width: 95%; max-width: 980px;
	color: #454545;
	line-height: 1.8;
}
.unsubscribed__wrap h2 {
	font-size: 2.4rem;
}
.unsubscribed__wrap h3 {
	font-size: 2.4rem;
	margin: 60px 0 30px;
}

.unsubscribed__wrap h4 {
	color: #454545;
	font-size: 2.0rem;
	margin: 30px 0 ;
}
.unsubscribed__wrap p {
	line-height: 2;
	margin: 0 0 1em;
}

.unsubscribed__wrap .intro_box {
	margin: 60px auto 0;
}

.tbl_unsubscribed {
	width: 100%;
	margin: 0 auto 60px;
}
.tbl_unsubscribed th {
	background-color: #F3F4F4;
	color: #454545;
	font-size: 2.0rem;
	padding: 10px 20px;
	text-align: left;
	display: flex;
	align-items: center;
}
.tbl_unsubscribed td {
	font-size: 1.8rem;
	padding: 30px 0 0;
}
.tbl_unsubscribed td.last_td {
	padding: 30px 0 60px;
}
.tbl_unsubscribed .hissu {
	color: #DB7079;
	font-size: 1.2rem;
	margin-left: 1em;
}
.tbl_unsubscribed select,
.tbl_unsubscribed input[type="text"] {
	margin: 10px 0 0 1.5em;
	font-size: 1.6rem;
}
.tbl_unsubscribed input[type="text"] {
	width: calc(100% - 1.5em);
}
.tbl_unsubscribed textarea {
	width: 100%;
	height: 10em;
}
.tbl_unsubscribed input::placeholder,
.tbl_unsubscribed textarea::placeholder{
	font-size: 16px !important;
}
@media screen and (max-width: 768px) {
	.unsubscribed__wrap {
		margin: 50px auto 0;
	}
	.unsubscribed__wrap form {
		text-align: center;
	}
	.unsubscribed__wrap h3 {
		font-size: 2.0rem;
		margin: 45px 0 20px;
	}
	.unsubscribed__wrap .intro_box {
		margin: 30px auto 0;
	}
	.tbl_unsubscribed {
		margin: 0 auto 50px;
	}
	.tbl_unsubscribed th {
		font-size: 1.6rem;
		padding: 10px 14px;
		text-align: left;
		display: flex;
		align-items: center;
	}
	.tbl_unsubscribed td {
		font-size: 1.6rem;
		padding: 10px 0 0;
		text-align: left;
	}
	.tbl_unsubscribed td.last_td {
		padding: 10px 0 30px;
	}
	.tbl_unsubscribed select {
	  width: 90%;
	}
	.tbl_unsubscribed input[type="text"] {
	  width: 90%;
	}
	.tbl_unsubscribed textarea {
		width: 100%;
		height: 10em;
	}
	.tbl_unsubscribed input::placeholder,
	.tbl_unsubscribed textarea::placeholder{
		font-size: 14px !important;
	}
}


/*===================================================================

09-2. unsubscribed__wrap.comp　退会手続き完了

=====================================================================*/
.unsubscribed__wrap.comp {
	margin: 120px auto 60px;
	width: 95%;
	max-width: 780px;
	text-align: center;
}
.unsubscribed__wrap.comp p {
  line-height: 2.0;
  margin-bottom: 30px;
}
.unsubscribed__wrap.comp .head_box {
  margin: 0 0 30px;
  font-size: 2.4rem;
  font-weight: bold;
}


/*===================================================================

10-0. faq__wrap　/ contact_wrap

=====================================================================*/
.faq__wrap,
.contact__wrap {
	color: #454545;
	margin: 110px auto 60px;
	width: 92%;
	max-width: 980px;
}
.faq__wrap h1,
.contact__wrap h1 {
	color: #454545;
	margin: 0 0 30px;
	font-size: 2.8rem;
	font-weight: bold;
	text-align: center;
}
.faq__wrap h2,
.contact__wrap h2 {
	color: #454545;
	margin: 0 0 30px;
	font-size: 2.4rem;
	font-weight: bold;
}
.contact__wrap input#mail,
.contact__wrap input#mail-confirm {
	width: 70%;
}
@media screen and (max-width: 640px){
	.contact__wrap input#mail,
	.contact__wrap input#mail-confirm {
		width: 100%;
	}
}
@media screen and (max-width: 640px){
	.faq__wrap,
	.contact__wrap {
		margin: 50px auto 60px;
	}
	.faq__wrap h1,
	.contact__wrap h1 {
		font-size: 2.0rem;
	}
	.faq__wrap h2,
	.contact__wrap h2 {
		color: #454545;
		margin: 0 0 25px;
		font-size: 2.0rem;
	}
}



/*
 * 検索ボックス
 * -------------------------------------------------------------------
 */
.wrap_search {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.search__contact {
	justify-content: center;
}
.wrap_search .search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #24BCEA;
  display: block;
  padding: 0 10px;
  border-radius: 50vh;
  height: 2.3em;
  width: 50%; height: 50px;
  overflow: hidden;
}
.wrap_search .search_container input[type="text"]{
	border: none;
	height: 50px;
	padding: 20px;
}
.wrap_search .search_container input[type="text"]:focus {
  outline: 0;
}
.wrap_search .search_container input[type="submit"]{
	cursor: pointer;
	border: none;
	border-left: solid 3px #fff;
	background: #24BCEA;
	color: #fff;
	font-size: 0.875em;
	font-weight: bold;
	position: absolute;
	width: 6em;
	height: 50px;
	right: 0px;
	top: 0px;
	outline: none;
	padding: 0 15px 0 0;
	-webkit-appearance: none;
}

.search_container input::placeholder{
	font-size: 16px !important;
}


@media screen and (max-width: 640px){
		.wrap_search {
		display: flex;
		justify-content: center;
	}
	.wrap_search .search_container{
	  width: 90%; height: 50px;
	}
	.wrap_search .search_container input[type="submit"]{
		font-size: 1em;
	}
}

/*===================================================================

10-1. faq__wrap　よくある質問

=====================================================================*/
.faq__wrap .wrap_search .guide {
	width: 30%;
	transition: 0.5s;
}
.faq__wrap .wrap_search .guide:hover {
	opacity: 0.6;
}

@media screen and (max-width: 640px){
	.faq__wrap .wrap_search .guide {
		width: 90%;
		max-width: 260px;
		margin-top: 30px;
	}
}


.faq__wrap .faq {
	line-height: 2.0;
	margin: 80px auto 0;
	color: #454545;
}
.faq__wrap .faq li {
	padding: 0 0 0 1.5em;
	margin: 0 0 10px;
	position: relative;
}
.faq__wrap .faq li::before {
	content: "Q";
	color: #24BCEA;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.5;
	position: absolute; left: 0; top: 0;
}
.faq__wrap .faq .box_1_1,
.faq__wrap .faq .box_1_2 {
	margin: 0 0 80px;
}

@media screen and (max-width: 768px){
	.faq__wrap .faq {
		margin: 50px auto 0;
	}
	.faq__wrap .faq .box_1_1,
	.faq__wrap .faq .box_1_2 {
		margin: 0 0 50px;
	}
}


/*
 * faq__main　結果・答え
 * -------------------------------------------------------------------
 */
.faq__main {
	display: flex;
	justify-content: space-between;
	margin: 80px auto 0;
}
.faq__main .faq__main_side {
  width: 23%;
}
.faq__main .faq__main_content {
  width: 71%;
}
.faq__main .faq__main_side ul {
	background: #f9f9f9;
	border-radius: 4px;
	border: solid 2px #fff;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
	color: #454545;
	width: 100%;
}
.faq__main .faq__main_side li {
  border-bottom: solid 2px #fff;
}
.faq__main .faq__main_side li:last-of-type {
  border-bottom: none;
}
.faq__main .faq__main_side a {
	padding: 25px 25px;
	color: #000;
	font-size: 0.9375em;
	text-decoration: none;
	text-align: center;
	display: block;
	transition: 0.5s;
}
.faq__main .faq__main_side a:hover {
	background-color: rgba(36,188,234,0.2);
}

.faq__main .faq__main_content .faq {
	margin: 0 auto 30px;
}

@media screen and (max-width: 768px){
	.faq__main {
		flex-wrap: wrap;
		margin: 0 auto 0;
	}
	.faq__main .faq__main_side {
	  width: 100%;
		margin-bottom: 50px;
	}
	.faq__main .faq__main_content {
	  width: 100%;
	}
	.faq__main .faq__main_side ul {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.faq__main .faq__main_side li {
		width: 50%;
		display: inline-block;
		border: solid 1px #fff;
	}
	.faq__main .faq__main_side a {
		padding: 20px 10px;
		font-size: 1.4rem;
		text-decoration: none;
	}
}


/*
 * faq__main　結果・答え
 * -------------------------------------------------------------------
 */
.wrap_faq_answer {
	margin: 0 0 80px;
	color: #454545;
}
.wrap_faq_answer .question {
	font-size: 1.5em;
	font-weight: bold;
	padding: 0 0 0 1.5em;
	margin: 0 0 30px;
	position: relative;
}
.wrap_faq_answer .question::before {
	content: "Q";
	color: #24BCEA;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1.2;
	position: absolute; left: 0; top: 0;
}
.wrap_faq_answer .answer {
	line-height: 2;
}
@media screen and (max-width: 768px){
	.wrap_faq_answer .question {
		font-size: 1.8rem;
	}
}

/*===================================================================

10-2. contact__wrap　お問い合わせ

=====================================================================*/
.contact_form {
	margin: 80px auto 0;
}
.contact_form h3 {
	font-size: 2.5rem;
	text-align: center;
}
.contact_form input::placeholder{
	font-size: 16px !important;
}
.contact_form textarea::placeholder{
	font-size: 16px !important;
}
.tbl_contact {
	border-collapse: collapse;
	width: 100%;
	margin: 60px auto;
}
.tbl_contact th,
.tbl_contact td {
	padding: 25px 30px;
	border: solid 1px #E0DDDD;
	text-align: left;
}
.tbl_contact th {
	background-color: #F3F4F4;
	width: 30%;
}

.tbl_contact .hissu {
	color: #DB7079;
	font-size: 1.2rem;
}
.tbl_contact p,
.tbl_contact ul {
	font-size: 0.875em;
}
.tbl_contact textarea {
	width: 100%;
	height: 10em;
	/*margin: 0 0 2em;*/
}
.tbl_contact img {
	max-width: 280px;
}
.tbl_contact input#files {
	border: none;
}

.contact_form .btn_box input {
	width: 260px;
	margin: 0 10px;
}
@media screen and (max-width: 768px){
	.tbl_contact {
		margin: 30px auto;
	}
	.tbl_contact th,
	.tbl_contact td {
		display: block;
		width: 100%;
		border: none;
	}
	.tbl_contact th {
		padding: 10px 10px;
	}
	.tbl_contact td {
		padding: 25px 10px;
	}
	.tbl_contact input[type="text"],
	.tbl_contact select {
		width: 100%;
	}
	.contact_form .btn_box input {
		width: 90%;
		max-width: 260px;
		height: 56px;
		margin: 10px auto;
		border-radius: 28px !important;
		box-sizing: border-box;
	}
}

.contact_form form {
	display: inline;
}

/*===================================================================

10-3. contact__wrap.comp　退会手続き完了

=====================================================================*/
.contact__wrap.comp {
	margin: 120px auto 60px;
	width: 92%;
	max-width: 780px;
	text-align: center;
}
.contact__wrap.comp p {
  line-height: 2.0;
  margin-bottom: 30px;
}
.contact__wrap.comp .head_box {
  margin: 0 0 30px;
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 640px){
	.contact__wrap.comp {
		margin: 50px auto 60px;
	}
}

/*===================================================================

11-0. mypage__wrap　マイページ

=====================================================================*/
/*
 * mypage__main
 * -------------------------------------------------------------------
 */
.mypage__wrap {
	margin: 90px auto 60px;
	width: 92%;
	max-width: 1200px;
	color: #454545;
}

.mypage__main {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.mypage__main .mypage__main_side {
  width: 19%;
	min-width: 230px;
	margin-right: 6%;
}
.mypage__main .mypage__main_content {
  width: 75%;
}

.mypage__main .mypage__main_content td div {
	display: inline;
}

.mypage__main .mypage__main_content td div.error-message {
	display: block;
}

.mypage__main .mypage__main_content td label {
	margin-right: 10px;
}

.mypage__main .mypage__main_side .profile_ph_box {
	width: 100%;
	margin: 0 auto 50px;
	text-align: center;
}
.mypage__main .mypage__main_side .profile_ph_box img {
	width: 70px;
	margin: 0 auto 20px;
}

.mypage__main .mypage__main_side a.btn_diagnose {
	color: #24BCEA;
	font-weight: bold;
	padding: 20px 30px; margin: 0 auto 30px;
	background: linear-gradient(to right, #f8fefb, #dde8fd);
	transition: all 0.3s ease-out;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
	display: block;
	border: solid 1px #fff;
	border-radius: 4px;
	text-align: center;
}

.mypage__main .mypage__main_side a.btn_diagnose:hover {
    transform: scale(1.05);
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
	text-decoration: none;
}


.mypage__main .mypage__main_side ul {
  background: #f9f9f9;
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.10);
  color: #454545;
  width: 100%;
	border: solid 2px #fff;
	border-radius: 4px;
}
.mypage__main .mypage__main_side li {
  border-bottom: solid 2px #fff;
}
.mypage__main .mypage__main_side li:last-of-type {
  border-bottom: none;
}
.mypage__main .mypage__main_side a {
	padding: 25px 25px 25px 58px;
	color: #000;
	font-size: 0.9375em;
	text-decoration: none;
	text-align: left;
	display: block;
	transition: 0.5s;
	position: relative;
}
.mypage__main .mypage__main_side a::before {
	content: "";
	background-size: cover;
	width: 27px; height: 27px;
	position: absolute;
	left: 15px; top: 50%; transform: translateY(-50%);
}
.mypage__main .mypage__main_side a.favorite::before {
	background-image: url("../images/mypage/icon_favorite.png");
}
.mypage__main .mypage__main_side a.edit::before {
	background-image: url("../images/mypage/icon_edit.png");
}
.mypage__main .mypage__main_side a.history::before {
	background-image: url("../images/mypage/icon_history.png");
}
.mypage__main .mypage__main_side a:hover {
	background-color: rgba(36,188,234,0.2);
}

.mypage__main .mypage__main_content .head_box {
	font-size: 1.5em;
	font-weight: bold;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.mypage__main .mypage__main_content .head_box a {
	float: right;
}
.mypage__main .mypage__main_content .head_favorite {
	font-size: 1.5em;
	font-weight: bold;
	width: 100%;
}

.mypage__main .mypage__main_content .btn_box {
	text-align: right;
}

.mypage__main .mypage__main_content .school_image {
  width: 530px!important;
  height: 250px!important;
  object-fit: cover; /* この一行を追加するだけ！ */
}

.mypage__main .mypage__main_content .precheck {
	line-height: 2.0;
	margin-top: 30px;
}

@media screen and (max-width: 640px){
	.mypage__wrap {
		margin: 40px auto 60px;
	}
	.mypage__main {
		flex-wrap: wrap;
	}
	.mypage__main .mypage__main_side {
		width: 100%;
		margin-right: 0; margin-bottom: 40px;
		display: flex;
		justify-content: center;
	}
	.mypage__main .mypage__main_side .profile_ph_box {
		width: 90px;
		margin: 10px 35px 0 0;
	}
	.mypage__main .mypage__main_side .profile_ph_box img {
		width: 50px;
	}
	.mypage__main .mypage__main_side ul {
	  width: 100%;
	}
	.mypage__main .mypage__main_side .side_menu {
		width: calc(100% - 125px);
	}
	.mypage__main .mypage__main_side a {
		padding: 20px 20px 20px 58px;
	}
	.mypage__main .mypage__main_side li:nth-of-type(2) a {
		padding: 10px 20px 10px 58px;
	}
	.mypage__main .mypage__main_side a.btn_diagnose {
		font-size: 1.5rem;
		padding: 12px 20px;
	}
	.mypage__main .mypage__main_content {
	  width: 100%;
	}
	.mypage__main .mypage__main_content .btn_box {
		text-align: center;
	}
	.mypage__main .mypage__main_content .head_box input[type="submit"].btn_send {
	  font-size: 1.4rem;
	  padding: 10px 3rem;
	}
}




/*
 * mypage_nav__wrap
 * -------------------------------------------------------------------
 */
.mypage_nav__wrap {
	border-bottom: solid 1px rgba(181,181,181,0.3);
	width: 100%;
}
.mypage_nav__wrap .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}
.mypage_nav__wrap .mypage_nav,
.mypage_nav__wrap .mypage_nav_howto {
	margin: 0;
}
.mypage_nav__wrap li.student,
.mypage_nav__wrap li.teacher {
	display: inline-block;
	width: 200px;
}

.mypage_nav__wrap li.student a,
.mypage_nav__wrap li.teacher a {
	display: block;
	width: 100%;
	color: #000;
	font-size: 0.9375em;
	padding: 10px 10px;
	text-align: center;
	text-decoration: none;
	transition: 0.5s;
	position: relative;
}
.mypage_nav__wrap li.student a:hover::after,
.mypage_nav__wrap li.teacher a:hover::after {
	content: "";
	background-color: rgba(36,188,234,0.15);
	width: 100%; height: 5px;
	position: absolute; left: 0; bottom: 0;
}
.mypage_nav__wrap li.student a.active,
.mypage_nav__wrap li.teacher a.active {
	background-color: rgba(36,188,234,0.15);
}

.mypage_nav__wrap .mypage_nav_howto a {
	font-size: 0.9375em;
	color: #000;
	text-decoration: none;
	padding: 0 0 0 24px;
	position: relative;
	transition: 0.5s;
}
.mypage_nav__wrap .mypage_nav_howto a:hover {
	text-decoration: underline;
}
.mypage_nav__wrap .mypage_nav_howto a::before {
	content: "";
	width: 18px; height: 24px;
	background-image: url("../images/mypage/icon_howto.png");
	background-size: cover;
	position: absolute;
	left: 0; top: 50%; transform: translateY(-50%);
}

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

/*===================================================================

11-1. .favorite_not_yet　退会手続き完了

=====================================================================*/
.favorite_not_yet {
	text-align: center;
}
.favorite_not_yet p {
  line-height: 2.0;
  margin-bottom: 30px;
}
.favorite_not_yet .head_box {
  margin: 0 0 30px;
  font-size: 2.4rem;
  font-weight: bold;
}


.error-message {
	color: red;
}
