@charset "utf-8";

/*==============================================
共通スタイル
================================================*/

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  width: 100%;
}

.sp {
  display: none;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.2rem;
  font-family: 'Noto Serif JP', serif;
  color: #444;
  text-align: center;
  padding: 1.7em 0;
}

.section-title_sub {
  display: block;
  font-size: 2rem;
  font-family: 'Crimson Text', serif;
  color: #08529f;
  padding-top: 1.2em;
}

@media screen and (min-width:1025px) {
  .sp {
    display: none;
  }

  #nav-toggle {
    display: none;
  }

}

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

  .sp {
    display: none;
  }

  .container {
    width: 90%;
    margin: 0 auto;
  }

  #nav-toggle {
    display: none;
  }

  .section-title {
    font-size: 2.9rem;
    padding: 1em 0;
  }

  .section-title_sub {
    display: block;
    font-size: 1.8rem;
    padding-top: 1em;
  }

}

@media screen and (max-width:599px) {


  /*span.space {
    display: block;
    width: 100%;
    height: 65px;
  }*/

  .pc {
    display: none;
  }

  .pconly {
    display: none;
  }

  .container {
    width: 98%;
    margin: 0 auto;
  }

  #nav-toggle {
    display: block;
  }

}

/*==============================================
ヘッダー
================================================*/
header {
  border-bottom: solid 1px #ccc;
}

.header__container {
  max-width: 1920px;
  height: 140px;
  margin: 0 auto;
  padding: 25px 30px 25px 30px;
  position: relative;
  box-sizing: border-box;
}

@media screen and (max-width:599px) {

  header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100vw;
    transition: all ease .3s;
  }



  .header__container {
    width: 100%;
    height: 65px;
    padding: 0;
    position: relative;
  }
}

.header__inner-top {
  display: flex;
  justify-content: space-between;
}

.header__logo{
  width: 30%;
  max-width: 350px;
  min-width: 280px;
  height: auto;
}

.header__logo img {
  width: 100%;
  height: auto;
  display: block;
  
}

@media screen and (max-width:599px) {
  .header__logo img {
    height: 43px;
    width: auto;
    padding: 0;
    margin-top: 12px;
    margin-left: 7px;
  }
}

.flexbox {
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%
}

.header__tel-wrapper {
  display: block;
  padding-top: 10px;
  margin-right: 31px;
}

@media screen and (max-width:1024px) {
  .header__tel-wrapper {
    display: none;
  }
}

.header__tel {
  position: relative;
  font-size: 31px;
  font-weight: 300;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: block;
  color: #323232;
  text-align: left;
  line-height: 1;
  letter-spacing: 1px;
}

.header__tel::before {
  content: url(../img/icon-tel-pc.svg);
  position: absolute;
  top: 12px;
  left: -42px;
  width: 28px;
  height: auto;
  color: #323232;
}

.header__hours {
  font-size: 12px;
  font-weight: 400;
  color: #323232;
  text-align: left;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 10px;
}

a.header__btn-wrapper {
  position: relative;
  padding: 24px 24px 28px 90px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #08529f;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #08529f;
  border-radius: 0;
  -webkit-transition: all .5s ease .1s;
  transition: all .3s ease .1s;
}

a.header__btn-wrapper:hover {
  color: #08529f;
  background-color: #fff;
  font-weight: 600;
}

span.header__btn-circle {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 17px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
  height: 33px;
  color: #08529f;
  background-color: #fff;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  vertical-align: middle;
  padding-left: 2px;
  -webkit-transition: all .5s ease .1s;
  transition: all .3s ease .1s;
}

span.header__btn-circle:last-child {
  left: 42px;
}

a.header__btn-wrapper:hover span.header__btn-circle {
  color: #fff;
  background-color: #08529f;
}

/*==============================================
ハンバーガーメニュー
================================================*/
#nav-toggle {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  background: #08529f;
}

#nav-toggle>div {
  position: relative;
  width: 35px;
  height: 65px;
  cursor: pointer;
  margin: auto;
}

#nav-toggle div span {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform .6s, top .6s;
}

#nav-toggle div span:nth-child(1) {
  top: 12px;
}

#nav-toggle div span:nth-child(2) {
  top: 22px;
}

#nav-toggle div span:nth-child(3) {
  top: 32px;
}

.open #nav-toggle div span:nth-child(1) {
  top: 24px;
  transform: rotate(135deg);
}

.open #nav-toggle div span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.open #nav-toggle div span:nth-child(3) {
  top: 24px;
  transform: rotate(-135deg);
}

#nav-inner {
  position: absolute;
  width: 100%;
  top: 42px;
  left: 50%;
  font-size: 10px;
  transform: translateX(-50%);
  text-align: center;
  transition: color .6s;
  color: #fff;
}

/*==================================================
ナビゲーション PC
====================================================*/
.nav-bar_sp {
  display: none;
}

#nav-bar {
  border-top: solid 1px #ccc;
}

.nav-bar_pc {
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

@media screen and (max-width:1024px) {
  .nav-bar_pc {
    width: 100%;
    max-width: 1024px;
    margin: auto;
  }

}

#nav-bar nav.nav-pc ul {
  margin: auto;
  display: flex;
  justify-content: space-around;
  padding: 2px 0;
  height: 40px;
  box-sizing: border-box;
}

#nav-bar nav.nav-pc ul li {
  width: 16.6%;
  padding: 2px  15px 25px;
}

#nav-bar nav.nav-pc ul li a {
  display: block;
  font-size: min(calc(11 / 1024 * 100vw), 1.8rem);
  text-align: center;
  padding: 5px 12px;
  position: relative;
  transition: all ease 0.3s;
}

@media screen and (max-width:1024px) {
  .nav-bar_pc {
    width: 100%;
    max-width: 1024px;
    margin: auto;
  }

  #nav-bar nav.nav-pc ul li a {
    font-size: calc(16 / 1024 * 100vw);
    padding: 8px 0 0 0;
  }

}

#nav-bar nav.nav-pc ul li a:hover {
  color: #08529f;
  font-weight: bolder;
}

#nav-bar nav.nav-pc ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #08529f;
  position: absolute;
  bottom: 4px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all ease 0.3s;
}

#nav-bar nav.nav-pc ul li a:hover:after {
  transform: scale(1, 1);
}

#nav-bar nav.nav-pc ul li+li {
  border-left: solid 1px #ccc;
}

#nav-bar nav.nav-pc ul li:first-child {
  border-left: solid 1px #ccc;
}

#nav-bar nav.nav-pc ul li:last-child {
  border-right: solid 1px #ccc;
}

/*==================================================
ナビゲーション　SP
====================================================*/
@media screen and (max-width:599px) {

  main {
    width: 100%;
  }

  .nav-pc {
    display: none;
  }

  .nav-bar_sp {
    display: block;
    position: fixed;
    z-index: 900;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #08529f;
  }

  .nav-sp {
    width: 70%;
    margin: auto;
    margin-top: 100px;
  }

  .nav-sp ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }

  .nav-sp ul li {
    width: 100%;
    border-bottom: dotted 1px #fff;
  }

  .nav-sp ul li a {
    display: block;
    font-size: 1.7rem;
    color: #fff;
    padding: 12px 0 10px 45px;
    position: relative;
  }

  .nav-sp ul li a::after {
    content: url(../img/arrow.png);
    position: absolute;
    top: 50%;
    transform: translateY(-37%);
    right: 0;
  }

  .nav-sp ul li:nth-of-type(1) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../img/menu-icon1w.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-sp ul li:nth-of-type(2) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../img/menu-icon2w.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-sp ul li:nth-of-type(3) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../img/menu-icon3w.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-sp ul li:nth-of-type(4) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../img/menu-icon4w.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-sp ul li:nth-of-type(5) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../img/menu-icon5w.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-sp ul li:nth-of-type(6) a::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../img/menu-icon6w.png) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

}

/*===================================================
メインビジュアル PC
=====================================================*/

main {
  max-width: 1920px;
  margin: auto;
}

.mainvisual {
  width: 100%;
  max-width: 1920px;
  height: 500px;
  position: relative;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background: #000;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0;
}

.slider .image img{
  display: block;
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}




@media screen and (max-width:1024px) {

  .mainvisual {
    height: 350px;
  }

  .slider {
    height: 350px;
    background-size: contain;
    margin: 0;
    padding: 0;

  }


}

.slider .image:nth-child(1) {
  background-image: url("../img/mainvisual_pc1.jpg");
}

.slider .image:nth-child(2) {
  background-image: url("../img/mainvisual_pc2.jpg");
  animation-delay: 8s;
}

.slider .image {
  animation-name: image;
  animation: image 16s ease infinite;
  opacity: 0;
}


/*===================================================
メインビジュアル SP
=====================================================*/
@media screen and (max-width:599px) {
  .mainvisual {
    width: 100%;
    height: 490px;
    background-color: #000;
  }

  .slider {
    width: 100%;
    height: 490px;
  }


  .slider .image:nth-child(1) {
    background-image: url("../img/mainvisual_sp1.jpg");
  }

  .slider .image:nth-child(2) {
    background-image: url("../img/mainvisual_sp2.jpg");
    animation-delay: 8s;
  }

  .slider .image img.pconly{
    display: none;
  }

  .sns-area {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: flex-start;
  }

  .sns-item {
    width: 12%;
    height: auto;
  }

  .sns-item+.sns-item {
    margin-left: 2rem;
  }

  .sns-item a {
    display: block;
  }

  .sns-item a img {
    width: 100%;
    height: auto;
  }

  .nav-bar_sp {
    visibility: hidden;
    opacity: 0;
  }

  .nav-bar_sp ul li {
    opacity: 0;
    transition: opacity 1s, transform .7s;
    transform: translateX(300px);
  }

  .sns-area {
    opacity: 0;
    transition: opacity 1s, transform .7s;
    transform: translateX(300px);
  }

  .open .nav-bar_sp {
    visibility: visible;
    opacity: 1;
  }

  .open .nav-bar_sp ul li {
    opacity: 1;
    transform: translateX(0);
  }

  .open .sns-area {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .1s;
  }

}

/*===================================================
メインビジュアルボタンリスト　PC
=====================================================*/

.btn-pc_list {
  width: 100%;
  height: 3em;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.btn-pc {
  width: 820px;
  margin: auto;
  display: flex;
  justify-content: space-around;
}

.btn-pc_item a {
  display: block;
  width: 100px;
  height: 100px;
  box-shadow: 2px 2px 6px #ccc;
  border-radius: 50%;
  transition: all ease .3s;
}

.btn-pc_item a:hover {
  transform: translate(2px, 2px);
}

.btn-pc_item a img {
  display: block;
  width: 100%;
  height: auto;
}

/*===================================================
メインビジュアルボタンリスト　TB
=====================================================*/

@media screen and (max-width:1024px) {

  .btn-pc_list {
    display: none;
  }

  .btn-pc {
    width: 700px;
  }

}

/*===================================================
メインビジュアルボタンリスト　SP
=====================================================*/

@media screen and (max-width:599px) {

  .btn-pc_list {
    display: none;
  }

}

/*==============================================
初めての方へ
================================================*/

#BEGINNERS {
  background: url(../img/background-image.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.white-board {
  padding-top: 6em;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

p.explanation {
  width: 75%;
  margin: 2rem auto;
  font-size: 1.7rem;
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.2rem;
}

p.start-writing {
  font-size: 2rem;
  text-align: center;
  padding-bottom: 1rem;
  color: #0b73e0;
  font-weight: bold;
}

.members-container {
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;;
  border: solid 1px #ccc;
  box-sizing: border-box;
  padding-top: 1.5rem;
}

.members-text {
  width: 56%;
  padding: 0 25px;
}

.members-text h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  position: relative;
  padding-bottom: 3rem;
}

.members-text h2::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 70px;
  background: url(../img/left.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 2%;
  left: 0;
}

.members-text h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 70px;
  background: url(../img/right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 2%;
  right: 0;
}

.members-text p {
  font-size: 1.6rem;
  text-align: justify;
  margin-bottom: 0.8rem;
  line-height: 1.8;
  color: #777;
}

.members-text h2 span.red {
  font-size: 5rem;
  color: red;
}

.members-text h2 span.time {
  display: block;
  font-size: 2rem;
}

span.percent {
  color: #08529f;
  font-weight: bold;
}

.members-image {
  width: 45%;
}

.beginners-flow {
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 0 0 4em;
}

.beginners-flow_item {
  width: 25%;
  height: auto;
}

.beginners-flow_item img {
  display: block;
  width: 100%;
  height: auto;
}

/*==============================================
初めての方へ TB
================================================*/
@media screen and (max-width:1024px) {

  #BEGINNERS {
    padding-top: 0;
  }

  p.explanation {
    width: 95%;
  }

  .members-container {
    width: 85%;
    flex-direction: column;
    padding-top: 3rem;
  }

  .members-text {
    width: 95%;
    margin: auto;
    order: 2;
    padding-bottom: 1.5rem;
  }

  .members-text h2 {
    font-size: 2.6rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .members-text h2::before {
    width: 50px;
    height: 70px;
    top: 10%;
    left: 15%;
  }

  .members-text h2::after {
    width: 50px;
    height: 70px;
    top: 10%;
    right: 15%;
  }

  .members-text p {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }

  .members-text p:last-child {
    padding-bottom: 0;
  }


  .members-text h2 span.red {
    font-size: 3.5rem;
  }

  .members-text h2 span.time {
    font-size: 2rem;
  }

  .members-image {
    width: 70%;
    order: 1;
  }

  .beginners-flow {
    width: 85%;
  }

}

/*==============================================
初めての方へ SP
================================================*/
@media screen and (max-width:599px) {

  #BEGINNERS {
    padding-top: 0;
  }

  .white-board {
    padding-top: 3em;
  }

  .members-container {
    width: 95%;
    flex-direction: column;
    padding-top: 10px;
  }

  .members-text {
    width: 95%;
    margin: auto;
    order: 2;
    padding:1.5rem 0  1.5rem 0;
  }

  .members-text h2 {
    font-size: calc(34 / 599 * 100vw);
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .members-text h2::before {
    width: calc(70 / 599 * 100vw);
    height: calc(210 / 599 * 100vw);
    top: 14%;
    left: -2%;
  }

  .members-text h2::after {
    width: calc(70 / 599 * 100vw);
    height: calc(210 / 599 * 100vw);
    top: 14%;
    right: -2%;
  }

  .members-text p {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }

  .members-text p:last-child {
    padding-bottom: 0;
  }

  .members-text h2 span.red {
    font-size: calc(60 / 599 * 100vw);
  }

  .members-text h2 span.time {
    font-size: calc(25 / 599 * 100vw);
  }

  .members-image {
    width: 95%;
    order: 1;
  }

  .beginners-flow {
    width: 100%;
    padding: 1em 0;
  }

}

/*==============================================
選ばれる理由
================================================*/

#REASON {
  width: 100%;
  padding: 2em 0;
  background-color: #fff;
  border-top: solid 1px #ccc;
  overflow: hidden;
  border-top: solid 3px #0c7cf0;
  background: url(../img/blossom-loop.gif) repeat;
  background-size: contain;
}

.reason-container {
  width: 85%;
  margin: auto;
  padding-bottom: 10rem;
}

p.example {
  font-size: 2.5rem;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  padding: 4rem 0 5rem;
  color: #0b73e0;
}

.pattern-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  background-color: #fff;
}

.pattern-item_image {
  width: 40%;
  height: auto;
}

.pattern-item_image img {
  display: block;
  width: 100%;
  height: auto;
}

.pattern-item_text {
  width: 50%;
  box-sizing: border-box;
  padding-left: 6rem;
}

.pattern-item_text h2 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.5rem;
  margin-bottom: 3rem;
}

.pattern-item_text h2::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  margin-bottom: -5px;
  margin-right: 8px;
}

.pattern-item:nth-of-type(1) .pattern-item_text h2::before {
  background: url(../img/check-W.svg) no-repeat;
}

.pattern-item:nth-of-type(2) .pattern-item_text h2::before {
  background: url(../img/check-M.svg) no-repeat;
}

.pattern-item_text ul {
  padding-left: 3rem;
}

.pattern-item_text ul li {
  list-style-type: disc;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}

.pattern-item:nth-of-type(2) .pattern-item_image {
  order: 2;
}

.pattern-item:nth-of-type(2) .pattern-item_text {
  order: 1;
}

.reason-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-content {
  width: 31%;
  height: auto;
  background-color: #fff;
}

.num-box {
  display: flex;
  flex-direction: column;
  width: 22%;
  padding: 1.5rem 0 0;
  margin-bottom: 2rem;
}

.content-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: solid 1px #ccc;
}

.content-title h3 {
  width: 78%;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #0b73e0;
  margin-bottom: -15px;
}

.content-title h3 span {
  font-size: 1.7rem;
  display: block;
  text-align: left;
  font-weight: 400;
  color: #777;
}

.content-num {
  width: 60px;
  height: 60px;
  font-size: 4rem;
  font-family: 'Crimson Text', serif;
  text-align: center;
  line-height: 60px;
  color: #fff;
  background: #08529f;
  border-radius: 50%;
  margin: auto;
}

.num-sub {
  display: block;
  font-size: 1.8rem;
  font-family: 'Crimson Text', serif;
  color: #08529f;
  text-align: center;
}

.content-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 2rem;
}

.content-image {
  width: 45%;
}

.content-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 12px 12px 0;
}

.content-text {
  width: 55%;
  font-size: 1.5rem;
  padding-left: 8px;
  text-align: justify;
  color: #777;
}

/*==============================================
選ばれる理由 TB
================================================*/
@media screen and (max-width:1024px) {

  .reason-container {
    width: 90%;
    padding-bottom: 8rem;
  }

  p.example {
    font-size: calc(25 / 1024 * 100vw);
    padding: 2rem 0 3rem;

  }

  .pattern-item {
    margin-bottom: 3em;
  }

  .pattern-item_image {
    width: 45%;
  }

  .pattern-item_text {
    padding-left: 2rem;
  }

  .pattern-item_text ul {
    padding-left: 2.5rem;
  }

  .reason-item {
    width: 100%;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .item-content {
    width: 90%;
  }

  .num-box {
    width: 15%;
  }

  .content-title h3 {
    width: 85%;
    text-align: left;
  }

  .content-title h3 span {
    font-size: 1.7rem;
    display: block;
    text-align: left;
    font-weight: 400;
    color: #777;
  }

  .content-box {
    width: 85%;
    margin: auto;
    justify-content: space-around;
  }

  .content-image {
    width: 25%;
  }

  .content-text {
    width: 65%;
    font-size: 1.7rem;
    padding: 15px;
  }

}

/*==============================================
選ばれる理由 SP
================================================*/
@media screen and (max-width:599px) {

  #REASON {
    padding-top: 3rem;
    background: none;
  }

  .reason-container {
    width: 100%;
    padding-bottom: 0;
  }

  p.example {
    font-size: calc(30 / 599 * 100vw);
  }

  .pattern-item {
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  .pattern-item_image {
    width: 100%;
  }

  .pattern-item_text {
    width: 100%;
    padding-left: 1rem;
    padding-top: 2rem;
  }

  .pattern-item_text ul {
    padding-left: 2rem;
  }

  .pattern-item:nth-of-type(2) .pattern-item_image {
    order: 1;
  }

  .pattern-item:nth-of-type(2) .pattern-item_text {
    order: 2;
  }

  .item-content {
    width: 100%;
    height: auto;
  }

  .content-box {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding-top: 2rem;
  }

  .content-image {
    width: 100%;
  }

  .content-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0 12px 12px 0;
  }

  .content-text {
    width: 100%;
    font-size: 1.7rem;
    padding-left: 8px;
    text-align: justify;
  }

  .num-box {
    display: flex;
    flex-direction: column;
    width: 17%;
    padding: 1.5rem 0 0;
    margin-bottom: 2rem;
  }

  .content-title {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: solid 1px #ccc;
    width: 95%;
    margin: auto;
  }

  .content-title h3 {
    width: 83%;
    font-size: calc(30 / 599 * 100vw);
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    font-weight: 500;
    color: #0b73e0;
    margin-bottom: -25px;
    padding-left: 16px;
  }

  .content-title h3 span {
    font-size: calc(22 / 599 * 100vw);
    display: block;
    text-align: left;
    font-weight: 400;
    color: #777;
  }

  .content-num {
    width: 60px;
    height: 60px;
    font-size: 4rem;
    font-family: 'Crimson Text', serif;
    text-align: center;
    line-height: 60px;
    color: #fff;
    background: #08529f;
    border-radius: 50%;
    margin: auto;
  }

  .num-sub {
    display: block;
    font-size: 1.8rem;
    font-family: 'Crimson Text', serif;
    color: #08529f;
    text-align: center;
  }

  .content-box {
    width: 85%;
    margin: auto;
  }

}

/*==============================================
スライダー
================================================*/

.slider-content {
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.slider-css-only {
  display: flex;
  -webkit-animation: loop-slide 30s infinite linear 1s both;
  animation: loop-slide 30s infinite linear 1s both;
}

.slider-css-only li {
  width: calc(100vw/6);
  height: auto;
}

.slider-css-only li img {
  width: calc(100vw/6);
}

@media screen and (max-width:1024px) {

  .slider-css-only li {
    width: calc(100vw/4);
    height: auto
  }

  .slider-css-only li img {
    width: calc(100vw/4)
  }
}

@media screen and (max-width:599px) {

  .slider-css-only li {
    width: calc(100vw/3);
    height: auto
  }

  .slider-css-only li img {
    width: calc(100vw/3)
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-100%)
  }
}

/*==============================================
婚活体験談
================================================*/

#REVIEW{
  width: 100%;
  padding: 3rem 0 ;
}

.review-container{
  width: 85%;
  margin: auto;
}

p.review-sentence{
  font-size: 1.7rem;
  text-align: center;
}

.review-contents{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.review-content{
  width: 32%;
}

.review-content a{
  display: block;
  width: 100%;
  border: solid 1px #eee;
  background-color: #fff;
  padding: 8px;
  box-shadow: 2px 2px 6px #ccc;
  border-radius: 5px;
  transition: all ease 0.3s;
}

.review-content a:hover{
  transform: translateY(2px);
  box-shadow: none;
  border-color: #ccc;
}

h2.review-title{
  font-size: 1.8rem;
  color: #0b73e0;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 30px 0;
  text-align: justify;
  width: 95%;
  margin: auto;
}

p.review-date{
  font-size: 1.5rem;
  text-align: right;
  color: #888;
  padding-bottom: 10px;
}

p.review-date span{
  display: inline-block;
  border: solid 1px #888;
  padding: 4px 8px;
  border-radius: 5px;
  margin-left: 8px;
}

.review-btn{
  text-align: center;
}

.review-btn a{
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #fff;
  padding: 8px 30px;
  color: #08529f;
  border: solid 1.5px #08529f;
  border-radius: 15px;
  position: relative;
  box-shadow: 2px 2px 6px #ccc;
  transition: all ease 0.3s;
  margin: 1rem 0 3rem;
}

.review-btn a::after{
  content: ">";
  display: block;
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

.review-btn a:hover{
  background-color: #08529f;
  color: #fff;
  transform: translateY(2px);
  box-shadow: none;
}

.review-btn a:hover::after{
  color: #fff;
}

.sponly{
  display: none;
}

@media screen and (max-width: 1024px){

  .review-container{
    width: 90%;
    margin: auto;
  }
  
  .review-contents{
    display: flex;
    flex-direction: column;
  }
  
  .review-content{
    width: 100%;
  }

  .review-content a{
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #eee;
    background-color: #fff;
    padding: 8px;
    margin-bottom: 2rem;
  }

  .review-content img{
    display: block;
    width: 40%;
    height: auto;
  }

  .review-text{
    width: 60%;
    padding: 0 15px;
  }

  h2.review-title{
    font-size: 1.8rem;
    color: #0b73e0;
    font-weight: 400;
    letter-spacing: 0.1rem;
    padding: 30px 0;
    text-align: justify;
    width: 95%;
    margin: auto;
  }
  
  p.review-date{
    font-size: 1.5rem;
    text-align: right;
    color: #888;
    padding-bottom: 10px;
  }
  
  p.review-date span{
    display: inline-block;
    border: solid 1px #888;
    padding: 4px 8px;
    border-radius: 5px;
    margin-left: 8px;
  }

}

@media screen and (max-width: 599px){

  .sponly{
    display: block;
  }

  .review-container{
    width: 95%;
    margin: auto;
  }

  p.review-sentence{
    font-size: 1.7rem;
    text-align: center;
  }
  
  .review-contents{
    display: flex;
    flex-direction: column;
  }
  
  .review-content{
    width: 100%;
  }

  .review-content a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 1px #eee;
    background-color: #fff;
    padding: 8px;
    margin-bottom: 2rem;
    box-sizing: border-box;
  }

  .review-content img{
    display: block;
    width: 100%;
    height: auto;
  }

  .review-text{
    width: 100%;
    padding: 0 15px;
  }

  h2.review-title{
    font-size: 1.8rem;
    color: #0b73e0;
    font-weight: 400;
    letter-spacing: 0.1rem;
    padding: 30px 0;
    text-align: justify;
    width: 95%;
    margin: auto;
  }
  
  p.review-date{
    font-size: 1.5rem;
    text-align: right;
    color: #888;
    padding-bottom: 10px;
  }
  
  p.review-date span{
    display: inline-block;
    border: solid 1px #888;
    padding: 4px 8px;
    border-radius: 5px;
    margin-left: 8px;
  }


}

/*==============================================
婚活お役立ち情報
================================================*/

#INFORMATION{
  background-color: rgba(242, 242, 242, 0.4);
  padding: 3rem 0 ;
  border-bottom: solid 2px #08529f;
}

.information-container{
  width: 85%;
  margin: auto;
}

p.information-sentence{
  font-size: 1.7rem;
  text-align: center;
}

.information-contents{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.information-content{
  width: 32%;
}

.information-content a{
  display: block;
  width: 100%;
  border: solid 1px #eee;
  background-color: #fff;
  padding: 8px;
  box-shadow: 2px 2px 6px #ccc;
  border-radius: 5px;
  transition: all ease 0.3s;
}

.information-content a:hover{
  transform: translateY(2px);
  box-shadow: none;
  border-color: #ccc;
}

h2.information-title{
  font-size: 1.8rem;
  color: #0b73e0;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 30px 0;
  text-align: justify;
  width: 95%;
  margin: auto;
}

p.information-date{
  font-size: 1.5rem;
  text-align: right;
  color: #888;
  padding-bottom: 10px;
}

p.information-date span{
  display: inline-block;
  border: solid 1px #888;
  padding: 4px 8px;
  border-radius: 5px;
  margin-left: 8px;
}

.information-btn{
  text-align: center;
}

.information-btn a{
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #fff;
  padding: 8px 30px;
  color: #08529f;
  border: solid 1.5px #08529f;
  border-radius: 15px;
  position: relative;
  box-shadow: 2px 2px 6px #ccc;
  transition: all ease 0.3s;
  margin: 1rem 0 3rem;
}

.information-btn a::after{
  content: ">";
  display: block;
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

.information-btn a:hover{
  background-color: #08529f;
  color: #fff;
  transform: translateY(2px);
  box-shadow: none;
}

.information-btn a:hover::after{
  color: #fff;
}

@media screen and (max-width: 1024px){

  .information-container{
    width: 90%;
    margin: auto;
  }
  
  .information-contents{
    display: flex;
    flex-direction: column;
  }
  
  .information-content{
    width: 100%;
  }

  .information-content a{
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #eee;
    background-color: #fff;
    padding: 8px;
    margin-bottom: 2rem;
  }

  .information-content img{
    display: block;
    width: 40%;
    height: auto;
  }

  .information-text{
    width: 60%;
    padding: 0 15px;
  }

  h2.information-title{
    font-size: 1.8rem;
    color: #0b73e0;
    font-weight: 400;
    letter-spacing: 0.1rem;
    padding: 30px 0;
    text-align: justify;
    width: 95%;
    margin: auto;
  }
  
  p.information-date{
    font-size: 1.5rem;
    text-align: right;
    color: #888;
    padding-bottom: 10px;
  }
  
  p.information-date span{
    display: inline-block;
    border: solid 1px #888;
    padding: 4px 8px;
    border-radius: 5px;
    margin-left: 8px;
  }

}

@media screen and (max-width: 599px){

  .information-container{
    width: 95%;
    margin: auto;
  }
  
  .information-contents{
    display: flex;
    flex-direction: column;
  }
  
  .information-content{
    width: 100%;
  }

  .information-content a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: solid 1px #eee;
    background-color: #fff;
    padding: 8px;
    margin-bottom: 2rem;
    box-sizing: border-box;
  }

  .information-content img{
    display: block;
    width: 100%;
    height: auto;
  }

  .information-text{
    width: 100%;
    padding: 0 15px;
  }

  h2.information-title{
    font-size: 1.8rem;
    color: #0b73e0;
    font-weight: 400;
    letter-spacing: 0.1rem;
    padding: 30px 0;
    text-align: justify;
    width: 95%;
    margin: auto;
  }
  
  p.information-date{
    font-size: 1.5rem;
    text-align: right;
    color: #888;
    padding-bottom: 10px;
  }
  
  p.information-date span{
    display: inline-block;
    border: solid 1px #888;
    padding: 4px 8px;
    border-radius: 5px;
    margin-left: 8px;
  }


}



/*==============================================
料金プラン
================================================*/

#FEE {
  width: 100%;
  height: 1000px;
  overflow: hidden;
}

.plan-background {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 30px 30px;
  background-repeat: repeat;
  border-bottom: 3px solid #0c7cf0;
  padding-bottom: 60px;
}

.plan-container {
  width: 75%;
  height: auto;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
  outline: 2px solid #ccc;
  outline-offset: -10px;
  border: solid 2px #ccc;
  box-shadow: 3px 3px 6px #ccc;
}

.plan-container::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(../img/dl-bottom.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 5px;
  bottom: 5px;
}

h2.plan-title {
  font-size: 3rem;
  font-weight: 500;
  color: #0b73e0;
  transform: translateY(25%);
}

h2.plan-title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
  margin-right: 5px;
  margin-bottom: 0;
}

.plan-contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contents-left {
  width: 50%;
  padding-right: 30px;
  transform: translateY(10%);
}

.contents-right {
  width: 50%;
}

p.plan-sentence {
  font-size: 1.6rem;
  margin: 1.5rem 0;
  line-height: 1.7;
}

p.plan-item-name {
  font-size: 1.6rem;
}

p.plan-item-name.color-blue {
  color: #08529f;
  font-weight: bold;
}

p.plan-item-name.color-pink {
  color: #d9343c;
  font-weight: bold;
}

.contents-left ul li {
  font-size: 1.6rem;
  margin: 0.7rem 0;
  list-style-type: disc;
  margin-left: 2.5rem;
  letter-spacing: 0.1rem;
}

.contents-left ul.first li {
  color: #08529f;
}

.contents-left ul.first li span{
  color: #333;
}

.contents-left ul.first{
  margin-bottom: 1.2rem;
}

.contents-left ul.second li {
  color: #d9343c;
}

.contents-left ul.second li span{
  color: #333;
}

.plan-price {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  margin-top: -6rem;
}

.plan-price dl {
  display: flex;
  flex-wrap: wrap;
}

.plan-price dl dt {
  width: 30%;
  text-align: center;
  background-color: #ccc;
}

.plan-price dl dt+dt {
  border-bottom: solid 1px #fff;
}

.plan-price dl dd {
  width: 70%;
  text-align: right;
  background-color: #fff;
}

.plan-price dd,
.plan-price dt {
  font-size: 1.6rem;
  padding: 5px 8px;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
}

.plan-price dd.first,
.plan-price dt:first-child {
  border-top: solid 1px #ccc;
}

.plan-price dd.fourth {
  padding-right: 18px;
}

.plan-price dl dt.under-line {
  border-bottom: solid 2px #fff;
}

/*==============================================
料金プラン TB
================================================*/

@media screen and (max-width:1024px) {

  #FEE {
    height: 700px;
  }

  .plan-container {
    width: 100%;
    padding: 20px 30px 30px;
  }

  h2.plan-title {
    font-size: 2.7rem;
    transform: translateY(0);
  }

  h2.plan-title::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../img/check.svg) no-repeat;
    background-size: contain;
    margin-right: 5px;
    margin-bottom: -2px;
  }

  .contents-left {
    width: 60%;
    padding-right: 10px;
    transform: translateY(0);
  }

  .contents-right {
    width: 40%;
  }

  p.plan-sentence {
    font-size: 1.4rem;
    margin: 1rem 0;
  }

  p.plan-item-name {
    font-size: 1.5rem;
  }

  .contents-left ul li {
    font-size: 1.5rem;
    margin: 0.2rem 0;
    list-style-type: disc;
    margin-left: 2.5rem;
  }

  .plan-price {
    width: 50%;
    margin-left: auto;
    margin-right: 0;
    margin-top: -18rem;
  }

  .plan-price dl {
    display: flex;
    flex-wrap: wrap;
  }

  .plan-price dl dt {
    width: 30%;
    text-align: center;
    background-color: #ccc;
  }

  .plan-price dl dt+dt {
    border-bottom: solid 1px #fff;
  }

  .plan-price dl dd {
    width: 70%;
    text-align: right;
  }

  .plan-price dd,
  .plan-price dt {
    font-size: 1.6rem;
    padding: 5px 8px;
    border-bottom: solid 1px #ccc;
  }

  .plan-price dd.first,
  .plan-price dt:first-child {
    border-top: solid 1px #ccc;
  }

  .plan-price dd.fourth {
    padding-right: 18px;
  }

  .plan-price dl dt.under-line {
    border-bottom: solid 2px #fff;
  }

}

/*==============================================
料金プラン SP
================================================*/

@media screen and (max-width: 599px) {

  #FEE {
    height: auto;
    padding-top: 3rem;
  }

  .plan-container {
    width: 95%;
  }

  h2.plan-title {
    font-size: 2.5rem;
    transform: translateY(0);
  }

  h2.plan-title::before {
    width: 18px;
    height: 18px;
    margin-bottom: -2px;
  }

  .plan-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contents-left {
    width: 100%;
    padding-right: 0;
    transform: translateY(0);
    padding-bottom: 1.5rem;
  }

  .contents-right {
    width: 100%;
  }

  p.plan-sentence {
    font-size: 1.5rem;
    margin: 1rem 0;
  }

  p.plan-item-name {
    font-size: 1.5rem;
  }

  .contents-left ul li {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    list-style-type: disc;
    margin-left: 2.5rem;
  }

  .plan-price {
    width: 100%;
    margin: auto;
    margin-top: 0;
  }

  .plan-price dl {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .plan-price dl dt {
    width: 30%;
    text-align: center;
    background-color: #ccc;
  }

  .plan-price dl dt+dt {
    border-bottom: solid 1px #fff;
  }

  .plan-price dl dd {
    width: 70%;
    text-align: right;
  }

  .plan-price dd,
  .plan-price dt {
    font-size: calc(26 / 599 * 100vw);
    padding: 5px 8px;
    border-bottom: solid 1px #ccc;
  }

  .plan-price dd.first,
  .plan-price dt:first-child {
    border-top: solid 1px #ccc;
  }

  .plan-price dd.fourth {
    padding-right: 18px;
  }

  .plan-price dl dt.under-line {
    border-bottom: solid 2px #fff;
  }

}

/*==============================================
ご成婚までの流れ
================================================*/

#FLOW {
  background-color: #f0f4f6;
  padding-bottom: 7em;
  padding-top: 3em;
  overflow: hidden;
}

.flow-wrapper {
  width: 75%;
  margin: auto;
}

.flow-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: solid 1px #ccc;
}

.flow-text {
  width: 52%;
  padding: 30px 40px 30px 30px;
}

h2.flow-title {
  font-size: 2.6rem;
  font-weight: 400;
  padding: 3rem 0;
}

h2.flow-title::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
}

.flow-text p {
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: justify;
}


.flow-image {
  width: 48%;
  position: relative;
}

.flow-image img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-text-anime {
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px;
  border-radius: 50%;
  position: absolute;
  bottom: 5%;
  left: 5%;
}

.flow-text-anime img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-20%);
}


.hr {
  padding: 35px 0;
}

.arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-top: solid 2px #0b73e0;
  border-right: solid 2px #0b73e0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin: auto;
}

/*==============================================
ご成婚までの流れ TB
================================================*/

@media screen and (max-width:1024px) {
  #FLOW {
    padding-bottom: 7em;
    padding-top: 3em;
  }

  .flow-wrapper {
    width: 90%;
    margin: auto;
  }

  .flow-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .flow-text {
    width: 90%;
    margin: auto;
    padding: 15px 30px 30px;
    order: 2;
  }

  h2.flow-title {
    font-size: 2.4rem;
    padding: 1.5rem 0;
  }

  h2.flow-title::before {
    width: 18px;
    height: 18px;
  }

  .flow-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    text-align: justify;
  }

  .flow-image {
    width: 70%;
    margin: auto;
    padding-top: 3em;
    order: 1;
  }

  .flow-text-anime {
    width: 100px;
    height: 100px;
    bottom: 2%;
    left: 2%;
  }

  .hr {
    padding: 35px 0;
  }

}

/*==============================================
ご成婚までの流れ SP
================================================*/

@media screen and (max-width: 599px) {
  #FLOW {
    padding-bottom: 5em;
    padding-top: 3rem;
  }

  .flow-wrapper {
    width: 95%;
  }

  .flow-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .flow-text {
    width: 100%;
    margin: auto;
    padding: 15px;
    box-sizing: border-box;
    order: 2;
  }

  h2.flow-title {
    font-size: 2.2rem;
    padding: 1.5rem 0;
    position: relative;
    padding-left: 24px;
  }

  h2.flow-title::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 2.1rem;
    left: 0;
  }

  .flow-text p {
    font-size: 1.7rem;
    line-height: 1.8;
    text-align: justify;
  }

  .flow-image {
    width: 90%;
    margin: auto;
    padding-top: 1.8em;
    order: 1;
  }

  .flow-text-anime {
    width: 70px;
    height: 70px;
    bottom: 2%;
    left: 2%;
  }

  .hr {
    padding: 35px 0;
  }
}

/*==============================================
カウンセラー紹介
================================================*/

#COUNSELOR {
  padding-bottom: 7rem;
  overflow: hidden;

}

h2.counselor-title {
  font-size: 3.8em;
  text-align: center;
  font-family: 'Heebo', sans-serif;
  color: #0b73e0;
  position: relative;
  padding: 0 2em 2em;
}

h2.counselor-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background-color: #08529f;
  margin: auto;
}

.counselor-wrappaer {
  width: 75%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  outline: 2px solid #ccc;
  outline-offset: -10px;
  border: solid 2px #ccc;
  box-shadow: 2px 2px 4px #ccc;
}

.counselor-text {
  width: 70%;
  padding: 10px;
}

.counselor-image {
  width: 30%;
}

h2.counselor-name {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  position: relative;
  padding-left: 28px;
  line-height: 1.4;
  margin-bottom: 2rem;
}

h2.counselor-name span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  padding-left: 0.9rem;
}

h2.counselor-name::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 11px;
  left: 0;
}

.counselor-text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #444;
}

.counselor-text ul {
  margin-bottom: 2rem;
}

.counselor-text ul:last-child {
  margin-bottom: 0;
}


.counselor-text ul li {
  font-size: 1.8rem;
  list-style-type: disc;
  margin-left: 20px;
}

/*==============================================
カウンセラー紹介 TB
================================================*/

@media screen and (max-width:1024px) {

  .counselor-wrappaer {
    width: 90%;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }

  .counselor-text {
    width: 90%;
    padding: 20px 10px 10px;
    margin: auto;
    order: 2;
  }

  .counselor-image {
    width: 60%;
    margin: auto;
    order: 1;
  }

}

/*==============================================
カウンセラー紹介 SP
================================================*/

@media screen and (max-width:599px) {

  #COUNSELOR {
    padding-bottom: 4rem;
    padding-top: 5rem;
  }

  h2.counselor-title {
    font-size: calc(48 / 599 * 100vw);
  }

  .counselor-wrappaer {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .counselor-text {
    width: 100%;
  }

  .counselor-image {
    width: 70%;
  }

  h2.counselor-name {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.4rem;
    position: relative;
    padding-left: 28px;
    line-height: 1.4;
    margin-bottom: 2rem;
  }

  h2.counselor-name span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
    padding-left: 0.9rem;
  }

  h2.counselor-name::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/check.svg) no-repeat;
    background-size: contain;
    position: absolute;
    top: 11px;
    left: 0;
  }

  .counselor-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #444;
  }

  .counselor-text ul {
    margin-bottom: 2rem;
  }

  .counselor-text ul:last-child {
    margin-bottom: 0;
  }

  .counselor-text ul li {
    font-size: 1.8rem;
    list-style-type: disc;
  }

}

/*=============================================
ご挨拶
================================================*/

#GREETING {
  background: url(../img/greeting-background.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.greeting-container {
  width: 70%;
  margin: auto;
  padding-bottom: 8rem;
}

.greeting-image {
  width: 70%;
  margin: auto;
  padding-bottom: 5rem;
  display: none;
}

p.greeting-sentence {
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  text-align: justify;
  padding-bottom: 3rem;

}

.greeting-item {
  width: 95%;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 15px;
  border-radius: 8px;
  box-sizing: border-box;
}

.greeting-item:last-child {
  margin-bottom: 0;
}

h2.greeting-item_title {
  font-size: 2.2rem;
  color: #444;
  font-weight: 400;
  padding: 15px 0;
}

h2.greeting-item_title::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
  margin: 0 7px -3px 0;
}

.greeting-item p {
  font-size: 1.7rem;
  text-align: justify;
  line-height: 1.7;
  letter-spacing: 0.1rem;
}

.greeting-item p span.font-blue{
  color: #08529f;
}

/*=============================================
ご挨拶 TB
================================================*/

@media screen and (max-width:1024px) {
  .greeting-container {
    width: 80%;
    padding-bottom: 7rem;
  }

  .greeting-item {
    width: 100%;
  }

  h2.greeting-item_title {
    font-size: 2.2rem;
  }

  .greeting-item p {
    font-size: 1.7rem;
  }

}

/*=============================================
ご挨拶 SP
================================================*/

@media screen and (max-width:599px) {
  .greeting-container {
    width: 90%;
    padding-bottom: 4rem;
  }

  .greeting-item {
    width: 100%;
  }

  h2.greeting-item_title {
    font-size: calc(34 / 599 * 100vw);
  }

  .greeting-item p {
    font-size: 1.7rem;
  }
}

/*==============================================
よくある質問
================================================*/

#FAQ {
  background-color: rgba(242, 242, 242, 0.4);
  padding-bottom: 10rem;
  overflow: hidden;
}

#FAQ h2 {
  font-size: 5rem;
  color: #08529f;
  text-align: center;
  margin-top: -1rem;
  padding-bottom: 2rem;
}

.faq-container {
  width: 65%;
  margin: auto;
}

.qa-container {
  text-align: justify;
  margin-bottom: 1.3rem;
  width: 100%;
}

.qa-container label {
  font-size: 2rem;
  font-weight: 800;
  font-family: serif;
  color: #26896d;
  display: block;
  position: relative;
  background: #f0f4f6;
  padding: 2rem 7rem 2rem 7rem;
  cursor: pointer;
}

.qa-container label::before {
  font-size: 1.7em;
  content: 'Q';
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-family: serif;
  font-weight: 600;
}

.qa-container label::after {
  font-size: 1.7em;
  text-align: center;
  font-weight: 700;
  line-height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  content: '\2b';
  display: inline-block;
  width: 2em;
  height: 2em;
  transition: transform .4s;
}

.qa-container input {
  display: none;
}

.qa-container p.answer {
  font-size: 1.6rem;
  padding: 2rem 2rem 2rem 5rem;
  display: none;
  transition: all ease 1s;
  margin: 0 0.5rem;
  border: solid 5px #f0f4f6;
  position: relative;
}

.qa-container p.answer::before {
  font-size: 3rem;
  content: 'A';
  display: block;
  font-family: serif;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}

.qa-container input:checked~p.answer {
  display: block;
  transition: all ease 1s;
  margin: 0;

}

.qa-container input[type=checkbox]:checked+label:after {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%
}

/*==============================================
よくある質問 TB
================================================*/

@media screen and (max-width:1024px) {

  .faq-container {
    width: 85%;
  }

}

/*==============================================
よくある質問 SP
================================================*/

@media screen and (max-width:599px) {

  #FAQ {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .faq-container {
    width: 95%;
  }

  .qa-container label {
    font-size: 1.8rem;
  }

  .qa-container p.answer {
    font-size: 1.6rem;
  }

}

/*==============================================
入会バナー
================================================*/

.banner {
  max-width: 1920px;
  margin: auto;
  background: url(../img/banner-image-pc.jpg) no-repeat;
  background-size: cover;
  overflow: hidden;
}

.banner-group {
  padding: 70px 0;
}

p.banner-text1 {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 3rem 0;
  transform: translateX(7px);
}

p.banner-text1::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../img/left-w.svg) no-repeat;
  background-size: contain;
  transform: translateY(7px);
}

p.banner-text1::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../img/right-w.svg) no-repeat;
  background-size: contain;
  margin-left: 1rem;
  transform: translateY(7px);
}

.banner-btn a {
  display: block;
  width: 420px;
  height: auto;
  background-color: #fff;
  padding: 1rem 1.7rem 2rem 1rem;
  font-weight: 500;
  margin: auto;
  transition: all ease .5s;
}

.banner-btn a:hover {
  background-color: #08529f;
}

.banner-btn a p {
  font-size: 2.4rem;
  color: #08529f;
  text-align: center;
}

.banner-btn a:hover p {
  color: #fff;
}

.banner-btn a p::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../img/consul-icon.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
  transform: translateY(15px);
}

.banner-btn a:hover p::before {
  background: url(../img/consul-icon-w.png) no-repeat;
}

p.banner-text2 {
  font-size: 2.3rem;
  color: #fff;
  font-family: serif;
  text-align: center;
  line-height: 1.15;
  padding: 2.5rem 0;
}

/*==============================================
入会バナー TB
================================================*/

@media screen and (max-width:1024px) {
  .banner {
    max-width: 100vw;
  }

  .banner-group {
    padding: 0;
  }

  p.banner-text1 {
    font-size: 2.5rem;
    position: relative;
    padding: 2rem 0 1.5rem;
    transform: translateX(7px);
  }

  p.banner-text1::before {
    width: 35px;
    height: 35px;
    transform: translateY(7px);
  }

  p.banner-text1::after {
    width: 35px;
    height: 35px;
    transform: translateY(7px);
  }

  .banner-btn a {
    width: 380px;
    height: auto;
    padding: 1rem 1.7rem 2rem 1rem;
  }

  .banner-btn a:hover {
    background-color: #08529f;
  }

  .banner-btn a p {
    font-size: 2.4rem;
    color: #08529f;
    text-align: center;
  }

  .banner-btn a:hover p {
    color: #fff;
  }

  .banner-btn a p::before {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    transform: translateY(15px);
  }

  .banner-btn a:hover p::before {
    background: url(../img/consul-icon-w.png) no-repeat;
  }

  p.banner-text2 {
    font-size: 1.8rem;
    line-height: 1;
    padding: 1.5rem 0 2rem;
  }
}

/*==============================================
入会バナー SP
================================================*/

@media screen and (max-width:599px) {

  .banner {
    max-width: 100%;
    margin: auto;
    background: url(../img/banner-image-sp.jpg) no-repeat;
    background-size: cover;
    background-position: right top;
  }

  .banner-group {
    padding: 70px 0;
  }

  p.banner-text1 {
    font-size: calc(38 / 599 * 100vw);
    color: #fff;
    text-align: center;
    position: relative;
    padding: 3rem 0;
    transform: translateX(7px);
  }

  p.banner-text1::before {
    content: "";
    display: inline-block;
    width: calc(27 / 599 * 100vw);
    height: calc(27 / 599 * 100vw);
    background: url(../img/left-w.svg) no-repeat;
    background-size: contain;
    transform: translateY(calc(2 / 599 * 100vw));
  }

  p.banner-text1::after {
    content: "";
    display: inline-block;
    width: calc(27 / 599 * 100vw);
    height: calc(27 / 599 * 100vw);
    background: url(../img/right-w.svg) no-repeat;
    background-size: contain;
    transform: translate(calc(-10 / 599 * 100vw), calc(2 / 599 * 100vw));
  }

  .banner-btn a {
    width: 77%;
    height: auto;
    border-radius: 8px;
    background-color: #fff;
    padding: 1rem 1.7rem 2rem 1rem;
    font-weight: 500;
    margin: auto;
    transition: all ease .5s;
  }

  .banner-btn a:hover {
    background-color: #08529f;
  }

  .banner-btn a p {
    font-size: calc(34 / 599 * 100vw);
    color: #08529f;
    text-align: center;
  }

  .banner-btn a:hover p {
    color: #fff;
  }

  .banner-btn a p::before {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    background: url(../img/consul-icon.png) no-repeat;
    background-size: contain;
    margin: 0 auto 2rem;
  }

  .banner-btn a:hover p::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    background: url(../img/consul-icon-w.png) no-repeat;
    background-size: contain;
    margin: 0 auto 2rem;
  }

  p.banner-text2 {
    font-size: calc(32 / 599 * 100vw);
    color: #fff;
    font-family: serif;
    text-align: center;
    line-height: 1.15;
    padding: 2.5rem 0;
  }

}

/*===============================================
フッターPC
=================================================*/

footer {
  background-color: #08529f;
  overflow: hidden;
}

.footer-navi {
  border-bottom: solid 1px #fff;
}

.footer-navi ul {
  width: 70%;
  max-width: 1200px;
  min-width: 1025px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
}

.footer-navi ul li {
  width: 16.6%;
  padding: 0.2rem 1.2rem 1rem;
}

.footer-navi ul li+li {
  border-left: solid 1px #fff;
}

.footer-navi ul li:nth-child(1) {
  border-left: solid 1px #fff;
}

.footer-navi ul li:nth-child(6) {
  border-right: solid 1px #fff;
}

.footer-navi ul li a {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
}

.footer-navi ul li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all ease 0.3s;
}

.footer-navi ul li a:hover::after {
  transform: scale(1, 1);
}

.footer-content {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
}

.footer-content_left {
  width: 350px;
  height: auto;
}

.footer-logo {
  width: 90%;
  height: auto;
  padding-bottom: 0.5rem;
}

.footer-btn-list {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ibj {
  width: 60%;
  height: auto;
}

.footer-content_left .sns-item {
  width: 10%;
  height: auto;
}

.footer-content_right {
  width: 30%;
}

.footer__tel {
  position: relative;
  font-size: 31px;
  font-weight: 300;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  display: block;
  color: #fff;
  text-align: left;
  line-height: 1;
  letter-spacing: 1px;
}

.footer__tel::before {
  content: url(../img/icon-tel-pc-w.svg);
  position: absolute;
  top: 12px;
  left: -42px;
  width: 28px;
  height: auto;
  color: #fff;
}

.footer__hours {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 1px;
  margin-top: 10px;
}

.footer-content_rigtht p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
  padding-top: 1.2rem;
  letter-spacing: 0.1rem;
}

/*===============================================
フッターTB
=================================================*/

@media screen and (max-width:1024px) {
  .footer-navi ul {
    width: 70%;
    max-width: 980px;
    min-width: 720px;
  }

  .footer-navi ul li {
    width: 16.6%;
    padding: 0.2rem 0.2rem 0.2rem 0.2rem;
  }

  .footer-navi ul li+li {
    border-left: solid 1px #fff;
  }

  .footer-navi ul li:nth-child(1) {
    border-left: solid 1px #fff;
  }

  .footer-navi ul li:nth-child(6) {
    border-right: solid 1px #fff;
  }

  .footer-navi ul li a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: calc(16 / 1024 * 100vw);
    position: relative;
  }

  .footer-navi ul li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: all ease 0.3s;
  }

  .footer-navi ul li a:hover::after {
    transform: scale(1, 1);
  }

  .footer-content {
    width: 98%;
  }

  .footer-content_left {
    width: 320px;
    padding-left: 2rem;
  }

  .footer-content_right {
    width: 30%;
  }

  .footer__tel {
    position: relative;
    font-size: 28px;
    font-weight: 300;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: block;
    color: #fff;
    text-align: left;
    line-height: 1;
    letter-spacing: 1px;
  }

  .footer__tel::before {
    content: url(../img/icon-tel-pc-w.svg);
    position: absolute;
    top: 12px;
    left: -42px;
    width: 24px;
    height: auto;
    color: #fff;
  }

  .footer__hours {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    font-family: "Noto Serif JP", sans-serif;
    line-height: 1;
    letter-spacing: 1px;
    margin-top: 10px;
  }

  .footer-content_rigtht p {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.2;
    padding-top: 1.2rem;
    letter-spacing: 0.1rem;
  }

}

/*===============================================
フッターSP
=================================================*/

@media screen and (max-width:599px) {

  footer {
    padding-bottom: 58px;
  }

  .footer-navi {
    border-bottom-width: 0;
  }

  .footer-navi ul {
    width: 90%;
    max-width: 95%;
    min-width: 95%;
    flex-wrap: wrap;
    margin: auto;
  }

  .footer-navi ul {
    padding: 0 0 3rem;
  }

  .footer-navi ul li {
    width: 50%;
    margin: auto;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: solid 1px #fff;
  }

  .footer-navi ul li+li {
    border-left-width: 0;
  }

  .footer-navi ul li:nth-child(1) {
    border-left-width: 0;
  }

  .footer-navi ul li:nth-child(2) {
    border-left: solid 1px #fff;
  }

  .footer-navi ul li:nth-child(4) {
    border-left: solid 1px #fff;
  }

  .footer-navi ul li:nth-child(6) {
    border-right-width: 0;
    border-left: solid 1px #fff;
  }

  .footer-navi ul li a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: calc(25 / 599 * 100vw);
    position: relative;
  }

  .footer-navi ul li a::after {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    padding: 1rem 0 4rem;
  }

  .footer-content_left {
    width: 80%;
    margin: auto;
    padding-left: 0;
    padding-bottom: 2rem;
  }

  .footer-content_right {
    width: 80%;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-btn-list {
    width: 70%;
    margin: auto;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
  }

  .ibj {
    width: 50%;
    height: auto;
    padding-right: 1rem;
  }

  .footer-content_left .sns-item {
    width: 12%;
    height: auto;
  }

  .footer__tel-wrapper {
    transform: translateX(calc(70 / 599 * 100vw));
  }

  .footer-content_rigtht p {
    font-size: calc(24 / 599 * 100vw);
  }

}

/*===============================================
コピーライト
=================================================*/
p.copy-right {
  font-size: 1.4rem;
  font-family: serif;
  text-align: center;
  color: #fff;
  padding: 2rem 0;
  background-color: #000;
}

@media screen and (max-width:599px) {
  p.copy-right {
    font-size: calc(20 / 599 * 100vw);
  }
}

/*===============================================
フッターフィックス PC
=================================================*/

#footer-fixed {
  display: none;
}

/*===============================================
フッターフィックス TB
=================================================*/

@media screen and (max-width:1024px) {

  #footer-fixed {
    display: none;
  }
}

/*===============================================
フッターフィックス
=================================================*/

@media screen and (max-width:599px) {

  #footer-fixed {
    display: block;
    box-shadow: 0 -3px 1px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: -150px;
    left: 0;
    z-index: 5;
    background: #fff;
    width: 100%;
    height: 58px;
  }

  #footer-fixed .container {
    width: 100vh;
    height: auto;
    box-sizing: border-box;
  }

  #footer-fixed ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  #footer-fixed ul li {
    width: 50%;
    height: auto;
    text-align: center;
  }

  #footer-fixed ul li+li {
    border-left: solid 1px #fff;
  }

  #footer-fixed ul li a {
    display: block;
    height: 58px;
    line-height: 58px;
    padding-bottom: 0.3rem;
    position: relative;
    font-size: calc(22 / 375 * 100vw);
    font-family: 'Kosugi Maru', sans-serif;
    transition: all ease .5s;
  }

  #footer-fixed ul a {
    background: #08529f;
    color: #fff;
    text-align: center;
    border: solid 2px #08529f;
    box-sizing: border-box;
  }

  #footer-fixed ul a:hover {
    background: #fff;
    color: #08529f;
    font-weight: bold;
  }

  #footer-fixed ul li:nth-child(1) a::before {
    content: "";
    display: inline-block;
    background: url("../img/phone-w.svg") no-repeat;
    background-size: contain;
    width: calc(23 / 375 * 100vw);
    height: calc(23 / 375 * 100vw);
    transform: translateY(2px);
    margin-right: 0.2em;
  }

  #footer-fixed ul li:nth-child(1) a:hover::before {
    background: url("../img/phone.svg") no-repeat;
  }

  #footer-fixed ul li:nth-child(2) a::before {
    content: "";
    display: inline-block;
    background: url("../img/mail-w.svg") no-repeat;
    background-size: contain;
    width: calc(25 / 375 * 100vw);
    height: calc(25 / 375 * 100vw);
    transform: translate(-5px, calc(7.5 / 375 * 100vw));
  }

  #footer-fixed ul li:nth-child(2) a:hover::before {
    background: url("../img/mail.svg") no-repeat;
  }

}

/*===============================================
ページトップ
=================================================*/

#pagetop {
  cursor: pointer;
  padding: 12px;
  position: fixed;
  right: -70px;
  bottom: 80px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 120;
}

#pagetop a {
  display: block;
}

#pagetop img {
  display: block;
  padding-top: 0.4rem;
}

@media screen and (max-width:599px) {
  #pagetop {
    width: 45px;
    height: 45px;
    bottom: 110px;
  }

  #pagetop img{
    padding-top: 0.3rem;
  }

  #top {
    padding-top: 65px;
  }
}

/*==============================================
スタート画面
================================================*/
/*
.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start .start-image {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 9999;
  width: 280px;
  width: 380px;
  height: auto;
  display: none;
}

@media screen and (max-width:599px) {
  .start .start-image {
    width: calc(480 / 599 * 100vw);
  }
}
*/

.loader-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-image {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, 0);
}

.loader {
  font-size: 10px;
  margin: 30px auto;
  text-indent: -9999em;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  background: #0b73e0;
  background: -moz-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #0b73e0 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0), ;
}

.loader:before {
  width: 50%;
  height: 50%;
  background: #0b73e0;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.loader:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}




@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*===============================================
アニメーション詳細設定
=================================================*/

@keyframes image {
  0% {
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}

@keyframes image2 {
  0% {
    opacity: 0;
  }

  28% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}