@charset "UTF-8";
:root {
  --mainC_1: #2e3192;
  --mainC_2: #109afe;
  --accentC: #fcee21;
  --fontC: #4d4d4d;
  --bgC_1: #f7f9f9;
  --bgC_2: #ffffff;
  --hdrH: 99px;
  --rp256: 256px;
  --rp128: 128px;
  --rp64: 64px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}
html {
  scroll-padding-top: calc(var(--hdrH) + var(--rp64));
  scroll-behavior: smooth;
}
body {
  background-color: var(--bgC_1);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}
img,
video,
iframe {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}
a:hover,
button:hover {
  transition: 0.4s ease-in-out all;
  opacity: 0.7;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
}
a,
button {
  color: var(--mainC_2);
  cursor: pointer;
  transition: 0.4s ease-in-out all;
}
a:hover,
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 450px) {
  :root {
    --hdrH: 76px;
    --rp256: 128px;
    --rp128: 80px;
    --rp64: 48px;
  }
  body {
    font-size: 16px;
  }
}

/* ****************************** */
/* 汎用
****************************** */
.common_1300 {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
}
.common_1000 {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.sp_br {
  display: inline-block;
}
.marker {
  position: relative;
}
.marker::before {
  position: absolute;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0.7em;
  background-color: var(--accentC);
  mix-blend-mode: multiply;
}
.acc_container {
  border-bottom: 1px solid var(--mainC_2);
}
.acc_head {
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: var(--rp64);
  color: var(--mainC_2);
  border-top: 1px solid var(--mainC_2);
  cursor: pointer;
}
.acc_body {
  padding: 0.5em 0 1.5em 0;
  display: none;
  animation: acc_on 0.2s ease-in-out;
}
.acc_on .acc_body {
  display: block;
}
.acc_body ol,
.acc_body ul {
  padding-left: 40px;
}
.acc_btn {
  transition: 0.2s ease-in-out all;
}
.acc_on .acc_btn {
  transform: rotate(45deg);
}
.atmark::after {
  content: "@";
}
.btn_1 {
  display: inline-block;
  padding: 0.5em 1em;
  border: none;
  border-radius: 2em;
  background-color: var(--mainC_2);
  font-size: 1em;
  color: var(--bgC_2);
}
@media screen and (max-width: 1428px) {
  .common_1300_inr {
    padding: 0 64px;
  }
}
@media screen and (max-width: 1128px) {
  .common_1000_inr {
    padding: 0 64px;
  }
}
@media screen and (max-width: 450px) {
  .common_1300_inr,
  .common_1000_inr {
    padding: 0 24px;
  }
}
@keyframes acc_on {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ****************************** */
/* header
****************************** */
#hdr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: 0.4s ease-in-out all;
}
#hdr.hdr_change {
  background-color: var(--bgC_1);
}
.hdr_line {
  width: 100%;
  height: 12px;
  background: url(./img/line.png) left top repeat-x;
  background-size: contain;
}
.hdr_inr {
  padding: 1em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hdr_logo {
  display: block;
  width: 200px;
}
.hdr_menu_list {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  list-style: none;
}
.hdr_menu_list li::after {
  padding-left: 0.5em;
  content: "/";
  color: var(--mainC_2);
}
.hdr_menu_list li:nth-last-child(3) {
  margin-left: 0.5em;
}
.hdr_menu_list li:nth-last-child(2)::after,
.hdr_menu_list li:nth-last-child(3)::after,
.hdr_menu_list li:nth-last-child(4)::after {
  padding-left: 0;
  content: "";
}
.hdr_menu_list a {
  color: var(--mainC_2);
  text-decoration: none;
}
.hdr_sns {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}
#hdr_menu_btn {
  display: none;
}
.hdr_link_sp {
  display: none;
}
@media screen and (max-width: 1300px) {
  .hdr_inr {
    padding: 1em;
  }
  #hdr_menu_btn {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    z-index: 999;
  }
  #hdr_menu_btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: var(--mainC_1);
    transition: 0.2s ease-in-out all;
  }
  #hdr_menu_btn span:nth-of-type(1) {
    top: 30%;
    background-color: var(--mainC_2);
  }
  #hdr_menu_btn span:nth-of-type(3) {
    top: 70%;
    background-color: var(--mainC_2);
  }
  .menu_on #hdr_menu_btn span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
  .menu_on #hdr_menu_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_on #hdr_menu_btn span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }
  #hdr_menu {
    display: none;
  }
  .menu_on #hdr_menu {
    padding: var(--hdrH);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: var(--bgC_1);
    animation: menu_on 0.2s ease-in-out;
  }
  .hdr_menu_list {
    flex-direction: column;
    row-gap: 2em;
  }
  .hdr_menu_list li::after {
    display: none;
  }
  .hdr_menu_list li:nth-last-child(2) {
    margin-left: 0;
  }
  .hdr_link_pc {
    display: none;
  }
  .hdr_link_sp {
    display: flex;
    align-items: center;
    column-gap: 2em;
  }
}
@media screen and (max-width: 450px) {
  .hdr_line {
    background: url(./img/line.png) left top no-repeat;
    background-size: cover;
    height: 4px;
  }
  .hdr_logo {
    width: 160px;
  }
}
@keyframes menu_on {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

/* ****************************** */
/* #mv
****************************** */
#tp_mv {
  position: relative;
}
#tp_mv::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--bgC_1);
}
.mv_sp {
  display: none;
}
.swiper {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 450px) {
  .mv_pc {
    display: none;
  }
  .mv_sp {
    display: block;
  }
}

/* ****************************** */
/* #tp_bunner
****************************** */
#tp_bunner {
  margin-top: 64px;
}

/* ****************************** */
/* #tp_at
****************************** */
#tp_at {
  margin-top: var(--rp128);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--rp128);
}
.st_strong {
  font-size: 64px;
  text-align: center;
  font-weight: bold;
  color: var(--mainC_1);
}
.at_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 64px;
  list-style: none;
}
@media screen and (max-width: 1300px) {
  .st_strong {
    font-size: calc(87vw / 16);
  }
}
@media screen and (max-width: 768px) {
  .at_list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 80px;
  }
}

/* ****************************** */
/* #tp_about
****************************** */
#tp_about {
  margin-top: var(--rp128);
  color: var(--mainC_1);
}
.about_head {
  text-align: center;
}
.about_head h2 {
  margin-bottom: 0.5em;
  font-size: 48px;
}
.about_image_list {
  margin: var(--rp64) auto 0 auto;
  width: 650px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  column-gap: 32px;
}
.about_top_msg {
  margin-top: var(--rp64);
}
.about_keyword {
  margin-top: var(--rp64);
  padding: 64px 32px 32px 48px;
  position: relative;
  background-color: var(--bgC_2);
  color: var(--fontC);
  border-radius: 24px;
}
.about_keyword::before {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: calc(100% - 64px);
  height: 96px;
  background: url(./img/tp_about_img_4.png) center top no-repeat;
  background-size: contain;
  z-index: 0;
}
.about_keyword ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  list-style: none;
  z-index: 9;
}
.about_business_list {
  margin-top: var(--rp64);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 64px;
  color: var(--bgC_2);
  list-style: none;
}
.business_container {
  background: linear-gradient(
    to right,
    var(--mainC_2) 0%,
    var(--mainC_2) 50%,
    var(--bgC_1) 50%,
    var(--bgC_1) 100%
  );
  background-color: var(--mainC_2);
}
.business_body {
  /* more_info追加時 
  padding: 64px 256px 192px 0;
  */
  padding: 64px 256px 64px 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  background-color: var(--mainC_2);
}
.business_body.pre {
  /* ★コンテンツ制作事業のみ */
  padding: 64px 256px 192px 0;
}
.business_body::before {
  position: absolute;
  top: 1px;
  right: -1px;
  content: "";
  width: 128px;
  height: 100%;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-color: var(--bgC_1);
}
.business_body p {
  line-height: 1.8;
}
.business_body h3 {
  font-size: 48px;
}
.business_link {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.business_link img {
  width: 200px;
}
.business_link a {
  width: 100%;
  border-bottom: 4px solid var(--bgC_1);
  color: var(--bgC_1);
  font-weight: bold;
  text-decoration: none;
}
.business_image_sp {
  display: none;
}
.about_office {
  margin-top: var(--rp256);
  padding-bottom: 64px;
  position: relative;
}
.about_office::before,
.about_office::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: calc(100% - 64px);
  height: 300px;
}
.about_office::before {
  background: url(./img/tp_about_oo_title.png) center center no-repeat;
  background-size: contain;
  z-index: 9;
}
.about_office::after {
  background: url(./img/tp_about_oo_title_bg.png) center center no-repeat;
  background-size: contain;
  mix-blend-mode: multiply;
  z-index: 4;
}
@media screen and (max-width: 1300px) {
  .business_body {
    /* more_info追加時
    padding: 64px 256px 192px 64px; 
    */
    padding: 64px 256px 64px 64px;
  }
  .business_body.pre {
    /* ★コンテンツ制作事業のみ */
    padding: 64px 256px 192px 64px;
  }
}
@media screen and (max-width: 768px) {
  .about_head h2 {
    font-size: calc(87vw / 14);
  }
  .about_supp {
    font-size: calc(87vw / 25);
  }
  .about_image_list {
    width: 100%;
    column-gap: 1em;
  }
  .about_business_list {
    row-gap: 0;
  }
  .business_body {
    /* more_info追加時 
    padding: 40px 64px 192px 64px;
    */
    padding: 40px 64px 88px 64px;
  }
  .business_body.pre {
    /* ★コンテンツ制作事業のみ */
    padding: 40px 64px 192px 64px;
  }
  .business_body::before {
    display: none;
  }
  .business_image_sp {
    margin: 0 auto;
    display: block;
    max-width: 300px;
  }
  .business_image_pc {
    display: none;
  }
  .business_link {
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .about_keyword {
    padding: 64px 24px 32px 24px;
  }
  .about_keyword::before {
    width: calc(100% - 24px);
    height: 48px;
  }
  .business_body {
    /* more_info追加時
    padding: 40px 24px 96px 24px; 
    */
    padding: 40px 24px 40px 24px;
    row-gap: 20px;
  }
  .business_body.pre {
    /* ★コンテンツ制作事業のみ */
    padding: 40px 24px 96px 24px;
  }
  .business_body h3 {
    font-size: 20px;
  }
  .business_link {
    bottom: 40px;
  }
  .business_image_sp {
    max-width: 200px;
  }
  .about_office::before,
  .about_office::after {
    height: 160px;
  }
}

/* ****************************** */
/* #tp_ex
****************************** */
#tp_ex {
  margin-top: var(--rp256);
  padding-bottom: var(--rp128);
  color: var(--mainC_2);
  display: flex;
  flex-direction: column;
  row-gap: var(--rp64);
  text-align: center;
}
.ex_title {
  margin: 0 auto;
  width: calc(100% - 64px);
  max-width: 800px;
  object-fit: contain;
}
.ex_msg {
  font-size: 32px;
}
.ex_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  column-gap: 64px;
  row-gap: 64px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .ex_list {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .ex_list li img {
    max-width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .ex_title {
    width: calc(100% - 48px);
  }
  .ex_msg {
    font-size: 1em;
  }
}

/* ****************************** */
/* #tp_msg
****************************** */
.bg_w_container {
  padding: var(--rp128) 0 var(--rp128) 0;
  background-color: var(--bgC_2);
}
#tp_msg {
  color: var(--mainC_2);
}
.msg_inr {
  display: grid;
  grid-template-columns: 23% auto;
  column-gap: 64px;
}
.msg_body {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
}
.msg_body h2 {
  font-size: 64px;
}
.msg_body p {
  line-height: 1.8;
}
.msg_name {
  font-size: 48px;
}
.msg_position {
  font-weight: 400;
}
.msg_text {
  color: var(--fontC);
}
.ex_link {
  margin: var(--rp128) auto 0 auto;
  width: calc(100% - 128px);
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .msg_inr {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .msg_face {
    margin: 0 auto;
    max-width: 300px;
  }
}
@media screen and (max-width: 450px) {
  .msg_face {
    max-width: 200px;
  }
  .msg_body {
    row-gap: 20px;
  }
  .msg_body h2 {
    font-size: 32px;
  }
  .msg_name {
    font-size: 24px;
  }
  .ex_link {
    width: 100%;
  }
}

/* ****************************** */
/* #tp_info
****************************** */
#tp_info {
  margin-top: var(--rp128);
  background-color: var(--bgC_2);
}
.info_inr {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--rp64);
}
.info_inr h2 {
  position: relative;
  width: 100%;
  width: 100%;
  height: 48px;
  background: url(./img/line.png) center center no-repeat;
  background-size: contain;
  line-height: 1;
}
.info_inr h2 span {
  padding: 0 1em 0 0;
  position: relative;
  display: inline-block;
  background-color: var(--bgC_2);
  font-size: 48px;
  color: var(--mainC_2);
}
.info_list {
  display: grid;
  grid-template-columns: 4em auto;
  column-gap: 64px;
  color: var(--fontC);
  line-height: 1.8;
}
.info_list dt {
  color: var(--mainC_2);
}
@media screen and (max-width: 450px) {
  .info_inr h2 span {
    font-size: 32px;
  }
  .info_inr h2 {
    height: 32px;
  }
  .info_list {
    grid-template-columns: 1fr;
  }
  .info_inr iframe {
    height: 300px;
  }
}

/* ****************************** */
/* footer
****************************** */
#ftr {
  padding: var(--rp128) 0 32px 0;
  background-color: var(--mainC_2);
  color: var(--bgC_2);
}
.ftr_inr {
  display: grid;
  grid-template-columns: 12% auto;
  justify-content: center;
  column-gap: var(--rp64);
}
.ftr_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--rp64);
}
.ftr_body_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
}
.ftr_body_1 img {
  max-width: 300px;
}
.ftr_sns_list {
  display: grid;
  grid-template-columns: repeat(2, 32px);
  justify-content: center;
  column-gap: 16px;
  list-style: none;
}
.ftr_body_2 {
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 64px;
}
.ftr_link_title {
  padding: 0 0.5em;
  margin-bottom: 0.5em;
  display: inline-block;
  color: var(--mainC_2);
  background-color: var(--bgC_2);
}
.ftr_link ul {
  line-height: 1.8;
  list-style: none;
}
.ftr_link a {
  color: var(--bgC_2);
  text-decoration: none;
}
.ftr_copylight {
  margin-top: var(--rp64);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ftr_inr {
    grid-template-columns: 1fr;
  }
  .ftr_body_2 {
    grid-template-columns: 1fr;
  }
  .ftr_link_title {
    margin-top: 32px;
  }
  .ftr_link ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5em;
  }
  .ftr_link ul li::after {
    padding-left: 0.5em;
    content: "/";
  }
  .ftr_link ul li:nth-last-of-type(1)::after {
    padding-left: 0;
    content: "";
  }
}
@media screen and (max-width: 450px) {
  .ftr_body_1 img {
    max-width: 200px;
  }
}

/* ****************************** */
/* #ex_dtl
****************************** */
#ex_dtl {
  background: url(./img/ex_bg_1.png) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.ex_dtl_msg {
  padding: 320px 0 var(--rp128) 0;
}
.ex_dtl_msg_inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: var(--rp64);
  color: var(--mainC_2);
  text-align: center;
}
.ex_dtl_list {
  padding-bottom: var(--rp128);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--rp64);
  list-style: none;
  z-index: 9;
}
.ex_dtl_list li {
  margin-right: 16px;
  padding: 64px;
  position: relative;
  width: calc(100% - 16px);
  border: 2px solid var(--mainC_2);
  background-color: var(--bgC_2);
}
.ex_dtl_list li::after {
  display: inline-block;
  position: absolute;
  bottom: -16px;
  right: -16px;
  content: "";
  width: 100%;
  height: 100%;
  background: url(./img/ex_dtl_bg.png) center top repeat-y;
  z-index: -1;
}
.ex_dtl_head {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  border-bottom: 1px solid var(--mainC_2);
  font-weight: bold;
  color: var(--mainC_2);
}
.ex_dtl_head h3 {
  display: grid;
  grid-template-columns: 80px auto;
  align-items: center;
  column-gap: 1em;
  font-size: 32px;
  font-weight: 300;
  color: var(--mainC_2);
}
.ex_dtl_body {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  list-style: none;
}
.ex_dtl_body_item {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: flex-start;
  column-gap: 48px;
}
.ex_dtl_body_item dl {
  display: grid;
  grid-template-columns: 3em auto;
  color: var(--fontC);
  line-height: 1.8;
}
@media screen and (max-width: 1920px) {
  #ex_dtl {
    background-size: contain;
  }
  .ex_dtl_msg {
    padding: calc((52vw - 340px) / 2) 0 var(--rp128) 0;
  }
}
@media screen and (max-width: 1300px) {
  .ex_dtl_msg {
    padding: calc(var(--hdrH) + var(--rp64)) 0 var(--rp128) 0;
  }
}
@media screen and (max-width: 768px) {
  .ex_dtl_body_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
  }
  .ex_dtl_head {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: none;
  }
  .ex_dtl_body {
    margin-top: var(--rp64);
  }
  .ex_dtl_image {
    width: 240px;
    max-width: calc(100% - 128px);
    height: 240px;
    object-fit: contain;
  }
}
@media screen and (max-width: 450px) {
  #ex_dtl {
    background: url(./img/ex_bg_2.png) center top no-repeat;
    background-size: contain;
    background-attachment: fixed;
  }
  .ex_dtl_msg {
    padding: calc(var(--hdrH) + var(--rp64)) 0 48px 0;
  }
  .ex_dtl_list li {
    margin-right: 12px;
    padding: 32px 24px;
    width: calc(100% - 12px);
  }
  .ex_dtl_list li::after {
    bottom: -12px;
    right: -12px;
  }
  .ex_dtl_image {
    width: 160px;
    max-width: calc(100% - 48px);
    height: 160px;
  }
  .ex_dtl_head {
    row-gap: 32px;
  }
  .ex_dtl_head h3 {
    grid-template-columns: 32px auto;
    column-gap: 0.5em;
    font-size: 24px;
    line-height: 1em;
  }
  .ex_dtl_body_item {
    row-gap: 0;
  }
  .ex_dtl_body_item dl {
    grid-template-columns: 1fr;
  }
  .ex_dtl_body_item dt {
    margin-top: 24px;
  }
}

/* ****************************** */
/* #contact
****************************** */
#contact {
  margin-top: calc(var(--hdrH) + var(--rp64));
  padding-bottom: var(--rp128);
}
.form_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--rp64);
  color: var(--mainC_2);
}
.form_head h2 {
  font-size: 48px;
}
.form_body {
  margin-top: var(--rp64);
  margin-right: 16px;
  padding: 64px;
  position: relative;
  width: calc(100% - 16px);
  border: 2px solid var(--mainC_2);
  background-color: var(--bgC_2);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
}
.form_body::after {
  display: inline-block;
  position: absolute;
  bottom: -16px;
  right: -16px;
  content: "";
  width: 100%;
  height: 100%;
  background: url(./img/ex_dtl_bg.png) center top repeat-y;
  z-index: -1;
}
.form_body p {
  text-align: center;
}
.form_input_container {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
}
.form_input_container input[type="text"],
.form_input_container input[type="email"],
.form_input_container input[type="tel"],
.form_input_container textarea {
  padding: 0.25em 0.5em;
  border: none;
  width: 100%;
  max-width: 100%;
  resize: none;
  font-size: 1em;
  background-color: var(--bgC_1);
  line-height: 1.5;
}
.form_input_container fieldset {
  border: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1em;
  row-gap: 0.5em;
}
.form_input_container input[type="radio"] {
  margin: 0 0.5em 0 0;
  width: 1.5em;
  height: 1.3em;
  accent-color: var(--mainC_1);
}
.input_required::after {
  margin-left: 0.5em;
  padding: 0 0.5em;
  content: "必須";
  font-size: 0.8em;
  background-color: var(--mainC_1);
  color: var(--bgC_2);
}
.privacy-policy_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
  font-size: 16px;
}
#form_msg {
  padding: 1em;
  background-color: var(--accentC);
  position: relative;
}
#form_msg::after {
  position: absolute;
  left: 50%;
  bottom: -1em;
  transform: translateX(-50%);
  content: "";
  width: 1em;
  height: 1em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--accentC);
}
#form_msg a {
  color: var(--mainC_1);
}
#form_submit:disabled {
  background-color: var(--fontC);
  opacity: 0.7;
  cursor: inherit;
}
@media screen and (max-width: 450px) {
  .form_head h2 {
    font-size: 32px;
  }
  .form_body {
    margin-right: 12px;
    padding: 32px 24px;
    width: calc(100% - 12px);
    row-gap: 32px;
  }
  .form_body::after {
    bottom: -12px;
    right: -12px;
  }
}

/* ****************************** */
/* #member
****************************** */
#member {
  margin-top: calc(var(--hdrH) + var(--rp64));
  padding-bottom: var(--rp128);
}
.mem_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: var(--rp64);
  color: var(--mainC_1);
}
.mem_head h2 {
  font-size: 48px;
}
.mem_body {
  margin-top: var(--rp64);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
}
.mem_sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .mem_head h2 {
    font-size: 32px;
  }
  .mem_pc {
    display: none;
  }
  .mem_sp {
    display: block;
  }
}

/* ****************************** */
/* #bus-contents
****************************** */
.bus_body {
  padding-bottom: var(--rp128);
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--rp128);
}
.bus_head {
  margin-top: calc(var(--hdrH) + var(--rp128));
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--rp64);
  text-align: center;
  color: var(--mainC_2);
}
.bus_head_title {
  width: 100%;
  max-width: 800px;
}
.bus_head .strong {
  font-style: italic;
  font-size: 48px;
}
.bus_head_msg {
  line-height: 1.8;
}
.bus_point_list {
  list-style: none;
}
.bus_point_list li {
  padding: var(--rp64) 0;
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
  column-gap: 48px;
  border-top: 2px dashed var(--fontC);
  color: var(--mainC_2);
  line-height: 1.8;
}
.bus_point_list li:nth-last-of-type(1) {
  border-bottom: 2px dashed var(--fontC);
}
.bus_point_list h3 {
  margin-bottom: 24px;
  font-size: 48px;
  line-height: 1.5;
}
.bus_point_list h4 {
  font-weight: 400;
}
.bus_point_list .bus_example_list li,
.bus_point_list .bus_example_list li:nth-last-of-type(1),
.bus_example_list li,
.bus_example_list li:nth-last-of-type(1) {
  padding: 0 0 0 1em;
  position: relative;
  display: inline-block;
  border: none;
}
.bus_point_list .bus_example_list li::before,
.bus_example_list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}
.cont_msg_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}
.bus_sec {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--rp64);
}
.bus_sec_title {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 16vw;
  max-height: 96px;
  background: url(./img/bus_title_bg.png) center center no-repeat;
  background-size: contain;
}
.bus_sec_title h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: var(--bgC_2);
  line-height: 1.5;
  text-wrap: nowrap;
}
.bus_flow_list {
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 42px;
  list-style: none;
  color: var(--mainC_2);
}
.bus_flow_item {
  position: relative;
  margin-left: 44px;
  padding-bottom: 48px;
  width: calc(100% - 44px);
  border-left: 8px solid var(--accentC);
}
.bus_flow_item::after {
  position: absolute;
  left: -24px;
  bottom: -10px;
  width: 40px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  background-color: var(--accentC);
}
.bus_flow_list h4 {
  margin-left: -44px;
  display: grid;
  grid-template-columns: 80px auto;
  column-gap: 32px;
  font-size: 48px;
  line-height: 1.5;
}
.bus_flow_list h4 .strong {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--mainC_2);
  color: var(--bgC_2);
}
.bus_flow_text {
  margin-top: 48px;
  padding-left: var(--rp64);
  max-width: 100%;
  line-height: 1.8;
}
.bus_flow_text ul {
  padding-left: 32px;
  list-style-type: disc;
}
.bus_flow_text .strong {
  color: #ed1c24;
}
.bus_explain_list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  list-style: none;
  line-height: 1.8;
  color: var(--mainC_2);
}
.bus_explain_list li {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1em;
}
.bus_explain_list h4 {
  font-size: 48px;
}
@media screen and (max-width: 1000px) {
  .bus_head .strong {
    font-size: calc((100vw - 128px) / 15);
  }
}
@media screen and (max-width: 768px) {
  .bus_point_list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .bus_point_list li img {
    max-width: 160px;
  }
  .bus_point_list h3 {
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .bus_head .strong {
    font-size: calc((100vw - 48px) / 15);
  }
  .cont_msg_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 16px;
  }
  .cont_msg_list li {
    width: 100px;
  }
  .bus_point_list li {
    border-top: 1px dashed var(--fontC);
  }
  .bus_point_list li:nth-last-of-type(1) {
    border-bottom: 1px dashed var(--fontC);
  }
  .bus_point_list h3,
  .bus_explain_list h4 {
    font-size: 20px;
  }
  .bus_sec_title h3 {
    font-size: 24px;
  }
  .bus_flow_list {
    padding-bottom: 5px;
    row-gap: 21px;
  }
  .bus_flow_item {
    margin-left: 22px;
    padding-bottom: 22px;
    width: calc(100% - 22px);
    border-left: 4px solid var(--accentC);
  }
  .bus_flow_item::after {
    left: -12px;
    bottom: -5px;
    width: 20px;
    height: 10px;
  }
  .bus_flow_list h4 {
    margin-left: -22px;
    grid-template-columns: 40px auto;
    column-gap: 16px;
    font-size: 24px;
  }
  .bus_flow_list h4 .strong {
    width: 40px;
    height: 40px;
  }
  .bus_flow_text {
    margin-top: 24px;
    padding-left: 24px;
  }
  .bus_explain_list {
    row-gap: 40px;
  }
}
