@charset "UTF-8";

/*!
Theme Name: Cocoon Child Asakatsu
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.2
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
body, p {
    font-family: Meiryo, メイリオ, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Helvetica, Arial, sans-serif;
    text-size-adjust: none;
}

h1, h2, h3, h4, h5 {
    font-family: Meiryo, メイリオ, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Helvetica, Arial, sans-serif;
}

.site-header {
  position: fixed;
  z-index: 20;
  background: rgb(23, 41, 143);
  transition: all 0.5s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.home .site-header {
  background: transparent;
}

.site-header.fixed {
  background: rgb(23, 41, 143);
}

.site-header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1276px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 0;
}

.site-branding {
  width: 100%;
  max-width: 250px;
}
/*  .site-branding {
    width: 100%;
    max-width: 200px;
    position: absolute;
    left: 10px;
    top: 13px;
  }*/

.content {
    margin-top: 80px;
}

/* Navigation
--------------------------------------------- */
.main-navigation,
.footer-navigation {
  display: block;
  width: 100%;
}

.main-navigation ul,
.footer-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul {
  position: absolute;
  width: 100%;
  background: rgba(255, 255, 255 , 0.9);
  padding: 75px 0 0 0;
  text-align: center;
  top: 0;
  left: 0;
  /*overflow-x: hidden;*/
  transition: .5s;
  transform: translate3d(100% , 0 , 0);
}

.main-navigation ul ul,
.footer-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul,
.footer-navigation ul ul li:hover > ul,
.footer-navigation ul ul li.focus > ul {
  display: block;
  left: auto;
}

.main-navigation ul ul a,
.footer-navigation ul ul a {
  width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul,
.footer-navigation ul li:hover > ul,
.footer-navigation ul li.focus > ul  {
  left: auto;
}

.main-navigation li {
  position: relative;
  text-align: center;
  padding: 0 1rem;
  letter-spacing: 2px;
}

.footer-navigation li {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.main-navigation a,
.footer-navigation a {
  display: block;
  text-decoration: none;
  color: #FFF;
}

/* Small menu. */
.menu-toggle {
  display: block;
  position: absolute;
  right: 0;
  background: #FFF;
  border: none;
  top: 0;
  height: 55px;
  width: 55px;
  border-radius: 0;
  margin: 10px 10px 0 0;
  z-index: 100;
}

.main-navigation.toggled ul {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255 , 0.9);
  padding: 75px 0 0 0;
  list-style: none;
  margin: 0;
  text-align: center;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0 , 0, 0);
  transform: translate3d(0 , 0, 0);
  transition: all 0.3s ease-in-out;
}

.menu-item-description {
  display: block;
  font-size: 1.1rem;
}

@media screen and (min-width: 780px) {

  .menu-toggle {
    display: none;
  }

  .main-navigation ul{
    display: flex;
    justify-content: flex-end;
    position: relative;
    background: none;
    width: auto;
    padding: 0;
    transform: translate3d(0 , 0 , 0);
  }

  .main-navigation ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 1);
    transition: transform 0.3s ease;
    transform: scale3d(0, 1, 0);
    transform-origin: right top;
  }

  .main-navigation ul li:hover a::after,
  header .main-navigation ul li a.active::after {
    transform-origin: left top;
    transform: scale3d(1, 1, 1);
  }
}


@media screen and (max-width: 780px) {
  .menu-toggle > span {
    position: absolute;
    left: 0;
    right: 0;
    width: 25px;
    height: 2px;
    background: rgb(23, 41, 143);
    margin: 0 auto;
    border-radius: 2px;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    z-index: 100;
  }

  .menu-toggle > span:nth-child(1) {
    top: 18px;
  }

  .menu-toggle > span:nth-child(2) {
    top: 26px;
  }

  .menu-toggle > span:nth-child(3) {
    top: 34px;
  }

  .toggled .menu-toggle > span:nth-child(1) {
    top: 26px;
    transform: rotate(45deg);
  }

  .toggled .menu-toggle > span:nth-child(2) {
    top: 26px;
    opacity: 0;
  }

  .toggled .menu-toggle > span:nth-child(3) {
    top: 26px;
    transform: rotate(135deg);
  }

  .main-navigation li {
    padding: 20px 0;
  }

  .main-navigation ul li a {
    color: #333333;
    /*padding: 0.7rem 0 0.7rem 4rem;*/
  }

  .main-navigation ul li.menu-line {
    text-align: center;
    background: rgba(55, 199, 126, 0.9);
    margin-top: 3rem;
  }

  .main-navigation ul li.menu-line  a {
    color: #FFFFFF;
  }

  .footer-container {
    display: none;
  }
}

#container {
    margin-top: 62px;
}

.home #container {
    margin-top: 0;
}

.home .col,.home .col-1, .home .col-10, .home .col-11, .home .col-12, .home .col-2, .home .col-3, .home .col-4, .home .col-5, .home .col-6, .home .col-7, .home .col-8, .home .col-9, .home .col-auto, .home .col-lg, .home .col-lg-1, .home .col-lg-10, .home .col-lg-11, .home .col-lg-12, .home .col-lg-2, .home .col-lg-3, .home .col-lg-4, .home .col-lg-5, .home .col-lg-6, .home .col-lg-7, .home .col-lg-8, .home .col-lg-9, .home .col-lg-auto, .home .col-md, .home .col-md-1, .home .col-md-10, .home .col-md-11, .home .col-md-12, .home .col-md-2, .home .col-md-3, .home .col-md-4, .home .col-md-5, .home .col-md-6, .home .col-md-7, .home .col-md-8, .home .col-md-9, .home .col-md-auto, .home .col-sm, .home .col-sm-1, .home .col-sm-10, .home .col-sm-11, .home .col-sm-12, .home .col-sm-2, .home .col-sm-3, .home .col-sm-4, .home .col-sm-5, .home .col-sm-6, .home .col-sm-7, .home .col-sm-8, .home .col-sm-9, .home .col-sm-auto, .home .col-xl, .home .col-xl-1, .home .col-xl-10, .home .col-xl-11, .home .col-xl-12, .home .col-xl-2, .home .col-xl-3, .home .col-xl-4, .home .col-xl-5, .home .col-xl-6, .home .col-xl-7, .home .col-xl-8, .home .col-xl-9, .home .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.home .mt-1 {
  margin-top: 0.25rem;
}

.home .mt-2 {
  margin-top: 0.5rem;
}

.home .mt-3 {
  margin-top: 1rem;
}

.home .mt-4 {
  margin-top: 1.5rem;
}

.home .mt-5 {
  margin-top: 3rem;
}

.home .pt-1 {
  padding-top: 0.25rem;
}

.home .pt-2 {
  padding-top: 0.5rem;
}

.home .pt-3 {
  padding-top: 1rem;
}

.home .pt-4 {
  padding-top: 1.5rem;
}

.home .pt-5 {
  padding-top: 3rem;
}

.home .pt-6 {
  padding-top: 5rem;
}

.home .pb-5 {
  padding-bottom: 3rem;
}

.home .pb-6 {
  padding-bottom: 5rem;
}

.home .py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}

.home .px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.home .px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.home .px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.home .px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.home .px-5 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.home .content {
  margin-top: 0;
}

.home .text-left {
  text-align: left !important;
}

.home ul.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
    margin-bottom: 10px;
}

.home .list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

.home .list-inline>li a {
  color: #777;
  text-decoration: none;
}

.hero {
    display: flex;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    color: #FFF;
    font-size: 5rem;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 12% 8%;
    flex-wrap: wrap;
}

.hero h1 {
    color: #FFF;
    text-shadow: 5px 4px 10px #333;
    font-size: 80px;
    width: 100%;
    text-align: center;
}

.hero h2 {
    color: #FFF;
    text-shadow: 5px 4px 10px #333;
    font-size: 50px;
    font-weight: normal;
    width: 100%;
    text-align: center;
    font-size: 2.3rem;
}

.home section {
  text-align: center;
}

.home .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
}

.home .justify-content-center {
  justify-content: center;
}

.bg_white {
  background-color: #FFF;
}

.bg_white p {
    font-weight: 600;
    font-size: 18px;
    color: #777;
}
.bg_white h4 {
    font-size: 24px;
}
.bg_blue {
    background-color: rgb(23, 41, 143);
    color: #FFF;
}
.bg_blue p {
    font-weight: 600;
    font-size: 18px;
}
.bg_blue h2 {
    color: #FFF;
    font-weight: 600;
}


@media (min-width: 828px) {
  .col-md-6 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

}

@media (min-width: 1024px) {
  .col-lg-3 {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
  }
}

#report h4 {
  font-weight: normal;
  text-align: left;
  line-height: 1.4;
}

#report p {
  font-size: 16px;
  font-weight: normal;
}

#report .contents {
  box-shadow: 0px 0px 83.3px 14.7px rgba(102, 102, 102, 0.1);
}

#report .eyecatch {
  width: 100%;
  height: 200px;
}
#report .eyecatch img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#report .btn-primary {
  background-color: #F4524D !important;
  border-color: #F4524D !important;
  font-size: 14px;
}
#colum .contents {
  box-shadow: 0px 0px 83.3px 14.7px rgba(102, 102, 102, 0.1);
}
#colum p {
  font-size: 16px;
  font-weight: normal;
}
#colum .col-md-6 {
  display: flex;
}
#colum .eyecatch {
  width: 100%;
  height: 160px;
}
#colum .eyecatch img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#colum .btn-primary {
  background-color: #F4524D !important;
  border-color: #F4524D !important;
  font-size: 14px;
}
.font-water {
  color: #1899cc;
}
section#join {
    box-shadow: 0px 3px 3px rgba(39, 36, 36, 0.42);
}
#join p {
  font-weight: normal;
}
#main-footer {
    border-bottom: solid 6px rgb(23, 41, 143);
    padding-top: 40px;
    padding-bottom: 0;
    background-color: RGBA(0, 85, 255, 0.15);
    text-align: center;
}
.copyright p, .copyright .language {
    display: inline-block;
    font-size: 11px;
    margin-bottom: 0;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
  a.navbar-brand {
      width:auto;
  }
  #report .eyecatch {
      width: 100%;
      height: 240px;
  }
  #colum .eyecatch {
      width: 100%;
      height: 240px;
  }

  .hero {
      padding: 22% 2%;
	  background-attachment: initial;
  }

  .hero h1 {
      font-size: 2rem;
      line-height: 1.6;
  }

  .home .hero h2 {
      font-size: 1.4rem;
      margin-top: 2rem;
  }

  .home h2 {
    font-size: 1.6rem;
  }

  .home section {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
