*{
    margin: 0;
    padding: 0;
}
html{
    font-size: 6px;
}
body{
    /* width: 100%; */
    max-width: 100%;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 900;
}
li{
    list-style: none;
}
img{
    width: 100%;
}

/* レスポンシブ */
.hidden_960{
    display: block;
}
.visible_960{
    display: none;
}
.hidden_960_inline{
    display: inline;
}
.visible_960_inline{
    display: none;
}
.hidden_640{
    display: block;
}
.visible_640{
    display: none;
}
.hidden_640_inline{
    display: inline;
}
.visible_640_inline{
    display: none;
}
.hidden_640_flex{
    display: flex;
}
.visible_640_flex{
    display: none;
}

/* ヘッダー */
.header_width{
    max-width: 1060px;
    margin: auto;
}
header #header_left{
    padding: 0 10px;
}
header #header_left #header_logo{
    width: 100px;
    margin-right: 10px;
    margin-top: 10px;
}
header #header_center{
    padding: 15px;
    margin-left: 100px;
}
header #header_center > div{
    border-radius: 10px;
    margin-top: 5px;
    cursor: pointer;
}
header #header_right{
    margin: auto;
}
header #header_right #hamburger{
    width: 80px;
    cursor: pointer;
}
@media screen and (max-width:1030px) {
    header #header_center{
        margin-left: 50px;
    }
}
@media screen and (max-width:980px) {
    header #header_center{
        margin-left: 10px;
    }
}

/* ハンバーガー */
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 9999;
    /*ナビのスタート位置と形状*/
  top:-120%;
    left:0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#d2e1eb;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 9999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 9999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/
#g-nav li{
  list-style: none;
    text-align: center; 
}
#g-nav li a{
  color: #0071a3;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
#g-nav li a:hover{
    opacity: 0.6;
  }

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:relative;
    z-index: 99999;/*ボタンを最前面に*/
  top:0;
  cursor: pointer;
    width: 80px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 2px;
  background-color: #0071a3;
    width: 80px;
  }

.openbtn1 span:nth-of-type(1) {
  top:5px; 
}

.openbtn1 span:nth-of-type(2) {
  top:25px;
}

.openbtn1 span:nth-of-type(3) {
  top:45px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
}


/* トップ */
#top #top_left{
    width: 60%;
    padding: 10px;
}
#top #top_left_square{
    display: inline-flex;
    margin: auto;
    text-align: center;
    margin-left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
#top #top_left_square div{
    border-radius: 10px;
    padding: 0.8em 50px;
}
#top #top_left_square div:nth-child(2){
    margin: 0 5px;
}
#top > .d_flex:nth-child(1){
    background-image: url('../img/top_right.jpg');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: right top;  
}
#top #top_left_blue p:nth-child(2){
    margin: 10px 0;
}
#top_bottom{
    margin-top: 20px;
}
#top #top_bottom a:nth-child(1){
    width: 55%;
    margin-left: 5%;
    cursor: pointer;
}
#top #top_bottom a:nth-child(2){
    width: 35%;
    cursor: pointer;
}
#top #top_left_red_pc{
    margin-left: 50px;
}
#top #top_left_circle img{
    width: 90%;
    margin-left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width:1200px) {
    #top #top_left_square{
        margin-left: 0;
        transform: translateX(0);
    }
    #top #top_left_red_pc{
        margin-left: 0;
    }
}
@media screen and (max-width:1020px) {
    #top #top_left_square div{
        padding: 0.8em 40px;
    }
}

/* コロナ */
#corona{
    padding: 15px;
}
#corona > div:nth-child(1){
    padding: 8px;
}
#corona > div:nth-child(2){
    width: 60%;
    padding-top: 10px;
}

/* 新着情報 */
#news_parent{
    padding: 30px 20px;
    color: #333;
}
#news_parent > div{
    padding: 20px 80px;
}
#information > div dl > div dd:nth-child(1){
    margin-right: 20px;
}
#information > div dd{
    font-size: 3rem;
}
#news{
    padding-right: 10px;
}

/* お任せ */
#entrust .entrust_contents .d_flex > div:nth-child(1){
    width: 40%;
}
#entrust .entrust_contents .d_flex > div:nth-child(2){
    width: 60%;
}
#entrust .entrust_contents{
    padding: 10px;
}
#entrust .entrust_contents .d_flex .bc_red{
    border-radius: 20px;
    margin-bottom: 20px;
}

/* 理由 */
#reason > div:nth-child(1) > div{
    width: 900px;
    margin: auto;
    padding-bottom: 20px;
}
#reason .reason_contents p:nth-child(2),
#reason .reason_contents p:nth-child(3),
#reason .reason_contents div:nth-child(4){
    text-shadow:3px 3px 5px #FFF;
}
#reason > .reason_contents{
    background-repeat: no-repeat;
}
#reason .reason_contents span:nth-child(2){
    margin-left: 10px;
}
#reason > .reason_contents > div:nth-child(1){
    border-bottom: #0071a3 solid 6px;
    width: 150px;
    margin: auto;
    margin-bottom: 20px;
}
#reason > .reason_contents > p:nth-child(3){
    padding: 20px 0 40px 0;
}
#reason > .reason_contents:nth-child(4) > p:nth-child(3){
    padding: 20px 0 0 0;
}
#reason > .reason_contents:nth-child(4) > p:nth-child(3){
    padding: 0;
}
#reason > .reason_contents:nth-child(2){
    background-image: url('../img/reason_1.png');
    background-size: 30%;
    background-position: left top;  
    /* background-color: rgb(235, 244, 243); */
}
#reason > .reason_contents:nth-child(3){
    background-image: url('../img/reason_2.png');
    background-size: 30%;
    background-position: right top;  
    /* background-color: rgb(227, 239, 237); */
}
#reason > .reason_contents:nth-child(4){
    background-image: url('../img/reason_3.png');
    background-size: 30%;
    background-position: left top;  
    /* background-color: rgb(235, 244, 243); */
}
#reason > .reason_contents:nth-child(5){
    background-image: url('../img/reason_4.png');
    background-size: 30%;
    background-position: right top;  
    /* background-color: rgb(227, 239, 237); */
}
#reason > .reason_contents:nth-child(6){
    background-image: url('../img/reason_1.png');
    background-size: 30%;
    background-position: left top;  
    /* background-color: rgb(235, 244, 243); */
}
@media screen and (max-width:1250px) {
    #reason > .reason_contents:nth-child(2),
    #reason > .reason_contents:nth-child(3),
    #reason > .reason_contents:nth-child(5),
    #reason > .reason_contents:nth-child(6){
        background-size: 40%;
    }
    #reason > .reason_contents:nth-child(4){
        background-size: 40%;
    }
}
#reason .fs_26{
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: left;
    margin-left: 40vw;
}

/* 悩み */
#worries > div:nth-child(1){
    padding: 10px;
}
#worries > div:nth-child(2){
    background-repeat: no-repeat;
    background-image: url('../img/nayami.jpg');
    background-size: 40%;
    background-position: right top; 
}
#worries > div:nth-child(2) > div{
    background-color: rgba(255, 255, 255, 0.8);
    width: 60%;
    padding: 20px;
}
#worries .d_flex{
    padding: 15px 0;
    border-bottom: dashed #9a9a9a 2px;
}
#worries .d_flex > div:nth-child(1){
    width: 30px;
    min-width: 30px;
    margin-right: 10px;
}

/* 動画 */
#movie{
    padding: 10px 0;
}
#movie > div:nth-child(2){
    width: 90%;
    transform: translateY(-10px);
    margin: auto;
}
#movie .d_flex > div:nth-child(1){
    width: 50%;
}
#movie .d_flex > div:nth-child(2){
    width: 50%;
}
#movie .d_flex iframe{
    width: 96%;
    height: 300px;
    margin: 2%;
}

/* 埼玉エリア */
#saitama_area{
    background-repeat: no-repeat;
    background-image: url('../img/saitama_area.jpg');
    background-size: 96%;
    background-position: center top; 
    padding: 50px 30px 30px 30px;
    margin: 0 auto 20px auto;
}
#saitama_area .mincho{
    font-weight: 900 !important;
}
#saitama_area > div:nth-child(1){
    width: 250px;
    border-radius: 40px;
    padding: 0 30px;
    background-color: #d3787f;
    color: #e3d521;
}
/* #saitama_area > div:nth-child(1) span{
    line-height: 1.6em;
} */
#saitama_area .color_blue p:nth-child(1){
    margin: 30px 0;
}
#saitama_area .color_blue p:nth-child(2){
    margin-bottom: 50px;
}
#saitama_area .color_blue p:nth-child(2),
#saitama_area .color_blue p:nth-child(3){
    line-height: 2.2em;
}

/* 声 */
#voice{
    padding: 10px 0 20px 0;
}
#voice > div:nth-child(1) > div:nth-child(5){
    padding: 20px;
}
#voice .mincho{
    font-weight: 900 !important;
}
#voice .bc_whit{
    border: white;
}
#voice .voice_contents{
    padding: 5px;
    width: 50%;
}
#voice .voice_contents .bc_white{
    display: flex;
}
#voice .voice_contents > .bc_white:nth-child(1) > div:nth-child(1){
    width: 40%;
    padding: 10px;
}
#voice .voice_contents > .bc_white > div:nth-child(1) img{
    object-fit: contain;
    height: 150px;
}
#voice .voice_contents > .bc_white > div:nth-child(2) p:nth-child(1){
    vertical-align: top;
    line-height: 2em;
}
#voice .voice_contents > .bc_white > div:nth-child(2){
    position: relative;
}
#voice .voice_contents > .bc_white > div:nth-child(2) > p{
    padding: 10px 10px 0 0;
}
#voice .voice_contents > .bc_white > div:nth-child(2) > div{
    vertical-align: bottom;
    position: absolute;
    bottom: 20px;
}
#voice .voice_contents .bc_gray{
    padding: 10px;
}
#voice .voice_contents .bc_gray p{
    line-height: 2em;
}

/* エリア */
#area img{
    width: 90%;
    margin: auto;
    padding-bottom: 20px;
}
#area > div:nth-child(1){
    padding: 8px;
    margin-bottom: 15px;
}
#area table{
    margin: auto !important;
    padding-bottom: 20px;
}
#area table td{
    background-color: #cdcdcd;
    color: #0071a3;
    text-align: center;
    width: 100px;
    margin: 4px !important;
}

/* 流れ */
#use{
    padding: 10px;
}
#use .bc_blue{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 30px 5px;
    letter-spacing: 3px;
    margin-right: 30px;
}
#use .use_list .d_flex{
    margin: 10px 0;
}
#use .use_list .d_flex div:nth-child(1){
    margin-right: 10px;
}

/* お問い合わせリンク */
#inquiry{
    padding: 20px 0;
}
#inquiry img{
    cursor: pointer;
}

/* 介護士 */
#doctor > div:nth-child(1){
    margin: 20px auto;
}
#doctor .doctor_contents{
    display: flex;
    padding: 10px;
    width: 50%;
    position: relative;
}
#doctor .doctor_contents > div:nth-child(1) img{
    width: 150px;
    height: 180px;
    object-fit: cover;
}
#doctor .doctor_contents > div:nth-child(2){
    padding: 10px;
}
#doctor .doctor_contents .color_blue{
    position: absolute;
    bottom: 20px;
}

/* よくある質問 */
.title_blue{
    border-top: solid 3px #0071a3;
    border-bottom: solid 3px #0071a3;
    padding: 10px;
}
#faq > div:nth-child(1){
    margin-top: 20px;
}
#faq > div:nth-child(1) > div > div:nth-child(1){
    padding: 0 10px;
}
#faq > div:nth-child(1) > div > div:nth-child(2){
    padding: 0 30px;
}
#faq > div:nth-child(1) .bc_blue{
    padding: 5px 30px;
    border-radius: 20px;
    cursor: pointer;
}
#faq .faq_contents{
    margin: 20px 0;
    line-height: 2em;
    padding: 0 10px;
}
#faq > div:nth-child(3) > div{
    width: 35%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}
#faq > div:nth-child(3) > div > img{
    object-fit: contain;
}

/* プライバシーポリシー */
#privacy_policy > div:nth-child(1) > div > div:nth-child(2){
    margin-left: 30px;
    white-space: nowrap;
}
#privacy_policy section{
	padding: 10px;
    margin: 10px auto;
    width: 96%;
	background-color: #fffff1;
	height: 200px;
	overflow: scroll;
	border: 2px solid #888;
}

/* お問い合わせフォーム */
#contact > div:nth-child(1) > div > div:nth-child(2){
    margin-left: 30px;
    white-space: nowrap;
}
#contact > div > p{
    line-height: 2em;
}
input[type=button]{
    margin: auto !important;
}

/* 所在地 */
#company > div:nth-child(2){
    padding: 20px 10px 30px 10px;
}
.c_footer {
margin-bottom: 10em;
}
.c_footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.c_footer__title {
    background-color: #0071a3;
    color: #fff;
    padding: 0.5em;
    width: 80px;
    margin-left: 30px;
    margin-right: 50px;
}
.c_footer__txt {
    padding: 0 1.5rem;
    line-height: 1.5em;
    font-weight: 900;
    color: #603813;
}
  

/* グループ */
#group{
    width: 100%;
}
.group_top{
    margin: 2rem 0;
    position: relative;
}
.group_top .group_line {
position: absolute;
top: calc(50% - 1px);
left: 0;
width: 100%;
height: 2px;
content: '';
background: #0071a3;
}
.group_top .group_title{
    line-height: 3rem;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 960px;
    max-width: 960px;
}
.group_top .group_title div{
    text-align: left;
    background-color: white;
    width: 200px;
    text-align: center;
}
.group_contents{
    padding: 30px 0 50px 0;
}
#group ul{
    padding-left: 20px;
}
#group ul li .color_blue{
    transform: scale(0.7, 1.2);
    margin: 15px 10px 15px 0;
}
#group a{
    text-decoration: none;
    color: #333;
}
#group img{
    width: 30px;
    padding-left: 15px;
}

/* フッター */
footer{
    padding: 5px;
}
/*=== GOOGLE FONTS ===*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');


/*=== GOOGLE FONTS ===*/
:root {
  /*=== Colors ===*/
  --body-color__000: #ffffff;
  --body-color__001: #fefbea;
  --body-color__002: #ebfafc;
  --body-color__003: #fcebf9;
  --body-color__004: #9e9e9e1a;
  --body-color__005: #b9d07e;
  --body-color__006: #fbb42c;
  --body-color__007: #f4f4f4;
  --body-color__007: #F3F8E3;
  --body-color__008: #F5F8E5;

  --part-color__000: #d95e59;
  --part-color__001: #7c492a;
  --part-color__002: #e4a096;
  --part-color__003: #90cad2;
  --part-color__004: #ffeb3b;
  --part-color__005: #f5dacc;
  --part-color__006: #a4b882;
  --part-color__007: #29abe2;
  --part-color__008: #000000;
  --part-color__009: #acd4da;
  --part-color__010: #90cad2;
  --part-color__011: #754c24;
  --part-color__012: #e6e6e6;
  --part-color__013: #666666;
  --part-color__014: #d8f6fa52;
  --part-color__015: #a7cfc7;
  --part-color__016: #27653A;
  --part-color__017: #4ea568;
  --part-color__018: #a3e0b5;
  --part-color__019: #E95A24;
  --part-color__020: #39B54A;
  --part-color__021: #29A3DA;
  --part-color__022: #009245;
  --part-color__023: #F7931E;
  --part-color__024: #007028;
  --part-color__025: #6dc687;
  --part-color__026: #006837;
  --part-color__027: #F5F7E6;
  --part-color__028: #dcdcdc;
  --part-color__029: #a9a9a9;
  --part-color__030: #337ab7;

  --text-color__000: #000000;
  --text-color__001: #333333;
  --text-color__002: #d95e51;
  --text-color__003: #603813;
  --text-color__004: #030000;
  --text-color__005: #ffffff;
  --text-color__006: #d95e59;
  --text-color__007: #12212d;
  --text-color__008: #384755;
  --text-color__009: #1e1e1e;
  --text-color__010: #27653A;
  --text-color__011: #045419;
  --text-color__012: #FFFF00;
  --text-color__013: #4D4D4D;
  --text-color__014: #39B54A;
  --text-color__015: #E95A24;
  --text-color__016: #666666;
  --text-color__017: #38633E;

  /*=== Font and typography ===*/
  --body-font: "Inter", sans-serif;
  --body-font__zen-maru-gothic: "Zen Maru Gothic", serif;
  --body-font__noto-sans-japanese: 'Noto Sans JP', sans-serif;
  --body-font__m-plus-1: 'M PLUS 1', sans-serif;
  --body-font__open-sans: 'Open Sans', sans-serif;
  --body-font__raleway: 'Raleway', sans-serif;
  --body-font__m-plus-rounded: "M PLUS Rounded 1c", sans-serif;
  --body-font__noto-serif-jp: "Noto Serif JP", serif;

  /*=== z index ===*/
  --z-001: 1;
  --z-002: 2;
  --z-003: 3;
  --z-004: 4;
  --z-005: 5;
  --z-006: 6;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}
/*
Form =========================================================================*/
#form {
    margin: 40px 20px;
  }
  .form {
    margin-left: auto;
    margin-right: auto;
    max-width: 840px;
    border: 1px solid var(--part-color__012);
    border-radius: 8px;
    box-shadow:
      5px 8px 15px -3px rgba(0, 0, 0, 0.1),
      -5px 8px 15px -3px rgba(0, 0, 0, 0.1),
      5px -8px 15px -3px rgba(0, 0, 0, 0.1),
      -5px -8px 15px -3px rgba(0, 0, 0, 0.1);
  }
  .form-item {
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
  .form-item::after {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    background-color: #ccc;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .form-item:last-child::after {
    display: none;
  }
  .form-item-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 280px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
  }
  .form-item-label span {
    margin-right: auto;
    margin-left: 30px;
  
  }
  .form-item-label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }
  .form-item-input {
    border: 1px solid var(--part-color__012);
    border-radius: 5px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 100%;
    min-height: 48px;
    flex: 1;
    width: 100%;
    max-width: 480px;
    background: var(--body-color__004);
    font-size: 18px;
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
  }
  .name-input-container {
    display: flex;
    flex-direction: column;
    width: inherit;
    max-width: 320px;
  }
  .input-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .name-input-container .form-item-input {
    width: calc(50% - 10px);
  }
  .last-name-input {
    margin-left: 5px;
  }
  .form-item-input__zip-code {
    border: 1px solid var(--part-color__012);
    border-radius: 5px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 220px;
    background: var(--body-color__004);
    font-size: 18px;
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
  }
  .zip-code__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .zip-code__input-hint-container {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .file__container {
    display: flex;
    flex-direction: column;
    width: inherit;
  }
  .form__container {
    display: flex;
    flex-direction: column;
    width: inherit;
    min-height: 48px;
  }
  .form-item-input__hint01 {
    margin-left: 10px;
    font-size: 12px;
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
    color: var(--text-color__001);
  }
  .form-item-input__hint02 {
    margin-left: 30px;
    padding-top: 10px;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 12px;
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
    color: var(--text-color__001);
  }
  .form-item-textarea {
    border: 1px solid var(--part-color__012);
    border-radius: 5px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 100%;
    min-height: 216px;
    flex: 1;
    width: 100%;
    max-width: 480px;
    background: var(--body-color__004);
    font-size: 18px;
  }
  .form-btn {
    border-radius: 6px;
    margin-top: 26px;
    margin-bottom: 26px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    width: 150px;
    display: block;
    letter-spacing: 0.05em;
    background: var(--part-color__017);
    color: var(--text-color__005);
    font-weight: bold;
    font-size: 14px;
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
    text-align: center;
  }
  .form__shared-images {
    width: 300px;
    height: auto;
    margin: 60px 0 80px;
  }
  .form__required-red {
    color: var(--text-color__005);
    background: var(--part-color__000);
    font-size: 16px;
    font-family: var(--body-font__noto-sans-japanese);
    font-weight: bold;
    border-radius: 4px;
    margin-right: 8px;
    padding: 8px;
  }
  .form__required-blue {
    color: var(--text-color__005);
    background: var(--part-color__030);
    font-size: 16px;
    font-family: var(--body-font__noto-sans-japanese);
    font-weight: bold;
    border-radius: 4px;
    margin-right: 8px;
    padding: 8px;
  }
  .form__required-placeholder {
    visibility: hidden;
    margin-right: 40px;
  }
  .form-error {
    color: var(--text-color__002);
    font-family: var(--body-font__noto-sans-japanese);
    font-style: normal;
    font-size: 16px;
    margin-top: 5px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
  }
  .form__mobile-break {
    display: none;
  }
  .form__image-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    margin: 50px 0;
  }
  .form__image-title {
    font-size: 28px;
    font-family: var(--body-font__noto-serif-jp);
    font-weight: 500;
    color: var(--text-color__010);
    margin: 20px 0;
  }
  .form__image-title-stamp001, .form__image-title-stamp002 {
    width: 270px;
    height: auto;
    position: relative;
  }
  @media screen and (max-width: 499px) {
    .form__image-title {
      font-size: 24px;
      margin: 10px 0;
    }
    .form__image-title-stamp001, .form__image-title-stamp002 {
      width: 200px;
    }
  }
  @media screen and (max-width: 599px) {
    .form {
      margin-left: auto;
      margin-right: auto;
      max-width: 480px;
    }
    .form-item {
      padding-left: 14px;
      padding-right: 14px;
      padding-top: 16px;
      padding-bottom: 16px;
      flex-wrap: wrap;
    }
    .form-item-label {
      max-width: inherit;
      display: block;
      font-size: 14px;
    }
    .form-itemlLabel.isMsg {
      margin-top: 0;
    }
    .form-item-input {
      margin-left: 0;
      margin-top: 18px;
      height: 40px;
      flex: inherit;
      font-size: 14px;
    }
    .form-item-input__zip-code {
      margin-left: 0;
      margin-top: 18px;
      height: 32px;
      flex: inherit;
      font-size: 14px;
      max-width: 480px;
    }
    .form-item-textarea {
      margin-top: 18px;
      margin-left: 0;
      height: 200px;
      flex: inherit;
      font-size: 14px;
    }
    .form-btn {
      margin-top: 24px;
      padding-top: 8px;
      padding-bottom: 8px;
      width: 160px;
      font-size: 16px;
    }
    .zip-code__container {
      display: flex;
      flex-direction: column;
      width: inherit;
    }
    .zip-code__input-hint-container {
      flex-direction: column;
      width: inherit;
    }
    .form-item-input__hint01 {
      margin-top: 10px; 
      margin-right: auto;
    }
    .form-item-input__hint02 {
      margin-right: auto;
      margin-left: 10px;
      padding-top: 0;
      padding-left: 0;
    }
    .form-error {
      font-size: 12px;
      margin-left: 0;
    }
    .form-item-label span {
      margin-right: 20px;
      margin-left: 30px;
    }
    .form__required-red {
        font-size: 10px;
        padding: 6px;
    }
    .form__required-blue {
        font-size: 10px;
        padding: 6px;
    }
  }
  @media (min-width: 600px) and (max-width: 759px) {
    .form-item-label {
      max-width: 220px;
      font-size: 14px;
    }
    .form-item-input {
      margin-left: 20px;
      width: 86%;
      font-size: 14px;
    }
    .form-item-input__zip-code {
      margin-left: 20px;
      width: 80%;
      font-size: 14px;
    }
    .zip-code__input-hint-container {
      width: 92%;
    }
    .form__mobile-break {
      display: block;
    }
    .form-item-textarea {
      margin-left: 20px;
      width: 86%;
      font-size: 14px;
    }
  }
  @media (min-width: 760px) and (max-width: 899px) {
    .form-item-input {
      width: 80%;
      font-size: 16px;
    }
    .form-item-input__zip-code {
      width: 80%;
      font-size: 16px;
    }
    .form__mobile-break {
      display: block;
    }
    .form-item-textarea {
      width: 80%;
      font-size: 16px;
    }
  }