@charset "UTF-8";
    /*CSS INFOMATION=======================


    File name : base.css

    ====================================*/
body {
  overflow-x: hidden;
  font-weight: 400;
  color: #111; }

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

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

main {
  text-align: center; }

#loading {
  font-size: 1rem;
  margin: -50px auto;
  top: 50%;
  text-indent: -9999em;
  width: 6em;
  height: 6em;
  border-radius: 50%;
  background: #fff;
  background: -moz-linear-gradient(left, #ddd 10%, rgba(221, 221, 221, 0) 42%);
  background: -webkit-linear-gradient(left, #fff 10%, rgba(221, 221, 221, 0) 42%);
  background: -o-linear-gradient(left, #ddd 10%, rgba(221, 221, 221, 0) 42%);
  background: -ms-linear-gradient(left, #ddd 10%, rgba(221, 221, 221, 0) 42%);
  background: linear-gradient(to right, #ddd 10%, rgba(221, 221, 221, 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); }

#loading:before {
  width: 50%;
  height: 50%;
  background: #fff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: ''; }

#loading:after {
  background: #fff;
  width: 80%;
  height: 80%;
  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); } }
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 99999; }

#container {
  line-height: 1.8;
  background: #fff; }
  @media screen and (max-width: 600px) {
    #container {
      line-height: 1.6; } }

.contents {
  max-width: 1000px;
  padding: 50px 0;
  margin: 0 auto; }

p {
  margin: 0 0 30px;
  line-height: 2; }
  p .indentfront {
    text-indent: -1em;
    padding-left: 2em;
    padding-bottom: 0 !important;
    margin: 0 0 0 1em !important; }

a {
  color: #111;
  transition: all 0.3s; }

a:hover {
  opacity: 0.5;
  transition: all 0.3s; }

.grecaptcha-badge {
  display: none; }

	/*

    header
    -----------------------------------*/
header {
  position: fixed;
  z-index: 99998;
  width: 100%;
  background: #fff;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1); }
  @media screen and (max-width: 1100px) {
    header {
      padding: 20px 20px 15px 20px; } }
  @media screen and (max-width: 600px) {
    header {
      padding: 10px 15px; } }
  header h1 {
    width: 210px;
    z-index: 99995; }
    @media screen and (max-width: 600px) {
      header h1 {
        width: 170px; } }
    header h1 img {
      width: 100%;
      height: auto; }

nav {
  position: absolute;
  top: 35px;
  right: 10px;
  display: block; }
  @media screen and (max-width: 1100px) {
    nav {
      display: none;
      top: 90px;
      right: -100%;
      z-index: 999;
      width: 100%; } }
  @media screen and (max-width: 600px) {
    nav {
      display: none;
      top: 62px;
      right: -100%;
      z-index: 999;
      width: 100%; } }

nav ul {
  display: flex; }
  @media screen and (max-width: 1100px) {
    nav ul {
      display: block;
      width: 100vh;
      height: 100vh;
      background: #61BCD3;
      padding: 70px 0 0 50px; } }
  @media screen and (max-width: 600px) {
    nav ul {
      display: block;
      width: 100vh;
      height: 100vh;
      background: #61BCD3;
      padding: 50px 0 0 30px; } }
  nav ul li {
    margin: 0 16px; }
    @media screen and (max-width: 1100px) {
      nav ul li {
        width: 100%;
        display: block;
        text-align: left;
        margin: 0 0 15px; } }
    nav ul li a {
      color: #111;
      font-size: 1.5rem;
      text-decoration: none;
      position: relative;
      font-weight: 600; }
      @media screen and (max-width: 1100px) {
        nav ul li a {
          color: #fff;
          font-size: 2.6rem;
          font-weight: 600;
          padding: 15px 0; } }
      @media screen and (max-width: 600px) {
        nav ul li a {
          font-size: 2.0rem;
          font-weight: 600;
          padding: 20px 0; } }
    nav ul li a:hover {
      color: #61BCD3;
      opacity: 1 !important; }
    nav ul li a::after {
      position: absolute;
      bottom: 1px;
      left: 0;
      content: '';
      width: 100%;
      height: 2px;
      background: #61BCD3;
      opacity: 0;
      visibility: hidden;
      transition: .3s; }
      @media screen and (max-width: 600px) {
        nav ul li a::after {
          height: 0; } }
    nav ul li a:hover::after {
      bottom: -8px;
      opacity: 1;
      visibility: visible; }
      @media screen and (max-width: 600px) {
        nav ul li a:hover::after {
          bottom: 0; } }

    /*

    footer
    -----------------------------------*/
footer {
  font-size: 1.1rem; }
  footer .copy {
    font-size: 1.1rem;
    padding: 30px 0;
    background: #61BCD3;
    color: #fff; }
    @media screen and (max-width: 768px) {
      footer .copy {
        padding: 19px 0; } }
    @media screen and (max-width: 600px) {
      footer .copy {
        padding: 10px 0; } }
    footer .copy .copy__inner {
      max-width: 1100px;
      position: relative;
      text-align: right;
      margin: 0 auto; }
      @media screen and (max-width: 768px) {
        footer .copy .copy__inner {
          text-align: center; } }
    footer .copy .copy__privacy {
      position: absolute;
      left: 0;
      top: 0;
      text-align: left; }
      @media screen and (max-width: 768px) {
        footer .copy .copy__privacy {
          position: relative;
          padding: 0 0 5px;
          text-align: center; } }
      footer .copy .copy__privacy a {
        color: #fff;
        text-decoration: none;
        margin: 0 20px 0 0; }
        @media screen and (max-width: 768px) {
          footer .copy .copy__privacy a {
            margin: 0 10px 0; } }

a.topBtn {
  position: fixed;
  bottom: -200px;
  right: 0px;
  display: block;
  color: #fff;
  width: 77px;
  height: 77px;
  padding: 0;
  z-index: 9999;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s; }
  @media screen and (max-width: 600px) {
    a.topBtn {
      width: 60px;
      height: auto; } }
  a.topBtn img {
    width: 100%;
    height: auto; }

a:hover.topBtn {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
  bottom: 25px;
  right: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s; }

.attention {
  font-size: 1.4rem; }
  @media screen and (max-width: 1100px) {
    .attention {
      font-size: 1.3rem; } }
  @media screen and (max-width: 600px) {
    .attention {
      font-size: 1.1rem; } }

.attention02 {
  font-size: 1.1rem; }

.link {
  text-align: left;
  margin: 20px 0 0 20px; }
  @media screen and (max-width: 768px) {
    .link {
      text-align: center; } }
  .link a {
    text-decoration: none;
    color: #000;
    background: url("../img/icon_link.svg") center right no-repeat;
    background-size: 22px auto;
    padding: 5px 30px 5px 0; }

.link02 {
  text-align: right;
  margin: 20px 0 0 20px; }
  .link02 a {
    text-decoration: none;
    color: #000;
    background: url("../img/icon_link.svg") center right no-repeat;
    background-size: 22px auto;
    padding: 5px 30px 5px 0; }

.link03 {
  text-align: left;
  margin: -10px 0 20px 0; }
  .link03 a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #000;
    background: url("../img/icon_link.svg") center right no-repeat;
    background-size: 22px auto;
    padding: 5px 30px 5px 0; }

    /*

    top
    -----------------------------------*/
.kv {
  width: 100%;
  position: relative; }
  @media screen and (max-width: 1100px) {
    .kv {
      padding: 90px 0 0; } }
  @media screen and (max-width: 600px) {
    .kv {
      padding: 60px 0 0; } }

.kv__txt {
  position: absolute;
  display: block;
  text-align: left;
  top: 13vw;
  left: 6.757vw;
  font-size: 3.378vw;
  /*top: 200px;
  left: 100px;
  font-size: 5rem;*/
  z-index: 9995;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.8rem;
  line-height: 1.6;
  font-weight: 600;
  display: none; }
  .kv__txt img {
    width: 100%;
    height: auto; }
  @media screen and (max-width: 768px) {
    .kv__txt {
      width: 75%;
      bottom: 50px;
      left: 130px; } }
  @media screen and (max-width: 600px) {
    .kv__txt {
      width: 80%;
      bottom: 30px;
      left: 50px; } }

.kv__img {
  width: 100%; }
  .kv__img img {
    width: 100%;
    height: auto; }

.top__content {
  background: #61BCD3;
  padding: 150px 0 130px; }
  @media screen and (max-width: 1100px) {
    .top__content {
      padding: 150px 50px 130px; } }
  @media screen and (max-width: 768px) {
    .top__content {
      padding: 100px 50px 80px; } }
  @media screen and (max-width: 600px) {
    .top__content {
      padding: 50px 20px 30px; } }
  .top__content__inner {
    max-width: 1100px;
    margin: 0 auto; }

.top__content--flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  @media screen and (max-width: 600px) {
    .top__content--flex {
      display: block; } }
  .top__content--flex .top__content--item {
    width: 48%;
    margin: 0 0 4%;
    position: relative; }
    @media screen and (max-width: 600px) {
      .top__content--flex .top__content--item {
        width: 100%;
        margin: 0 0 15px; } }
    .top__content--flex .top__content--item .txt {
      position: absolute;
      color: #fff;
      font-size: 2.4rem;
      line-height: 1.4;
      text-align: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: 600;
      width: 100%; }
      @media screen and (max-width: 768px) {
        .top__content--flex .top__content--item .txt {
          font-size: 2.0rem;
          width: 100%; } }
      @media screen and (max-width: 600px) {
        .top__content--flex .top__content--item .txt {
          font-size: 2.0rem;
          width: 100%; } }
      .top__content--flex .top__content--item .txt span {
        display: block;
        font-size: 1.2rem;
        font-weight: 500; }
    .top__content--flex .top__content--item img {
      width: 100%;
      height: auto; }

.news__top .news__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 150px 0; }
  @media screen and (max-width: 1100px) {
    .news__top .news__inner {
      padding: 150px 50px; } }
  @media screen and (max-width: 768px) {
    .news__top .news__inner {
      padding: 100px 50px; } }
  @media screen and (max-width: 600px) {
    .news__top .news__inner {
      padding: 50px 20px; } }
.news__top .ttl__main {
  margin: 0;
  font-size: 2.8rem;
  text-align: left;
  line-height: 1.6;
  font-weight: 600; }
  @media screen and (max-width: 768px) {
    .news__top .ttl__main {
      font-size: 2.8rem;
      text-align: center;
      margin: 0 0 30px; } }
  @media screen and (max-width: 600px) {
    .news__top .ttl__main {
      font-size: 2.2rem;
      text-align: center;
      margin: 0 0 30px; } }
  .news__top .ttl__main span {
    font-size: 1.2rem;
    font-weight: 600;
    display: block; }
    @media screen and (max-width: 600px) {
      .news__top .ttl__main span {
        font-size: 1.1rem; } }

.news__box {
  display: flex; }
  @media screen and (max-width: 768px) {
    .news__box {
      display: block; } }
  .news__box .news__box--left {
    width: 250px; }
    @media screen and (max-width: 768px) {
      .news__box .news__box--left {
        width: 100%; } }
  .news__box .news__box--right {
    width: calc(100% - 250px); }
    @media screen and (max-width: 768px) {
      .news__box .news__box--right {
        width: 100%; } }
  .news__box .news__ttl {
    color: #FFAA01;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 0 15px 0 0;
    margin: 0 15px 0 0; }
    @media screen and (max-width: 600px) {
      .news__box .news__ttl {
        border: none;
        text-align: left;
        margin: 0;
        padding: 0; } }
  .news__box .news__item:first-child {
    border-top: 1px solid #ddd; }
  .news__box .news__item {
    text-align: left;
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 30px 0; }
    @media screen and (max-width: 600px) {
      .news__box .news__item {
        padding: 15px 0;
        display: block; } }
    .news__box .news__item a {
      text-decoration: none;
      color: #111; }
  .news__box .news__day {
    color: #8B8B8B;
    font-size: 1.3rem;
    margin: 0 15px 0 0;
    padding: 3px 0 0;
    width: 130px; }
    @media screen and (max-width: 600px) {
      .news__box .news__day {
        font-size: 1.1rem;
        margin: 15px 0 0;
        text-align: left; } }
  .news__box .news__txt {
    font-size: 1.6rem;
    width: calc(100% - 130px); }
    @media screen and (max-width: 600px) {
      .news__box .news__txt {
        width: 100%;
        font-size: 1.4rem !important;
        text-align: left; } }

    /*

    about us
    -----------------------------------*/
.aboutus {
  background: #fff url("../img/bg_about.jpg");
  background-size: cover;
  padding: 100px 0 400px;
  margin: 150px 0 0; }
  @media screen and (max-width: 768px) {
    .aboutus {
      background: #fff url("../img/bg_about.jpg") top left no-repeat;
      background-size: cover; } }
  @media screen and (max-width: 600px) {
    .aboutus {
      background: #fff url("../img/bg_about_sp.jpg");
      background-size: cover;
      padding: 20px 0 130px;
      margin: 70px 0 0; } }
  .aboutus__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 0; }
    @media screen and (max-width: 1100px) {
      .aboutus__inner {
        margin: 0 50px; } }
    @media screen and (max-width: 600px) {
      .aboutus__inner {
        margin: 0 auto; } }
    .aboutus__inner h2 {
      font-size: 2.8rem;
      font-weight: 600;
      text-align: left;
      position: relative;
      z-index: 1; }
      @media screen and (max-width: 1100px) {
        .aboutus__inner h2 {
          margin: 0 0 50px 20px; } }
      @media screen and (max-width: 768px) {
        .aboutus__inner h2 {
          text-align: center;
          margin: 0 0 50px; } }
      @media screen and (max-width: 600px) {
        .aboutus__inner h2 {
          font-size: 2.2rem;
          text-align: center;
          margin: 0 0 30px; } }
      .aboutus__inner h2 span {
        display: block;
        font-size: 1.2rem; }
        @media screen and (max-width: 600px) {
          .aboutus__inner h2 span {
            font-size: 1.1rem; } }
  .aboutus .aboutus__flex {
    display: flex; }
    @media screen and (max-width: 1100px) {
      .aboutus .aboutus__flex {
        display: block; } }
    .aboutus .aboutus__flex .aboutus__left {
      width: 400px; }
      @media screen and (max-width: 1100px) {
        .aboutus .aboutus__flex .aboutus__left {
          width: 100%; } }
      @media screen and (max-width: 600px) {
        .aboutus .aboutus__flex .aboutus__left {
          width: 100%; } }
    .aboutus .aboutus__flex .aboutus__right {
      width: calc(100% - 400px); }
      @media screen and (max-width: 1100px) {
        .aboutus .aboutus__flex .aboutus__right {
          width: 100%; } }
      @media screen and (max-width: 600px) {
        .aboutus .aboutus__flex .aboutus__right {
          width: 100%; } }
  .aboutus__txtbox {
    margin: 10px 0 50px;
    position: relative; }
    .aboutus__txtbox h3 {
      text-align: left;
      font-size: 4.0rem;
      line-height: 1.4;
      font-weight: 600;
      margin: 0 0 40px;
      position: relative;
      z-index: 1;
      font-family: "Noto Serif JP", serif; }
      @media screen and (max-width: 768px) {
        .aboutus__txtbox h3 {
          text-align: center;
          width: 100%;
          font-size: 3.0rem;
          margin: 0 0 20px; } }
      @media screen and (max-width: 600px) {
        .aboutus__txtbox h3 {
          text-align: center;
          width: 100%;
          font-size: 2.0rem;
          margin: 0 0 20px; } }
    .aboutus__txtbox p {
      text-align: left;
      line-height: 2.5 !important;
      font-size: 1.6rem;
      margin: 0 0 0 20px; }
      @media screen and (max-width: 768px) {
        .aboutus__txtbox p {
          text-align: center;
          font-size: 1.6rem; } }
      @media screen and (max-width: 600px) {
        .aboutus__txtbox p {
          text-align: center;
          font-size: 1.4rem; } }

	/*

    company
    -----------------------------------*/
.company {
  background: #eee;
  padding: 80px 0;
  margin: 0 0 100px; }
  @media screen and (max-width: 600px) {
    .company {
      padding: 40px 0; } }
  .company__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 80px; }
    @media screen and (max-width: 1100px) {
      .company__inner {
        margin: 0 50px; } }
    @media screen and (max-width: 600px) {
      .company__inner {
        margin: 0 auto; } }
    .company__inner h2 {
      font-size: 4.0rem;
      font-weight: 900; }
      .company__inner h2 span {
        display: block;
        font-size: 1.4rem;
        color: #ffaa01; }
        @media screen and (max-width: 600px) {
          .company__inner h2 span {
            font-size: 1.2rem; } }
      @media screen and (max-width: 600px) {
        .company__inner h2 {
          font-size: 2.6rem; } }
    @media screen and (max-width: 768px) {
      .company__inner {
        width: auto;
        margin: 0 25px;
        border-radius: 15px;
        padding: 50px; } }
    @media screen and (max-width: 600px) {
      .company__inner {
        width: auto;
        margin: 0 25px;
        border-radius: 15px;
        padding: 30px 15px; } }

.company__list {
  margin: 0 0 20px;
  border: 1px solid #ddd; }
  .company__list a {
    color: #111; }
  .company__list li {
    border-bottom: 1px solid #ddd;
    display: flex; }
    @media screen and (max-width: 768px) {
      .company__list li {
        display: block; } }
  .company__list li:last-child {
    border: none; }
  .company__list .company__list--left {
    width: 20%;
    text-align: left;
    font-weight: 600;
    background: #F9F9F9;
    padding: 30px; }
    @media screen and (max-width: 768px) {
      .company__list .company__list--left {
        width: 100%;
        box-sizing: border-box; } }
    @media screen and (max-width: 600px) {
      .company__list .company__list--left {
        width: auto;
        font-size: 1.1rem;
        padding: 15px;
        border-bottom: 1px solid #ddd; } }
    .company__list .company__list--left span {
      color: #D50003 !important; }
  .company__list .company__list--right {
    width: 80%;
    text-align: left;
    box-sizing: border-box;
    padding: 30px; }
    @media screen and (max-width: 600px) {
      .company__list .company__list--right {
        width: auto;
        padding: 15px; } }

.company__img {
  display: flex;
  justify-content: space-between;
  margin: 0; }
  @media screen and (max-width: 768px) {
    .company__img {
      display: block;
      margin: 30px 0 0; } }
  .company__img--item {
    width: 49%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden; }
    @media screen and (max-width: 768px) {
      .company__img--item {
        width: 100%;
        margin: 0 0 15px; } }
    .company__img--item img {
      width: 100%;
      height: auto; }

	/*

    contact
    -----------------------------------*/
.contact {
  background: url("../img/bg_grd.jpg") top center no-repeat;
  background-size: cover;
  padding: 150px 0; }
  @media screen and (max-width: 1100px) {
    .contact {
      padding: 150px 50px; } }
  @media screen and (max-width: 768px) {
    .contact {
      padding: 60px 20px; } }
  @media screen and (max-width: 600px) {
    .contact {
      padding: 50px 20px; } }
  .contact__inner {
    max-width: 1100px;
    margin: 0 auto; }
  .contact h2 {
    font-size: 2.6rem;
    font-weight: 600;
    text-align: left;
    position: relative;
    z-index: 1; }
    @media screen and (max-width: 768px) {
      .contact h2 {
        font-size: 2.6rem;
        text-align: center;
        margin: 0 0 30px; } }
    @media screen and (max-width: 600px) {
      .contact h2 {
        font-size: 2.2rem;
        text-align: center;
        margin: 0 0 30px; } }
    .contact h2 span {
      display: block;
      font-size: 1.2rem; }
      @media screen and (max-width: 600px) {
        .contact h2 span {
          font-size: 1.1rem; } }
  .contact .contact__flex {
    display: flex;
    width: 100%; }
    @media screen and (max-width: 768px) {
      .contact .contact__flex {
        display: block; } }
    .contact .contact__flex .contact__ttl {
      width: 30%;
      text-align: left; }
      @media screen and (max-width: 768px) {
        .contact .contact__flex .contact__ttl {
          width: 100%; } }
    .contact .contact__flex .contact__txt02 {
      width: 40%;
      padding: 0 0 20px;
      box-sizing: border-box; }
      @media screen and (max-width: 768px) {
        .contact .contact__flex .contact__txt02 {
          width: 100%;
          padding: 0; } }
      .contact .contact__flex .contact__txt02 p {
        text-align: left; }
        @media screen and (max-width: 768px) {
          .contact .contact__flex .contact__txt02 p {
            text-align: center; } }
    .contact .contact__flex .contact__btn {
      width: 30%; }
      @media screen and (max-width: 768px) {
        .contact .contact__flex .contact__btn {
          width: 100%; } }

.contact__txt {
  text-align: center !important;
  padding: 0 0 50px;
  font-size: 1.8rem; }
  @media screen and (max-width: 768px) {
    .contact__txt {
      font-size: 1.6rem; } }
  @media screen and (max-width: 600px) {
    .contact__txt {
      font-size: 1.4rem;
      text-align: left !important;
      padding: 0 0 0px; } }

	/*

    privacy policy
    -----------------------------------*/
@media screen and (max-width: 768px) {
  .privacypolicy {
    padding: 50px 0 0; } }
@media screen and (max-width: 600px) {
  .privacypolicy {
    padding: 0; } }

.privacypolicy__txtbox {
  text-align: left;
  padding: 0; }
  .privacypolicy__txtbox h3 {
    font-size: 2.2rem !important;
    padding: 0 0 10px;
    border-bottom: 1px solid #eee;
    margin: 0 0 10px;
    font-weight: 800; }
  .privacypolicy__txtbox .privacypolicy__txtbox--item {
    padding: 0 0 50px; }

/*

    second
    -----------------------------------*/
.second {
  background: #fff;
  padding: 63px 0 0;
  margin: 0; }
  @media screen and (max-width: 768px) {
    .second {
      padding: 60px 0 0; } }
  @media screen and (max-width: 600px) {
    .second {
      padding: 60px 0 0; } }
  .second .second__header {
    text-align: left;
    height: 300px;
    margin: 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 1280px) {
      .second .second__header {
        height: 250px; } }
    @media screen and (max-width: 768px) {
      .second .second__header {
        height: 250px; } }
    @media screen and (max-width: 600px) {
      .second .second__header {
        margin: 0 0 0;
        height: 150px; } }
    .second .second__header .second__header--inner {
      width: 90%;
      margin: 0 auto;
      text-align: left; }
    .second .second__header h2 {
      color: #fff;
      font-size: 3rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      line-height: 1; }
      @media screen and (max-width: 600px) {
        .second .second__header h2 {
          font-size: 2rem; } }
      .second .second__header h2 span {
        font-size: 1.3rem;
        line-height: 1;
        padding: 0 0 0 20px; }
        @media screen and (max-width: 600px) {
          .second .second__header h2 span {
            font-size: 1.1rem; } }
  .second__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    box-sizing: border-box;
    padding: 100px 0 100px; }
    @media screen and (max-width: 1100px) {
      .second__inner {
        margin: 0 50px; } }
    @media screen and (max-width: 768px) {
      .second__inner {
        max-width: 700px;
        margin: 0 50px; } }
    @media screen and (max-width: 600px) {
      .second__inner {
        width: 100%;
        margin: 0 auto; } }
    .second__inner h2 {
      font-size: 4.0rem;
      font-weight: 900;
      text-align: left;
      position: relative;
      z-index: 1; }
      .second__inner h2 span {
        display: block;
        font-size: 1.4rem;
        color: #ffaa01; }
        @media screen and (max-width: 600px) {
          .second__inner h2 span {
            font-size: 1.1rem; } }
      @media screen and (max-width: 600px) {
        .second__inner h2 {
          font-size: 2.4rem; } }
    @media screen and (max-width: 600px) {
      .second__inner {
        width: 100%;
        padding: 50px 25px; } }
  .second__txtbox {
    margin: 60px 0 50px;
    position: relative; }
  .second .second__detail {
    padding: 0 0 0;
    text-align: left; }
    .second .second__detail .ttl__sub {
      border-bottom: 3px dotted #eee;
      padding: 0 0 10px;
      margin: 0 0 30px;
      text-align: left;
      font-size: 24px;
      font-weight: 900; }
      @media screen and (max-width: 600px) {
        .second .second__detail .ttl__sub {
          font-size: 18px; } }
    .second .second__detail .ttl__sub02 {
      border-bottom: 3px dotted #eee;
      padding: 0 0 10px;
      margin: 30px 0 30px;
      text-align: left;
      font-size: 24px;
      font-weight: 900; }
      @media screen and (max-width: 600px) {
        .second .second__detail .ttl__sub02 {
          font-size: 18px; } }
    .second .second__detail .attention__txt {
      text-align: left;
      color: #888;
      padding: 0 0 30px; }
      @media screen and (max-width: 600px) {
        .second .second__detail .attention__txt {
          padding: 0 0 15px; } }

.second__header--news {
  background: url("../img/second_header_news.jpg") top center no-repeat;
  background-size: cover; }

.second__header--company {
  background: url("../img/second_header_company.jpg") top center no-repeat;
  background-size: cover; }

.second__header--service {
  background: url("../img/second_header_service.jpg") top center no-repeat;
  background-size: cover; }

.second__header--contact {
  background: url("../img/second_header_contact.jpg") top center no-repeat;
  background-size: cover; }

.second__header--sustainability {
  background: url("../img/second_header_sustainability.jpg") top center no-repeat;
  background-size: cover; }

.second__header--recruit {
  background: url("../img/second_header_recruit.jpg") top center no-repeat;
  background-size: cover; }

.second__header--sitepolicy {
  background: url("../img/second_header_sitepolicy.jpg") top center no-repeat;
  background-size: cover; }

.second__header--privacypolicy {
  background: url("../img/second_header_privacypolicy.jpg") top center no-repeat;
  background-size: cover; }

.second__inner h3 {
  font-size: 3rem;
  margin: 0 0 15px; }
  @media screen and (max-width: 600px) {
    .second__inner h3 {
      font-size: 2rem; } }
.second__inner .txt__box {
  padding: 0 0 70px; }
  @media screen and (max-width: 600px) {
    .second__inner .txt__box {
      padding: 0 0 30px; } }
.second__inner .company__flex {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .second__inner .company__flex {
      display: block; } }
  .second__inner .company__flex .img {
    width: 31%;
    margin: 10px 0 50px; }
    @media screen and (max-width: 768px) {
      .second__inner .company__flex .img {
        width: 50%;
        margin: 0 auto 50px; } }
    @media screen and (max-width: 600px) {
      .second__inner .company__flex .img {
        width: 100%;
        margin: 0 0 30px; } }
    .second__inner .company__flex .img img {
      width: 100%;
      height: auto; }
  .second__inner .company__flex .txt {
    width: 64%; }
    @media screen and (max-width: 768px) {
      .second__inner .company__flex .txt {
        width: 100%; } }
.second__inner .company__main {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  margin: 0 0 40px -20px;
  font-weight: 600; }
  @media screen and (max-width: 600px) {
    .second__inner .company__main {
      font-size: 2.2rem;
      margin: 0 0 25px -10px; } }
.second__inner .company__large {
  font-size: 1.8rem;
  margin: 0 0 40px; }
  @media screen and (max-width: 1100px) {
    .second__inner .company__large {
      font-size: 1.6rem; } }
  @media screen and (max-width: 600px) {
    .second__inner .company__large {
      font-size: 1.4rem;
      margin: 0 0 25px; } }
.second__inner .company__name {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600; }
  @media screen and (max-width: 600px) {
    .second__inner .company__name {
      font-size: 1.4rem; } }
.second__inner .company__map {
  width: 100%;
  padding: 0 0 20px; }
  .second__inner .company__map iframe {
    width: 100%; }
.second__inner .company__txt {
  line-height: 2.0 !important;
  margin: 0 0 15px; }
  @media screen and (max-width: 600px) {
    .second__inner .company__txt {
      line-height: 1.8 !important; } }
.second__inner .map__fs {
  font-size: 1.4rem;
  margin: -25px 0 0; }
.second__inner .company__map--flex {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 600px) {
    .second__inner .company__map--flex {
      display: block; } }
.second__inner .company__map--flex-left {
  padding: 20px 0 0; }
.second__inner .company__group {
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 600px) {
    .second__inner .company__group {
      display: block; } }
  .second__inner .company__group .company__group--item {
    padding: 30px;
    border: 1px solid #ddd;
    width: 49%;
    box-sizing: border-box; }
    @media screen and (max-width: 600px) {
      .second__inner .company__group .company__group--item {
        width: 100%;
        padding: 20px;
        margin: 0 0 15px; } }
    .second__inner .company__group .company__group--item h4 {
      font-size: 2rem; }
      @media screen and (max-width: 600px) {
        .second__inner .company__group .company__group--item h4 {
          font-size: 1.6rem; } }

.service__list .service__list--item {
  border-left: 5px solid #61BCD3;
  padding: 0 0 0 40px;
  margin: 0 0 50px; }
  @media screen and (max-width: 600px) {
    .service__list .service__list--item {
      border-left: 3px solid #61BCD3;
      padding: 0 0 0 20px;
      margin: 0 0 30px; } }
  .service__list .service__list--item h4 {
    font-size: 2.2rem;
    line-height: 1;
    margin: 0 0 15px; }
    @media screen and (max-width: 600px) {
      .service__list .service__list--item h4 {
        font-size: 1.6rem;
        margin: 0 0 15px; } }

.service__bukken {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media screen and (max-width: 600px) {
    .service__bukken {
      display: block; } }
  .service__bukken .service__bukken--item {
    width: 48%;
    margin: 0 0 2%; }
    @media screen and (max-width: 600px) {
      .service__bukken .service__bukken--item {
        width: 100%; } }
    .service__bukken .service__bukken--item img {
      width: 100%;
      height: auto; }
    .service__bukken .service__bukken--item .txt {
      margin: 15px 0 0; }
      .service__bukken .service__bukken--item .txt h5 {
        font-size: 1.8rem;
        margin: 0 0 10px; }
        @media screen and (max-width: 600px) {
          .service__bukken .service__bukken--item .txt h5 {
            font-size: 1.5rem;
            margin: 0 0 5px; } }
      .service__bukken .service__bukken--item .txt p {
        font-size: 1.4rem; }

.news__item:first-child {
  border-top: 1px solid #ddd; }

.news__item {
  text-align: left;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 30px 0; }
  @media screen and (max-width: 600px) {
    .news__item {
      display: block;
      padding: 15px 0; } }
  .news__item a {
    text-decoration: none;
    color: #111; }

.news__day {
  color: #8B8B8B;
  font-size: 1.3rem;
  margin: 0 15px 0 0;
  padding: 3px 0 0;
  width: 130px; }
  @media screen and (max-width: 600px) {
    .news__day {
      font-size: 1.1rem;
      margin: 0 0 0;
      text-align: left;
      width: 100%; } }

.news__txt {
  font-size: 1.6rem;
  width: calc(100% - 130px); }
  @media screen and (max-width: 600px) {
    .news__txt {
      text-align: left;
      width: 100%;
      font-size: 1.4rem; } }

.contact__list li {
  border-bottom: 1px solid #ddd;
  padding: 30px 30px;
  display: flex; }
  @media screen and (max-width: 600px) {
    .contact__list li {
      display: block;
      padding: 20px 0; } }
  .contact__list li p {
    margin: 0;
    padding: 0; }
  .contact__list li .company__list--left {
    width: 200px;
    padding: 7px 0 0;
    font-weight: 600; }
    @media screen and (max-width: 768px) {
      .contact__list li .company__list--left {
        width: 100%;
        padding: 0;
        margin: 0 0 5px; } }
    .contact__list li .company__list--left span {
      color: #D50003 !important;
      font-weight: 400; }
  .contact__list li .company__list--right {
    width: calc(100% - 200px); }
    @media screen and (max-width: 768px) {
      .contact__list li .company__list--right {
        width: 100%; } }
    .contact__list li .company__list--right input {
      background: #F5F5F5;
      width: 100%;
      box-sizing: border-box;
      padding: 15px;
      border: none;
      font-size: 1.5rem; }
      @media screen and (max-width: 600px) {
        .contact__list li .company__list--right input {
          font-size: 1.4rem; } }
    .contact__list li .company__list--right select {
      box-sizing: border-box;
      padding: 15px 30px 15px 15px;
      border: none;
      font-size: 1.5rem;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-color: #F5F5F5;
      background-image: url("/wp-content/themes/toyoko/assets/img/icon_arrow_down.svg");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 8px auto; }
      @media screen and (max-width: 600px) {
        .contact__list li .company__list--right select {
          font-size: 1.4rem; } }
    .contact__list li .company__list--right textarea {
      background: #F5F5F5;
      width: 100%;
      height: 200px;
      box-sizing: border-box;
      padding: 15px;
      border: none;
      font-size: 1.5rem; }
      @media screen and (max-width: 600px) {
        .contact__list li .company__list--right textarea {
          font-size: 1.4rem; } }
.contact__list li:first-child {
  border-top: 1px solid #ddd; }

.comingsoon {
  font-size: 3.4rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 400px; }
  @media screen and (max-width: 600px) {
    .comingsoon {
      font-size: 2.04rem; } }

input[type="submit"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer; }

input[type="submit"]::-webkit-search-decoration {
  display: none; }

input[type="submit"]::focus {
  outline-offset: -2px; }

.wpcf7-submit {
  appearance: none;
  display: inline-block;
  color: #fff;
  padding: 15px;
  text-align: center;
  width: 300px;
  font-size: 1.6rem;
  position: relative;
  font-weight: 600;
  background: #61BCD3 url("../img/icon_arrow.svg") center right 15px no-repeat;
  text-decoration: none;
  border-radius: 50px !important;
  -webkit-border-radius: 50px !important;
  -moz-border-radius: 50px !important;
  overflow: hidden;
  border: none;
  margin: 0; }
  @media screen and (max-width: 768px) {
    .wpcf7-submit {
      margin: 0; } }
  @media screen and (max-width: 600px) {
    .wpcf7-submit {
      font-size: 1.4rem;
      margin: 0 auto; } }

.wpcf7-submit:hover {
  opacity: 0.5;
  transition: all 0.3s; }

.wpcf7-spinner {
  margin-left: 10px; }

.wpcf7-response-output {
  padding: 20px !important; }

.button__block--contact {
  text-align: center;
  padding: 40px 0 10px; }
  .button__block--contact p {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; }

.button__block--contact p {
  position: relative;
  display: inline-block;
  margin: 0; }

.wpcf7-submit {
  margin: 0 !important; }

.wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -30px;
  /* お好みで調整 */
  transform: translateY(-50%);
  margin: 0 !important; }

@media screen and (max-width: 600px) {
  .button__block--contact p {
    display: block; }

  .wpcf7-submit {
    display: block;
    margin: 0 auto !important; }

  .wpcf7-spinner {
    position: absolute;
    right: -25px;
    bottom: -50px;
    left: auto; } }
.button__block {
  text-align: center;
  padding: 40px 0 60px; }

.button__more a {
  display: inline-block;
  color: #fff;
  padding: 13px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  position: relative;
  font-weight: 600;
  background: #61BCD3 url("../img/icon_arrow.svg") center right 15px no-repeat;
  text-decoration: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px; }

/* page nav */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin: 40px 0 60px !important; }

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #61BCD3;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  box-sizing: border-box;
  transition: .25s ease; }

.wp-pagenavi a:hover {
  background: #61BCD3;
  color: #fff;
  border-color: #61BCD3; }

.wp-pagenavi span.current {
  background: #61BCD3;
  color: #fff;
  border-color: #61BCD3; }

.wp-pagenavi .pages,
.wp-pagenavi .extend {
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0 4px; }

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    gap: 6px; }

  .wp-pagenavi a,
  .wp-pagenavi span {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    font-size: 13px; } }
.pages {
  display: none !important; }

/* recruit */
.recruit__txt01 {
  text-align: center; }

.recruit__txt02 {
  font-size: 2rem;
  text-align: center !important;
  padding: 20px 0 0; }
  @media screen and (max-width: 600px) {
    .recruit__txt02 {
      font-size: 1.4rem; } }

.button__block--recruit {
  text-align: center;
  padding: 0 0 30px; }

#menuButton {
  display: block;
  width: 40px;
  height: 38px;
  position: fixed;
  z-index: 99999;
  display: none; }
  @media screen and (max-width: 1100px) {
    #menuButton {
      display: block;
      top: 25px;
      right: 30px; } }
  @media screen and (max-width: 768px) {
    #menuButton {
      top: 25px;
      right: 30px; } }
  @media screen and (max-width: 600px) {
    #menuButton {
      top: 11px;
      right: 15px; } }

a#menuButton:hover {
  opacity: 1 !important; }

#menuButton span {
  display: block;
  background: #000;
  width: 30px;
  height: 2px;
  position: absolute;
  left: 9px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s; }

#menuButton span:first-child {
  top: 11px; }

#menuButton span:nth-child(2) {
  margin-top: -1px;
  top: 50%; }

#menuButton span:last-child {
  bottom: 11px; }

#menuButton.active span:first-child {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg); }

#menuButton.active span:nth-child(2) {
  opacity: 0; }

#menuButton.active span:last-child {
  -webkit-transform: translateY(-6px) rotate(-45deg);
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg); }

    /*

    fuwat
    -----------------------------------*/
.fuwatAnime {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-name: fuwatAnime;
  -ms-animation-name: fuwatAnime;
  animation-name: fuwatAnime;
  visibility: visible !important;
  animation-timing-function: ease; }

@-webkit-keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fuwatAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fuwatAnime02 {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-name: fuwatAnime02;
  -ms-animation-name: fuwatAnime02;
  animation-name: fuwatAnime02;
  visibility: visible !important;
  animation-delay: 0.2s;
  animation-timing-function: ease; }

@-webkit-keyframes fuwatAnime02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fuwatAnime02 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fuwatAnime03 {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fuwatAnime03;
  -ms-animation-name: fuwatAnime03;
  animation-name: fuwatAnime03;
  visibility: visible !important;
  animation-delay: 0s;
  animation-timing-function: ease; }

@-webkit-keyframes fuwatAnime03 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }
@keyframes fuwatAnime03 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }
.fuwatAnime04 {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-name: fuwatAnime04;
  -ms-animation-name: fuwatAnime04;
  animation-name: fuwatAnime04;
  visibility: visible !important;
  animation-delay: 0.3s;
  animation-timing-function: ease; }

@-webkit-keyframes fuwatAnime04 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes fuwatAnime04 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.fuwatAnime05 {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.5s;
  -ms-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-name: fuwatAnime05;
  -ms-animation-name: fuwatAnime05;
  animation-name: fuwatAnime05; }

@-webkit-keyframes fuwatAnime05 {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes fuwatAnime05 {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
.ttlAnime {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.3s;
  -ms-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-name: ttlAnime;
  -ms-animation-name: ttlAnime;
  animation-name: ttlAnime;
  visibility: visible !important;
  animation-delay: 1s; }

@-webkit-keyframes ttlAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes ttlAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
