@charset "utf-8";
/*
Theme Name: サイトタイトル
Theme URI:
Description:
Author:
Version: 1.0
License:
License URI:
Tags:
*/
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}
html {
  height: 100%;


  

}
body {
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap : break-word;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  /*overflow-x: hidden;*/
  background-image: url(./images/bg.jpg);
  background-attachment: fixed;
  background-size:auto 100%; /*背景画像のサイズ指定*/
}

/*	●●●●●●●●●●	*/




:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
  content:"";
  display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

ul{
  padding: 0;
}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
:root {
  --primary-color: #3366ff;
  --text-color: #333;
  --form-border: #777777;
}
a {
  color: #0066cc;
  text-decoration: underline;
  transition-duration: 0.3s;
}
a:hover {
  color: #ff6600;
}
a:hover img {
  transition-duration: 0.1s;
}

html {
  color: #333333;
  background: white;
  block-size: 100%;
  -webkit-text-size-adjust: none;
}
body {
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'メイリオ', sans-serif;
  background-color: white;
  overflow-y: scroll;
  min-height: 100dvh;
}

@media screen and (max-width: 767.9px) {/* @@ sm xs 767px以下(スマホ) */
  #layer {
      position: fixed;
      /*z-index: 500;*/
      background: #000000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: alpha(opacity=0);
      opacity: 0.0;
      display: none;
  }
}

/*-----------------------------------------------------
@@ ヘッダ
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  header#page-header {
    width: min(100% - 20px, 960px);
    margin-inline: auto;
    padding: 20px 0;
    position: relative;
  }

  header#page-header h1 {
  }
  header#page-header h1 a {
  }
  header#page-header h1 a:hover {
  }






}/* PC ここまで */






  header#page-header {
    margin-inline: auto;
    position: relative;
    height: 80px;
    z-index: 900;
  }


  #headermenu-btn {
    display: block;
    width: 40px;/*★*/
    height: 40px;/*★*/
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: white;
    border: 2px solid #a0a0a0;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    z-index: 2000;
  }
  #headermenu-btn span {
    position: absolute;
    display: block;
    width: 70%;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .3s;
  }
  #headermenu-btn span:first-child {
    top: 22%;
  }
  #headermenu-btn span:nth-child(2) {
    top: 0;
    bottom: 0;
    opacity: 1;
  }
  #headermenu-btn span:nth-child(3) {
    bottom: 22%;
  }
  #headermenu-btn.clicked span:first-child {
    transform: rotate(45deg);/*★*/
    top: 45%;
  }
    #headermenu-btn.clicked span:nth-child(2) {
    opacity: 0;
  }
  #headermenu-btn.clicked span:nth-child(3) {
    transform: rotate(-45deg);/*★*/
    bottom: 46%;
  }

  #headermenu {
    display: none;  /* 最初は非表示 */
    z-index: 1000;
    position: fixed;
    width: 100%;
    background-color: white;
    padding: 1em 0.5em 0 0.5em;
    border-bottom: 1px solid #333;
    top:0;
  }

  .headermenu-list {
    font-size: 0;
    list-style-type: none;
    /*width: 320px;*/
    margin: 20px 0;
  }
  .headermenu-list > li {
    font-size: 16px;
    line-height: 1.25;
    border-top: 1px dotted #707070;
    text-align: left;
  }
  .headermenu-list > li:last-child {
    border-bottom: 1px dotted #707070;
  }
  .headermenu-list > li > a {
    display: block;
    padding: 0.5em 1.75em 0.5em 0.5em;
    text-decoration: none;
    color: #333;
    background-color: white;
    position: relative;
  }
  .headermenu-list > li > a:hover {
    background-color: #ccc;
  }
  .headermenu-list > li > a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.75em;
    margin: auto;
    transition-duration: 0.3s;
  }
  .headermenu-list > li > a:hover:before {
    right: 0.6em;
  }



/*-----------------------------------------------------
@@ フッタ
------------------------------------------------------*/
#page-footer{
  clear: both;
  width: 100%;
  background-color: #666;  /*フッタ背景色*/
  padding: 20px 0;
  position: sticky;
  top: 100%;
  will-change: transform;
  margin-top: 60px;
}
#page-footer p{
  margin: 0;
}

/*-----------------------------------------------------
@@ メイン
------------------------------------------------------*/
.contents-full {
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: left;
}
.contents-normal {
  width: min(100% - 40px, 960px);
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
}/* PC ここまで */
@media screen and (max-width: 767.9px) {
}/* スマホ ここまで */


/*-----------------------------------------------------
@@ 段落
------------------------------------------------------*/
p{
  margin-bottom: 1em;
}
p.indent1{
  text-indent: -1em;
  margin-left: 1em;
}

p.err-box{
  color: red;
  border: 1px solid red;
  padding: 8px;
}


/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon  {ime-mode: active;}
.imeoff {ime-mode: disabled;}

.right  {text-align: right;}
.center {text-align: center;}
.left   {text-align: left;}

.nowrap {white-space: nowrap;}

@media screen and (min-width: 768px) {
  .sp, .smp {display: none !important;}
}
@media screen and (max-width: 767.9px) {
  .pc {display: none !important;}
}



/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, img, object {
  max-width: 100%;
  height: auto;
}

/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34 {
  width:100%;
  height: auto;
  position: relative;
}
.video169 {aspect-ratio: 16 / 9;}
.video34  {aspect-ratio: 4 / 3;}

.video169 iframe, .video34 iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* @@ Googleマップ */
.gmap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto 20px;
}
.gmap iframe,.gmap object,.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:767.9px){
  .gmap {
    /*height: 300px;*/
    margin: 0 auto 10px;
  }
}


/*-----------------------------------------------------
@@ 共通
------------------------------------------------------*/
@media (min-width: 768px) {

}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

}/* スマホ ここまで============================ */


/* @@ なんか */


/*-----------------------------------------------------
@@ index インデックス トップページ
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/




/*-----------------------------------------------------
@@ フォーム
------------------------------------------------------*/
form {
  vertical-align:baseline;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border: 1px solid var(--form-border);
  padding: 4px;
  margin: 2px 4px 2px 0;
  font-size: 16px;
  line-height: 1.5;
}
select{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  max-width: 100%; 
  padding: 4px 2.5em 4px 4px;
  margin: 2px 4px 2px 0;
  outline: none;
  border: 1px solid var(--form-border);
  background: white url(images/arrow-select.png) no-repeat right 8px top 50%;
  background-size: 15px 15px;
}
select::-ms-expand {
  display: none;
}
select option {
  font-weight: normal;
}

textarea{
  overflow: auto;/* 内容が少ないのに薄くスクロールバーが出る事への対策。IEのみ  */
  resize: vertical;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
  border: 1px solid var(--form-border);
  background-color: #ffe9ec;
  /*box-shadow:0px 0px 0px 2px rgba(58, 169, 255, .3);*/
}

input[type="submit"],
input[type="button"],
button {
  border: 1px solid var(--form-border);
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.2;
  overflow:visible;
  background-color: #eeeeee;
  color: #333;
}
input[type="submit"]:hover,
button:hover {
  cursor: pointer;
}
input[type="submit"]:disabled,
button:disabled {
  cursor: not-allowed;
  color: #ccc;
}

label{
  font-size: 16px;
  margin-right: 1em;
  cursor: pointer;
  position: relative;
}

::placeholder{
  color: #999;
}


/* @@ チェックボックス、ラジオ */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: #eb3434;
    --active-inner: #fff;
    --focus: 2px rgba(58, 169, 255, .3);
    --border: #777777;
    --border-hover: #349beb;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 2px 0;
    padding: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
    font-family: Arial;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  input[type='checkbox']:disabled:checked,
  input[type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type='checkbox']:disabled + label,
  input[type='radio']:disabled + label {
    cursor: not-allowed;
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled),
  input[type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  /*input[type='checkbox']:focus,
  input[type='radio']:focus {
    box-shadow: 0 0 0 var(--focus);
  }*/
  input[type='checkbox']:not(.switch),
  input[type='radio']:not(.switch) {
    width: 21px;
  }
  input[type='checkbox']:not(.switch):after,
  input[type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type='checkbox']:not(.switch):checked,
  input[type='radio']:not(.switch):checked {
    --o: 1;
  }
  input[type='checkbox'] + label,
  input[type='radio'] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 4px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 6px;
    height: 10px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }

  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: .5;
  }
}

/*-----------------------------------------------------
@@ お問い合わせ
------------------------------------------------------*/

input[type="submit"].btn-01, input[type="button"].btn-01, button.btn-01 {
  font-size: 24px;
  line-height: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 40px 15px;
  margin: 0;
  color: var(--text-color);
  background-color: white;
  border: 1px solid var(--text-color);
  text-decoration: none;
}
.btn-01:hover {
  color: var(--text-color);
  background-color: #b4cfd4;
}
.form-btn-01 {
  width: min(100% - 40px, 777px);
  margin: 30px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  column-gap: 8px; /* 横方向の余白 */
  position: relative;
}

.box-btn-01 {
  text-align: center;
}

/*.wpcf7-response-output {
  width: min(100% - 40px, 777px);
  margin: 0 auto !important;
}*/
.wpcf7-list-item input[type='checkbox']{
  margin: 0 4px 0 0;
}
.wpcf7-spinner {
  margin: 0 !important;
  position: absolute !important;
  top: 0;
  right: 0;
}

/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/



/*-----------------------------------------------------
@@ WordPress純正のページネーション
------------------------------------------------------*/

ul.page-numbers {
  font-size: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 4px; /* 横方向の余白 */
  row-gap: 4px; /* 縦方向の余白 */
  margin: 0 auto 60px;
}
.page-numbers > li {
  font-size: 14px;
  line-height: 1;
  margin: 2px 0;
}
.page-numbers > li > a,
.page-numbers > li > span {
  border-radius: 4px;
  padding: 3px 8px;
  display: block;
  text-decoration: none;
}
.page-numbers > li > a {
  border: 1px solid var(--text-color);
  font-weight: 500;
  color: white;
  background-color: var(--text-color);
}
.page-numbers > li > a:hover {
  opacity: 0.8;
}
.page-numbers > li > span {
  border: 1px solid var(--text-color);
  font-weight: 700;
  background-color: white;
  color: var(--text-color);
}
.page-numbers > li > span.current {
  border: 1px solid #f9642c;
  font-weight: 700;
  background-color: #f9642c;
  color: white;
}

/*-----------------------------------------------------
@@ for WordPress
http://hijiriworld.com/web/wp-native-css/
------------------------------------------------------*/
.single-waku strong { font-weight: bold; }
.single-waku em { font-style: italic; }
.single-waku blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.entry p{
  line-height: 2;
}


/* ｛All in One SEO」の管理バーへの表示を隠す */
#wp-admin-bar-aioseo-main {
  display: none !important;
}

/*-----------------------------------------------------
@@ ページトップへ戻る
------------------------------------------------------*/
#page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 0;
  bottom: -100%;/* 表示領域の外（下）へ */
  opacity: 0.8;
}
#page_top a {
  display: block;
  width: 40px;
  height: 40px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--primary-color) url(images/arrow02.png) no-repeat 50% 50%;
  background-size: contain;

}

/*-----------------------------------------------------
@@ Google ReCAPTCHA
------------------------------------------------------*/
.grecaptcha-badge { visibility: hidden; }
.p-recaptcha {
  font-size: 13px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .p-recaptcha {
    text-align: left;
  }
}














.main-ttl h1{
  text-align: center;
  font-weight: bold;
  color: #fa6922;
}





.wrap-content{
  font-family: "M PLUS Rounded 1c", serif;
  font-weight: 400;
  font-style: normal;
}

.main-ttl .city{
  margin : 0 auto;
}
.main-txt{
  text-align: center;
  color: #fa6922;
}


.form .select-css{
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}
.form input[type="image"] , .form input[type="text"]{
  width: 100%;
}

.search-ttl{
  color: #4f4f4f;
  background:#ffb927;
  padding : 5px;
  font-weight: bold;
  text-align: center;
}

.search , .search-results{
    border : 2px solid #4f4f4f;
    border-radius: 6px 6px 0 0;
}
.search .form{
  padding : 20px 5%;
  background:#ffffff;

}

/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.smp , .sp{display:none;}

  .main-ttl h1{
    font-size : 260%;
  }
  .main-ttl .city{
    width : 540px;
  }
  .main-txt{
    margin : 20px 0;
  }
  
  .search , .search-results{
    width: 800px;
    margin : 20px auto;
  }
  .search-results{
    padding : 30px;
    background:#ffffff;
  }
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}
  .wrap-content{
    padding : 0 20px;
  }

  .main-ttl h1{
    font-size : 160%;
  }
  .main-ttl .city{
    width : 80%;
  }
  .search , .search-results{
    width: 100%;
    margin : 20px auto;
  }
  .search-results{
    padding : 15px;
    background:#ffffff;
  }
}
/* スマホ ここまで-------------------------------- */

/* ●●●●●●●●●●  ここまで */



.search-results span{
  font-size : 180%;
  color : #ff0000;
  font-weight: bold;
}

.search-results .inner{
  background:#fff1d4;
  padding : 15px 0px 15px 15px;
  border-radius: 6px;
  margin :10px 0  15px;
}


.operatorName{
  width:100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.operatorName .ttl{
  width: 88%;
}
.operatorName .bt{
  width: 8%;
  text-align : right;
}

#toggle1 {
  /* display: none; */
  visibility: hidden;
  opacity: 0;
  transition: 2s;
}
.toggle-inner {
  /* display: none; */
  transition: 1s;
  visibility: hidden;
  opacity: 0;
}
#toggle1:checked ~ .toggle-inner {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  transition: 1s;
}

/*-----------------------------------------------------
@@ 
------------------------------------------------------*/

.accordion-header {
  cursor: pointer;
  position: relative;
  position: relative;
}
.accordion-header:hover {
  /*  background-color: #ede1c7;  */
}
.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#665f0e;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  display: none;
  padding:0 10%;
}

.accordion-content p{
  padding : 0 0 0 10px;
  margin: 0;
}








.uline_style03 {
  padding: 0.1em 0.5em;
  border-bottom: 2px solid #fa6922;
  position: relative;
}

.uline_style03::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  right: 0;
  width: 12px;
  height: 12px;
  background: #fa6922;
  border-radius: 50%;
}

/*その他の設定*/
*,::before, ::after {
  box-sizing: border-box;
}

h4 {
 margin: 20px 0 8px 0;
 color: #fa6922;

} 

.search-results .op{
  border-top : 1px solid #333333;
  font-size: 90%;
  margin-top : 5px;
  padding: 5px 0 0 10px;
}

.search-results a{
  text-decoration: none;
}







label {
  display:inline-block;
  margin: 0 15px 5px 0;
}

label input[type="checkbox"]{
  margin-right : 5px;
}


.search-bt{
  border-radius: 6px;
  margin-top : 4px;
}


.match{
  font-weight : bold !important;
  color : #08089d !important;
  font-size: 100% !important;
}


.searchword{
  font-size: 150% !important;
  padding:10px !important;
  border-radius: 6px;
}




	●●●●●●●●●●	*/

.logo{
  margin :0 auto 20px auto;
  padding : 50px 0 0 0;
}

/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.smp , .sp{display:none;}
  .logo{
    width: 640px;
    margin :0 auto 20px auto;
  }
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}
  .logo{
    width: 80%;
    margin :0 auto 20px auto;
  }
}
/* スマホ ここまで-------------------------------- */



.whitebox{
  margin : 20px auto;
  width:80%;border:none;
  border-radius:10px;
  background:rgba(255,255,255,0.8);
  padding:20px;

}

.odlink{
  font-size:80%;

}


  .form2 input , .form2 textarea{
    border-radius: 4px;
    padding:5px;
    font-size: 125%;
    box-sizing: border-box;
    margin-bottom: 15px;
  }

  .form2 textarea{
    height:150px;
  }

/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.smp , .sp{display:none;}
  .form2 input , .form2 textarea{
      width:60% !important;
    }
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}
  .form2 input , .form2 textarea{
      width:100% !important;
  }


}