@charset "utf-8";
:root {
  --bg-color: #fff;
  --text-color: #000;
  --main-color: #eb0000;
  --sub-color: #486de4;
  --accent-color: #e07676;
  --secondary-color: #ddd;
  --table-th: #f0f0f0;
  --table-td: #fff;
  --table-bd: #000;
  --font-sans: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-serif: "Times New Roman", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  --section-margin: 50px;
}

body,div,pre,blockquote,form,fieldset,input,textarea,select,option,dl,dt,dd,ol,li,h1,h2,h3,h4,h5,h6,table,th,td,embed,object,img,figure {
  margin: 0;
  padding: 0;
}
article,aside,canvas,details,figcaption,figure,header,footer,main,menu,nav,section,summary {
  display: block;
}
*,
*:before,
*:after{
  box-sizing: border-box;
}
html{
  position: relative;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
body{
  background-color: var(--bg-color);
  font-family: var(--font-sans);
  color: var(--text-color);
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  line-height: 1.6;
  font-feature-settings: "palt";
  overflow-x: hidden;
  background: url(../../img/pc/index/body_bg.jpg) no-repeat top;
  position: relative;
}
@media (max-width: 640px) {
  body {
    background-size: 320%;
  }
}
#wrap{
  width: min(980px, 100%);
  margin: 0 auto;
}
main{
  margin: 2rem 0 2rem;
}
main:not(:has(.edit_inner)) {
  background: rgba(255, 255, 255, 0.7);
}

.over_width {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}

@media (max-width: 640px) {
  .sm_view {display: block;}
  .pc_view {display: none;}
}
@media (min-width: 641px) {
  .sm_view {display: none;}
  .pc_view {display: block;}
}


/*=========================================
site link color
=========================================*/
a{
  color: var(--accent-color);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}


/*=========================================
title
=========================================*/
h2 {
  margin: 0.5em 0 1em;
  padding: 0.5em 0.2em;
  font-size: clamp(1.5rem, 1.39rem + 0.48vw, 1.75rem);
  font-weight: normal;
  text-box: trim-both cap alphabetic;
  background: var(--main-color);
  color: #fff;
}

/*小見出し*/
h3 {
  margin: 0.5em 0 1em;
  padding: 0.5em 0.2em;
  font-size: clamp(1.25rem, 1.14rem + 0.48vw, 1.5rem);
  font-weight: normal;
  text-box: trim-both cap alphabetic;
  border-bottom: 1px solid var(--accent-color);
}

/*注意文言内見出し*/
h4 {
  margin: 0.5em 0 1em;
  padding: 0.5em 0.2em;
  font-size: clamp(1rem, 0.89rem + 0.48vw, 1.25rem);
  font-weight: normal;
  text-box: trim-both cap alphabetic;
  background: var(--secondary-color);
  color: #000;
}

h5, h6 {
  font-style: normal;
  font-weight: normal;
  font-size: clamp(0.875rem, 0.76rem + 0.48vw, 1.125rem);
  margin: 2rem 0;
}


/*=========================================
common
=========================================*/
img, figure, video{
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}
hr{
  height: 0;
  padding: 0;
  border: 0;
  margin: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.width_full{
  width: -webkit-fill-available;
  width: -moz-available;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
}

/* plan
--------------------------------------------------*/
.view_plan{text-align: center;}
.view_plan img{max-width: 100%;}

/* table common
--------------------------------------------------*/
table img{vertical-align: bottom;}
table.tbl_fixed{table-layout: fixed;}

/* dl_base common
--------------------------------------------------*/
/*商品説明用*/
dl.dl_base dd:empty{display: none;}

/* text
--------------------------------------------------*/
div[class^="txt_"],
span[class^="txt_"],
p[class^="txt_"]{
  vertical-align: middle;
}
.txt_s{font-size: 90%;}
.txt_ss{font-size: 80%;}
.txt_l{font-size: 150%;}
.txt_ll{
  font-size: 3rem;
  font-weight: bold;
}
/*company*/
.text_noselect{
  user-select: none;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
.txt_red{
  color: red;
  font-weight: bold;
}

/* align
--------------------------------------------------*/
.ta_c{text-align: center;}
.ta_r{text-align: right;}
.ta_l{text-align: left;}


/*=========================================
message list
=========================================*/
/*msg_
--------------------------------------------------*/
div[class^="msg_"],
p[class^="msg_"]{
  margin: 20px;
  padding: 10px;
}
div[class^="msg_"]:empty,
p[class^="msg_"]:empty{
  display: none;
}

/*msg_warning*/
.msg_warning{
  margin: 1em 0;
  padding: 0.5em 1em;
  display: block;
  text-align: center;
  border: 1px solid #FF8383;
  background: #D82326;
  color: #ffffff;
}
.msg_warning a{color: yellow;}
.msg_warning strong{color:yellow;}
/*msg_error*/
div.msg_error{
  margin: 0;
  padding:0;
  color: #f00;
}
/*msg_success*/
.msg_success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

/*isystem-
--------------------------------------------------*/
div[id^="isystem-"],
p[id^="isystem-"]{
  display: block;
  text-align: center;
}
div[id^="isystem-"]:empty,
p[id^="isystem-"]:empty{
  display: none;
}
/*isystem-regist_word…登録系メッセージ*/
#isystem-regist_word{
  margin: 2rem auto;
  padding: 1rem;
  width: min(980px,90%);
  background: #fff;
  color: #000;
}


/*=========================================
input
=========================================*/
input[type="submit"], button{cursor: pointer;}
select, input, textarea, button {
  font-family: inherit;
  vertical-align:middle;
}
/* type="image"
--------------------------------------------------*/
input[type="image"]{
  display: block;
  margin: 2rem auto;
  background-color: transparent !important;
}

/* submit
--------------------------------------------------*/
/*pay/select*/        div[class="payments_block"] input[type="submit"] ,
/*bankagent*/        input[name="submit[btn][pay_bankagent][add]"] ,
/*bitcash*/            input[name="submit[btn][pay_bitcash][add]"] ,
/*credit*/              input[name="submit[btn][pay_credit][add]"] ,
/*netbank*/          input[name="submit[btn][pay_netbank][add]"] ,
/*point*/               input[name="submit[btn][pay_point][add]"],
/*information*/      input[name="submit[btn][user_detail_info][set]"] ,
/*login*/                form[name="user_login_frm"] input[name="submit[btn][doLogin][get]"] ,
/*view/expect/*/   form[name$="_pay"] input[type="submit"] ,
/*table btn*/          td.tbl_btn a ,
/*premiere*/        .css_btn
{
  border: none; /*reset*/
  display: block;
  margin: 1em auto !important;
  width: 80%;
  padding: 10px;
  font-size: clamp(1.125rem, 1.07rem + 0.24vw, 1.25rem);
  color: #fff !important;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  background: var(--sub-color);
}
/*pay/select*/        div[class="payments_block"] input[type="submit"]:hover ,
/*bankagent*/        input[name="submit[btn][pay_bankagent][add]"]:hover ,
/*bitcash*/             input[name="submit[btn][pay_bitcash][add]"]:hover ,
/*credit*/              input[name="submit[btn][pay_credit][add]"]:hover ,
/*netbank*/          input[name="submit[btn][pay_netbank][add]"]:hover ,
/*point*/               input[name="submit[btn][pay_point][add]"]:hover ,
/*information*/      input[name="submit[btn][user_detail_info][set]"]:hover ,
/*login*/               form[name="user_login_frm"] input[name="submit[btn][doLogin][get]"]:hover ,
/*view/expect/*/   form[name$="_pay"] input[type="submit"]:hover ,
/*table btn*/          td.tbl_btn a:hover ,
/*premiere*/        .css_btn :hover
{
  background: color-mix(in srgb, var(--sub-color) 80%, #fff);
}


/*=========================================
pay
=========================================*/
/* select
--------------------------------------------------*/
.payments_block{
  margin: 2rem 0;
  padding: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
}
.payments_contact {
  margin-top: 10px;
  padding: 10px;
  background: #474747;
}

/* bitcash
--------------------------------------------------*/
a.bitcash_link{
  color: #fff;
  text-decoration: underline;
}
.bitcash_logo{
  width: 20%;
}
/* agree
--------------------------------------------------*/
.agree_submit{
  display: flex;
  justify-content: center;
}
form[name="agree_frm"] input[type="submit"], form[name="agree_frm"] input[type="button"]{
  display: block;
  padding: 5px;
  margin: 5px;
  width: 45%;
  height: 60px;
  font-size: 1.5rem;
}


/*=========================================
table
=========================================*/
.tbl_base {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  border-top: 1px solid var(--table-bd);
  border-left: 1px solid var(--table-bd);
}
.tbl_base th {
  width: 20%;
  padding: 0.2em 0.5em;
  border-right: 1px solid var(--table-bd);
  border-bottom: 1px solid var(--table-bd);
  background: var(--table-th);
}
.tbl_base td {
  padding: 0.2em 0.5em;
  border-right: 1px solid var(--table-bd);
  border-bottom: 1px solid var(--table-bd);
  background: var(--table-td);
}

@media (min-width: 981px) {
  .tbl_btn {
    width: 30%;
  }
}


/*=========================================
dl
=========================================*/
.dl_base dt {
  margin-bottom: 0.5rem;
  padding: 0.5em;
  background: var(--secondary-color);
  border-left: 5px solid var(--accent-color);
}
.dl_base dd {
  margin: 0 0 1rem;
  padding: 0.5em;
}


/*=========================================
header
=========================================*/
header {
  background: #fff;
}

.header_content {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
.header_content h1 {
  margin-right: auto;
}

.header_banner {
  /* pc user header */
  background: var(--secondary-color);
}
.header_banner div {
  padding: 0 1%;
  text-align: right;
}

@media (min-width: 641px) {
  header .tbl_base {
    margin-right: 20px;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .tbl_base th {
    width: inherit;
  }
}
.header_box p {
  margin: 5px 0;
}
.header_box .title {
  text-align: center;
  border-bottom: 1px solid var(--main-color);
}
.header_box .content {
  font-size: 20px;
}

.header_box.sns .content {
  color: #6e6e6e;
  text-align: center;
}

.header_nav ul {
  list-style: none;
  margin: 40px 0;
  padding: 5px 5px;
  width: 100%;
  background: #fff;
  display: flex;
  border-radius: 50px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.header_nav ul a {
  color: #000;
}

.header_nav li {
  padding: 5px;
  width: 16.6666666667%;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  /* border-bottom: 1px solid var(--secondary-color); */
}

.header_nav li span {
  font-size: 14px;
  font-weight: 400;
}

.header_nav li:nth-child(5) {
  margin-left: 20px;
  border-radius: 50px 0 0 50px;
  background: #129c00;
}
.header_nav li:nth-child(5) a {
  color: #fff;
}

.header_nav li:nth-child(6) {
  border-radius: 0 50px 50px 0;
  background: var(--main-color);
}
.header_nav li:nth-child(6) a {
  color: #fff;
}

/* hamburger nav（SM用）
--------------------------------------------------*/

/*=========================================
footer
=========================================*/
footer {
  background: var(--secondary-color);
}

.footer_inner {
  margin-bottom: 20px;
  background: var(--main-color);
}

.footer_nav {
  list-style: none;
  margin-block: 0;
  padding: 0;
  color: #fff;
}
@media (min-width: 641px) {
  .footer_nav {
    padding: 20px 10px;
    text-align: center;
  }
}
.footer_nav a {
  color: #fff;
}

.footer_nav li {
  display: block;
  padding: 10px;
}
@media (min-width: 641px) {
  .footer_nav li {
    display: inline-block;
    padding: 0 10px;
  }
}

.footer_aten {
  margin-bottom: 20px;
  padding-inline: 10px;
  font-size: 14px;
}

.copy {
  padding: 10px;
  text-align: center;
  font-size: 14px;
}


/*=========================================
def_index
=========================================*/
/* ログイン
--------------------------------------------------*/
.login {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.tbl_base input {
  padding: 5px;
  width: 100%;
  font-size: 16px;
}


/*=========================================
画像とテキストが分離して動くやつ
=========================================*/
/* sticky_full
横幅いっぱいの時
--------------------------------------------------*/
.sticky_full .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
}

.sticky_full .fixed_bg img {
  width: 100%;
}

.sticky_full .scroll_content {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #fff;
  margin-top: -500px;
  padding-bottom: 100px;
}
@media (min-width: 641px) {
  .sticky_full .scroll_content {
    padding-bottom: 200px;
  }
}

/* sticky_half
左右で分割のとき
--------------------------------------------------*/
.sticky_half {
  --half-width: 400px; /*テキストエリアの横幅*/
  position: relative;
}

@media (max-width: 640px) {
  .sticky_half .fixed_text {
    padding: 20px;
    text-align: center;
  }
  .sticky_half .fixed_bg.sm_view {
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: -1;
  }
  .sticky_half .fixed_bg.sm_view::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url("../../img/pc/index/bg_renga.jpg") center;
    background-size: 200%;
  }
  .sticky_half .scroll_content {
    margin-top: -600px;
    padding-bottom: 100px;
  }
}
@media (min-width: 641px) {
  .sticky_half .sticky {
    position: sticky;
    top: 0;
    height: 100vh;
  }
  .sticky_half .fixed_text {
    position: absolute;
    padding: 20px;
    width: var(--half-width);
    height: 100vh;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .sticky_half .fixed_bg.pc_view::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: calc(100% - var(--half-width));
    height: 100vh;
    background: url("../../img/pc/index/bg_renga.jpg") center;
  }
  .sticky_half .scroll_content {
    margin-top: -500px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    right: 0;
  }
}


/*=========================================
user_index
=========================================*/
/* index slides
--------------------------------------------------*/
.slider {
  position: relative;
  margin: 20px 0;
}

.slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  z-index: 1;
}
.prev-arrow {left: 5px;}
.next-arrow {right: 5px;}

/* 的中実績＆レビュー
--------------------------------------------------*/
.sec_result, .sec_reviews {
  margin: 30px 0;
}

.sec_result .scroll_content,
.sec_reviews .scroll_content {
  display: grid;
  row-gap: 30px;
}
.scroll_content > div {
  margin: 0 auto;
  padding: 10px 22px;
  width: 90%;
}

/* 的中実績 */
.sec_result .fixed_bg::before {
  right: 0;
}

@media (min-width: 641px) {
  .sec_result .scroll_content {
    justify-content: right;
    grid-template-columns: var(--half-width) 1fr;
  }
}
.sec_result .fixed_text {
  position: relative;
  background: url(../../img/pc/index/result_text.png) top left no-repeat #f0f0f0;
  background-size: contain;
}
@media (min-width: 641px) {
  .sec_result .fixed_text {
    background-size: inherit;
  }
}

.result {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}
@media (min-width: 641px) {
  .result {
    grid-column: 2/3;
  }
}
.result_content {
  display: flex;
  align-items: center;
}
.result_content p {
  margin: 0;
  padding-left: 20px;
  font-size: 18px;
}
.result_price {
  margin-top: 20px;
  border: 4px solid #ffba01;
  background-image: linear-gradient(0deg, #a80000 0%, #ff0000 100%);
  font-size: clamp(1.625rem, 1.23rem + 1.7vw, 2.5rem);
  text-align: center;
  font-weight: 700;
}

/* レビュー */
.sec_reviews .fixed_bg::before {
  left: 0;
}

@media (min-width: 641px) {
  .sec_reviews .scroll_content {
    justify-content: left;
    grid-template-columns: 1fr var(--half-width);
  }
}
.sec_reviews .fixed_text {
  right: 0;
  background: url(../../img/pc/index/reviews_text.png) top right no-repeat #f0f0f0;
  background-size: contain;
}
@media (min-width: 641px) {
  .sec_reviews .fixed_text {
    background-size: inherit;
  }
}

.review {
  background: rgba(255, 255, 255, 0.9);
}
@media (min-width: 641px) {
  .review {
    grid-column: 1/2;
  }
}
.review .name {
  margin: 5px 0;
  font-size: 20px;
  font-weight: 700;
}
.review .star {
  color: #ffae00;
  font-size: 18px;
}
.review_text {
  font-size: 18px;
}

/*=========================================
その他
=========================================*/
/* about (COMPANY）
--------------------------------------------------*/
.about1 .fixed_bg {
  background: url(../../img/pc/about/about1_bg.jpg) right bottom no-repeat;
  background-size: cover;
}
.about1 .scroll_content {
  padding-inline: 20px;
}
.about1 .scroll_content strong {
  font-size: clamp(1.125rem, 1.01rem + 0.48vw, 1.375rem);
}
.about1 .scroll_content .title {
  font-size: clamp(1.625rem, 1.28rem + 1.45vw, 2.375rem);
  font-weight: 700;
}
.about1 .scroll_content p {
  font-size: clamp(1rem, 0.83rem + 0.73vw, 1.375rem);
}

.about2 .fixed_bg {
  background: url(../../img/pc/about/about2_bg.jpg) top;
  background-size: contain;
}
@media (min-width: 641px) {
  .about2 .fixed_bg {
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.about2 .scroll_content {
  text-align: center;
}
@media (max-width: 640px) {
  .about2 .scroll_content {
    margin-top: -600px;
    padding-bottom: 120px;
  }
}
.about2 .scroll_content img {
  width: 90%;
}
@media (min-width: 641px) {
  .about2 .scroll_content img {
    width: 70%;
  }
}


/* chart (MEMBER)
--------------------------------------------------*/
.chart_wrap_ceo {
  margin: 20px 0;
  padding: 10px;
  background: url(../../img/pc/index/bg_renga.jpg) center fixed;
}
.chart_wrap_ceo h2 {
  text-align: center;
}
.chart_wrap_ceo dd {
  padding: 0;
}
@media (min-width: 641px) {
  .chart_wrap_ceo img {
    width: 400px;
  }
}
.chart_wrap_ceo > div {
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
}
.chart_wrap_ceo .name {
  font-size: clamp(1.625rem, 1.34rem + 1.21vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--accent-color);
}
.chart_wrap_ceo .name span {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 400;
}
.chart_wrap_ceo dd {
  color: #fff;
  font-size: clamp(1rem, 0.89rem + 0.48vw, 1.25rem);
}
.chart_wrap_ceo .about {
  padding: 20px 10px;
  background: url(../../img/pc/about/about2_bg.jpg) center top;
  background-size: cover;
  text-align: center;
}
@media (min-width: 641px) {
  .chart_wrap_ceo .about img {
    width: 50%;
  }
}

.chart_wrap {
  margin: 20px 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.8);
}
.chart_wrap h2 {
  text-align: center;
}
.chart_wrap .name {
  margin-top: 0;
  font-size: clamp(1.625rem, 1.34rem + 1.21vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--accent-color);
}
.chart_wrap .name span {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 400;
}

.chart_flex {
  display: flex;
}
.chart_flex img {
  max-width: 100%;
}
.chart_flex > div {
  margin: 0 12px;
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}
.chart_flex div div {
  margin-top: auto;
}

.chart_grid > div {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 10px;
}
.chart_grid div div:first-child {
  grid-column: 2/3;
  grid-row: 1/2;
}
.chart_grid div div:last-child {
  grid-column: 1/2;
  grid-row: 1/2;
}
.chart_grid div div:last-child img {
  max-width: 100%;
}

/* guide
--------------------------------------------------*/
.guide_contact {
  padding: 10px;
  background: var(--accent-color);
  font-size: clamp(1.25rem, 0.97rem + 1.21vw, 1.875rem);
  color: #fff;
}

.kuji_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.8);
}
.kuji_list li {
  padding: 10px;
  width: 33.3333333333%;
}
.kuji_list img {
  max-width: 100%;
}

.kuji_place img {
  width: 50%;
}

/*=========================================
LP（lp01）
=========================================*/
.lp_header {
  margin-top: -2em;
  background: #fff;
}
@media (max-width: 640px) {
  .lp_header .header_box {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
  }
  .lp_header h1 {
    margin: 0 auto;
    width: 70%;
  }
}
.lp_campaign {
  margin: 20px 0;
  padding: 10px 0;
}
.lp_campaign .title {
  margin: 0 auto;
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: clamp(1.375rem, 0.69rem + 2.91vw, 2.875rem);
}
.lp_campaign .text {
  padding: 4vw 10px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  text-align: center;
}

/* entryform
--------------------------------------------------*/
.entryform_intro {
  position: relative;
  padding: 10px;
  text-align: center;
  top: 20px;
  z-index: 1;
}

.section_entryform {
  padding: 20px 10px 10px;
  background-image: linear-gradient(0deg, #c70000 0%, #5c0000 26%, #f35106 59%, #feac24 87%, #ffe15e 100%);
}

.entryform_title {
  margin: 0 auto;
  max-width: 944px;
}

.entryform_title img {
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 641px) {
  .entryform_title img {
    height: auto;
  }
}

.section_entryform form {
  margin: 10px auto 0;
  max-width: 944px;
}
.section_entryform form input[type=text] {
  padding: 0.5em;
  width: 100%;
  font-size: clamp(1rem, 0.77rem + 0.97vw, 1.5rem);
}
.section_entryform form input[type=image] {
  margin: 10px auto;
  max-width: 100%;
}

.regist_check {
  margin: 10px 0;
  font-size: clamp(0.875rem, 0.82rem + 0.24vw, 1rem);
  color: #fff;
}
.regist_check a {
  color: #fff;
}

.section_entryform .msg_warning {
  margin-inline: auto;
  background: #000;
  font-size: clamp(0.875rem, 0.82rem + 0.24vw, 1rem);
  max-width: 944px;
}

/* ドメイン関連
--------------------------------------------------*/
.section_sendmail {
  padding: 0 10px;
}
.section_sendmail th {
  width: 130px;
}
.section_sendmail pre {
  font-size: 14px;
}

@media screen and (max-width: 640px) {
  .section_sendmail th {
    width: 100%;
    display: block;
  }
  .section_sendmail td {
    width: 100%;
    display: block;
  }
}
/* domain */
.domain {
  margin: var(--section-margin) 0;
  padding: 10px;
  background: #efead6;
}

.domain_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.domain_wrap a {
  margin: 5px;
}
