/*
Theme Name: WillWay
Author: TOMUP.co.jp
Description: WillWayのコーポレートサイト用テーマ
Version: 1.0
*/
@charset 'utf-8';

body {
  font-family: "Shippori Mincho B1";
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
.pc-none {
  display: none;
}
.sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
}

/* ================ヘッダー=============== */
#header {
  width: calc(1200 / 1200 * 100vw);
  height: calc(672 / 1200 * 100vw);
  background-image: url("img/header_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
.header-container {
  width: 100%;
  height: 100%;
  padding: calc(20 / 1200 * 100vw);
}
.header-logo {
  width: calc(154 / 1200 * 100vw);
}
.header-main {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: calc(76 / 1200 * 100vw);
}
.header-title {
  font-size: calc(128 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(17 / 1200 * 100vw);
}
.header-title-jp {
  font-size: calc(108 / 1200 * 100vw);
  font-weight: bold;
}
.header-title-R {
  font-size: calc(50 / 1200 * 100vw);
  font-weight: bold;
  vertical-align: sub;
}
.header-subtitle {
  font-size: calc(50 / 1200 * 100vw);
  font-weight: bold;
}
.header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: calc(46 / 1200 * 100vw);
  margin-bottom: calc(36 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(25 / 1200 * 100vw);
  color: #0b1644;
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  width: calc(452 / 1200 * 100vw);
  height: calc(63 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  text-align: center;
}
.header-text {
  font-size: calc(20 / 1200 * 100vw);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #header {
    width: calc(375 / 375 * 100vw);
    height: calc(500 / 375 * 100vw);
    background-image: url("img/header_bg_sp.png");
  }
  .header-container {
    padding: calc(15 / 375 * 100vw);
  }
  .header-logo {
    width: calc(137 / 375 * 100vw);
  }
  .header-main {
    width: 100%;
    padding-top: calc(30 / 375 * 100vw);
  }
  .header-title {
    font-size: calc(78 / 375 * 100vw);
    margin-bottom: calc(17 / 375 * 100vw);
  }
  .header-title-jp {
    font-size: calc(67 / 375 * 100vw);
  }
  .header-title-R {
    font-size: calc(19 / 375 * 100vw);
  }
  .header-subtitle {
    font-size: calc(33 / 375 * 100vw);
  }
  .header-button {
    margin-top: calc(29 / 375 * 100vw);
    margin-bottom: calc(22 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    width: calc(300 / 375 * 100vw);
    height: calc(63 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
  .header-text {
    font-size: calc(17 / 375 * 100vw);
    font-weight: bold;
  }
}
/* ================ヘッダー(slim)=============== */
.header-slim {
  height: calc(70 / 1200 * 100vw);
  background-color: #0b1644;
  padding: calc(20 / 1200 * 100vw);
  position: relative;
}
.header-slim-logo {
  width: calc(154 / 1200 * 100vw);
  height: calc(40 / 1200 * 100vw);
}
@media screen and (max-width: 767px) {
  .header-slim {
    height: calc(66 / 375 * 100vw);
    background-color: #0b1644;
    padding: calc(15 / 375 * 100vw);
  }
  .header-slim-logo {
    width: calc(137 / 375 * 100vw);
    height: calc(35 / 375 * 100vw);
  }
}

/* ================メニュー=============== */
.menu {
  background-color: #e4e7f2;
  height: calc(78 / 1200 * 100vw);
  padding-top: calc(30 / 1200 * 100vw);
  padding-bottom: calc(27 / 1200 * 100vw);
  font-size: calc(15 / 1200 * 100vw);
}
.menu ul {
  display: flex;
  justify-content: center;
  gap: calc(25 / 1200 * 100vw);
}
.menu ul li {
  position: relative;
}
.menu ul li::after {
  content: "";
  display: inline-block;
  height: calc(15 / 1200 * 100vw);
  width: 1px;
  background-color: #000;
  margin-left: calc(25 / 1200 * 100vw);
}
.menu ul > li:last-of-type::after {
  content: none;
}
#humbergar-wrapper {
  display: none;
}
@media screen and (max-width: 999px) {
  #menu {
    display: none;
  }
  #humbergar-wrapper {
    display: block;
    color: #000;
  }
  #humbergar-wrapper nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    padding-top: 50px;
    background: #fff;
    font-size: 16px;
    box-sizing: border-box;
    z-index: 2;
  }
  #humbergar-wrapper nav ul li {
    display: block;
    padding: 20px 28px;
  }
  #humbergar-wrapper nav ul li a {
    text-decoration: none;
    color: #000;
  }
  #humbergar-wrapper .btn-gnavi {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }
  #humbergar-wrapper .btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    z-index: 3;
  }
  #humbergar-wrapper .btn-gnavi span:nth-child(1) {
    top: 0;
  }
  #humbergar-wrapper .btn-gnavi span:nth-child(2) {
    top: 10px;
  }
  #humbergar-wrapper .btn-gnavi span:nth-child(3) {
    top: 20px;
  }
  #humbergar-wrapper .btn-gnavi.open span {
    background: #000;
  }
  #humbergar-wrapper .btn-gnavi.open span {
    width: 30px;
  }
  #humbergar-wrapper .contents section p {
    position: absolute;
    top: 50%;
    width: 30%;
    line-height: 1.4;
    font-size: 20px;
    color: #fff;
  }
  #humbergar-wrapper .contents section:nth-child(odd) p {
    left: 10%;
  }
  #humbergar-wrapper .contents section:nth-child(even) p {
    right: 10%;
  }
  .fixed {
    position: fixed !important;
  }
}
@media screen and (max-width: 767px) {
}

/* ================セミナー=============== */
.seminer {
  padding-top: calc(82 / 1200 * 100vw);
  padding-bottom: calc(90 / 1200 * 100vw);
}
.seminer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(73 / 1200 * 100vw);
  font-size: calc(18 / 1200 * 100vw);
  font-weight: 600;
}
.seminer-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: #0b1644 solid 2px;
  border-radius: calc(10 / 1200 * 100vw);
  font-size: calc(22 / 1200 * 100vw);
  font-weight: bold;
  color: #0b1644;
  font-family: "Zen Kaku Gothic Antique";
  width: calc(421 / 1200 * 100vw);
  height: calc(60 / 1200 * 100vw);
}
.font-size-12 {
  font-size: calc(12 / 1200 * 100vw);
  font-weight: bold;
  vertical-align: sub;
}
.font-size-24 {
  font-size: calc(24 / 1200 * 100vw);
  font-weight: bold;
}
.red {
  color: red;
}
@media screen and (max-width: 767px) {
  .seminer {
    padding-top: calc(43 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
  }
  .seminer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: calc(26 / 375 * 100vw);
    font-size: calc(20 / 375 * 100vw);
  }
  .seminer-button {
    border-radius: calc(10 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
  }
  .font-size-12 {
    font-size: calc(12 / 375 * 100vw);
  }
  .font-size-24 {
    font-size: calc(26 / 375 * 100vw);
  }
}

/* ================100年塾=============== */
.school {
  background-color: #0b1644;
  padding-bottom: calc(100 / 1200 * 100vw);
}
.school-container {
  display: flex;
}
.school-img {
  width: calc(472 / 1200 * 100vw);
  height: calc(598 / 1200 * 100vw);
  background-image: url("img/school-100yaer.png");
  background-size: contain;
}
.school-img img {
  width: 100%;
}
.school-msg {
  color: #fff;
  margin-top: calc(91 / 1200 * 100vw);
  margin-left: calc(46 / 1200 * 100vw);
}
.school-msg h2 {
  font-size: calc(45 / 1200 * 100vw);
  font-weight: bold;
}
.school-name {
  font-size: calc(64 / 1200 * 100vw);
  font-weight: bold;
}
.school-name::after {
  content: "®︎";
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  vertical-align: sub;
}
.school-msg h3 {
  font-size: calc(35 / 1200 * 100vw);
  font-weight: bold;
}
.school-msg p {
  font-size: calc(18 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  font-weight: normal;
  margin-top: calc(29 / 1200 * 100vw);
  line-height: 2;
}
.school-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: calc(73 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(25 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(330 / 1200 * 100vw);
  height: calc(70 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
}
@media screen and (max-width: 767px) {
  .school {
    padding-bottom: calc(50 / 375 * 100vw);
  }
  .school-container {
    display: flex;
    flex-direction: column;
  }
  .school-img {
    width: calc(375 / 375 * 100vw);
    height: calc(270 / 375 * 100vw);
    background-image: url("img/school-100yaer_sp.png");
    background-size: contain;
  }
  .school-msg {
    margin-top: calc(10 / 375 * 100vw);
    margin-left: calc(30 / 375 * 100vw);
  }
  .school-msg h2 {
    font-size: calc(31 / 375 * 100vw);
    font-weight: bold;
  }
  .school-name {
    font-size: calc(50 / 375 * 100vw);
    font-weight: bold;
  }
  .school-name::after {
    content: "®︎";
    font-size: calc(30 / 375 * 100vw);
  }
  .school-msg h3 {
    font-size: calc(21 / 375 * 100vw);
    font-weight: bold;
  }
  .school-msg p {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
    text-wrap: nowrap;
    line-height: 2;
  }
  .school-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: calc(28 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(63 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
}

/* ================サービス一覧=============== */
.service {
  background-color: #f0f0f0;
  padding-top: calc(143 / 1200 * 100vw);
  padding-bottom: calc(150 / 1200 * 100vw);
}
.service-title {
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(11 / 1200 * 100vw);
}
.service-subtitle {
  font-size: calc(20 / 1200 * 100vw);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(47 / 1200 * 100vw);
}
.service-message {
  font-size: calc(20 / 1200 * 100vw);
  text-align: center;
  font-family: "源ノ角ゴシック JP";
  font-weight: bold;
  margin-bottom: calc(78 / 1200 * 100vw);
}
.font-size-25 {
  font-size: calc(25 / 1200 * 100vw);
  font-weight: bold;
}
.marker {
  background: linear-gradient(transparent 50%, #ffff00 50%);
  display: inline;
}
.service-menu {
  display: flex;
  flex-direction: column;
  gap: calc(75 / 1200 * 100vw);
  margin-bottom: calc(145 / 1200 * 100vw);
}
.service-card {
  width: calc(950 / 1200 * 100vw);
  height: calc(400 / 1200 * 100vw);
  background-color: #fff;
  display: flex;
  flex-shrink: 0;
  margin: 0 auto;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}
.service-img {
  width: calc(520 / 1200 * 100vw);
  height: calc(400 / 1200 * 100vw);
  background-size: cover;
}
.service-img-01 {
  background-image: url("img/service_management_plan.png");
}
.service-img-02 {
  background-image: url("img/service_environment_maintenance.png");
}
.service-img-03 {
  background-image: url("img/service_personnel_evaluation_system.png");
}
.service-img-04 {
  background-image: url("img/service_lanchester_strategy.png");
}
.service-img-05 {
  background-image: url("img/serviceMQ_kaikei.png");
}
.service-img-06 {
  background-image: url("img/service_business_model_exercise.png");
}
.service-img-07 {
  background-image: url("img/service_management_strategy_formulation.png");
}
.service-card-title {
  width: calc(380 / 1200 * 100vw);
  margin-left: calc(20 / 1200 * 100vw);
  padding-top: calc(55 / 1200 * 100vw);
}
.service-card-title-max {
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  text-align: center;
}
.service-card-title-min {
  font-size: calc(30 / 1200 * 100vw);
  font-weight: bold;
  text-align: center;
}
.service-card-title h2::after {
  content: "";
  display: block;
  width: calc(340 / 1200 * 100vw);
  height: 1px;
  margin: 0 auto;
  background-color: #000;
  margin-top: calc(25 / 1200 * 100vw);
  margin-bottom: calc(22 / 1200 * 100vw);
}
.service-card-title p {
  font-size: calc(14 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  line-height: calc(25 / 14);
}
.letter-space-negative {
  letter-spacing: -0.5px;
}
.service-contants {
  font-size: calc(35 / 1200 * 100vw);
  font-weight: bold;
  text-align: center;
}
.service-contants-contaner {
  display: flex;
  flex-direction: column;
  gap: calc(10 / 1200 * 100vw);
  padding-top: calc(80 / 1200 * 100vw);
  margin-bottom: calc(88 / 1200 * 100vw);
}
.service-contants-contaner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(20 / 1200 * 100vw);
  width: calc(930 / 1200 * 100vw);
  margin: 0 auto;
}
.service-contants-contaner ul li {
  font-size: calc(16 / 1200 * 100vw);
  font-weight: bold;
  color: #0b1644;
  width: calc(150 / 1200 * 100vw);
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.service-contants-contaner ul li::after {
  content: "";
  width: 1px;
  height: calc(120 / 1200 * 100vw);
  background-color: #0b1644;
  position: absolute;
  top: calc(10 / 1200 * 100vw);
  margin-left: calc(170 / 1200 * 100vw);
}
.service-contants-contaner ul li:nth-child(5n)::after {
  content: none;
}
.service-contants-contaner ul li:nth-child(n + 6) {
  margin-top: calc(40 / 1200 * 100vw);
}
.service-contants-contaner ul li div {
  width: calc(80 / 1200 * 100vw);
  height: calc(80 / 1200 * 100vw);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: calc(20 / 1200 * 100vw);
}
.service-contants-contaner ul li p {
  font-size: calc(16 / 1200 * 100vw);
  font-weight: bold;
  text-wrap: nowrap;
  text-align: center;
}
.service-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  font-size: calc(25 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(454 / 1200 * 100vw);
  height: calc(72 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: calc(47 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
  }
  .service-title {
    font-size: calc(35 / 375 * 100vw);
    margin-bottom: calc(11 / 375 * 100vw);
  }
  .service-subtitle {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(41 / 375 * 100vw);
  }
  .service-message {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(78 / 375 * 100vw);
    line-height: 2;
  }
  .font-size-25 {
    font-size: calc(25 / 375 * 100vw);
  }
  .marker {
    background: linear-gradient(transparent 50%, #ffff00 50%);
    display: inline;
  }
  .service-menu {
    display: flex;
    flex-direction: column;
    gap: calc(30 / 375 * 100vw);
    margin-bottom: calc(145 / 375 * 100vw);
  }
  .service-card {
    width: calc(320 / 375 * 100vw);
    height: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    margin: 0 auto;
    padding-bottom: calc(20 / 375 * 100vw);
  }
  .service-img {
    width: calc(320 / 375 * 100vw);
    height: calc(220 / 375 * 100vw);
  }
  .service-img-01 {
    background-image: url("img/service_management_plan_sp.png");
  }
  .service-img-02 {
    background-image: url("img/service_environment_maintenance_sp.png");
  }
  .service-img-03 {
    background-image: url("img/service_personnel_evaluation_system_sp.png");
  }
  .service-img-04 {
    background-image: url("img/service_lanchester_strategy_sp.png");
  }
  .service-img-05 {
    background-image: url("img/serviceMQ_kaikei_sp.png");
  }
  .service-img-06 {
    background-image: url("img/service_business_model_exercise_sp.png");
  }
  .service-img-07 {
    background-image: url("img/service_management_strategy_formulation_sp.png");
  }
  .service-card-title {
    width: calc(280 / 375 * 100vw);
    margin-left: calc(20 / 375 * 100vw);
    padding-top: calc(15 / 375 * 100vw);
  }
  .service-card-title-max {
    font-size: calc(30 / 375 * 100vw);
    font-weight: bold;
    text-align: center;
  }
  .service-card-title-min {
    font-size: calc(24 / 375 * 100vw);
    font-weight: bold;
    text-align: center;
  }
  .service-card-title h2::after {
    content: "";
    display: block;
    width: calc(280 / 375 * 100vw);
    height: 1px;
    margin: 0 auto;
    background-color: #000;
    margin-top: calc(10 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
  .service-card-title p {
    font-size: calc(12 / 375 * 100vw);
    font-family: "源ノ角ゴシック JP";
    line-height: calc(22 / 12);
  }
  .letter-space-negative {
    letter-spacing: -0.5px;
  }
  .service-contants {
    font-size: calc(35 / 375 * 100vw);
    font-weight: bold;
    text-align: center;
  }
  .service-contants-contaner {
    display: flex;
    flex-direction: column;
    gap: calc(10 / 375 * 100vw);
    padding-top: calc(80 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
  .service-contants-contaner ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: calc(320 / 375 * 100vw);
    margin: 0 auto;
  }
  .service-contants-contaner ul li {
    font-size: calc(14 / 375 * 100vw);
    width: calc(160 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw);
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .service-contants-contaner ul li::after {
    content: none;
  }
  .service-contants-contaner ul li:nth-child(5n)::after {
    content: none;
  }
  .service-contants-contaner ul li:nth-child(even) {
    border-left: 1px solid #0b1644;
    border-bottom: 1px solid #0b1644;
  }
  .service-contants-contaner ul li:nth-child(odd) {
    border-bottom: 1px solid #0b1644;
  }
  .service-contants-contaner ul li:nth-child(9) {
    border-bottom: none;
  }
  .service-contants-contaner ul li:nth-child(10) {
    border-bottom: none;
  }
  .service-contants-contaner ul li:nth-child(n + 6) {
    margin-top: 0;
  }
  .service-contants-contaner ul li div {
    width: calc(80 / 375 * 100vw);
    height: calc(80 / 375 * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .service-contants-contaner ul li p {
    font-size: calc(14 / 375 * 100vw);
    font-weight: bold;
    text-wrap: nowrap;
    text-align: center;
  }
  .service-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
}

/* ================書籍一覧=============== */
.books {
  padding: calc(58 / 1200 * 100vw) 0;
  background-color: #0b1644;
}
.books-container {
  background-color: #fff;
  padding-top: calc(110 / 1200 * 100vw);
  padding-bottom: calc(105 / 1200 * 100vw);
  display: flex;
  gap: calc(30 / 1200 * 100vw);
}
.books-rect {
  background-color: #0b1644;
  text-align: right;
  color: #fff;
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  width: calc(280 / 1200 * 100vw);
  padding-right: calc(3 / 1200 * 100vw);
  margin-bottom: calc(18 / 1200 * 100vw);
}
.books-message {
  padding-top: calc(10 / 1200 * 100vw);
}
.books-message p {
  text-align: center;
  font-size: calc(20 / 1200 * 100vw);
  font-weight: bold;
  line-height: 1.6;
  color: #0b1644;
  margin-right: calc(-40 / 1200 * 100vw);
}
.books-list {
  display: flex;
  gap: calc(30 / 1200 * 100vw);
}
.books-list li {
  width: calc(116 / 1200 * 100vw);
}
@media screen and (max-width: 767px) {
  .books {
    padding: calc(20 / 375 * 100vw) 0;
  }
  .books-container {
    padding-top: calc(50 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(30 / 375 * 100vw);
  }
  .books-message {
    padding-top: calc(10 / 375 * 100vw);
    display: flex;
    gap: calc(10 / 1200 * 100vw);
  }
  .books-rect {
    font-size: calc(30 / 375 * 100vw);
    width: calc(192 / 375 * 100vw);
    padding-right: calc(10 / 375 * 100vw);
    margin-bottom: calc(13 / 375 * 100vw);
  }
  .books-message p {
    text-align: left;
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(20 / 16);
    margin-right: calc(0 / 375 * 100vw);
  }
  .books-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 calc(25 / 375 * 100vw);
    gap: calc(20 / 375 * 100vw);
  }
  .books-list li {
    width: calc(95 / 375 * 100vw);
  }
}

/* ================人気資料一覧=============== */
.documents {
  padding: calc(143 / 1200 * 100vw) 0 calc(120 / 1200 * 100vw)
    calc(85 / 1200 * 100vw);
}
.documents-container {
  display: flex;
  gap: calc(25 / 1200 * 100vw);
}
.documents-left {
  text-align: center;
  text-wrap: nowrap;
}
.documents-left p {
  font-size: calc(25 / 1200 * 100vw);
  font-weight: bold;
}
.documents-left p::after {
  display: block;
  content: "";
  width: calc(48 / 1200 * 100vw);
  height: 2px;
  margin: calc(18 / 1200 * 100vw) auto;
  background-color: #000;
}
.documents-left h2 {
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  text-wrap: nowrap;
}
.documents-right {
  position: relative;
  padding: 0 calc(50 / 1200 * 100vw);
}
.documents-right::before {
  position: absolute;
  content: "";
  display: block;
  top: calc(120 / 1200 * 100vw);
  right: 0;
  width: calc(849 / 1200 * 100vw);
  height: calc(469 / 1200 * 100vw);
  background-color: #6e6e6e;
  z-index: -1;
}
.documents-list {
  display: flex;
  gap: calc(40 / 1200 * 100vw);
}
.documents-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(100 / 1200 * 100vw);
  color: #fff;
}
.documents-list li img {
  width: calc(173 / 1200 * 100vw);
  margin-bottom: calc(22 / 1200 * 100vw);
}
.documents-list li h3 {
  font-size: calc(24 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(10 / 1200 * 100vw);
  text-wrap: nowrap;
}
.documents-list li p {
  font-family: "源ノ角ゴシック JP";
  font-size: calc(13.5 / 1200 * 100vw);
  height: calc(125 / 1200 * 100vw);
  line-height: calc(22 / 13);
  margin-bottom: calc(10 / 1200 * 100vw);
}
.documents-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  font-size: calc(17 / 1200 * 100vw);
  color: #0b1644;
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  width: calc(210 / 1200 * 100vw);
  height: calc(50 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .documents {
    padding: calc(25 / 375 * 100vw) 0 0 0;
  }
  .documents-container {
    display: flex;
    flex-direction: column;
    gap: calc(25 / 375 * 100vw);
  }
  .documents-left p {
    font-size: calc(20 / 375 * 100vw);
    font-weight: bold;
  }
  .documents-left p::after {
    display: block;
    content: "";
    width: calc(48 / 375 * 100vw);
    height: 2px;
    margin: calc(18 / 375 * 100vw) auto;
  }
  .documents-left h2 {
    font-size: calc(35 / 375 * 100vw);
    text-wrap: nowrap;
  }
  .documents-right {
    position: relative;
    padding: 0;
  }
  .documents-right::before {
    content: none;
  }
  .documents-list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 375 * 100vw);
  }
  .documents-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: calc(40 / 375 * 100vw);
    color: #fff;
    position: relative;
  }
  .documents-list li::before {
    position: absolute;
    content: "";
    display: block;
    top: calc(120 / 375 * 100vw);
    width: 100%;
    height: calc(398 / 375 * 100vw);
    background-color: #6e6e6e;
    z-index: -1;
  }
  .documents-list li:last-child {
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .documents-list li img {
    width: calc(173 / 375 * 100vw);
    margin-bottom: calc(22 / 375 * 100vw);
  }
  .documents-list li h3 {
    font-size: calc(24 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(10 / 375 * 100vw);
    text-wrap: nowrap;
  }
  .documents-list li p {
    font-size: calc(14 / 375 * 100vw);
    width: calc(293 / 375 * 100vw);
    height: auto;
    line-height: calc(22 / 14);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .documents-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #fff;
    font-size: calc(17 / 375 * 100vw);
    color: #0b1644;
    font-family: "Zen Kaku Gothic Antique";
    font-weight: bold;
    width: calc(210 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    border: #0b1644 solid 2px;
  }
}

/* ================導入実績=============== */
.achievements {
  background-color: #0b1644;
  padding-top: calc(114 / 1200 * 100vw);
  position: relative;
  padding-bottom: calc(125 / 1200 * 100vw);
}
.achievements-title {
  color: #fff;
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(68 / 1200 * 100vw);
}
.achievements-list {
  display: flex;
  gap: calc(30 / 1200 * 100vw);
  justify-content: center;
  color: #fff;
  margin: 0 auto;
}
.achievements-list li {
  width: calc(213 / 1200 * 100vw);
  text-align: center;
}
.achievement-video {
  display: block;
  width: calc(213 / 1200 * 100vw);
  height: calc(122 / 1200 * 100vw);
}
.achievements-company {
  font-size: calc(23 / 1200 * 100vw);
  font-weight: bold;
  text-wrap: nowrap;
  height: calc(64 / 1200 * 100vw);
  margin-top: calc(20 / 1200 * 100vw);
  margin-bottom: calc(23 / 1200 * 100vw);
}
.achievements-name {
  font-size: calc(18 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(10 / 1200 * 100vw);
}
.achievements-text {
  font-family: "源ノ角ゴシック JP";
  font-size: calc(15 / 1200 * 100vw);
  line-height: calc(30 / 18);
  text-align: left;
  margin-bottom: calc(31 / 1200 * 100vw);
}
.achievements-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  font-size: calc(17 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(213 / 1200 * 100vw);
  height: calc(50 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
}
.achievements-other-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(-210 / 1200 * 100vw);
  left: calc(373 / 1200 * 100vw);
  margin: 0 auto;
  background-color: #fff;
  font-size: calc(24 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(454 / 1200 * 100vw);
  height: calc(72 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}
@media screen and (max-width: 767px) {
  .achievements {
    padding-top: calc(40 / 375 * 100vw);
    padding-bottom: calc(80 / 375 * 100vw);
  }
  .achievements-title {
    font-size: calc(35 / 375 * 100vw);
    margin-bottom: calc(25 / 375 * 100vw);
  }
  .achievements-list {
    display: flex;
    flex-direction: column;
    gap: calc(40 / 375 * 100vw);
    justify-content: center;
    margin: 0 auto;
  }
  .achievements-list li {
    width: calc(300 / 375 * 100vw);
    text-align: center;
    margin: 0 auto;
  }
  .achievements-list li img {
    display: block;
    width: calc(300 / 375 * 100vw);
    height: calc(300 / 375 * 100vw);
  }
  .achievement-video {
    display: block;
    width: calc(300 / 375 * 100vw);
    height: calc(169 / 375 * 100vw);
  }
  .achievements-company {
    font-size: calc(23 / 375 * 100vw);
    height: auto;
    margin-top: calc(23 / 375 * 100vw);
    margin-bottom: calc(11 / 375 * 100vw);
  }
  .achievements-name {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
  .achievements-text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(26 / 15);
    text-align: center;
    margin-bottom: calc(22 / 375 * 100vw);
  }
  .achievements-button {
    font-size: calc(17 / 375 * 100vw);
    width: calc(213 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
  .achievements-other-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(-110 / 375 * 100vw);
    left: calc(28 / 375 * 100vw);
    margin: 0 auto;
    background-color: #fff;
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    border: #0b1644 solid 2px;
  }
}

/* ================無料セミナー=============== */
.free-seminer {
  position: relative;
  background-color: #edf0f8;
  text-align: center;
  padding-top: calc(114 / 1200 * 100vw);
  padding-bottom: calc(125 / 1200 * 100vw);
  margin-top: calc(168 / 1200 * 100vw);
}
.free-seminer h2 {
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(68 / 1200 * 100vw);
}
.free-seminer-box {
  background-image: url(img/seminer_bg.png);
  background-size: contain;
  height: calc(382 / 1200 * 100vw);
  color: #fff;
  padding-top: calc(64 / 1200 * 100vw);
}
.free-seminer-title {
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(29 / 1200 * 100vw);
}
.free-seminer-text {
  font-size: calc(19 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  line-height: 1.5;
}
.free-seminer-subtext {
  font-size: calc(15 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  text-align: right;
  margin-right: calc(142 / 1200 * 100vw);
}
.free-seminer-scroll {
  margin: 0 auto;
  margin-top: calc(-72 / 1200 * 100vw);
  background-color: #fff;
  width: calc(886 / 1200 * 100vw);
  height: calc(164 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(20/ 1200 * 100vw) calc(30 / 1200 * 100vw);
}
.free-seminer-scroll ul {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: calc(13 / 1200 * 100vw);
  overflow-y: scroll;
}
.free-seminer-scroll ul::-webkit-scrollbar {
  background-color: #fff;
  scrollbar-width: thin;
  border: #0b1644 solid 1px;
  border-radius: 5px;
}
.free-seminer-scroll ul::-webkit-scrollbar-thumb {
  background: #0B1644;
  border-radius: 5px;
}
.free-seminer-scroll ul li {
  font-size: calc(17 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  text-align: left;
}
.free-seminer-scroll ul li::after {
  display: block;
  content: "";
  background-color: #707070;
  width: calc(800 / 1200 * 100vw);
  height: 0.5px;
  margin: calc(13 / 1200 * 100vw) auto 0 auto;
}
.free-seminer-scroll ul li:last-of-type::after {
  content: none;
}
.free-seminer-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: calc(89 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(24 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(454 / 1200 * 100vw);
  height: calc(72 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}
@media screen and (max-width: 767px) {
  .free-seminer {
    position: relative;
    text-align: center;
    padding-top: calc(40 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
    margin-top: calc(80 / 375 * 100vw);
  }
  .free-seminer h2 {
    font-size: calc(30 / 375 * 100vw);
    margin-bottom: calc(24 / 375 * 100vw);
  }
  .free-seminer-box {
    background-image: url(img/seminer_bg_sp.png);
    background-size: contain;
    height: calc(345 / 375 * 100vw);
    color: #fff;
    padding-top: calc(20 / 375 * 100vw);
  }
  .free-seminer-title {
    font-size: calc(35 / 375 * 100vw);
    margin-bottom: calc(11 / 375 * 100vw);
  }
  .free-seminer-text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(25 / 15);
    margin-bottom: calc(11 / 375 * 100vw);
  }
  .free-seminer-subtext {
    font-size: calc(13 / 375 * 100vw);
    text-align: right;
    margin-right: calc(57 / 375 * 100vw);
  }
  .free-seminer-scroll {
    margin: 0 auto;
    margin-top: calc(-72 / 375 * 100vw);
    background-color: #fff;
    width: calc(320 / 375 * 100vw);
    height: calc(158 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  .free-seminer-scroll ul {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: calc(13 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) 0;
  }
  .free-seminer-scroll ul::-webkit-scrollbar {
    background: "#0B1644";
    border: #0b1644 solid 1px;
    border-radius: 3px;
  }
  .free-seminer-scroll ul::-webkit-scrollbar-thumb {
    color: "#0B1644";
  }
  .free-seminer-scroll ul li {
    font-size: calc(12 / 375 * 100vw);
    font-family: "源ノ角ゴシック JP";
    width: calc(280 / 375 * 100vw);
    text-align: left;
  }
  .free-seminer-scroll ul li::after {
    display: block;
    content: "";
    background-color: #707070;
    width: calc(280 / 375 * 100vw);
    height: 0.5px;
    margin: calc(13 / 375 * 100vw) 0 0 calc(5 / 375 * 100vw);
  }
  .free-seminer-scroll ul li:last-of-type::after {
    content: none;
  }
  .free-seminer-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: calc(48 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    border: #0b1644 solid 2px;
  }
}

/* ================新着情報=============== */
.news {
  padding-top: calc(114 / 1200 * 100vw);
}
.news-title {
  text-align: center;
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(15 / 1200 * 100vw);
}
.news-subtitle {
  text-align: center;
  font-size: calc(20 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(58 / 1200 * 100vw);
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(950 / 1200 * 100vw);
  margin: 0 auto;
  gap: calc(23 / 1200 * 100vw);
}
.news-item{
  width: calc(220 / 1200 * 100vw);
}
.news-item-img {
  width: calc(220 / 1200 * 100vw);
  margin-bottom: calc(32 / 1200 * 100vw);
}
.news-item-img img {
  width: 100%;
  height: auto;
}
.news-item-date {
  font-size: calc(14 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(5 / 1200 * 100vw);
}
.news-item-title {
  font-size: calc(18 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(5 / 1200 * 100vw);
}
.news-item-title::after {
  display: block;
  content: "";
  width: calc(100 / 1200 * 100vw);
  height: 1px;
  background-color: #000;
  margin-top: calc(8 / 1200 * 100vw);
  margin-bottom: calc(15 / 1200 * 100vw);
}
.news-item-text {
  font-size: calc(15 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  line-height: calc(25 / 15);
}
.news-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: calc(89 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(24 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(454 / 1200 * 100vw);
  height: calc(72 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-top: calc(40 / 375 * 100vw);
  }
  .news-title {
    text-align: center;
    font-size: calc(35 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(15 / 375 * 100vw);
  }
  .news-subtitle {
    text-align: center;
    font-size: calc(18 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(58 / 375 * 100vw);
  }
  .news-list {
    display: flex;
    flex-wrap: wrap;
    width: calc(330 / 375 * 100vw);
    margin: 0 auto;
    gap: calc(20 / 375 * 100vw);
  }
  .news-list li {
    width: calc(155 / 375 * 100vw);
  }
  .news-item {
    width: calc(155 / 375 * 100vw);
  }
  .news-item-img {
    width: calc(155 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
  .news-item-date {
    font-size: calc(12 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
  .news-item-title {
    font-size: calc(15 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
  .news-item-title::after {
    display: block;
    content: "";
    width: calc(70 / 375 * 100vw);
    height: 1px;
    background-color: #000;
    margin-top: calc(8 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }
  .news-item-text {
    font-size: calc(15 / 375 * 100vw);
    font-family: "源ノ角ゴシック JP";
    line-height: calc(25 / 15);
  }
  .news-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-top: calc(50 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
}

/* ================公式SNS・BLOG=============== */
.snsblog {
  padding-top: calc(167 / 1200 * 100vw);
  padding-bottom: calc(200 / 1200 * 100vw);
}
.sns-container {
  display: flex;
  justify-content: center;
  gap: calc(70 / 1200 * 100vw);
  position: relative;
  width: calc(950 / 1200 * 100vw);
  height: calc(589 / 1200 * 100vw);
  border: solid 1px #000;
  outline: solid 3px #000;
  outline-offset: 5px;
  margin: 0 auto;
  padding-top: calc(70 / 1200 * 100vw);
  padding-bottom: calc(68 / 1200 * 100vw);
  margin-bottom: calc(150 / 1200 * 100vw);
}
.sns-title {
  position: absolute;
  background-color: #fff;
  width: calc(233 / 1200 * 100vw);
  top: calc(-30 / 1200 * 100vw);
  text-align: center;
  font-size: calc(46 / 1200 * 100vw);
  font-weight: bold;
  left: calc(359 / 1200 * 100vw);
}
.sns-twitter {
  padding-right: calc(70 / 1200 * 100vw);
  border-right: #000 solid 1px;
}
.sns-twitter-title {
  text-align: center;
  margin-bottom: calc(25 / 1200 * 100vw);
  font-size: calc(32 / 1200 * 100vw);
  font-weight: bold;
}
.sns-twitter-title::before {
  display: inline-block;
  content: "";
  background-image: url("img/sns-twitter-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(46 / 1200 * 100vw);
  height: calc(46 / 1200 * 100vw);
  background-size: contain;
  margin-right: calc(31 / 1200 * 100vw);
}
.sns-facebook-title {
  text-align: center;
  margin-bottom: calc(25 / 1200 * 100vw);
  font-size: calc(32 / 1200 * 100vw);
  font-weight: bold;
}
.sns-facebook-title::before {
  display: inline-block;
  content: "";
  background-image: url("img/sns-facebook-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(46 / 1200 * 100vw);
  height: calc(46 / 1200 * 100vw);
  background-size: contain;
  margin-right: calc(31 / 1200 * 100vw);
}
.twitter-timeline {
  width: calc(350 / 1200 * 100vw);
  height: calc(380 / 1200 * 100vw);
  overflow-y: scroll;
}
.facebook-timeline {
  width: calc(350 / 1200 * 100vw);
  height: calc(380 / 1200 * 100vw);
  overflow-y: hidden;
}
.blog {
  width: calc(950 / 1200 * 100vw);
  height: calc(302 / 1200 * 100vw);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .snsblog {
    padding-top: calc(66 / 375 * 100vw);
    padding-bottom: calc(70 / 375 * 100vw);
  }
  .sns-container {
    display: flex;
    justify-content: center;
    gap: calc(22 / 375 * 100vw);
    position: relative;
    width: calc(333 / 375 * 100vw);
    height: calc(207 / 375 * 100vw);
    border: solid 2px #000;
    outline: solid 1px #000;
    outline-offset: 2px;
    margin: 0 auto;
    padding-top: calc(22 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
    margin-bottom: calc(65 / 375 * 100vw);
  }
  .sns-title {
    position: absolute;
    width: calc(81 / 375 * 100vw);
    top: calc(-11 / 375 * 100vw);
    left: calc(120 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
  .sns-twitter {
    padding-right: calc(22 / 375 * 100vw);
    border-right: #000 solid 1px;
  }
  .sns-twitter-title {
    margin-bottom: calc(6 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
  .sns-twitter-title::before {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-size: contain;
    margin-right: calc(7 / 375 * 100vw);
  }
  .sns-facebook-title {
    text-align: center;
    margin-bottom: calc(6 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
    font-weight: bold;
  }
  .sns-facebook-title::before {
    width: calc(16 / 375 * 100vw);
    height: calc(16 / 375 * 100vw);
    background-size: contain;
    margin-right: calc(15 / 375 * 100vw);
  }
  .sns-img {
    width: calc(122 / 375 * 100vw);
  }
  .twitter-timeline {
    width: calc(122 / 375 * 100vw);
    height: calc(133 / 375 * 100vw);
    overflow-y: scroll;
  }
  .facebook-timeline {
    width: calc(122 / 375 * 100vw);
    height: calc(133 / 375 * 100vw);
    overflow-y: scroll;
  }
  .blog {
    width: calc(334 / 375 * 100vw);
    height: calc(168 / 375 * 100vw);
    margin: 0 auto;
  }
  .blog a img {
    content: url("img/blogimage_sp.png");
  }
}

/* ================フッター=============== */
.footer {
  background-color: #0b1644;
  color: #fff;
}
.footer-container {
  padding-top: calc(50 / 1200 * 100vw);
  padding-bottom: calc(50 / 1200 * 100vw);
  padding-left: calc(70 / 1200 * 100vw);
  padding-right: calc(70 / 1200 * 100vw);
}
.footer-snsicon {
  display: flex;
  justify-content: center;
  gap: calc(54 / 1200 * 100vw);
}
.footer-snsicon img {
  width: calc(50 / 1200 * 100vw);
}
.footer-info {
  display: flex;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: calc(106 / 1200 * 100vw);
}
.footer-menu-list {
  font-size: calc(17 / 1200 * 100vw);
  line-height: 3;
}
.footer-menu-list li a {
  text-decoration: none;
}
.footer-company img {
  display: block;
  width: calc(263 / 1200 * 100vw);
  margin-bottom: calc(17 / 1200 * 100vw);
}
.footer-company p {
  font-size: calc(16 / 1200 * 100vw);
  font-weight: bold;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .footer-container {
    padding-top: calc(50 / 375 * 100vw);
    padding-bottom: calc(30 / 375 * 100vw);
    padding-right: 0;
    padding-left: 0;
  }
  .footer-snsicon {
    gap: calc(45 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
  .footer-snsicon img {
    width: calc(42 / 375 * 100vw);
  }
  .footer-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .footer-menu {
    display: flex;
    gap: calc(0 / 375 * 100vw);
  }
  .footer-menu-list {
    width: 50%;
    font-size: calc(17 / 375 * 100vw);
    text-align: center;
    line-height: 3;
    margin-bottom: calc(50 / 375 * 100vw);
    border-top: #fff solid 1px;
  }
  .footer-menu-list:first-child li {
    border-right: #fff solid 1px;
    border-bottom: #fff solid 1px;
  }
  .footer-menu-list:last-child li {
    border-bottom: #fff solid 1px;
  }
  .footer-menu-list li a {
    text-decoration: none;
  }
  .footer-company img {
    display: block;
    width: calc(263 / 375 * 100vw);
    margin: 0 auto;
    margin-bottom: calc(17 / 375 * 100vw);
  }
  .footer-company p {
    padding-left: calc(50 / 375 * 100vw);
    font-size: calc(11 / 375 * 100vw);
    line-height: 2;
  }
}

/* ================お問い合わせ=============== */
.contact {
  background-color: #6e6e6e;
  color: #fff;
  text-align: center;
  padding-top: calc(90 / 1200 * 100vw);
  padding-bottom: calc(100 / 1200 * 100vw);
}
.contact-title {
  font-size: calc(40 / 1200 * 100vw);
  margin-bottom: calc(18 / 1200 * 100vw);
}
.contact-subtitle {
  font-size: calc(20 / 1200 * 100vw);
  margin-bottom: calc(27 / 1200 * 100vw);
}
.contact-text {
  font-size: calc(17 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  font-weight: bold;
  line-height: calc(40 / 17);
}
.contact-action {
  display: flex;
  justify-content: center;
  gap: calc(47 / 1200 * 100vw);
  margin-top: calc(42 / 1200 * 100vw);
}
.contact-action a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: calc(15 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(24 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(330 / 1200 * 100vw);
  height: calc(70 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
}
@media screen and (max-width: 767px) {
  .contact {
    background-color: #6e6e6e;
    color: #fff;
    text-align: center;
    padding-top: calc(40 / 375 * 100vw);
    padding-bottom: calc(50 / 375 * 100vw);
  }
  .contact-title {
    font-size: calc(35 / 375 * 100vw);
    margin-bottom: calc(18 / 375 * 100vw);
  }
  .contact-subtitle {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(27 / 375 * 100vw);
  }
  .contact-text {
    font-size: calc(13 / 375 * 100vw);
    line-height: calc(40 / 17);
  }
  .contact-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: calc(25 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
  .contact-action a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: calc(15 / 375 * 100vw);
    background-color: #fff;
    font-size: calc(18 / 375 * 100vw);
    width: calc(320 / 375 * 100vw);
    height: calc(63 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    margin: 0 auto;
  }
}

/* ================固定ページ（共通）=============== */
.main {
  padding-top: calc(0 / 1200 * 100vw);
  padding-bottom: calc(0 / 1200 * 100vw);
}
.page-container {
  padding-top: calc(114 / 1200 * 100vw);
  padding-bottom: calc(87 / 1200 * 100vw);
}
.page-title {
  text-align: center;
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  color: #0b1644;
  margin-bottom: calc(10 / 1200 * 100vw);
}
.page-subtitle {
  text-align: center;
  font-size: calc(18 / 1200 * 100vw);
  font-weight: bold;
  color: #0b1644;
}
.page-main {
  padding-top: calc(70 / 1200 * 100vw);
  padding-left: calc(138 / 1200 * 100vw);
  padding-right: calc(138 / 1200 * 100vw);
}
@media screen and (max-width: 767px) {
  .main {
    padding-top: calc(50 / 375 * 100vw);
    padding-bottom: calc(80 / 375 * 100vw);
  }
  .page-container {
    padding-top: calc(0 / 375 * 100vw);
    padding-bottom: calc(20 / 375 * 100vw);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .page-title {
    font-size: calc(35 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
  .page-subtitle {
    font-size: calc(18 / 375 * 100vw);
  }
  .page-main {
    padding: 0 calc(10 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}

/* ================固定ページ（新着情報）=============== */
.news-header {
  background-color: #0b1644;
  color: #fff;
  text-align: center;
  margin-top: calc(80 / 1200 * 100vw);
  padding-top: calc(30 / 1200 * 100vw);
  padding-bottom: calc(30 / 1200 * 100vw);
  margin-bottom: calc(74 / 1200 * 100vw);
}
.news-header-title {
  font-size: calc(40 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(8 / 1200 * 100vw);
}
.news-header-subtitle {
  font-size: calc(20 / 1200 * 100vw);
  font-weight: bold;
  margin-bottom: calc(8 / 1200 * 100vw);
}
.news-pagenation {
  margin: calc(84 / 1200 * 100vw) auto 0 auto;
  width: calc(275 / 1200 * 100vw);
  height: calc(39 / 1200 * 100vw);
  background-image: url("img/news-pagenation.png");
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .news-header {
    margin-top: calc(50 / 375 * 100vw);
    padding-top: calc(20 / 375 * 100vw);
    padding-bottom: calc(27 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
  .news-header-title {
    font-size: calc(35 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(0 / 375 * 100vw);
  }
  .news-header-subtitle {
    font-size: calc(18 / 375 * 100vw);
    font-weight: bold;
    margin-bottom: calc(0 / 375 * 100vw);
  }
  .news-pagenation {
    margin: calc(60 / 375 * 100vw) auto 0 auto;
    width: calc(275 / 375 * 100vw);
    height: calc(39 / 375 * 100vw);
  }
}
/* ================投稿ページ=============== */
.post-container {
  padding-top: calc(104 / 1200 * 100vw);
  padding-left: calc(115 / 1200 * 100vw);
  padding-right: calc(115 / 1200 * 100vw);
  padding-bottom: calc(93 / 1200 * 100vw);
}
.post-main{
  line-height: calc(40 / 18);
  font-size: calc(18 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
}
.post-title {
  font-size: calc(35 / 1200 * 100vw);
  margin-bottom: calc(27 / 1200 * 100vw);
}
.post-date {
  font-size: calc(20 / 1200 * 100vw);
  margin-bottom: calc(56 / 1200 * 100vw);
}
@media screen and (max-width: 767px) {
  .post-container {
    padding-top: calc(0 / 375 * 100vw);
    padding-left: calc(11 / 375 * 100vw);
    padding-right: calc(11 / 375 * 100vw);
    padding-bottom: calc(69 / 375 * 100vw);
  }
  .post-main{
    line-height: calc(28 / 15);
    font-size: calc(15 / 375 * 100vw);
    font-family: "源ノ角ゴシック JP";
  }
  .post-title {
    font-size: calc(23 / 375 * 100vw);
    margin-bottom: calc(3 / 375 * 100vw);
  }
  .post-date {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(56 / 375 * 100vw);
  }
}

/* ================お問い合わせフォーム=============== */
.contact-attention {
  text-align: center;
}
.contact-attention::before {
  display: inline;
  content: "*";
  vertical-align: text-top;
  color: #f00;
}
.contact-form-label {
  margin-top: calc(10 / 1200 * 100vw);
  font-size: calc(18 / 1200 * 100vw);
  line-height: 20px;
}
.contact-form-text {
  line-height: 2;
  padding: 0 calc(10 / 1200 * 100vw);
  margin: calc(20 / 1200 * 100vw) auto calc(20 / 1200 * 100vw) auto;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  transition: all 0.5s;
}
.contact-form-textarea {
  padding: calc(10 / 1200 * 100vw);
  margin: calc(20 / 1200 * 100vw) auto calc(20 / 1200 * 100vw) auto;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  transition: all 0.5s;
  height: calc(200 / 1200 * 100vw);
}
.contact-form-select {
  line-height: 2;
  padding: 0 calc(10 / 1200 * 100vw);
  margin: calc(20 / 1200 * 100vw) auto calc(20 / 1200 * 100vw) auto;
  width: 100%;
  background: #f7f7f7;
  border: 1px solid #c4c4c4;
  border-radius: 0;
  box-shadow: none;
  color: #000;
  transition: all 0.5s;
}
.contact-form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: calc(89 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(24 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(454 / 1200 * 100vw);
  height: calc(72 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}
.required::after {
  display: inline;
  content: "*";
  vertical-align: text-top;
  color: #f00;
  margin-left: calc(10 / 1200 * 100vw);
}
.error-message{
  color: #f00;
  margin-bottom: calc(20 / 1200 * 100vw);
}

@media screen and (max-width: 767px) {
  .contact-form-label {
    margin-top: calc(10 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    line-height: 20px;
  }
  .contact-form-button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-top: calc(60 / 375 * 100vw);
    background-color: #fff;
    font-size: calc(18 / 375 * 100vw);
    font-family: "Zen Kaku Gothic Antique";
    font-weight: bold;
    color: #0b1644;
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    border: #0b1644 solid 2px;
  }
}

/* ================ページネーション=============== */
/* センター寄せ */
.text-center{
  text-align: center;
}
/* ページネーション全体のスタイル */
.pagination {
  text-align: center;
  margin: 2em auto;
}
/* 各ページ番号のスタイル */
.page-numbers {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0 0.2em;
  border: 1px solid #0B1644;
  color: #0B1644;
  text-decoration: none;
  font-size: 14px;
}
/* 現在のページ番号のスタイル */
.page-numbers.current {
  background-color: #0B1644;
  color: #fff;
  border: 1px solid #0B1644;
  font-weight: bold;
}
/* 「前へ」リンクのスタイル */
.page-numbers.prev {
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: #f5f5f5;
  color: #0B1644;
  font-weight: bold;
}
/* 「次へ」リンクのスタイル */
.page-numbers.next {
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: #f5f5f5;
  color: #0B1644;
  font-weight: bold;
}
/* 非表示または無効なページ番号のスタイル */
.page-numbers.inactive {
  color: #999;
  border: 1px solid #ddd;
  cursor: not-allowed;
}


/* 各ページ番号のスタイル */
.post-page-numbers {
  display: inline-block;
  padding: 0.5em 1em;
  margin: 0 0.2em;
  border: 1px solid #0B1644;
  color: #0B1644;
  text-decoration: none;
  font-size: 14px;
}
/* 現在のページ番号のスタイル */
.post-page-numbers.current {
  background-color: #0B1644;
  color: #fff;
  border: 1px solid #0B1644;
  font-weight: bold;
}
/* 「前へ」リンクのスタイル */
.post-page-numbers.prev {
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: #f5f5f5;
  color: #0B1644;
  font-weight: bold;
}
/* 「次へ」リンクのスタイル */
.post-page-numbers.next {
  padding: 0.5em 1em;
  border-radius: 3px;
  background-color: #f5f5f5;
  color: #0B1644;
  font-weight: bold;
}
/* 非表示または無効なページ番号のスタイル */
.post-page-numbers.inactive {
  color: #999;
  border: 1px solid #ddd;
  cursor: not-allowed;
}

/* ================書籍紹介=============== */
.books-intro-list{
  width: calc(773 / 1200 * 100vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: calc(100 / 1200 * 100vw);
}
.books-intro-item{
  display: flex;
  gap: calc(60 / 1200 * 100vw);
}
.books-intro-img{
  width: calc(278 / 1200 * 100vw);
}
.books-intro-discription{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.books-intro-title{
  font-size: calc(25 / 1200 * 100vw);
  line-height: calc(35 / 25);
  font-weight: bold;
  margin-bottom: calc(10 / 1200 * 100vw);
}
.books-intro-text{
  font-size: calc(13 / 1200 * 100vw);
  font-weight: normal;
  font-family: "源ノ角ゴシック JP";
  line-height: calc(22 / 13);
}
.books-intro-button{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: calc(40 / 1200 * 100vw);
  background-color: #fff;
  font-size: calc(24 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(303 / 1200 * 100vw);
  height: calc(60 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}

@media screen and (max-width: 767px) {
  .books-intro-list{
    width: calc(331 / 375 * 100vw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(60 / 375 * 100vw);
  }
  .books-intro-item{
    display: flex;
    flex-direction: column;
    gap: calc(30 / 375 * 100vw);
  }
  .books-intro-img{
    width: calc(278 / 375 * 100vw);
    margin: 0 auto;
  }
  .books-intro-discription{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .books-intro-title{
    font-size: calc(19 / 375 * 100vw);
    line-height: calc(28 / 19);
    font-weight: bold;
    margin-bottom: calc(10 / 375 * 100vw);
  }
  .books-intro-text{
    font-size: calc(11 / 375 * 100vw);
    font-weight: normal;
    font-family: "源ノ角ゴシック JP";
    line-height: calc(22 / 11);
    letter-spacing: -1px;
  }
  .books-intro-button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-top: calc(27 / 375 * 100vw);
    background-color: #fff;
    font-size: calc(24 / 375 * 100vw);
    font-family: "Zen Kaku Gothic Antique";
    font-weight: bold;
    color: #0b1644;
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    border: #0b1644 solid 2px;
  }
}

/* ================セミナー情報=============== */
.seminar-list{
  width: calc(924 / 1200 * 100vw);
  display: flex; 
  flex-direction: column;
  gap: calc(50 / 1200 * 100vw);
  margin: 0 auto;
}
.seminar-item{
  width: calc(924 / 1200 * 100vw);
  display: flex;
  gap:calc(35 / 1200 * 100vw);
  border-bottom: 2px dashed #000;
  padding-bottom: calc(50 / 1200* 100vw);
  margin-bottom: calc(50 / 1200* 100vw);
}
.seminar-item-img{
  width: calc(404 / 1200 * 100vw);
}
.seminar-item-img img{
  width: 100%;
  height: auto;
  object-fit: cover;  
}
.seminar-item-discription{
  display: flex;
  flex-direction: column;
  width: calc(485 / 1200 * 100vw);
}
.seminar-item-title {
  font-size: calc(27 / 1200 * 100vw);
  font-weight: bold;
  text-align: right;
  margin-bottom: calc(2 / 1200 * 100vw);
  direction: rtl;
}
.seminar-item-title::after {
  content: "";
  display: block;
  width: calc(150 / 1200 * 100vw);
  height: 1px;
  margin-right: 0;
  background-color: #000;
  margin-top: calc(10 / 1200 * 100vw);
  margin-bottom: calc(20 / 1200 * 100vw);
}
.seminar-item-text{
  font-family: "源ノ角ゴシック JP";
  font-size: calc(13 / 1200 * 100vw);
  line-height: calc(26 / 13);
  margin-bottom: calc(34.5 / 1200 * 100vw);
}
.seminar-button{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  font-size: calc(18 / 1200 * 100vw);
  font-family: "Zen Kaku Gothic Antique";
  font-weight: bold;
  color: #0b1644;
  width: calc(343 / 1200 * 100vw);
  height: calc(58 / 1200 * 100vw);
  border-radius: calc(10 / 1200 * 100vw);
  border: #0b1644 solid 2px;
}

@media screen and (max-width: 767px) {
  .seminar-list{
    width: calc(320 / 375 * 100vw);
    display: flex; 
    flex-direction: column;
    gap: calc(50 / 375 * 100vw);
    margin: 0 auto;
  }
  .seminar-item{
    width: calc(320 / 375 * 100vw);
    display: flex;
    flex-direction: column;
    gap:calc(35 / 375 * 100vw);
    border-bottom: #000 dashed 2px;
    padding-bottom: calc(50 / 375 * 100vw);
  }
  .seminar-item-img{
    width: calc(320 / 375 * 100vw);
  }
  .seminar-item-img img{
    width: 100%;
    height: auto;
    object-fit: cover;  
  }
  .seminar-item-discription{
    display: flex;
    flex-direction: column;
    width: calc(320 / 375 * 100vw);
  }
  .seminar-item-title {
    font-size: calc(21 / 375 * 100vw);
    font-weight: bold;
    text-align: right;
    margin-bottom: calc(2 / 375 * 100vw);
    direction: rtl;
  }
  .seminar-item-title::after {
    content: "";
    display: block;
    width: calc(150 / 375 * 100vw);
    height: 1px;
    margin-right: 0;
    background-color: #000;
    margin-top: calc(10 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .seminar-item-text{
    font-family: "源ノ角ゴシック JP";
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(24 / 13);
    margin-bottom: calc(26 / 375 * 100vw);
  }
  .seminar-button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    background-color: #fff;
    font-size: calc(18 / 375 * 100vw);
    font-family: "Zen Kaku Gothic Antique";
    font-weight: bold;
    color: #0b1644;
    width: calc(320 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    border: #0b1644 solid 2px;
    margin-bottom: calc(50 / 375 * 100vw);
  }  
}

/* ================会社概要=============== */
.company-container{
  display: flex;
  flex-direction: column;
  gap: calc(150 / 1200 * 100vw);
  padding: 0 calc(10 / 1200 * 100vw);
}
.company-header-container{
  display: flex;
  gap: calc(20 / 1200 * 100vw);
  margin-bottom: calc(30 / 1200 * 100vw);
}
.company-header-container h2{
  font-size: calc(30 / 1200 * 100vw);
  font-weight: bold;
  line-height: calc(45 / 30);
  padding-right: calc(20 / 1200 * 100vw);
  border-right: #000 solid 1px;
}
.company-header-container p{
  font-size: calc(17 / 1200 * 100vw);
  font-weight: bold;
  line-height: calc(45 / 17);
}
.company-president-message{
  display: flex;
  gap:calc(30 / 1200 * 100vw);
}
.company-president-text {
  font-family: "源ノ角ゴシック JP";
  width: calc(600 / 1200 * 100vw);
  font-size: calc(13 / 1200 * 100vw);
  line-height: calc(21 / 13);
}
.company-president-img {
  width: calc(270 / 1200 * 100vw);
}
.company-info{
  width: calc(900 / 1200 * 100vw);
}
.company-info-row{
  padding: calc(20 / 1200 * 100vw) 0;
  display: flex;
  justify-content: start;
  border-bottom: #000 solid 1px;
  font-size: calc(17 / 1200 * 100vw);
}
.company-info-title{
  width: calc(180 / 1200 * 100vw);
}
.company-map{
  display: block;
  width: calc(900 / 1200 * 100vw);
  height: calc(362 / 1200 * 100vw);
  margin-bottom: calc(20 / 1200 * 100vw);
}
.company-address{
  display: flex;
  margin-bottom: calc(20 / 1200 * 100vw);
  gap: calc(20 / 1200 * 100vw);
}
.company-address-title{
  background-color: #0B1644;
  text-align: center;
  width: calc(81 / 1200 * 100vw);
  line-height: 24px;
  color: #fff;
  font-size: calc(18 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  line-height: calc(35 / 18);
}
.company-address-text{
  font-size: calc(16 / 1200 * 100vw);
  font-family: "源ノ角ゴシック JP";
  line-height: calc(35 / 16);
}
@media screen and (max-width: 767px) {
  .company-container{
    display: flex;
    flex-direction: column;
    gap: calc(50 / 375 * 100vw);
    padding: 0 calc(10 / 375 * 100vw);
  }
  .company-header-container{
    display: flex;
    gap: calc(10 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
  .company-header-container h2{
    font-size: calc(25 / 375 * 100vw);
    font-weight: bold;
    line-height: calc(30 / 25);
    padding-right: calc(10 / 375 * 100vw);
    border-right: #000 solid 1px;
  }
  .company-header-container p{
    font-size: calc(14 / 375 * 100vw);
    font-weight: bold;
    line-height: calc(45 / 14);
  }
  .company-president-message{
    display: flex;
    flex-direction: column-reverse;
    gap: calc(35 / 375 * 100vw);
  }
  .company-president-text {
    width: calc(328 / 375 * 100vw);
    font-size: calc(11 / 375 * 100vw);
    line-height: calc(21 / 11);
  }
  .company-president-img {
    width: calc(328 / 375 * 100vw);
  }
  .company-info{
    width: calc(320 / 375 * 100vw);
  }
  .company-info-row{
    padding: calc(18 / 375 * 100vw) 0;
    display: flex;
    justify-content: start;
    border-bottom: #000 solid 1px;
    font-size: calc(14 / 375 * 100vw);
  }
  .company-info-title{
    width: calc(85 / 375 * 100vw);
  }
  .company-map{
    display: block;
    width: calc(321 / 375 * 100vw);
    height: calc(150 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
  .company-address{
    display: flex;
    flex-direction: column;
    gap: calc(2 / 1200 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
  .company-address-title{
    background-color: #0B1644;
    text-align: center;
    width: calc(65 / 375 * 100vw);
    line-height: 21px;
    color: #fff;
    font-size: calc(15 / 375 * 100vw);
    font-family: "源ノ角ゴシック JP";
    line-height: calc(35 / 13);
  }
  .company-address-text{
    font-size: calc(13 / 375 * 100vw);
    font-family: "源ノ角ゴシック JP";
    line-height: calc(35 / 13);
  }
}

.slick-slide {
  outline: none; /* スライドのアウトラインを削除 */
}