/* 2025/04/16 */

@charset "utf-8";

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),
ul,
ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: 600;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #333;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover>img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc {
  display: block;
}

.sp {
  display: none;
}

@media(max-width: 599px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

@media(max-width: 599px) {
  body .l-wide {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding>.l-margin:first-child {
  margin-top: 0;
}

.l-padding>.l-margin:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .l-margin {
    margin: 24px auto;
  }

  .l-padding {
    padding: 24px;
  }
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 599px) {

  .l-columns-2,
  .l-columns-3 {
    columns: 1;
    column-gap: 0;
  }

  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }

  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
}

/* 画像の大きさ */

.l-max-width-90 {
  max-width: 90%;
}

.l-max-width-80 {
  max-width: 80%;
}

.l-max-width-70 {
  max-width: 70%;
}

.l-max-width-60 {
  max-width: 60%;
}

.l-max-width-50 {
  max-width: 50%;
}

.l-max-width-40 {
  max-width: 40%;
}

.l-max-width-30 {
  max-width: 30%;
}

.l-max-width-20 {
  max-width: 20%;
}

.l-max-width-10 {
  max-width: 10%;
}

@media(max-width: 599px) {
  .l-sp-max-width-90 {
    max-width: 90%;
  }

  .l-sp-max-width-80 {
    max-width: 80%;
  }

  .l-sp-max-width-70 {
    max-width: 70%;
  }

  .l-sp-max-width-60 {
    max-width: 60%;
  }

  .l-sp-max-width-50 {
    max-width: 50%;
  }

  .l-sp-max-width-40 {
    max-width: 40%;
  }

  .l-sp-max-width-30 {
    max-width: 30%;
  }

  .l-sp-max-width-20 {
    max-width: 20%;
  }

  .l-sp-max-width-10 {
    max-width: 10%;
  }
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 16px 16px rgb(0 0 0 / .15));
}

.is-round {
  border-radius: 8px;
}

/* 見出しサイズ */

@media screen and (min-width: 600px) and (max-width: 959px) {
  section h3 {
    width: 40% !important;
    margin: 0 auto;
    margin-bottom: 10px !important;
  }
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

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

  ヘッダー

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

.header {
  position: fixed;
  /* ヘッダーを画面上部に固定 */
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
}

.header h1 a {
  display: block;
  margin: 0;
  line-height: 1;
  font-size: 24px;
  text-decoration: none;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #2e4c98;
  font-weight: bold;
}

/*ナビゲーション*/

.header__navigation {
  top: 0;
  right: 0;
  height: 100%;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.header__navigation ul {
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  margin-bottom: 0;
}

.header__navigation a {
  padding: 1em;
  color: #2e4c98;
  letter-spacing: .03em;
  text-indent: .03em;
  font-size: 1em;
  text-decoration: none;
}

/* ハンバーガーメニュー
-------------------------------------------------- */

.gnav-toggle {
  position: relative;
}

/* チェックボックス等は非表示に */
.gnav-hidden {
  display: none;
}

/* アイコンのスペース */
#gnav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/* ハンバーガーの形をCSSで表現 */
#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content: '';
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #2e4c98;
  display: block;
  cursor: pointer;
}

#gnav-open span::before {
  bottom: -8px;
}

#gnav-open span::after {
  bottom: -16px;
}

/* 閉じる用の薄黒箇所 */
#gnav-close {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/* チェックがついたら表示させる */
#gnav-input:checked~#gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked~#gnav-content {
  transform: translateX(0%);
  box-shadow: 3px 0 25px rgba(255, 255, 255, 0.15);
}

/* メニューの中身 */
.gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 50px;
  text-transform: uppercase;
}

.gnav-item a {
  color: #2e4c98;
  font-size: 12px;
  font-weight: bold;
  display: block;
  width: 100px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .header__inner {
    padding: 20px 30px;
  }

  .header h1 a {
    font-size: 18px;
  }
}

@media(max-width: 599px) {
  .header h1 {
    line-height: 1;
    font-size: 2.3em;
  }

  .header h1 a {
    margin: 0;
    font-size: 18px;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
  }

  .header__navigation ul {
    margin-top: 10px;
    padding: 0;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    list-style-type: none;
  }


  .gnav-item {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }

  .gnav-item a {
    color: #2e4c98;
    width: 120px;
  }

  .gnav-item a:hover {
    color: #1a0dab;
  }
}


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

  メイン

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

.main>*:first-child {
  margin-top: 0;
}

.main>*:last-child {
  margin-bottom: 0;
}


/* =======================================================================
  Hero
======================================================================= */
.hero {
  width: 100%;
  /* セクションの幅を画面いっぱいに設定 */
  height: 60vh;
  /* デフォルトの高さを設定 */
  background-image: url('path/to/your/image.jpg');
  /* 背景画像を指定 */
  background-size: cover;
  /* 背景画像をコンテナにフィット */
  background-position: center;
  /* 背景画像を中央に配置 */
  background-repeat: no-repeat;
  /* 背景画像を繰り返さない */
}

.hero-1 {
  position: relative;
  margin-bottom: 80px;
}

.hero-1>img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.hero-1__h1 {
  background-color: rgba(36, 75, 150, 0.9);
  /* 青い帯 */
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: .3em;
  font-family: 'Times New Roman', Times, serif;
  padding: 20px 40px;
  /* 上下左右の余白 */
  display: inline-block;
  margin: 0;
  /* 上下の外側余白をリセット */
  position: absolute;
  left: 0;
  /* 左端に固定 */
  top: 75%;
  /* 縦位置調整（中央付近に配置） */
  transform: translateY(-50%);
  /* 縦中央揃え */
}

.hero-1 a img {
  position: absolute;
  bottom: 40px;
  right: 80px;
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-2 p {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
}

.hero-2 {
  background: #fff url("img/top/top__hero-bg.jpg") no-repeat center top / cover;

}

.hero-2__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 60px 0;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-2__left,
.hero-2__right {
  width: 90%;
  margin: 0 auto;
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-2__left img,
.hero-2__right img {
  width: 48%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.hero-2__left p,
.hero-2__right p {
  font-family: sans-serif;
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
  position: relative;
  width: 48%;
}

.company-hero {
  background: #fff url("img/company/company__hero.jpg") no-repeat center top / cover;
  min-height: 450px;
}

.company-hero h2 {
  position: relative;
  font-size: 2rem;
  letter-spacing: .3em;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  padding: 150px;
}

.recruit-hero {
  background: #fff url("img/recruit/recruit__hero.jpg") no-repeat center top / cover;
  min-height: 500px;
}

.recruit-hero h2 {
  background-color: #fff;
  position: absolute;
  font-size: 2.5rem;
  letter-spacing: .3em;
  font-family: 'Times New Roman', Times, serif;
  text-align: left;
  padding: 20px 20px 20px 100px;
  margin-top: 250px;
  margin-left: 0;
}

.recruit-info-hero {
  background: #fff url("img/recruit-info/recruit-info__hero.jpg") no-repeat center top;
  min-height: 500px;
}

/* レスポンシブ対応: 画面幅が768px以下の場合 */
@media screen and (max-width: 768px) {
  .hero {
    height: 30vh;
    /* 高さを縮小 */
  }
}

/* レスポンシブ対応: 画面幅が480px以下の場合 */
@media screen and (max-width: 480px) {
  .hero {
    height: 30vh;
    /* さらに高さを縮小 */
  }
}

@media screen and (min-width: 600px) and (max-width: 959px) {

  .hero-1 {
    padding-bottom: 130px;
  }

  .hero-1>img {
    height: 500px;
  }

  .hero-1__h1 {
    top: 500px;
    transform: translateY(0);
    font-size: 1.7rem;
    width: 100%;
    text-align: center;
  }

  .hero-1 a img {
    bottom: 25%;
  }
}

@media(max-width: 599px) {
  .hero-1 {
    margin-bottom: 40px;
    padding-bottom: 100px;
  }

  .hero-1>img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .hero-1__h1 {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    letter-spacing: .2em;
    font-family: 'Times New Roman', Times, serif;
    padding: 20px 10px;
    /* 上下左右の余白 */
    display: inline-block;
    margin: 0;
    /* 上下の外側余白をリセット */
    position: absolute;
    left: 0;
    /* 左端に固定 */
    top: 300px;
    /* 縦位置調整（中央付近に配置） */
    transform: translateY(0);
    /* 縦中央揃え */
  }

  .hero-1 a img {
    bottom: 23%;
    right: 5%;
    width: 120px;
  }

  .hero-2 p {
    font-size: 16px !important;
    line-height: 1.5;
    padding: 0 20px;
  }

  .hero-2__inner {
    max-width: 90%;
    margin: 0 auto;
    gap: 3rem;
    padding: 40px 0 60px;
  }

  .hero-2__left,
  .hero-2__right {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-2__right {
    flex-direction: column-reverse;
  }

  .hero-2__left img,
  .hero-2__right img {
    width: 100%;
  }

  .hero-2__left p,
  .hero-2__right p {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .company-hero {
    min-height: 250px;
  }

  .company-hero h2 {
    padding: 100px;
    font-size: 1.3rem;
    margin-left: 10px;
  }

  .recruit-hero {
    background: #fff url("img/recruit/recruit__hero.jpg") no-repeat center top;
    min-height: 300px;
  }

  .recruit-hero h2 {
    background-color: #fff;
    position: absolute;
    font-size: 1.3rem;
    letter-spacing: .2em;
    font-family: 'Times New Roman', Times, serif;
    text-align: left;
    padding: 20px;
    margin-top: 100px;
    margin-left: 0;
  }

  .recruit-info-hero {
    background: #fff url("img/recruit-info/recruit-info__hero.jpg") no-repeat center top / cover;
    min-height: 200px;
  }
}

/* =======================================================================
  事業内容
======================================================================= */
.service {
  background: #fff url("img/top/top__service-bg.jpg") no-repeat center top;
  background-size: 100%;
  width: 100%;
  /* 要素の幅を画面全体に設定 */
  height: auto;
  padding: 60px 240px 0 240px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  position: relative;
}

.service::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #ffffff, transparent);
}

.service .pc>p {
  margin-bottom: 250px;
}

.service__h3 {
  text-align: center;
  margin-bottom: 20px;
}

.service h4 {
  text-align: center;
  font-size: 1.3em;
  letter-spacing: .3em;
  line-height: 2em;
  font-family: 'Times New Roman', Times, serif;
  border-bottom: #aaa 1px solid;
  margin-bottom: 60px;
}

.service p {
  text-align: center;
}

.service__inner1 {
  font-size: 1.3em;
  line-height: 2.5em;
  border-bottom: #1a0dab 3px solid;
  width: 80%;
  margin: 0 auto;
  /* 要素を中央に配置 */
  position: relative;
  z-index: 1000;
}

.service__inner2 {
  background: #2e4c98 url("img/top/top__service-bg2.jpg") no-repeat center top;
  padding: 80px 240px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.service__item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  width: 30%;
  /* 3カラム */
}

.service__item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  /* 丸くする */
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service__item p {
  color: #fff;
  font-size: 1.5em;
  line-height: 1.6;
  font-family: sans-serif;
  text-align: left;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .service {
    padding: 80px 40px 0 40px;
    margin: 0 auto;
    background-size: unset;
  }

  .service h4 {
    margin-bottom: 30px;
  }

  .service__inner2 {
    padding: 80px 40px;
  }
}

@media(max-width: 599px) {
  .service {
    height: auto;
    padding: 80px 20px 0 20px;
    margin: 0 auto;
    background-size: unset;
  }

  .service::after {
    height: 50%;
  }

  .service .pc>p {
    margin-bottom: 100px;
  }

  .service__h3 img {
    width: 60%;
  }

  .service h4 {
    font-size: 1em;
    letter-spacing: .3em;
    line-height: 2em;
    margin-bottom: 30px;
  }

  .service__inner1 {
    font-size: 1.3em;
    line-height: 2em;
    border-bottom: #1a0dab 2px solid;
    width: 90%;
    /* 線の長さを短くするために幅を指定 */
    margin: 0 auto;
    /* 要素を中央に配置 */
  }

  .service__inner1 p {
    font-size: 18px !important;
    line-height: 1.7;
  }

  .service__inner2 {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service__item {
    display: flex;
    /* 子要素をフレックスボックスで配置 */
    justify-content: center;
    /* 水平方向に中央揃え */
    align-items: center;
    width: 100%;
  }
}



/* =======================================================================
  ポリシー
======================================================================= */
.policy {
  background: #ecf9ff;
  padding: 60px 240px 0 240px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
}

.policy__h3 {
  text-align: center;
  margin-bottom: 20px;
}

.policy h4 {
  text-align: center;
  font-size: 1.3em;
  letter-spacing: .3em;
  line-height: 2em;
  font-family: 'Times New Roman', Times, serif;
  border-bottom: #aaa 1px solid;
  margin-bottom: 60px;
}

.policy__inner {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
}

.policy__inner .policy__txt {
  width: 50%;
  margin: 0 auto 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.policy__txt img {
  width: 50%;
}

.policy__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.policy__inner .policy__item:not(:last-child) {
  margin-bottom: 40px;
}

.policy__item img {
  width: 40%;
}

.policy__item p {
  width: 57%;
  font-size: 1.5em;
  line-height: 1.6;
  font-family: sans-serif;
  text-align: left;
}

.top__btn {
  padding-bottom: 40px;
}

.top__btn img {
  width: 40%;
  border-radius: 30px;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .policy {
    padding: 80px 40px;
  }
}



@media(max-width: 599px) {
  .policy {
    padding: 40px 20px 0 20px;
    margin: 0 auto;
  }

  .policy__h3 {
    margin-bottom: 10px;
  }

  .policy__h3 img {
    width: 60%;
  }

  .policy h4 {
    font-size: 1em;
    letter-spacing: .3em;
    line-height: 2em;
    margin-bottom: 20px;
  }

  .policy__inner {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
  }

  .policy__inner .policy__txt {
    width: 90%;
    gap: 0;
  }

  .policy__item {
    display: block;
  }

  .policy__item p {
    width: 100%;
  }

  .policy__item img {
    width: 100%;
    margin-bottom: 1rem;
  }

  .top__btn img {
    width: 80%;
  }
}

/* =======================================================================
  ご挨拶
======================================================================= */
.greetings {
  background: #ecf9ff;
  padding: 60px 200px 0 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
}

.greetings__h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  letter-spacing: .3em;
}

.greetings__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* スマホ対応 */
  padding-bottom: 80px;
}

.greetings__txt {
  flex: 1;
  /* テキストの割合を設定 */
  max-width: 800px;
  /* ウィンドウサイズに合わせて縮小 */
  padding: 20px;
}

.greetings__txt p {
  font-size: 1.5em;
  line-height: 1.6;
  font-family: sans-serif;
  text-align: left;
}

.greetings__ceo {
  flex: 1;
  /* 画像の割合を設定 */
  max-width: 250px;
  /* ウィンドウサイズに合わせて縮小 */
  padding: 20px;
}

.ceo__name {
  font-size: .9em;
  line-height: 1.6;
  font-family: sans-serif;
  text-align: left;
}

@media(max-width: 599px) {
  .greetings {
    padding: 40px 20px 0 20px;
  }

  .greetings__h3 {
    font-size: 1.5em;
    letter-spacing: .3em;
    margin-bottom: 20px;
  }

  .greetings__inner {
    flex-direction: column;
    /* 写真と文字を縦並びに変更 */
    text-align: center;
    /* 文字を中央揃え */
    padding-bottom: 40px;
  }

  .greetings__inner img {
    max-width: 120px;
    /* 写真を小さくする */
    margin-bottom: 10px;
  }

  .greetings__inner p {
    font-size: 0.9em;
    /* 文字サイズを少し小さくする */
    line-height: 1.4em;
    /* 行間を調整 */
    word-wrap: break-word;
    /* 長い単語を折り返す */
  }
}

/* =======================================================================
  当社の歴史
======================================================================= */
.history {
  background: #e6e6e7 url("img/company/company__history-bg.jpg") no-repeat center top / cover;
  padding: 60px 200px 40px 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
}

.history__h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
  letter-spacing: .3em;
}

.history__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* スマホ対応 */
}

.history__txt {
  flex: 1;
  /* テキストの割合を設定 */
  max-width: 600px;
  /* ウィンドウサイズに合わせて縮小 */
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.history__img {
  flex: 1;
  /* 画像の割合を設定 */
  max-width: 400px;
  /* ウィンドウサイズに合わせて縮小 */
  padding: 20px;
}

.history__img img {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

@media(max-width: 599px) {
  .history {
    padding: 40px 20px 40px 20px;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
  }

  .history__h3 {
    font-size: 1.5em;
    letter-spacing: .3em;
    margin-bottom: 20px;
  }

  .history__img {
    flex: 1;
    /* 画像の割合を設定 */
    max-width: 200px;
    /* ウィンドウサイズに合わせて縮小 */
    padding: 0;
  }
}

/* =======================================================================
  当社のポリシー
======================================================================= */
.company__policy {
  background: #ecf9ff url("img/company/company__policy-bg.jpg") no-repeat center top / cover;
  padding: 60px 200px 0 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  padding-bottom: 180px;
}

.company__policy__h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 28px;
  letter-spacing: .3em;
}

.company__policy__inner {
  background-color: #fff;
  padding: 40px;
  font-family: sans-serif;
  text-align: left;
}

@media(max-width: 599px) {
  .company__policy {
    padding: 40px 20px 180px 20px;
    margin: 0 auto;
  }

  .company__policy__h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5em;
  }

  .company__policy__inner {
    padding: 20px;
  }
}

/* =======================================================================
  会社概要
======================================================================= */
.companyprofile {
  padding: 60px 240px 0 240px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 80px;
}

.companyprofile__h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  letter-spacing: .3em;
}

.companyprofile__inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 80px;
  font-size: 18px;
}

@media(max-width: 599px) {
  .companyprofile {
    padding: 40px 20px 40px 20px;
  }

  .companyprofile__h3 {
    font-size: 1.5em;
  }

  .companyprofile__inner {
    gap: 20px;
    font-size: 1em;
  }
}

/* =======================================================================
  当社の仕事内容
======================================================================= */
.job {
  background: #ecf9ff url("img/recruit/recruit__job-bg.jpg") no-repeat center top / cover;
  padding: 60px 200px 0 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  padding-bottom: 60px;
}

.job__h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  letter-spacing: .3em;
}

.job h4 {
  text-align: center;
  font-size: 1em;
  line-height: 2em;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 60px;
}

.recruit__btn {
  text-align: center;
}

.recruit__btn img {
  width: 35%;
  margin-bottom: 40px;
}

.job__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.job__item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 40px;
}

.job__item img {
  flex: 1;
  max-width: 250px;
  height: auto;
}

.job__item-txt img {
  width: 30%;
  margin-bottom: 20px;
}

.job__item-txt p {
  font-family: sans-serif;
}

.job__txt {
  background-color: #fff;
  padding: 40px;
  font-family: sans-serif;
}

@media(max-width: 599px) {
  .job {
    background: #ecf9ff url("img/recruit/recruit__job-bg.jpg") no-repeat center top / cover;
    padding: 40px 20px 40px 20px;
    margin: 0 auto;
  }

  .job__h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    letter-spacing: .2em;
  }

  .job h4 {
    text-align: center;
    font-size: 1em;
    font-weight: 550;
    line-height: 1.5em;
    font-family: 'Times New Roman', Times, serif;
    margin-bottom: 30px;
  }

  .recruit__btn img {
    width: 60%;
    margin-bottom: 20px;
  }

  .job__item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
  }

  .job__item img {
    flex: 1;
    max-width: 180px;
    height: auto;
  }

  .job__txt {
    padding: 20px;
  }
}

/* =======================================================================
  生コンクリート運送のやりがい
======================================================================= */
.worth {
  padding: 60px 240px 0 240px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  padding-bottom: 80px;
}

.worth__h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  letter-spacing: .3em;
}

.worth__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.worth__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.worth__item img {
  flex: 1;
  max-width: 250px;
  height: auto;
  flex-shrink: 0;
}

.worth__txt {
  max-width: 500px;
  flex: 1;
  background-color: #fff;
  border: #888888 2px solid;
  padding: 20px;
  font-family: sans-serif;
}

@media(max-width: 599px) {
  .worth {
    padding: 40px 20px 40px 20px;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
  }

  .worth__h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.5em;
    letter-spacing: .2em;
  }

  .worth__item img {
    flex: 1;
    max-width: 130px;
    height: auto;
    flex-shrink: 0;
  }

  .worth__item {
    gap: 10px;
  }
}

/* =======================================================================
  生コンクリート運送の魅力
======================================================================= */
.atctv {
  background: #fff url("img/recruit/recruit__atctv-bg.jpg") no-repeat center top;
  padding: 60px 200px 0 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  padding-bottom: 40px;
}

.atctv__h3 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 24px;
  letter-spacing: .3em;
}

.atctv p {
  font-size: 1.2em;
  line-height: 1.8;
  font-family: sans-serif;
  margin-bottom: 40px;
}

.atctv__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.atctv__item img {
  flex: 1;
  margin-bottom: 20px;
  border-radius: 30px;
}

@media(max-width: 599px) {
  .atctv {
    padding: 20px 20px 20px 20px;
  }

  .atctv__h3 {
    margin-bottom: 40px;
    font-size: 1.5em;
    letter-spacing: .2em;
  }

  .atctv__inner {
    gap: 10px;
  }

  .atctv p {
    margin-bottom: 20px;
  }

  .atctv__item img {
    flex: 1;
    margin-bottom: 0;
    border-radius: 15px;
  }
}

/* =======================================================================
  社内の雰囲気
======================================================================= */
.atmosphere {
  padding: 60px 240px 0 240px;
  margin: 0 auto;
  font-family: 'sans-serif';
  padding-bottom: 80px;
}

.atmosphere__h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  letter-spacing: .3em;
  font-family: 'Times New Roman', Times, serif;
}

.atmosphere p {
  font-size: 1.2em;
  line-height: 1.8;
  font-family: sans-serif;
  margin-bottom: 40px;
  text-align: center;
}

.atmosphere__images {
  display: flex;
  flex-direction: column;
  position: relative;
}

.atmosphere__images img {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.atmosphere__row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.atmosphere__row--full img {
  width: 60%;
  height: 60%;
}

.atmosphere__row--half img {
  width: 40%;
  height: auto;
  margin-left: -50%;
  margin-top: -15%;
}

@media(max-width: 599px) {
  .atmosphere {
    padding: 40px 20px 40px 20px;
  }

  .atmosphere__h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
    letter-spacing: .2em;
  }

  .atmosphere p {
    margin-bottom: 20px;
  }

  .atmosphere__row {
    gap: 20px;
  }

  .atmosphere__row--half img {
    width: 50%;
    height: auto;
    margin-left: -45%;
    margin-top: -15%;
  }
}

/* =======================================================================
  こんな方を求めています
======================================================================= */
.who {
  background: #fff url("img/recruit/recruit__who.jpg") no-repeat center top;
  padding: 80px 240px 100px 240px;
  margin: 0 auto;
  font-family: 'sans-serif';
}

.who__h3 {
  text-align: center;
  margin-bottom: 40px;
}

.who__txt {
  background-color: #fff;
  padding: 40px;
  font-size: 1em;
  text-align: center;
}

@media(max-width: 599px) {
  .who {
    padding: 40px 20px 80px 20px;
    margin: 0 auto;
    font-family: 'sans-serif';
  }

  .who__h3 {
    margin-bottom: 20px;
  }

  .who__txt {
    padding: 20px;
    font-size: 1.1em;
  }
}

/* =======================================================================
  社長からのメッセージ
======================================================================= */
.message {
  padding: 60px 200px 60px 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
}

.message__h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 24px;
  letter-spacing: .3em;
}

.message__inner {
  background-color: #e8e8e8;
  padding: 40px;
  font-size: .9em;
  font-family: sans-serif;
  margin-bottom: 80px;
}

.message__img {
  float: right;
  /* 画像を右寄せ */
  width: 300px;
  margin: 0 0 20px 20px;
  /* 左と下に余白 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message__p {
  text-align: center;
  padding-bottom: 20px;
}

.contact__btn {
  text-align: center;
}

.contact__btn img {
  width: 40%;
}

@media(max-width: 599px) {
  .message {
    padding: 40px 20px 40px 20px;
  }

  .message__h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    letter-spacing: .2em;
  }

  .message__inner {
    background-color: #e8e8e8;
    padding: 20px;
    font-size: 1em;
    font-family: sans-serif;
    margin-bottom: 40px;
  }

  .message__img {
    float: right;
    /* 画像を右寄せ */
    width: 180px;
    margin: 0 0 10px 10px;
    /* 左と下に余白 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .contact__btn img {
    width: 80%;
  }
}

/* =======================================================================
  募集要項
======================================================================= */
.recruit-info {
  padding: 60px 200px 0 200px;
  margin: 0 auto;
  font-family: 'Times New Roman', Times, serif;
  padding-bottom: 80px;
}

.recruit-info__h3 {
  text-align: left;
  margin-bottom: 40px;
  font-size: 24px;
  letter-spacing: .3em;
}

.recruit-info__h4 {
  text-align: left;
  margin-bottom: 40px;
  font-size: 21px;
  letter-spacing: .3em;
  color: #666;
}

.recruit-info__inner {
  border: 2px solid #2e4c98;
  overflow: hidden;
  font-size: 1rem;
  margin-bottom: 40px;
}

.recruit-info__item {
  display: flex;
  border-top: 2px solid #2e4c98;
}

.recruit-info__item:first-child {
  border-top: none;
}

.recruit__rabel {
  background-color: #2e4c98;
  color: #fff;
  font-weight: bold;
  width: 200px;
  min-width: 150px;
  padding: 20px;
  text-align: center;
  letter-spacing: .3em;
}

.recruit__content {
  padding: 20px;
  background-color: #f9f9f9;
  flex: 1;
}

.recruit__content .arrow {
  font-size: 24px;
  /* 三角の大きさ */
  color: #000;
  /* 色は黒 */
  margin: -20px 0 0 80px;
}

.recruit__content ul {
  padding-left: 1.2em;
  list-style-type: disc;
}

.recruit__content img {
  width: 15%;
}

.recruit-info-img img {
  width: 10px;
  height: auto;

}

.recruit-info__h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.recruit__txt {
  text-align: left;
  font-size: 1.2em;
  padding-left: 0;
  margin-bottom: 40px;
}

.recruit__txt li {
  list-style-type: none;

}

.recruit__txt-2 {
  text-align: left;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.entry-btn {
  text-align: center;
  margin-bottom: 80px;
}

.entry-btn img {
  width: 40%;
}

@media(max-width: 599px) {
  .recruit-info {
    padding: 40px 20px 40px 20px;
  }

  .recruit-info__h3 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.5em;
    letter-spacing: .2em;
  }

  .entry-btn img {
    width: 80%;
  }

  .recruit-info__h4 {
    margin-bottom: 20px;
    font-size: 1.3em;
    letter-spacing: .2em;
    color: #666;
  }

  .recruit-info__inner {
    border: 2px solid #2e4c98;
    overflow: hidden;
    font-size: .9em;
    margin-bottom: 40px;
  }

  .recruit__rabel {
    width: 100px;
    min-width: 80px;
    padding: 10px;
    text-align: center;
    letter-spacing: .2em;
  }

  .recruit__content {
    padding: 10px;
    background-color: #f9f9f9;
    flex: 1;
  }

  .recruit__content .arrow {
    font-size: 1.2em;
    /* 三角の大きさ */
    color: #000;
    /* 色は黒 */
    margin: -15px 0 0 80px;
  }

  .recruit__content img {
    width: 40%;
  }

  .recruit__txt {
    text-align: left;
    font-size: 1em;
    padding-left: 0;
    margin-bottom: 40px;
  }
}

/*　フォーム
======================================================================= */
.contact-form {
  padding: 40px;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  font-family: 'sans-serif';
  padding-bottom: 80px;
}

.recruit-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  font-family: 'sans-serif';
  padding-bottom: 80px;
}



/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}

/* 小見出し H3
======================================================================= */

.h3 {
  margin: 40px auto;
  padding: 24px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
}

.h3:first-child {
  margin-top: 0;
}

@media(max-width: 599px) {
  .h3 {
    margin: 24px 0;
    padding: .75em 1em;
    font-size: 21px;
  }
}

/* 小見出し H3-1
======================================================================= */

.h3-1 {
  margin: 40px auto;
  padding: 48px 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
  position: relative;
}

.h3-1:first-child {
  margin-top: 0;
}

.h3-1::before {
  position: absolute;
  top: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center bottom;
  background-size: contain;
}

.h3-1::after {
  position: absolute;
  bottom: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center top;
  background-size: contain;
}

@media(max-width: 599px) {
  .h3-1 {
    margin: 24px 0;
    padding: 30px 0;
    font-size: 21px;
  }

  .h3-1::before,
  .h3-1::after {
    height: 13px;
  }
}

/* 小見出し H4
======================================================================= */

.h4 {
  margin: 40px auto 1em;
  padding: 1em 0 0;
  border-top: 1px solid #ddd;
  font-size: 24px;
  line-height: 1.333;
  color: #333;
}

@media(max-width: 599px) {
  .h4 {
    margin: 2em auto 1em;
    font-size: 18px;
  }
}

/* 小見出し H5
======================================================================= */

.h5 {
  margin: 40px auto 1em;
  font-size: 18px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h5 {
    margin: 24px auto 1em;
    font-size: 16px;
  }
}


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

.footer {
  background-color: #2e4c98;
  /* 背景のブルー */
  color: #fff;
  /* テキストカラー */
  padding: 40px 120px;
  font-family: 'Times New Roman', Times, serif;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__left {
  text-align: left;
}

.footer .footer__company {
  font-size: 21px;
  margin-bottom: 0;
}

.footer__copyright {
  font-size: 14px;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  /* メニュー間のスペース */
  margin: 0;
  padding: 0;
}

.footer__nav a {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}

.footer__nav a:hover {
  text-decoration: underline;
}

@media(max-width: 599px) {
  .footer {
    padding: 20px;
    font-family: 'Times New Roman', Times, serif;
  }

  .footer__inner {
    display: flex;
    flex-direction: column;
  }

  .footer__left {
    text-align: center;
  }

  .footer .footer__company {
    font-size: 18px;
    margin-bottom: 0;
  }

  .footer__copyright {
    font-size: 12px;
  }

}

/* =======================================================================
  このページの先頭へ戻る
======================================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  clear: both;
  text-align: right;
}

.back-to-top a {
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAABhlBMVEUAAADMzMzd3d2AgIDd3d3d3d3c3Nzb29vc3NzV1dXc3Nzc3Nzd3d3d3d3c3Nzb29vc3Nzc3Nze3t7c3NzW1tbb29vd3d3d3d3d3d3c3Nzc3Nzf39/d3d3d3d3b29va2trc3NzGxsbb29vc3Nzd3d3d3d3c3Nzc3Ny/v7/c3Nzd3d3c3NzR0dHY2Njc3Nzc3Nzc3Nzc3Nzc3Nzb29vY2Nja2trc3Nzc3NzZ2dnc3Nze3t7d3d3c3Nzc3Nzc3NzX19fc3Nzc3Nzc3Nzd3d3b29vc3Nzc3Nzb29vV1dXd3d3c3NzV1dXd3d3c3Nzc3Nzd3d3c3Nzc3Nzd3d3d3d3c3Nzc3Nzb29vc3Nzd3d3d3d3d3d3c3Nzd3d3d3d3////o6Oj9/f329vbm5ub8/Pz5+fn4+Pj+/v7w8PDj4+Py8vLx8fHv7+/i4uL4+fnk5OTs7Ozd3d339/ekpqrt7e3u7u6doKS3ubzLzM6+wMLr6+vf39/6+vrl5uexs7bR09WqrbDr7O3e3+Ej3aiqAAAAXnRSTlMACuEC35y4FXYMFunx9NtH60j0px9NeHCUUCT+WchcKewJB2y70VjzCKjX2gsh1m2Yk9yPDUXV5RTG79DjkL0g+eTinV3FHUYS3r8G7d2+b/KZ4NK3dZ5RSlJ3SVq5/bnMpQAAAw1JREFUeF6t2WVz4lAUgOGDU6SFFipABaruLluVdXe58eBWddl/vjPMMGXTJpwk9/0Bz6ebKydQp6X53va+Ce9gafP1m/6+9t75JTCeJTy7GuUvkpwosERmr0QuecFHV2fDFiOaranFzydF8igxyftbmmw6uYY2eyojEJWETMHe1gD44l8CTJloVmYC7jjWG7AyIqmbyFgHUFzoc4ojqLiUM1Tf6/IdywSZfOzrAu2GdnIS0ZGU+zqk5XmWGZboimWWPere+EyR6K44M67mdS9miYGyi91Pe5G1NDFUei3ylOdqTBKDZRpdj71XnUfEcEedCVDmYIiJGIfS68qxZkA2p1jhIZ9ETCX5QlCb85iYLOus9QZSsllQTsUePIuVI6bjrBao5mYIhRh31WsIiDRAsad6KkwyhErMJFSyvZDogJLdVgGbUoRShWAFbMnQAjPDlTXTLNACheYxAOjgCbX4DgCYStIDk1MAMCoigPztXwwojgJ4LhHe9eHJyV0eIV56IMjjPJzI/4LWIspDisVWcGQwHlZMO+AZh/DQIvcWRq4QHlq8GgGvgPDQouCF9yzKuztEiewglHBe/honlmAT5/2Ha4I9LM7Diewg2AU1774K3FQAlCh44ZPqsjmt8RTirfqy0VjYhw+eUjxXA7mX4EirgWcPnlK8Vv/0NDaH/GnVU4pnWptDkNfYVW/O8kTR/fmpxl7Lf0dtsPguPQCNIg7AHgHwgfIhRf8YHaN90MMw5asIBAuUL0s2O63r3Ecb5Qvnu+qVuIfulZj+pR0s1rJ5r1zzrIAYjYfPb6jJmTULZv9AbRvmH4+KycOu2eftLuUH+A4oS5gbEQw9NcTIUB1iAES2jI5ZtiIqg6BtY4Og7W5QaX/ByKhqYR9Ue76nf5i29xw0SkzrHfdNJ0C7bys6BpLZlR9Qt5BTx8h0AzDFsEPdGCCLuwOMpM1JTOBnHPDNtdkLdQbjcxRH982K0T02S3i9P8oX05woyITIgsili3y0fz1sAeO5Diq/P/ylkt870dfee+AC7f4Bnw1DMsoy0tsAAAAASUVORK5CYII=") no-repeat center center;
  background-size: contain;
  line-height: 100px;
}

.back-to-top a:active {
  outline: 0 none black;
}



/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {

  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
  animation: blink .8s ease-in-out infinite alternate;
}

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

  100% {
    opacity: 1;
  }
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }
}

/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */